Annotation of loncom/cgi/mimeTeX/texfonts.h, revision 1.5

1.2       albertel    1: #ifndef _TEXFONTS
                      2: #define _TEXFONTS
1.1       albertel    3: /****************************************************************************
                      4:  *
1.5     ! raeburn     5:  * Copyright(c) 2002-2012, John Forkosh Associates, Inc. All rights reserved.
1.4       riegler     6:  *           http://www.forkosh.com   mailto: john@forkosh.com
1.1       albertel    7:  * --------------------------------------------------------------------------
                      8:  * This file is part of mimeTeX, which is free software. You may redistribute
                      9:  * and/or modify it under the terms of the GNU General Public License,
1.4       riegler    10:  * version 3 or later, as published by the Free Software Foundation.
1.1       albertel   11:  *      MimeTeX is distributed in the hope that it will be useful, but
                     12:  * WITHOUT ANY WARRANTY, not even the implied warranty of MERCHANTABILITY.
                     13:  * See the GNU General Public License for specific details.
                     14:  *      By using mimeTeX, you warrant that you have read, understood and
1.4       riegler    15:  * agreed to these terms and conditions, and that you possess the legal
                     16:  * right and ability to enter into this agreement and to use mimeTeX
                     17:  * in accordance with it.
                     18:  *      Your mimetex.zip distribution file should contain the file COPYING,
                     19:  * an ascii text copy of the GNU General Public License, version 3.
                     20:  * If not, point your browser to  http://www.gnu.org/licenses/
                     21:  * or write to the Free Software Foundation, Inc.,
                     22:  * 59 Temple Place, Suite 330,  Boston, MA 02111-1307 USA.
1.1       albertel   23:  * --------------------------------------------------------------------------
                     24:  *
                     25:  * Purpose:	chardef structure data for mimetex
                     26:  *		generated by gfuntype
                     27:  * 
                     28:  * Source:	texfonts.h
                     29:  *
                     30:  * Notes:     o	Each big declaration of static chardef arrays
                     31:  *		is generated by a single run of my program gfuntype,
                     32:  *		as explained in the notes below, and then all those
                     33:  *		separate outputs are gathered together in this file.
                     34:  *	      o	You must first run metafont to generate a .gf file,
                     35:  *		for example...
                     36:  *		  mf '\mode=onetz; mag=magstep(.5); input cmmi10'
                     37:  *		will generate file cmmi10.131gf (which corresponds
                     38:  *		to size=3 below)
                     39:  *	      o	Given that (or any other) .gf file, next run
                     40:  *		  gftype -i cmmi10.131gf > typeout
                     41:  *		(where  typeout  can be any filename you like)
                     42:  *	      o	Then run my program against the above output,
                     43:  *		for example...
                     44:  *		  gfuntype  -n cmmi131  typeout  cmmi131.h
                     45:  *		which generates output file cmmib131.h (or any
                     46:  *		filename you supply as the last arg), containing
                     47:  *		the  static chardef cmmi131[]  array of data.
                     48:  *		(The name of that array is taken from the  -n  arg
                     49:  *		you supplied to gfuntype.)
                     50:  *	      o	Repeat the above steps for all the arrays you need,
                     51:  *		and then gather the output together in this file,
                     52:  *		texfonts.h, which will be #include'd by mimetex.h
                     53:  *	      o	Finally, manually edit the  fonttable[]  array
                     54:  *		in minetex.h, placing the names of all these chardef
                     55:  *		arrays in the appropriate fonttable[] cells.
                     56:  *	      o	Now you can recompile mimetex.c to use your new fonts.
                     57:  *
                     58:  * --------------------------------------------------------------------------
                     59:  * Revision History:
                     60:  * 10/05/02	J.Forkosh	Installation.
                     61:  * 07/10/03	J.Forkosh	Added cmmi10 fonts (in addition to cmmib10),
                     62:  *				and rsfs fonts.
                     63:  * 07/12/03	J.Forkosh	Entirely new set of fonts generated.
1.2       albertel   64:  * 10/21/05	J.Forkosh	Compressed fonts generated
1.4       riegler    65:  * 09/06/08	J.Forkosh	mimeTeX version 1.70 released.
1.5     ! raeburn    66:  * 03/08/12	J.Forkosh	mimeTeX version 1.74, sizes 8-10 added.
1.1       albertel   67:  *
                     68:  ***************************************************************************/
                     69: 
                     70: 
1.2       albertel   71: /* ------------------------------------------------------------------------
1.5     ! raeburn    72: font sizes 0-10 for cmr10
1.2       albertel   73: ------------------------------------------------------------------------ */
                     74: 
                     75: /* --- size=0 for .83gf ---
                     76:  * mf '\mode=eighthre;  input cmr10'
                     77:  * --------------------------------------------------------------------- */
1.1       albertel   78: /* --- fontdef for cmr83 --- */
                     79: static	chardef  cmr83[] =
                     80:    {
1.2       albertel   81:       /* --- pixel bitmap for cmr83 char#0 \Gamma --- */
1.1       albertel   82:       {   0, 1561,                      /* character number, location */
1.2       albertel   83:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                     84:           {  6,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                     85:             "\xbf\x28\x0a\x82\x20\x1c" }  },
                     86:       /* --- pixel bitmap for cmr83 char#1 \Delta --- */
1.1       albertel   87:       {   1, 1588,                      /* character number, location */
1.2       albertel   88:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                     89:           {  8,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                     90:             "\x10\x28\x28\x6c\x44\x44\x82\xfe" }  },
                     91:       /* --- pixel bitmap for cmr83 char#2 \Theta --- */
1.1       albertel   92:       {   2, 1623,                      /* character number, location */
1.2       albertel   93:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                     94:           {  6,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                     95:             "\x8c\x14\xb6\x61\x28\x31" }  },
                     96:       /* --- pixel bitmap for cmr83 char#3 \Lambda --- */
1.1       albertel   97:       {   3, 1660,                      /* character number, location */
1.2       albertel   98:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                     99:           {  7,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    100:             "\x08\x04\x85\x42\xa1\x88\xee" }  },
                    101:       /* --- pixel bitmap for cmr83 char#4 \Xi --- */
1.1       albertel  102:       {   4, 1695,                      /* character number, location */
1.2       albertel  103:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                    104:           {  7,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    105:             "\xff\xa0\xc8\x27\x02\x04\xff" }  },
                    106:       /* --- pixel bitmap for cmr83 char#5 \Pi --- */
1.1       albertel  107:       {   5, 1726,                      /* character number, location */
1.2       albertel  108:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                    109:           {  8,    8, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    110:             "\x08\xf5\x11\x41\x13\x23" }  },
                    111:       /* --- pixel bitmap for cmr83 char#6 \Sigma --- */
1.1       albertel  112:       {   6, 1763,                      /* character number, location */
1.2       albertel  113:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                    114:           {  5,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    115:             "\x7f\x4a\x42\xac\xfc" }  },
                    116:       /* --- pixel bitmap for cmr83 char#7 \Upsilon --- */
1.1       albertel  117:       {   7, 1794,                      /* character number, location */
1.2       albertel  118:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                    119:           {  6,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    120:             "\x77\x8a\x20\x08\x82\x70" }  },
                    121:       /* --- pixel bitmap for cmr83 char#8 \Phi --- */
1.1       albertel  122:       {   8, 1823,                      /* character number, location */
1.2       albertel  123:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                    124:           {  5,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    125:             "\x8e\xb8\x5a\x1d\x71" }  },
                    126:       /* --- pixel bitmap for cmr83 char#9 \Psi --- */
1.1       albertel  127:       {   9, 1854,                      /* character number, location */
1.2       albertel  128:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                    129:           {  6,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    130:             "\x1c\x92\xa6\xab\x87\x70" }  },
                    131:       /* --- pixel bitmap for cmr83 char#10 \Omega --- */
1.1       albertel  132:       {  10, 1889,                      /* character number, location */
1.2       albertel  133:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                    134:           {  7,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    135:             "\x1c\x91\x48\x24\xa2\x54\xef" }  },
                    136:       /* --- pixel bitmap for cmr83 char#11 \ff --- */
1.1       albertel  137:       {  11, 3214,                      /* character number, location */
1.2       albertel  138:           8,-1,    0,-1,      /* topleft row,col, and botleft row,col */
                    139:           {  8,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    140:             "\xf8\x24\x24\x7f\x24\x24\x24\x66" }  },
                    141:       /* --- pixel bitmap for cmr83 char#12 \fi --- */
1.1       albertel  142:       {  12, 3249,                      /* character number, location */
1.2       albertel  143:           8,-1,    0,-1,      /* topleft row,col, and botleft row,col */
                    144:           {  6,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    145:             "\x18\x41\x7c\x1c\x45\xd9" }  },
                    146:       /* --- pixel bitmap for cmr83 char#13 \fl --- */
1.1       albertel  147:       {  13, 3278,                      /* character number, location */
1.2       albertel  148:           8,-1,    0,-1,      /* topleft row,col, and botleft row,col */
                    149:           {  6,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    150:             "\x18\x45\x7d\x14\x45\xd9" }  },
                    151:       /* --- pixel bitmap for cmr83 char#14 \ffi --- */
1.1       albertel  152:       {  14, 3313,                      /* character number, location */
1.2       albertel  153:           8,-1,    0,-1,      /* topleft row,col, and botleft row,col */
                    154:           { 10,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    155:             "\xf8\x91\x40\xc2\x7f\xa4\x91\x44\x92\xdd" }  },
                    156:       /* --- pixel bitmap for cmr83 char#15 \ffl --- */
1.1       albertel  157:       {  15, 3356,                      /* character number, location */
1.2       albertel  158:           8,-1,    0,-1,      /* topleft row,col, and botleft row,col */
                    159:           { 10,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    160:             "\xf8\x91\x44\xd2\x7f\x24\x91\x44\x92\xc9" }  },
                    161:       /* --- pixel bitmap for cmr83 char#16 \imath --- */
1.1       albertel  162:       {  16, 2288,                      /* character number, location */
1.2       albertel  163:           5, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                    164:           {  3,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    165:             "\x93\x74" }  },
                    166:       /* --- pixel bitmap for cmr83 char#17 \jmath --- */
1.1       albertel  167:       {  17, 2305,                      /* character number, location */
1.2       albertel  168:           5,-1,   -2,-1,      /* topleft row,col, and botleft row,col */
                    169:           {  3,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    170:             "\x26\x49\x1e" }  },
                    171:       /* --- pixel bitmap for cmr83 char#18 \gravesym --- */
1.1       albertel  172:       {  18, 3052,                      /* character number, location */
1.2       albertel  173:           8, 1,    6, 1,      /* topleft row,col, and botleft row,col */
                    174:           {  2,    2, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    175:             "\x09" }  },
                    176:       /* --- pixel bitmap for cmr83 char#19 \acutesym --- */
1.1       albertel  177:       {  19, 3063,                      /* character number, location */
1.2       albertel  178:           8, 2,    6, 2,      /* topleft row,col, and botleft row,col */
                    179:           {  2,    2, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    180:             "\x06" }  },
                    181:       /* --- pixel bitmap for cmr83 char#20 \checksym --- */
1.1       albertel  182:       {  20, 3074,                      /* character number, location */
1.2       albertel  183:           7, 1,    6, 1,      /* topleft row,col, and botleft row,col */
                    184:           {  3,    1, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    185:             "\x07" }  },
                    186:       /* --- pixel bitmap for cmr83 char#21 \brevesym --- */
1.1       albertel  187:       {  21, 3083,                      /* character number, location */
1.2       albertel  188:           8, 1,    6, 1,      /* topleft row,col, and botleft row,col */
                    189:           {  3,    2, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    190:             "\x3d" }  },
1.1       albertel  191:       /* --- pixel bitmap for cmr83 char#22 (noname) --- */
                    192:       {  22, 3096,                      /* character number, location */
1.2       albertel  193:           7, 1,    6, 1,      /* topleft row,col, and botleft row,col */
                    194:           {  3,    1, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    195:             "\x07" }  },
1.1       albertel  196:       /* --- pixel bitmap for cmr83 char#23 (noname) --- */
                    197:       {  23, 3105,                      /* character number, location */
1.2       albertel  198:           8, 3,    6, 3,      /* topleft row,col, and botleft row,col */
                    199:           {  2,    2, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    200:             "\x0f" }  },
1.1       albertel  201:       /* --- pixel bitmap for cmr83 char#24 (noname) --- */
                    202:       {  24, 3116,                      /* character number, location */
1.2       albertel  203:           0, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                    204:           {  2,    2, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    205:             "\x0e" }  },
1.1       albertel  206:       /* --- pixel bitmap for cmr83 char#25 \ss --- */
                    207:       {  25, 2326,                      /* character number, location */
1.2       albertel  208:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                    209:           {  5,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    210:             "\x44\xa9\x25\xa5\x5c" }  },
1.1       albertel  211:       /* --- pixel bitmap for cmr83 char#26 \ae --- */
                    212:       {  26, 2363,                      /* character number, location */
1.2       albertel  213:           5, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                    214:           {  7,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    215:             "\x36\x7f\x22\x69\x03" }  },
1.1       albertel  216:       /* --- pixel bitmap for cmr83 char#27 \oe --- */
                    217:       {  27, 2390,                      /* character number, location */
1.2       albertel  218:           5, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                    219:           {  8,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    220:             "\x6e\xf1\x11\x91\x6e" }  },
1.1       albertel  221:       /* --- pixel bitmap for cmr83 char#28 (noname) --- */
                    222:       {  28, 2419,                      /* character number, location */
1.2       albertel  223:           6, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
                    224:           {  5,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    225:             "\xd0\xf5\x7a\x5d\x00" }  },
1.1       albertel  226:       /* --- pixel bitmap for cmr83 char#29 \AE --- */
                    227:       {  29, 2448,                      /* character number, location */
1.2       albertel  228:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                    229:           {  9,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    230:             "\xfc\x30\x51\xa2\xc2\x97\xaa\xc4\xf9" }  },
1.1       albertel  231:       /* --- pixel bitmap for cmr83 char#30 \OE --- */
                    232:       {  30, 2495,                      /* character number, location */
1.2       albertel  233:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                    234:           { 10,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    235:             "\xfc\xc9\x14\x5b\x38\xa1\xc6\x28\x23\xff" }  },
1.1       albertel  236:       /* --- pixel bitmap for cmr83 char#31 (noname) --- */
                    237:       {  31, 2542,                      /* character number, location */
1.2       albertel  238:           8, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                    239:           {  6,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    240:             "\x9c\x96\xa6\x6d\x69\x39\x02" }  },
1.1       albertel  241:       /* --- pixel bitmap for cmr83 char#32 (noname) --- */
                    242:       {  32, 3146,                      /* character number, location */
1.2       albertel  243:           4, 0,    3, 0,      /* topleft row,col, and botleft row,col */
                    244:           {  2,    1, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    245:             "\x03" }  },
1.1       albertel  246:       /* --- pixel bitmap for cmr83 char#33 ! --- */
                    247:       {  33, 2587,                      /* character number, location */
1.2       albertel  248:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                    249:           {  1,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    250:             "\x9f" }  },
1.1       albertel  251:       /* --- pixel bitmap for cmr83 char#34 " --- */
                    252:       {  34, 3403,                      /* character number, location */
1.2       albertel  253:           8, 0,    5, 0,      /* topleft row,col, and botleft row,col */
                    254:           {  3,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    255:             "\x6d\x01" }  },
1.1       albertel  256:       /* --- pixel bitmap for cmr83 char#35 # --- */
                    257:       {  35, 2629,                      /* character number, location */
1.2       albertel  258:           8, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                    259:           {  7,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    260:             "\x28\x14\xea\x4f\xa1\x50\xfe\x0a\x05" }  },
1.1       albertel  261:       /* --- pixel bitmap for cmr83 char#36 $ --- */
                    262:       {  36, 2180,                      /* character number, location */
1.2       albertel  263:           9, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                    264:           {  3,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    265:             "\xd2\x3f\xff\x12" }  },
1.1       albertel  266:       /* --- pixel bitmap for cmr83 char#37 % --- */
                    267:       {  37, 2672,                      /* character number, location */
1.2       albertel  268:           9, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                    269:           {  7,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    270:             "\xc2\x5e\xa9\xa2\x40\x51\xa5\xd2\x10" }  },
1.1       albertel  271:       /* --- pixel bitmap for cmr83 char#38 & --- */
                    272:       {  38, 2207,                      /* character number, location */
1.2       albertel  273:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                    274:           {  7,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    275:             "\x18\x0a\x87\xed\xca\x44\xdc" }  },
                    276:       /* --- pixel bitmap for cmr83 char#39 ' --- */
1.1       albertel  277:       {  39, 2729,                      /* character number, location */
1.2       albertel  278:           8, 1,    5, 1,      /* topleft row,col, and botleft row,col */
                    279:           {  1,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    280:             "\x07" }  },
1.1       albertel  281:       /* --- pixel bitmap for cmr83 char#40 ( --- */
                    282:       {  40, 2742,                      /* character number, location */
1.2       albertel  283:           9, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                    284:           {  2,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    285:             "\x5a\x55\x95\x02" }  },
1.1       albertel  286:       /* --- pixel bitmap for cmr83 char#41 ) --- */
                    287:       {  41, 2775,                      /* character number, location */
1.2       albertel  288:           9, 0,   -4, 0,      /* topleft row,col, and botleft row,col */
                    289:           {  2,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    290:             "\xa5\xaa\x6a\x01" }  },
1.1       albertel  291:       /* --- pixel bitmap for cmr83 char#42 * --- */
                    292:       {  42, 2808,                      /* character number, location */
1.2       albertel  293:           9, 1,    4, 1,      /* topleft row,col, and botleft row,col */
                    294:           {  3,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    295:             "\xba\x2e" }  },
1.1       albertel  296:       /* --- pixel bitmap for cmr83 char#43 + --- */
                    297:       {  43, 2825,                      /* character number, location */
1.2       albertel  298:           7, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                    299:           {  6,    9, 3,11, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    300:             "\xf3\x31\x26\xf3\x31\x2f" }  },
1.1       albertel  301:       /* --- pixel bitmap for cmr83 char#44 (noname) --- */
                    302:       {  44, 2850,                      /* character number, location */
1.2       albertel  303:           1, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                    304:           {  1,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    305:             "\x07" }  },
1.1       albertel  306:       /* --- pixel bitmap for cmr83 char#45 (noname) --- */
                    307:       {  45, 3422,                      /* character number, location */
1.2       albertel  308:           3, 0,    2, 0,      /* topleft row,col, and botleft row,col */
                    309:           {  3,    1, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    310:             "\x07" }  },
1.1       albertel  311:       /* --- pixel bitmap for cmr83 char#46 (noname) --- */
                    312:       {  46, 2863,                      /* character number, location */
1.2       albertel  313:           1, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                    314:           {  1,    1, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    315:             "\x01" }  },
1.1       albertel  316:       /* --- pixel bitmap for cmr83 char#47 / --- */
                    317:       {  47, 2872,                      /* character number, location */
1.2       albertel  318:           9, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                    319:           {  3,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    320:             "\x24\x25\x49\x4a\x02" }  },
1.1       albertel  321:       /* --- pixel bitmap for cmr83 char#48 0 --- */
                    322:       {  48, 1930,                      /* character number, location */
1.2       albertel  323:           7, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                    324:           {  5,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    325:             "\x2e\xc6\x18\xa3\x03" }  },
1.1       albertel  326:       /* --- pixel bitmap for cmr83 char#49 1 --- */
                    327:       {  49, 1961,                      /* character number, location */
1.2       albertel  328:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                    329:           {  3,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    330:             "\x9a\x24\x1d" }  },
1.1       albertel  331:       /* --- pixel bitmap for cmr83 char#50 2 --- */
                    332:       {  50, 1982,                      /* character number, location */
1.2       albertel  333:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                    334:           {  4,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    335:             "\x96\x88\xa4\x0f" }  },
1.1       albertel  336:       /* --- pixel bitmap for cmr83 char#51 3 --- */
                    337:       {  51, 2007,                      /* character number, location */
1.2       albertel  338:           7, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                    339:           {  5,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    340:             "\x44\x21\x06\xa3\x03" }  },
1.1       albertel  341:       /* --- pixel bitmap for cmr83 char#52 4 --- */
                    342:       {  52, 2032,                      /* character number, location */
1.2       albertel  343:           7, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                    344:           {  5,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    345:             "\xcc\xad\x8f\x10\x07" }  },
1.1       albertel  346:       /* --- pixel bitmap for cmr83 char#53 5 --- */
                    347:       {  53, 2055,                      /* character number, location */
1.2       albertel  348:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                    349:           {  4,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    350:             "\x17\x71\x98\x06" }  },
1.1       albertel  351:       /* --- pixel bitmap for cmr83 char#54 6 --- */
                    352:       {  54, 2078,                      /* character number, location */
1.2       albertel  353:           7, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                    354:           {  5,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    355:             "\x4c\x84\x17\xa3\x03" }  },
1.1       albertel  356:       /* --- pixel bitmap for cmr83 char#55 7 --- */
                    357:       {  55, 2103,                      /* character number, location */
1.2       albertel  358:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                    359:           {  4,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    360:             "\x9f\x24\x22\x02" }  },
1.1       albertel  361:       /* --- pixel bitmap for cmr83 char#56 8 --- */
                    362:       {  56, 2126,                      /* character number, location */
1.2       albertel  363:           7, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                    364:           {  5,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    365:             "\x44\x29\x17\xa3\x03" }  },
1.1       albertel  366:       /* --- pixel bitmap for cmr83 char#57 9 --- */
                    367:       {  57, 2155,                      /* character number, location */
1.2       albertel  368:           7, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                    369:           {  5,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    370:             "\x2e\x46\x0f\x91\x01" }  },
1.1       albertel  371:       /* --- pixel bitmap for cmr83 char#58 : --- */
                    372:       {  58, 2903,                      /* character number, location */
1.2       albertel  373:           5, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                    374:           {  1,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    375:             "\x11" }  },
1.1       albertel  376:       /* --- pixel bitmap for cmr83 char#59 ; --- */
                    377:       {  59, 2916,                      /* character number, location */
1.2       albertel  378:           5, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                    379:           {  1,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    380:             "\x71" }  },
1.1       albertel  381:       /* --- pixel bitmap for cmr83 char#60 (noname) --- */
                    382:       {  60, 2608,                      /* character number, location */
1.2       albertel  383:           6, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                    384:           {  1,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    385:             "\xf9" }  },
1.1       albertel  386:       /* --- pixel bitmap for cmr83 char#61 = --- */
                    387:       {  61, 2933,                      /* character number, location */
1.2       albertel  388:           5, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                    389:           {  6,    5, 3, 6, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    390:             "\x06\xf2\x66" }  },
1.1       albertel  391:       /* --- pixel bitmap for cmr83 char#62 (noname) --- */
                    392:       {  62, 2265,                      /* character number, location */
1.2       albertel  393:           6, 0,   -2, 0,      /* topleft row,col, and botleft row,col */
                    394:           {  4,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    395:             "\x02\x20\x22\x79" }  },
                    396:       /* --- pixel bitmap for cmr83 char#63 ? --- */
1.1       albertel  397:       {  63, 2242,                      /* character number, location */
1.2       albertel  398:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                    399:           {  4,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    400:             "\x96\x24\x02\x20" }  },
                    401:       /* --- pixel bitmap for cmr83 char#64 @ --- */
1.1       albertel  402:       {  64, 2946,                      /* character number, location */
1.2       albertel  403:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                    404:           {  6,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    405:             "\x8c\x37\xcf\xf3\xec\xf3" }  },
1.1       albertel  406:       /* --- pixel bitmap for cmr83 char#65 A --- */
                    407:       {  65,   35,                      /* character number, location */
1.2       albertel  408:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                    409:           {  8,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    410:             "\x18\x18\x18\x3c\x24\x3c\x24\xe7" }  },
1.1       albertel  411:       /* --- pixel bitmap for cmr83 char#66 B --- */
                    412:       {  66,   64,                      /* character number, location */
1.2       albertel  413:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                    414:           {  6,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    415:             "\x9f\x28\xfa\xb2\x28\x7e" }  },
1.1       albertel  416:       /* --- pixel bitmap for cmr83 char#67 C --- */
                    417:       {  67,   97,                      /* character number, location */
1.2       albertel  418:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                    419:           {  5,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    420:             "\x5c\xc6\x10\xa2\x64" }  },
1.1       albertel  421:       /* --- pixel bitmap for cmr83 char#68 D --- */
                    422:       {  68,  128,                      /* character number, location */
1.2       albertel  423:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                    424:           {  7,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    425:             "\x3f\x91\x50\x28\x14\x8a\x7e" }  },
1.1       albertel  426:       /* --- pixel bitmap for cmr83 char#69 E --- */
                    427:       {  69,  163,                      /* character number, location */
1.2       albertel  428:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                    429:           {  7,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    430:             "\x3f\x91\xcc\x23\x15\x0a\xff" }  },
1.1       albertel  431:       /* --- pixel bitmap for cmr83 char#70 F --- */
                    432:       {  70,  198,                      /* character number, location */
1.2       albertel  433:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                    434:           {  6,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    435:             "\xbf\xa8\x3a\x8a\x20\x1c" }  },
1.1       albertel  436:       /* --- pixel bitmap for cmr83 char#71 G --- */
                    437:       {  71,  229,                      /* character number, location */
1.2       albertel  438:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                    439:           {  7,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    440:             "\x3c\x51\x28\x10\x0f\x89\x78" }  },
1.1       albertel  441:       /* --- pixel bitmap for cmr83 char#72 H --- */
                    442:       {  72,  262,                      /* character number, location */
1.2       albertel  443:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                    444:           {  8,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    445:             "\xe7\x42\x42\x7e\x42\x42\x42\xe7" }  },
1.1       albertel  446:       /* --- pixel bitmap for cmr83 char#73 I --- */
                    447:       {  73,  299,                      /* character number, location */
1.2       albertel  448:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                    449:           {  3,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    450:             "\x97\x24\xe9" }  },
1.1       albertel  451:       /* --- pixel bitmap for cmr83 char#74 J --- */
                    452:       {  74,  322,                      /* character number, location */
1.2       albertel  453:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                    454:           {  4,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    455:             "\x4e\x44\x44\x75" }  },
1.1       albertel  456:       /* --- pixel bitmap for cmr83 char#75 K --- */
                    457:       {  75,  347,                      /* character number, location */
1.2       albertel  458:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                    459:           {  8,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    460:             "\xf7\x32\x1a\x0e\x16\x12\x22\xe7" }  },
1.1       albertel  461:       /* --- pixel bitmap for cmr83 char#76 L --- */
                    462:       {  76,  384,                      /* character number, location */
1.2       albertel  463:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                    464:           {  6,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    465:             "\x87\x20\x08\xa2\x28\xfe" }  },
1.1       albertel  466:       /* --- pixel bitmap for cmr83 char#77 M --- */
                    467:       {  77,  413,                      /* character number, location */
1.2       albertel  468:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                    469:           { 10,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    470:             "\x87\x1b\x66\x98\x52\x4a\xc9\x24\xd3\xed" }  },
1.1       albertel  471:       /* --- pixel bitmap for cmr83 char#78 N --- */
                    472:       {  78,  466,                      /* character number, location */
1.2       albertel  473:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                    474:           {  8,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    475:             "\xe3\x46\x4a\x4a\x52\x72\x62\x47" }  },
1.1       albertel  476:       /* --- pixel bitmap for cmr83 char#79 O --- */
                    477:       {  79,  511,                      /* character number, location */
1.2       albertel  478:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                    479:           {  6,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    480:             "\x8c\x14\x86\x61\x28\x31" }  },
1.1       albertel  481:       /* --- pixel bitmap for cmr83 char#80 P --- */
                    482:       {  80,  546,                      /* character number, location */
1.2       albertel  483:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                    484:           {  6,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    485:             "\x9f\x28\x8a\x9e\x20\x1c" }  },
1.1       albertel  486:       /* --- pixel bitmap for cmr83 char#81 Q --- */
                    487:       {  81,  575,                      /* character number, location */
1.2       albertel  488:           8, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                    489:           {  6,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    490:             "\x8c\x14\x86\x61\xe8\x31\x00\x0c" }  },
1.1       albertel  491:       /* --- pixel bitmap for cmr83 char#82 R --- */
                    492:       {  82,  612,                      /* character number, location */
1.2       albertel  493:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                    494:           {  7,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    495:             "\x1f\x91\xc8\x23\x12\x89\xce" }  },
1.1       albertel  496:       /* --- pixel bitmap for cmr83 char#83 S --- */
                    497:       {  83,  647,                      /* character number, location */
1.2       albertel  498:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                    499:           {  4,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    500:             "\x56\x31\x8c\x79" }  },
1.1       albertel  501:       /* --- pixel bitmap for cmr83 char#84 T --- */
                    502:       {  84,  674,                      /* character number, location */
1.2       albertel  503:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                    504:           {  7,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    505:             "\xff\x64\x12\x81\x40\x20\x38" }  },
1.1       albertel  506:       /* --- pixel bitmap for cmr83 char#85 U --- */
                    507:       {  85,  705,                      /* character number, location */
1.2       albertel  508:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                    509:           {  8,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    510:             "\xe7\x42\x42\x42\x42\x42\x42\x3c" }  },
1.1       albertel  511:       /* --- pixel bitmap for cmr83 char#86 V --- */
                    512:       {  86,  742,                      /* character number, location */
1.2       albertel  513:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                    514:           {  8,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    515:             "\xe7\x42\x24\x24\x24\x18\x18\x18" }  },
1.1       albertel  516:       /* --- pixel bitmap for cmr83 char#87 W --- */
                    517:       {  87,  775,                      /* character number, location */
1.2       albertel  518:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                    519:           { 11,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    520:             "\x77\x17\x11\x55\xa8\x42\x15\xaa\x20\x02\x11" }  },
1.1       albertel  521:       /* --- pixel bitmap for cmr83 char#88 X --- */
                    522:       {  88,  834,                      /* character number, location */
1.2       albertel  523:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                    524:           {  8,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    525:             "\x67\x24\x18\x18\x18\x34\x24\xe7" }  },
1.1       albertel  526:       /* --- pixel bitmap for cmr83 char#89 Y --- */
                    527:       {  89,  867,                      /* character number, location */
1.2       albertel  528:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                    529:           {  8,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    530:             "\xe7\x24\x28\x38\x10\x10\x10\x38" }  },
1.1       albertel  531:       /* --- pixel bitmap for cmr83 char#90 Z --- */
                    532:       {  90,  896,                      /* character number, location */
1.2       albertel  533:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                    534:           {  5,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    535:             "\x2f\x15\x22\x65\xfc" }  },
1.1       albertel  536:       /* --- pixel bitmap for cmr83 char#91 [ --- */
                    537:       {  91, 2977,                      /* character number, location */
1.2       albertel  538:           9, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                    539:           {  2,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    540:             "\x57\x55\xd5" }  },
1.1       albertel  541:       /* --- pixel bitmap for cmr83 char#92 (noname) --- */
                    542:       {  92, 3431,                      /* character number, location */
1.2       albertel  543:           8, 2,    5, 2,      /* topleft row,col, and botleft row,col */
                    544:           {  3,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    545:             "\x6d\x01" }  },
1.1       albertel  546:       /* --- pixel bitmap for cmr83 char#93 ] --- */
                    547:       {  93, 3008,                      /* character number, location */
1.2       albertel  548:           9, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                    549:           {  2,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    550:             "\xab\xaa\xea" }  },
1.1       albertel  551:       /* --- pixel bitmap for cmr83 char#94 \^ --- */
                    552:       {  94, 3155,                      /* character number, location */
1.2       albertel  553:           8, 1,    6, 1,      /* topleft row,col, and botleft row,col */
                    554:           {  3,    2, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    555:             "\x2a" }  },
1.1       albertel  556:       /* --- pixel bitmap for cmr83 char#95 (noname) --- */
                    557:       {  95, 3168,                      /* character number, location */
1.2       albertel  558:           9, 1,    8, 1,      /* topleft row,col, and botleft row,col */
                    559:           {  1,    1, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    560:             "\x01" }  },
1.1       albertel  561:       /* --- pixel bitmap for cmr83 char#96 (noname) --- */
                    562:       {  96, 3039,                      /* character number, location */
1.2       albertel  563:           8, 1,    5, 1,      /* topleft row,col, and botleft row,col */
                    564:           {  1,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    565:             "\x07" }  },
1.1       albertel  566:       /* --- pixel bitmap for cmr83 char#97 a --- */
                    567:       {  97,  929,                      /* character number, location */
1.2       albertel  568:           5, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                    569:           {  5,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    570:             "\xc6\xa5\xec\x01" }  },
1.1       albertel  571:       /* --- pixel bitmap for cmr83 char#98 b --- */
                    572:       {  98,  950,                      /* character number, location */
1.2       albertel  573:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                    574:           {  5,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    575:             "\x43\x08\x27\xa5\x74" }  },
1.1       albertel  576:       /* --- pixel bitmap for cmr83 char#99 c --- */
                    577:       {  99,  979,                      /* character number, location */
1.2       albertel  578:           5, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                    579:           {  4,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    580:             "\x1e\x91\x06" }  },
1.1       albertel  581:       /* --- pixel bitmap for cmr83 char#100 d --- */
                    582:       { 100,  998,                      /* character number, location */
1.2       albertel  583:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                    584:           {  5,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    585:             "\x0c\x21\x97\x52\xf2" }  },
1.1       albertel  586:       /* --- pixel bitmap for cmr83 char#101 e --- */
                    587:       { 101, 1027,                      /* character number, location */
1.2       albertel  588:           5, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                    589:           {  4,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    590:             "\xf6\x91\x06" }  },
1.1       albertel  591:       /* --- pixel bitmap for cmr83 char#102 f --- */
                    592:       { 102, 1046,                      /* character number, location */
1.2       albertel  593:           8,-1,    0,-1,      /* topleft row,col, and botleft row,col */
                    594:           {  5,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    595:             "\x98\x90\x47\x08\x71" }  },
1.1       albertel  596:       /* --- pixel bitmap for cmr83 char#103 g --- */
                    597:       { 103, 1069,                      /* character number, location */
1.2       albertel  598:           5, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                    599:           {  5,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    600:             "\x3e\xa5\xe3\x62\x74" }  },
1.1       albertel  601:       /* --- pixel bitmap for cmr83 char#104 h --- */
                    602:       { 104, 1100,                      /* character number, location */
1.2       albertel  603:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                    604:           {  5,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    605:             "\x43\x08\xa7\x94\xfa" }  },
1.1       albertel  606:       /* --- pixel bitmap for cmr83 char#105 i --- */
                    607:       { 105, 1129,                      /* character number, location */
1.2       albertel  608:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                    609:           {  3,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    610:             "\x02\x30\x49\x07" }  },
1.1       albertel  611:       /* --- pixel bitmap for cmr83 char#106 j --- */
                    612:       { 106, 1150,                      /* character number, location */
1.2       albertel  613:           9,-1,   -2,-1,      /* topleft row,col, and botleft row,col */
                    614:           {  3,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    615:             "\x04\x60\x92\xe4\x01" }  },
1.1       albertel  616:       /* --- pixel bitmap for cmr83 char#107 k --- */
                    617:       { 107, 1175,                      /* character number, location */
1.2       albertel  618:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                    619:           {  4,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    620:             "\x23\xe2\x66\xb6" }  },
1.1       albertel  621:       /* --- pixel bitmap for cmr83 char#108 l --- */
                    622:       { 108, 1200,                      /* character number, location */
1.2       albertel  623:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                    624:           {  3,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    625:             "\x93\x24\xe9" }  },
1.1       albertel  626:       /* --- pixel bitmap for cmr83 char#109 m --- */
                    627:       { 109, 1223,                      /* character number, location */
1.2       albertel  628:           5, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                    629:           {  9,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    630:             "\xff\x24\x49\x92\x74\x1b" }  },
1.1       albertel  631:       /* --- pixel bitmap for cmr83 char#110 n --- */
                    632:       { 110, 1256,                      /* character number, location */
1.2       albertel  633:           5, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                    634:           {  5,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    635:             "\x4f\x29\xf5\x01" }  },
1.1       albertel  636:       /* --- pixel bitmap for cmr83 char#111 o --- */
                    637:       { 111, 1279,                      /* character number, location */
1.2       albertel  638:           5, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                    639:           {  5,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    640:             "\x2e\xc6\xe8\x00" }  },
1.1       albertel  641:       /* --- pixel bitmap for cmr83 char#112 p --- */
                    642:       { 112, 1302,                      /* character number, location */
1.2       albertel  643:           5, 0,   -2, 0,      /* topleft row,col, and botleft row,col */
                    644:           {  5,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    645:             "\x4f\x4a\xe9\xc4\x01" }  },
1.1       albertel  646:       /* --- pixel bitmap for cmr83 char#113 q --- */
                    647:       { 113, 1329,                      /* character number, location */
1.2       albertel  648:           5, 0,   -2, 0,      /* topleft row,col, and botleft row,col */
                    649:           {  5,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    650:             "\x2e\xa5\xe4\x10\x07" }  },
1.1       albertel  651:       /* --- pixel bitmap for cmr83 char#114 r --- */
                    652:       { 114, 1356,                      /* character number, location */
1.2       albertel  653:           5, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                    654:           {  3,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    655:             "\x97\x74" }  },
1.1       albertel  656:       /* --- pixel bitmap for cmr83 char#115 s --- */
                    657:       { 115, 1373,                      /* character number, location */
1.2       albertel  658:           5, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                    659:           {  4,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    660:             "\x56\x96\x07" }  },
1.1       albertel  661:       /* --- pixel bitmap for cmr83 char#116 t --- */
                    662:       { 116, 1394,                      /* character number, location */
1.2       albertel  663:           7, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                    664:           {  3,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    665:             "\xd2\x64\x1b" }  },
1.1       albertel  666:       /* --- pixel bitmap for cmr83 char#117 u --- */
                    667:       { 117, 1415,                      /* character number, location */
1.2       albertel  668:           5, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                    669:           {  5,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    670:             "\x4f\x29\xe5\x01" }  },
1.1       albertel  671:       /* --- pixel bitmap for cmr83 char#118 v --- */
                    672:       { 118, 1438,                      /* character number, location */
1.2       albertel  673:           5, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                    674:           {  5,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    675:             "\x5b\x29\x42\x00" }  },
1.1       albertel  676:       /* --- pixel bitmap for cmr83 char#119 w --- */
                    677:       { 119, 1461,                      /* character number, location */
1.2       albertel  678:           5, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                    679:           {  7,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    680:             "\x6b\x9b\xcd\x46\x01" }  },
1.1       albertel  681:       /* --- pixel bitmap for cmr83 char#120 x --- */
                    682:       { 120, 1490,                      /* character number, location */
1.2       albertel  683:           5, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                    684:           {  5,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    685:             "\xdb\x10\xb5\x01" }  },
1.1       albertel  686:       /* --- pixel bitmap for cmr83 char#121 y --- */
                    687:       { 121, 1513,                      /* character number, location */
1.2       albertel  688:           5, 0,   -2, 0,      /* topleft row,col, and botleft row,col */
                    689:           {  5,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    690:             "\x5b\x29\x42\xc8\x00" }  },
1.1       albertel  691:       /* --- pixel bitmap for cmr83 char#122 z --- */
                    692:       { 122, 1540,                      /* character number, location */
1.2       albertel  693:           5, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                    694:           {  4,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    695:             "\x5f\xaf\x0f" }  },
1.1       albertel  696:       /* --- pixel bitmap for cmr83 char#123 (noname) --- */
                    697:       { 123, 3450,                      /* character number, location */
1.2       albertel  698:           4, 0,    3, 0,      /* topleft row,col, and botleft row,col */
                    699:           {  5,    1, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    700:             "\x1f" }  },
1.1       albertel  701:       /* --- pixel bitmap for cmr83 char#124 (noname) --- */
                    702:       { 124, 3459,                      /* character number, location */
1.2       albertel  703:           4, 0,    3, 0,      /* topleft row,col, and botleft row,col */
                    704:           { 10,    1, 3, 2, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    705:             "\x0a" }  },
1.1       albertel  706:       /* --- pixel bitmap for cmr83 char#125 (noname) --- */
                    707:       { 125, 3177,                      /* character number, location */
1.2       albertel  708:           8, 1,    6, 1,      /* topleft row,col, and botleft row,col */
                    709:           {  3,    2, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    710:             "\x2d" }  },
1.1       albertel  711:       /* --- pixel bitmap for cmr83 char#126 \~ --- */
                    712:       { 126, 3192,                      /* character number, location */
1.2       albertel  713:           8, 1,    6, 1,      /* topleft row,col, and botleft row,col */
                    714:           {  3,    2, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    715:             "\x0c" }  },
1.1       albertel  716:       /* --- pixel bitmap for cmr83 char#127 (noname) --- */
                    717:       { 127, 3203,                      /* character number, location */
1.2       albertel  718:           9, 1,    8, 1,      /* topleft row,col, and botleft row,col */
                    719:           {  3,    1, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    720:             "\x05" }  },
1.1       albertel  721:       /* --- trailer  --- */
1.2       albertel  722:       { -99, -999,  0,0,0,0, { 0,0,0,0, (pixbyte *)"\0" }  }
1.1       albertel  723:    } ;
                    724: 
                    725: 
1.2       albertel  726: /* --- size=1 for .100gf ---
                    727:  * mf '\mode=preview; mag=magstep(-17.87427405946994351363); input cmr10'
                    728:  * --------------------------------------------------------------------- */
1.1       albertel  729: /* --- fontdef for cmr100 --- */
                    730: static	chardef  cmr100[] =
                    731:    {
1.2       albertel  732:       /* --- pixel bitmap for cmr100 char#0 \Gamma --- */
                    733:       {   0,51662,                      /* character number, location */
                    734:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                    735:           {  8,    9, 3,15, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    736:             "\x08\xf2\x21\x41\xf3\x21\x55\x36" }  },
                    737:       /* --- pixel bitmap for cmr100 char#1 \Delta --- */
                    738:       {   1,52527,                      /* character number, location */
                    739:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                    740:           { 10,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    741:             "\x30\xc0\x80\x04\x12\x84\x18\x26\xd0\xc0\xff\x03" }  },
                    742:       /* --- pixel bitmap for cmr100 char#2 \Theta --- */
                    743:       {   2,53612,                      /* character number, location */
                    744:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                    745:           {  9,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    746:             "\x7c\x8c\x0d\x0e\x98\x33\xe0\x60\x63\x7c\x00" }  },
                    747:       /* --- pixel bitmap for cmr100 char#3 \Lambda --- */
                    748:       {   3,54508,                      /* character number, location */
                    749:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                    750:           { 10,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    751:             "\x30\xc0\x00\x03\x12\x48\x20\x41\x08\x21\xcf\x03" }  },
                    752:       /* --- pixel bitmap for cmr100 char#4 \Xi --- */
                    753:       {   4,55833,                      /* character number, location */
                    754:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                    755:           {  7,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    756:             "\xff\x20\x40\xe4\x13\x01\x82\x7f" }  },
                    757:       /* --- pixel bitmap for cmr100 char#5 \Pi --- */
                    758:       {   5,56950,                      /* character number, location */
                    759:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                    760:           {  8,    9, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    761:             "\x08\xf6\x11\x41\x13\x23" }  },
                    762:       /* --- pixel bitmap for cmr100 char#6 \Sigma --- */
                    763:       {   6,58027,                      /* character number, location */
                    764:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                    765:           {  8,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    766:             "\xff\xc3\x86\x8c\x08\x8c\x84\xc2\xff" }  },
                    767:       /* --- pixel bitmap for cmr100 char#7 \Upsilon --- */
                    768:       {   7,59081,                      /* character number, location */
                    769:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                    770:           {  9,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    771:             "\xc6\x52\x02\x80\x00\x01\x02\x04\x08\x7c\x00" }  },
                    772:       /* --- pixel bitmap for cmr100 char#8 \Phi --- */
                    773:       {   8,60071,                      /* character number, location */
                    774:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                    775:           {  8,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    776:             "\x7c\x10\x3c\x91\x91\x91\x3c\x10\x7c" }  },
                    777:       /* --- pixel bitmap for cmr100 char#9 \Psi --- */
                    778:       {   9,61138,                      /* character number, location */
                    779:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                    780:           {  9,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    781:             "\x7c\x20\x4c\x96\x24\xc9\x1a\x1f\x08\x7c\x00" }  },
                    782:       /* --- pixel bitmap for cmr100 char#10 \Omega --- */
                    783:       {  10,62247,                      /* character number, location */
                    784:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                    785:           {  8,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    786:             "\x3c\x42\x81\x81\x81\x42\x42\xa5\xe7" }  },
                    787:       /* --- pixel bitmap for cmr100 char#11 \ff --- */
                    788:       {  11,105922,                     /* character number, location */
                    789:          10,-1,    0,-1,      /* topleft row,col, and botleft row,col */
                    790:           { 10,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    791:             "\xf8\x13\x41\x04\x11\xff\x11\x41\x04\x11\x44\x18\x03" }  },
                    792:       /* --- pixel bitmap for cmr100 char#12 \fi --- */
                    793:       {  12,107044,                     /* character number, location */
                    794:          10,-1,    0,-1,      /* topleft row,col, and botleft row,col */
                    795:           {  8,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    796:             "\x70\x08\x08\x08\x7f\x68\x48\x48\x48\xcc" }  },
                    797:       /* --- pixel bitmap for cmr100 char#13 \fl --- */
                    798:       {  13,108160,                     /* character number, location */
                    799:          10,-1,    0,-1,      /* topleft row,col, and botleft row,col */
                    800:           {  8,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    801:             "\x70\x48\x48\x48\x7f\x48\x48\x48\x48\xcc" }  },
                    802:       /* --- pixel bitmap for cmr100 char#14 \ffi --- */
                    803:       {  14,109727,                     /* character number, location */
                    804:          10,-1,    0,-1,      /* topleft row,col, and botleft row,col */
                    805:           { 12,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    806:             "\xf0\x87\x08\x88\x80\x08\xff\x87\x68\x88\x84\x48\x88"
                    807:             "\xc4\xc8" }  },
                    808:       /* --- pixel bitmap for cmr100 char#15 \ffl --- */
                    809:       {  15,111304,                     /* character number, location */
                    810:          10,-1,    0,-1,      /* topleft row,col, and botleft row,col */
                    811:           { 12,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    812:             "\xf0\x87\x48\x88\x84\x48\xff\x87\x48\x88\x84\x48\x88"
                    813:             "\xc4\xc8" }  },
                    814:       /* --- pixel bitmap for cmr100 char#16 \imath --- */
                    815:       {  16,75438,                      /* character number, location */
                    816:           6, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                    817:           {  3,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    818:             "\x93\xa4\x03" }  },
                    819:       /* --- pixel bitmap for cmr100 char#17 \jmath --- */
                    820:       {  17,76102,                      /* character number, location */
                    821:           6,-1,   -3,-1,      /* topleft row,col, and botleft row,col */
                    822:           {  4,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    823:             "\x8c\x88\x88\x88\x07" }  },
                    824:       /* --- pixel bitmap for cmr100 char#18 \gravesym --- */
                    825:       {  18,97521,                      /* character number, location */
                    826:          10, 2,    7, 2,      /* topleft row,col, and botleft row,col */
                    827:           {  2,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    828:             "\x29" }  },
                    829:       /* --- pixel bitmap for cmr100 char#19 \acutesym --- */
                    830:       {  19,98064,                      /* character number, location */
                    831:          10, 3,    7, 3,      /* topleft row,col, and botleft row,col */
                    832:           {  2,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    833:             "\x16" }  },
                    834:       /* --- pixel bitmap for cmr100 char#20 \checksym --- */
                    835:       {  20,98663,                      /* character number, location */
                    836:           9, 2,    7, 2,      /* topleft row,col, and botleft row,col */
                    837:           {  3,    2, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    838:             "\x15" }  },
                    839:       /* --- pixel bitmap for cmr100 char#21 \brevesym --- */
                    840:       {  21,99253,                      /* character number, location */
                    841:          10, 1,    7, 1,      /* topleft row,col, and botleft row,col */
                    842:           {  5,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    843:             "\x31\x3a" }  },
1.1       albertel  844:       /* --- pixel bitmap for cmr100 char#22 (noname) --- */
1.2       albertel  845:       {  22,99807,                      /* character number, location */
                    846:           8, 1,    7, 1,      /* topleft row,col, and botleft row,col */
                    847:           {  5,    1, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    848:             "\x1f" }  },
1.1       albertel  849:       /* --- pixel bitmap for cmr100 char#23 (noname) --- */
1.2       albertel  850:       {  23,100558,                     /* character number, location */
                    851:          10, 3,    7, 3,      /* topleft row,col, and botleft row,col */
                    852:           {  4,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    853:             "\x96\x06" }  },
1.1       albertel  854:       /* --- pixel bitmap for cmr100 char#24 (noname) --- */
1.2       albertel  855:       {  24,101220,                     /* character number, location */
                    856:           0, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
                    857:           {  3,    2, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    858:             "\x3e" }  },
1.1       albertel  859:       /* --- pixel bitmap for cmr100 char#25 \ss --- */
1.2       albertel  860:       {  25,77147,                      /* character number, location */
                    861:          10, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                    862:           {  7,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    863:             "\x1c\x91\x48\xb4\x11\x09\x85\xc2\x1d" }  },
1.1       albertel  864:       /* --- pixel bitmap for cmr100 char#26 \ae --- */
1.2       albertel  865:       {  26,78442,                      /* character number, location */
                    866:           6, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                    867:           {  9,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    868:             "\xef\x20\xfa\x8f\x10\xd3\x1d" }  },
1.1       albertel  869:       /* --- pixel bitmap for cmr100 char#27 \oe --- */
1.2       albertel  870:       {  27,79514,                      /* character number, location */
                    871:           6, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                    872:           { 11,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    873:             "\xdc\x03\x63\xf8\x43\x30\x47\xcf\x01" }  },
1.1       albertel  874:       /* --- pixel bitmap for cmr100 char#28 (noname) --- */
1.2       albertel  875:       {  28,80280,                      /* character number, location */
                    876:           7, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
                    877:           {  7,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    878:             "\x40\xde\x3c\xdb\x3c\x7b\x06" }  },
1.1       albertel  879:       /* --- pixel bitmap for cmr100 char#29 \AE --- */
1.2       albertel  880:       {  29,82006,                      /* character number, location */
                    881:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                    882:           { 12,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    883:             "\xf8\x87\x42\x28\x86\x62\xf8\x43\xa2\x24\x4a\x42\xe7"
                    884:             "\x07" }  },
1.1       albertel  885:       /* --- pixel bitmap for cmr100 char#30 \OE --- */
1.2       albertel  886:       {  30,83642,                      /* character number, location */
                    887:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                    888:           { 13,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    889:             "\xfc\xcf\x08\x0d\xb1\x20\x16\x7c\x82\xe8\x10\x35\x42"
                    890:             "\xfc\x0f" }  },
1.1       albertel  891:       /* --- pixel bitmap for cmr100 char#31 (noname) --- */
1.2       albertel  892:       {  31,84560,                      /* character number, location */
                    893:          10, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                    894:           {  9,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    895:             "\x80\xf8\x08\x0b\x19\x33\x62\xc6\x84\x86\xf8\x08\x00" }  },
1.1       albertel  896:       /* --- pixel bitmap for cmr100 char#32 (noname) --- */
1.2       albertel  897:       {  32,101688,                     /* character number, location */
                    898:           5, 0,    4, 0,      /* topleft row,col, and botleft row,col */
                    899:           {  4,    1, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    900:             "\x0f" }  },
1.1       albertel  901:       /* --- pixel bitmap for cmr100 char#33 ! --- */
1.2       albertel  902:       {  33,85153,                      /* character number, location */
                    903:          10, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                    904:           {  1,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    905:             "\x3f\x02" }  },
1.1       albertel  906:       /* --- pixel bitmap for cmr100 char#34 " --- */
1.2       albertel  907:       {  34,112195,                     /* character number, location */
                    908:          10, 0,    6, 0,      /* topleft row,col, and botleft row,col */
                    909:           {  4,    4, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    910:             "\x99\x99" }  },
1.1       albertel  911:       /* --- pixel bitmap for cmr100 char#35 # --- */
1.2       albertel  912:       {  35,86539,                      /* character number, location */
                    913:          10, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                    914:           { 10,   13, 3,29, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    915:             "\xf3\x41\x31\x1a\x31\x31\x20\xf1\x21\x31\x3a\xf3\x11"
                    916:             "\x31\x41" }  },
1.1       albertel  917:       /* --- pixel bitmap for cmr100 char#36 $ --- */
1.2       albertel  918:       {  36,71874,                      /* character number, location */
                    919:          10, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                    920:           {  5,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    921:             "\xae\xd6\x62\x18\xad\xd5\x11" }  },
1.1       albertel  922:       /* --- pixel bitmap for cmr100 char#37 % --- */
1.2       albertel  923:       {  37,87726,                      /* character number, location */
                    924:          10, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                    925:           { 10,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    926:             "\x06\xe5\x93\x48\x12\x26\x40\x06\x25\x92\x44\x12\x29"
                    927:             "\x18" }  },
1.1       albertel  928:       /* --- pixel bitmap for cmr100 char#38 & --- */
1.2       albertel  929:       {  38,73090,                      /* character number, location */
                    930:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                    931:           {  9,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    932:             "\x0c\x24\x48\xd0\xe0\xde\xc8\x93\x14\x31\xdd\x01" }  },
                    933:       /* --- pixel bitmap for cmr100 char#39 ' --- */
                    934:       {  39,88316,                      /* character number, location */
                    935:          10, 2,    6, 2,      /* topleft row,col, and botleft row,col */
                    936:           {  1,    4, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    937:             "\x0f" }  },
1.1       albertel  938:       /* --- pixel bitmap for cmr100 char#40 ( --- */
1.2       albertel  939:       {  40,88860,                      /* character number, location */
                    940:          10, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                    941:           {  3,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    942:             "\x94\x92\x24\x89\x44" }  },
1.1       albertel  943:       /* --- pixel bitmap for cmr100 char#41 ) --- */
1.2       albertel  944:       {  41,89423,                      /* character number, location */
                    945:          10, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                    946:           {  3,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    947:             "\x91\x48\x92\xa4\x14" }  },
1.1       albertel  948:       /* --- pixel bitmap for cmr100 char#42 * --- */
1.2       albertel  949:       {  42,90010,                      /* character number, location */
                    950:          10, 1,    4, 1,      /* topleft row,col, and botleft row,col */
                    951:           {  5,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    952:             "\xa4\x3a\x57\x09" }  },
1.1       albertel  953:       /* --- pixel bitmap for cmr100 char#43 + --- */
1.2       albertel  954:       {  43,90660,                      /* character number, location */
                    955:           8, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                    956:           {  9,    9, 3,11, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    957:             "\xf3\x41\x49\xf3\x41\x43" }  },
1.1       albertel  958:       /* --- pixel bitmap for cmr100 char#44 (noname) --- */
1.2       albertel  959:       {  44,91207,                      /* character number, location */
                    960:           1, 2,   -3, 2,      /* topleft row,col, and botleft row,col */
                    961:           {  1,    4, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    962:             "\x0f" }  },
1.1       albertel  963:       /* --- pixel bitmap for cmr100 char#45 (noname) --- */
1.2       albertel  964:       {  45,112664,                     /* character number, location */
                    965:           4, 0,    3, 0,      /* topleft row,col, and botleft row,col */
                    966:           {  4,    1, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    967:             "\x0f" }  },
1.1       albertel  968:       /* --- pixel bitmap for cmr100 char#46 (noname) --- */
1.2       albertel  969:       {  46,91642,                      /* character number, location */
                    970:           1, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                    971:           {  1,    1, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    972:             "\x01" }  },
1.1       albertel  973:       /* --- pixel bitmap for cmr100 char#47 / --- */
1.2       albertel  974:       {  47,92120,                      /* character number, location */
                    975:          10, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                    976:           {  5,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    977:             "\x10\x22\x84\x08\x21\x42\x88\x10\x00" }  },
1.1       albertel  978:       /* --- pixel bitmap for cmr100 char#48 0 --- */
1.2       albertel  979:       {  48,62917,                      /* character number, location */
                    980:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                    981:           {  5,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    982:             "\x2e\xc6\x18\x63\x8c\x0e" }  },
1.1       albertel  983:       /* --- pixel bitmap for cmr100 char#49 1 --- */
1.2       albertel  984:       {  49,63645,                      /* character number, location */
                    985:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                    986:           {  5,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    987:             "\xe4\x10\x42\x08\x21\x1f" }  },
1.1       albertel  988:       /* --- pixel bitmap for cmr100 char#50 2 --- */
1.2       albertel  989:       {  50,64578,                      /* character number, location */
                    990:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                    991:           {  5,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    992:             "\x2e\x46\x08\x11\x91\x1f" }  },
1.1       albertel  993:       /* --- pixel bitmap for cmr100 char#51 3 --- */
1.2       albertel  994:       {  51,65566,                      /* character number, location */
                    995:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                    996:           {  5,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                    997:             "\x2e\x42\xe8\x60\x8c\x0e" }  },
1.1       albertel  998:       /* --- pixel bitmap for cmr100 char#52 4 --- */
1.2       albertel  999:       {  52,66442,                      /* character number, location */
                   1000:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   1001:           {  7,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1002:             "\x18\x0c\x45\x32\xf9\x43\x20\x38" }  },
1.1       albertel 1003:       /* --- pixel bitmap for cmr100 char#53 5 --- */
1.2       albertel 1004:       {  53,67430,                      /* character number, location */
                   1005:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   1006:           {  5,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1007:             "\x3f\x84\x17\x61\x8c\x0e" }  },
1.1       albertel 1008:       /* --- pixel bitmap for cmr100 char#54 6 --- */
1.2       albertel 1009:       {  54,68274,                      /* character number, location */
                   1010:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   1011:           {  5,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1012:             "\x5c\x84\x17\x63\x94\x0e" }  },
1.1       albertel 1013:       /* --- pixel bitmap for cmr100 char#55 7 --- */
1.2       albertel 1014:       {  55,69122,                      /* character number, location */
                   1015:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   1016:           {  6,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1017:             "\x7f\x08\x21\x08\x41\x10\x04" }  },
1.1       albertel 1018:       /* --- pixel bitmap for cmr100 char#56 8 --- */
1.2       albertel 1019:       {  56,69996,                      /* character number, location */
                   1020:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   1021:           {  5,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1022:             "\x2e\x46\xe5\x62\x8c\x0e" }  },
1.1       albertel 1023:       /* --- pixel bitmap for cmr100 char#57 9 --- */
1.2       albertel 1024:       {  57,70846,                      /* character number, location */
                   1025:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   1026:           {  5,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1027:             "\x2e\xc5\x18\x3d\x44\x07" }  },
1.1       albertel 1028:       /* --- pixel bitmap for cmr100 char#58 : --- */
1.2       albertel 1029:       {  58,92666,                      /* character number, location */
                   1030:           6, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   1031:           {  1,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1032:             "\x21" }  },
1.1       albertel 1033:       /* --- pixel bitmap for cmr100 char#59 ; --- */
1.2       albertel 1034:       {  59,93299,                      /* character number, location */
                   1035:           6, 2,   -3, 2,      /* topleft row,col, and botleft row,col */
                   1036:           {  1,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1037:             "\xe1\x01" }  },
1.1       albertel 1038:       /* --- pixel bitmap for cmr100 char#60 (noname) --- */
1.2       albertel 1039:       {  60,85729,                      /* character number, location */
                   1040:           7, 2,   -3, 2,      /* topleft row,col, and botleft row,col */
                   1041:           {  1,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1042:             "\xf1\x03" }  },
1.1       albertel 1043:       /* --- pixel bitmap for cmr100 char#61 = --- */
1.2       albertel 1044:       {  61,93943,                      /* character number, location */
                   1045:           6, 1,    1, 1,      /* topleft row,col, and botleft row,col */
                   1046:           {  9,    5, 3, 6, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1047:             "\x09\xf2\x99" }  },
1.1       albertel 1048:       /* --- pixel bitmap for cmr100 char#62 (noname) --- */
1.2       albertel 1049:       {  62,74897,                      /* character number, location */
                   1050:           7, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   1051:           {  5,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1052:             "\x04\x00\x40\x88\x08\xd1\x01" }  },
                   1053:       /* --- pixel bitmap for cmr100 char#63 ? --- */
                   1054:       {  63,73999,                      /* character number, location */
                   1055:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   1056:           {  5,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1057:             "\x2e\x42\x44\x08\x00\x80\x00" }  },
                   1058:       /* --- pixel bitmap for cmr100 char#64 @ --- */
                   1059:       {  64,95087,                      /* character number, location */
                   1060:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   1061:           {  9,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1062:             "\x38\x8c\xe9\x2a\x5a\xb4\x68\x51\x7d\x06\xf0\x03" }  },
1.1       albertel 1063:       /* --- pixel bitmap for cmr100 char#65 A --- */
1.2       albertel 1064:       {  65, 1000,                      /* character number, location */
                   1065:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   1066:           { 10,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1067:             "\x30\xc0\x00\x03\x12\x48\xe0\x41\x08\x21\xcf\x03" }  },
1.1       albertel 1068:       /* --- pixel bitmap for cmr100 char#66 B --- */
1.2       albertel 1069:       {  66, 2276,                      /* character number, location */
                   1070:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   1071:           {  8,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1072:             "\x7f\xc2\x82\xc2\x7e\x82\x82\xc2\x7f" }  },
1.1       albertel 1073:       /* --- pixel bitmap for cmr100 char#67 C --- */
1.2       albertel 1074:       {  67, 3151,                      /* character number, location */
                   1075:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   1076:           {  8,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1077:             "\xbc\xc2\x82\x01\x01\x01\x82\x82\x7c" }  },
1.1       albertel 1078:       /* --- pixel bitmap for cmr100 char#68 D --- */
1.2       albertel 1079:       {  68, 4209,                      /* character number, location */
                   1080:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   1081:           { 10,    9, 3,21, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1082:             "\x08\x41\x51\x10\xf4\x21\x61\x21\x51\x18\x21" }  },
1.1       albertel 1083:       /* --- pixel bitmap for cmr100 char#69 E --- */
1.2       albertel 1084:       {  69, 5552,                      /* character number, location */
                   1085:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   1086:           {  8,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1087:             "\x7f\x42\x52\x52\x1e\x92\x92\x42\x7f" }  },
1.1       albertel 1088:       /* --- pixel bitmap for cmr100 char#70 F --- */
1.2       albertel 1089:       {  70, 6759,                      /* character number, location */
                   1090:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   1091:           {  7,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1092:             "\x7f\xa1\x54\xea\x91\x48\x04\x0f" }  },
1.1       albertel 1093:       /* --- pixel bitmap for cmr100 char#71 G --- */
1.2       albertel 1094:       {  71, 7882,                      /* character number, location */
                   1095:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   1096:           {  9,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1097:             "\xbc\x84\x09\x0a\x10\x3e\x90\x20\x41\xfc\x00" }  },
1.1       albertel 1098:       /* --- pixel bitmap for cmr100 char#72 H --- */
1.2       albertel 1099:       {  72, 8999,                      /* character number, location */
                   1100:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   1101:           {  8,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1102:             "\xe7\x42\x42\x42\x7e\x42\x42\x42\xe7" }  },
1.1       albertel 1103:       /* --- pixel bitmap for cmr100 char#73 I --- */
1.2       albertel 1104:       {  73, 9620,                      /* character number, location */
                   1105:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   1106:           {  5,    9, 3, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1107:             "\x05\xf6\x21\x25" }  },
1.1       albertel 1108:       /* --- pixel bitmap for cmr100 char#74 J --- */
1.2       albertel 1109:       {  74,10380,                      /* character number, location */
                   1110:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   1111:           {  5,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1112:             "\x1e\x21\x84\x10\x4a\x07" }  },
1.1       albertel 1113:       /* --- pixel bitmap for cmr100 char#75 K --- */
1.2       albertel 1114:       {  75,11511,                      /* character number, location */
                   1115:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   1116:           { 10,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1117:             "\xdf\x13\x43\x06\x0d\x3c\x30\x41\x04\x21\xdf\x03" }  },
1.1       albertel 1118:       /* --- pixel bitmap for cmr100 char#76 L --- */
1.2       albertel 1119:       {  76,12404,                      /* character number, location */
                   1120:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   1121:           {  8,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1122:             "\x1f\x04\x04\x04\x04\x84\x84\xc4\xff" }  },
1.1       albertel 1123:       /* --- pixel bitmap for cmr100 char#77 M --- */
1.2       albertel 1124:       {  77,13636,                      /* character number, location */
                   1125:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   1126:           { 13,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1127:             "\x0f\x9e\xc1\x30\x18\x8a\x42\x51\x48\x09\x29\x21\x25"
                   1128:             "\x5f\x1f" }  },
1.1       albertel 1129:       /* --- pixel bitmap for cmr100 char#78 N --- */
1.2       albertel 1130:       {  78,14698,                      /* character number, location */
                   1131:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   1132:           {  8,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1133:             "\xe3\x46\x46\x4a\x5a\x52\x62\x62\x47" }  },
1.1       albertel 1134:       /* --- pixel bitmap for cmr100 char#79 O --- */
1.2       albertel 1135:       {  79,15501,                      /* character number, location */
                   1136:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   1137:           {  9,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1138:             "\x7c\x8c\x05\x0c\x18\x30\xe0\x60\x63\x7c\x00" }  },
1.1       albertel 1139:       /* --- pixel bitmap for cmr100 char#80 P --- */
1.2       albertel 1140:       {  80,16558,                      /* character number, location */
                   1141:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   1142:           {  7,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1143:             "\x3f\xa1\x50\xe8\x13\x08\x04\x07" }  },
1.1       albertel 1144:       /* --- pixel bitmap for cmr100 char#81 Q --- */
1.2       albertel 1145:       {  81,17531,                      /* character number, location */
                   1146:           9, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   1147:           {  9,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1148:             "\x7c\x8c\x0d\x0e\x18\x30\xe0\x60\x6f\x7c\x00\x00\x01"
                   1149:             "\x04" }  },
1.1       albertel 1150:       /* --- pixel bitmap for cmr100 char#82 R --- */
1.2       albertel 1151:       {  82,18764,                      /* character number, location */
                   1152:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   1153:           {  9,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1154:             "\x3f\x84\x08\x11\xe2\x43\x84\x08\x11\xe7\x01" }  },
1.1       albertel 1155:       /* --- pixel bitmap for cmr100 char#83 S --- */
1.2       albertel 1156:       {  83,19757,                      /* character number, location */
                   1157:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   1158:           {  6,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1159:             "\x7e\x18\x0c\x1c\x08\x86\x1f" }  },
1.1       albertel 1160:       /* --- pixel bitmap for cmr100 char#84 T --- */
1.2       albertel 1161:       {  84,20785,                      /* character number, location */
                   1162:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   1163:           { 10,    9, 3,19, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1164:             "\x0a\x0f\x21\x41\x31\xf3\x51\x40\x35\x21" }  },
1.1       albertel 1165:       /* --- pixel bitmap for cmr100 char#85 U --- */
1.2       albertel 1166:       {  85,21725,                      /* character number, location */
                   1167:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   1168:           {  8,    9, 3,15, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1169:             "\x03\x23\xf6\x11\x41\x10\x24\x20" }  },
1.1       albertel 1170:       /* --- pixel bitmap for cmr100 char#86 V --- */
1.2       albertel 1171:       {  86,22663,                      /* character number, location */
                   1172:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   1173:           { 10,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1174:             "\xcf\x13\x42\x08\x12\x48\x20\x01\x03\x0c\x30\x00" }  },
1.1       albertel 1175:       /* --- pixel bitmap for cmr100 char#87 W --- */
1.2       albertel 1176:       {  87,24012,                      /* character number, location */
                   1177:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   1178:           { 14,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1179:             "\xcf\x3d\x31\x42\x8c\x90\x24\x24\x09\x4a\x81\x61\x60"
                   1180:             "\x18\x10\x02" }  },
1.1       albertel 1181:       /* --- pixel bitmap for cmr100 char#88 X --- */
1.2       albertel 1182:       {  88,25057,                      /* character number, location */
                   1183:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   1184:           { 10,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1185:             "\xcf\x31\x81\x06\x0c\x30\xc0\x80\x04\x21\xcf\x03" }  },
1.1       albertel 1186:       /* --- pixel bitmap for cmr100 char#89 Y --- */
1.2       albertel 1187:       {  89,26149,                      /* character number, location */
                   1188:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   1189:           { 10,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1190:             "\xcf\x13\x82\x0c\x14\x30\x80\x00\x02\x08\x70\x00" }  },
1.1       albertel 1191:       /* --- pixel bitmap for cmr100 char#90 Z --- */
1.2       albertel 1192:       {  90,27142,                      /* character number, location */
                   1193:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   1194:           {  6,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1195:             "\xff\x14\x25\x0c\x29\xca\x3f" }  },
1.1       albertel 1196:       /* --- pixel bitmap for cmr100 char#91 [ --- */
1.2       albertel 1197:       {  91,95760,                      /* character number, location */
                   1198:          10, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   1199:           {  3,   13, 3, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1200:             "\x03\x0f\xa1\x23" }  },
1.1       albertel 1201:       /* --- pixel bitmap for cmr100 char#92 (noname) --- */
1.2       albertel 1202:       {  92,113505,                     /* character number, location */
                   1203:          10, 3,    6, 3,      /* topleft row,col, and botleft row,col */
                   1204:           {  4,    4, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1205:             "\x99\x99" }  },
1.1       albertel 1206:       /* --- pixel bitmap for cmr100 char#93 ] --- */
1.2       albertel 1207:       {  93,96408,                      /* character number, location */
                   1208:          10, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   1209:           {  3,   13, 3, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1210:             "\x03\xfa\x21\x03" }  },
1.1       albertel 1211:       /* --- pixel bitmap for cmr100 char#94 \^ --- */
1.2       albertel 1212:       {  94,102285,                     /* character number, location */
                   1213:          10, 2,    8, 2,      /* topleft row,col, and botleft row,col */
                   1214:           {  3,    2, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1215:             "\x2a" }  },
1.1       albertel 1216:       /* --- pixel bitmap for cmr100 char#95 (noname) --- */
1.2       albertel 1217:       {  95,102722,                     /* character number, location */
                   1218:          10, 2,    9, 2,      /* topleft row,col, and botleft row,col */
                   1219:           {  1,    1, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1220:             "\x01" }  },
1.1       albertel 1221:       /* --- pixel bitmap for cmr100 char#96 (noname) --- */
1.2       albertel 1222:       {  96,96976,                      /* character number, location */
                   1223:          10, 2,    6, 2,      /* topleft row,col, and botleft row,col */
                   1224:           {  1,    4, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1225:             "\x0f" }  },
1.1       albertel 1226:       /* --- pixel bitmap for cmr100 char#97 a --- */
1.2       albertel 1227:       {  97,28238,                      /* character number, location */
                   1228:           6, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   1229:           {  6,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1230:             "\x0f\xe4\x45\xb1\x0f" }  },
1.1       albertel 1231:       /* --- pixel bitmap for cmr100 char#98 b --- */
1.2       albertel 1232:       {  98,29194,                      /* character number, location */
                   1233:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   1234:           {  6,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1235:             "\x83\x20\x08\x9e\x28\x8a\xa2\x07" }  },
1.1       albertel 1236:       /* --- pixel bitmap for cmr100 char#99 c --- */
1.2       albertel 1237:       {  99,29921,                      /* character number, location */
                   1238:           6, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   1239:           {  5,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1240:             "\x2e\x84\x10\x1d" }  },
1.1       albertel 1241:       /* --- pixel bitmap for cmr100 char#100 d --- */
1.2       albertel 1242:       { 100,30876,                      /* character number, location */
                   1243:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   1244:           {  6,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1245:             "\x18\x04\x41\x5e\x14\x45\x91\x0f" }  },
1.1       albertel 1246:       /* --- pixel bitmap for cmr100 char#101 e --- */
1.2       albertel 1247:       { 101,31588,                      /* character number, location */
                   1248:           6, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   1249:           {  6,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1250:             "\x5e\xf8\x07\x23\x07" }  },
1.1       albertel 1251:       /* --- pixel bitmap for cmr100 char#102 f --- */
1.2       albertel 1252:       { 102,32397,                      /* character number, location */
                   1253:          10,-1,    0,-1,      /* topleft row,col, and botleft row,col */
                   1254:           {  6,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1255:             "\x38\x41\x10\x1f\x41\x10\x84\x03" }  },
1.1       albertel 1256:       /* --- pixel bitmap for cmr100 char#103 g --- */
1.2       albertel 1257:       { 103,33592,                      /* character number, location */
                   1258:           6, 0,   -4, 0,      /* topleft row,col, and botleft row,col */
                   1259:           {  7,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1260:             "\x7c\x89\xc4\x21\xf0\x05\x83\x63\x0e" }  },
1.1       albertel 1261:       /* --- pixel bitmap for cmr100 char#104 h --- */
1.2       albertel 1262:       { 104,34521,                      /* character number, location */
                   1263:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   1264:           {  6,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1265:             "\x83\x20\x08\x8e\x24\x49\xd2\x0d" }  },
1.1       albertel 1266:       /* --- pixel bitmap for cmr100 char#105 i --- */
1.2       albertel 1267:       { 105,35164,                      /* character number, location */
                   1268:          10, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   1269:           {  3,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1270:             "\x02\x30\x49\x3a" }  },
1.1       albertel 1271:       /* --- pixel bitmap for cmr100 char#106 j --- */
1.2       albertel 1272:       { 106,35922,                      /* character number, location */
                   1273:          10,-1,   -3,-1,      /* topleft row,col, and botleft row,col */
                   1274:           {  4,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1275:             "\x08\x00\x8c\x88\x88\x88\x07" }  },
1.1       albertel 1276:       /* --- pixel bitmap for cmr100 char#107 k --- */
1.2       albertel 1277:       { 107,36998,                      /* character number, location */
                   1278:          10, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   1279:           {  7,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1280:             "\x03\x81\x40\xa0\x57\x38\x14\x92\x3b" }  },
1.1       albertel 1281:       /* --- pixel bitmap for cmr100 char#108 l --- */
1.2       albertel 1282:       { 108,37547,                      /* character number, location */
                   1283:          10, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   1284:           {  3,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1285:             "\x93\x24\x49\x3a" }  },
1.1       albertel 1286:       /* --- pixel bitmap for cmr100 char#109 m --- */
1.2       albertel 1287:       { 109,38846,                      /* character number, location */
                   1288:           6, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   1289:           { 11,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1290:             "\xdf\x11\x91\x88\x44\x24\xa2\x33\x03" }  },
1.1       albertel 1291:       /* --- pixel bitmap for cmr100 char#110 n --- */
1.2       albertel 1292:       { 110,39779,                      /* character number, location */
                   1293:           6, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   1294:           {  6,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1295:             "\x8f\x24\x49\xd2\x0d" }  },
1.1       albertel 1296:       /* --- pixel bitmap for cmr100 char#111 o --- */
1.2       albertel 1297:       { 111,40432,                      /* character number, location */
                   1298:           6, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   1299:           {  7,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1300:             "\x9c\x71\x30\x38\xe6\x00" }  },
1.1       albertel 1301:       /* --- pixel bitmap for cmr100 char#112 p --- */
1.2       albertel 1302:       { 112,41456,                      /* character number, location */
                   1303:           6, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   1304:           {  6,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1305:             "\x9f\x28\x8a\xa2\x27\x08\x07" }  },
1.1       albertel 1306:       /* --- pixel bitmap for cmr100 char#113 q --- */
1.2       albertel 1307:       { 113,42438,                      /* character number, location */
                   1308:           6, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   1309:           {  7,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1310:             "\x3c\x51\x28\x24\xe3\x81\x40\x70" }  },
1.1       albertel 1311:       /* --- pixel bitmap for cmr100 char#114 r --- */
1.2       albertel 1312:       { 114,43249,                      /* character number, location */
                   1313:           6, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   1314:           {  5,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1315:             "\x5f\x08\x21\x0e" }  },
1.1       albertel 1316:       /* --- pixel bitmap for cmr100 char#115 s --- */
1.2       albertel 1317:       { 115,44144,                      /* character number, location */
                   1318:           6, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   1319:           {  5,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1320:             "\x2e\x19\x1c\x1f" }  },
1.1       albertel 1321:       /* --- pixel bitmap for cmr100 char#116 t --- */
1.2       albertel 1322:       { 116,44927,                      /* character number, location */
                   1323:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   1324:           {  4,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1325:             "\x22\xf2\x22\xaa\x04" }  },
1.1       albertel 1326:       /* --- pixel bitmap for cmr100 char#117 u --- */
1.2       albertel 1327:       { 117,45812,                      /* character number, location */
                   1328:           6, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   1329:           {  6,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1330:             "\x9b\x24\x49\x12\x0f" }  },
1.1       albertel 1331:       /* --- pixel bitmap for cmr100 char#118 v --- */
1.2       albertel 1332:       { 118,46660,                      /* character number, location */
                   1333:           6, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   1334:           {  7,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1335:             "\x77\x11\x85\x42\x41\x00" }  },
1.1       albertel 1336:       /* --- pixel bitmap for cmr100 char#119 w --- */
1.2       albertel 1337:       { 119,47871,                      /* character number, location */
                   1338:           6, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   1339:           { 10,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1340:             "\x37\xcb\xc4\x0c\x33\xcc\x30\x03" }  },
1.1       albertel 1341:       /* --- pixel bitmap for cmr100 char#120 x --- */
1.2       albertel 1342:       { 120,48812,                      /* character number, location */
                   1343:           6, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   1344:           {  7,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1345:             "\x77\x0a\x02\x41\xb9\x03" }  },
1.1       albertel 1346:       /* --- pixel bitmap for cmr100 char#121 y --- */
1.2       albertel 1347:       { 121,49861,                      /* character number, location */
                   1348:           6, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   1349:           {  7,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1350:             "\x77\x19\x85\xc2\x41\x20\x08\x07" }  },
1.1       albertel 1351:       /* --- pixel bitmap for cmr100 char#122 z --- */
1.2       albertel 1352:       { 122,50776,                      /* character number, location */
                   1353:           6, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   1354:           {  5,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1355:             "\x5e\x39\x2b\x3f" }  },
1.1       albertel 1356:       /* --- pixel bitmap for cmr100 char#123 (noname) --- */
1.2       albertel 1357:       { 123,114079,                     /* character number, location */
                   1358:           4, 0,    3, 0,      /* topleft row,col, and botleft row,col */
                   1359:           {  7,    1, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1360:             "\x7f" }  },
1.1       albertel 1361:       /* --- pixel bitmap for cmr100 char#124 (noname) --- */
1.2       albertel 1362:       { 124,114873,                     /* character number, location */
                   1363:           4, 0,    3, 0,      /* topleft row,col, and botleft row,col */
                   1364:           { 14,    1, 3, 2, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1365:             "\x0e" }  },
1.1       albertel 1366:       /* --- pixel bitmap for cmr100 char#125 (noname) --- */
1.2       albertel 1367:       { 125,103371,                     /* character number, location */
                   1368:          10, 2,    7, 2,      /* topleft row,col, and botleft row,col */
                   1369:           {  4,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1370:             "\x5a\x05" }  },
1.1       albertel 1371:       /* --- pixel bitmap for cmr100 char#126 \~ --- */
1.2       albertel 1372:       { 126,104025,                     /* character number, location */
                   1373:           9, 1,    7, 1,      /* topleft row,col, and botleft row,col */
                   1374:           {  5,    2, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1375:             "\xb6\x01" }  },
1.1       albertel 1376:       /* --- pixel bitmap for cmr100 char#127 (noname) --- */
1.2       albertel 1377:       { 127,104678,                     /* character number, location */
                   1378:          10, 2,    9, 2,      /* topleft row,col, and botleft row,col */
                   1379:           {  3,    1, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1380:             "\x05" }  },
1.1       albertel 1381:       /* --- trailer  --- */
1.2       albertel 1382:       { -99, -999,  0,0,0,0, { 0,0,0,0, (pixbyte *)"\0" }  }
1.1       albertel 1383:    } ;
                   1384: 
                   1385: 
1.2       albertel 1386: /* --- size=2 for .118gf ---
                   1387:  * mf '\mode=preview; mag=magstep(-16.96645799324018499600); input cmr10'
                   1388:  * --------------------------------------------------------------------- */
1.1       albertel 1389: /* --- fontdef for cmr118 --- */
                   1390: static	chardef  cmr118[] =
                   1391:    {
1.2       albertel 1392:       /* --- pixel bitmap for cmr118 char#0 \Gamma --- */
                   1393:       {   0,52128,                      /* character number, location */
                   1394:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   1395:           {  9,   11, 3,19, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1396:             "\x09\x21\x42\xf1\x21\x51\xf5\x21\x65\x41" }  },
                   1397:       /* --- pixel bitmap for cmr118 char#1 \Delta --- */
                   1398:       {   1,52997,                      /* character number, location */
                   1399:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   1400:           { 12,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1401:             "\x60\x00\x06\x90\x00\x09\x08\x81\x10\x04\x42\x20\x02"
                   1402:             "\x34\xc0\xff\x0f" }  },
                   1403:       /* --- pixel bitmap for cmr118 char#2 \Theta --- */
                   1404:       {   2,54090,                      /* character number, location */
                   1405:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   1406:           { 11,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1407:             "\xf8\x20\x88\x80\x02\x98\xc8\x7c\x26\x32\x80\x02\x22"
                   1408:             "\x08\x3e\x00" }  },
                   1409:       /* --- pixel bitmap for cmr118 char#3 \Lambda --- */
                   1410:       {   3,55002,                      /* character number, location */
                   1411:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   1412:           { 11,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1413:             "\x20\x00\x01\x14\xa0\x00\x05\x44\x20\x02\x11\x04\x21"
                   1414:             "\xc8\xe3\x01" }  },
                   1415:       /* --- pixel bitmap for cmr118 char#4 \Xi --- */
                   1416:       {   4,56337,                      /* character number, location */
                   1417:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   1418:           {  9,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1419:             "\xff\x03\x02\x00\x20\xc8\x9f\x20\x00\x01\x03\xfe\x07" }  },
                   1420:       /* --- pixel bitmap for cmr118 char#5 \Pi --- */
                   1421:       {   5,57458,                      /* character number, location */
                   1422:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   1423:           { 12,   11, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1424:             "\x0c\xf8\x21\x61\x25\x25" }  },
                   1425:       /* --- pixel bitmap for cmr118 char#6 \Sigma --- */
                   1426:       {   6,58543,                      /* character number, location */
                   1427:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   1428:           { 10,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1429:             "\xff\x0f\x6c\x20\x81\x08\x40\x80\x00\x83\x04\x0a\xfc"
1.1       albertel 1430:             "\x3f" }  },
1.2       albertel 1431:       /* --- pixel bitmap for cmr118 char#7 \Upsilon --- */
                   1432:       {   7,59601,                      /* character number, location */
                   1433:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   1434:           { 11,   11, 3,25, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1435:             "\x13\x33\x11\x31\x11\x31\xf1\xb0\xf5\x51\x50\x35\x31" }  },
                   1436:       /* --- pixel bitmap for cmr118 char#8 \Phi --- */
                   1437:       {   8,60593,                      /* character number, location */
                   1438:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   1439:           { 10,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1440:             "\xf8\x80\x00\x02\x3f\x23\x87\x38\x32\x3f\x20\x80\x80"
                   1441:             "\x0f" }  },
                   1442:       /* --- pixel bitmap for cmr118 char#9 \Psi --- */
                   1443:       {   9,61664,                      /* character number, location */
                   1444:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   1445:           { 11,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1446:             "\xf8\x00\xc1\x88\x45\x24\x22\x11\x91\x04\x1f\x20\x00"
                   1447:             "\x01\x3e\x00" }  },
                   1448:       /* --- pixel bitmap for cmr118 char#10 \Omega --- */
                   1449:       {  10,62781,                      /* character number, location */
                   1450:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   1451:           { 10,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1452:             "\xfc\x08\x14\x60\x80\x01\x06\x28\x10\x21\x85\x2a\xe5"
1.1       albertel 1453:             "\x1c" }  },
1.2       albertel 1454:       /* --- pixel bitmap for cmr118 char#11 \ff --- */
                   1455:       {  11,107078,                     /* character number, location */
                   1456:          11,-1,    0,-1,      /* topleft row,col, and botleft row,col */
                   1457:           { 12,   11, 3,31, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1458:             "\x57\x32\x31\x30\xf1\x31\x41\x3b\x10\xf4\x31\x41\x30"
                   1459:             "\x22\x43\x11" }  },
                   1460:       /* --- pixel bitmap for cmr118 char#12 \fi --- */
                   1461:       {  12,108204,                     /* character number, location */
                   1462:          11,-1,    0,-1,      /* topleft row,col, and botleft row,col */
                   1463:           {  9,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1464:             "\xf0\x10\x20\x40\xf0\x0f\x19\x22\x44\x88\x10\x31\x06" }  },
                   1465:       /* --- pixel bitmap for cmr118 char#13 \fl --- */
                   1466:       {  13,109324,                     /* character number, location */
                   1467:          11,-1,    0,-1,      /* topleft row,col, and botleft row,col */
                   1468:           {  9,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1469:             "\xf0\x10\x21\x42\xf4\x0f\x11\x22\x44\x88\x10\x31\x06" }  },
                   1470:       /* --- pixel bitmap for cmr118 char#14 \ffi --- */
                   1471:       {  14,110895,                     /* character number, location */
                   1472:          11,-1,    0,-1,      /* topleft row,col, and botleft row,col */
                   1473:           { 14,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1474:             "\xe0\x1f\x46\x80\x10\x20\x04\xff\x1f\x42\x86\x10\x21"
                   1475:             "\x44\x08\x11\x42\xc4\x10\x03" }  },
                   1476:       /* --- pixel bitmap for cmr118 char#15 \ffl --- */
                   1477:       {  15,112478,                     /* character number, location */
                   1478:          11,-1,    0,-1,      /* topleft row,col, and botleft row,col */
                   1479:           { 14,   11, 3,38, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1480:             "\x58\x42\x31\x31\x10\xf1\x31\x41\x31\x1d\x10\xf4\x31"
                   1481:             "\x41\x31\x10\x23\x23\x13" }  },
                   1482:       /* --- pixel bitmap for cmr118 char#16 \imath --- */
                   1483:       {  16,76126,                      /* character number, location */
                   1484:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   1485:           {  3,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1486:             "\x93\x24\x1d" }  },
                   1487:       /* --- pixel bitmap for cmr118 char#17 \jmath --- */
                   1488:       {  17,76792,                      /* character number, location */
                   1489:           7,-1,   -3,-1,      /* topleft row,col, and botleft row,col */
                   1490:           {  4,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1491:             "\x8c\x88\x88\x88\x78" }  },
                   1492:       /* --- pixel bitmap for cmr118 char#18 \gravesym --- */
                   1493:       {  18,98621,                      /* character number, location */
                   1494:          11, 2,    8, 2,      /* topleft row,col, and botleft row,col */
                   1495:           {  3,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1496:             "\x11\x01" }  },
                   1497:       /* --- pixel bitmap for cmr118 char#19 \acutesym --- */
                   1498:       {  19,99164,                      /* character number, location */
                   1499:          11, 3,    8, 3,      /* topleft row,col, and botleft row,col */
                   1500:           {  3,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1501:             "\x54\x00" }  },
                   1502:       /* --- pixel bitmap for cmr118 char#20 \checksym --- */
                   1503:       {  20,99763,                      /* character number, location */
                   1504:          10, 2,    9, 2,      /* topleft row,col, and botleft row,col */
                   1505:           {  4,    1, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1506:             "\x0f" }  },
                   1507:       /* --- pixel bitmap for cmr118 char#21 \brevesym --- */
                   1508:       {  21,100349,                     /* character number, location */
                   1509:          11, 1,    8, 1,      /* topleft row,col, and botleft row,col */
                   1510:           {  6,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1511:             "\xe1\xec\x01" }  },
1.1       albertel 1512:       /* --- pixel bitmap for cmr118 char#22 (noname) --- */
1.2       albertel 1513:       {  22,100903,                     /* character number, location */
                   1514:           9, 1,    8, 1,      /* topleft row,col, and botleft row,col */
                   1515:           {  6,    1, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1516:             "\x3f" }  },
1.1       albertel 1517:       /* --- pixel bitmap for cmr118 char#23 (noname) --- */
1.2       albertel 1518:       {  23,101654,                     /* character number, location */
                   1519:          11, 4,    8, 4,      /* topleft row,col, and botleft row,col */
                   1520:           {  4,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1521:             "\x96\x06" }  },
1.1       albertel 1522:       /* --- pixel bitmap for cmr118 char#24 (noname) --- */
1.2       albertel 1523:       {  24,102316,                     /* character number, location */
                   1524:           0, 2,   -3, 2,      /* topleft row,col, and botleft row,col */
                   1525:           {  4,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1526:             "\x86\x0f" }  },
1.1       albertel 1527:       /* --- pixel bitmap for cmr118 char#25 \ss --- */
1.2       albertel 1528:       {  25,77839,                      /* character number, location */
                   1529:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   1530:           {  7,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1531:             "\x1c\x91\x48\xb4\x11\x09\x85\x42\xe1\x0e" }  },
1.1       albertel 1532:       /* --- pixel bitmap for cmr118 char#26 \ae --- */
1.2       albertel 1533:       {  26,79138,                      /* character number, location */
                   1534:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   1535:           { 11,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1536:             "\x9f\x03\x23\xff\x45\x10\x82\x30\x7a\x0e" }  },
1.1       albertel 1537:       /* --- pixel bitmap for cmr118 char#27 \oe --- */
1.2       albertel 1538:       {  27,80214,                      /* character number, location */
                   1539:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   1540:           { 12,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1541:             "\x8c\x27\xc5\xe1\x1f\x02\x21\x20\x85\x8c\x07" }  },
1.1       albertel 1542:       /* --- pixel bitmap for cmr118 char#28 (noname) --- */
1.2       albertel 1543:       {  28,80990,                      /* character number, location */
                   1544:           9, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   1545:           {  6,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1546:             "\x20\xe4\x69\x69\x5b\x5a\x9e\x10\x00" }  },
1.1       albertel 1547:       /* --- pixel bitmap for cmr118 char#29 \AE --- */
1.2       albertel 1548:       {  29,82726,                      /* character number, location */
                   1549:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   1550:           { 15,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1551:             "\xf0\x3f\x50\x18\x28\x08\x12\x05\x89\x80\x7f\x20\x22"
                   1552:             "\x11\x91\x88\x20\x42\xd0\xf3\x0f" }  },
1.1       albertel 1553:       /* --- pixel bitmap for cmr118 char#30 \OE --- */
1.2       albertel 1554:       {  30,84376,                      /* character number, location */
                   1555:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   1556:           { 16,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1557:             "\xf8\x7f\x84\x61\x82\x41\x81\x51\x01\x11\x01\x1f\x01"
                   1558:             "\x91\x83\x91\x82\x41\x8c\x41\xf8\x7f" }  },
1.1       albertel 1559:       /* --- pixel bitmap for cmr118 char#31 (noname) --- */
1.2       albertel 1560:       {  31,85308,                      /* character number, location */
                   1561:          12, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   1562:           { 11,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1563:             "\x00\xc2\x0f\x61\x04\x15\xc4\x20\x86\x30\x82\x11\x54"
                   1564:             "\x10\x43\xf8\x21\x00" }  },
1.1       albertel 1565:       /* --- pixel bitmap for cmr118 char#32 (noname) --- */
1.2       albertel 1566:       {  32,102812,                     /* character number, location */
                   1567:           6, 0,    5, 0,      /* topleft row,col, and botleft row,col */
                   1568:           {  5,    1, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1569:             "\x1f" }  },
1.1       albertel 1570:       /* --- pixel bitmap for cmr118 char#33 ! --- */
1.2       albertel 1571:       {  33,85939,                      /* character number, location */
                   1572:          11, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   1573:           {  2,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1574:             "\xff\x0f\x3c" }  },
1.1       albertel 1575:       /* --- pixel bitmap for cmr118 char#34 " --- */
1.2       albertel 1576:       {  34,113375,                     /* character number, location */
                   1577:          11, 1,    6, 1,      /* topleft row,col, and botleft row,col */
                   1578:           {  5,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1579:             "\x7b\x4b\x99\x00" }  },
1.1       albertel 1580:       /* --- pixel bitmap for cmr118 char#35 # --- */
1.2       albertel 1581:       {  35,87355,                      /* character number, location */
                   1582:          11, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   1583:           { 12,   14, 3,31, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1584:             "\xf3\x51\x31\x2c\xf2\x41\x31\x3c\xf1\x31\x31\x40\xf2"
                   1585:             "\x21\x31\x51" }  },
1.1       albertel 1586:       /* --- pixel bitmap for cmr118 char#36 $ --- */
1.2       albertel 1587:       {  36,72494,                      /* character number, location */
                   1588:          12, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   1589:           {  6,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1590:             "\x88\x97\xa6\x89\xc2\xa1\x69\x9a\x39\x08" }  },
1.1       albertel 1591:       /* --- pixel bitmap for cmr118 char#37 % --- */
1.2       albertel 1592:       {  37,88546,                      /* character number, location */
                   1593:          12, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   1594:           { 12,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1595:             "\x0e\xa4\x31\xf1\x12\x11\x91\xa0\x04\x4e\x07\x52\x90"
                   1596:             "\x88\x88\x88\x48\x50\x02\x07" }  },
1.1       albertel 1597:       /* --- pixel bitmap for cmr118 char#38 & --- */
1.2       albertel 1598:       {  38,73718,                      /* character number, location */
                   1599:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   1600:           { 11,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1601:             "\x18\x20\x01\x09\x68\xc0\x79\x86\x38\x22\x12\x71\x18"
                   1602:             "\xa3\xe7\x00" }  },
                   1603:       /* --- pixel bitmap for cmr118 char#39 ' --- */
                   1604:       {  39,89180,                      /* character number, location */
                   1605:          11, 2,    6, 2,      /* topleft row,col, and botleft row,col */
                   1606:           {  2,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1607:             "\xaf\x01" }  },
1.1       albertel 1608:       /* --- pixel bitmap for cmr118 char#40 ( --- */
1.2       albertel 1609:       {  40,89726,                      /* character number, location */
                   1610:          12, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   1611:           {  4,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1612:             "\x48\x22\x11\x11\x11\x21\x42\x08" }  },
1.1       albertel 1613:       /* --- pixel bitmap for cmr118 char#41 ) --- */
1.2       albertel 1614:       {  41,90293,                      /* character number, location */
                   1615:          12, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   1616:           {  4,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1617:             "\x21\x44\x88\x88\x88\x48\x24\x01" }  },
1.1       albertel 1618:       /* --- pixel bitmap for cmr118 char#42 * --- */
1.2       albertel 1619:       {  42,90884,                      /* character number, location */
                   1620:          12, 1,    5, 1,      /* topleft row,col, and botleft row,col */
                   1621:           {  6,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1622:             "\x08\xb2\x33\x3b\x82\x00" }  },
1.1       albertel 1623:       /* --- pixel bitmap for cmr118 char#43 + --- */
1.2       albertel 1624:       {  43,91532,                      /* character number, location */
                   1625:          10, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   1626:           { 11,   11, 3,11, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1627:             "\xf4\x51\x5b\xf4\x51\x52" }  },
1.1       albertel 1628:       /* --- pixel bitmap for cmr118 char#44 (noname) --- */
1.2       albertel 1629:       {  44,92109,                      /* character number, location */
                   1630:           2, 2,   -3, 2,      /* topleft row,col, and botleft row,col */
                   1631:           {  2,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1632:             "\xaf\x01" }  },
1.1       albertel 1633:       /* --- pixel bitmap for cmr118 char#45 (noname) --- */
1.2       albertel 1634:       {  45,113848,                     /* character number, location */
                   1635:           4, 0,    3, 0,      /* topleft row,col, and botleft row,col */
                   1636:           {  4,    1, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1637:             "\x0f" }  },
1.1       albertel 1638:       /* --- pixel bitmap for cmr118 char#46 (noname) --- */
1.2       albertel 1639:       {  46,92572,                      /* character number, location */
                   1640:           2, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   1641:           {  2,    2, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1642:             "\x0f" }  },
1.1       albertel 1643:       /* --- pixel bitmap for cmr118 char#47 / --- */
1.2       albertel 1644:       {  47,93052,                      /* character number, location */
                   1645:          12, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   1646:           {  6,   16, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1647:             "\x20\x08\x41\x10\x82\x20\x04\x41\x08\x82\x10\x04" }  },
1.1       albertel 1648:       /* --- pixel bitmap for cmr118 char#48 0 --- */
1.2       albertel 1649:       {  48,63463,                      /* character number, location */
                   1650:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   1651:           {  6,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1652:             "\x8c\x14\x86\x61\x18\x86\xa1\xc4\x00" }  },
1.1       albertel 1653:       /* --- pixel bitmap for cmr118 char#49 1 --- */
1.2       albertel 1654:       {  49,64199,                      /* character number, location */
                   1655:          11, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   1656:           {  5,   11, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1657:             "\x21\x23\x20\xf7\x21\x25" }  },
1.1       albertel 1658:       /* --- pixel bitmap for cmr118 char#50 2 --- */
1.2       albertel 1659:       {  50,65136,                      /* character number, location */
                   1660:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   1661:           {  6,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1662:             "\x4e\x14\x86\x20\x04\x21\xa4\xf8\x03" }  },
1.1       albertel 1663:       /* --- pixel bitmap for cmr118 char#51 3 --- */
1.2       albertel 1664:       {  51,66132,                      /* character number, location */
                   1665:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   1666:           {  6,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1667:             "\x5e\x18\x82\x10\x07\x81\x61\xe4\x00" }  },
1.1       albertel 1668:       /* --- pixel bitmap for cmr118 char#52 4 --- */
1.2       albertel 1669:       {  52,67014,                      /* character number, location */
                   1670:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   1671:           {  8,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1672:             "\x30\x30\x28\x24\x22\x23\xff\x20\x20\x20\xf8" }  },
1.1       albertel 1673:       /* --- pixel bitmap for cmr118 char#53 5 --- */
1.2       albertel 1674:       {  53,68008,                      /* character number, location */
                   1675:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   1676:           {  6,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1677:             "\xe1\x17\x04\xcd\x04\x82\x61\xe4\x00" }  },
1.1       albertel 1678:       /* --- pixel bitmap for cmr118 char#54 6 --- */
1.2       albertel 1679:       {  54,68860,                      /* character number, location */
                   1680:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   1681:           {  6,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1682:             "\x9c\x28\x04\xcd\x14\x86\xa1\xc4\x00" }  },
1.1       albertel 1683:       /* --- pixel bitmap for cmr118 char#55 7 --- */
1.2       albertel 1684:       {  55,69718,                      /* character number, location */
                   1685:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   1686:           {  7,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1687:             "\x81\x7f\x30\x04\x81\x20\x10\x04\x02\x81\x00" }  },
1.1       albertel 1688:       /* --- pixel bitmap for cmr118 char#56 8 --- */
1.2       albertel 1689:       {  56,70600,                      /* character number, location */
                   1690:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   1691:           {  6,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1692:             "\x5e\x18\x86\x9e\x33\x85\x61\xe8\x01" }  },
1.1       albertel 1693:       /* --- pixel bitmap for cmr118 char#57 9 --- */
1.2       albertel 1694:       {  57,71456,                      /* character number, location */
                   1695:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   1696:           {  6,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1697:             "\x8c\x14\x86\xa1\xcc\x82\x50\xe4\x00" }  },
1.1       albertel 1698:       /* --- pixel bitmap for cmr118 char#58 : --- */
1.2       albertel 1699:       {  58,93630,                      /* character number, location */
                   1700:           7, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   1701:           {  2,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1702:             "\x0f\x3c" }  },
1.1       albertel 1703:       /* --- pixel bitmap for cmr118 char#59 ; --- */
1.2       albertel 1704:       {  59,94293,                      /* character number, location */
                   1705:           7, 2,   -3, 2,      /* topleft row,col, and botleft row,col */
                   1706:           {  2,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1707:             "\x0f\xbc\x06" }  },
1.1       albertel 1708:       /* --- pixel bitmap for cmr118 char#60 (noname) --- */
1.2       albertel 1709:       {  60,86543,                      /* character number, location */
                   1710:           8, 2,   -3, 2,      /* topleft row,col, and botleft row,col */
                   1711:           {  2,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1712:             "\x0f\xfc\x3f" }  },
1.1       albertel 1713:       /* --- pixel bitmap for cmr118 char#61 = --- */
1.2       albertel 1714:       {  61,94941,                      /* character number, location */
                   1715:           7, 1,    2, 1,      /* topleft row,col, and botleft row,col */
                   1716:           { 11,    5, 3, 6, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1717:             "\x0b\xf2\xbb" }  },
1.1       albertel 1718:       /* --- pixel bitmap for cmr118 char#62 (noname) --- */
1.2       albertel 1719:       {  62,75531,                      /* character number, location */
                   1720:           8, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   1721:           {  6,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1722:             "\x0c\x03\x00\x00\x43\x18\x41\xe8\x01" }  },
                   1723:       /* --- pixel bitmap for cmr118 char#63 ? --- */
                   1724:       {  63,74631,                      /* character number, location */
                   1725:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   1726:           {  6,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1727:             "\x5e\x08\x62\x08\x03\x00\x00\xc3\x00" }  },
                   1728:       /* --- pixel bitmap for cmr118 char#64 @ --- */
                   1729:       {  64,96085,                      /* character number, location */
                   1730:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   1731:           { 11,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1732:             "\xf8\x20\x88\x9c\x12\x5b\xd0\x82\x16\x34\xb1\x72\x23"
                   1733:             "\x00\xfe\x01" }  },
1.1       albertel 1734:       /* --- pixel bitmap for cmr118 char#65 A --- */
1.2       albertel 1735:       {  65, 1000,                      /* character number, location */
                   1736:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   1737:           { 12,   11, 3,32, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1738:             "\xf2\x52\x50\xf2\x41\x21\x40\x31\x41\x66\x61\x41\x51"
                   1739:             "\x61\x25\x25" }  },
1.1       albertel 1740:       /* --- pixel bitmap for cmr118 char#66 B --- */
1.2       albertel 1741:       {  66, 2284,                      /* character number, location */
                   1742:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   1743:           { 11,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1744:             "\xff\x21\x10\x01\x09\x48\x30\xfe\x11\x98\x80\x04\x24"
                   1745:             "\xd0\x7f\x00" }  },
1.1       albertel 1746:       /* --- pixel bitmap for cmr118 char#67 C --- */
1.2       albertel 1747:       {  67, 3167,                      /* character number, location */
                   1748:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   1749:           { 10,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1750:             "\xf8\x12\x2c\x60\x80\x01\x04\x10\x40\x80\x02\x12\x84"
                   1751:             "\x0f" }  },
1.1       albertel 1752:       /* --- pixel bitmap for cmr118 char#68 D --- */
1.2       albertel 1753:       {  68, 4233,                      /* character number, location */
                   1754:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   1755:           { 11,   11, 3,29, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1756:             "\x08\x51\x51\x41\x61\x10\xf4\x21\x71\x21\x61\x31\x52"
                   1757:             "\x18\x31" }  },
1.1       albertel 1758:       /* --- pixel bitmap for cmr118 char#69 E --- */
1.2       albertel 1759:       {  69, 5584,                      /* character number, location */
                   1760:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   1761:           { 11,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1762:             "\xff\x23\x18\x81\x88\x44\x04\x3e\x10\x91\x88\x04\x22"
                   1763:             "\xd8\xff\x00" }  },
1.1       albertel 1764:       /* --- pixel bitmap for cmr118 char#70 F --- */
1.2       albertel 1765:       {  70, 6797,                      /* character number, location */
                   1766:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   1767:           { 10,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1768:             "\xff\x13\x4c\x20\xa1\x84\xf0\x43\x08\x21\x04\x10\xf0"
                   1769:             "\x01" }  },
1.1       albertel 1770:       /* --- pixel bitmap for cmr118 char#71 G --- */
1.2       albertel 1771:       {  71, 7924,                      /* character number, location */
                   1772:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   1773:           { 11,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1774:             "\xf8\x22\x98\x80\x02\x14\x80\x00\x04\x3e\x40\x02\x22"
                   1775:             "\x10\xfe\x00" }  },
1.1       albertel 1776:       /* --- pixel bitmap for cmr118 char#72 H --- */
1.2       albertel 1777:       {  72, 9047,                      /* character number, location */
                   1778:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   1779:           { 12,   11, 3,26, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1780:             "\x05\x25\xf3\x21\x61\x20\x28\x20\xf3\x21\x61\x25\x25" }  },
1.1       albertel 1781:       /* --- pixel bitmap for cmr118 char#73 I --- */
1.2       albertel 1782:       {  73, 9702,                      /* character number, location */
                   1783:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   1784:           {  5,   11, 3, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1785:             "\x05\xf8\x21\x25" }  },
1.1       albertel 1786:       /* --- pixel bitmap for cmr118 char#74 J --- */
1.2       albertel 1787:       {  74,10466,                      /* character number, location */
                   1788:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   1789:           {  6,   11, 3,13, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1790:             "\x24\xf7\x41\x11\x31\x23\x28" }  },
1.1       albertel 1791:       /* --- pixel bitmap for cmr118 char#75 K --- */
1.2       albertel 1792:       {  75,11601,                      /* character number, location */
                   1793:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   1794:           { 12,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1795:             "\x9f\x4f\x10\x84\x40\x04\x24\x40\x05\x8c\x40\x08\x04"
                   1796:             "\x41\x20\x1f\x0f" }  },
1.1       albertel 1797:       /* --- pixel bitmap for cmr118 char#76 L --- */
1.2       albertel 1798:       {  76,12506,                      /* character number, location */
                   1799:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   1800:           {  9,   11, 3,20, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1801:             "\x05\x40\xf4\x21\x60\xf2\x21\x51\x21\x4b" }  },
1.1       albertel 1802:       /* --- pixel bitmap for cmr118 char#77 M --- */
1.2       albertel 1803:       {  77,13744,                      /* character number, location */
                   1804:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   1805:           { 15,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1806:             "\x0f\x78\x06\x0c\x05\x85\x82\x42\x41\x21\x91\x90\x48"
                   1807:             "\x88\x22\x44\x11\xa2\xc8\x27\x1f" }  },
1.1       albertel 1808:       /* --- pixel bitmap for cmr118 char#78 N --- */
1.2       albertel 1809:       {  78,14826,                      /* character number, location */
                   1810:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   1811:           { 12,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1812:             "\x87\xcf\x20\x14\x42\x21\x24\x42\x26\x44\x42\x28\x84"
                   1813:             "\x42\x30\x1f\x02" }  },
1.1       albertel 1814:       /* --- pixel bitmap for cmr118 char#79 O --- */
1.2       albertel 1815:       {  79,15645,                      /* character number, location */
                   1816:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   1817:           { 11,   11, 3,27, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1818:             "\x35\x51\x51\x31\x71\x1f\x41\x91\x11\x71\x31\x51\x55"
                   1819:             "\x31" }  },
1.1       albertel 1820:       /* --- pixel bitmap for cmr118 char#80 P --- */
1.2       albertel 1821:       {  80,16710,                      /* character number, location */
                   1822:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   1823:           { 10,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1824:             "\xff\x10\x44\x20\x81\x04\xf1\x43\x00\x01\x04\x10\xf0"
                   1825:             "\x01" }  },
1.1       albertel 1826:       /* --- pixel bitmap for cmr118 char#81 Q --- */
1.2       albertel 1827:       {  81,17689,                      /* character number, location */
                   1828:          11, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   1829:           { 11,   14, 3,37, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1830:             "\x35\x51\x51\x31\x71\x1f\x41\x91\x11\x23\x21\x31\x11"
                   1831:             "\x31\x55\xa1\xd1\x82\x11" }  },
1.1       albertel 1832:       /* --- pixel bitmap for cmr118 char#82 R --- */
1.2       albertel 1833:       {  82,18934,                      /* character number, location */
                   1834:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   1835:           { 12,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1836:             "\xff\x40\x10\x04\x42\x20\x04\xc1\x0f\x84\x41\x10\x04"
                   1837:             "\x41\x10\x1f\x0e" }  },
1.1       albertel 1838:       /* --- pixel bitmap for cmr118 char#83 S --- */
1.2       albertel 1839:       {  83,19935,                      /* character number, location */
                   1840:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   1841:           {  7,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1842:             "\xfe\x60\x30\x60\xe0\x81\x81\xc1\xd0\x07" }  },
1.1       albertel 1843:       /* --- pixel bitmap for cmr118 char#84 T --- */
1.2       albertel 1844:       {  84,20971,                      /* character number, location */
                   1845:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   1846:           { 10,   11, 3,19, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1847:             "\x0a\x0f\x21\x41\x31\xf5\x51\x40\x35\x22" }  },
1.1       albertel 1848:       /* --- pixel bitmap for cmr118 char#85 U --- */
1.2       albertel 1849:       {  85,21915,                      /* character number, location */
                   1850:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   1851:           { 12,   11, 3,19, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1852:             "\x05\x25\xf7\x21\x61\x20\x31\x41\x74\x42" }  },
1.1       albertel 1853:       /* --- pixel bitmap for cmr118 char#86 V --- */
1.2       albertel 1854:       {  86,22861,                      /* character number, location */
                   1855:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   1856:           { 12,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1857:             "\x0f\x4f\x20\x04\x82\x10\x08\x01\x09\x90\x00\x09\x60"
                   1858:             "\x00\x06\x60\x00" }  },
1.1       albertel 1859:       /* --- pixel bitmap for cmr118 char#87 W --- */
1.2       albertel 1860:       {  87,24218,                      /* character number, location */
                   1861:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   1862:           { 17,   11, 3,37, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1863:             "\x04\x34\x24\xf2\x21\x41\x11\x41\x20\xf2\x31\x21\x31"
                   1864:             "\x21\x30\xf3\x42\x52\x43" }  },
1.1       albertel 1865:       /* --- pixel bitmap for cmr118 char#88 X --- */
1.2       albertel 1866:       {  88,25279,                      /* character number, location */
                   1867:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   1868:           { 12,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1869:             "\x9f\x87\x10\x98\x00\x0d\x60\x00\x06\x70\x00\x09\x08"
                   1870:             "\xc1\x10\x0f\x0f" }  },
1.1       albertel 1871:       /* --- pixel bitmap for cmr118 char#89 Y --- */
1.2       albertel 1872:       {  89,26379,                      /* character number, location */
                   1873:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   1874:           { 12,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1875:             "\x0f\xcf\x20\x08\x01\x11\xa0\x00\x0e\x40\x00\x04\x40"
                   1876:             "\x00\x04\xf0\x01" }  },
1.1       albertel 1877:       /* --- pixel bitmap for cmr118 char#90 Z --- */
1.2       albertel 1878:       {  90,27378,                      /* character number, location */
                   1879:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   1880:           {  8,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1881:             "\xff\x43\x61\x21\x10\x18\x88\x84\x86\xc2\xff" }  },
1.1       albertel 1882:       /* --- pixel bitmap for cmr118 char#91 [ --- */
1.2       albertel 1883:       {  91,96794,                      /* character number, location */
                   1884:          12, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   1885:           {  4,   16, 3, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1886:             "\x04\x0f\xd1\x34" }  },
1.1       albertel 1887:       /* --- pixel bitmap for cmr118 char#92 (noname) --- */
1.2       albertel 1888:       {  92,114689,                     /* character number, location */
                   1889:          11, 2,    6, 2,      /* topleft row,col, and botleft row,col */
                   1890:           {  5,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1891:             "\x32\xa5\xbd\x01" }  },
1.1       albertel 1892:       /* --- pixel bitmap for cmr118 char#93 ] --- */
1.2       albertel 1893:       {  93,97474,                      /* character number, location */
                   1894:          12, 0,   -4, 0,      /* topleft row,col, and botleft row,col */
                   1895:           {  4,   16, 3, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1896:             "\x04\xfd\x31\x04" }  },
1.1       albertel 1897:       /* --- pixel bitmap for cmr118 char#94 \^ --- */
1.2       albertel 1898:       {  94,103409,                     /* character number, location */
                   1899:          11, 2,    9, 2,      /* topleft row,col, and botleft row,col */
                   1900:           {  4,    2, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1901:             "\x96" }  },
1.1       albertel 1902:       /* --- pixel bitmap for cmr118 char#95 (noname) --- */
1.2       albertel 1903:       {  95,103872,                     /* character number, location */
                   1904:          12, 2,   10, 2,      /* topleft row,col, and botleft row,col */
                   1905:           {  1,    2, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1906:             "\x03" }  },
1.1       albertel 1907:       /* --- pixel bitmap for cmr118 char#96 (noname) --- */
1.2       albertel 1908:       {  96,98074,                      /* character number, location */
                   1909:          11, 2,    6, 2,      /* topleft row,col, and botleft row,col */
                   1910:           {  2,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1911:             "\xd6\x03" }  },
1.1       albertel 1912:       /* --- pixel bitmap for cmr118 char#97 a --- */
1.2       albertel 1913:       {  97,28480,                      /* character number, location */
                   1914:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   1915:           {  7,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1916:             "\x0f\x08\x47\x12\x89\xfa\x00" }  },
1.1       albertel 1917:       /* --- pixel bitmap for cmr118 char#98 b --- */
1.2       albertel 1918:       {  98,29442,                      /* character number, location */
                   1919:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   1920:           {  7,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1921:             "\x03\x81\x40\xe0\x11\x09\x85\x42\x93\x07" }  },
1.1       albertel 1922:       /* --- pixel bitmap for cmr118 char#99 c --- */
1.2       albertel 1923:       {  99,30173,                      /* character number, location */
                   1924:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   1925:           {  6,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1926:             "\x9c\x10\x04\x81\xc8\x01" }  },
1.1       albertel 1927:       /* --- pixel bitmap for cmr118 char#100 d --- */
1.2       albertel 1928:       { 100,31130,                      /* character number, location */
                   1929:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   1930:           {  7,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1931:             "\x30\x10\x08\xc4\x13\x85\x42\x21\x19\x1b" }  },
1.1       albertel 1932:       /* --- pixel bitmap for cmr118 char#101 e --- */
1.2       albertel 1933:       { 101,31848,                      /* character number, location */
                   1934:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   1935:           {  5,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1936:             "\x2e\xfe\x10\xa4\x03" }  },
1.1       albertel 1937:       /* --- pixel bitmap for cmr118 char#102 f --- */
1.2       albertel 1938:       { 102,32659,                      /* character number, location */
                   1939:          11,-1,    0,-1,      /* topleft row,col, and botleft row,col */
                   1940:           {  7,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1941:             "\x70\x04\x02\xf1\x43\x20\x10\x08\x04\x0f" }  },
1.1       albertel 1942:       /* --- pixel bitmap for cmr118 char#103 g --- */
1.2       albertel 1943:       { 103,33856,                      /* character number, location */
                   1944:           7, 0,   -4, 0,      /* topleft row,col, and botleft row,col */
                   1945:           {  8,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1946:             "\xfc\x22\x22\x22\x1e\x02\x7e\x81\x81\xc3\x3c" }  },
1.1       albertel 1947:       /* --- pixel bitmap for cmr118 char#104 h --- */
1.2       albertel 1948:       { 104,34789,                      /* character number, location */
                   1949:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   1950:           {  7,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1951:             "\x03\x81\x40\xe0\x11\x89\x44\x22\xd1\x19" }  },
1.1       albertel 1952:       /* --- pixel bitmap for cmr118 char#105 i --- */
1.2       albertel 1953:       { 105,35488,                      /* character number, location */
                   1954:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   1955:           {  3,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1956:             "\x1b\x80\x49\x92\x0e" }  },
1.1       albertel 1957:       /* --- pixel bitmap for cmr118 char#106 j --- */
1.2       albertel 1958:       { 106,36250,                      /* character number, location */
                   1959:          12,-1,   -3,-1,      /* topleft row,col, and botleft row,col */
                   1960:           {  4,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1961:             "\xcc\x00\xc0\x88\x88\x88\x88\x07" }  },
1.1       albertel 1962:       /* --- pixel bitmap for cmr118 char#107 k --- */
1.2       albertel 1963:       { 107,37330,                      /* character number, location */
                   1964:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   1965:           {  8,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1966:             "\x03\x02\x02\x02\xf2\x12\x0a\x1e\x12\x22\xe7" }  },
1.1       albertel 1967:       /* --- pixel bitmap for cmr118 char#108 l --- */
1.2       albertel 1968:       { 108,37935,                      /* character number, location */
                   1969:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   1970:           {  3,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1971:             "\x93\x24\x49\xd2\x01" }  },
1.1       albertel 1972:       /* --- pixel bitmap for cmr118 char#109 m --- */
1.2       albertel 1973:       { 109,39236,                      /* character number, location */
                   1974:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   1975:           { 13,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1976:             "\x3b\xc7\x18\x09\x21\x21\x24\x84\x84\xd0\x39\x07" }  },
1.1       albertel 1977:       /* --- pixel bitmap for cmr118 char#110 n --- */
1.2       albertel 1978:       { 110,40177,                      /* character number, location */
                   1979:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   1980:           {  7,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1981:             "\x1f\x91\x48\x24\x12\x9d\x01" }  },
1.1       albertel 1982:       /* --- pixel bitmap for cmr118 char#111 o --- */
1.2       albertel 1983:       { 111,40834,                      /* character number, location */
                   1984:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   1985:           {  6,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1986:             "\x9e\x14\x86\xa1\xe4\x01" }  },
1.1       albertel 1987:       /* --- pixel bitmap for cmr118 char#112 p --- */
1.2       albertel 1988:       { 112,41862,                      /* character number, location */
                   1989:           7, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   1990:           {  7,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1991:             "\x1f\x91\x50\x28\x34\x79\x04\x82\x03" }  },
1.1       albertel 1992:       /* --- pixel bitmap for cmr118 char#113 q --- */
1.2       albertel 1993:       { 113,42848,                      /* character number, location */
                   1994:           7, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   1995:           {  7,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   1996:             "\x3c\x51\x28\x14\x92\xb1\x40\x20\x38" }  },
1.1       albertel 1997:       /* --- pixel bitmap for cmr118 char#114 r --- */
1.2       albertel 1998:       { 114,43665,                      /* character number, location */
                   1999:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   2000:           {  5,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2001:             "\x5f\x08\x21\xc4\x01" }  },
1.1       albertel 2002:       /* --- pixel bitmap for cmr118 char#115 s --- */
1.2       albertel 2003:       { 115,44562,                      /* character number, location */
                   2004:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   2005:           {  4,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2006:             "\x9e\x61\x99\x07" }  },
1.1       albertel 2007:       /* --- pixel bitmap for cmr118 char#116 t --- */
1.2       albertel 2008:       { 116,45349,                      /* character number, location */
                   2009:          10, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   2010:           {  5,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2011:             "\x84\x98\x4f\x08\xa1\x14\x01" }  },
1.1       albertel 2012:       /* --- pixel bitmap for cmr118 char#117 u --- */
1.2       albertel 2013:       { 117,46236,                      /* character number, location */
                   2014:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   2015:           {  7,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2016:             "\x33\x91\x48\x24\x12\xf1\x01" }  },
1.1       albertel 2017:       /* --- pixel bitmap for cmr118 char#118 v --- */
1.2       albertel 2018:       { 118,47088,                      /* character number, location */
                   2019:           7, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   2020:           {  9,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2021:             "\xef\x89\x10\x41\x81\x02\x05\x04" }  },
1.1       albertel 2022:       /* --- pixel bitmap for cmr118 char#119 w --- */
1.2       albertel 2023:       { 119,48303,                      /* character number, location */
                   2024:           7, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   2025:           { 12,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2026:             "\xe7\x4e\x26\x94\x42\x29\x94\x82\x19\x08\x01" }  },
1.1       albertel 2027:       /* --- pixel bitmap for cmr118 char#120 x --- */
1.2       albertel 2028:       { 120,49260,                      /* character number, location */
                   2029:           7, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   2030:           {  9,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2031:             "\xe7\xc9\xa0\x80\x80\x82\xc8\x71" }  },
1.1       albertel 2032:       /* --- pixel bitmap for cmr118 char#121 y --- */
1.2       albertel 2033:       { 121,50315,                      /* character number, location */
                   2034:           7, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   2035:           {  9,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2036:             "\xef\x89\x10\x41\x81\x02\x05\x04\x08\x08\x0e\x00" }  },
1.1       albertel 2037:       /* --- pixel bitmap for cmr118 char#122 z --- */
1.2       albertel 2038:       { 122,51236,                      /* character number, location */
                   2039:           7, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   2040:           {  6,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2041:             "\xbe\xa4\xb0\xa4\xf8\x03" }  },
1.1       albertel 2042:       /* --- pixel bitmap for cmr118 char#123 (noname) --- */
1.2       albertel 2043:       { 123,115267,                     /* character number, location */
                   2044:           5, 0,    4, 0,      /* topleft row,col, and botleft row,col */
                   2045:           {  8,    1, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2046:             "\xff" }  },
1.1       albertel 2047:       /* --- pixel bitmap for cmr118 char#124 (noname) --- */
1.2       albertel 2048:       { 124,116061,                     /* character number, location */
                   2049:           5, 0,    4, 0,      /* topleft row,col, and botleft row,col */
                   2050:           { 16,    1, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2051:             "\xff\xff" }  },
1.1       albertel 2052:       /* --- pixel bitmap for cmr118 char#125 (noname) --- */
1.2       albertel 2053:       { 125,104523,                     /* character number, location */
                   2054:          11, 2,    8, 2,      /* topleft row,col, and botleft row,col */
                   2055:           {  5,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2056:             "\x32\x25" }  },
1.1       albertel 2057:       /* --- pixel bitmap for cmr118 char#126 \~ --- */
1.2       albertel 2058:       { 126,105177,                     /* character number, location */
                   2059:          11, 1,    9, 1,      /* topleft row,col, and botleft row,col */
                   2060:           {  6,    2, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2061:             "\x66\x06" }  },
1.1       albertel 2062:       /* --- pixel bitmap for cmr118 char#127 (noname) --- */
1.2       albertel 2063:       { 127,105830,                     /* character number, location */
                   2064:          12, 1,   10, 1,      /* topleft row,col, and botleft row,col */
                   2065:           {  5,    2, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2066:             "\x52\x02" }  },
1.1       albertel 2067:       /* --- trailer  --- */
1.2       albertel 2068:       { -99, -999,  0,0,0,0, { 0,0,0,0, (pixbyte *)"\0" }  }
1.1       albertel 2069:    } ;
                   2070: 
                   2071: 
1.2       albertel 2072: /* --- size=3 for .131gf ---
                   2073:  * mf '\mode=preview; mag=magstep(-16.39322518098640003469); input cmr10'
                   2074:  * --------------------------------------------------------------------- */
1.1       albertel 2075: /* --- fontdef for cmr131 --- */
                   2076: static	chardef  cmr131[] =
                   2077:    {
1.2       albertel 2078:       /* --- pixel bitmap for cmr131 char#0 \Gamma --- */
                   2079:       {   0,53384,                      /* character number, location */
                   2080:          12, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   2081:           { 10,   12, 3,19, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2082:             "\x0a\x22\x42\xf2\x22\x51\xf5\x22\x66\x41" }  },
                   2083:       /* --- pixel bitmap for cmr131 char#1 \Delta --- */
                   2084:       {   1,54283,                      /* character number, location */
                   2085:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   2086:           { 13,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2087:             "\x40\x00\x1c\x80\x03\xc8\x00\x19\x10\x06\xc2\x20\x30"
                   2088:             "\x04\x46\x80\xf9\xbf\xff\x0f" }  },
                   2089:       /* --- pixel bitmap for cmr131 char#2 \Theta --- */
                   2090:       {   2,55402,                      /* character number, location */
                   2091:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   2092:           { 12,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2093:             "\xf0\xc0\x30\x06\x26\x40\x93\x3c\xcf\xf3\x3c\xc9\x02"
                   2094:             "\x64\x60\x0c\x03\x0f" }  },
                   2095:       /* --- pixel bitmap for cmr131 char#3 \Lambda --- */
                   2096:       {   3,56346,                      /* character number, location */
                   2097:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   2098:           { 11,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2099:             "\x20\x80\x03\x1c\xe0\x80\x0f\x64\x20\x83\x39\x84\x21"
                   2100:             "\x8c\xe1\x9e\x0f" }  },
                   2101:       /* --- pixel bitmap for cmr131 char#4 \Xi --- */
                   2102:       {   4,57705,                      /* character number, location */
                   2103:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   2104:           { 10,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2105:             "\xff\xff\x1f\x60\x80\x84\xf0\xc3\x0f\x21\x01\x06\xf8"
                   2106:             "\xff\xff" }  },
                   2107:       /* --- pixel bitmap for cmr131 char#5 \Pi --- */
                   2108:       {   5,58858,                      /* character number, location */
                   2109:          12, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   2110:           { 14,   12, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2111:             "\x0e\xf9\x22\x62\x26\x26" }  },
                   2112:       /* --- pixel bitmap for cmr131 char#6 \Sigma --- */
                   2113:       {   6,59973,                      /* character number, location */
                   2114:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   2115:           { 11,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2116:             "\xff\x3f\xb0\x03\x39\x88\x41\x18\xc0\x00\x82\x08\x64"
                   2117:             "\xa0\x81\xff\x0f" }  },
                   2118:       /* --- pixel bitmap for cmr131 char#7 \Upsilon --- */
                   2119:       {   7,61063,                      /* character number, location */
                   2120:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   2121:           { 12,   12, 3,25, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2122:             "\x13\x43\x12\x12\x22\x12\x44\x40\xf7\x52\x50\x36\x31" }  },
                   2123:       /* --- pixel bitmap for cmr131 char#8 \Phi --- */
                   2124:       {   8,62085,                      /* character number, location */
                   2125:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   2126:           { 11,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2127:             "\xf8\x01\x03\x18\xf8\x63\xb6\x31\x8f\xd9\x6c\xfc\x01"
1.1       albertel 2128:             "\x03\x18\xf0\x03" }  },
1.2       albertel 2129:       /* --- pixel bitmap for cmr131 char#9 \Psi --- */
                   2130:       {   9,63188,                      /* character number, location */
                   2131:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   2132:           { 12,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2133:             "\xf8\x01\x06\x67\x6e\x66\x66\x66\x66\x66\xc6\x36\xf8"
                   2134:             "\x01\x06\x60\x80\x1f" }  },
                   2135:       /* --- pixel bitmap for cmr131 char#10 \Omega --- */
                   2136:       {  10,64337,                      /* character number, location */
                   2137:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   2138:           { 11,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2139:             "\xf8\x30\xd8\x80\x07\x3c\xe0\x01\x0b\xc8\x60\x05\x6d"
                   2140:             "\xac\xe3\x1c\x07" }  },
                   2141:       /* --- pixel bitmap for cmr131 char#11 \ff --- */
                   2142:       {  11,109874,                     /* character number, location */
                   2143:          13, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   2144:           { 12,   13, 3,31, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2145:             "\x48\x31\x31\x40\xf2\x21\x41\x4b\x10\xf5\x21\x41\x40"
                   2146:             "\x12\x43\x21" }  },
                   2147:       /* --- pixel bitmap for cmr131 char#12 \fi --- */
                   2148:       {  12,111034,                     /* character number, location */
                   2149:          13, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   2150:           {  9,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2151:             "\xf0\x10\x11\x20\x40\xe0\x1f\x31\x42\x84\x08\x11\x22"
                   2152:             "\x64\x18" }  },
                   2153:       /* --- pixel bitmap for cmr131 char#13 \fl --- */
                   2154:       {  13,112188,                     /* character number, location */
                   2155:          13, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   2156:           {  9,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2157:             "\xf0\x10\x11\x22\x44\xe8\x1f\x21\x42\x84\x08\x11\x22"
                   2158:             "\xe4\x1c" }  },
                   2159:       /* --- pixel bitmap for cmr131 char#14 \ffi --- */
                   2160:       {  14,113793,                     /* character number, location */
                   2161:          13, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   2162:           { 14,   13, 3,44, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2163:             "\x44\x14\x41\x32\x31\x10\xf2\x21\x41\x6d\x31\x41\x32"
                   2164:             "\x10\xf4\x21\x41\x41\x10\x12\x41\x42" }  },
                   2165:       /* --- pixel bitmap for cmr131 char#15 \ffl --- */
                   2166:       {  15,115416,                     /* character number, location */
                   2167:          13, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   2168:           { 14,   13, 3,40, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2169:             "\x44\x14\x41\x41\x31\x10\xf2\x21\x41\x41\x1d\x10\xf5"
                   2170:             "\x21\x41\x41\x10\x13\x23\x23" }  },
                   2171:       /* --- pixel bitmap for cmr131 char#16 \imath --- */
                   2172:       {  16,78056,                      /* character number, location */
                   2173:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   2174:           {  3,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2175:             "\x93\x24\xe9" }  },
                   2176:       /* --- pixel bitmap for cmr131 char#17 \jmath --- */
                   2177:       {  17,78724,                      /* character number, location */
                   2178:           8,-1,   -4,-1,      /* topleft row,col, and botleft row,col */
                   2179:           {  5,   12, 3, 9, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2180:             "\x23\xf9\x41\x03\x23" }  },
                   2181:       /* --- pixel bitmap for cmr131 char#18 \gravesym --- */
                   2182:       {  18,101143,                     /* character number, location */
                   2183:          13, 2,   10, 2,      /* topleft row,col, and botleft row,col */
                   2184:           {  3,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2185:             "\x11\x01" }  },
                   2186:       /* --- pixel bitmap for cmr131 char#19 \acutesym --- */
                   2187:       {  19,101712,                     /* character number, location */
                   2188:          13, 3,   10, 3,      /* topleft row,col, and botleft row,col */
                   2189:           {  4,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2190:             "\x48\x02" }  },
                   2191:       /* --- pixel bitmap for cmr131 char#20 \checksym --- */
                   2192:       {  20,102337,                     /* character number, location */
                   2193:          11, 2,    9, 2,      /* topleft row,col, and botleft row,col */
                   2194:           {  5,    2, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2195:             "\x9b\x00" }  },
                   2196:       /* --- pixel bitmap for cmr131 char#21 \brevesym --- */
                   2197:       {  21,102953,                     /* character number, location */
                   2198:          13, 2,    9, 2,      /* topleft row,col, and botleft row,col */
                   2199:           {  5,    4, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2200:             "\x31\x6e\x07" }  },
1.1       albertel 2201:       /* --- pixel bitmap for cmr131 char#22 (noname) --- */
1.2       albertel 2202:       {  22,103537,                     /* character number, location */
                   2203:          10, 1,    9, 1,      /* topleft row,col, and botleft row,col */
                   2204:           {  7,    1, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2205:             "\x7f" }  },
1.1       albertel 2206:       /* --- pixel bitmap for cmr131 char#23 (noname) --- */
1.2       albertel 2207:       {  23,104314,                     /* character number, location */
                   2208:          13, 5,   10, 5,      /* topleft row,col, and botleft row,col */
                   2209:           {  4,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2210:             "\x96\x06" }  },
1.1       albertel 2211:       /* --- pixel bitmap for cmr131 char#24 (noname) --- */
1.2       albertel 2212:       {  24,105002,                     /* character number, location */
                   2213:           0, 3,   -3, 3,      /* topleft row,col, and botleft row,col */
                   2214:           {  3,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2215:             "\xe6\x01" }  },
1.1       albertel 2216:       /* --- pixel bitmap for cmr131 char#25 \ss --- */
1.2       albertel 2217:       {  25,79801,                      /* character number, location */
                   2218:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   2219:           {  8,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2220:             "\x3c\x42\x42\x42\x22\x1b\x62\x42\x82\x82\x82\x92\x63" }  },
1.1       albertel 2221:       /* --- pixel bitmap for cmr131 char#26 \ae --- */
1.2       albertel 2222:       {  26,81136,                      /* character number, location */
                   2223:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   2224:           { 12,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2225:             "\x9e\x07\x46\x20\xc8\xff\x22\x10\x02\x61\xe8\x79" }  },
1.1       albertel 2226:       /* --- pixel bitmap for cmr131 char#27 \oe --- */
1.2       albertel 2227:       {  27,82242,                      /* character number, location */
                   2228:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   2229:           { 13,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2230:             "\x1c\x4f\x14\x05\xc1\xe0\x1f\x04\x82\x80\x28\xe4\x78" }  },
1.1       albertel 2231:       /* --- pixel bitmap for cmr131 char#28 (noname) --- */
1.2       albertel 2232:       {  28,83050,                      /* character number, location */
                   2233:          10, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   2234:           {  7,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2235:             "\x40\x10\x4f\x16\x4d\x26\x8b\x26\x8f\x20\x00" }  },
1.1       albertel 2236:       /* --- pixel bitmap for cmr131 char#29 \AE --- */
1.2       albertel 2237:       {  29,84818,                      /* character number, location */
                   2238:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   2239:           { 15,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2240:             "\xf8\x3f\x68\x18\x34\x08\x1b\x84\x8c\x42\x46\xe0\x3f"
                   2241:             "\x88\x91\xc4\x48\x62\x90\x30\xec\xfc\x07" }  },
1.1       albertel 2242:       /* --- pixel bitmap for cmr131 char#30 \OE --- */
1.2       albertel 2243:       {  30,86500,                      /* character number, location */
                   2244:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   2245:           { 17,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2246:             "\xf0\xff\x18\x86\x19\x0c\x12\x18\x35\x30\x6a\xe0\xc7"
                   2247:             "\xc0\x88\x81\x91\x06\x03\x0d\x06\x31\x0c\x83\xff\x07" }  },
1.1       albertel 2248:       /* --- pixel bitmap for cmr131 char#31 (noname) --- */
1.2       albertel 2249:       {  31,87464,                      /* character number, location */
                   2250:          13, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   2251:           { 12,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2252:             "\x00\x02\x2f\x0c\x63\x78\x82\x34\xc4\x43\x3c\xc2\x23"
                   2253:             "\x2c\x41\x1e\xc6\x30\xf4\x40\x00" }  },
1.1       albertel 2254:       /* --- pixel bitmap for cmr131 char#32 (noname) --- */
1.2       albertel 2255:       {  32,105498,                     /* character number, location */
                   2256:           7, 0,    5, 0,      /* topleft row,col, and botleft row,col */
                   2257:           {  5,    2, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2258:             "\x5c\x00" }  },
1.1       albertel 2259:       /* --- pixel bitmap for cmr131 char#33 ! --- */
1.2       albertel 2260:       {  33,88101,                      /* character number, location */
                   2261:          13, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   2262:           {  2,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2263:             "\xff\xff\xc0\x03" }  },
1.1       albertel 2264:       /* --- pixel bitmap for cmr131 char#34 " --- */
1.2       albertel 2265:       {  34,116353,                     /* character number, location */
                   2266:          13, 1,    7, 1,      /* topleft row,col, and botleft row,col */
                   2267:           {  6,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2268:             "\xf3\x2c\x8a\x62\x04" }  },
1.1       albertel 2269:       /* --- pixel bitmap for cmr131 char#35 # --- */
1.2       albertel 2270:       {  35,89551,                      /* character number, location */
                   2271:          13, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   2272:           { 13,   17, 3,39, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2273:             "\xf2\x61\x31\x20\xf2\x51\x31\x3d\xf2\x41\x31\x4d\xf2"
                   2274:             "\x31\x31\x50\xf2\x21\x31\x61" }  },
1.1       albertel 2275:       /* --- pixel bitmap for cmr131 char#36 $ --- */
1.2       albertel 2276:       {  36,74366,                      /* character number, location */
                   2277:          14, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   2278:           {  7,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2279:             "\x08\x8e\x2a\x99\x5c\x38\x78\x78\x64\x32\xa9\xe2\x20"
                   2280:             "\x00" }  },
1.1       albertel 2281:       /* --- pixel bitmap for cmr131 char#37 % --- */
1.2       albertel 2282:       {  37,90780,                      /* character number, location */
                   2283:          14, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   2284:           { 13,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2285:             "\x0e\x48\x83\xc4\x9f\x08\x11\x11\x22\x82\x22\x70\x72"
                   2286:             "\x40\x0a\x24\x82\x44\x88\x88\x10\x11\x14\x81\x03" }  },
1.1       albertel 2287:       /* --- pixel bitmap for cmr131 char#38 & --- */
1.2       albertel 2288:       {  38,75624,                      /* character number, location */
                   2289:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   2290:           { 12,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2291:             "\x38\x40\x04\x44\x40\x04\x24\x40\xf1\x08\xc2\x10\x12"
                   2292:             "\x11\x0a\x61\x30\x8e\x1e\x07" }  },
                   2293:       /* --- pixel bitmap for cmr131 char#39 ' --- */
                   2294:       {  39,91424,                      /* character number, location */
                   2295:          13, 2,    7, 2,      /* topleft row,col, and botleft row,col */
                   2296:           {  2,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2297:             "\xaf\x06" }  },
1.1       albertel 2298:       /* --- pixel bitmap for cmr131 char#40 ( --- */
1.2       albertel 2299:       {  40,91998,                      /* character number, location */
                   2300:          14, 1,   -5, 1,      /* topleft row,col, and botleft row,col */
                   2301:           {  5,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2302:             "\x10\x11\x21\x44\x08\x21\x84\x10\x84\x10\x04\x41" }  },
1.1       albertel 2303:       /* --- pixel bitmap for cmr131 char#41 ) --- */
1.2       albertel 2304:       {  41,92599,                      /* character number, location */
                   2305:          14, 1,   -5, 1,      /* topleft row,col, and botleft row,col */
                   2306:           {  5,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2307:             "\x41\x10\x84\x10\x84\x10\x42\x08\x11\x42\x44\x04" }  },
1.1       albertel 2308:       /* --- pixel bitmap for cmr131 char#42 * --- */
1.2       albertel 2309:       {  42,93224,                      /* character number, location */
                   2310:          14, 1,    6, 1,      /* topleft row,col, and botleft row,col */
                   2311:           {  7,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2312:             "\x08\xc4\x9a\xc3\x59\x23\x10" }  },
1.1       albertel 2313:       /* --- pixel bitmap for cmr131 char#43 + --- */
1.2       albertel 2314:       {  43,93904,                      /* character number, location */
                   2315:          11, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   2316:           { 12,   13, 3,11, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2317:             "\xf5\x61\x5c\xf5\x61\x51" }  },
1.1       albertel 2318:       /* --- pixel bitmap for cmr131 char#44 (noname) --- */
1.2       albertel 2319:       {  44,94485,                      /* character number, location */
                   2320:           2, 2,   -4, 2,      /* topleft row,col, and botleft row,col */
                   2321:           {  2,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2322:             "\xaf\x06" }  },
1.1       albertel 2323:       /* --- pixel bitmap for cmr131 char#45 (noname) --- */
1.2       albertel 2324:       {  45,116856,                     /* character number, location */
                   2325:           5, 0,    4, 0,      /* topleft row,col, and botleft row,col */
                   2326:           {  5,    1, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2327:             "\x1f" }  },
1.1       albertel 2328:       /* --- pixel bitmap for cmr131 char#46 (noname) --- */
1.2       albertel 2329:       {  46,94950,                      /* character number, location */
                   2330:           2, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   2331:           {  2,    2, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2332:             "\x0f" }  },
1.1       albertel 2333:       /* --- pixel bitmap for cmr131 char#47 / --- */
1.2       albertel 2334:       {  47,95456,                      /* character number, location */
                   2335:          14, 1,   -5, 1,      /* topleft row,col, and botleft row,col */
                   2336:           {  7,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2337:             "\x40\x20\x08\x04\x82\x40\x20\x08\x04\x82\x40\x20\x08"
                   2338:             "\x04\x82\x40\x00" }  },
1.1       albertel 2339:       /* --- pixel bitmap for cmr131 char#48 0 --- */
1.2       albertel 2340:       {  48,65049,                      /* character number, location */
                   2341:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   2342:           {  7,   12, 3,19, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2343:             "\x23\x31\x31\x1f\x71\x51\x11\x31\x33\x22" }  },
1.1       albertel 2344:       /* --- pixel bitmap for cmr131 char#49 1 --- */
1.2       albertel 2345:       {  49,65815,                      /* character number, location */
                   2346:          12, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   2347:           {  5,   12, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2348:             "\x21\x23\x20\xf8\x21\x25" }  },
1.1       albertel 2349:       /* --- pixel bitmap for cmr131 char#50 2 --- */
1.2       albertel 2350:       {  50,66780,                      /* character number, location */
                   2351:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   2352:           {  7,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2353:             "\x1c\xd1\x78\x08\x06\x83\x20\x08\xa2\xf0\x0f" }  },
1.3       albertel 2354: #if 0
                   2355:       /* --- *unmodified* pixel bitmap for cmr131 char#51 3 --- */
1.2       albertel 2356:       {  51,67804,                      /* character number, location */
                   2357:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   2358:           {  7,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2359:             "\x9e\x70\x18\x0c\xe2\xc0\xc0\xe0\x71\xcc\x03" }  },
1.3       albertel 2360: #else
                   2361:       /* --- *modified* pixel bitmap for cmr131 char#51 3 --- */
                   2362:       {  51,67804,                      /* character number, location */
                   2363:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   2364:           {  7,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2365:             "\xbe\x70\x18\x0c\xe2\xc0\xc0\xe0\x71\xcc\x03" }  },
                   2366: #endif
1.1       albertel 2367:       /* --- pixel bitmap for cmr131 char#52 4 --- */
1.2       albertel 2368:       {  52,68714,                      /* character number, location */
                   2369:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   2370:           {  8,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2371:             "\x30\x30\x28\x2c\x24\x22\x23\xff\x20\x20\x20\xf8" }  },
1.1       albertel 2372:       /* --- pixel bitmap for cmr131 char#53 5 --- */
1.2       albertel 2373:       {  53,69738,                      /* character number, location */
                   2374:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   2375:           {  7,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2376:             "\x22\x8f\x43\x20\xf0\x88\xc0\xe0\x70\xcc\x03" }  },
1.1       albertel 2377:       /* --- pixel bitmap for cmr131 char#54 6 --- */
1.2       albertel 2378:       {  54,70616,                      /* character number, location */
                   2379:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   2380:           {  7,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2381:             "\x38\xa2\x20\xd0\x19\x05\x83\x41\xa1\x88\x03" }  },
1.1       albertel 2382:       /* --- pixel bitmap for cmr131 char#55 7 --- */
1.2       albertel 2383:       {  55,71504,                      /* character number, location */
                   2384:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   2385:           {  8,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2386:             "\x02\xfe\x82\x41\x20\x10\x10\x10\x08\x08\x08\x08\x08" }  },
1.3       albertel 2387: #if 0
                   2388:       /* --- *unmodified* pixel bitmap for cmr131 char#56 8 --- */
1.2       albertel 2389:       {  56,72414,                      /* character number, location */
                   2390:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   2391:           {  7,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2392:             "\x3c\x70\x70\xe8\xe2\xe8\xc2\xc1\xa0\x88\x03" }  },
1.3       albertel 2393:       /* --- *unmodified* pixel bitmap for cmr131 char#57 9 --- */
1.2       albertel 2394:       {  57,73300,                      /* character number, location */
                   2395:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   2396:           {  7,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2397:             "\x1c\x51\x28\x18\x14\x73\x81\x40\x50\xc4\x01" }  },
1.3       albertel 2398: #else
                   2399:       /* --- *modified* pixel bitmap for cmr131 char#56 8 --- */
                   2400:       {  56,72414,                      /* character number, location */
                   2401:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   2402:           {  7,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2403:             "\x3c\x71\x70\xe8\xe2\xe8\xc2\xc1\xa0\x88\x03" }  },
                   2404:       /* --- *modified* pixel bitmap for cmr131 char#57 9 --- */
                   2405:       {  57,73300,                      /* character number, location */
                   2406:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   2407:           {  7,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2408:             "\x1c\x51\x30\x18\x14\x73\x81\x40\x50\xc4\x01" }  },
                   2409: #endif
1.1       albertel 2410:       /* --- pixel bitmap for cmr131 char#58 : --- */
1.2       albertel 2411:       {  58,96040,                      /* character number, location */
                   2412:           8, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   2413:           {  2,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2414:             "\x0f\xf0" }  },
1.1       albertel 2415:       /* --- pixel bitmap for cmr131 char#59 ; --- */
1.2       albertel 2416:       {  59,96703,                      /* character number, location */
                   2417:           8, 2,   -4, 2,      /* topleft row,col, and botleft row,col */
                   2418:           {  2,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2419:             "\x0f\xf0\x6a" }  },
1.1       albertel 2420:       /* --- pixel bitmap for cmr131 char#60 (noname) --- */
1.2       albertel 2421:       {  60,88709,                      /* character number, location */
                   2422:           9, 2,   -4, 2,      /* topleft row,col, and botleft row,col */
                   2423:           {  2,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2424:             "\x0f\xfc\xff\x03" }  },
1.1       albertel 2425:       /* --- pixel bitmap for cmr131 char#61 = --- */
1.2       albertel 2426:       {  61,97379,                      /* character number, location */
                   2427:           7, 1,    2, 1,      /* topleft row,col, and botleft row,col */
                   2428:           { 12,    5, 3, 6, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2429:             "\x0c\xf2\xcc" }  },
1.1       albertel 2430:       /* --- pixel bitmap for cmr131 char#62 (noname) --- */
1.2       albertel 2431:       {  62,77455,                      /* character number, location */
                   2432:           9, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   2433:           {  7,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2434:             "\x0c\x06\x00\x00\x60\x10\x08\x04\x41\x30\xe8\x03" }  },
                   2435:       /* --- pixel bitmap for cmr131 char#63 ? --- */
                   2436:       {  63,76549,                      /* character number, location */
                   2437:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   2438:           {  7,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2439:             "\xbe\x60\x10\x04\x41\x20\x18\x00\x00\x80\xc1\x00" }  },
                   2440:       /* --- pixel bitmap for cmr131 char#64 @ --- */
                   2441:       {  64,98549,                      /* character number, location */
                   2442:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   2443:           { 12,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2444:             "\xf0\xc0\x30\xf2\xa4\x50\x05\x5a\xa0\x05\x5a\xa0\x05"
                   2445:             "\xaa\xb0\xf2\xc6\xc0\xf0\x03" }  },
1.1       albertel 2446:       /* --- pixel bitmap for cmr131 char#65 A --- */
1.2       albertel 2447:       {  65, 1026,                      /* character number, location */
                   2448:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   2449:           { 12,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2450:             "\x60\x00\x06\x60\x00\x0d\xd0\x80\x1d\x88\x81\x18\xfc"
                   2451:             "\x43\x30\x04\xf3\xf8" }  },
1.1       albertel 2452:       /* --- pixel bitmap for cmr131 char#66 B --- */
1.2       albertel 2453:       {  66, 2314,                      /* character number, location */
                   2454:          12, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   2455:           { 12,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2456:             "\xff\xc1\x30\x0c\xc6\x60\x0c\xc6\x3f\x0c\xc6\xc0\x0c"
                   2457:             "\xcc\xc0\x0c\xf6\x3f" }  },
1.1       albertel 2458:       /* --- pixel bitmap for cmr131 char#67 C --- */
1.2       albertel 2459:       {  67, 3227,                      /* character number, location */
                   2460:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   2461:           { 11,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2462:             "\xf0\x65\xb0\x01\x05\x38\x80\x01\x0c\x60\x00\x02\x34"
                   2463:             "\x20\x83\xe0\x03" }  },
1.1       albertel 2464:       /* --- pixel bitmap for cmr131 char#68 D --- */
1.2       albertel 2465:       {  68, 4295,                      /* character number, location */
                   2466:          12, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   2467:           { 13,   12, 3,33, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2468:             "\x0a\x52\x52\x42\x62\x32\x71\x10\xf4\x22\x72\x22\x62"
                   2469:             "\x32\x52\x2a\x31" }  },
1.1       albertel 2470:       /* --- pixel bitmap for cmr131 char#69 E --- */
1.2       albertel 2471:       {  69, 5676,                      /* character number, location */
                   2472:          12, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   2473:           { 12,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2474:             "\xff\xc7\x60\x0c\xc4\x48\x8c\xc4\x0f\x8c\xc0\x88\x0c"
                   2475:             "\xc8\x40\x0c\xf6\x7f" }  },
1.1       albertel 2476:       /* --- pixel bitmap for cmr131 char#70 F --- */
1.2       albertel 2477:       {  70, 6893,                      /* character number, location */
                   2478:          12, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   2479:           { 11,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2480:             "\xff\x63\x18\x83\x18\xc9\x48\x7e\x30\x82\x11\x0c\x60"
                   2481:             "\x00\x03\x7e\x00" }  },
1.1       albertel 2482:       /* --- pixel bitmap for cmr131 char#71 G --- */
1.2       albertel 2483:       {  71, 8050,                      /* character number, location */
                   2484:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   2485:           { 12,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2486:             "\xf0\xc5\x60\x06\x24\x40\x03\x30\x00\x83\x3f\x60\x02"
                   2487:             "\x66\x60\x0c\x06\x5f" }  },
1.1       albertel 2488:       /* --- pixel bitmap for cmr131 char#72 H --- */
1.2       albertel 2489:       {  72, 9205,                      /* character number, location */
                   2490:          12, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   2491:           { 14,   12, 3,26, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2492:             "\x06\x26\xf3\x22\x62\x20\x2a\x20\xf4\x22\x62\x26\x26" }  },
1.1       albertel 2493:       /* --- pixel bitmap for cmr131 char#73 I --- */
1.2       albertel 2494:       {  73, 9864,                      /* character number, location */
                   2495:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   2496:           {  6,   12, 3, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2497:             "\x06\xf9\x22\x26" }  },
1.1       albertel 2498:       /* --- pixel bitmap for cmr131 char#74 J --- */
1.2       albertel 2499:       {  74,10656,                      /* character number, location */
                   2500:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   2501:           {  7,   12, 3,17, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2502:             "\x25\xf7\x42\x1f\x12\x22\x10\x14\x24" }  },
1.1       albertel 2503:       /* --- pixel bitmap for cmr131 char#75 K --- */
1.2       albertel 2504:       {  75,11795,                      /* character number, location */
                   2505:          12, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   2506:           { 13,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2507:             "\x3f\x9f\x41\x30\x04\x46\xc0\x04\xd8\x01\x37\x60\x0c"
                   2508:             "\x8c\x83\x61\x30\x98\x9f\x0f" }  },
1.1       albertel 2509:       /* --- pixel bitmap for cmr131 char#76 L --- */
1.2       albertel 2510:       {  76,12728,                      /* character number, location */
                   2511:          12, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   2512:           { 10,   12, 3,20, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2513:             "\x06\x40\xf5\x22\x60\xf2\x22\x51\x22\x4c" }  },
1.1       albertel 2514:       /* --- pixel bitmap for cmr131 char#77 M --- */
1.2       albertel 2515:       {  77,13994,                      /* character number, location */
                   2516:          12, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   2517:           { 17,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2518:             "\x1f\xf0\x39\xe0\xd0\xa0\xa1\x41\x43\x83\x86\x8c\x0c"
                   2519:             "\x19\x19\x62\x31\xc4\x62\x88\xc5\x10\x86\xf9\xcc\x0f" }  },
1.1       albertel 2520:       /* --- pixel bitmap for cmr131 char#78 N --- */
1.2       albertel 2521:       {  78,15108,                      /* character number, location */
                   2522:          12, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   2523:           { 14,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2524:             "\x1f\x3e\x07\x42\x83\x90\x21\xe4\x08\x31\x42\x98\x10"
                   2525:             "\x2c\x04\x0f\x81\x43\xc0\x7c\x20" }  },
1.1       albertel 2526:       /* --- pixel bitmap for cmr131 char#79 O --- */
1.2       albertel 2527:       {  79,15955,                      /* character number, location */
                   2528:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   2529:           { 12,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2530:             "\xf0\xc0\x30\x06\x26\x40\x03\x3c\xc0\x03\x3c\xc0\x02"
                   2531:             "\x64\x60\x0c\x03\x0f" }  },
1.1       albertel 2532:       /* --- pixel bitmap for cmr131 char#80 P --- */
1.2       albertel 2533:       {  80,17050,                      /* character number, location */
                   2534:          12, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   2535:           { 11,   12, 3,29, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2536:             "\x09\x42\x42\x10\xf2\x22\x52\x22\x42\x37\x20\xf3\x22"
                   2537:             "\x76\x52" }  },
1.1       albertel 2538:       /* --- pixel bitmap for cmr131 char#81 Q --- */
1.2       albertel 2539:       {  81,18059,                      /* character number, location */
                   2540:          12, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   2541:           { 12,   16, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2542:             "\xf0\xc0\x30\x06\x26\x40\x03\x3c\xc0\x03\x3c\xc0\x02"
                   2543:             "\x64\x67\x9c\x03\x0f\x00\x00\x90\x00\x0f\x60" }  },
1.1       albertel 2544:       /* --- pixel bitmap for cmr131 char#82 R --- */
1.2       albertel 2545:       {  82,19336,                      /* character number, location */
                   2546:          12, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   2547:           { 13,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2548:             "\xff\x81\x61\x30\x18\x06\xc3\x30\xf8\x03\x63\x60\x18"
                   2549:             "\x0c\x83\x61\x30\xcc\x1f\x0f" }  },
1.1       albertel 2550:       /* --- pixel bitmap for cmr131 char#83 S --- */
1.2       albertel 2551:       {  83,20369,                      /* character number, location */
                   2552:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   2553:           {  8,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2554:             "\xbc\xc2\x83\x03\x07\x3e\x78\xc0\xc0\xc1\x41\x3f" }  },
1.1       albertel 2555:       /* --- pixel bitmap for cmr131 char#84 T --- */
1.2       albertel 2556:       {  84,21435,                      /* character number, location */
                   2557:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   2558:           { 11,   12, 3,23, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2559:             "\x0d\x32\x22\x0f\x21\x42\x31\xf5\x52\x40\x28\x11" }  },
1.1       albertel 2560:       /* --- pixel bitmap for cmr131 char#85 U --- */
1.2       albertel 2561:       {  85,22411,                      /* character number, location */
                   2562:          12, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   2563:           { 14,   12, 3,19, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2564:             "\x06\x35\xf8\x22\x71\x20\x32\x51\x85\x40" }  },
1.1       albertel 2565:       /* --- pixel bitmap for cmr131 char#86 V --- */
1.2       albertel 2566:       {  86,23387,                      /* character number, location */
                   2567:          12, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   2568:           { 14,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2569:             "\x3f\x3e\x03\x82\x41\x60\x10\x30\x02\x8c\x00\x23\x80"
                   2570:             "\x05\x60\x01\x78\x00\x0c\x00\x03" }  },
1.1       albertel 2571:       /* --- pixel bitmap for cmr131 char#87 W --- */
1.2       albertel 2572:       {  87,24789,                      /* character number, location */
                   2573:          12, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   2574:           { 19,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2575:             "\xbf\xcf\x67\x30\x08\x87\x61\x30\x1e\x81\xd1\x08\x9c"
                   2576:             "\x66\xc0\x76\x01\x16\x0b\xf0\x78\x00\xc7\x01\x18\x0c"
                   2577:             "\xc0\x60\x00" }  },
1.1       albertel 2578:       /* --- pixel bitmap for cmr131 char#88 X --- */
1.2       albertel 2579:       {  88,25878,                      /* character number, location */
                   2580:          12, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   2581:           { 14,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2582:             "\x3e\x1f\x86\x00\x33\xc0\x05\xe0\x00\x30\x00\x1c\x80"
                   2583:             "\x06\x30\x03\xc4\x81\x60\x7c\xfc" }  },
1.1       albertel 2584:       /* --- pixel bitmap for cmr131 char#89 Y --- */
1.2       albertel 2585:       {  89,27008,                      /* character number, location */
                   2586:          12, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   2587:           { 14,   12, 3,35, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2588:             "\x06\x35\x23\x52\x52\x51\x72\x31\x83\x12\x92\x11\x50"
                   2589:             "\xf4\x62\x60\x46\x41" }  },
1.1       albertel 2590:       /* --- pixel bitmap for cmr131 char#90 Z --- */
1.2       albertel 2591:       {  90,28037,                      /* character number, location */
                   2592:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   2593:           {  9,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2594:             "\xff\x87\x05\x0b\x13\x07\x06\x06\x8e\x0c\x0d\x1a\xfe"
                   2595:             "\x0f" }  },
1.1       albertel 2596:       /* --- pixel bitmap for cmr131 char#91 [ --- */
1.2       albertel 2597:       {  91,99276,                      /* character number, location */
                   2598:          14, 1,   -5, 1,      /* topleft row,col, and botleft row,col */
                   2599:           {  4,   19, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2600:             "\x04\x0f\xe1\x3f\x11\x34" }  },
1.1       albertel 2601:       /* --- pixel bitmap for cmr131 char#92 (noname) --- */
1.2       albertel 2602:       {  92,117723,                     /* character number, location */
                   2603:          13, 2,    7, 2,      /* topleft row,col, and botleft row,col */
                   2604:           {  6,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2605:             "\x62\x14\x45\xf3\x0c" }  },
1.1       albertel 2606:       /* --- pixel bitmap for cmr131 char#93 ] --- */
1.2       albertel 2607:       {  93,99962,                      /* character number, location */
                   2608:          14, 0,   -5, 0,      /* topleft row,col, and botleft row,col */
                   2609:           {  4,   19, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2610:             "\x04\xfe\x31\xf1\x31\x04" }  },
1.1       albertel 2611:       /* --- pixel bitmap for cmr131 char#94 \^ --- */
1.2       albertel 2612:       {  94,106123,                     /* character number, location */
                   2613:          13, 2,   10, 2,      /* topleft row,col, and botleft row,col */
                   2614:           {  5,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2615:             "\x44\x45" }  },
1.1       albertel 2616:       /* --- pixel bitmap for cmr131 char#95 (noname) --- */
1.2       albertel 2617:       {  95,106590,                     /* character number, location */
                   2618:          13, 2,   11, 2,      /* topleft row,col, and botleft row,col */
                   2619:           {  1,    2, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2620:             "\x03" }  },
1.1       albertel 2621:       /* --- pixel bitmap for cmr131 char#96 (noname) --- */
1.2       albertel 2622:       {  96,100568,                     /* character number, location */
                   2623:          13, 2,    7, 2,      /* topleft row,col, and botleft row,col */
                   2624:           {  2,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2625:             "\x56\x0f" }  },
1.1       albertel 2626:       /* --- pixel bitmap for cmr131 char#97 a --- */
1.2       albertel 2627:       {  97,29169,                      /* character number, location */
                   2628:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   2629:           {  8,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2630:             "\x1e\x20\x20\x3e\x21\xa1\xa1\x7e" }  },
1.1       albertel 2631:       /* --- pixel bitmap for cmr131 char#98 b --- */
1.2       albertel 2632:       {  98,30161,                      /* character number, location */
                   2633:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   2634:           {  8,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2635:             "\x03\x02\x02\x02\x02\x3a\x46\x82\x82\x82\x82\x46\x3a" }  },
1.1       albertel 2636:       /* --- pixel bitmap for cmr131 char#99 c --- */
1.2       albertel 2637:       {  99,30928,                      /* character number, location */
                   2638:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   2639:           {  7,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2640:             "\x3c\x41\x20\x10\x08\x08\x79" }  },
1.1       albertel 2641:       /* --- pixel bitmap for cmr131 char#100 d --- */
1.2       albertel 2642:       { 100,31913,                      /* character number, location */
                   2643:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   2644:           {  8,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2645:             "\x60\x40\x40\x40\x40\x5c\x62\x41\x41\x41\x41\x62\xdc" }  },
1.1       albertel 2646:       /* --- pixel bitmap for cmr131 char#101 e --- */
1.2       albertel 2647:       { 101,32665,                      /* character number, location */
                   2648:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   2649:           {  6,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2650:             "\x9c\x18\xfe\x41\x20\x72" }  },
1.1       albertel 2651:       /* --- pixel bitmap for cmr131 char#102 f --- */
1.2       albertel 2652:       { 102,33480,                      /* character number, location */
                   2653:          13, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   2654:           {  7,   13, 3,17, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2655:             "\x34\xf3\x21\x46\x10\xf5\x21\x45\x21" }  },
1.1       albertel 2656:       /* --- pixel bitmap for cmr131 char#103 g --- */
1.2       albertel 2657:       { 103,34707,                      /* character number, location */
                   2658:           8, 0,   -5, 0,      /* topleft row,col, and botleft row,col */
                   2659:           {  9,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2660:             "\xfc\xcd\x08\x11\x42\x42\x83\x00\x3f\x81\x02\x06\x14"
                   2661:             "\xc4\x07" }  },
1.1       albertel 2662:       /* --- pixel bitmap for cmr131 char#104 h --- */
1.2       albertel 2663:       { 104,35676,                      /* character number, location */
                   2664:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   2665:           {  8,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2666:             "\x03\x02\x02\x02\x02\x3a\x46\x42\x42\x42\x42\x42\xe7" }  },
1.1       albertel 2667:       /* --- pixel bitmap for cmr131 char#105 i --- */
1.2       albertel 2668:       { 105,36383,                      /* character number, location */
                   2669:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   2670:           {  3,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2671:             "\x1b\x80\x49\x92\x74" }  },
1.1       albertel 2672:       /* --- pixel bitmap for cmr131 char#106 j --- */
1.2       albertel 2673:       { 106,37147,                      /* character number, location */
                   2674:          13,-1,   -4,-1,      /* topleft row,col, and botleft row,col */
                   2675:           {  5,   17, 3,17, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2676:             "\xf1\x32\xf2\x50\x23\xf9\x41\x03\x23" }  },
1.1       albertel 2677:       /* --- pixel bitmap for cmr131 char#107 k --- */
1.2       albertel 2678:       { 107,38231,                      /* character number, location */
                   2679:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   2680:           {  9,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2681:             "\x03\x04\x08\x10\x20\x40\x9e\x0c\x0d\x1e\x2c\x88\x10"
                   2682:             "\x72\x1e" }  },
1.1       albertel 2683:       /* --- pixel bitmap for cmr131 char#108 l --- */
1.2       albertel 2684:       { 108,38842,                      /* character number, location */
                   2685:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   2686:           {  3,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2687:             "\x93\x24\x49\x92\x74" }  },
1.1       albertel 2688:       /* --- pixel bitmap for cmr131 char#109 m --- */
1.2       albertel 2689:       { 109,40147,                      /* character number, location */
                   2690:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   2691:           { 13,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2692:             "\x3b\xc7\x18\x09\x21\x21\x24\x84\x84\x90\x10\x3a\xe7" }  },
1.1       albertel 2693:       /* --- pixel bitmap for cmr131 char#110 n --- */
1.2       albertel 2694:       { 110,41120,                      /* character number, location */
                   2695:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   2696:           {  8,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2697:             "\x3b\x46\x42\x42\x42\x42\x42\xe7" }  },
1.1       albertel 2698:       /* --- pixel bitmap for cmr131 char#111 o --- */
1.2       albertel 2699:       { 111,41809,                      /* character number, location */
                   2700:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   2701:           {  7,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2702:             "\x1c\x51\x30\x18\x0c\x8a\x38" }  },
1.1       albertel 2703:       /* --- pixel bitmap for cmr131 char#112 p --- */
1.2       albertel 2704:       { 112,42867,                      /* character number, location */
                   2705:           8, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   2706:           {  8,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2707:             "\x3b\x46\x82\x82\x82\x82\x46\x3a\x02\x02\x02\x07" }  },
1.1       albertel 2708:       /* --- pixel bitmap for cmr131 char#113 q --- */
1.2       albertel 2709:       { 113,43863,                      /* character number, location */
                   2710:           8, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   2711:           { 10,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2712:             "\xbc\x08\x13\x48\x20\x81\x04\x22\x0c\x2f\x80\x00\x02"
                   2713:             "\x08\xf8" }  },
1.1       albertel 2714:       /* --- pixel bitmap for cmr131 char#114 r --- */
1.2       albertel 2715:       { 114,44714,                      /* character number, location */
                   2716:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   2717:           {  6,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2718:             "\x9b\x2d\x08\x82\x20\x3c" }  },
1.1       albertel 2719:       /* --- pixel bitmap for cmr131 char#115 s --- */
1.2       albertel 2720:       { 115,45643,                      /* character number, location */
                   2721:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   2722:           {  5,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2723:             "\x3e\x46\x83\x63\x7c" }  },
1.1       albertel 2724:       /* --- pixel bitmap for cmr131 char#116 t --- */
1.2       albertel 2725:       { 116,46460,                      /* character number, location */
                   2726:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   2727:           {  6,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2728:             "\x04\x61\xfc\x04\x41\x10\x24\x89\x01" }  },
1.1       albertel 2729:       /* --- pixel bitmap for cmr131 char#117 u --- */
1.2       albertel 2730:       { 117,47375,                      /* character number, location */
                   2731:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   2732:           {  8,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2733:             "\x63\x42\x42\x42\x42\x42\x62\xdc" }  },
1.1       albertel 2734:       /* --- pixel bitmap for cmr131 char#118 v --- */
1.2       albertel 2735:       { 118,48233,                      /* character number, location */
                   2736:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   2737:           { 10,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2738:             "\xcf\x13\x42\x08\x12\x48\xc0\x00\x03\x0c" }  },
1.1       albertel 2739:       /* --- pixel bitmap for cmr131 char#119 w --- */
1.2       albertel 2740:       { 119,49489,                      /* character number, location */
                   2741:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   2742:           { 13,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2743:             "\xe7\x9e\x88\x90\x12\x52\x82\x2a\x50\x05\xc6\x80\x08" }  },
1.1       albertel 2744:       /* --- pixel bitmap for cmr131 char#120 x --- */
1.2       albertel 2745:       { 120,50454,                      /* character number, location */
                   2746:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   2747:           { 10,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2748:             "\xcf\x13\x81\x04\x0c\x30\x20\x41\xc8\xf3" }  },
1.1       albertel 2749:       /* --- pixel bitmap for cmr131 char#121 y --- */
1.2       albertel 2750:       { 121,51511,                      /* character number, location */
                   2751:           8, 0,   -4, 0,      /* topleft row,col, and botleft row,col */
                   2752:           { 10,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2753:             "\xcf\x13\x42\x08\x12\x48\xe0\x01\x03\x0c\x10\x40\x90"
                   2754:             "\xc0\x03" }  },
1.1       albertel 2755:       /* --- pixel bitmap for cmr131 char#122 z --- */
1.2       albertel 2756:       { 122,52462,                      /* character number, location */
                   2757:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   2758:           {  6,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2759:             "\x7f\x94\x25\xa4\x29\xfe" }  },
1.1       albertel 2760:       /* --- pixel bitmap for cmr131 char#123 (noname) --- */
1.2       albertel 2761:       { 123,118331,                     /* character number, location */
                   2762:           5, 0,    4, 0,      /* topleft row,col, and botleft row,col */
                   2763:           {  9,    1, 3, 2, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2764:             "\x09" }  },
1.1       albertel 2765:       /* --- pixel bitmap for cmr131 char#124 (noname) --- */
1.2       albertel 2766:       { 124,119151,                     /* character number, location */
                   2767:           5, 0,    4, 0,      /* topleft row,col, and botleft row,col */
                   2768:           { 18,    1, 3, 4, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2769:             "\x0e\x04" }  },
1.1       albertel 2770:       /* --- pixel bitmap for cmr131 char#125 (noname) --- */
1.2       albertel 2771:       { 125,107267,                     /* character number, location */
                   2772:          13, 2,   10, 2,      /* topleft row,col, and botleft row,col */
                   2773:           {  6,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2774:             "\xa4\xb4\x01" }  },
1.1       albertel 2775:       /* --- pixel bitmap for cmr131 char#126 \~ --- */
1.2       albertel 2776:       { 126,107947,                     /* character number, location */
                   2777:          12, 2,   10, 2,      /* topleft row,col, and botleft row,col */
                   2778:           {  5,    2, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2779:             "\xb6\x01" }  },
1.1       albertel 2780:       /* --- pixel bitmap for cmr131 char#127 (noname) --- */
1.2       albertel 2781:       { 127,108626,                     /* character number, location */
                   2782:          13, 2,   11, 2,      /* topleft row,col, and botleft row,col */
                   2783:           {  5,    2, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2784:             "\x7b\x03" }  },
1.1       albertel 2785:       /* --- trailer  --- */
1.2       albertel 2786:       { -99, -999,  0,0,0,0, { 0,0,0,0, (pixbyte *)"\0" }  }
1.1       albertel 2787:    } ;
                   2788: 
                   2789: 
1.2       albertel 2790: /* --- size=4 for .160gf ---
                   2791:  * mf '\mode=preview; mag=magstep(-15.29639112828755784636); input cmr10'
                   2792:  * --------------------------------------------------------------------- */
1.1       albertel 2793: /* --- fontdef for cmr160 --- */
                   2794: static	chardef  cmr160[] =
                   2795:    {
1.2       albertel 2796:       /* --- pixel bitmap for cmr160 char#0 \Gamma --- */
                   2797:       {   0,53842,                      /* character number, location */
                   2798:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   2799:           { 12,   15, 3,25, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2800:             "\x0b\x32\x52\x32\x61\x10\xf1\x22\x71\xf8\x22\x87\x51" }  },
                   2801:       /* --- pixel bitmap for cmr160 char#1 \Delta --- */
                   2802:       {   1,54747,                      /* character number, location */
                   2803:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   2804:           { 16,   15, 3,56, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2805:             "\xf1\x72\x70\xf1\x61\x12\x60\xf1\x51\x32\x50\xf1\x41"
                   2806:             "\x52\x40\xf1\x31\x72\x30\xf1\x21\x92\x20\x11\xb2\x2e"
                   2807:             "\x1e\x02" }  },
                   2808:       /* --- pixel bitmap for cmr160 char#2 \Theta --- */
                   2809:       {   2,55880,                      /* character number, location */
                   2810:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   2811:           { 15,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2812:             "\xe0\x03\x0c\x06\x03\xc6\x00\x66\x00\x9b\x20\xcf\x9f"
                   2813:             "\xe7\xcf\x13\xe4\x01\xb0\x01\xcc\x00\xc6\x80\xc1\x60"
                   2814:             "\x80\x0f\x00" }  },
                   2815:       /* --- pixel bitmap for cmr160 char#3 \Lambda --- */
                   2816:       {   3,56836,                      /* character number, location */
                   2817:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   2818:           { 13,   15, 3,38, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2819:             "\xf1\x61\x60\xf2\x53\x50\xf2\x41\x22\x40\xf2\x31\x42"
                   2820:             "\x30\xf2\x21\x62\x25\x26" }  },
                   2821:       /* --- pixel bitmap for cmr160 char#4 \Xi --- */
                   2822:       {   4,58207,                      /* character number, location */
                   2823:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   2824:           { 13,   15, 3,42, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2825:             "\xf1\x0d\x0f\x11\xb1\xe0\x11\x71\x20\xf1\x29\x20\x21"
                   2826:             "\x71\x20\xf1\xdf\x11\xb1\x0f\x1d" }  },
                   2827:       /* --- pixel bitmap for cmr160 char#5 \Pi --- */
                   2828:       {   5,59364,                      /* character number, location */
                   2829:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   2830:           { 15,   15, 3,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2831:             "\x0e\x01\xfc\x22\x72\x26\x36" }  },
                   2832:       /* --- pixel bitmap for cmr160 char#6 \Sigma --- */
                   2833:       {   6,60491,                      /* character number, location */
                   2834:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   2835:           { 14,   15, 3,51, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2836:             "\x0d\x13\x82\x23\x81\x32\x91\x32\x81\x33\xc3\x70\xf1"
                   2837:             "\x52\x70\x51\xc1\x81\x31\x91\x21\x91\x22\x82\x1d\x10" }  },
                   2838:       /* --- pixel bitmap for cmr160 char#7 \Upsilon --- */
                   2839:       {   7,61587,                      /* character number, location */
                   2840:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   2841:           { 15,   15, 3,27, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2842:             "\x14\x54\x16\x37\x51\x21\x41\x63\x60\xf9\x72\x60\x48"
                   2843:             "\x32" }  },
                   2844:       /* --- pixel bitmap for cmr160 char#8 \Phi --- */
                   2845:       {   8,62617,                      /* character number, location */
                   2846:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   2847:           { 14,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2848:             "\xf8\x07\x30\x00\x0c\xc0\x0f\xcc\x8c\x31\x36\x0c\x0f"
                   2849:             "\xc3\xc3\xb0\x31\xc6\xcc\xc0\x0f\xc0\x00\x30\x80\x7f"
                   2850:             "\x00" }  },
                   2851:       /* --- pixel bitmap for cmr160 char#9 \Psi --- */
                   2852:       {   9,63738,                      /* character number, location */
                   2853:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   2854:           { 15,   15, 3,55, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2855:             "\x48\x30\xf1\x72\x63\x42\x33\x13\x32\x23\x10\xf3\x22"
                   2856:             "\x32\x22\x20\x32\x22\x12\x72\x15\x85\x50\xf1\x72\x60"
                   2857:             "\x48\x38" }  },
                   2858:       /* --- pixel bitmap for cmr160 char#10 \Omega --- */
                   2859:       {  10,64899,                      /* character number, location */
                   2860:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   2861:           { 14,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2862:             "\xf0\x03\x03\x63\x80\x0d\xc0\x03\xf0\x00\x3c\x00\x0b"
                   2863:             "\x40\x06\x18\x01\xc2\xc0\x24\x90\x19\xa6\x87\xe7\xe1"
                   2864:             "\x01" }  },
                   2865:       /* --- pixel bitmap for cmr160 char#11 \ff --- */
                   2866:       {  11,110754,                     /* character number, location */
                   2867:          15, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   2868:           { 15,   15, 3,31, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2869:             "\x45\x14\x42\x33\x22\xf2\x22\x42\x5d\x20\xf7\x22\x42"
                   2870:             "\x54\x44\x31" }  },
                   2871:       /* --- pixel bitmap for cmr160 char#12 \fi --- */
                   2872:       {  12,111926,                     /* character number, location */
                   2873:          15, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   2874:           { 12,   15, 3,34, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2875:             "\x45\x62\x41\x42\x51\x20\xf1\x22\x8a\x42\x24\x20\xf6"
                   2876:             "\x22\x42\x24\x44" }  },
                   2877:       /* --- pixel bitmap for cmr160 char#13 \fl --- */
                   2878:       {  13,113090,                     /* character number, location */
                   2879:          15, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   2880:           { 12,   15, 3,28, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2881:             "\x46\x52\x32\x20\xf2\x22\x42\x2a\x20\xf7\x22\x42\x25"
                   2882:             "\x25" }  },
                   2883:       /* --- pixel bitmap for cmr160 char#14 \ffi --- */
                   2884:       {  14,114703,                     /* character number, location */
                   2885:          15, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   2886:           { 18,   15, 3,50, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2887:             "\x45\x15\x62\x42\x41\x42\x42\x51\x20\xf1\x22\x42\x8e"
                   2888:             "\x02\x42\x42\x24\x20\xf6\x22\x42\x42\x24\x42\x44" }  },
                   2889:       /* --- pixel bitmap for cmr160 char#15 \ffl --- */
                   2890:       {  15,116340,                     /* character number, location */
                   2891:          15, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   2892:           { 18,   15, 3,38, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2893:             "\x4c\x52\x33\x32\x20\xf2\x22\x42\x42\x2e\x02\x20\xf7"
                   2894:             "\x22\x42\x42\x25\x24\x25" }  },
                   2895:       /* --- pixel bitmap for cmr160 char#16 \imath --- */
                   2896:       {  16,78730,                      /* character number, location */
                   2897:          10, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   2898:           {  6,   10, 3,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2899:             "\x04\x20\xf7\x22\x26" }  },
                   2900:       /* --- pixel bitmap for cmr160 char#17 \jmath --- */
                   2901:       {  17,79402,                      /* character number, location */
                   2902:          10,-2,   -4,-2,      /* topleft row,col, and botleft row,col */
                   2903:           {  7,   14, 3,11, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2904:             "\x34\xfa\x52\x02\x28\x22" }  },
                   2905:       /* --- pixel bitmap for cmr160 char#18 \gravesym --- */
                   2906:       {  18,102013,                     /* character number, location */
                   2907:          15, 2,   12, 2,      /* topleft row,col, and botleft row,col */
                   2908:           {  4,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2909:             "\x73\x0c" }  },
                   2910:       /* --- pixel bitmap for cmr160 char#19 \acutesym --- */
                   2911:       {  19,102582,                     /* character number, location */
                   2912:          15, 4,   12, 4,      /* topleft row,col, and botleft row,col */
                   2913:           {  5,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2914:             "\x98\x1b" }  },
                   2915:       /* --- pixel bitmap for cmr160 char#20 \checksym --- */
                   2916:       {  20,103207,                     /* character number, location */
                   2917:          14, 3,   12, 3,      /* topleft row,col, and botleft row,col */
                   2918:           {  5,    2, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2919:             "\xdb\x01" }  },
                   2920:       /* --- pixel bitmap for cmr160 char#21 \brevesym --- */
                   2921:       {  21,103823,                     /* character number, location */
                   2922:          15, 2,   11, 2,      /* topleft row,col, and botleft row,col */
                   2923:           {  7,    4, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2924:             "\xc1\xa0\x88\x03" }  },
1.1       albertel 2925:       /* --- pixel bitmap for cmr160 char#22 (noname) --- */
1.2       albertel 2926:       {  22,104407,                     /* character number, location */
                   2927:          13, 2,   12, 2,      /* topleft row,col, and botleft row,col */
                   2928:           {  7,    1, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2929:             "\x7f" }  },
1.1       albertel 2930:       /* --- pixel bitmap for cmr160 char#23 (noname) --- */
1.2       albertel 2931:       {  23,105184,                     /* character number, location */
                   2932:          15, 6,   12, 6,      /* topleft row,col, and botleft row,col */
                   2933:           {  5,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2934:             "\x2e\x3a" }  },
1.1       albertel 2935:       /* --- pixel bitmap for cmr160 char#24 (noname) --- */
1.2       albertel 2936:       {  24,105872,                     /* character number, location */
                   2937:           0, 3,   -4, 3,      /* topleft row,col, and botleft row,col */
                   2938:           {  5,    4, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2939:             "\x0c\xe3\x0f" }  },
1.1       albertel 2940:       /* --- pixel bitmap for cmr160 char#25 \ss --- */
1.2       albertel 2941:       {  25,80485,                      /* character number, location */
                   2942:          15, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   2943:           { 10,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2944:             "\xf0\x20\xc4\x30\xc3\x8c\xbd\xc3\x08\x63\x0c\x33\xcc"
                   2945:             "\x30\xc3\x4c\x33\xf7\x0c" }  },
1.1       albertel 2946:       /* --- pixel bitmap for cmr160 char#26 \ae --- */
1.2       albertel 2947:       {  26,81828,                      /* character number, location */
                   2948:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   2949:           { 14,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2950:             "\x3c\x8f\x79\x06\x0c\x03\xc3\xf8\xbf\x31\x30\x0c\x0c"
                   2951:             "\x03\xc3\x21\x8f\x07" }  },
1.1       albertel 2952:       /* --- pixel bitmap for cmr160 char#27 \oe --- */
1.2       albertel 2953:       {  27,82944,                      /* character number, location */
                   2954:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   2955:           { 15,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2956:             "\x38\x1e\xe3\x99\x60\x78\x30\x3c\xf8\x1f\x0c\x0c\x06"
                   2957:             "\x04\x03\xc6\x43\x1c\x1e" }  },
1.1       albertel 2958:       /* --- pixel bitmap for cmr160 char#28 (noname) --- */
1.2       albertel 2959:       {  28,83758,                      /* character number, location */
                   2960:          12, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   2961:           {  9,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2962:             "\x80\x00\xe1\x31\x26\x6a\xf4\xe4\xc9\x8b\x15\x19\xe3"
                   2963:             "\x21\x40\x00" }  },
1.1       albertel 2964:       /* --- pixel bitmap for cmr160 char#29 \AE --- */
1.2       albertel 2965:       {  29,85538,                      /* character number, location */
                   2966:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   2967:           { 18,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2968:             "\xf0\xff\x01\x0d\x06\x32\x10\xc8\x80\x20\x43\xc2\x0c"
                   2969:             "\x01\x31\x06\xfc\x1f\x10\x63\x20\x0c\x89\x30\x24\xc2"
                   2970:             "\xc0\x04\x03\x11\x0c\xf6\xfd\x1f" }  },
1.1       albertel 2971:       /* --- pixel bitmap for cmr160 char#30 \OE --- */
1.2       albertel 2972:       {  30,87238,                      /* character number, location */
                   2973:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   2974:           { 20,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2975:             "\xe0\xff\x87\xe1\x60\x0c\x0c\x64\xc0\x80\x06\x0c\x39"
                   2976:             "\xc0\x10\x03\x8c\x31\xc0\x1f\x03\x8c\x31\xc0\x90\x06"
                   2977:             "\x0c\x69\xc0\xc0\x0c\x0c\x84\xe1\x60\xe0\xff\x07" }  },
1.1       albertel 2978:       /* --- pixel bitmap for cmr160 char#31 (noname) --- */
1.2       albertel 2979:       {  31,88220,                      /* character number, location */
                   2980:          16, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   2981:           { 15,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2982:             "\x00\x10\xf0\x0d\x06\x83\x81\x63\x60\x13\x10\x0d\x84"
                   2983:             "\x07\xc2\x83\xe0\x21\xf0\x10\x58\x04\x64\x03\xe3\xc0"
                   2984:             "\x60\x30\xd8\x07\x04\x00" }  },
1.1       albertel 2985:       /* --- pixel bitmap for cmr160 char#32 (noname) --- */
1.2       albertel 2986:       {  32,106370,                     /* character number, location */
                   2987:           9, 0,    6, 0,      /* topleft row,col, and botleft row,col */
                   2988:           {  6,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2989:             "\xb0\x13\x00" }  },
1.1       albertel 2990:       /* --- pixel bitmap for cmr160 char#33 ! --- */
1.2       albertel 2991:       {  33,88875,                      /* character number, location */
                   2992:          15, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   2993:           {  2,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2994:             "\xff\xff\x03\x3c" }  },
1.1       albertel 2995:       /* --- pixel bitmap for cmr160 char#34 " --- */
1.2       albertel 2996:       {  34,117287,                     /* character number, location */
                   2997:          15, 1,    9, 1,      /* topleft row,col, and botleft row,col */
                   2998:           {  6,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   2999:             "\xf3\x2c\x8a\x51\x04" }  },
1.1       albertel 3000:       /* --- pixel bitmap for cmr160 char#35 # --- */
1.2       albertel 3001:       {  35,90329,                      /* character number, location */
                   3002:          15, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   3003:           { 16,   19, 3,43, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3004:             "\xf2\x71\x41\x30\xf2\x61\x41\x4e\x02\xf4\x51\x41\x5e"
                   3005:             "\x02\xf2\x41\x41\x60\xf2\x31\x41\x72" }  },
1.1       albertel 3006:       /* --- pixel bitmap for cmr160 char#36 $ --- */
1.2       albertel 3007:       {  36,75008,                      /* character number, location */
                   3008:          17, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   3009:           {  9,   18, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3010:             "\x10\x20\xf0\x91\x14\x31\x72\xe4\x09\x3e\xf8\x40\x83"
                   3011:             "\x3c\x71\x62\x44\x49\x3c\x20\x00" }  },
1.1       albertel 3012:       /* --- pixel bitmap for cmr160 char#37 % --- */
1.2       albertel 3013:       {  37,91566,                      /* character number, location */
                   3014:          17, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   3015:           { 16,   18, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3016:             "\x0c\x20\x16\x10\x63\x1c\xa3\x0b\x23\x04\x23\x04\x23"
                   3017:             "\x02\x23\x01\x16\x01\x8c\x30\x80\x48\x40\x8c\x20\x8c"
                   3018:             "\x20\x8c\x10\x8c\x08\x8c\x08\x48\x04\x30" }  },
1.1       albertel 3019:       /* --- pixel bitmap for cmr160 char#38 & --- */
1.2       albertel 3020:       {  38,76282,                      /* character number, location */
                   3021:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   3022:           { 15,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3023:             "\x70\x00\x44\x00\x23\x80\x11\xc0\x04\x60\xe3\xf3\x60"
                   3024:             "\x30\x10\x3c\x04\x1b\xc2\x98\x60\x5c\x30\x1c\x34\x1e"
                   3025:             "\xf3\xf8\x00" }  },
                   3026:       /* --- pixel bitmap for cmr160 char#39 ' --- */
                   3027:       {  39,92232,                      /* character number, location */
                   3028:          15, 2,    9, 2,      /* topleft row,col, and botleft row,col */
                   3029:           {  2,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3030:             "\xaf\x05" }  },
1.1       albertel 3031:       /* --- pixel bitmap for cmr160 char#40 ( --- */
1.2       albertel 3032:       {  40,92806,                      /* character number, location */
                   3033:          17, 2,   -6, 2,      /* topleft row,col, and botleft row,col */
                   3034:           {  6,   23, 3,34, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3035:             "\x51\x41\x41\x42\x41\x42\x41\x4f\x82\x40\x11\x52\x51"
                   3036:             "\x52\x51\x61\x61" }  },
1.1       albertel 3037:       /* --- pixel bitmap for cmr160 char#41 ) --- */
1.2       albertel 3038:       {  41,93415,                      /* character number, location */
                   3039:          17, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   3040:           {  6,   23, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3041:             "\x81\x40\x30\x08\x06\xc1\x30\x0c\xc3\x30\x0c\xc3\x10"
                   3042:             "\x86\x30\x84\x10\x00" }  },
1.1       albertel 3043:       /* --- pixel bitmap for cmr160 char#42 * --- */
1.2       albertel 3044:       {  42,94048,                      /* character number, location */
                   3045:          17, 1,    7, 1,      /* topleft row,col, and botleft row,col */
                   3046:           {  9,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3047:             "\x10\x20\x48\xba\xce\x87\xcf\x75\x49\x10\x20\x00" }  },
1.1       albertel 3048:       /* --- pixel bitmap for cmr160 char#43 + --- */
1.2       albertel 3049:       {  43,94740,                      /* character number, location */
                   3050:          13, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   3051:           { 15,   15, 3,13, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3052:             "\xf6\x71\x7e\x01\xf6\x71\x73" }  },
1.1       albertel 3053:       /* --- pixel bitmap for cmr160 char#44 (noname) --- */
1.2       albertel 3054:       {  44,95325,                      /* character number, location */
                   3055:           2, 2,   -4, 2,      /* topleft row,col, and botleft row,col */
                   3056:           {  2,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3057:             "\xaf\x05" }  },
1.1       albertel 3058:       /* --- pixel bitmap for cmr160 char#45 (noname) --- */
1.2       albertel 3059:       {  45,117790,                     /* character number, location */
                   3060:           6, 0,    4, 0,      /* topleft row,col, and botleft row,col */
                   3061:           {  6,    2, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3062:             "\xff\x0f" }  },
1.1       albertel 3063:       /* --- pixel bitmap for cmr160 char#46 (noname) --- */
1.2       albertel 3064:       {  46,95790,                      /* character number, location */
                   3065:           2, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   3066:           {  2,    2, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3067:             "\x0f" }  },
1.1       albertel 3068:       /* --- pixel bitmap for cmr160 char#47 / --- */
1.2       albertel 3069:       {  47,96296,                      /* character number, location */
                   3070:          17, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   3071:           {  9,   23, 3,49, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3072:             "\xf1\x81\xf2\x71\x10\xf1\x61\x20\xf2\x51\x30\xf2\x41"
                   3073:             "\x40\xf2\x31\x50\xf1\x21\x60\xf2\x11\x7f\x11\x81" }  },
1.1       albertel 3074:       /* --- pixel bitmap for cmr160 char#48 0 --- */
1.2       albertel 3075:       {  48,65623,                      /* character number, location */
                   3076:          14, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   3077:           {  9,   14, 3,27, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3078:             "\x33\x42\x32\x21\x51\x1f\x72\x52\x11\x51\x22\x32\x35"
                   3079:             "\x21" }  },
1.1       albertel 3080:       /* --- pixel bitmap for cmr160 char#49 1 --- */
1.2       albertel 3081:       {  49,66397,                      /* character number, location */
                   3082:          14, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   3083:           {  7,   14, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3084:             "\x41\x25\x20\xfa\x32\x27" }  },
1.1       albertel 3085:       /* --- pixel bitmap for cmr160 char#50 2 --- */
1.2       albertel 3086:       {  50,67366,                      /* character number, location */
                   3087:          14, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   3088:           {  9,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3089:             "\x7c\x84\x05\x1e\x0c\x18\x30\x30\x20\x20\x20\x20\x24"
                   3090:             "\xe8\xef\x1f" }  },
1.1       albertel 3091:       /* --- pixel bitmap for cmr160 char#51 3 --- */
1.2       albertel 3092:       {  51,68394,                      /* character number, location */
                   3093:          14, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   3094:           {  9,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3095:             "\x3c\x84\x18\x03\x06\x0c\x0c\x1e\x60\x80\x01\x0f\x1e"
                   3096:             "\x2c\x8c\x0f" }  },
1.1       albertel 3097:       /* --- pixel bitmap for cmr160 char#52 4 --- */
1.2       albertel 3098:       {  52,69310,                      /* character number, location */
                   3099:          14, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   3100:           {  9,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3101:             "\x60\xc0\xc0\x41\x83\x86\x8c\x98\x31\xff\xc1\x80\x01"
                   3102:             "\x03\x06\x3f" }  },
1.1       albertel 3103:       /* --- pixel bitmap for cmr160 char#53 5 --- */
1.2       albertel 3104:       {  53,70338,                      /* character number, location */
                   3105:          14, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   3106:           {  9,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3107:             "\x82\xfc\xe8\x10\x20\x40\x8f\x31\xc1\x80\x01\x0f\x1e"
                   3108:             "\x24\x8c\x07" }  },
1.1       albertel 3109:       /* --- pixel bitmap for cmr160 char#54 6 --- */
1.2       albertel 3110:       {  54,71228,                      /* character number, location */
                   3111:          14, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   3112:           {  9,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3113:             "\xf0\x18\x1b\x36\x30\x60\xcf\xb1\xc1\x83\x07\x0f\x16"
                   3114:             "\x44\x0c\x07" }  },
1.1       albertel 3115:       /* --- pixel bitmap for cmr160 char#55 7 --- */
1.2       albertel 3116:       {  55,72124,                      /* character number, location */
                   3117:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   3118:           { 10,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3119:             "\x02\xf8\xef\x7f\x40\x81\x00\x01\x02\x08\x30\x40\x00"
                   3120:             "\x01\x06\x18\x60\x80\x01" }  },
1.1       albertel 3121:       /* --- pixel bitmap for cmr160 char#56 8 --- */
1.2       albertel 3122:       {  56,73038,                      /* character number, location */
                   3123:          14, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   3124:           {  9,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3125:             "\x38\x88\x18\x33\x66\x8c\x0f\x0e\x7a\xc2\x07\x0f\x1e"
                   3126:             "\x6c\x8c\x0f" }  },
1.1       albertel 3127:       /* --- pixel bitmap for cmr160 char#57 9 --- */
1.2       albertel 3128:       {  57,73932,                      /* character number, location */
                   3129:          14, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   3130:           {  9,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3131:             "\x38\x8c\x08\x1a\x3c\x78\xf0\x60\xe3\xbc\x01\x03\x1a"
                   3132:             "\x36\xc6\x03" }  },
1.1       albertel 3133:       /* --- pixel bitmap for cmr160 char#58 : --- */
1.2       albertel 3134:       {  58,96888,                      /* character number, location */
                   3135:          10, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   3136:           {  2,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3137:             "\x0f\x00\x0f" }  },
1.1       albertel 3138:       /* --- pixel bitmap for cmr160 char#59 ; --- */
1.2       albertel 3139:       {  59,97551,                      /* character number, location */
                   3140:          10, 2,   -4, 2,      /* topleft row,col, and botleft row,col */
                   3141:           {  2,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3142:             "\x0f\x00\xaf\x05" }  },
1.1       albertel 3143:       /* --- pixel bitmap for cmr160 char#60 (noname) --- */
1.2       albertel 3144:       {  60,89485,                      /* character number, location */
                   3145:          11, 2,   -4, 2,      /* topleft row,col, and botleft row,col */
                   3146:           {  2,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3147:             "\x0f\xf0\xff\x3f" }  },
1.1       albertel 3148:       /* --- pixel bitmap for cmr160 char#61 = --- */
1.2       albertel 3149:       {  61,98227,                      /* character number, location */
                   3150:           9, 1,    2, 1,      /* topleft row,col, and botleft row,col */
                   3151:           { 15,    7, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3152:             "\x0e\x01\xf4\xe0\x1e\x01" }  },
1.1       albertel 3153:       /* --- pixel bitmap for cmr160 char#62 (noname) --- */
1.2       albertel 3154:       {  62,78127,                      /* character number, location */
                   3155:          11, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   3156:           {  8,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3157:             "\x18\x18\x00\x00\x00\x00\x18\x08\x08\x0c\x06\x03\xc3"
                   3158:             "\xc3\x3c" }  },
                   3159:       /* --- pixel bitmap for cmr160 char#63 ? --- */
                   3160:       {  63,77219,                      /* character number, location */
                   3161:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   3162:           {  8,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3163:             "\x3c\xc3\xc3\xc0\x60\x30\x10\x10\x18\x00\x00\x00\x00"
                   3164:             "\x18\x18" }  },
                   3165:       /* --- pixel bitmap for cmr160 char#64 @ --- */
                   3166:       {  64,99397,                      /* character number, location */
                   3167:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   3168:           { 15,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3169:             "\xe0\x03\x0c\x06\x01\x44\x38\x24\x23\x8a\x60\x66\x30"
                   3170:             "\x33\x98\x19\xcc\x08\xa6\x8c\x4b\x38\x47\x00\xc0\x80"
                   3171:             "\x83\x3f\x00" }  },
1.1       albertel 3172:       /* --- pixel bitmap for cmr160 char#65 A --- */
1.2       albertel 3173:       {  65, 1026,                      /* character number, location */
                   3174:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   3175:           { 15,   15, 3,50, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3176:             "\x71\x70\xf2\x63\x60\xf2\x51\x22\x50\xf1\x41\x42\x40"
                   3177:             "\x47\x40\xf1\x31\x62\x30\x22\x63\x41\x82\x25\x46" }  },
1.1       albertel 3178:       /* --- pixel bitmap for cmr160 char#66 B --- */
1.2       albertel 3179:       {  66, 2324,                      /* character number, location */
                   3180:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   3181:           { 14,   15, 3,49, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3182:             "\x0a\x62\x62\x20\xf2\x22\x72\x10\x22\x63\x32\x53\x4a"
                   3183:             "\x42\x72\x10\xf2\x22\x82\x22\x73\x22\x63\x1b\x36" }  },
1.1       albertel 3184:       /* --- pixel bitmap for cmr160 char#67 C --- */
1.2       albertel 3185:       {  67, 3249,                      /* character number, location */
                   3186:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   3187:           { 14,   15, 3,41, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3188:             "\x56\x21\x32\x63\x22\x82\xf1\x12\xa1\x0f\x42\xc0\xf1"
                   3189:             "\x12\xa1\x22\x81\x42\x61\x76\x33" }  },
1.1       albertel 3190:       /* --- pixel bitmap for cmr160 char#68 D --- */
1.2       albertel 3191:       {  68, 4327,                      /* character number, location */
                   3192:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   3193:           { 15,   15, 3,45, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3194:             "\x0a\x72\x62\x52\x72\x42\x82\x32\x91\x10\xf4\x22\x92"
                   3195:             "\x22\x91\x32\x82\x32\x72\x42\x62\x3a\x53" }  },
1.1       albertel 3196:       /* --- pixel bitmap for cmr160 char#69 E --- */
1.2       albertel 3197:       {  69, 5720,                      /* character number, location */
                   3198:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   3199:           { 13,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3200:             "\xff\x8f\x81\x31\x20\x06\xc8\x10\x19\x02\x63\xe0\x0f"
                   3201:             "\x8c\x81\x21\x32\x44\x06\xcc\x80\x18\xd8\xff\x03" }  },
1.1       albertel 3202:       /* --- pixel bitmap for cmr160 char#70 F --- */
1.2       albertel 3203:       {  70, 6949,                      /* character number, location */
                   3204:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   3205:           { 12,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3206:             "\xff\xc7\x60\x0c\xc4\x80\x0c\xc9\x10\x8c\xc1\x1f\x8c"
                   3207:             "\xc1\x10\x0c\xc1\x00\x0c\xc0\x00\x7f\x00" }  },
1.1       albertel 3208:       /* --- pixel bitmap for cmr160 char#71 G --- */
1.2       albertel 3209:       {  71, 8116,                      /* character number, location */
                   3210:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   3211:           { 16,   15, 3,53, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3212:             "\x56\x21\x52\x63\x42\x82\x20\xf1\x12\xa1\x2f\x22\xe2"
                   3213:             "\x79\xa2\x20\xf1\x12\x92\x20\x22\x82\x52\x63\x76\x21"
                   3214:             "\x22" }  },
1.1       albertel 3215:       /* --- pixel bitmap for cmr160 char#72 H --- */
1.2       albertel 3216:       {  72, 9281,                      /* character number, location */
                   3217:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   3218:           { 15,   15, 3,26, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3219:             "\x06\x36\xf5\x22\x72\x20\x2b\x20\xf5\x22\x72\x26\x36" }  },
1.1       albertel 3220:       /* --- pixel bitmap for cmr160 char#73 I --- */
1.2       albertel 3221:       {  73, 9952,                      /* character number, location */
                   3222:          15, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   3223:           {  8,   15, 3, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3224:             "\x08\xfc\x32\x38" }  },
1.1       albertel 3225:       /* --- pixel bitmap for cmr160 char#74 J --- */
1.2       albertel 3226:       {  74,10750,                      /* character number, location */
                   3227:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   3228:           { 10,   15, 3,17, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3229:             "\x37\xfa\x62\x22\x42\x22\x32\x45\x45" }  },
1.1       albertel 3230:       /* --- pixel bitmap for cmr160 char#75 K --- */
1.2       albertel 3231:       {  75,11895,                      /* character number, location */
                   3232:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   3233:           { 15,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3234:             "\x3f\x3e\x06\x06\x83\x81\x61\xc0\x18\x60\x04\x30\x03"
                   3235:             "\x58\x03\x1c\x03\x86\x01\x83\x81\x81\xc1\xc0\x60\xc0"
                   3236:             "\xfc\xf8\x01" }  },
1.1       albertel 3237:       /* --- pixel bitmap for cmr160 char#76 L --- */
1.2       albertel 3238:       {  76,12842,                      /* character number, location */
                   3239:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   3240:           { 12,   15, 3,31, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3241:             "\x07\x50\xf7\x22\x80\xf1\x22\x71\x22\x62\x22\x61\x32"
                   3242:             "\x52\x1b\x11" }  },
1.1       albertel 3243:       /* --- pixel bitmap for cmr160 char#77 M --- */
1.2       albertel 3244:       {  77,14116,                      /* character number, location */
                   3245:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   3246:           { 18,   15, 3,62, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3247:             "\x05\x85\xf1\x23\x83\x20\xf1\x21\x12\x61\x12\x20\xf2"
                   3248:             "\x21\x22\x41\x22\x20\xf2\x21\x32\x21\x32\x20\xf2\x21"
                   3249:             "\x43\x42\x25\x31\x36" }  },
1.1       albertel 3250:       /* --- pixel bitmap for cmr160 char#78 N --- */
1.2       albertel 3251:       {  78,15246,                      /* character number, location */
                   3252:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   3253:           { 15,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3254:             "\x1f\x7c\x0e\x08\x0d\x84\x0e\x42\x06\x21\x86\x10\x47"
                   3255:             "\x08\x23\x04\x13\x82\x0b\x81\x85\x80\x43\xc0\x21\xc0"
                   3256:             "\x7c\x40\x00" }  },
1.1       albertel 3257:       /* --- pixel bitmap for cmr160 char#79 O --- */
1.2       albertel 3258:       {  79,16111,                      /* character number, location */
                   3259:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   3260:           { 15,   15, 3,43, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3261:             "\x55\x82\x52\x52\x72\x32\x92\x21\xb1\x1f\x42\xb2\xf1"
                   3262:             "\x12\x92\x10\x22\x72\x52\x52\x85\x51" }  },
1.1       albertel 3263:       /* --- pixel bitmap for cmr160 char#80 P --- */
1.2       albertel 3264:       {  80,17218,                      /* character number, location */
                   3265:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   3266:           { 13,   15, 3,29, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3267:             "\x0a\x52\x62\x10\xf3\x22\x72\x22\x62\x38\x30\xf5\x22"
                   3268:             "\x96\x72" }  },
1.1       albertel 3269:       /* --- pixel bitmap for cmr160 char#81 Q --- */
1.2       albertel 3270:       {  81,18235,                      /* character number, location */
                   3271:          15, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   3272:           { 15,   19, 3,57, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3273:             "\x55\x82\x52\x52\x72\x20\xf1\x12\x92\x1f\x42\xb2\xf1"
                   3274:             "\x12\x92\x10\x22\x23\x22\x53\x33\x85\xe0\x11\xe1\x31"
                   3275:             "\xb4\xb3\x11" }  },
1.1       albertel 3276:       /* --- pixel bitmap for cmr160 char#82 R --- */
1.2       albertel 3277:       {  82,19524,                      /* character number, location */
                   3278:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   3279:           { 15,   15, 3,45, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3280:             "\x09\x82\x52\x40\xf3\x22\x62\x30\x22\x52\x67\x82\x42"
                   3281:             "\x50\xf3\x22\x52\x40\x22\x52\x37\x44\x10" }  },
1.1       albertel 3282:       /* --- pixel bitmap for cmr160 char#83 S --- */
1.2       albertel 3283:       {  83,20569,                      /* character number, location */
                   3284:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   3285:           { 10,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3286:             "\x7c\x19\x36\xd0\x40\x03\x1c\xe0\x07\x3f\xc0\x01\x0c"
                   3287:             "\x70\xc0\x01\x0f\xd6\x0f" }  },
1.1       albertel 3288:       /* --- pixel bitmap for cmr160 char#84 T --- */
1.2       albertel 3289:       {  84,21647,                      /* character number, location */
                   3290:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   3291:           { 14,   15, 3,25, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3292:             "\x0e\x02\x42\x42\x0f\x21\x52\x51\xf8\x62\x60\x38\x30" }  },
1.1       albertel 3293:       /* --- pixel bitmap for cmr160 char#85 U --- */
1.2       albertel 3294:       {  85,22629,                      /* character number, location */
                   3295:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   3296:           { 15,   15, 3,23, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3297:             "\x06\x45\xfa\x22\x81\x20\x32\x61\x72\x41\x95\x58" }  },
1.1       albertel 3298:       /* --- pixel bitmap for cmr160 char#86 V --- */
1.2       albertel 3299:       {  86,23617,                      /* character number, location */
                   3300:          15, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   3301:           { 17,   15, 3,57, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3302:             "\x07\x46\xf1\x32\x81\x30\x33\x62\x30\xf1\x42\x61\x40"
                   3303:             "\xf1\x52\x41\x50\x53\x22\x50\xf1\x62\x21\x60\xf2\x73"
                   3304:             "\x70\x81\x81" }  },
1.1       albertel 3305:       /* --- pixel bitmap for cmr160 char#87 W --- */
1.2       albertel 3306:       {  87,25014,                      /* character number, location */
                   3307:          15, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   3308:           { 23,   15, 3,57, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3309:             "\x06\x36\x26\x22\x72\x62\x20\xf2\x32\x51\x12\x51\x30"
                   3310:             "\xf2\x42\x31\x32\x31\x40\xf3\x52\x11\x52\x11\x50\xf2"
                   3311:             "\x62\x72\x61" }  },
1.1       albertel 3312:       /* --- pixel bitmap for cmr160 char#88 X --- */
1.2       albertel 3313:       {  88,26135,                      /* character number, location */
                   3314:          15, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   3315:           { 17,   15, 3,58, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3316:             "\x16\x36\x43\x52\x82\x51\xa2\x31\xc2\x12\xc2\x11\xe2"
                   3317:             "\x80\xf1\x73\x70\x61\x22\xb2\x32\xa1\x42\x91\x62\x72"
                   3318:             "\x72\x36\x47" }  },
1.1       albertel 3319:       /* --- pixel bitmap for cmr160 char#89 Y --- */
1.2       albertel 3320:       {  89,27277,                      /* character number, location */
                   3321:          15, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   3322:           { 17,   15, 3,43, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3323:             "\x07\x46\x32\x81\x72\x62\x73\x51\x92\x42\xa2\x31\xb3"
                   3324:             "\x11\xd2\x11\x60\xf5\x82\x70\x66\x51" }  },
1.1       albertel 3325:       /* --- pixel bitmap for cmr160 char#90 Z --- */
1.2       albertel 3326:       {  90,28316,                      /* character number, location */
                   3327:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   3328:           { 12,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3329:             "\xfe\xef\x60\x06\x27\x30\x82\x01\x1c\xc0\x00\x06\x30"
                   3330:             "\x80\x83\x18\xc8\x80\x0e\x6c\xe0\xff\x0f" }  },
1.1       albertel 3331:       /* --- pixel bitmap for cmr160 char#91 [ --- */
1.2       albertel 3332:       {  91,100130,                     /* character number, location */
                   3333:          17, 2,   -6, 2,      /* topleft row,col, and botleft row,col */
                   3334:           {  4,   23, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3335:             "\x04\x0f\xe1\x3f\x51\x34" }  },
1.1       albertel 3336:       /* --- pixel bitmap for cmr160 char#92 (noname) --- */
1.2       albertel 3337:       {  92,118659,                     /* character number, location */
                   3338:          15, 4,    9, 4,      /* topleft row,col, and botleft row,col */
                   3339:           {  6,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3340:             "\xa2\x18\x45\xf3\x0c" }  },
1.1       albertel 3341:       /* --- pixel bitmap for cmr160 char#93 ] --- */
1.2       albertel 3342:       {  93,100824,                     /* character number, location */
                   3343:          17, 0,   -6, 0,      /* topleft row,col, and botleft row,col */
                   3344:           {  5,   23, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3345:             "\x05\xfe\x41\xf5\x41\x05" }  },
1.1       albertel 3346:       /* --- pixel bitmap for cmr160 char#94 \^ --- */
1.2       albertel 3347:       {  94,106997,                     /* character number, location */
                   3348:          15, 3,   12, 3,      /* topleft row,col, and botleft row,col */
                   3349:           {  5,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3350:             "\x44\x45" }  },
1.1       albertel 3351:       /* --- pixel bitmap for cmr160 char#95 (noname) --- */
1.2       albertel 3352:       {  95,107464,                     /* character number, location */
                   3353:          16, 2,   14, 2,      /* topleft row,col, and botleft row,col */
                   3354:           {  2,    2, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3355:             "\x0f" }  },
1.1       albertel 3356:       /* --- pixel bitmap for cmr160 char#96 (noname) --- */
1.2       albertel 3357:       {  96,101438,                     /* character number, location */
                   3358:          15, 2,    9, 2,      /* topleft row,col, and botleft row,col */
                   3359:           {  2,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3360:             "\x5a\x0f" }  },
1.1       albertel 3361:       /* --- pixel bitmap for cmr160 char#97 a --- */
1.2       albertel 3362:       {  97,29456,                      /* character number, location */
                   3363:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   3364:           { 10,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3365:             "\x3c\x98\x01\x0c\x30\xfc\x18\x33\xcc\xb0\xe3\x72\x07" }  },
1.1       albertel 3366:       /* --- pixel bitmap for cmr160 char#98 b --- */
1.2       albertel 3367:       {  98,30458,                      /* character number, location */
                   3368:          15, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   3369:           { 11,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3370:             "\x0f\x60\x00\x03\x18\xc0\x00\x76\x70\x8c\x41\x0c\x66"
                   3371:             "\x30\x83\x19\xcc\x20\x8e\x90\x03" }  },
1.1       albertel 3372:       /* --- pixel bitmap for cmr160 char#99 c --- */
1.2       albertel 3373:       {  99,31233,                      /* character number, location */
                   3374:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   3375:           {  8,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3376:             "\x78\xc4\x02\x03\x03\x03\x03\x02\x84\x78" }  },
1.1       albertel 3377:       /* --- pixel bitmap for cmr160 char#100 d --- */
1.2       albertel 3378:       { 100,32224,                      /* character number, location */
                   3379:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   3380:           { 11,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3381:             "\xe0\x01\x0c\x60\x00\x03\x18\xdc\x10\x47\x30\x83\x19"
                   3382:             "\xcc\x60\x06\x23\x18\xe3\xe0\x1e" }  },
1.1       albertel 3383:       /* --- pixel bitmap for cmr160 char#101 e --- */
1.2       albertel 3384:       { 101,32984,                      /* character number, location */
                   3385:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   3386:           {  8,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3387:             "\x3c\x66\xc2\xc3\xff\x03\x03\x02\x86\x78" }  },
1.1       albertel 3388:       /* --- pixel bitmap for cmr160 char#102 f --- */
1.2       albertel 3389:       { 102,33805,                      /* character number, location */
                   3390:          15, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   3391:           {  9,   15, 3,21, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3392:             "\x44\x42\x22\xf2\x22\x57\x20\xf7\x22\x56\x32" }  },
1.1       albertel 3393:       /* --- pixel bitmap for cmr160 char#103 g --- */
1.2       albertel 3394:       { 103,35038,                      /* character number, location */
                   3395:          10, 1,   -5, 1,      /* topleft row,col, and botleft row,col */
                   3396:           { 10,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3397:             "\xbc\x9b\x39\xcc\x30\xc3\x98\xe1\xc3\x00\x7e\xf8\x33"
                   3398:             "\xd8\x60\x83\x19\xc3\x07" }  },
1.1       albertel 3399:       /* --- pixel bitmap for cmr160 char#104 h --- */
1.2       albertel 3400:       { 104,36015,                      /* character number, location */
                   3401:          15, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   3402:           { 12,   15, 3,30, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3403:             "\x04\x80\xf3\x22\x80\x22\x14\x53\x32\x20\xf6\x22\x42"
                   3404:             "\x26\x15" }  },
1.1       albertel 3405:       /* --- pixel bitmap for cmr160 char#105 i --- */
1.2       albertel 3406:       { 105,36730,                      /* character number, location */
                   3407:          16, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   3408:           {  6,   16, 3,18, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3409:             "\xf1\x22\x20\xf3\x64\x20\xf7\x22\x26" }  },
1.1       albertel 3410:       /* --- pixel bitmap for cmr160 char#106 j --- */
1.2       albertel 3411:       { 106,37498,                      /* character number, location */
                   3412:          16,-2,   -4,-2,      /* topleft row,col, and botleft row,col */
                   3413:           {  7,   20, 3,19, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3414:             "\xf1\x52\xf3\x70\x34\xfa\x52\x02\x28\x20" }  },
1.1       albertel 3415:       /* --- pixel bitmap for cmr160 char#107 k --- */
1.2       albertel 3416:       { 107,38588,                      /* character number, location */
                   3417:          15, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   3418:           { 12,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3419:             "\x0f\xc0\x00\x0c\xc0\x00\x0c\xc0\x7c\x8c\xc1\x04\x6c"
                   3420:             "\xc0\x07\xcc\xc0\x1c\x8c\xc1\x30\x9f\x0f" }  },
1.1       albertel 3421:       /* --- pixel bitmap for cmr160 char#108 l --- */
1.2       albertel 3422:       { 108,39207,                      /* character number, location */
                   3423:          15, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   3424:           {  6,   15, 3,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3425:             "\x04\x20\xfc\x22\x26" }  },
1.1       albertel 3426:       /* --- pixel bitmap for cmr160 char#109 m --- */
1.2       albertel 3427:       { 109,40516,                      /* character number, location */
                   3428:          10, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   3429:           { 18,   10, 3,28, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3430:             "\x04\x14\x24\x53\x33\x32\x20\xf6\x22\x42\x42\x26\x15"
                   3431:             "\x15" }  },
1.1       albertel 3432:       /* --- pixel bitmap for cmr160 char#110 n --- */
1.2       albertel 3433:       { 110,41501,                      /* character number, location */
                   3434:          10, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   3435:           { 12,   10, 3,20, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3436:             "\x04\x14\x53\x32\x20\xf6\x22\x42\x26\x15" }  },
1.1       albertel 3437:       /* --- pixel bitmap for cmr160 char#111 o --- */
1.2       albertel 3438:       { 111,42198,                      /* character number, location */
                   3439:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   3440:           {  9,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3441:             "\x38\x8c\x09\x1a\x3c\x78\xf0\x60\x41\xc6\x70\x00" }  },
1.1       albertel 3442:       /* --- pixel bitmap for cmr160 char#112 p --- */
1.2       albertel 3443:       { 112,43264,                      /* character number, location */
                   3444:          10, 0,   -4, 0,      /* topleft row,col, and botleft row,col */
                   3445:           { 11,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3446:             "\xef\xe0\x18\x83\x18\xcc\x60\x06\x33\x98\x61\x1c\x61"
                   3447:             "\x07\x03\x18\xc0\x80\x1f\x00" }  },
1.1       albertel 3448:       /* --- pixel bitmap for cmr160 char#113 q --- */
1.2       albertel 3449:       { 113,44268,                      /* character number, location */
                   3450:          10, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   3451:           { 12,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3452:             "\x78\x42\x38\x06\x33\x30\x03\x33\x30\x03\x63\x30\x84"
                   3453:             "\x83\x37\x00\x03\x30\x00\x03\xfc" }  },
1.1       albertel 3454:       /* --- pixel bitmap for cmr160 char#114 r --- */
1.2       albertel 3455:       { 114,45127,                      /* character number, location */
                   3456:          10, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   3457:           {  9,   10, 3,19, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3458:             "\x04\x13\x33\x22\x23\x40\xf5\x22\x56\x30" }  },
1.1       albertel 3459:       /* --- pixel bitmap for cmr160 char#115 s --- */
1.2       albertel 3460:       { 115,46060,                      /* character number, location */
                   3461:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   3462:           {  7,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3463:             "\xfe\xe1\xf0\xe0\xe3\x87\xc3\xa3\x0e" }  },
1.1       albertel 3464:       /* --- pixel bitmap for cmr160 char#116 t --- */
1.2       albertel 3465:       { 116,46885,                      /* character number, location */
                   3466:          14, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   3467:           {  8,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3468:             "\x08\x08\x0c\x0c\x7f\x0c\x0c\x0c\x0c\x0c\x8c\x8c\x8c"
                   3469:             "\x78" }  },
1.1       albertel 3470:       /* --- pixel bitmap for cmr160 char#117 u --- */
1.2       albertel 3471:       { 117,47808,                      /* character number, location */
                   3472:          10, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   3473:           { 12,   10, 3,22, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3474:             "\x04\x24\x20\xf6\x22\x42\x20\x22\x33\x54\x14" }  },
1.1       albertel 3475:       /* --- pixel bitmap for cmr160 char#118 v --- */
1.2       albertel 3476:       { 118,48674,                      /* character number, location */
                   3477:          10, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   3478:           { 12,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3479:             "\x1f\xcf\x20\x18\x81\x11\x18\x01\x0b\xb0\x00\x06\x60"
                   3480:             "\x00\x06" }  },
1.1       albertel 3481:       /* --- pixel bitmap for cmr160 char#119 w --- */
1.2       albertel 3482:       { 119,49923,                      /* character number, location */
                   3483:          10, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   3484:           { 16,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3485:             "\x9f\xf3\x8c\x23\x8c\x23\xd8\x13\x58\x16\x58\x16\x78"
                   3486:             "\x1e\x30\x0c\x30\x0c\x30\x0c" }  },
1.1       albertel 3487:       /* --- pixel bitmap for cmr160 char#120 x --- */
1.2       albertel 3488:       { 120,50892,                      /* character number, location */
                   3489:          10, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   3490:           { 12,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3491:             "\x9f\x8f\x11\x98\x00\x0f\x60\x00\x06\xd0\x80\x19\x88"
                   3492:             "\xf3\xf9" }  },
1.1       albertel 3493:       /* --- pixel bitmap for cmr160 char#121 y --- */
1.2       albertel 3494:       { 121,51955,                      /* character number, location */
                   3495:          10, 0,   -4, 0,      /* topleft row,col, and botleft row,col */
                   3496:           { 12,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3497:             "\x1f\xcf\x20\x18\x81\x11\x18\x01\x0b\xb0\x00\x06\x60"
                   3498:             "\x00\x06\x20\x00\x02\x13\xe0\x00" }  },
1.1       albertel 3499:       /* --- pixel bitmap for cmr160 char#122 z --- */
1.2       albertel 3500:       { 122,52914,                      /* character number, location */
                   3501:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   3502:           {  8,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3503:             "\xff\x63\x61\x31\x18\x98\x8c\x86\xc6\xff" }  },
1.1       albertel 3504:       /* --- pixel bitmap for cmr160 char#123 (noname) --- */
1.2       albertel 3505:       { 123,119267,                     /* character number, location */
                   3506:           7, 0,    6, 0,      /* topleft row,col, and botleft row,col */
                   3507:           { 11,    1, 3, 2, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3508:             "\x0b" }  },
1.1       albertel 3509:       /* --- pixel bitmap for cmr160 char#124 (noname) --- */
1.2       albertel 3510:       { 124,120087,                     /* character number, location */
                   3511:           7, 0,    6, 0,      /* topleft row,col, and botleft row,col */
                   3512:           { 22,    1, 3, 4, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3513:             "\x0e\x08" }  },
1.1       albertel 3514:       /* --- pixel bitmap for cmr160 char#125 (noname) --- */
1.2       albertel 3515:       { 125,108141,                     /* character number, location */
                   3516:          15, 3,   11, 3,      /* topleft row,col, and botleft row,col */
                   3517:           {  6,    4, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3518:             "\xf3\x1c\x45" }  },
1.1       albertel 3519:       /* --- pixel bitmap for cmr160 char#126 \~ --- */
1.2       albertel 3520:       { 126,108825,                     /* character number, location */
                   3521:          15, 2,   12, 2,      /* topleft row,col, and botleft row,col */
                   3522:           {  7,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3523:             "\x44\x5f\x04" }  },
1.1       albertel 3524:       /* --- pixel bitmap for cmr160 char#127 (noname) --- */
1.2       albertel 3525:       { 127,109506,                     /* character number, location */
                   3526:          16, 2,   14, 2,      /* topleft row,col, and botleft row,col */
                   3527:           {  7,    2, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3528:             "\xe3\x31" }  },
1.1       albertel 3529:       /* --- trailer  --- */
1.2       albertel 3530:       { -99, -999,  0,0,0,0, { 0,0,0,0, (pixbyte *)"\0" }  }
1.1       albertel 3531:    } ;
                   3532: 
                   3533: 
1.2       albertel 3534: /* --- size=5 for .180gf ---
                   3535:  * mf '\mode=preview; mag=magstep(-14.65037297372839890542); input cmr10'
                   3536:  * --------------------------------------------------------------------- */
1.1       albertel 3537: /* --- fontdef for cmr180 --- */
                   3538: static	chardef  cmr180[] =
                   3539:    {
1.2       albertel 3540:       /* --- pixel bitmap for cmr180 char#0 \Gamma --- */
                   3541:       {   0,54233,                      /* character number, location */
                   3542:          17, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   3543:           { 15,   17, 3,27, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3544:             "\x0e\x42\x72\x42\x81\x42\x82\xf1\x32\x91\xf9\x32\xa8"
                   3545:             "\x71" }  },
                   3546:       /* --- pixel bitmap for cmr180 char#1 \Delta --- */
                   3547:       {   1,55144,                      /* character number, location */
                   3548:          18, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   3549:           { 19,   18, 3,70, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3550:             "\x91\x90\xf1\x83\x80\xf1\x71\x22\x70\xf1\x61\x42\x60"
                   3551:             "\xf1\x51\x62\x50\xf1\x41\x82\x40\xf1\x31\xa2\x30\x21"
                   3552:             "\xb3\x41\xc2\x31\xd3\x2e\x03\x1e\x05" }  },
                   3553:       /* --- pixel bitmap for cmr180 char#2 \Theta --- */
                   3554:       {   2,56287,                      /* character number, location */
                   3555:          18, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   3556:           { 17,   19, 3,77, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3557:             "\x65\xa2\x52\x72\x72\x52\x92\x20\xf1\x12\xb2\x12\xd4"
                   3558:             "\x21\x71\x22\x0f\x12\x29\x22\x02\x21\x71\x22\x0f\x12"
                   3559:             "\xd2\xf1\x12\xb2\x10\x22\x92\x52\x72\x72\x52\xa5\x60" }  },
                   3560:       /* --- pixel bitmap for cmr180 char#3 \Lambda --- */
                   3561:       {   3,57259,                      /* character number, location */
                   3562:          18, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   3563:           { 15,   18, 3,54, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3564:             "\xf1\x71\x70\xf2\x63\x60\xf2\x51\x22\x50\x41\x33\x40"
                   3565:             "\xf2\x41\x42\x40\xf2\x31\x62\x30\x21\x82\x42\x72\x25"
                   3566:             "\x46" }  },
                   3567:       /* --- pixel bitmap for cmr180 char#4 \Xi --- */
                   3568:       {   4,58642,                      /* character number, location */
                   3569:          17, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   3570:           { 15,   17, 3,52, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3571:             "\xf1\x0e\x01\x0f\x11\xd1\xf1\xe0\x10\x31\x71\x30\xf1"
                   3572:             "\x39\x30\x31\x71\x30\xf2\xe0\x1f\x11\xd1\x0f\x1e\x01" }  },
                   3573:       /* --- pixel bitmap for cmr180 char#5 \Pi --- */
                   3574:       {   5,59799,                      /* character number, location */
                   3575:          17, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   3576:           { 19,   17, 3,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3577:             "\x0e\x05\xfe\x32\x92\x38\x38" }  },
                   3578:       /* --- pixel bitmap for cmr180 char#6 \Sigma --- */
                   3579:       {   6,60934,                      /* character number, location */
                   3580:          17, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   3581:           { 16,   17, 3,63, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3582:             "\x0e\x01\x22\x93\x23\xa1\x32\xa2\x32\xa1\x33\x91\x42"
                   3583:             "\xe0\x12\xe0\x12\xe1\xe1\xe1\xa1\x31\xb1\x31\xa2\x21"
                   3584:             "\xb1\x21\xa3\x1e\x01\x12" }  },
                   3585:       /* --- pixel bitmap for cmr180 char#7 \Upsilon --- */
                   3586:       {   7,62038,                      /* character number, location */
                   3587:          18, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   3588:           { 17,   18, 3,35, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3589:             "\x24\x54\x36\x36\x12\x42\x21\x43\x61\x12\x52\x63\x61"
                   3590:             "\xfb\x82\x70\x58\x41" }  },
                   3591:       /* --- pixel bitmap for cmr180 char#8 \Phi --- */
                   3592:       {   8,63084,                      /* character number, location */
                   3593:          17, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   3594:           { 16,   17, 3,57, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3595:             "\x48\x40\xf2\x72\x70\x48\x62\x32\x32\x32\x42\x42\x1f"
                   3596:             "\x22\x52\x52\x12\x42\x42\x32\x32\x32\x68\x40\xf2\x72"
                   3597:             "\x70\x48\x43" }  },
                   3598:       /* --- pixel bitmap for cmr180 char#9 \Psi --- */
                   3599:       {   9,64209,                      /* character number, location */
                   3600:          17, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   3601:           { 17,   17, 3,55, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3602:             "\x58\x40\xf1\x82\x73\x52\x43\xf4\x22\x42\x32\x20\x31"
                   3603:             "\x42\x32\x52\x32\x22\x72\x22\x12\xa6\x50\xf2\x82\x70"
                   3604:             "\x58\x48" }  },
                   3605:       /* --- pixel bitmap for cmr180 char#10 \Omega --- */
                   3606:       {  10,65380,                      /* character number, location */
                   3607:          18, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   3608:           { 16,   18, 3,61, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3609:             "\x56\x82\x62\x52\x82\x32\xa2\x1f\x42\xc2\xf1\x12\xa2"
                   3610:             "\x10\x22\x82\x51\x81\x71\x61\x41\x31\x61\x32\x41\x41"
                   3611:             "\x41\xf1\x15\x45\x11" }  },
                   3612:       /* --- pixel bitmap for cmr180 char#11 \ff --- */
                   3613:       {  11,111599,                     /* character number, location */
                   3614:          17, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   3615:           { 16,   17, 3,35, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3616:             "\x65\x13\x52\x43\x12\xf3\x32\x52\x4e\x01\x10\xf8\x32"
                   3617:             "\x52\x40\x15\x35\x21" }  },
                   3618:       /* --- pixel bitmap for cmr180 char#12 \fi --- */
                   3619:       {  12,112779,                     /* character number, location */
                   3620:          17, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   3621:           { 13,   17, 3,32, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3622:             "\x55\x72\x32\x52\x42\x20\xf2\x32\x8b\x20\xf8\x32\x42"
                   3623:             "\x20\x15\x25" }  },
                   3624:       /* --- pixel bitmap for cmr180 char#13 \fl --- */
                   3625:       {  13,113949,                     /* character number, location */
                   3626:          17, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   3627:           { 13,   17, 3,30, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3628:             "\x56\x62\x32\x20\xf3\x32\x42\x2b\x20\xf8\x32\x42\x20"
                   3629:             "\x15\x25" }  },
                   3630:       /* --- pixel bitmap for cmr180 char#14 \ffi --- */
                   3631:       {  14,115570,                     /* character number, location */
                   3632:          17, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   3633:           { 20,   17, 3,46, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3634:             "\x65\x15\x72\x43\x32\x52\x52\x42\x20\xf2\x32\x52\x8e"
                   3635:             "\x04\x20\xf8\x32\x52\x42\x20\x15\x34\x25" }  },
                   3636:       /* --- pixel bitmap for cmr180 char#15 \ffl --- */
                   3637:       {  15,117217,                     /* character number, location */
                   3638:          17, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   3639:           { 20,   17, 3,40, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3640:             "\x65\x16\x62\x43\x32\x20\xf3\x32\x52\x42\x2e\x04\x20"
                   3641:             "\xf8\x32\x52\x42\x20\x16\x1c" }  },
                   3642:       /* --- pixel bitmap for cmr180 char#16 \imath --- */
                   3643:       {  16,79369,                      /* character number, location */
                   3644:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   3645:           {  6,   11, 3,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3646:             "\x04\x20\xf8\x22\x26" }  },
                   3647:       /* --- pixel bitmap for cmr180 char#17 \jmath --- */
                   3648:       {  17,80043,                      /* character number, location */
                   3649:          11,-1,   -5,-1,      /* topleft row,col, and botleft row,col */
                   3650:           {  6,   16, 3,13, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3651:             "\x24\xfc\x42\x02\x21\x23\x23" }  },
                   3652:       /* --- pixel bitmap for cmr180 char#18 \gravesym --- */
                   3653:       {  18,102844,                     /* character number, location */
                   3654:          17, 3,   13, 3,      /* topleft row,col, and botleft row,col */
                   3655:           {  4,    4, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3656:             "\x73\xc6" }  },
                   3657:       /* --- pixel bitmap for cmr180 char#19 \acutesym --- */
                   3658:       {  19,103415,                     /* character number, location */
                   3659:          17, 5,   13, 5,      /* topleft row,col, and botleft row,col */
                   3660:           {  4,    4, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3661:             "\xec\x36" }  },
                   3662:       /* --- pixel bitmap for cmr180 char#20 \checksym --- */
                   3663:       {  20,104042,                     /* character number, location */
                   3664:          16, 3,   14, 3,      /* topleft row,col, and botleft row,col */
                   3665:           {  6,    2, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3666:             "\xb3\x07" }  },
                   3667:       /* --- pixel bitmap for cmr180 char#21 \brevesym --- */
                   3668:       {  21,104658,                     /* character number, location */
                   3669:          17, 2,   14, 2,      /* topleft row,col, and botleft row,col */
                   3670:           {  8,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3671:             "\x81\xc3\x3c" }  },
1.1       albertel 3672:       /* --- pixel bitmap for cmr180 char#22 (noname) --- */
1.2       albertel 3673:       {  22,105238,                     /* character number, location */
                   3674:          15, 2,   14, 2,      /* topleft row,col, and botleft row,col */
                   3675:           {  8,    1, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3676:             "\xff" }  },
1.1       albertel 3677:       /* --- pixel bitmap for cmr180 char#23 (noname) --- */
1.2       albertel 3678:       {  23,106015,                     /* character number, location */
                   3679:          18, 7,   14, 7,      /* topleft row,col, and botleft row,col */
                   3680:           {  5,    4, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3681:             "\x2e\x46\x07" }  },
1.1       albertel 3682:       /* --- pixel bitmap for cmr180 char#24 (noname) --- */
1.2       albertel 3683:       {  24,106707,                     /* character number, location */
                   3684:          -1, 3,   -6, 3,      /* topleft row,col, and botleft row,col */
                   3685:           {  6,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3686:             "\x1c\x0c\xfb\x01" }  },
1.1       albertel 3687:       /* --- pixel bitmap for cmr180 char#25 \ss --- */
1.2       albertel 3688:       {  25,81130,                      /* character number, location */
                   3689:          17, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   3690:           { 11,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3691:             "\xf0\xc1\x18\x83\x19\xcc\x60\x86\xbd\x83\x31\x0c\x63"
                   3692:             "\x18\x83\x19\xcc\x60\x06\x33\x99\x79\x8f\x01" }  },
1.1       albertel 3693:       /* --- pixel bitmap for cmr180 char#26 \ae --- */
1.2       albertel 3694:       {  26,82481,                      /* character number, location */
                   3695:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   3696:           { 16,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3697:             "\x7c\x3c\xc6\x62\x80\xc3\x80\xc1\xf0\xff\x8c\x01\x82"
                   3698:             "\x01\x83\x01\x83\x83\xc6\x46\x7c\x3c" }  },
1.1       albertel 3699:       /* --- pixel bitmap for cmr180 char#27 \oe --- */
1.2       albertel 3700:       {  27,83607,                      /* character number, location */
                   3701:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   3702:           { 17,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3703:             "\x78\x78\x08\x89\x19\x1e\x1e\x18\x3c\xf0\x7f\x60\xc0"
                   3704:             "\xc0\x80\x81\x01\x86\x07\x09\x19\xe1\xe1\x01" }  },
1.1       albertel 3705:       /* --- pixel bitmap for cmr180 char#28 (noname) --- */
1.2       albertel 3706:       {  28,84431,                      /* character number, location */
                   3707:          13, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   3708:           { 10,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3709:             "\x00\x01\x84\x0f\x21\x42\x8d\x3d\xf2\xcc\x13\x2f\xac"
                   3710:             "\x10\x21\x7c\x08\x20\x00" }  },
1.1       albertel 3711:       /* --- pixel bitmap for cmr180 char#29 \AE --- */
1.2       albertel 3712:       {  29,86217,                      /* character number, location */
                   3713:          17, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   3714:           { 20,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3715:             "\xe0\xff\x07\x68\x60\x80\x06\x04\x64\xc0\x40\x06\x08"
                   3716:             "\x64\x88\x20\x86\x00\x62\x0c\xe0\xff\x00\x61\x0c\x10"
                   3717:             "\x86\x08\x61\x88\x08\x06\x88\x60\x40\x08\x06\xc4\x60"
                   3718:             "\x60\x9f\xff\x07" }  },
1.1       albertel 3719:       /* --- pixel bitmap for cmr180 char#30 \OE --- */
1.2       albertel 3720:       {  30,87929,                      /* character number, location */
                   3721:          18, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   3722:           { 23,   19, 3,103, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   3723:             "\x65\xe0\x22\x5b\x42\x63\x62\x32\x73\x71\x22\x83\x72"
                   3724:             "\x12\x83\x83\x93\x51\x23\xa2\x51\x32\xa2\x42\x32\xa8"
                   3725:             "\x32\xa2\x42\x32\xa2\x51\x23\x93\x51\x21\x12\x83\x81"
                   3726:             "\x12\x83\x71\x32\x73\x71\x42\x63\x62\x53\x4b\x75\xc1" }  },
1.1       albertel 3727:       /* --- pixel bitmap for cmr180 char#31 (noname) --- */
1.2       albertel 3728:       {  31,88931,                      /* character number, location */
                   3729:          18, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   3730:           { 17,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3731:             "\xc0\x47\x60\xf0\x20\x80\x60\x80\x63\x80\xcd\x00\xd9"
                   3732:             "\x00\xe1\x01\xc1\x03\x82\x07\x02\x0f\x02\x1e\x04\x3c"
                   3733:             "\x04\xd8\x04\x98\x0d\x30\x0e\x30\x08\x20\x78\x30\x10"
                   3734:             "\x1f\x00" }  },
1.1       albertel 3735:       /* --- pixel bitmap for cmr180 char#32 (noname) --- */
1.2       albertel 3736:       {  32,107207,                     /* character number, location */
                   3737:          10, 0,    7, 0,      /* topleft row,col, and botleft row,col */
                   3738:           {  6,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3739:             "\x20\x27\x00" }  },
1.1       albertel 3740:       /* --- pixel bitmap for cmr180 char#33 ! --- */
1.2       albertel 3741:       {  33,89602,                      /* character number, location */
                   3742:          18, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   3743:           {  3,   18, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3744:             "\xfa\xff\x5b\x92\x04\x40\x17" }  },
1.1       albertel 3745:       /* --- pixel bitmap for cmr180 char#34 " --- */
1.2       albertel 3746:       {  34,118176,                     /* character number, location */
                   3747:          17, 1,    9, 1,      /* topleft row,col, and botleft row,col */
                   3748:           {  8,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3749:             "\x42\xe7\xc6\x84\x84\x84\x42\x21" }  },
1.1       albertel 3750:       /* --- pixel bitmap for cmr180 char#35 # --- */
1.2       albertel 3751:       {  35,91072,                      /* character number, location */
                   3752:          17, 1,   -5, 1,      /* topleft row,col, and botleft row,col */
                   3753:           { 19,   22, 3,59, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3754:             "\xf3\x91\x51\x30\xf2\x81\x51\x4e\x05\xf1\x71\x51\x50"
                   3755:             "\xf2\x61\x51\x6e\x05\xf1\x51\x51\x70\xf3\x41\x51\x80"
                   3756:             "\xf1\x31\x51\x91" }  },
1.1       albertel 3757:       /* --- pixel bitmap for cmr180 char#36 $ --- */
1.2       albertel 3758:       {  36,75631,                      /* character number, location */
                   3759:          19, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   3760:           { 10,   20, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3761:             "\x20\x80\x80\x87\x69\x20\x86\x18\x72\x08\x26\xf8\x80"
                   3762:             "\x0f\x78\x20\x83\x38\x62\x88\x22\x99\x82\x07\x08" }  },
1.1       albertel 3763:       /* --- pixel bitmap for cmr180 char#37 % --- */
1.2       albertel 3764:       {  37,92321,                      /* character number, location */
                   3765:          19, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   3766:           { 19,   20, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3767:             "\x1c\x80\x30\x01\x82\x38\x18\x86\x7e\x30\x04\x81\x21"
                   3768:             "\x08\x0c\x21\x60\x08\x01\x22\x04\x30\x11\x00\x87\x70"
                   3769:             "\x00\xc2\x04\x08\x42\x40\x18\x02\xc1\x10\x08\x86\x20"
                   3770:             "\x30\x84\x00\x21\x04\x98\x10\x80\x03" }  },
1.1       albertel 3771:       /* --- pixel bitmap for cmr180 char#38 & --- */
1.2       albertel 3772:       {  38,76909,                      /* character number, location */
                   3773:          18, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   3774:           { 17,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3775:             "\xe0\x00\x20\x02\x60\x04\xc0\x08\x80\x11\x00\x13\x00"
                   3776:             "\x26\x00\x2c\xfc\x30\x60\x60\x40\xe0\x41\x20\x83\x20"
                   3777:             "\x8e\x60\x18\xc1\x60\x81\x81\x81\x03\x07\x0d\x19\xf1"
                   3778:             "\xe1\x01" }  },
                   3779:       /* --- pixel bitmap for cmr180 char#39 ' --- */
                   3780:       {  39,92997,                      /* character number, location */
                   3781:          17, 2,    9, 2,      /* topleft row,col, and botleft row,col */
                   3782:           {  3,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3783:             "\xba\x49\x29" }  },
1.1       albertel 3784:       /* --- pixel bitmap for cmr180 char#40 ( --- */
1.2       albertel 3785:       {  40,93575,                      /* character number, location */
                   3786:          19, 3,   -6, 3,      /* topleft row,col, and botleft row,col */
                   3787:           {  6,   25, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3788:             "\x20\x84\x30\x84\x61\x08\xc3\x30\x0c\xc3\x30\x0c\x83"
1.1       albertel 3789:             "\x60\x18\x04\x83\x40\x20" }  },
                   3790:       /* --- pixel bitmap for cmr180 char#41 ) --- */
1.2       albertel 3791:       {  41,94188,                      /* character number, location */
                   3792:          19, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   3793:           {  6,   25, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3794:             "\x81\x40\x30\x08\x86\x41\x30\x0c\xc3\x30\x0c\xc3\x30"
1.1       albertel 3795:             "\x84\x61\x08\x43\x08\x01" }  },
                   3796:       /* --- pixel bitmap for cmr180 char#42 * --- */
1.2       albertel 3797:       {  42,94825,                      /* character number, location */
                   3798:          19, 1,    8, 1,      /* topleft row,col, and botleft row,col */
                   3799:           {  9,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3800:             "\x30\x60\xc8\xb4\xcd\x0f\x06\x3f\xdb\x32\x61\xc0\x00" }  },
1.1       albertel 3801:       /* --- pixel bitmap for cmr180 char#43 + --- */
1.2       albertel 3802:       {  43,95519,                      /* character number, location */
                   3803:          15, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   3804:           { 17,   17, 3,13, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3805:             "\xf7\x81\x8e\x03\xf7\x81\x82" }  },
1.1       albertel 3806:       /* --- pixel bitmap for cmr180 char#44 (noname) --- */
1.2       albertel 3807:       {  44,96108,                      /* character number, location */
                   3808:           3, 2,   -5, 2,      /* topleft row,col, and botleft row,col */
                   3809:           {  3,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3810:             "\xba\x49\x29" }  },
1.1       albertel 3811:       /* --- pixel bitmap for cmr180 char#45 (noname) --- */
1.2       albertel 3812:       {  45,118687,                     /* character number, location */
                   3813:           6, 0,    4, 0,      /* topleft row,col, and botleft row,col */
                   3814:           {  7,    2, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3815:             "\xff\x3f" }  },
1.1       albertel 3816:       /* --- pixel bitmap for cmr180 char#46 (noname) --- */
1.2       albertel 3817:       {  46,96577,                      /* character number, location */
                   3818:           3, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   3819:           {  3,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3820:             "\xba\x00" }  },
1.1       albertel 3821:       /* --- pixel bitmap for cmr180 char#47 / --- */
1.2       albertel 3822:       {  47,97085,                      /* character number, location */
                   3823:          19, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   3824:           { 10,   25, 3,55, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3825:             "\xf1\x91\xf2\x81\x10\xf1\x71\x20\xf2\x61\x30\xf1\x51"
                   3826:             "\x40\xf2\x41\x50\xf2\x31\x60\xf1\x21\x70\xf2\x11\x8f"
                   3827:             "\x11\x91" }  },
1.1       albertel 3828:       /* --- pixel bitmap for cmr180 char#48 0 --- */
1.2       albertel 3829:       {  48,66116,                      /* character number, location */
                   3830:          17, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   3831:           { 10,   18, 3,35, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3832:             "\x34\x52\x22\x32\x42\x21\x61\x1f\x92\x62\x11\x61\x22"
                   3833:             "\x42\x32\x22\x54\x31" }  },
1.1       albertel 3834:       /* --- pixel bitmap for cmr180 char#49 1 --- */
1.2       albertel 3835:       {  49,66906,                      /* character number, location */
                   3836:          17, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   3837:           {  8,   17, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3838:             "\x32\x44\x31\x22\x30\xfc\x32\x38" }  },
1.1       albertel 3839:       /* --- pixel bitmap for cmr180 char#50 2 --- */
1.2       albertel 3840:       {  50,67883,                      /* character number, location */
                   3841:          17, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   3842:           { 10,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3843:             "\x78\x10\x22\x58\xc0\x01\x0f\x0c\x30\xc0\x80\x01\x02"
                   3844:             "\x04\x08\x10\x20\x48\xa0\x7f\xff\x01" }  },
1.1       albertel 3845:       /* --- pixel bitmap for cmr180 char#51 3 --- */
1.2       albertel 3846:       {  51,68921,                      /* character number, location */
                   3847:          17, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   3848:           { 10,   18, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3849:             "\x78\x10\x23\x98\x61\x86\x01\x06\x08\x10\x78\x00\x02"
                   3850:             "\x18\xc0\x03\x0f\x1c\xb0\x60\x84\xe0\x01" }  },
1.1       albertel 3851:       /* --- pixel bitmap for cmr180 char#52 4 --- */
1.2       albertel 3852:       {  52,69853,                      /* character number, location */
                   3853:          17, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   3854:           { 10,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3855:             "\x80\x00\x03\x0e\x38\xd0\x60\x83\x0c\x31\xc4\x08\x13"
                   3856:             "\xcc\xff\xc0\x00\x03\x0c\x30\xf0\x03" }  },
1.1       albertel 3857:       /* --- pixel bitmap for cmr180 char#53 5 --- */
1.2       albertel 3858:       {  53,70891,                      /* character number, location */
                   3859:          17, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   3860:           { 10,   18, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3861:             "\x06\xf9\xa3\x83\x00\x02\x08\x20\x87\x22\x86\x09\x0c"
                   3862:             "\x30\xc0\x00\x0f\x1c\x90\x60\xc6\xe0\x01" }  },
1.1       albertel 3863:       /* --- pixel bitmap for cmr180 char#54 6 --- */
1.2       albertel 3864:       {  54,71795,                      /* character number, location */
                   3865:          17, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   3866:           { 10,   18, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3867:             "\xf0\x60\xc4\x98\x61\x06\x08\xb0\xc7\x21\x87\x0d\x3c"
                   3868:             "\xf0\xc0\x03\x0f\x2c\xb0\x61\x8c\xe0\x01" }  },
1.1       albertel 3869:       /* --- pixel bitmap for cmr180 char#55 7 --- */
1.2       albertel 3870:       {  55,72707,                      /* character number, location */
                   3871:          17, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   3872:           { 11,   18, 3,45, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3873:             "\x11\xaa\x19\x11\x81\x11\x71\x20\xf1\x71\x30\x61\x92"
                   3874:             "\x91\x50\xf1\x42\x50\x41\x60\xf4\x32\x62" }  },
1.1       albertel 3875:       /* --- pixel bitmap for cmr180 char#56 8 --- */
1.2       albertel 3876:       {  56,73627,                      /* character number, location */
                   3877:          17, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   3878:           { 10,   18, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3879:             "\x78\x30\x63\x98\x61\x86\x19\xc6\x0c\x17\x70\xb0\x63"
                   3880:             "\xd8\xe0\x03\x0f\x3c\xb0\x41\x84\xe0\x01" }  },
1.1       albertel 3881:       /* --- pixel bitmap for cmr180 char#57 9 --- */
1.2       albertel 3882:       {  57,74539,                      /* character number, location */
                   3883:          17, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   3884:           { 10,   18, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3885:             "\x78\x10\x62\xd8\x40\x03\x0f\x3c\xf0\xc0\x03\x1b\x4e"
                   3886:             "\x38\xde\x00\x03\x66\x98\x21\x42\xf0\x00" }  },
1.1       albertel 3887:       /* --- pixel bitmap for cmr180 char#58 : --- */
1.2       albertel 3888:       {  58,97681,                      /* character number, location */
                   3889:          11, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   3890:           {  3,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3891:             "\xba\x00\x00\xba\x00" }  },
1.1       albertel 3892:       /* --- pixel bitmap for cmr180 char#59 ; --- */
1.2       albertel 3893:       {  59,98348,                      /* character number, location */
                   3894:          11, 2,   -5, 2,      /* topleft row,col, and botleft row,col */
                   3895:           {  3,   16, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3896:             "\xba\x00\x00\xba\x49\x29" }  },
1.1       albertel 3897:       /* --- pixel bitmap for cmr180 char#60 (noname) --- */
1.2       albertel 3898:       {  60,90220,                      /* character number, location */
                   3899:          12, 2,   -6, 2,      /* topleft row,col, and botleft row,col */
                   3900:           {  3,   18, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3901:             "\xba\x00\x48\x92\xfc\xff\x17" }  },
1.1       albertel 3902:       /* --- pixel bitmap for cmr180 char#61 = --- */
1.2       albertel 3903:       {  61,99030,                      /* character number, location */
                   3904:          10, 1,    3, 1,      /* topleft row,col, and botleft row,col */
                   3905:           { 17,    7, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3906:             "\x0e\x03\xf4\xe0\x3e\x03" }  },
1.1       albertel 3907:       /* --- pixel bitmap for cmr180 char#62 (noname) --- */
1.2       albertel 3908:       {  62,78784,                      /* character number, location */
                   3909:          12, 1,   -5, 1,      /* topleft row,col, and botleft row,col */
                   3910:           { 10,   17, 3,37, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3911:             "\x41\x83\x81\x50\xf2\xa0\xf3\x41\x50\x31\x81\x81\x8f"
                   3912:             "\x12\x62\x11\x61\x36\x21" }  },
                   3913:       /* --- pixel bitmap for cmr180 char#63 ? --- */
                   3914:       {  63,77868,                      /* character number, location */
                   3915:          17, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   3916:           { 10,   17, 3,39, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3917:             "\x26\x31\x52\x1f\x12\x62\x72\x72\x71\x82\x40\xf2\x41"
                   3918:             "\x50\xf2\xa0\x41\x83\x81\x54" }  },
                   3919:       /* --- pixel bitmap for cmr180 char#64 @ --- */
                   3920:       {  64,100200,                     /* character number, location */
                   3921:          17, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   3922:           { 17,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3923:             "\xc0\x07\x60\x30\x20\x80\x20\x1c\x22\x44\x48\x0c\x53"
                   3924:             "\x0c\xc6\x18\x8c\x31\x18\x63\x30\xc6\x60\x14\xc3\x28"
                   3925:             "\xc4\x89\x70\x0e\x02\x00\x18\xe0\xc0\x3f\x00" }  },
1.1       albertel 3926:       /* --- pixel bitmap for cmr180 char#65 A --- */
1.2       albertel 3927:       {  65, 1026,                      /* character number, location */
                   3928:          18, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   3929:           { 17,   18, 3,60, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3930:             "\x81\x80\xf2\x73\x70\x62\x12\x60\xf1\x61\x22\x60\xf2"
                   3931:             "\x51\x42\x50\x41\x62\x89\x81\x62\x40\xf2\x31\x82\x30"
                   3932:             "\x22\x83\x26\x47" }  },
1.1       albertel 3933:       /* --- pixel bitmap for cmr180 char#66 B --- */
1.2       albertel 3934:       {  66, 2336,                      /* character number, location */
                   3935:          17, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   3936:           { 17,   17, 3,55, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3937:             "\x0d\x72\x73\x52\x82\x20\xf2\x32\x92\x10\x32\x82\x52"
                   3938:             "\x63\x6b\x62\x83\x42\x93\xf2\x32\xa2\x32\x92\x42\x82"
                   3939:             "\x2e\x33" }  },
1.1       albertel 3940:       /* --- pixel bitmap for cmr180 char#67 C --- */
1.2       albertel 3941:       {  67, 3269,                      /* character number, location */
                   3942:          18, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   3943:           { 16,   19, 3,57, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3944:             "\x65\x41\x42\x52\x12\x32\x83\x22\xa2\x12\xb2\x12\xc3"
                   3945:             "\xd1\x0f\x42\xe2\xd1\xf1\x12\xc1\x22\xa1\x42\x81\x62"
                   3946:             "\x61\x96\x46" }  },
1.1       albertel 3947:       /* --- pixel bitmap for cmr180 char#68 D --- */
1.2       albertel 3948:       {  68, 4365,                      /* character number, location */
                   3949:          17, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   3950:           { 18,   17, 3,49, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3951:             "\x0d\x82\x72\x72\x92\x52\xa1\x52\xa2\x42\xb1\x10\xf5"
                   3952:             "\x32\xb2\x32\xa2\x42\xa1\x52\x92\x52\x73\x3d\x51" }  },
1.1       albertel 3953:       /* --- pixel bitmap for cmr180 char#69 E --- */
1.2       albertel 3954:       {  69, 5766,                      /* character number, location */
                   3955:          17, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   3956:           { 16,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3957:             "\xff\x7f\x18\x60\x18\x40\x18\xc0\x18\x80\x18\x84\x18"
                   3958:             "\x04\x18\x06\xf8\x07\x18\x06\x18\x84\x18\x84\x18\x80"
                   3959:             "\x18\x40\x18\x40\x18\x70\xff\x7f" }  },
1.1       albertel 3960:       /* --- pixel bitmap for cmr180 char#70 F --- */
1.2       albertel 3961:       {  70, 7003,                      /* character number, location */
                   3962:          17, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   3963:           { 15,   17, 3,55, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3964:             "\x0e\x42\x72\x42\x81\x42\x82\x32\x91\x32\x51\x31\x32"
                   3965:             "\x51\x72\x42\x78\x72\x42\x40\xf1\x32\x51\x40\xf3\x32"
                   3966:             "\xa8\x71" }  },
1.1       albertel 3967:       /* --- pixel bitmap for cmr180 char#71 G --- */
1.2       albertel 3968:       {  71, 8176,                      /* character number, location */
                   3969:          18, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   3970:           { 18,   19, 3,73, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3971:             "\x65\x41\x62\x52\x12\x52\x83\x42\xa2\x32\xb2\x32\xc1"
                   3972:             "\x22\xd1\x2f\x22\xe0\x22\x97\x0f\x12\xc2\x20\xf1\x12"
                   3973:             "\xb2\x20\x22\xa2\x52\x92\x62\x62\x11\x86\x60" }  },
1.1       albertel 3974:       /* --- pixel bitmap for cmr180 char#72 H --- */
1.2       albertel 3975:       {  72, 9359,                      /* character number, location */
                   3976:          17, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   3977:           { 19,   17, 3,26, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3978:             "\x08\x38\xf6\x32\x92\x30\x3d\x30\xf6\x32\x92\x38\x38" }  },
1.1       albertel 3979:       /* --- pixel bitmap for cmr180 char#73 I --- */
1.2       albertel 3980:       {  73,10038,                      /* character number, location */
                   3981:          17, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   3982:           {  8,   17, 3, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3983:             "\x08\xfe\x32\x38" }  },
1.1       albertel 3984:       /* --- pixel bitmap for cmr180 char#74 J --- */
1.2       albertel 3985:       {  74,10840,                      /* character number, location */
                   3986:          17, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   3987:           { 10,   18, 3,23, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3988:             "\x37\xfb\x62\x2f\x12\x42\x21\x51\x41\x32\x54\x48" }  },
1.1       albertel 3989:       /* --- pixel bitmap for cmr180 char#75 K --- */
1.2       albertel 3990:       {  75,11995,                      /* character number, location */
                   3991:          17, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   3992:           { 18,   17, 3,72, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   3993:             "\x08\x46\x32\x82\x62\x81\x72\x71\x82\x61\x92\x51\xa2"
                   3994:             "\x41\xb2\x32\xb2\x12\x11\xb3\x32\xa2\x52\x60\xf1\x32"
                   3995:             "\x62\x50\x32\x72\x40\xf1\x32\x82\x38\x37" }  },
1.1       albertel 3996:       /* --- pixel bitmap for cmr180 char#76 L --- */
1.2       albertel 3997:       {  76,12950,                      /* character number, location */
                   3998:          17, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   3999:           { 15,   17, 3,31, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4000:             "\x08\x70\xf8\x32\xa0\xf2\x32\x91\x32\x82\x32\x81\x42"
                   4001:             "\x63\x1e\x12" }  },
1.1       albertel 4002:       /* --- pixel bitmap for cmr180 char#77 M --- */
1.2       albertel 4003:       {  77,14230,                      /* character number, location */
                   4004:          17, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   4005:           { 23,   17, 3,82, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4006:             "\x06\xb6\x33\xb3\x30\xf2\x31\x12\x91\x12\x30\xf1\x31"
                   4007:             "\x22\x71\x22\x30\xf2\x31\x32\x51\x32\x30\xf1\x31\x42"
                   4008:             "\x31\x42\x30\xf2\x31\x52\x11\x52\x30\x23\x52\x62\x37"
                   4009:             "\x32\x38" }  },
1.1       albertel 4010:       /* --- pixel bitmap for cmr180 char#78 N --- */
1.2       albertel 4011:       {  78,15384,                      /* character number, location */
                   4012:          17, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   4013:           { 19,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4014:             "\x1f\xf0\xc7\x01\x0e\x0e\x20\xd0\x00\x81\x0c\x08\xc4"
                   4015:             "\x40\x20\x06\x02\x61\x10\x08\x86\x40\x60\x04\x02\x23"
                   4016:             "\x10\x30\x81\x00\x0b\x04\x70\x20\x80\x83\x03\x18\x7f"
                   4017:             "\x80\x00" }  },
1.1       albertel 4018:       /* --- pixel bitmap for cmr180 char#79 O --- */
1.2       albertel 4019:       {  79,16259,                      /* character number, location */
                   4020:          18, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   4021:           { 17,   19, 3,51, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4022:             "\x65\xa2\x52\x72\x72\x52\x92\x20\xf1\x12\xb2\x1f\x62"
                   4023:             "\xd2\xf1\x12\xb2\x10\x22\x92\x52\x72\x72\x52\xa5\x61" }  },
1.1       albertel 4024:       /* --- pixel bitmap for cmr180 char#80 P --- */
1.2       albertel 4025:       {  80,17382,                      /* character number, location */
                   4026:          17, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   4027:           { 16,   17, 3,37, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4028:             "\x0d\x62\x72\x52\x82\x10\xf2\x32\x92\x32\x82\x42\x72"
                   4029:             "\x5a\x30\xf6\x32\xb8\x82" }  },
1.1       albertel 4030:       /* --- pixel bitmap for cmr180 char#81 Q --- */
1.2       albertel 4031:       {  81,18405,                      /* character number, location */
                   4032:          18, 1,   -5, 1,      /* topleft row,col, and botleft row,col */
                   4033:           { 17,   23, 3,77, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4034:             "\x65\xa2\x52\x72\x72\x52\x92\x20\xf1\x12\xb2\x1f\x62"
                   4035:             "\xd2\x12\xb2\x22\x43\x42\x32\x21\x31\x22\x52\x11\x31"
                   4036:             "\x12\x73\x42\x31\x66\x41\xb1\x41\xb2\x22\xb5\xd3\x21" }  },
1.1       albertel 4037:       /* --- pixel bitmap for cmr180 char#82 R --- */
1.2       albertel 4038:       {  82,19724,                      /* character number, location */
                   4039:          17, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
                   4040:           { 18,   18, 3,61, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4041:             "\x0b\xa2\x62\x82\x72\x40\xf2\x32\x82\x30\x32\x72\x72"
                   4042:             "\x62\x88\xa2\x62\x50\xf3\x32\x72\x40\xf1\x32\x72\x31"
                   4043:             "\x08\x51\x31\xe3\x16" }  },
1.1       albertel 4044:       /* --- pixel bitmap for cmr180 char#83 S --- */
1.2       albertel 4045:       {  83,20783,                      /* character number, location */
                   4046:          18, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   4047:           { 12,   19, 3,55, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4048:             "\x35\x21\x31\x51\x11\x21\x72\x1f\x22\x81\x13\xa3\xa6"
                   4049:             "\x77\x94\xa2\xb2\x0f\x21\x92\x02\x72\x11\x12\x42\x21"
                   4050:             "\x35\x31" }  },
1.1       albertel 4051:       /* --- pixel bitmap for cmr180 char#84 T --- */
1.2       albertel 4052:       {  84,21881,                      /* character number, location */
                   4053:          17, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   4054:           { 16,   17, 3,25, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4055:             "\x0e\x04\x52\x52\x0f\x31\x62\x61\xf9\x72\x70\x3a\x36" }  },
1.1       albertel 4056:       /* --- pixel bitmap for cmr180 char#85 U --- */
1.2       albertel 4057:       {  85,22871,                      /* character number, location */
                   4058:          17, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
                   4059:           { 19,   18, 3,33, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4060:             "\x08\x47\x32\x93\x20\xfb\x32\xa1\x30\x42\x81\x91\x71"
                   4061:             "\xb2\x42\xc5\x72" }  },
1.1       albertel 4062:       /* --- pixel bitmap for cmr180 char#86 V --- */
1.2       albertel 4063:       {  86,23871,                      /* character number, location */
                   4064:          17, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   4065:           { 17,   18, 3,61, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4066:             "\x06\x65\x22\x92\x42\xa1\x20\xf2\x32\x81\x30\xf1\x42"
                   4067:             "\x61\x40\x43\x42\x40\xf1\x52\x41\x50\xf2\x62\x21\x60"
                   4068:             "\xf2\x73\x70\x81\x86" }  },
1.1       albertel 4069:       /* --- pixel bitmap for cmr180 char#87 W --- */
1.2       albertel 4070:       {  87,25295,                      /* character number, location */
                   4071:          17, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   4072:           { 24,   18, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4073:             "\x3f\xfe\xf8\x0c\x18\x70\x0c\x38\x20\x0c\x38\x20\x18"
                   4074:             "\x38\x10\x18\x38\x10\x18\x64\x10\x30\x64\x08\x30\x64"
                   4075:             "\x08\x30\xc2\x08\x30\xc2\x08\x60\xc2\x04\x60\x81\x05"
                   4076:             "\x60\x81\x05\xc0\x81\x03\xc0\x81\x03\xc0\x00\x03\x80"
                   4077:             "\x00\x01" }  },
1.1       albertel 4078:       /* --- pixel bitmap for cmr180 char#88 X --- */
1.2       albertel 4079:       {  88,26428,                      /* character number, location */
                   4080:          17, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   4081:           { 17,   17, 3,66, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4082:             "\x07\x36\x42\x63\x63\x52\x82\x51\xa2\x31\xc2\x12\xc2"
                   4083:             "\x11\xe2\x80\xf1\x73\x70\x61\x22\xb2\x32\xa1\x43\x81"
                   4084:             "\x62\x72\x72\x53\x73\x26\x47" }  },
1.1       albertel 4085:       /* --- pixel bitmap for cmr180 char#89 Y --- */
1.2       albertel 4086:       {  89,27578,                      /* character number, location */
                   4087:          17, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   4088:           { 18,   17, 3,47, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4089:             "\x06\x66\x23\x82\x62\x81\x73\x71\x82\x61\xa2\x42\xa3"
                   4090:             "\x31\xc3\x12\xd2\x11\x70\xf6\x82\x80\x58\x51" }  },
1.1       albertel 4091:       /* --- pixel bitmap for cmr180 char#90 Z --- */
1.2       albertel 4092:       {  90,28623,                      /* character number, location */
                   4093:          17, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   4094:           { 13,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4095:             "\xfe\xdf\x81\x19\x30\x01\x23\x30\x04\x06\x60\x00\x06"
                   4096:             "\xe0\x00\x0c\xc0\x40\x0c\x88\x01\x19\xa0\x01\x36\xe0"
                   4097:             "\xff\x1f" }  },
1.1       albertel 4098:       /* --- pixel bitmap for cmr180 char#91 [ --- */
1.2       albertel 4099:       {  91,100949,                     /* character number, location */
                   4100:          19, 2,   -6, 2,      /* topleft row,col, and botleft row,col */
                   4101:           {  5,   25, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4102:             "\x05\x0f\xe1\x4f\x71\x45" }  },
1.1       albertel 4103:       /* --- pixel bitmap for cmr180 char#92 (noname) --- */
1.2       albertel 4104:       {  92,119556,                     /* character number, location */
                   4105:          17, 3,    9, 3,      /* topleft row,col, and botleft row,col */
                   4106:           {  8,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4107:             "\x84\x42\x21\x21\x21\x63\xe7\x42" }  },
1.1       albertel 4108:       /* --- pixel bitmap for cmr180 char#93 ] --- */
1.2       albertel 4109:       {  93,101647,                     /* character number, location */
                   4110:          19, 0,   -6, 0,      /* topleft row,col, and botleft row,col */
                   4111:           {  5,   25, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4112:             "\x05\xfe\x41\xf7\x41\x05" }  },
1.1       albertel 4113:       /* --- pixel bitmap for cmr180 char#94 \^ --- */
1.2       albertel 4114:       {  94,107834,                     /* character number, location */
                   4115:          17, 3,   13, 3,      /* topleft row,col, and botleft row,col */
                   4116:           {  6,    4, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4117:             "\x8c\x37\x87" }  },
1.1       albertel 4118:       /* --- pixel bitmap for cmr180 char#95 (noname) --- */
1.2       albertel 4119:       {  95,108303,                     /* character number, location */
                   4120:          18, 2,   15, 2,      /* topleft row,col, and botleft row,col */
                   4121:           {  3,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4122:             "\xba\x00" }  },
1.1       albertel 4123:       /* --- pixel bitmap for cmr180 char#96 (noname) --- */
1.2       albertel 4124:       {  96,102265,                     /* character number, location */
                   4125:          17, 2,    9, 2,      /* topleft row,col, and botleft row,col */
                   4126:           {  3,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4127:             "\x94\x92\x5d" }  },
1.1       albertel 4128:       /* --- pixel bitmap for cmr180 char#97 a --- */
1.2       albertel 4129:       {  97,29771,                      /* character number, location */
                   4130:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   4131:           { 11,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4132:             "\x7c\x30\x06\x60\x00\x03\x1f\xc6\x08\x66\xb0\x83\x35"
                   4133:             "\x2e\xcf\x00" }  },
1.1       albertel 4134:       /* --- pixel bitmap for cmr180 char#98 b --- */
1.2       albertel 4135:       {  98,30779,                      /* character number, location */
                   4136:          17, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   4137:           { 12,   17, 3,43, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4138:             "\x04\x80\xf4\x22\x80\x22\x14\x53\x32\x42\x52\x10\xf4"
                   4139:             "\x22\x62\x22\x52\x33\x32\x41\x24\x32" }  },
1.1       albertel 4140:       /* --- pixel bitmap for cmr180 char#99 c --- */
1.2       albertel 4141:       {  99,31560,                      /* character number, location */
                   4142:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   4143:           {  9,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4144:             "\xf8\x18\x1b\x18\x30\x60\xc0\x80\x01\x06\x19\xe1\x01" }  },
1.1       albertel 4145:       /* --- pixel bitmap for cmr180 char#100 d --- */
1.2       albertel 4146:       { 100,32555,                      /* character number, location */
                   4147:          17, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   4148:           { 12,   17, 3,42, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4149:             "\x64\x20\xf4\x82\x20\x34\x12\x42\x33\x32\x52\x2f\x42"
                   4150:             "\x62\x20\x12\x52\x42\x33\x54\x14" }  },
1.1       albertel 4151:       /* --- pixel bitmap for cmr180 char#101 e --- */
1.2       albertel 4152:       { 101,33321,                      /* character number, location */
                   4153:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   4154:           {  9,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4155:             "\x78\x08\x19\x1e\xfc\x7f\xc0\x80\x01\x06\x09\xe1\x01" }  },
1.1       albertel 4156:       /* --- pixel bitmap for cmr180 char#102 f --- */
1.2       albertel 4157:       { 102,34146,                      /* character number, location */
                   4158:          17, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   4159:           {  9,   17, 3,23, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4160:             "\x53\x52\x12\xf3\x32\x48\x10\xf8\x32\x40\x17\x11" }  },
1.1       albertel 4161:       /* --- pixel bitmap for cmr180 char#103 g --- */
1.2       albertel 4162:       { 103,35383,                      /* character number, location */
                   4163:          12, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   4164:           { 11,   18, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4165:             "\x00\xe3\xa5\x19\x87\x31\x8c\x61\x98\xc1\x07\x01\x18"
                   4166:             "\xc0\x3f\xfc\x23\xb8\x81\x0d\x6c\x60\x86\xc1\x03" }  },
1.1       albertel 4167:       /* --- pixel bitmap for cmr180 char#104 h --- */
1.2       albertel 4168:       { 104,36370,                      /* character number, location */
                   4169:          17, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   4170:           { 12,   17, 3,30, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4171:             "\x04\x80\xf4\x22\x80\x22\x14\x53\x32\x20\xf7\x22\x42"
                   4172:             "\x26\x24" }  },
1.1       albertel 4173:       /* --- pixel bitmap for cmr180 char#105 i --- */
1.2       albertel 4174:       { 105,37065,                      /* character number, location */
                   4175:          18, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   4176:           {  6,   18, 3,20, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4177:             "\x21\x43\x41\x30\xf3\x64\x20\xf8\x22\x26" }  },
1.1       albertel 4178:       /* --- pixel bitmap for cmr180 char#106 j --- */
1.2       albertel 4179:       { 106,37837,                      /* character number, location */
                   4180:          18,-1,   -5,-1,      /* topleft row,col, and botleft row,col */
                   4181:           {  6,   23, 3,25, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4182:             "\x41\x43\x41\x10\xf3\x60\x24\xfc\x42\x02\x21\x23\x22" }  },
1.1       albertel 4183:       /* --- pixel bitmap for cmr180 char#107 k --- */
1.2       albertel 4184:       { 107,38933,                      /* character number, location */
                   4185:          17, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   4186:           { 12,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4187:             "\x0f\xc0\x00\x0c\xc0\x00\x0c\xc0\x00\x8c\xcf\x30\x0c"
                   4188:             "\xc1\x0c\x6c\xc0\x0f\xcc\xc0\x18\x8c\xc3\x30\xbf\x0f" }  },
1.1       albertel 4189:       /* --- pixel bitmap for cmr180 char#108 l --- */
1.2       albertel 4190:       { 108,39532,                      /* character number, location */
                   4191:          17, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   4192:           {  6,   17, 3,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4193:             "\x04\x20\xfe\x22\x26" }  },
1.1       albertel 4194:       /* --- pixel bitmap for cmr180 char#109 m --- */
1.2       albertel 4195:       { 109,40845,                      /* character number, location */
                   4196:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   4197:           { 20,   11, 3,28, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4198:             "\x04\x24\x34\x54\x34\x32\x20\xf7\x22\x52\x52\x26\x25"
                   4199:             "\x25" }  },
1.1       albertel 4200:       /* --- pixel bitmap for cmr180 char#110 n --- */
1.2       albertel 4201:       { 110,41836,                      /* character number, location */
                   4202:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   4203:           { 12,   11, 3,20, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4204:             "\x04\x14\x53\x32\x20\xf7\x22\x42\x26\x24" }  },
1.1       albertel 4205:       /* --- pixel bitmap for cmr180 char#111 o --- */
1.2       albertel 4206:       { 111,42537,                      /* character number, location */
                   4207:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   4208:           { 10,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4209:             "\x78\x10\x22\xd0\xc0\x03\x0f\x3c\xf0\xc0\x02\x11\x82"
                   4210:             "\x07" }  },
1.1       albertel 4211:       /* --- pixel bitmap for cmr180 char#112 p --- */
1.2       albertel 4212:       { 112,43607,                      /* character number, location */
                   4213:          11, 1,   -5, 1,      /* topleft row,col, and botleft row,col */
                   4214:           { 12,   16, 3,41, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4215:             "\x04\x14\x53\x32\x42\x52\x10\xf4\x22\x62\x22\x52\x33"
                   4216:             "\x32\x42\x14\x30\xf3\x22\x86\x62" }  },
1.1       albertel 4217:       /* --- pixel bitmap for cmr180 char#113 q --- */
1.2       albertel 4218:       { 113,44617,                      /* character number, location */
                   4219:          11, 1,   -5, 1,      /* topleft row,col, and botleft row,col */
                   4220:           { 12,   16, 3,42, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4221:             "\x34\x21\x42\x33\x32\x52\x2f\x42\x62\x20\x12\x52\x42"
                   4222:             "\x33\x54\x12\x20\xf3\x82\x20\x66" }  },
1.1       albertel 4223:       /* --- pixel bitmap for cmr180 char#114 r --- */
1.2       albertel 4224:       { 114,45482,                      /* character number, location */
                   4225:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   4226:           {  9,   11, 3,19, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4227:             "\x04\x13\x33\x22\x23\x40\xf6\x22\x56\x30" }  },
1.1       albertel 4228:       /* --- pixel bitmap for cmr180 char#115 s --- */
1.2       albertel 4229:       { 115,46417,                      /* character number, location */
                   4230:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   4231:           {  8,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4232:             "\xfc\x82\x83\x03\x3e\x7c\xe0\xc1\xc1\x43\x3d" }  },
1.1       albertel 4233:       /* --- pixel bitmap for cmr180 char#116 t --- */
1.2       albertel 4234:       { 116,47244,                      /* character number, location */
                   4235:          15, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   4236:           {  9,   15, 3,29, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4237:             "\xf1\x41\x40\x32\x63\x48\x10\xf4\x32\x40\xf3\x32\x31"
                   4238:             "\x44\x14" }  },
1.1       albertel 4239:       /* --- pixel bitmap for cmr180 char#117 u --- */
1.2       albertel 4240:       { 117,48171,                      /* character number, location */
                   4241:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   4242:           { 12,   11, 3,22, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4243:             "\x04\x24\x20\xf7\x22\x42\x20\x22\x33\x54\x14" }  },
1.1       albertel 4244:       /* --- pixel bitmap for cmr180 char#118 v --- */
1.2       albertel 4245:       { 118,49041,                      /* character number, location */
                   4246:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   4247:           { 11,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4248:             "\x9f\x77\x18\x43\x18\xc2\x19\x4c\x60\x02\x0e\x70\x80"
                   4249:             "\x03\x08\x00" }  },
1.1       albertel 4250:       /* --- pixel bitmap for cmr180 char#119 w --- */
1.2       albertel 4251:       { 119,50292,                      /* character number, location */
                   4252:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   4253:           { 16,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4254:             "\xdf\xf7\x86\x63\x8e\x63\x8c\x23\x4c\x22\x4c\x36\x58"
                   4255:             "\x16\x38\x14\x38\x1c\x30\x0c\x10\x08" }  },
1.1       albertel 4256:       /* --- pixel bitmap for cmr180 char#120 x --- */
1.2       albertel 4257:       { 120,51271,                      /* character number, location */
                   4258:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   4259:           { 13,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4260:             "\xbe\x0f\x63\x60\x04\x58\x00\x0e\x80\x01\x38\x80\x0c"
                   4261:             "\x18\x83\x61\x7c\x7e" }  },
1.1       albertel 4262:       /* --- pixel bitmap for cmr180 char#121 y --- */
1.2       albertel 4263:       { 121,52338,                      /* character number, location */
                   4264:          11, 0,   -5, 0,      /* topleft row,col, and botleft row,col */
                   4265:           { 12,   16, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4266:             "\x3e\xcf\x61\x18\x82\x21\x38\x03\x13\x30\x01\x0e\xe0"
                   4267:             "\x00\x0e\x40\x00\x04\x20\x30\x02\x13\xe0\x00" }  },
1.1       albertel 4268:       /* --- pixel bitmap for cmr180 char#122 z --- */
1.2       albertel 4269:       { 122,53303,                      /* character number, location */
                   4270:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   4271:           {  9,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4272:             "\xff\x87\x05\x0b\x03\x03\x07\x46\x86\x06\x0d\xff\x07" }  },
1.1       albertel 4273:       /* --- pixel bitmap for cmr180 char#123 (noname) --- */
1.2       albertel 4274:       { 123,120172,                     /* character number, location */
                   4275:           7, 0,    6, 0,      /* topleft row,col, and botleft row,col */
                   4276:           { 12,    1, 3, 2, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4277:             "\x0c" }  },
1.1       albertel 4278:       /* --- pixel bitmap for cmr180 char#124 (noname) --- */
1.2       albertel 4279:       { 124,120992,                     /* character number, location */
                   4280:           7, 0,    6, 0,      /* topleft row,col, and botleft row,col */
                   4281:           { 25,    1, 3, 4, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4282:             "\x0e\x0b" }  },
1.1       albertel 4283:       /* --- pixel bitmap for cmr180 char#125 (noname) --- */
1.2       albertel 4284:       { 125,108982,                     /* character number, location */
                   4285:          17, 3,   13, 3,      /* topleft row,col, and botleft row,col */
                   4286:           {  7,    4, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4287:             "\x66\xf3\x2c\x02" }  },
1.1       albertel 4288:       /* --- pixel bitmap for cmr180 char#126 \~ --- */
1.2       albertel 4289:       { 126,109666,                     /* character number, location */
                   4290:          17, 2,   14, 2,      /* topleft row,col, and botleft row,col */
                   4291:           {  8,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4292:             "\x8c\x7e\x31" }  },
1.1       albertel 4293:       /* --- pixel bitmap for cmr180 char#127 (noname) --- */
1.2       albertel 4294:       { 127,110347,                     /* character number, location */
                   4295:          18, 2,   15, 2,      /* topleft row,col, and botleft row,col */
                   4296:           {  8,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4297:             "\x66\xe7\x66" }  },
                   4298:       /* --- trailer  --- */
                   4299:       { -99, -999,  0,0,0,0, { 0,0,0,0, (pixbyte *)"\0" }  }
                   4300:    } ;
                   4301: 
                   4302: 
                   4303: /* --- size=6 for .210gf ---
                   4304:  * mf '\mode=preview; mag=magstep(-13.80488502080647873125); input cmr10'
                   4305:  * --------------------------------------------------------------------- */
                   4306: /* --- fontdef for cmr210 --- */
                   4307: static	chardef  cmr210[] =
                   4308:    {
                   4309:       /* --- pixel bitmap for cmr210 char#0 \Gamma --- */
                   4310:       {   0,54819,                      /* character number, location */
                   4311:          20, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   4312:           { 17,   20, 3,31, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4313:             "\x0e\x02\x43\x73\x10\xf1\x33\x91\x10\xf2\x33\xa1\xfb"
                   4314:             "\x33\xba\x71" }  },
                   4315:       /* --- pixel bitmap for cmr210 char#1 \Delta --- */
                   4316:       {   1,55738,                      /* character number, location */
                   4317:          21, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   4318:           { 22,   21, 3,84, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4319:             "\xf1\xa2\xa0\xf1\x94\x90\x81\x14\xe0\x21\x23\xe0\x11"
                   4320:             "\x34\xe1\x43\xd1\x54\xc1\x63\xb1\x74\xa1\x83\x91\x94"
                   4321:             "\x81\xa3\x71\xb4\x61\xc3\x52\xc4\x41\xe3\x20\xf1\x1e"
                   4322:             "\x06\x1e\x08" }  },
                   4323:       /* --- pixel bitmap for cmr210 char#2 \Theta --- */
                   4324:       {   2,56889,                      /* character number, location */
                   4325:          21, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   4326:           { 19,   22, 3,89, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4327:             "\x75\xc2\x52\x83\x73\x62\x92\x52\xb2\x20\xf1\x13\xb3"
                   4328:             "\x10\x12\xd2\x13\x31\x51\x33\x0f\x23\x37\x33\x03\x31"
                   4329:             "\x51\x33\x0f\x13\xd3\xf1\x13\xb3\x10\x22\xb2\x52\x92"
                   4330:             "\x63\x73\x82\x52\xc5\x73" }  },
                   4331:       /* --- pixel bitmap for cmr210 char#3 \Lambda --- */
                   4332:       {   3,57875,                      /* character number, location */
                   4333:          21, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   4334:           { 18,   21, 3,62, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4335:             "\xf2\x82\x80\xf2\x74\x70\x66\x60\xf2\x61\x23\x60\xf2"
                   4336:             "\x51\x43\x50\xf2\x41\x63\x40\x31\x74\x30\xf1\x31\x83"
                   4337:             "\x30\x22\x84\x26\x48" }  },
                   4338:       /* --- pixel bitmap for cmr210 char#4 \Xi --- */
                   4339:       {   4,59266,                      /* character number, location */
                   4340:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   4341:           { 17,   20, 3,56, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4342:             "\xf1\x0e\x03\x0f\x21\xe0\x11\xf2\xe0\x30\x31\x91\x30"
                   4343:             "\xf1\x3b\x30\x31\x91\x30\xf2\xe0\x3f\x21\xe0\x11\x0f"
                   4344:             "\x1e\x03" }  },
                   4345:       /* --- pixel bitmap for cmr210 char#5 \Pi --- */
                   4346:       {   5,60431,                      /* character number, location */
                   4347:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   4348:           { 20,   20, 3,22, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4349:             "\x0e\x06\xfe\x33\x83\x30\xf2\x33\x83\x39\x29" }  },
                   4350:       /* --- pixel bitmap for cmr210 char#6 \Sigma --- */
                   4351:       {   6,61578,                      /* character number, location */
                   4352:          20, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   4353:           { 17,   20, 3,75, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4354:             "\x0e\x02\x23\x93\x24\x92\x33\xa1\x43\xa1\x34\x91\x44"
                   4355:             "\x81\x53\xe4\xe4\xe2\xe0\x11\xe0\x21\x81\x61\x91\x51"
                   4356:             "\xa1\x41\xa2\x31\xb1\x31\xa3\x2e\x01\x1e\x02\x12" }  },
                   4357:       /* --- pixel bitmap for cmr210 char#7 \Upsilon --- */
                   4358:       {   7,62692,                      /* character number, location */
                   4359:          21, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   4360:           { 19,   21, 3,49, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4361:             "\x24\x74\x36\x56\x13\x23\x33\x24\x52\x32\x52\x62\x12"
                   4362:             "\x61\x72\x12\xe0\x11\x11\x80\xfc\x83\x80\x4b\x41" }  },
                   4363:       /* --- pixel bitmap for cmr210 char#8 \Phi --- */
                   4364:       {   8,63750,                      /* character number, location */
                   4365:          20, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   4366:           { 17,   20, 3,69, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4367:             "\x3b\x30\xf2\x73\x70\x57\x83\x13\x13\x52\x33\x32\x32"
                   4368:             "\x43\x42\x1f\x33\x43\x43\x12\x43\x42\x32\x33\x32\x53"
                   4369:             "\x13\x13\x87\x50\xf2\x73\x70\x3b\x31" }  },
                   4370:       /* --- pixel bitmap for cmr210 char#9 \Psi --- */
                   4371:       {   9,64893,                      /* character number, location */
                   4372:          20, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   4373:           { 19,   20, 3,61, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4374:             "\x4b\x40\xf2\x83\x83\x53\x53\xf5\x13\x43\x43\x10\x22"
                   4375:             "\x43\x42\x43\x33\x33\x53\x23\x23\x73\x13\x13\xa7\x60"
                   4376:             "\xf2\x83\x80\x4b\x42" }  },
                   4377:       /* --- pixel bitmap for cmr210 char#10 \Omega --- */
                   4378:       {  10,66078,                      /* character number, location */
                   4379:          21, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   4380:           { 19,   21, 3,77, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4381:             "\x75\xc2\x52\x83\x73\x30\xf1\x23\x93\x20\xf4\x13\xb3"
                   4382:             "\x10\x22\xb2\x43\x93\x20\xf1\x32\x92\x30\x42\x72\x41"
                   4383:             "\x32\x72\x32\x41\x71\x43\x32\x52\x32\xf2\x16\x56\x12" }  },
                   4384:       /* --- pixel bitmap for cmr210 char#11 \ff --- */
                   4385:       {  11,112755,                     /* character number, location */
                   4386:          20, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   4387:           { 19,   20, 3,49, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4388:             "\x65\x34\x62\x43\x23\x41\x53\x33\x32\x62\x41\x10\xf2"
                   4389:             "\x32\x62\x6e\x02\x30\xfa\x32\x62\x60\x16\x27\x32" }  },
                   4390:       /* --- pixel bitmap for cmr210 char#12 \fi --- */
                   4391:       {  12,113951,                     /* character number, location */
                   4392:          20, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   4393:           { 15,   20, 3,36, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4394:             "\x65\x92\x41\x71\x53\x52\x53\x20\xf2\x32\xad\x20\xfa"
                   4395:             "\x32\x62\x20\x16\x26" }  },
                   4396:       /* --- pixel bitmap for cmr210 char#13 \fl --- */
                   4397:       {  13,115133,                     /* character number, location */
                   4398:          20, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   4399:           { 15,   20, 3,34, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4400:             "\x67\x63\x33\x61\x53\x20\xf3\x32\x62\x2d\x20\xfa\x32"
                   4401:             "\x62\x20\x16\x26" }  },
                   4402:       /* --- pixel bitmap for cmr210 char#14 \ffi --- */
                   4403:       {  14,116766,                     /* character number, location */
                   4404:          20, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   4405:           { 23,   20, 3,54, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4406:             "\x65\x35\x83\x41\x12\x41\x71\x53\x53\x52\x53\x53\x20"
                   4407:             "\xf2\x32\x62\xae\x07\x20\xfa\x32\x62\x62\x20\x16\x26"
                   4408:             "\x26" }  },
                   4409:       /* --- pixel bitmap for cmr210 char#15 \ffl --- */
                   4410:       {  15,118433,                     /* character number, location */
                   4411:          20, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   4412:           { 23,   20, 3,54, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4413:             "\x65\x37\x63\x44\x33\x61\x53\x53\x52\x53\x62\x20\xf2"
                   4414:             "\x32\x62\x62\x2e\x07\x20\xfa\x32\x62\x62\x20\x16\x26"
                   4415:             "\x26" }  },
                   4416:       /* --- pixel bitmap for cmr210 char#16 \imath --- */
                   4417:       {  16,80265,                      /* character number, location */
                   4418:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   4419:           {  6,   13, 3,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4420:             "\x04\x20\xfa\x22\x26" }  },
                   4421:       /* --- pixel bitmap for cmr210 char#17 \jmath --- */
                   4422:       {  17,80943,                      /* character number, location */
                   4423:          13,-2,   -6,-2,      /* topleft row,col, and botleft row,col */
                   4424:           {  8,   19, 3,19, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4425:             "\x35\xfd\x62\x11\x45\x31\x13\x22\x25\x22" }  },
                   4426:       /* --- pixel bitmap for cmr210 char#18 \gravesym --- */
                   4427:       {  18,103978,                     /* character number, location */
                   4428:          20, 3,   15, 3,      /* topleft row,col, and botleft row,col */
                   4429:           {  6,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4430:             "\xc3\xe1\x60\x20" }  },
                   4431:       /* --- pixel bitmap for cmr210 char#19 \acutesym --- */
                   4432:       {  19,104551,                     /* character number, location */
                   4433:          20, 6,   15, 6,      /* topleft row,col, and botleft row,col */
                   4434:           {  6,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4435:             "\x30\xce\x19\x01" }  },
                   4436:       /* --- pixel bitmap for cmr210 char#20 \checksym --- */
                   4437:       {  20,105180,                     /* character number, location */
                   4438:          18, 4,   15, 4,      /* topleft row,col, and botleft row,col */
                   4439:           {  7,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4440:             "\x63\x1f\x02" }  },
                   4441:       /* --- pixel bitmap for cmr210 char#21 \brevesym --- */
                   4442:       {  21,105798,                     /* character number, location */
                   4443:          20, 3,   16, 3,      /* topleft row,col, and botleft row,col */
                   4444:           {  9,    4, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4445:             "\x01\x03\x1a\xe3\x03" }  },
                   4446:       /* --- pixel bitmap for cmr210 char#22 (noname) --- */
                   4447:       {  22,106382,                     /* character number, location */
                   4448:          17, 2,   16, 2,      /* topleft row,col, and botleft row,col */
                   4449:           { 11,    1, 3, 2, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4450:             "\x0b" }  },
                   4451:       /* --- pixel bitmap for cmr210 char#23 (noname) --- */
                   4452:       {  23,107159,                     /* character number, location */
                   4453:          21, 8,   16, 8,      /* topleft row,col, and botleft row,col */
                   4454:           {  6,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4455:             "\x5e\x18\x86\x1e" }  },
                   4456:       /* --- pixel bitmap for cmr210 char#24 (noname) --- */
                   4457:       {  24,107855,                     /* character number, location */
                   4458:          -1, 4,   -6, 4,      /* topleft row,col, and botleft row,col */
                   4459:           {  7,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4460:             "\x1c\x18\x18\xfc\x03" }  },
                   4461:       /* --- pixel bitmap for cmr210 char#25 \ss --- */
                   4462:       {  25,82040,                      /* character number, location */
                   4463:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   4464:           { 13,   20, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4465:             "\xe0\x01\xc3\x30\x30\x06\xc6\xc0\x18\x08\x83\x78\x0e"
                   4466:             "\x0c\x83\xc1\x30\x30\x06\xc4\x80\x19\x30\x03\x66\xc0"
                   4467:             "\x0c\x98\x99\x31\x93\xc7\x01" }  },
                   4468:       /* --- pixel bitmap for cmr210 char#26 \ae --- */
                   4469:       {  26,83405,                      /* character number, location */
                   4470:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   4471:           { 19,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4472:             "\xfc\xf0\x70\xd8\x98\x83\x83\x08\x0c\x0c\x60\x60\xf0"
                   4473:             "\xff\x73\x18\xc0\xc0\x00\x03\x06\x18\x70\xc0\x80\x03"
                   4474:             "\x0d\x36\xc4\x0f\x1e" }  },
                   4475:       /* --- pixel bitmap for cmr210 char#27 \oe --- */
                   4476:       {  27,84543,                      /* character number, location */
                   4477:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   4478:           { 21,   13, 3,61, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4479:             "\x44\x64\x52\x42\x22\x42\x22\x64\x52\x21\x83\x64\x82"
                   4480:             "\x74\x8b\x0f\x22\x82\x90\x12\x64\x92\x64\x71\x22\x42"
                   4481:             "\x22\x51\x54\x65\x26" }  },
                   4482:       /* --- pixel bitmap for cmr210 char#28 (noname) --- */
                   4483:       {  28,85377,                      /* character number, location */
                   4484:          15, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   4485:           { 13,   18, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4486:             "\x00\x08\x80\xc1\x17\x06\x63\xe0\x04\xd2\x60\x1e\xc4"
                   4487:             "\x43\x78\x08\x8f\x60\x19\x64\xc1\x18\x0c\x7e\x20\x00"
                   4488:             "\x06\x40\x00\x00" }  },
                   4489:       /* --- pixel bitmap for cmr210 char#29 \AE --- */
                   4490:       {  29,87177,                      /* character number, location */
                   4491:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   4492:           { 24,   20, 3,113, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   4493:             "\x6e\x02\xb1\x13\x62\xa2\x13\x71\xa1\x23\x71\xa1\x23"
                   4494:             "\x81\x10\xf1\x71\x33\x81\x10\x71\x33\x51\xa1\x43\x51"
                   4495:             "\xa1\x43\x42\xae\x91\x53\x42\x40\xf1\x51\x53\x51\x31"
                   4496:             "\x41\x63\x91\x41\x63\x82\x32\x63\x81\x41\x73\x81\x33"
                   4497:             "\x63\x63\x16\x3e\x15" }  },
                   4498:       /* --- pixel bitmap for cmr210 char#30 \OE --- */
                   4499:       {  30,88905,                      /* character number, location */
                   4500:          21, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   4501:           { 26,   22, 3,119, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   4502:             "\x75\xe0\x52\x4d\x53\x64\x62\x52\x74\x71\x42\x84\x71"
                   4503:             "\x20\xf1\x13\x84\x81\x13\x94\x51\x21\x13\xa3\x51\x43"
                   4504:             "\xa3\x42\x43\xa9\x43\xa3\x42\x43\xa3\x51\x43\xa3\x51"
                   4505:             "\x34\x94\x91\x13\x84\x91\x13\x84\x82\xf1\x23\x74\x81"
                   4506:             "\x10\x33\x64\x63\x62\x4e\x85\xe0" }  },
                   4507:       /* --- pixel bitmap for cmr210 char#31 (noname) --- */
                   4508:       {  31,89923,                      /* character number, location */
                   4509:          21, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   4510:           { 19,   22, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4511:             "\x80\x0f\x01\x83\x05\x0e\x38\x30\x80\xc1\x00\x1a\x07"
                   4512:             "\xd8\x19\x40\xcc\x00\x61\x07\x0c\x3f\x20\xf8\x81\xc0"
                   4513:             "\x0f\x04\x7e\x10\xf0\xc3\x80\x1f\x02\xdc\x08\x60\x6e"
                   4514:             "\x80\x63\x01\x0c\x06\x30\x70\xc0\x81\x06\x03\xc2\x07"
                   4515:             "\x00" }  },
                   4516:       /* --- pixel bitmap for cmr210 char#32 (noname) --- */
                   4517:       {  32,108355,                     /* character number, location */
                   4518:          12, 1,    8, 1,      /* topleft row,col, and botleft row,col */
                   4519:           {  6,    4, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4520:             "\x20\x7e\x04" }  },
                   4521:       /* --- pixel bitmap for cmr210 char#33 ! --- */
                   4522:       {  33,90616,                      /* character number, location */
                   4523:          21, 3,    0, 3,      /* topleft row,col, and botleft row,col */
                   4524:           {  3,   21, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4525:             "\xfa\xff\xff\x92\x24\x01\x80\x2e" }  },
                   4526:       /* --- pixel bitmap for cmr210 char#34 " --- */
                   4527:       {  34,119412,                     /* character number, location */
                   4528:          20, 1,   11, 1,      /* topleft row,col, and botleft row,col */
                   4529:           {  9,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4530:             "\x82\x8e\x1b\x26\x48\x90\xa0\x20\x41\x41\x00" }  },
                   4531:       /* --- pixel bitmap for cmr210 char#35 # --- */
                   4532:       {  35,92096,                      /* character number, location */
                   4533:          20, 2,   -6, 2,      /* topleft row,col, and botleft row,col */
                   4534:           { 20,   26, 3,79, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4535:             "\xf2\x92\x42\x30\x83\x33\x30\xf2\x82\x42\x40\x73\x33"
                   4536:             "\xb2\x42\x5f\x1e\x06\xf3\x62\x42\x6f\x1e\x06\x52\x42"
                   4537:             "\xb3\x33\x70\xf2\x42\x42\x80\x33\x33\x80\xf2\x32\x42"
                   4538:             "\x92" }  },
                   4539:       /* --- pixel bitmap for cmr210 char#36 $ --- */
                   4540:       {  36,76445,                      /* character number, location */
                   4541:          22, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
                   4542:           { 11,   24, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4543:             "\x20\x00\x01\x3e\x58\x62\xa2\x11\x8e\x7c\xe4\x27\x7a"
                   4544:             "\x81\x1f\xf8\x83\x3f\xd0\x81\x5c\xc4\x27\x1e\x71\x88"
                   4545:             "\x44\x46\x1a\x7c\x80\x00\x04" }  },
                   4546:       /* --- pixel bitmap for cmr210 char#37 % --- */
                   4547:       {  37,93357,                      /* character number, location */
                   4548:          22, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
                   4549:           { 20,   24, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4550:             "\x38\x00\x43\x04\x38\xc6\xc0\x31\xf8\x1f\x83\xe0\x30"
                   4551:             "\x08\x06\x83\x70\x30\x08\x03\x83\x38\x60\xc4\x01\x44"
                   4552:             "\x0c\x80\xe3\x00\x00\x87\x03\x30\x44\x80\x63\x04\x1c"
                   4553:             "\x83\xc0\x30\x08\x0e\x83\x60\x30\x08\x07\x83\x38\x30"
                   4554:             "\x88\x01\x46\x1c\x40\xc4\x00\x38" }  },
                   4555:       /* --- pixel bitmap for cmr210 char#38 & --- */
                   4556:       {  38,77747,                      /* character number, location */
                   4557:          21, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   4558:           { 21,   22, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4559:             "\xc0\x01\x00\x4c\x00\x80\x10\x00\x18\x02\x00\x43\x00"
                   4560:             "\x60\x08\x00\x8c\x00\x80\x09\x00\xb0\xc0\x1f\x1c\xe0"
                   4561:             "\x80\x01\x0c\x78\x80\x80\x0c\x08\x88\x03\x81\x61\x10"
                   4562:             "\x10\x18\x01\x03\x27\x60\xc0\x02\x0d\x30\x20\x03\x0e"
                   4563:             "\xc4\x30\x43\xf0\x81\x07" }  },
                   4564:       /* --- pixel bitmap for cmr210 char#39 ' --- */
                   4565:       {  39,94051,                      /* character number, location */
                   4566:          20, 3,   11, 3,      /* topleft row,col, and botleft row,col */
                   4567:           {  3,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4568:             "\xba\x49\x4a\x01" }  },
                   4569:       /* --- pixel bitmap for cmr210 char#40 ( --- */
                   4570:       {  40,94631,                      /* character number, location */
                   4571:          22, 2,   -8, 2,      /* topleft row,col, and botleft row,col */
                   4572:           {  7,   30, 3,50, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4573:             "\x61\x51\x51\x52\x51\x52\x51\x52\x40\xf1\x11\x5f\x92"
                   4574:             "\x50\xf1\x11\x50\x12\x61\x62\x61\x62\x61\x71\x71" }  },
                   4575:       /* --- pixel bitmap for cmr210 char#41 ) --- */
                   4576:       {  41,95254,                      /* character number, location */
                   4577:          22, 2,   -8, 2,      /* topleft row,col, and botleft row,col */
                   4578:           {  7,   30, 3,51, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4579:             "\x01\x71\x71\x62\x61\x62\x61\x62\x10\xf1\x51\x10\xf9"
                   4580:             "\x52\xf1\x51\x10\x42\x51\x52\x51\x52\x51\x51\x51\x62" }  },
                   4581:       /* --- pixel bitmap for cmr210 char#42 * --- */
                   4582:       {  42,95901,                      /* character number, location */
                   4583:          22, 2,    9, 2,      /* topleft row,col, and botleft row,col */
                   4584:           { 11,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4585:             "\x20\x00\x01\x08\x46\xfc\x7a\xfe\xc0\x81\x3f\xaf\x1f"
                   4586:             "\x31\x08\x40\x00\x02" }  },
                   4587:       /* --- pixel bitmap for cmr210 char#43 + --- */
                   4588:       {  43,96599,                      /* character number, location */
                   4589:          17, 2,   -3, 2,      /* topleft row,col, and botleft row,col */
                   4590:           { 19,   20, 3,15, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4591:             "\xf8\x92\x8f\x1e\x05\xf8\x92\x87" }  },
                   4592:       /* --- pixel bitmap for cmr210 char#44 (noname) --- */
                   4593:       {  44,97194,                      /* character number, location */
                   4594:           3, 3,   -6, 3,      /* topleft row,col, and botleft row,col */
                   4595:           {  3,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4596:             "\xba\x49\x4a\x01" }  },
                   4597:       /* --- pixel bitmap for cmr210 char#45 (noname) --- */
                   4598:       {  45,119927,                     /* character number, location */
                   4599:           7, 0,    5, 0,      /* topleft row,col, and botleft row,col */
                   4600:           {  8,    2, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4601:             "\xff\xff" }  },
                   4602:       /* --- pixel bitmap for cmr210 char#46 (noname) --- */
                   4603:       {  46,97665,                      /* character number, location */
                   4604:           3, 3,    0, 3,      /* topleft row,col, and botleft row,col */
                   4605:           {  3,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4606:             "\xba\x00" }  },
                   4607:       /* --- pixel bitmap for cmr210 char#47 / --- */
                   4608:       {  47,98173,                      /* character number, location */
                   4609:          22, 2,   -7, 2,      /* topleft row,col, and botleft row,col */
                   4610:           { 11,   29, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4611:             "\x00\x06\x30\xc0\x01\x06\x30\xc0\x01\x06\x30\xc0\x01"
                   4612:             "\x06\x30\xc0\x01\x06\x30\xc0\x01\x06\x30\xc0\x01\x06"
                   4613:             "\x30\xc0\x01\x06\x30\xc0\x01\x06\x30\xc0\x01\x06\x30"
                   4614:             "\x00" }  },
                   4615:       /* --- pixel bitmap for cmr210 char#48 0 --- */
                   4616:       {  48,66830,                      /* character number, location */
                   4617:          20, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   4618:           { 13,   21, 3,43, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4619:             "\x45\x72\x32\x51\x71\x32\x72\x21\x91\x1f\xa2\x92\x11"
                   4620:             "\x91\x22\x72\x31\x71\x52\x32\x75\x42" }  },
                   4621:       /* --- pixel bitmap for cmr210 char#49 1 --- */
                   4622:       {  49,67632,                      /* character number, location */
                   4623:          20, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   4624:           { 10,   20, 3,20, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4625:             "\x42\x73\x43\x12\x40\xfe\x42\x40\x42\x4a" }  },
                   4626:       /* --- pixel bitmap for cmr210 char#50 2 --- */
                   4627:       {  50,68615,                      /* character number, location */
                   4628:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   4629:           { 13,   20, 3,57, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4630:             "\x45\x62\x43\x31\x82\x13\x72\x14\x67\x72\x12\x82\xf1"
                   4631:             "\xa3\xa2\xa2\xa2\xa2\xa2\xa2\xa2\x61\x31\x81\x21\x81"
                   4632:             "\x2b\x1c\x12" }  },
                   4633:       /* --- pixel bitmap for cmr210 char#51 3 --- */
                   4634:       {  51,69663,                      /* character number, location */
                   4635:          20, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   4636:           { 13,   21, 3,63, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4637:             "\x45\x71\x43\x41\x62\x20\xf2\x13\x53\x10\xf1\x92\x20"
                   4638:             "\x82\x75\xc3\xb3\xb2\xb3\x12\x73\x0f\x14\x63\x03\x72"
                   4639:             "\x21\x73\x32\x43\x65\x43" }  },
                   4640:       /* --- pixel bitmap for cmr210 char#52 4 --- */
                   4641:       {  52,70605,                      /* character number, location */
                   4642:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   4643:           { 13,   20, 3,56, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4644:             "\xf1\x82\x30\x73\x94\x91\x12\x81\x22\x72\x22\x71\x32"
                   4645:             "\x61\x42\x52\x42\x51\x52\x41\x62\x32\x62\x3d\xf4\x82"
                   4646:             "\x30\x58" }  },
                   4647:       /* --- pixel bitmap for cmr210 char#53 5 --- */
                   4648:       {  53,71653,                      /* character number, location */
                   4649:          20, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   4650:           { 13,   21, 3,65, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4651:             "\x22\x52\x48\x57\x61\x21\x70\xf2\x21\xa0\x21\x24\x61"
                   4652:             "\x11\x42\x42\x52\x41\x72\x10\xf2\xa3\x0f\x23\x73\x11"
                   4653:             "\x82\x21\x72\x42\x42\x75\x42" }  },
                   4654:       /* --- pixel bitmap for cmr210 char#54 6 --- */
                   4655:       {  54,72567,                      /* character number, location */
                   4656:          20, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   4657:           { 13,   21, 3,67, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4658:             "\x64\x72\x41\x52\x43\x32\x53\x31\xb2\xb1\xb2\x34\x42"
                   4659:             "\x12\x41\x33\x71\x23\x72\x1f\x32\x92\x11\x92\x12\x82"
                   4660:             "\x12\x72\x31\x71\x52\x41\x75\x42" }  },
                   4661:       /* --- pixel bitmap for cmr210 char#55 7 --- */
                   4662:       {  55,73491,                      /* character number, location */
                   4663:          20, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   4664:           { 13,   21, 3,57, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4665:             "\x11\xcc\x1b\x21\x91\x11\x91\x21\x81\x30\xf1\x81\x40"
                   4666:             "\x71\x50\xf1\x61\x60\xf1\x52\x60\xf2\x42\x70\xf3\x33"
                   4667:             "\x70\x41\x81" }  },
                   4668:       /* --- pixel bitmap for cmr210 char#56 8 --- */
                   4669:       {  56,74419,                      /* character number, location */
                   4670:          20, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   4671:           { 13,   21, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4672:             "\xf0\x01\x61\x10\x18\x03\x66\xc0\x0c\x98\x03\xe3\x31"
                   4673:             "\x7c\x03\x3f\xc0\x0f\xc6\x63\xf0\x04\xf8\x00\x1e\xc0"
                   4674:             "\x03\x78\x00\x19\x30\x06\x03\x1f\x00" }  },
                   4675:       /* --- pixel bitmap for cmr210 char#57 9 --- */
                   4676:       {  57,75341,                      /* character number, location */
                   4677:          20, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   4678:           { 13,   21, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4679:             "\xf0\x01\x41\x10\x10\x03\x36\xc0\x06\xd0\x00\x1e\xc0"
                   4680:             "\x03\x78\x00\x1b\x70\x02\x8e\xb0\xe1\x31\x00\x02\x60"
                   4681:             "\x00\xcc\xc1\x38\x08\xc2\x80\x0f\x00" }  },
                   4682:       /* --- pixel bitmap for cmr210 char#58 : --- */
                   4683:       {  58,98777,                      /* character number, location */
                   4684:          13, 3,    0, 3,      /* topleft row,col, and botleft row,col */
                   4685:           {  3,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4686:             "\xba\x00\x00\x80\x2e" }  },
                   4687:       /* --- pixel bitmap for cmr210 char#59 ; --- */
                   4688:       {  59,99444,                      /* character number, location */
                   4689:          13, 3,   -6, 3,      /* topleft row,col, and botleft row,col */
                   4690:           {  3,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4691:             "\xba\x00\x00\x80\x6e\x92\x52\x00" }  },
                   4692:       /* --- pixel bitmap for cmr210 char#60 (noname) --- */
                   4693:       {  60,91238,                      /* character number, location */
                   4694:          15, 3,   -7, 3,      /* topleft row,col, and botleft row,col */
                   4695:           {  3,   22, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4696:             "\xba\x00\x40\x92\x24\xfd\xff\x7f\x01" }  },
                   4697:       /* --- pixel bitmap for cmr210 char#61 = --- */
                   4698:       {  61,100128,                     /* character number, location */
                   4699:          11, 2,    3, 2,      /* topleft row,col, and botleft row,col */
                   4700:           { 19,    8, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4701:             "\xf1\x0e\x05\xf3\xe0\x5f\x1e\x05" }  },
                   4702:       /* --- pixel bitmap for cmr210 char#62 (noname) --- */
                   4703:       {  62,79646,                      /* character number, location */
                   4704:          15, 2,   -6, 2,      /* topleft row,col, and botleft row,col */
                   4705:           { 10,   21, 3,45, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4706:             "\x41\x83\x81\x50\xf3\xa0\xf3\x41\x50\x32\x81\x82\x72"
                   4707:             "\x72\x8f\x12\x53\x02\x62\x12\x42\x35\x33" }  },
                   4708:       /* --- pixel bitmap for cmr210 char#63 ? --- */
                   4709:       {  63,78724,                      /* character number, location */
                   4710:          20, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   4711:           { 10,   20, 3,43, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4712:             "\x26\x31\x52\x12\x62\x0f\x13\x52\x72\x72\x72\x81\x40"
                   4713:             "\xf3\x41\x50\xf3\xa0\x41\x83\x81\x53" }  },
                   4714:       /* --- pixel bitmap for cmr210 char#64 @ --- */
                   4715:       {  64,101302,                     /* character number, location */
                   4716:          20, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   4717:           { 19,   20, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4718:             "\x80\x0f\x00\x83\x01\x06\x30\x08\x00\x42\x78\x10\x61"
                   4719:             "\x0c\x89\xc1\x29\x04\x8c\x31\x60\x8c\x01\x63\x0c\x18"
                   4720:             "\x63\xc0\x18\x02\x46\x31\x38\x0a\xe3\x89\xf0\x38\x04"
                   4721:             "\x00\xc0\x00\x00\x18\xe0\x01\xff\x01" }  },
                   4722:       /* --- pixel bitmap for cmr210 char#65 A --- */
                   4723:       {  65, 1026,                      /* character number, location */
                   4724:          21, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   4725:           { 20,   21, 3,60, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4726:             "\xf2\x92\x90\xf2\x84\x80\xf2\x71\x23\x70\xf2\x61\x43"
                   4727:             "\x60\xf1\x51\x63\x50\x5a\x50\xf2\x41\x83\x40\x31\xa3"
                   4728:             "\x53\x93\x37\x49" }  },
                   4729:       /* --- pixel bitmap for cmr210 char#66 B --- */
                   4730:       {  66, 2344,                      /* character number, location */
                   4731:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   4732:           { 18,   20, 3,57, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4733:             "\x0e\x73\x72\x63\x73\x20\xf3\x33\x83\x10\x33\x73\x53"
                   4734:             "\x63\x6b\x73\x73\x53\x83\x10\xf4\x33\x93\x33\x83\x43"
                   4735:             "\x73\x2e\x47" }  },
                   4736:       /* --- pixel bitmap for cmr210 char#67 C --- */
                   4737:       {  67, 3289,                      /* character number, location */
                   4738:          21, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   4739:           { 17,   22, 3,67, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4740:             "\x75\x41\x52\x52\x12\x42\x83\x32\xa2\x22\xb2\xf1\x13"
                   4741:             "\xc1\x12\xd1\x0f\x53\xe0\x12\xd1\xf1\x13\xc1\x22\xb1"
                   4742:             "\x42\xa1\x52\x81\x72\x52\xa5\x50" }  },
                   4743:       /* --- pixel bitmap for cmr210 char#68 D --- */
                   4744:       {  68, 4395,                      /* character number, location */
                   4745:          20, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   4746:           { 20,   20, 3,57, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4747:             "\x0e\x93\x73\x73\x92\x63\xa2\x53\xa3\x10\xf1\x33\xb2"
                   4748:             "\x10\xf6\x33\xb3\x33\xb2\x43\xa3\x43\xa2\x53\x92\x63"
                   4749:             "\x73\x4e\x62" }  },
                   4750:       /* --- pixel bitmap for cmr210 char#69 E --- */
                   4751:       {  69, 5808,                      /* character number, location */
                   4752:          20, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   4753:           { 19,   20, 3,83, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4754:             "\x0e\x03\x53\x83\x20\xf1\x33\xa1\x20\xf1\x33\xb1\x10"
                   4755:             "\x33\x61\x41\x43\x61\x93\x52\x9a\x93\x52\x93\x61\x93"
                   4756:             "\x61\x51\xf1\x33\xc1\x33\xb2\x33\xb1\x43\xa2\x43\x93"
                   4757:             "\x1e\x04\x10" }  },
                   4758:       /* --- pixel bitmap for cmr210 char#70 F --- */
                   4759:       {  70, 7055,                      /* character number, location */
                   4760:          20, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   4761:           { 18,   20, 3,61, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4762:             "\x0e\x03\x43\x83\x10\xf1\x33\xa1\x10\xf1\x33\xb1\x33"
                   4763:             "\x61\x41\x33\x61\x83\x52\x8a\x83\x52\x50\xf1\x33\x61"
                   4764:             "\x50\xf5\x33\xca\x81" }  },
                   4765:       /* --- pixel bitmap for cmr210 char#71 G --- */
                   4766:       {  71, 8236,                      /* character number, location */
                   4767:          21, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   4768:           { 20,   22, 3,85, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4769:             "\x76\x41\x73\x52\x12\x62\x93\x52\xa3\x42\xc2\x20\xf1"
                   4770:             "\x13\xd1\x20\x12\xe1\x2f\x33\xe0\x33\x8c\xc3\x32\xc3"
                   4771:             "\x20\xf1\x13\xb3\x20\x22\xb3\x52\xa3\x62\x81\x12\x73"
                   4772:             "\x51\x31\x96\x70" }  },
                   4773:       /* --- pixel bitmap for cmr210 char#72 H --- */
                   4774:       {  72, 9431,                      /* character number, location */
                   4775:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   4776:           { 20,   20, 3,26, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4777:             "\x09\x29\xf7\x33\x83\x30\x3e\x30\xf8\x33\x83\x39\x29" }  },
                   4778:       /* --- pixel bitmap for cmr210 char#73 I --- */
                   4779:       {  73,10122,                      /* character number, location */
                   4780:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   4781:           {  9,   20, 3,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4782:             "\x09\xfe\x33\x30\xf2\x33\x39" }  },
                   4783:       /* --- pixel bitmap for cmr210 char#74 J --- */
                   4784:       {  74,10930,                      /* character number, location */
                   4785:          20, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   4786:           { 13,   21, 3,31, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4787:             "\x49\xfd\x83\x20\x12\x53\x2f\x14\x43\x20\x12\x43\x42"
                   4788:             "\x42\x74\x60" }  },
                   4789:       /* --- pixel bitmap for cmr210 char#75 K --- */
                   4790:       {  75,12093,                      /* character number, location */
                   4791:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   4792:           { 21,   20, 3,82, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4793:             "\x09\x47\x43\x93\x63\x91\x83\x81\x93\x71\xa3\x61\xb3"
                   4794:             "\x51\xc3\x41\xd3\x33\xc3\x24\xc3\x11\x23\xb4\x34\xa3"
                   4795:             "\x53\xa3\x63\x93\x64\x83\x73\x83\x83\x73\x84\x63\x94"
                   4796:             "\x29\x48" }  },
                   4797:       /* --- pixel bitmap for cmr210 char#76 L --- */
                   4798:       {  76,13060,                      /* character number, location */
                   4799:          20, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   4800:           { 17,   20, 3,37, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4801:             "\x0a\x70\xfa\x33\xb0\xf2\x33\xa1\x33\x92\x33\x91\x43"
                   4802:             "\x82\x43\x73\x1e\x02\x13" }  },
                   4803:       /* --- pixel bitmap for cmr210 char#77 M --- */
                   4804:       {  77,14348,                      /* character number, location */
                   4805:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   4806:           { 25,   20, 3,94, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4807:             "\x07\xb7\xf1\x34\xb4\x30\xf1\x31\x13\x91\x13\x30\xf2"
                   4808:             "\x31\x23\x71\x23\x30\xf2\x31\x33\x51\x33\x30\xf1\x31"
                   4809:             "\x43\x31\x43\x30\xf2\x31\x53\x11\x53\x30\xf1\x31\x63"
                   4810:             "\x63\x30\x23\x53\x63\x37\x41\x49" }  },
                   4811:       /* --- pixel bitmap for cmr210 char#78 N --- */
                   4812:       {  78,15518,                      /* character number, location */
                   4813:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   4814:           { 20,   20, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4815:             "\x3f\xe0\x8f\x07\x38\x78\x00\x81\x0e\x10\xc8\x01\x81"
                   4816:             "\x3c\x10\x88\x03\x81\x70\x10\x08\x0f\x81\xe0\x10\x08"
                   4817:             "\x1c\x81\x80\x13\x08\x38\x81\x00\x17\x08\xe0\x81\x00"
                   4818:             "\x1e\x08\xc0\x81\x00\x18\x1c\x80\xf1\x07\x10" }  },
                   4819:       /* --- pixel bitmap for cmr210 char#79 O --- */
                   4820:       {  79,16407,                      /* character number, location */
                   4821:          21, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   4822:           { 19,   22, 3,63, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4823:             "\x75\xc2\x52\x83\x73\x62\x92\x52\xb2\x33\xb3\x10\xf1"
                   4824:             "\x12\xd2\x1f\x63\xd3\xf1\x13\xb3\x10\x22\xb2\x52\x92"
                   4825:             "\x63\x73\x82\x52\xc5\x71" }  },
                   4826:       /* --- pixel bitmap for cmr210 char#80 P --- */
                   4827:       {  80,17542,                      /* character number, location */
                   4828:          20, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   4829:           { 18,   20, 3,37, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4830:             "\x0e\x73\x73\x53\x83\x10\xf4\x33\x93\x33\x83\x43\x73"
                   4831:             "\x5b\x40\xf7\x33\xc9\x91" }  },
                   4832:       /* --- pixel bitmap for cmr210 char#81 Q --- */
                   4833:       {  81,18575,                      /* character number, location */
                   4834:          21, 2,   -6, 2,      /* topleft row,col, and botleft row,col */
                   4835:           { 19,   27, 3,93, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4836:             "\x75\xc2\x52\x83\x73\x62\x92\x52\xb2\x20\xf1\x13\xb3"
                   4837:             "\x10\x12\xd2\x1f\x63\xd3\xf1\x13\xb3\x10\x22\x43\x42"
                   4838:             "\x52\x21\x31\x22\x63\x11\x35\x83\x42\x41\x76\x51\xc2"
                   4839:             "\x41\xc2\x32\xf1\xd5\x10\xe3\x21" }  },
                   4840:       /* --- pixel bitmap for cmr210 char#82 R --- */
                   4841:       {  82,19906,                      /* character number, location */
                   4842:          20, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
                   4843:           { 21,   21, 3,71, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4844:             "\x0d\xb3\x63\x93\x73\x50\xf3\x33\x83\x40\x33\x73\x83"
                   4845:             "\x63\x9a\xb3\x62\xa3\x63\x60\xf3\x33\x73\x50\xf1\x33"
                   4846:             "\x73\x41\x33\x82\x4a\x53\x21\xe0\x33\x21" }  },
                   4847:       /* --- pixel bitmap for cmr210 char#83 S --- */
                   4848:       {  83,20979,                      /* character number, location */
                   4849:          21, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   4850:           { 12,   22, 3,63, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4851:             "\x35\x31\x21\x51\x12\x12\x63\x11\x82\x0f\x22\x91\x03"
                   4852:             "\xa3\x97\x68\x58\x84\xa3\xa2\x0f\x21\x92\x02\x81\x12"
                   4853:             "\x72\x14\x42\x21\x35\x33" }  },
                   4854:       /* --- pixel bitmap for cmr210 char#84 T --- */
                   4855:       {  84,22085,                      /* character number, location */
                   4856:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   4857:           { 19,   20, 3,37, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4858:             "\x1e\x03\x22\x53\x52\x10\xf1\x11\x63\x61\x1f\x21\x73"
                   4859:             "\x71\xfb\x83\x80\x4b\x43" }  },
                   4860:       /* --- pixel bitmap for cmr210 char#85 U --- */
                   4861:       {  85,23085,                      /* character number, location */
                   4862:          20, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   4863:           { 20,   21, 3,37, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4864:             "\x09\x47\x33\x93\x20\xfd\x33\xa1\x30\x42\x91\x83\x81"
                   4865:             "\x92\x71\xb3\x41\xe5\x73" }  },
                   4866:       /* --- pixel bitmap for cmr210 char#86 V --- */
                   4867:       {  86,24097,                      /* character number, location */
                   4868:          20, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   4869:           { 20,   21, 3,71, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4870:             "\x08\x66\x24\xa2\x20\xf1\x33\xa1\x30\x34\x91\x30\xf1"
                   4871:             "\x43\x81\x40\xf2\x53\x61\x50\xf2\x63\x41\x60\xf1\x73"
                   4872:             "\x21\x70\x76\x70\xf1\x84\x80\xf2\x92\x91" }  },
                   4873:       /* --- pixel bitmap for cmr210 char#87 W --- */
                   4874:       {  87,25529,                      /* character number, location */
                   4875:          20, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   4876:           { 28,   21, 3,119, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   4877:             "\x08\x29\x36\x23\x83\x82\x43\x83\x91\x20\xf2\x33\x74"
                   4878:             "\x71\x30\x43\x64\x61\x40\xf1\x43\x51\x23\x51\x40\x53"
                   4879:             "\x41\x23\x41\x50\xf1\x53\x31\x43\x31\x50\x54\x21\x43"
                   4880:             "\x31\x50\xf2\x63\x11\x63\x11\x60\x74\x64\x70\xf1\x73"
                   4881:             "\x83\x70\x82\x82\xe0\x21\xa1\x80" }  },
                   4882:       /* --- pixel bitmap for cmr210 char#88 X --- */
                   4883:       {  88,26680,                      /* character number, location */
                   4884:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   4885:           { 20,   20, 3,78, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4886:             "\x09\x28\x44\x63\x83\x71\x94\x51\xb3\x42\xc3\x31\xd4"
                   4887:             "\x11\xe0\x15\xe0\x23\x90\xf1\x84\x80\x85\xe1\x23\xd2"
                   4888:             "\x33\xc1\x44\xa1\x63\xa1\x73\x81\x84\x63\x74\x37\x58" }  },
                   4889:       /* --- pixel bitmap for cmr210 char#89 Y --- */
                   4890:       {  89,27838,                      /* character number, location */
                   4891:          20, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   4892:           { 22,   20, 3,59, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4893:             "\x09\x67\x34\xa2\x73\xa1\x93\x82\x94\x71\xb3\x62\xc3"
                   4894:             "\x51\xd4\x31\xe0\x13\x31\xe0\x14\x11\xe0\x35\x80\xf7"
                   4895:             "\xa3\x90\x79\x61" }  },
                   4896:       /* --- pixel bitmap for cmr210 char#90 Z --- */
                   4897:       {  90,28891,                      /* character number, location */
                   4898:          20, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   4899:           { 15,   20, 3,68, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4900:             "\x0e\x14\x64\x12\x83\x22\x73\x31\x83\x3f\x11\x73\x40"
                   4901:             "\x73\x50\xf1\x63\x60\xf1\x53\x70\x43\x71\xf1\x33\x81"
                   4902:             "\x23\x91\x23\x82\x13\x96\x7e\x05" }  },
                   4903:       /* --- pixel bitmap for cmr210 char#91 [ --- */
                   4904:       {  91,102065,                     /* character number, location */
                   4905:          22, 2,   -7, 2,      /* topleft row,col, and botleft row,col */
                   4906:           {  6,   29, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4907:             "\xf1\x06\x0f\xe2\x4f\x92\x4f\x16" }  },
                   4908:       /* --- pixel bitmap for cmr210 char#92 (noname) --- */
                   4909:       {  92,120796,                     /* character number, location */
                   4910:          20, 5,   11, 5,      /* topleft row,col, and botleft row,col */
                   4911:           {  9,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4912:             "\x04\x05\x09\x0a\x12\x24\xc8\xb0\xe3\x82\x00" }  },
                   4913:       /* --- pixel bitmap for cmr210 char#93 ] --- */
                   4914:       {  93,102771,                     /* character number, location */
                   4915:          22, 0,   -7, 0,      /* topleft row,col, and botleft row,col */
                   4916:           {  6,   29, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4917:             "\xf1\x06\xfe\x42\xf9\x42\x0f\x16" }  },
                   4918:       /* --- pixel bitmap for cmr210 char#94 \^ --- */
                   4919:       {  94,108984,                     /* character number, location */
                   4920:          20, 4,   16, 4,      /* topleft row,col, and botleft row,col */
                   4921:           {  7,    4, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4922:             "\x08\x8a\x28\x08" }  },
                   4923:       /* --- pixel bitmap for cmr210 char#95 (noname) --- */
                   4924:       {  95,109455,                     /* character number, location */
                   4925:          20, 2,   17, 2,      /* topleft row,col, and botleft row,col */
                   4926:           {  4,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4927:             "\xf6\x06" }  },
                   4928:       /* --- pixel bitmap for cmr210 char#96 (noname) --- */
                   4929:       {  96,103397,                     /* character number, location */
                   4930:          20, 3,   11, 3,      /* topleft row,col, and botleft row,col */
                   4931:           {  3,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4932:             "\x94\x92\xec\x02" }  },
                   4933:       /* --- pixel bitmap for cmr210 char#97 a --- */
                   4934:       {  97,30049,                      /* character number, location */
                   4935:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   4936:           { 14,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4937:             "\xfc\x80\xc3\xe0\x60\x10\x18\x00\x06\xf8\xc1\x61\x18"
                   4938:             "\x18\x03\xc6\x80\x39\x60\x1a\x9c\xfc\x1c" }  },
                   4939:       /* --- pixel bitmap for cmr210 char#98 b --- */
                   4940:       {  98,31067,                      /* character number, location */
                   4941:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   4942:           { 14,   20, 3,51, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4943:             "\x04\xa0\xf5\x22\xa0\x22\x24\x64\x42\x43\x62\x32\x72"
                   4944:             "\x10\xf4\x22\x82\x22\x72\x33\x61\x44\x41\x51\x34\x41" }  },
                   4945:       /* --- pixel bitmap for cmr210 char#99 c --- */
                   4946:       {  99,31858,                      /* character number, location */
                   4947:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   4948:           { 11,   13, 3,33, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4949:             "\x46\x32\x43\x12\x53\x12\x61\x1f\x42\x90\x12\x92\x71"
                   4950:             "\x22\x51\x55\x22" }  },
                   4951:       /* --- pixel bitmap for cmr210 char#100 d --- */
                   4952:       { 100,32861,                      /* character number, location */
                   4953:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   4954:           { 14,   20, 3,52, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4955:             "\x84\x20\xf5\xa2\x20\x44\x22\x51\x44\x41\x72\x32\x72"
                   4956:             "\x2f\x42\x82\x20\x12\x72\x32\x63\x42\x41\x12\x64\x24" }  },
                   4957:       /* --- pixel bitmap for cmr210 char#101 e --- */
                   4958:       { 101,33639,                      /* character number, location */
                   4959:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   4960:           { 11,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4961:             "\xf0\x60\x88\x81\x04\x3c\xe0\xff\x0f\x60\x00\x03\x30"
                   4962:             "\x80\x01\x19\x04\x1f" }  },
                   4963:       /* --- pixel bitmap for cmr210 char#102 f --- */
                   4964:       { 102,34470,                      /* character number, location */
                   4965:          20, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   4966:           { 11,   20, 3,33, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4967:             "\x64\x52\x23\x32\x33\x32\x41\x10\xf2\x32\x68\x30\xfa"
                   4968:             "\x32\x60\x17\x35" }  },
                   4969:       /* --- pixel bitmap for cmr210 char#103 g --- */
                   4970:       { 103,35717,                      /* character number, location */
                   4971:          14, 1,   -7, 1,      /* topleft row,col, and botleft row,col */
                   4972:           { 14,   21, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4973:             "\x00\x1c\x9c\xc8\x18\x13\x04\x06\x83\xc1\x60\x30\x10"
                   4974:             "\x04\x8c\x01\x1d\x60\x00\x18\x00\xfc\x03\xff\x63\xc0"
                   4975:             "\x0c\x60\x03\xd8\x00\x66\xc0\x30\x18\xf8\x03" }  },
                   4976:       /* --- pixel bitmap for cmr210 char#104 h --- */
                   4977:       { 104,36718,                      /* character number, location */
                   4978:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   4979:           { 14,   20, 3,36, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4980:             "\x04\xa0\xf5\x22\xa0\x22\x24\x62\x11\x32\x53\x52\x20"
                   4981:             "\xf8\x22\x62\x26\x26" }  },
                   4982:       /* --- pixel bitmap for cmr210 char#105 i --- */
                   4983:       { 105,37451,                      /* character number, location */
                   4984:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   4985:           {  6,   20, 3,20, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4986:             "\x21\x43\x41\x30\xf3\x64\x20\xfa\x22\x26" }  },
                   4987:       /* --- pixel bitmap for cmr210 char#106 j --- */
                   4988:       { 106,38227,                      /* character number, location */
                   4989:          20,-2,   -6,-2,      /* topleft row,col, and botleft row,col */
                   4990:           {  8,   26, 3,31, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4991:             "\x61\x63\x61\x10\xf3\x80\x35\xfd\x62\x11\x45\x31\x13"
                   4992:             "\x22\x25\x22" }  },
                   4993:       /* --- pixel bitmap for cmr210 char#107 k --- */
                   4994:       { 107,39333,                      /* character number, location */
                   4995:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   4996:           { 13,   20, 3,64, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   4997:             "\x04\x90\xf5\x22\x90\x22\x45\x22\x52\x42\x51\x52\x41"
                   4998:             "\x62\x22\x72\x12\x83\x12\x50\xf1\x22\x32\x40\x22\x42"
                   4999:             "\x52\x43\x42\x53\x16\x25" }  },
                   5000:       /* --- pixel bitmap for cmr210 char#108 l --- */
                   5001:       { 108,39970,                      /* character number, location */
                   5002:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   5003:           {  6,   20, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5004:             "\x04\x20\xfe\x22\x20\xf2\x22\x26" }  },
                   5005:       /* --- pixel bitmap for cmr210 char#109 m --- */
                   5006:       { 109,41289,                      /* character number, location */
                   5007:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   5008:           { 22,   13, 3,38, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5009:             "\x04\x24\x44\x62\x11\x32\x21\x32\x53\x53\x52\x20\xf8"
                   5010:             "\x22\x62\x62\x26\x26\x26" }  },
                   5011:       /* --- pixel bitmap for cmr210 char#110 n --- */
                   5012:       { 110,42296,                      /* character number, location */
                   5013:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   5014:           { 14,   13, 3,26, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5015:             "\x04\x24\x62\x11\x32\x53\x52\x20\xf8\x22\x62\x26\x26" }  },
                   5016:       /* --- pixel bitmap for cmr210 char#111 o --- */
                   5017:       { 111,43007,                      /* character number, location */
                   5018:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   5019:           { 13,   13, 3,35, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5020:             "\x45\x62\x52\x32\x72\x21\x91\x1f\x42\x92\xf1\x12\x72"
                   5021:             "\x10\x22\x52\x65\x46" }  },
                   5022:       /* --- pixel bitmap for cmr210 char#112 p --- */
                   5023:       { 112,44085,                      /* character number, location */
                   5024:          13, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   5025:           { 14,   19, 3,49, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5026:             "\x04\x24\x64\x42\x43\x62\x32\x72\x10\xf4\x22\x82\x22"
                   5027:             "\x72\x33\x61\x44\x32\x52\x24\x40\xf4\x22\xa6\x82" }  },
                   5028:       /* --- pixel bitmap for cmr210 char#113 q --- */
                   5029:       { 113,45105,                      /* character number, location */
                   5030:          13, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   5031:           { 14,   19, 3,54, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5032:             "\x44\x31\x52\x31\x12\x41\x63\x32\x72\x2f\x42\x82\x20"
                   5033:             "\x12\x72\x32\x63\x42\x41\x12\x64\x22\x20\xf4\xa2\x20"
                   5034:             "\x86" }  },
                   5035:       /* --- pixel bitmap for cmr210 char#114 r --- */
                   5036:       { 114,45984,                      /* character number, location */
                   5037:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   5038:           { 10,   13, 3,25, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5039:             "\x04\x14\x10\xf1\x23\x23\x22\x41\x10\xf7\x22\x67\x30" }  },
                   5040:       /* --- pixel bitmap for cmr210 char#115 s --- */
                   5041:       { 115,46927,                      /* character number, location */
                   5042:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   5043:           {  9,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5044:             "\xbc\x84\x0d\x1a\x74\xc0\x07\x3f\xe0\x81\x03\x0f\x3e"
                   5045:             "\x96\x07" }  },
                   5046:       /* --- pixel bitmap for cmr210 char#116 t --- */
                   5047:       { 116,47764,                      /* character number, location */
                   5048:          18, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   5049:           {  8,   18, 3,31, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5050:             "\xf2\x31\x40\x22\x53\x48\xf6\x22\x40\xf2\x22\x31\x31"
                   5051:             "\x31\x43\x15" }  },
                   5052:       /* --- pixel bitmap for cmr210 char#117 u --- */
                   5053:       { 117,48697,                      /* character number, location */
                   5054:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   5055:           { 14,   13, 3,26, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5056:             "\x04\x44\x20\xf8\x22\x62\x20\x22\x53\x51\x44\x64\x24" }  },
                   5057:       /* --- pixel bitmap for cmr210 char#118 v --- */
                   5058:       { 118,49575,                      /* character number, location */
                   5059:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   5060:           { 13,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5061:             "\x1f\x9e\x81\x31\x10\x06\x82\x21\x30\x04\x4c\x80\x09"
                   5062:             "\x30\x01\x1c\x80\x03\x70\x00\x04\x00" }  },
                   5063:       /* --- pixel bitmap for cmr210 char#119 w --- */
                   5064:       { 119,50834,                      /* character number, location */
                   5065:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   5066:           { 19,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5067:             "\x1f\x9f\x77\x30\x18\x43\x41\x18\x1a\xc2\xd0\x10\x4c"
                   5068:             "\x44\x60\x62\x02\x13\x13\x70\x50\x80\x83\x03\x1c\x1c"
                   5069:             "\xc0\x60\x00\x02\x02" }  },
                   5070:       /* --- pixel bitmap for cmr210 char#120 x --- */
                   5071:       { 120,51829,                      /* character number, location */
                   5072:          13, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   5073:           { 15,   13, 3,46, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5074:             "\x15\x35\x42\x52\x72\x41\x82\x31\xa2\x11\xc3\xd2\xc3"
                   5075:             "\xb1\x22\x92\x32\x81\x43\x62\x52\x36\x36" }  },
                   5076:       /* --- pixel bitmap for cmr210 char#121 y --- */
                   5077:       { 121,52904,                      /* character number, location */
                   5078:          13, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   5079:           { 13,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5080:             "\x1f\x9e\x81\x31\x10\x06\x82\x21\x30\x04\x4c\x80\x09"
                   5081:             "\x30\x01\x1c\x80\x03\x70\x00\x04\x80\x00\x08\x38\x01"
                   5082:             "\x27\xe0\x02\x38\x00" }  },
                   5083:       /* --- pixel bitmap for cmr210 char#122 z --- */
                   5084:       { 122,53881,                      /* character number, location */
                   5085:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   5086:           { 11,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5087:             "\xff\x1f\x58\xe0\x02\x13\x0c\x30\xc0\x01\x86\x18\x64"
                   5088:             "\xa0\x03\x0d\xfc\x7f" }  },
                   5089:       /* --- pixel bitmap for cmr210 char#123 (noname) --- */
                   5090:       { 123,121416,                     /* character number, location */
                   5091:           9, 0,    8, 0,      /* topleft row,col, and botleft row,col */
                   5092:           { 15,    1, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5093:             "\xff\x7f" }  },
                   5094:       /* --- pixel bitmap for cmr210 char#124 (noname) --- */
                   5095:       { 124,122236,                     /* character number, location */
                   5096:           9, 0,    8, 0,      /* topleft row,col, and botleft row,col */
                   5097:           { 29,    1, 2, 2, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5098:             "\x00\x1d" }  },
                   5099:       /* --- pixel bitmap for cmr210 char#125 (noname) --- */
                   5100:       { 125,110134,                     /* character number, location */
                   5101:          20, 4,   15, 4,      /* topleft row,col, and botleft row,col */
                   5102:           {  9,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5103:             "\x8c\x19\x1b\x1b\x13\x02" }  },
                   5104:       /* --- pixel bitmap for cmr210 char#126 \~ --- */
                   5105:       { 126,110822,                     /* character number, location */
                   5106:          19, 2,   16, 2,      /* topleft row,col, and botleft row,col */
                   5107:           { 11,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5108:             "\x1c\xf4\x5f\x70\x00" }  },
                   5109:       /* --- pixel bitmap for cmr210 char#127 (noname) --- */
                   5110:       { 127,111503,                     /* character number, location */
                   5111:          20, 3,   17, 3,      /* topleft row,col, and botleft row,col */
                   5112:           {  9,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5113:             "\x82\x8e\x0b\x02" }  },
1.1       albertel 5114:       /* --- trailer  --- */
1.2       albertel 5115:       { -99, -999,  0,0,0,0, { 0,0,0,0, (pixbyte *)"\0" }  }
1.1       albertel 5116:    } ;
                   5117: 
                   5118: 
1.2       albertel 5119: /* --- size=7 for .250gf ---
                   5120:  * mf '\mode=preview; mag=magstep(-12.84858895680446863032); input cmr10'
                   5121:  * --------------------------------------------------------------------- */
                   5122: /* --- fontdef for cmr250 --- */
                   5123: static	chardef  cmr250[] =
                   5124:    {
                   5125:       /* --- pixel bitmap for cmr250 char#0 \Gamma --- */
                   5126:       {   0,55643,                      /* character number, location */
                   5127:          24, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   5128:           { 21,   24, 3,33, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5129:             "\x0e\x06\x53\xa3\x53\xb2\x53\xc1\x53\xc2\xf2\x43\xd1"
                   5130:             "\xfe\x43\xec\x91" }  },
                   5131:       /* --- pixel bitmap for cmr250 char#1 \Delta --- */
                   5132:       {   1,56572,                      /* character number, location */
                   5133:          25, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   5134:           { 25,   25, 3,114, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   5135:             "\xc1\xc0\xf1\xb3\xb0\xa5\xe0\x61\x13\xe0\x51\x24\xe0"
                   5136:             "\x41\x33\xe0\x31\x44\xe0\x21\x53\xe0\x11\x64\xe1\x73"
                   5137:             "\xd1\x84\xc1\x93\xb1\xa4\xa1\xb3\x91\xc4\x81\xd3\x71"
                   5138:             "\xe4\x61\xe0\x13\x51\xe0\x24\x41\xe0\x33\x31\xe0\x44"
                   5139:             "\x2e\x09\x1f\x1e\x0b" }  },
                   5140:       /* --- pixel bitmap for cmr250 char#2 \Theta --- */
                   5141:       {   2,57739,                      /* character number, location */
                   5142:          25, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   5143:           { 23,   26, 3,113, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   5144:             "\x87\xe3\x53\xb3\x73\x93\x93\x73\xb3\x30\xf1\x23\xd3"
                   5145:             "\x20\x14\xd4\x23\xe0\x13\x14\xe0\x18\x31\x71\x34\x0f"
                   5146:             "\x24\x39\x34\x04\x31\x71\x34\x0f\x14\xe0\x14\x13\xe0"
                   5147:             "\x13\x24\xd4\x10\xf1\x23\xd3\x20\x33\xb3\x73\x93\x93"
                   5148:             "\x73\xb3\x53\xe7\x8b" }  },
                   5149:       /* --- pixel bitmap for cmr250 char#3 \Lambda --- */
                   5150:       {   3,58741,                      /* character number, location */
                   5151:          25, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   5152:           { 22,   25, 3,76, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5153:             "\xf2\xa2\xa0\xf2\x94\x90\x81\x14\x80\xf1\x81\x23\x80"
                   5154:             "\x72\x24\x70\xf2\x71\x43\x70\xf2\x61\x63\x60\xf2\x51"
                   5155:             "\x83\x50\xf2\x41\xa3\x40\x32\xa4\x54\x94\x37\x5a" }  },
                   5156:       /* --- pixel bitmap for cmr250 char#4 \Xi --- */
                   5157:       {   4,60150,                      /* character number, location */
                   5158:          24, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   5159:           { 21,   24, 3,64, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5160:             "\xf1\x1e\x05\x10\xf2\x11\xe0\x31\x10\xf3\xe0\x70\xf1"
                   5161:             "\x41\xb1\x40\xf1\x4d\x40\xf1\x41\xb1\x40\xf3\xe0\x7f"
                   5162:             "\x21\xe0\x51\x0f\x1e\x07" }  },
                   5163:       /* --- pixel bitmap for cmr250 char#5 \Pi --- */
                   5164:       {   5,61323,                      /* character number, location */
                   5165:          24, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   5166:           { 26,   24, 3,22, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5167:             "\x0e\x0c\xfe\x43\xc3\x40\xf6\x43\xc3\x4b\x4b" }  },
                   5168:       /* --- pixel bitmap for cmr250 char#6 \Sigma --- */
                   5169:       {   6,62486,                      /* character number, location */
                   5170:          24, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   5171:           { 21,   24, 3,97, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5172:             "\x0e\x06\x23\xc4\x24\xd2\x33\xe1\x43\xd2\x34\xd1\x43"
                   5173:             "\xd1\x53\xc1\x54\xe0\x43\xe0\x53\xe0\x44\xe0\x43\xe0"
                   5174:             "\x51\xe0\x51\xe0\x51\xc1\x61\xd1\x51\xe1\x41\xe2\x41"
                   5175:             "\xe1\x41\xe2\x31\xd4\x2e\x05\x1e\x06\x13" }  },
                   5176:       /* --- pixel bitmap for cmr250 char#7 \Upsilon --- */
                   5177:       {   7,63612,                      /* character number, location */
                   5178:          25, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   5179:           { 23,   25, 3,55, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5180:             "\x34\x94\x47\x77\x28\x58\x12\x53\x33\x53\x72\x32\x72"
                   5181:             "\x73\x13\x71\xf1\x92\x12\x90\xa1\x11\xa0\xfe\xa3\xa0"
                   5182:             "\x6b\x60" }  },
                   5183:       /* --- pixel bitmap for cmr250 char#8 \Phi --- */
                   5184:       {   8,64682,                      /* character number, location */
                   5185:          24, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   5186:           { 21,   24, 3,81, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5187:             "\x5b\x50\xf3\x93\x90\x77\xb3\x23\x23\x64\x33\x34\x34"
                   5188:             "\x43\x44\x23\x53\x53\x1f\x34\x53\x54\x13\x53\x53\x24"
                   5189:             "\x43\x44\x34\x33\x34\x63\x23\x23\xb7\x70\xf3\x93\x90"
                   5190:             "\x5b\x51" }  },
                   5191:       /* --- pixel bitmap for cmr250 char#9 \Psi --- */
                   5192:       {   9,65841,                      /* character number, location */
                   5193:          24, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   5194:           { 23,   24, 3,67, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5195:             "\x6b\x60\xf2\xa3\xa4\x63\x64\xf7\x23\x53\x53\x20\x32"
                   5196:             "\x53\x52\x63\x43\x43\x72\x43\x42\x92\x33\x32\xb3\x13"
                   5197:             "\x13\xe7\x80\xf3\xa3\xa0\x6b\x63" }  },
                   5198:       /* --- pixel bitmap for cmr250 char#10 \Omega --- */
                   5199:       {  10,67046,                      /* character number, location */
                   5200:          25, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   5201:           { 21,   25, 3,87, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5202:             "\x77\xc3\x53\x83\x93\x30\xf1\x23\xb3\x20\x14\xb4\x1f"
                   5203:             "\x54\xd4\x13\xd3\x24\xb4\x10\xf1\x23\xb3\x20\x32\xb2"
                   5204:             "\x63\x93\x72\x92\x41\x41\x91\x42\x42\x72\x43\x32\x72"
                   5205:             "\x32\xf2\x16\x76\x14" }  },
                   5206:       /* --- pixel bitmap for cmr250 char#11 \ff --- */
                   5207:       {  11,114273,                     /* character number, location */
                   5208:          24, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   5209:           { 22,   24, 3,51, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5210:             "\x85\x35\x72\x51\x12\x23\x52\x54\x33\x42\x63\x51\x10"
                   5211:             "\xf4\x42\x72\x7e\x05\x30\xfc\x42\x72\x70\x17\x37\x4f" }  },
                   5212:       /* --- pixel bitmap for cmr250 char#12 \fi --- */
                   5213:       {  12,115487,                     /* character number, location */
                   5214:          24, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   5215:           { 18,   24, 3,42, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5216:             "\x85\xb2\x51\x92\x53\x72\x63\x72\x71\x40\xf3\x42\xce"
                   5217:             "\x01\x30\xfc\x42\x72\x30\x17\x37" }  },
                   5218:       /* --- pixel bitmap for cmr250 char#13 \fl --- */
                   5219:       {  13,116683,                     /* character number, location */
                   5220:          24, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   5221:           { 18,   24, 3,36, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5222:             "\x87\x92\x43\x82\x53\x30\xf5\x42\x72\x3e\x01\x30\xfc"
                   5223:             "\x42\x72\x30\x18\x18" }  },
                   5224:       /* --- pixel bitmap for cmr250 char#14 \ffi --- */
                   5225:       {  14,118332,                     /* character number, location */
                   5226:          24, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   5227:           { 28,   24, 3,60, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5228:             "\x86\x45\xb3\x51\x12\x51\x92\x64\x53\x72\x73\x63\x72"
                   5229:             "\x82\x71\x40\xf3\x42\x82\xce\x0b\x30\xfc\x42\x82\x72"
                   5230:             "\x30\x18\x28\x18" }  },
                   5231:       /* --- pixel bitmap for cmr250 char#15 \ffl --- */
                   5232:       {  15,120021,                     /* character number, location */
                   5233:          24, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   5234:           { 28,   24, 3,56, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5235:             "\x86\x47\x93\x51\x12\x43\x82\x64\x53\x72\x73\x72\x30"
                   5236:             "\xf4\x42\x82\x72\x3e\x0b\x30\xfc\x42\x82\x72\x30\x18"
                   5237:             "\x28\x18" }  },
                   5238:       /* --- pixel bitmap for cmr250 char#16 \imath --- */
                   5239:       {  16,81399,                      /* character number, location */
                   5240:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   5241:           {  8,   15, 3,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5242:             "\x05\x30\xfc\x32\x38" }  },
                   5243:       /* --- pixel bitmap for cmr250 char#17 \jmath --- */
                   5244:       {  17,82107,                      /* character number, location */
                   5245:          15,-2,   -7,-2,      /* topleft row,col, and botleft row,col */
                   5246:           {  9,   22, 3,23, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5247:             "\x45\xfe\x72\xf1\x72\x11\x55\x32\x13\x31\x35\x30" }  },
                   5248:       /* --- pixel bitmap for cmr250 char#18 \gravesym --- */
                   5249:       {  18,105464,                     /* character number, location */
                   5250:          24, 4,   18, 4,      /* topleft row,col, and botleft row,col */
                   5251:           {  6,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5252:             "\xc3\x61\x30\x18\x0c" }  },
                   5253:       /* --- pixel bitmap for cmr250 char#19 \acutesym --- */
                   5254:       {  19,106039,                     /* character number, location */
                   5255:          24, 7,   18, 7,      /* topleft row,col, and botleft row,col */
                   5256:           {  6,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5257:             "\x30\x8e\x31\xc6\x00" }  },
                   5258:       /* --- pixel bitmap for cmr250 char#20 \checksym --- */
                   5259:       {  20,106670,                     /* character number, location */
                   5260:          22, 4,   18, 4,      /* topleft row,col, and botleft row,col */
                   5261:           {  9,    4, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5262:             "\x83\x8d\xe1\x80\x00" }  },
                   5263:       /* --- pixel bitmap for cmr250 char#21 \brevesym --- */
                   5264:       {  21,107292,                     /* character number, location */
                   5265:          24, 3,   19, 3,      /* topleft row,col, and botleft row,col */
                   5266:           { 11,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5267:             "\x01\x0c\xa0\x80\x08\x82\x0f" }  },
                   5268:       /* --- pixel bitmap for cmr250 char#22 (noname) --- */
                   5269:       {  22,107880,                     /* character number, location */
                   5270:          21, 2,   20, 2,      /* topleft row,col, and botleft row,col */
                   5271:           { 13,    1, 3, 2, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5272:             "\x0d" }  },
                   5273:       /* --- pixel bitmap for cmr250 char#23 (noname) --- */
                   5274:       {  23,108657,                     /* character number, location */
                   5275:          25,10,   19,10,      /* topleft row,col, and botleft row,col */
                   5276:           {  6,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5277:             "\x5e\x18\x86\xa1\x07" }  },
                   5278:       /* --- pixel bitmap for cmr250 char#24 (noname) --- */
                   5279:       {  24,109357,                     /* character number, location */
                   5280:          -1, 5,   -7, 5,      /* topleft row,col, and botleft row,col */
                   5281:           {  7,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5282:             "\x0c\x0e\x18\x0c\xfe\x01" }  },
                   5283:       /* --- pixel bitmap for cmr250 char#25 \ss --- */
                   5284:       {  25,83210,                      /* character number, location */
                   5285:          24, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   5286:           { 15,   24, 3,81, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5287:             "\x65\x92\x32\x72\x52\x20\xf3\x32\x72\x10\x32\x62\x52"
                   5288:             "\x52\x35\x23\x82\x51\x72\x62\x52\x71\x52\x72\x42\x81"
                   5289:             "\x10\xf4\x32\x82\x32\x81\x42\x22\x32\x42\x22\x22\x25"
                   5290:             "\x34\x32" }  },
                   5291:       /* --- pixel bitmap for cmr250 char#26 \ae --- */
                   5292:       {  26,84591,                      /* character number, location */
                   5293:          15, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   5294:           { 22,   15, 3,77, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5295:             "\x27\x55\x43\x42\x32\x41\x33\x52\x11\x71\x31\x73\x81"
                   5296:             "\xf1\xa2\x91\x6e\x02\x33\x42\xb3\x62\xb2\x72\xa2\x82"
                   5297:             "\xa2\x83\x83\x81\x12\x71\x12\x52\x32\x42\x45\x74\x35" }  },
                   5298:       /* --- pixel bitmap for cmr250 char#27 \oe --- */
                   5299:       {  27,85743,                      /* character number, location */
                   5300:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   5301:           { 25,   15, 3,77, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5302:             "\x54\x85\x62\x42\x42\x51\x41\x81\x22\x71\x22\x84\x81"
                   5303:             "\x21\xa2\xa3\xa2\xa3\xad\x0f\x22\xa2\xb0\x12\x84\xb2"
                   5304:             "\x84\x91\x22\x62\x22\x81\x32\x42\x42\x52\x64\x85\x35" }  },
                   5305:       /* --- pixel bitmap for cmr250 char#28 (noname) --- */
                   5306:       {  28,86593,                      /* character number, location */
                   5307:          18, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   5308:           { 15,   21, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5309:             "\x00\x20\x00\x18\x00\x04\x7c\x81\xc1\x60\xe0\x18\xd8"
                   5310:             "\x04\x44\x03\xe1\x81\xf0\x20\x78\x08\x3c\x04\x16\x01"
                   5311:             "\xd9\xc0\x38\x30\x18\x0c\xf4\x01\x01\xc0\x00\x20\x00"
                   5312:             "\x00" }  },
                   5313:       /* --- pixel bitmap for cmr250 char#29 \AE --- */
                   5314:       {  29,88407,                      /* character number, location */
                   5315:          24, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   5316:           { 29,   24, 3,143, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   5317:             "\x7e\x06\xd1\x13\x83\xc1\x23\x92\xc1\x23\xa1\xb2\x23"
                   5318:             "\xa2\x10\xf1\x91\x33\xb1\x10\x82\x33\xb1\x10\xf1\x81"
                   5319:             "\x43\x61\x60\x72\x43\x61\xd1\x53\x52\xde\x02\xc1\x63"
                   5320:             "\x52\xc1\x63\x61\xc1\x63\x61\x51\x51\x73\x61\x51\x51"
                   5321:             "\x73\xc1\x51\x73\xb2\xf1\x41\x83\xb1\x10\x41\x83\xa2"
                   5322:             "\x34\x73\x93\x18\x2e\x04\x10" }  },
                   5323:       /* --- pixel bitmap for cmr250 char#30 \OE --- */
                   5324:       {  30,90159,                      /* character number, location */
                   5325:          25, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   5326:           { 32,   26, 3,143, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   5327:             "\x87\xe0\x93\x5e\x02\x73\x74\x83\x63\x84\x92\x53\x94"
                   5328:             "\xa1\x44\x94\xa2\x33\xa4\xb1\x24\xa4\xb1\x23\xb4\x71"
                   5329:             "\x31\x1f\x14\xc3\x71\x54\xc3\x62\x54\xcb\x54\xc3\x62"
                   5330:             "\x5f\x14\xc3\x71\x54\xc3\x71\x41\xf1\x14\xa4\xc1\x23"
                   5331:             "\xa4\xb2\x24\x94\xb1\x43\x94\xb1\x53\x84\xa2\x63\x74"
                   5332:             "\x93\x73\x5e\x03\x97\xe0\x30" }  },
                   5333:       /* --- pixel bitmap for cmr250 char#31 (noname) --- */
                   5334:       {  31,91201,                      /* character number, location */
                   5335:          25, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
                   5336:           { 23,   27, 3,137, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   5337:             "\x87\x51\x83\x53\x21\x82\x93\x82\xb2\x72\xc3\x30\xf1"
                   5338:             "\x22\xc1\x22\x20\x13\xb1\x33\x22\xb1\x52\x13\xb1\x56"
                   5339:             "\xa1\x63\x0f\x13\x91\x73\x03\x81\x83\x0f\x13\x71\x93"
                   5340:             "\x03\x61\xa3\x12\x51\xb2\x23\x41\xa3\x32\x31\xb2\x42"
                   5341:             "\x21\xc2\x52\x11\xb2\x72\xb2\x83\x92\x91\x13\x53\x91"
                   5342:             "\x47\xa1\xe0\x63" }  },
                   5343:       /* --- pixel bitmap for cmr250 char#32 (noname) --- */
                   5344:       {  32,109859,                     /* character number, location */
                   5345:          14, 1,   10, 1,      /* topleft row,col, and botleft row,col */
                   5346:           {  8,    4, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5347:             "\x80\xe0\x1c\x03" }  },
                   5348:       /* --- pixel bitmap for cmr250 char#33 ! --- */
                   5349:       {  33,91918,                      /* character number, location */
                   5350:          25, 3,    0, 3,      /* topleft row,col, and botleft row,col */
                   5351:           {  4,   25, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5352:             "\xf6\xff\xff\x6f\x66\x66\x66\x66\x06\x00\x60\xff\x06" }  },
                   5353:       /* --- pixel bitmap for cmr250 char#34 " --- */
                   5354:       {  34,121026,                     /* character number, location */
                   5355:          24, 1,   13, 1,      /* topleft row,col, and botleft row,col */
                   5356:           { 11,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5357:             "\x06\x7b\xfc\xe3\x1d\x8e\x40\x04\x22\x90\x40\x04\x12"
                   5358:             "\x88\x40\x00" }  },
                   5359:       /* --- pixel bitmap for cmr250 char#35 # --- */
                   5360:       {  35,93412,                      /* character number, location */
                   5361:          24, 2,   -7, 2,      /* topleft row,col, and botleft row,col */
                   5362:           { 25,   31, 3,93, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5363:             "\xf2\xb2\x62\x40\xa3\x53\x40\xf3\xa2\x62\x50\x93\x53"
                   5364:             "\xe2\x62\x6f\x1e\x0b\xf1\x82\x62\x70\x73\x53\x70\xf2"
                   5365:             "\x72\x62\x8f\x1e\x0b\x62\x62\xe3\x53\x90\xf4\x52\x62"
                   5366:             "\xa0\x43\x53\xa0\xf2\x42\x62\xb1" }  },
                   5367:       /* --- pixel bitmap for cmr250 char#36 $ --- */
                   5368:       {  36,77523,                      /* character number, location */
                   5369:          26, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
                   5370:           { 13,   28, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5371:             "\x40\x00\x08\xc0\x07\x24\x43\x84\x84\xd0\x10\x1c\xe2"
                   5372:             "\x43\x7c\x08\x1d\x01\x2f\xc0\x0f\xf0\x07\xfc\x01\x7a"
                   5373:             "\x40\x0c\x88\x0b\xe1\x23\x3c\x84\x83\xb0\x10\x13\x22"
                   5374:             "\x4c\x02\x3e\x00\x01\x20\x00" }  },
                   5375:       /* --- pixel bitmap for cmr250 char#37 % --- */
                   5376:       {  37,94693,                      /* character number, location */
                   5377:          26, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
                   5378:           { 25,   28, 3,167, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   5379:             "\x34\xd2\x52\x31\xb3\x42\x52\x83\x51\x61\x13\x26\x42"
                   5380:             "\x71\x32\x23\x52\x71\x72\x62\x71\x63\x62\x71\x53\x72"
                   5381:             "\x71\x52\x82\x71\x43\x91\x61\x43\xa2\x51\x42\xc2\x31"
                   5382:             "\x43\xd4\x43\xe0\x82\x54\xd3\x42\x31\xc2\x42\x51\xa3"
                   5383:             "\x41\x61\x93\x42\x71\x82\x52\x71\x73\x52\x71\x63\x62"
                   5384:             "\x71\x62\x72\x71\x53\x72\x71\x43\x91\x61\x52\xa2\x51"
                   5385:             "\x43\xb2\x31\x52\xd4\x30" }  },
                   5386:       /* --- pixel bitmap for cmr250 char#38 & --- */
                   5387:       {  38,78845,                      /* character number, location */
                   5388:          25, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   5389:           { 24,   26, 3,133, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   5390:             "\x83\xe0\x61\x31\xe0\x41\x51\xb0\xf2\x52\x51\xb0\xf1"
                   5391:             "\x52\x41\xc0\x52\x31\xe0\x42\x21\xe0\x63\x78\x62\xa4"
                   5392:             "\x82\xb1\xa3\xa1\x91\x12\x91\x91\x32\x71\x91\x43\x61"
                   5393:             "\x81\x62\x51\x81\x82\x41\x72\x82\x31\x82\x92\x11\x92"
                   5394:             "\xa2\x93\xa3\x81\x12\x81\x22\x61\x32\x52\x42\x42\x55"
                   5395:             "\x84\x30" }  },
                   5396:       /* --- pixel bitmap for cmr250 char#39 ' --- */
                   5397:       {  39,95417,                      /* character number, location */
                   5398:          24, 3,   13, 3,      /* topleft row,col, and botleft row,col */
                   5399:           {  5,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5400:             "\xe6\x7d\x0b\x21\x44\x88\x08" }  },
                   5401:       /* --- pixel bitmap for cmr250 char#40 ( --- */
                   5402:       {  40,96003,                      /* character number, location */
                   5403:          26, 3,   -8, 3,      /* topleft row,col, and botleft row,col */
                   5404:           {  8,   34, 3,62, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5405:             "\x71\x61\x61\x61\x62\x61\x62\x61\x50\xf1\x12\x50\xf1"
                   5406:             "\x11\x6f\x92\x60\xf1\x11\x60\xf1\x12\x50\x21\x72\x71"
                   5407:             "\x72\x71\x81\x81\x81" }  },
                   5408:       /* --- pixel bitmap for cmr250 char#41 ) --- */
                   5409:       {  41,96634,                      /* character number, location */
                   5410:          26, 2,   -8, 2,      /* topleft row,col, and botleft row,col */
                   5411:           {  8,   34, 3,63, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5412:             "\x01\x81\x81\x81\x72\x71\x72\x71\x20\xf1\x52\x10\xf1"
                   5413:             "\x61\x10\xf9\x62\xf1\x61\x10\xf1\x52\x10\x51\x62\x61"
                   5414:             "\x62\x61\x61\x61\x61\x71" }  },
                   5415:       /* --- pixel bitmap for cmr250 char#42 * --- */
                   5416:       {  42,97289,                      /* character number, location */
                   5417:          26, 2,   11, 2,      /* topleft row,col, and botleft row,col */
                   5418:           { 13,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5419:             "\x40\x00\x08\x00\x01\x21\x74\xc4\xbd\x1e\xfe\x00\x07"
                   5420:             "\xf8\xc3\xeb\x1d\x71\x21\x04\x04\x80\x00\x10\x00" }  },
                   5421:       /* --- pixel bitmap for cmr250 char#43 + --- */
                   5422:       {  43,97999,                      /* character number, location */
                   5423:          20, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
                   5424:           { 23,   22, 3,15, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5425:             "\xf9\xb2\xaf\x1e\x09\xf9\xb2\xa1" }  },
                   5426:       /* --- pixel bitmap for cmr250 char#44 (noname) --- */
                   5427:       {  44,98598,                      /* character number, location */
                   5428:           4, 3,   -7, 3,      /* topleft row,col, and botleft row,col */
                   5429:           {  4,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5430:             "\xf6\xef\x88\x48\x24\x02" }  },
                   5431:       /* --- pixel bitmap for cmr250 char#45 (noname) --- */
                   5432:       {  45,121549,                     /* character number, location */
                   5433:           8, 0,    6, 0,      /* topleft row,col, and botleft row,col */
                   5434:           { 10,    2, 3, 4, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5435:             "\xf1\x0a" }  },
                   5436:       /* --- pixel bitmap for cmr250 char#46 (noname) --- */
                   5437:       {  46,99073,                      /* character number, location */
                   5438:           4, 3,    0, 3,      /* topleft row,col, and botleft row,col */
                   5439:           {  4,    4, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5440:             "\xf6\x6f" }  },
                   5441:       /* --- pixel bitmap for cmr250 char#47 / --- */
                   5442:       {  47,99583,                      /* character number, location */
                   5443:          26, 2,   -9, 2,      /* topleft row,col, and botleft row,col */
                   5444:           { 13,   35, 3,107, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   5445:             "\xf1\xb2\xa3\xf1\xa2\x10\x93\x10\xf1\x92\x20\x83\x20"
                   5446:             "\xf1\x82\x30\x73\x30\xf1\x72\x40\x63\x40\xf1\x62\x50"
                   5447:             "\x53\x50\xf1\x52\x60\x43\x60\xf1\x42\x70\x33\x70\xf1"
                   5448:             "\x32\x80\x23\x80\xf1\x22\x90\x13\x90\xf1\x12\xa3\xaf"
                   5449:             "\x12\xb1" }  },
                   5450:       /* --- pixel bitmap for cmr250 char#48 0 --- */
                   5451:       {  48,67814,                      /* character number, location */
                   5452:          23, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   5453:           { 13,   24, 3,55, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5454:             "\x45\x72\x32\x52\x52\x20\xf1\x12\x72\x10\x11\x91\x1f"
                   5455:             "\xb2\x92\x11\x91\x10\xf1\x12\x72\x10\x22\x52\x52\x32"
                   5456:             "\x75\x43" }  },
                   5457:       /* --- pixel bitmap for cmr250 char#49 1 --- */
                   5458:       {  49,68628,                      /* character number, location */
                   5459:          23, 3,    0, 3,      /* topleft row,col, and botleft row,col */
                   5460:           { 10,   23, 3,22, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5461:             "\x51\x73\x43\x12\x40\xfe\x42\x40\xf3\x42\x4a" }  },
                   5462:       /* --- pixel bitmap for cmr250 char#50 2 --- */
                   5463:       {  50,69617,                      /* character number, location */
                   5464:          23, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   5465:           { 13,   23, 3,65, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5466:             "\x45\x62\x42\x41\x72\x31\x82\x13\x73\x0f\x14\x63\x12"
                   5467:             "\x73\xf1\xa3\x93\xa2\xa3\xa2\xa2\xa2\xa2\xa2\xa2\x71"
                   5468:             "\x31\x81\x21\x81\x2b\x1c\x11" }  },
                   5469:       /* --- pixel bitmap for cmr250 char#51 3 --- */
                   5470:       {  51,70673,                      /* character number, location */
                   5471:          23, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   5472:           { 15,   24, 3,67, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5473:             "\x55\x82\x43\x51\x73\x20\xf2\x13\x73\x10\x21\x83\xc2"
                   5474:             "\xc3\xc2\xc2\x95\xe3\xd3\xd3\xc4\x12\x84\x0f\x24\x74"
                   5475:             "\x11\x93\x21\x83\x42\x53\x76\x52" }  },
                   5476:       /* --- pixel bitmap for cmr250 char#52 4 --- */
                   5477:       {  52,71625,                      /* character number, location */
                   5478:          23, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   5479:           { 15,   23, 3,75, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5480:             "\xf1\x92\x40\xf1\x83\x40\x71\x12\x40\xf1\x61\x22\x40"
                   5481:             "\x51\x32\x40\xf1\x41\x42\x40\x31\x52\x40\xf1\x21\x62"
                   5482:             "\x40\x11\x72\x42\x72\x4e\x01\xf5\x92\x40\x68\x12" }  },
                   5483:       /* --- pixel bitmap for cmr250 char#53 5 --- */
                   5484:       {  53,72683,                      /* character number, location */
                   5485:          23, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   5486:           { 13,   24, 3,69, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5487:             "\x12\x72\x2a\x39\x48\x40\xf3\x11\xb0\x11\x25\x51\x11"
                   5488:             "\x42\x42\x62\x31\x73\xb2\x10\xf2\xa3\x0f\x23\x73\x01"
                   5489:             "\x92\x21\x73\x21\x72\x42\x42\x74\x52" }  },
                   5490:       /* --- pixel bitmap for cmr250 char#54 6 --- */
                   5491:       {  54,73603,                      /* character number, location */
                   5492:          23, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   5493:           { 15,   24, 3,77, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5494:             "\x75\x82\x51\x62\x62\x42\x63\x32\x73\x32\xc3\xc2\xc3"
                   5495:             "\x34\x53\x12\x42\x34\x72\x24\x73\x14\x82\x1f\x33\x93"
                   5496:             "\xf1\x12\x93\x13\x82\x32\x73\x42\x62\x62\x42\x85\x52" }  },
                   5497:       /* --- pixel bitmap for cmr250 char#55 7 --- */
                   5498:       {  55,74539,                      /* character number, location */
                   5499:          23, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   5500:           { 15,   24, 3,63, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5501:             "\x11\xee\x1d\x21\xb1\x11\xb1\x21\xa1\x30\xf1\xa1\x40"
                   5502:             "\x91\x50\xf1\x81\x60\xf1\x71\x70\xf1\x62\x70\xf2\x52"
                   5503:             "\x80\xf4\x43\x80\x51\x92" }  },
                   5504:       /* --- pixel bitmap for cmr250 char#56 8 --- */
                   5505:       {  56,75473,                      /* character number, location */
                   5506:          23, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   5507:           { 15,   24, 3,83, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5508:             "\x55\x82\x52\x52\x72\x41\x92\x10\xf1\x12\x92\x10\x13"
                   5509:             "\x82\x24\x62\x44\x52\x55\x21\x86\xa6\x81\x25\x52\x54"
                   5510:             "\x32\x74\x22\x95\xa3\x0f\x22\xb2\x12\xa1\x31\x91\x52"
                   5511:             "\x52\x85\x56" }  },
                   5512:       /* --- pixel bitmap for cmr250 char#57 9 --- */
                   5513:       {  57,76407,                      /* character number, location */
                   5514:          23, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   5515:           { 15,   24, 3,81, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5516:             "\x55\x82\x51\x62\x71\x43\x72\x32\x83\x1f\x13\x92\x1f"
                   5517:             "\x33\x93\x12\x84\x13\x74\x22\x74\x32\x42\x13\x54\x33"
                   5518:             "\xc2\x10\xf1\xb3\x10\x13\x72\x33\x62\x42\x71\x61\x52"
                   5519:             "\x86\x65" }  },
                   5520:       /* --- pixel bitmap for cmr250 char#58 : --- */
                   5521:       {  58,100199,                     /* character number, location */
                   5522:          15, 3,    0, 3,      /* topleft row,col, and botleft row,col */
                   5523:           {  4,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5524:             "\xf6\x6f\x00\x00\x00\x60\xff\x06" }  },
                   5525:       /* --- pixel bitmap for cmr250 char#59 ; --- */
                   5526:       {  59,100870,                     /* character number, location */
                   5527:          15, 3,   -7, 3,      /* topleft row,col, and botleft row,col */
                   5528:           {  4,   22, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5529:             "\xf6\x6f\x00\x00\x00\x60\xff\x8e\x88\x44\x22" }  },
                   5530:       /* --- pixel bitmap for cmr250 char#60 (noname) --- */
                   5531:       {  60,92548,                      /* character number, location */
                   5532:          17, 3,   -8, 3,      /* topleft row,col, and botleft row,col */
                   5533:           {  4,   25, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5534:             "\xf6\x6f\x00\x00\x66\x66\x66\x66\x66\xff\xff\xff\x06" }  },
                   5535:       /* --- pixel bitmap for cmr250 char#61 = --- */
                   5536:       {  61,101560,                     /* character number, location */
                   5537:          14, 2,    4, 2,      /* topleft row,col, and botleft row,col */
                   5538:           { 23,   10, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5539:             "\xf1\x0e\x09\xf5\xe0\x9f\x1e\x09" }  },
                   5540:       /* --- pixel bitmap for cmr250 char#62 (noname) --- */
                   5541:       {  62,80772,                      /* character number, location */
                   5542:          17, 2,   -7, 2,      /* topleft row,col, and botleft row,col */
                   5543:           { 12,   24, 3,59, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5544:             "\x52\x50\xf1\x44\x40\x52\x50\xf3\xc0\xf1\x61\x50\xf3"
                   5545:             "\x51\x60\x41\xa2\x92\x92\x92\x81\x1f\x12\x73\x11\x81"
                   5546:             "\x22\x61\x56\x31" }  },
                   5547:       /* --- pixel bitmap for cmr250 char#63 ? --- */
                   5548:       {  63,79840,                      /* character number, location */
                   5549:          24, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   5550:           { 12,   24, 3,53, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5551:             "\x36\x51\x62\x21\x81\x1f\x13\x72\x11\x82\x92\x92\x92"
                   5552:             "\xa1\x40\xf5\x61\x50\xf3\xc0\x52\x50\xf1\x44\x40\x52"
                   5553:             "\x52" }  },
                   5554:       /* --- pixel bitmap for cmr250 char#64 @ --- */
                   5555:       {  64,102734,                     /* character number, location */
                   5556:          24, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   5557:           { 23,   24, 3,111, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   5558:             "\x87\xe2\x72\xb1\xb1\x91\xd1\x71\xe0\x11\x51\x65\x61"
                   5559:             "\x31\x62\x41\x61\x21\x51\x71\x51\x21\x42\x82\x31\x1f"
                   5560:             "\x51\x42\x92\x41\x11\x42\x82\x41\x11\x51\x73\x31\x21"
                   5561:             "\x62\x41\x12\x31\x31\x65\x34\x51\xe0\x91\xe0\x91\xe3"
                   5562:             "\x62\x94\xa9\x62" }  },
                   5563:       /* --- pixel bitmap for cmr250 char#65 A --- */
                   5564:       {  65, 1026,                      /* character number, location */
                   5565:          25, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   5566:           { 24,   25, 3,78, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5567:             "\xf2\xb2\xb0\xf2\xa4\xa0\xf2\x91\x23\x90\xf2\x81\x43"
                   5568:             "\x80\xf2\x71\x63\x70\x61\x83\xcc\xc1\x83\x60\xf1\x51"
                   5569:             "\xa3\x50\x42\xa4\x40\xf1\x41\xc3\x40\x33\xb4\x38\x6a" }  },
                   5570:       /* --- pixel bitmap for cmr250 char#66 B --- */
                   5571:       {  66, 2360,                      /* character number, location */
                   5572:          24, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   5573:           { 22,   24, 3,77, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5574:             "\x0e\x02\xa3\x83\x83\x94\x63\xa3\x20\xf3\x43\xa4\x10"
                   5575:             "\x43\xa3\x63\x94\x63\x84\x7d\x93\x93\x73\xa3\x63\xa4"
                   5576:             "\x10\xf4\x43\xb4\x43\xa4\x53\xa3\x63\x84\x3e\x03\x5a" }  },
                   5577:       /* --- pixel bitmap for cmr250 char#67 C --- */
                   5578:       {  67, 3321,                      /* character number, location */
                   5579:          25, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   5580:           { 21,   26, 3,97, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5581:             "\x96\x51\x73\x52\x22\x53\x94\x43\xb3\x33\xc3\xf1\x23"
                   5582:             "\xe2\x14\xe0\x11\x13\xe0\x25\xe0\x21\x0f\x54\xe0\x34"
                   5583:             "\xe0\x21\x13\xe0\x21\x14\xe0\x11\x23\xe0\x11\x23\xe1"
                   5584:             "\x43\xd1\x53\xb1\x73\x91\xa3\x52\xd6\x60" }  },
                   5585:       /* --- pixel bitmap for cmr250 char#68 D --- */
                   5586:       {  68, 4443,                      /* character number, location */
                   5587:          24, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   5588:           { 24,   24, 3,75, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5589:             "\x0e\x02\xc3\x84\x93\xa3\x83\xb3\x30\xf1\x43\xc3\x20"
                   5590:             "\x43\xc4\x53\xd3\x10\xf7\x43\xd4\xf1\x43\xd3\x10\xf1"
                   5591:             "\x43\xc3\x20\x43\xb3\x73\xa3\x83\x84\x5e\x03\x73" }  },
                   5592:       /* --- pixel bitmap for cmr250 char#69 E --- */
                   5593:       {  69, 5872,                      /* character number, location */
                   5594:          24, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   5595:           { 23,   24, 3,105, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   5596:             "\x0e\x07\x63\xb3\x63\xc2\x63\xd1\x63\xd2\x10\xf1\x43"
                   5597:             "\xe1\x10\x43\x81\x51\x10\xf1\x43\x81\x70\x43\x72\xbc"
                   5598:             "\xb3\x72\x70\xf1\x43\x81\x70\x43\x81\x61\xf1\x43\xe0"
                   5599:             "\x11\x43\xe2\xf1\x43\xe1\x10\x43\xd2\x53\xb4\x1e\x08"
                   5600:             "\x10" }  },
                   5601:       /* --- pixel bitmap for cmr250 char#70 F --- */
                   5602:       {  70, 7161,                      /* character number, location */
                   5603:          24, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   5604:           { 22,   24, 3,69, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5605:             "\x0e\x07\x53\xb3\x53\xc2\x53\xd1\x53\xd2\xf1\x43\xe1"
                   5606:             "\x43\x81\x51\xf1\x43\x81\x60\x43\x72\xac\xa3\x72\x60"
                   5607:             "\xf2\x43\x81\x60\xf6\x43\xe0\x1c\xa1" }  },
                   5608:       /* --- pixel bitmap for cmr250 char#71 G --- */
                   5609:       {  71, 8356,                      /* character number, location */
                   5610:          25, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   5611:           { 23,   26, 3,109, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   5612:             "\x96\x51\x93\x52\x22\x73\x94\x63\xb3\x53\xc3\x20\xf1"
                   5613:             "\x23\xe2\x20\x14\xe0\x11\x33\xe0\x21\x24\xe0\x21\x2f"
                   5614:             "\x34\xe0\x54\xa9\x0f\x14\xe3\x20\x13\xe3\x34\xd3\x20"
                   5615:             "\xf1\x23\xd3\x20\x33\xc3\x63\xb3\x73\x91\x12\x93\x52"
                   5616:             "\x31\xb6\x80" }  },
                   5617:       /* --- pixel bitmap for cmr250 char#72 H --- */
                   5618:       {  72, 9567,                      /* character number, location */
                   5619:          24, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   5620:           { 26,   24, 3,28, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5621:             "\x0b\x4b\xf9\x43\xc3\x40\x4e\x04\x40\xfa\x43\xc3\x4b"
                   5622:             "\x4b" }  },
                   5623:       /* --- pixel bitmap for cmr250 char#73 I --- */
                   5624:       {  73,10274,                      /* character number, location */
                   5625:          24, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   5626:           { 11,   24, 3,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5627:             "\x0b\xfe\x43\x40\xf6\x43\x4b" }  },
                   5628:       /* --- pixel bitmap for cmr250 char#74 J --- */
                   5629:       {  74,11090,                      /* character number, location */
                   5630:          24, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   5631:           { 16,   25, 3,39, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5632:             "\x5b\xfe\xa3\x30\xf1\xa3\x30\x12\x73\x3f\x14\x63\x33"
                   5633:             "\x72\x51\x72\x71\x52\x96\x73" }  },
                   5634:       /* --- pixel bitmap for cmr250 char#75 K --- */
                   5635:       {  75,12289,                      /* character number, location */
                   5636:          24, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   5637:           { 25,   24, 3,108, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   5638:             "\x0b\x77\x43\xc4\x63\xc2\x83\xc1\x93\xb1\xa3\x92\xb3"
                   5639:             "\x81\xd3\x71\xe3\x61\xe0\x13\x51\xe0\x23\x43\xe0\x13"
                   5640:             "\x31\x13\xe3\x21\x23\xe3\x11\x43\xd4\x63\xc3\x73\xc3"
                   5641:             "\x83\xb3\x93\xa3\x94\x93\xa3\x93\xb3\x83\xb4\x73\xb5"
                   5642:             "\x2b\x59" }  },
                   5643:       /* --- pixel bitmap for cmr250 char#76 L --- */
                   5644:       {  76,13276,                      /* character number, location */
                   5645:          24, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   5646:           { 21,   24, 3,39, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5647:             "\x0c\x90\xfd\x43\xe0\xf2\x43\xd1\xf1\x43\xc2\xf1\x43"
                   5648:             "\xb2\x10\x43\x94\x1e\x06\x13" }  },
                   5649:       /* --- pixel bitmap for cmr250 char#77 M --- */
                   5650:       {  77,14574,                      /* character number, location */
                   5651:          24, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   5652:           { 32,   24, 3,120, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   5653:             "\x08\xe0\x28\x44\xe0\x24\x40\xf2\x41\x13\xe1\x13\x40"
                   5654:             "\xf1\x41\x23\xc1\x23\x40\xf2\x41\x33\xa1\x33\x40\xf1"
                   5655:             "\x41\x43\x81\x43\x40\xf1\x41\x53\x61\x53\x40\xf2\x41"
                   5656:             "\x63\x41\x63\x40\xf1\x41\x73\x21\x73\x40\xf2\x41\x84"
                   5657:             "\x83\x40\x33\x82\x93\x49\x52\x5b" }  },
                   5658:       /* --- pixel bitmap for cmr250 char#78 N --- */
                   5659:       {  78,15778,                      /* character number, location */
                   5660:          24, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   5661:           { 26,   24, 3,131, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   5662:             "\x07\xa9\x44\xc3\x75\xc1\x81\x13\xc1\x81\x23\xb1\x81"
                   5663:             "\x33\xa1\x81\x34\x91\x81\x43\x91\x81\x53\x81\x81\x63"
                   5664:             "\x71\x81\x64\x61\x81\x73\x61\x81\x83\x51\x40\xf1\x41"
                   5665:             "\x93\x41\x40\x41\xa3\x31\x81\xb3\x21\x40\xf1\x41\xc3"
                   5666:             "\x11\x40\x41\xd4\x81\xe3\x81\xe0\x12\x73\xe2\x49\xc1"
                   5667:             "\x40" }  },
                   5668:       /* --- pixel bitmap for cmr250 char#79 O --- */
                   5669:       {  79,16693,                      /* character number, location */
                   5670:          25, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   5671:           { 23,   26, 3,85, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5672:             "\x87\xe3\x53\xb3\x73\x93\x93\x73\xb3\x30\xf1\x23\xd3"
                   5673:             "\x20\x14\xd4\x23\xe0\x13\x1f\x74\xe0\x14\x13\xe0\x13"
                   5674:             "\x24\xd4\x10\xf1\x23\xd3\x20\x33\xb3\x73\x93\x93\x73"
                   5675:             "\xb3\x53\xe7\x81" }  },
                   5676:       /* --- pixel bitmap for cmr250 char#80 P --- */
                   5677:       {  80,17844,                      /* character number, location */
                   5678:          24, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   5679:           { 22,   24, 3,49, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5680:             "\x0e\x03\x93\x84\x73\xa3\x63\xb3\x10\xf4\x43\xb4\x43"
                   5681:             "\xb3\x53\xa3\x63\x84\x7d\x50\xf9\x43\xe0\x1b\xb0" }  },
                   5682:       /* --- pixel bitmap for cmr250 char#81 Q --- */
                   5683:       {  81,18889,                      /* character number, location */
                   5684:          25, 2,   -7, 2,      /* topleft row,col, and botleft row,col */
                   5685:           { 23,   32, 3,127, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   5686:             "\x87\xe3\x53\xb3\x73\x93\x93\x73\xb3\x30\xf1\x23\xd3"
                   5687:             "\x20\x14\xd4\x23\xe0\x13\x1f\x74\xe0\x14\x13\xe0\x13"
                   5688:             "\x24\xd4\x33\xd3\x43\x53\x53\x53\x31\x31\x33\x73\x21"
                   5689:             "\x41\x13\x93\x11\x44\xb4\x43\x51\x88\x61\xe0\x12\x51"
                   5690:             "\xe0\x12\x42\xe0\x18\xe0\x17\xe0\x36\xe0\x43\x39" }  },
                   5691:       /* --- pixel bitmap for cmr250 char#82 R --- */
                   5692:       {  82,20242,                      /* character number, location */
                   5693:          24, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
                   5694:           { 25,   25, 3,97, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5695:             "\x0e\x01\xe3\x74\xb3\x93\xa3\xa3\x50\xf3\x43\xa4\x40"
                   5696:             "\x43\xa3\x93\x93\xa3\x74\xbb\xe3\x72\xd3\x82\xc3\x92"
                   5697:             "\x70\xf2\x43\x93\x60\xf1\x43\x94\x50\x43\x94\x41\x43"
                   5698:             "\x95\x31\x43\xa4\x3c\x73\x21\xe0\x64\x21" }  },
                   5699:       /* --- pixel bitmap for cmr250 char#83 S --- */
                   5700:       {  83,21331,                      /* character number, location */
                   5701:          25, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   5702:           { 15,   26, 3,77, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5703:             "\x45\x41\x41\x52\x12\x31\x83\x21\xa2\x12\xa2\x1f\x22"
                   5704:             "\xb1\x13\xd3\xc5\xb8\x89\x88\xb5\xc3\xd3\xd2\x0f\x21"
                   5705:             "\xc2\x02\xb1\x12\xa2\x13\x91\x22\x12\x61\x31\x46\x43" }  },
                   5706:       /* --- pixel bitmap for cmr250 char#84 T --- */
                   5707:       {  84,22451,                      /* character number, location */
                   5708:          24, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   5709:           { 23,   24, 3,43, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5710:             "\x1e\x07\x23\x63\x63\x10\xf1\x11\x83\x81\x12\x83\x82"
                   5711:             "\x0f\x21\x93\x91\xfe\xa3\xa0\x5d\x53" }  },
                   5712:       /* --- pixel bitmap for cmr250 char#85 U --- */
                   5713:       {  85,23463,                      /* character number, location */
                   5714:          24, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
                   5715:           { 26,   25, 3,53, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5716:             "\x0b\x69\x43\xd3\x30\xfe\x43\xe1\x40\xf1\x43\xe1\x40"
                   5717:             "\x52\xd1\xa3\xc1\xb2\xb1\xd2\x91\xe0\x13\x52\xe0\x46"
                   5718:             "\xa2" }  },
                   5719:       /* --- pixel bitmap for cmr250 char#86 V --- */
                   5720:       {  86,24491,                      /* character number, location */
                   5721:          24, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   5722:           { 24,   25, 3,77, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5723:             "\x09\x87\x33\xd3\x53\xd2\x30\xf2\x43\xc1\x40\xf2\x53"
                   5724:             "\xa1\x50\xf1\x63\x81\x60\xf2\x73\x61\x70\xf2\x83\x41"
                   5725:             "\x80\xf1\x93\x21\x90\x96\x90\xf1\xa4\xa0\xf2\xb2\xb3" }  },
                   5726:       /* --- pixel bitmap for cmr250 char#87 W --- */
                   5727:       {  87,25924,                      /* character number, location */
                   5728:          24, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   5729:           { 34,   25, 3,123, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   5730:             "\x09\x4a\x47\x24\xa4\x93\x20\xf2\x33\xa4\xa1\x30\xf2"
                   5731:             "\x43\x81\x23\x81\x40\x53\x71\x23\x71\x50\xf1\x53\x61"
                   5732:             "\x43\x61\x50\x63\x51\x43\x51\x60\xf2\x63\x41\x63\x41"
                   5733:             "\x60\xf2\x73\x21\x83\x21\x70\x83\x11\x83\x11\x80\xf1"
                   5734:             "\x84\xa4\x80\x93\xa3\x90\xf2\x92\xc2\x90" }  },
                   5735:       /* --- pixel bitmap for cmr250 char#88 X --- */
                   5736:       {  88,27107,                      /* character number, location */
                   5737:          24, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   5738:           { 24,   24, 3,108, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   5739:             "\x0a\x49\x54\x84\x84\x91\xb3\x81\xd3\x71\xd4\x51\xe0"
                   5740:             "\x13\x41\xe0\x33\x31\xe0\x34\x11\xe0\x54\xe0\x73\xb0"
                   5741:             "\xf1\xa4\xa0\xa1\x13\xe0\x41\x24\xe0\x22\x33\xe0\x21"
                   5742:             "\x53\xe1\x63\xd2\x73\xc1\x84\xa1\xa3\x92\xb3\x74\x95"
                   5743:             "\x38\x6a" }  },
                   5744:       /* --- pixel bitmap for cmr250 char#89 Y --- */
                   5745:       {  89,28283,                      /* character number, location */
                   5746:          24, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   5747:           { 25,   24, 3,75, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5748:             "\x09\x88\x34\xc3\x64\xc2\x84\xb1\xa3\xa2\xa4\x91\xc3"
                   5749:             "\x81\xe3\x71\xe4\x51\xe0\x23\x51\xe0\x33\x31\xe0\x44"
                   5750:             "\x12\xe0\x53\x11\xe0\x64\xb0\xf8\xb3\xb0\x7b\x70" }  },
                   5751:       /* --- pixel bitmap for cmr250 char#90 Z --- */
                   5752:       {  90,29350,                      /* character number, location */
                   5753:          24, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   5754:           { 17,   24, 3,83, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5755:             "\x0e\x07\x93\x13\xa3\x12\xa3\x21\xb3\x21\xa3\x3f\x11"
                   5756:             "\x93\x40\x93\xd4\xd3\x60\xf1\x73\x70\x63\xd4\xd3\x81"
                   5757:             "\xf1\x43\x91\x33\x92\xf1\x23\xa1\x10\x13\xa2\x23\x84"
                   5758:             "\x1e\x02\x13" }  },
                   5759:       /* --- pixel bitmap for cmr250 char#91 [ --- */
                   5760:       {  91,103523,                     /* character number, location */
                   5761:          26, 3,   -9, 3,      /* topleft row,col, and botleft row,col */
                   5762:           {  7,   35, 3,18, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5763:             "\xf1\x07\x0f\xe2\x5f\xe2\x52\x5f\x17" }  },
                   5764:       /* --- pixel bitmap for cmr250 char#92 (noname) --- */
                   5765:       {  92,122418,                     /* character number, location */
                   5766:          24, 5,   13, 5,      /* topleft row,col, and botleft row,col */
                   5767:           { 11,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5768:             "\x04\x22\x90\x40\x04\x12\x88\x40\x04\xe2\x70\x8f\x7f"
                   5769:             "\xbc\xc1\x00" }  },
                   5770:       /* --- pixel bitmap for cmr250 char#93 ] --- */
                   5771:       {  93,104241,                     /* character number, location */
                   5772:          26, 0,   -9, 0,      /* topleft row,col, and botleft row,col */
                   5773:           {  7,   35, 3,18, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5774:             "\xf1\x07\xfe\x52\xfe\x52\x52\x0f\x17" }  },
                   5775:       /* --- pixel bitmap for cmr250 char#94 \^ --- */
                   5776:       {  94,110488,                     /* character number, location */
                   5777:          24, 4,   19, 4,      /* topleft row,col, and botleft row,col */
                   5778:           {  9,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5779:             "\x10\x50\x10\x11\x14\x10" }  },
                   5780:       /* --- pixel bitmap for cmr250 char#95 (noname) --- */
                   5781:       {  95,110963,                     /* character number, location */
                   5782:          24, 3,   20, 3,      /* topleft row,col, and botleft row,col */
                   5783:           {  4,    4, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5784:             "\xf6\x6f" }  },
                   5785:       /* --- pixel bitmap for cmr250 char#96 (noname) --- */
                   5786:       {  96,104879,                     /* character number, location */
                   5787:          24, 3,   13, 3,      /* topleft row,col, and botleft row,col */
                   5788:           {  4,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5789:             "\x44\x22\x11\x71\xff\x06" }  },
                   5790:       /* --- pixel bitmap for cmr250 char#97 a --- */
                   5791:       {  97,30520,                      /* character number, location */
                   5792:          15, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   5793:           { 15,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5794:             "\xfe\x80\xc3\xc0\xc1\x40\xc0\x00\x60\x00\x30\xc0\x1f"
                   5795:             "\x38\x0c\x06\x86\x01\xc3\x80\x71\xc0\x38\x70\x34\x7c"
                   5796:             "\xe3\x71\x00" }  },
                   5797:       /* --- pixel bitmap for cmr250 char#98 b --- */
                   5798:       {  98,31546,                      /* character number, location */
                   5799:          24, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   5800:           { 16,   24, 3,63, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5801:             "\x05\xb0\xf7\x32\xb0\x32\x25\x72\x11\x42\x63\x71\x52"
                   5802:             "\x82\x42\x91\x10\xf4\x32\x92\x32\x91\x42\x82\x43\x62"
                   5803:             "\x51\x21\x42\x61\x34\x51" }  },
                   5804:       /* --- pixel bitmap for cmr250 char#99 c --- */
                   5805:       {  99,32353,                      /* character number, location */
                   5806:          15, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   5807:           { 12,   15, 3,39, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5808:             "\x47\x42\x43\x21\x63\x12\x71\x21\xaf\x42\xa0\x11\xb2"
                   5809:             "\x81\x21\x81\x32\x42\x55\x32" }  },
                   5810:       /* --- pixel bitmap for cmr250 char#100 d --- */
                   5811:       { 100,33362,                      /* character number, location */
                   5812:          24, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   5813:           { 16,   24, 3,62, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5814:             "\x85\x30\xf7\xb2\x30\x54\x22\x62\x41\x12\x52\x63\x42"
                   5815:             "\x82\x41\x92\x3f\x42\x92\x30\x11\x92\x42\x82\x51\x73"
                   5816:             "\x62\x41\x12\x75\x25" }  },
                   5817:       /* --- pixel bitmap for cmr250 char#101 e --- */
                   5818:       { 101,34154,                      /* character number, location */
                   5819:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   5820:           { 13,   15, 3,43, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5821:             "\x55\x62\x42\x42\x71\x22\x81\x21\x94\xae\x0f\x22\xb0"
                   5822:             "\x11\xc2\x91\x22\x71\x42\x52\x65\x32" }  },
                   5823:       /* --- pixel bitmap for cmr250 char#102 f --- */
                   5824:       { 102,35019,                      /* character number, location */
                   5825:          24, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   5826:           { 13,   24, 3,33, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5827:             "\x75\x72\x23\x52\x33\x42\x51\x10\xf4\x42\x7a\x30\xfc"
                   5828:             "\x42\x70\x19\x32" }  },
                   5829:       /* --- pixel bitmap for cmr250 char#103 g --- */
                   5830:       { 103,36274,                      /* character number, location */
                   5831:          16, 1,   -8, 1,      /* topleft row,col, and botleft row,col */
                   5832:           { 16,   24, 3,75, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5833:             "\xc3\x55\x21\x31\x32\x33\x32\x22\x52\x50\xf3\x12\x72"
                   5834:             "\x40\x22\x52\x73\x32\x81\x15\x70\xf2\x12\xd0\x2a\x7a"
                   5835:             "\x42\x83\x2f\x32\xb2\x10\x12\x92\x43\x53\x77\x53" }  },
                   5836:       /* --- pixel bitmap for cmr250 char#104 h --- */
                   5837:       { 104,37285,                      /* character number, location */
                   5838:          24, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   5839:           { 17,   24, 3,36, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5840:             "\x05\xc0\xf7\x32\xc0\x32\x25\x82\x11\x42\x73\x62\x30"
                   5841:             "\xfa\x32\x72\x38\x27" }  },
                   5842:       /* --- pixel bitmap for cmr250 char#105 i --- */
                   5843:       { 105,38030,                      /* character number, location */
                   5844:          24, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   5845:           {  8,   24, 3,26, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5846:             "\x22\x40\xf1\x14\x30\x22\x40\xf4\x85\x30\xfc\x32\x38" }  },
                   5847:       /* --- pixel bitmap for cmr250 char#106 j --- */
                   5848:       { 106,38838,                      /* character number, location */
                   5849:          24,-2,   -7,-2,      /* topleft row,col, and botleft row,col */
                   5850:           {  9,   31, 3,39, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5851:             "\x62\x10\xf1\x54\x62\x10\xf4\x90\x45\xfe\x72\xf1\x72"
                   5852:             "\x11\x55\x32\x13\x31\x35\x35" }  },
                   5853:       /* --- pixel bitmap for cmr250 char#107 k --- */
                   5854:       { 107,39952,                      /* character number, location */
                   5855:          24, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   5856:           { 17,   24, 3,72, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5857:             "\x05\xc0\xf7\x32\xc0\x32\x47\x42\x54\x62\x52\x82\x51"
                   5858:             "\x92\x41\xa2\x22\xb2\x13\xb3\x22\x70\xf1\x32\x42\x60"
                   5859:             "\x32\x52\x82\x62\x72\x63\x62\x64\x28\x27" }  },
                   5860:       /* --- pixel bitmap for cmr250 char#108 l --- */
                   5861:       { 108,40601,                      /* character number, location */
                   5862:          24, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   5863:           {  8,   24, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5864:             "\x05\x30\xfe\x32\x30\xf6\x32\x38" }  },
                   5865:       /* --- pixel bitmap for cmr250 char#109 m --- */
                   5866:       { 109,41954,                      /* character number, location */
                   5867:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   5868:           { 28,   15, 3,42, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5869:             "\x05\x35\x55\x82\x12\x42\x22\x42\x40\xf1\x33\x73\x72"
                   5870:             "\x30\xf9\x32\x82\x82\x38\x28\x28" }  },
                   5871:       /* --- pixel bitmap for cmr250 char#110 n --- */
                   5872:       { 110,42973,                      /* character number, location */
                   5873:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   5874:           { 17,   15, 3,26, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5875:             "\x05\x25\x82\x11\x42\x73\x62\x30\xfa\x32\x72\x38\x27" }  },
                   5876:       /* --- pixel bitmap for cmr250 char#111 o --- */
                   5877:       { 111,43692,                      /* character number, location */
                   5878:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   5879:           { 15,   15, 3,43, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5880:             "\x55\x82\x52\x52\x72\x32\x92\x21\xb1\x1f\x42\xb2\x11"
                   5881:             "\xb1\x22\x92\x32\x72\x52\x52\x85\x50" }  },
                   5882:       /* --- pixel bitmap for cmr250 char#112 p --- */
                   5883:       { 112,44778,                      /* character number, location */
                   5884:          15, 1,   -7, 1,      /* topleft row,col, and botleft row,col */
                   5885:           { 16,   22, 3,61, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5886:             "\x05\x25\x72\x11\x42\x63\x62\x52\x82\x42\x91\x10\xf4"
                   5887:             "\x32\x92\xf1\x32\x82\x10\x33\x62\x52\x11\x42\x62\x24"
                   5888:             "\x50\xf5\x32\xb8\x82" }  },
                   5889:       /* --- pixel bitmap for cmr250 char#113 q --- */
                   5890:       { 113,45812,                      /* character number, location */
                   5891:          15, 2,   -7, 2,      /* topleft row,col, and botleft row,col */
                   5892:           { 16,   22, 3,62, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5893:             "\x54\x31\x62\x41\x21\x52\x63\x30\xf1\x12\x82\x3f\x42"
                   5894:             "\x92\x30\x11\x92\x42\x73\x52\x63\x62\x41\x12\x75\x22"
                   5895:             "\x30\xf5\xb2\x30\x88" }  },
                   5896:       /* --- pixel bitmap for cmr250 char#114 r --- */
                   5897:       { 114,46701,                      /* character number, location */
                   5898:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   5899:           { 13,   15, 3,27, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5900:             "\x05\x34\x42\x12\x23\x33\x43\x33\x51\x10\xf9\x32\x88"
                   5901:             "\x52" }  },
                   5902:       /* --- pixel bitmap for cmr250 char#115 s --- */
                   5903:       { 115,47650,                      /* character number, location */
                   5904:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   5905:           { 12,   15, 3,43, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5906:             "\x35\x21\x22\x53\x1f\x22\x81\x10\x13\x97\x77\xa3\x11"
                   5907:             "\x84\x94\x84\x81\x14\x52\x11\x35\x32" }  },
                   5908:       /* --- pixel bitmap for cmr250 char#116 t --- */
                   5909:       { 116,48495,                      /* character number, location */
                   5910:          21, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   5911:           { 10,   21, 3,35, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5912:             "\xf2\x41\x50\xf1\x32\x50\x23\x5a\xf7\x32\x50\xf3\x32"
                   5913:             "\x41\x42\x21\x63\x24" }  },
                   5914:       /* --- pixel bitmap for cmr250 char#117 u --- */
                   5915:       { 117,49436,                      /* character number, location */
                   5916:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   5917:           { 17,   15, 3,28, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5918:             "\x05\x45\x30\xfa\x32\x72\x30\x32\x63\x72\x41\x12\x85"
                   5919:             "\x25" }  },
                   5920:       /* --- pixel bitmap for cmr250 char#118 v --- */
                   5921:       { 118,50324,                      /* character number, location */
                   5922:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   5923:           { 16,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5924:             "\x3f\xf8\x0c\x70\x1c\x30\x18\x10\x18\x10\x30\x08\x30"
                   5925:             "\x08\x70\x0c\x60\x04\x60\x04\xc0\x02\xc0\x02\xc0\x03"
                   5926:             "\x80\x01\x80\x01" }  },
                   5927:       /* --- pixel bitmap for cmr250 char#119 w --- */
                   5928:       { 119,51608,                      /* character number, location */
                   5929:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   5930:           { 23,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5931:             "\x3f\x7e\x7e\x06\x0c\x1c\x03\x06\x04\x83\x02\x81\x41"
                   5932:             "\x83\xc0\xa0\x41\xc0\x88\x10\x60\xc4\x08\x30\x62\x04"
                   5933:             "\xb0\x20\x01\x58\xb0\x00\x2c\x58\x00\x0c\x18\x00\x06"
                   5934:             "\x0c\x00\x03\x06\x00" }  },
                   5935:       /* --- pixel bitmap for cmr250 char#120 x --- */
                   5936:       { 120,52623,                      /* character number, location */
                   5937:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   5938:           { 16,   15, 3,54, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5939:             "\x06\x46\x23\x63\x52\x61\x82\x42\x92\x22\xa3\x11\xc3"
                   5940:             "\xe2\xd4\xb2\x22\xa1\x32\x91\x52\x72\x62\x53\x63\x25"
                   5941:             "\x56" }  },
                   5942:       /* --- pixel bitmap for cmr250 char#121 y --- */
                   5943:       { 121,53706,                      /* character number, location */
                   5944:          15, 1,   -7, 1,      /* topleft row,col, and botleft row,col */
                   5945:           { 16,   22, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5946:             "\x3f\xf8\x0c\x70\x1c\x30\x18\x10\x18\x10\x30\x08\x30"
                   5947:             "\x08\x70\x0c\x60\x04\x60\x04\xc0\x02\xc0\x02\xc0\x03"
                   5948:             "\x80\x01\x80\x01\x80\x00\x80\x00\xc0\x00\x47\x00\x67"
                   5949:             "\x00\x35\x00\x1e\x00" }  },
                   5950:       /* --- pixel bitmap for cmr250 char#122 z --- */
                   5951:       { 122,54697,                      /* character number, location */
                   5952:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   5953:           { 13,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5954:             "\xff\xff\x80\x0d\xb8\x00\x13\x30\x02\x03\x30\x00\x07"
                   5955:             "\x60\x10\x06\x62\x40\x06\xe4\x80\x0c\xdc\xff\x03" }  },
                   5956:       /* --- pixel bitmap for cmr250 char#123 (noname) --- */
                   5957:       { 123,123046,                     /* character number, location */
                   5958:          10, 0,    9, 0,      /* topleft row,col, and botleft row,col */
                   5959:           { 17,    1, 3, 4, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5960:             "\x0e\x03" }  },
                   5961:       /* --- pixel bitmap for cmr250 char#124 (noname) --- */
                   5962:       { 124,123866,                     /* character number, location */
                   5963:          10, 0,    9, 0,      /* topleft row,col, and botleft row,col */
                   5964:           { 35,    1, 2, 2, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5965:             "\x00\x23" }  },
                   5966:       /* --- pixel bitmap for cmr250 char#125 (noname) --- */
                   5967:       { 125,111644,                     /* character number, location */
                   5968:          24, 4,   18, 4,      /* topleft row,col, and botleft row,col */
                   5969:           { 10,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5970:             "\x0c\x33\x6c\x98\x61\x82\x0c\x03" }  },
                   5971:       /* --- pixel bitmap for cmr250 char#126 \~ --- */
                   5972:       { 126,112336,                     /* character number, location */
                   5973:          23, 3,   20, 3,      /* topleft row,col, and botleft row,col */
                   5974:           { 11,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5975:             "\x1c\xf4\x5f\x70\x00" }  },
                   5976:       /* --- pixel bitmap for cmr250 char#127 (noname) --- */
                   5977:       { 127,113017,                     /* character number, location */
                   5978:          24, 3,   20, 3,      /* topleft row,col, and botleft row,col */
                   5979:           { 11,    4, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   5980:             "\x06\x7b\xfc\xe3\x0d\x06" }  },
                   5981:       /* --- trailer  --- */
                   5982:       { -99, -999,  0,0,0,0, { 0,0,0,0, (pixbyte *)"\0" }  }
                   5983:    } ;
                   5984: 
1.1       albertel 5985: 
1.5     ! raeburn  5986: /* --- size=8 for .325gf ---
        !          5987:  * mf '\mode=preview; mag=magstep(-11.40956951729850636869); input cmr10'
        !          5988:  * --------------------------------------------------------------------- */
        !          5989: /* --- fontdef for cmr325 --- */
        !          5990: static	chardef  cmr325[] =
        !          5991:    {
        !          5992:       /* --- pixel bitmap for cmr325 char#0 \Gamma --- */
        !          5993:       {   0,57877,                      /* character number, location */
        !          5994:          31, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          5995:           { 25,   31, 3,59, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          5996:             "\x0e\x0a\x64\xb4\x10\xf1\x54\xd2\x10\x54\xe1\x64\xe2"
        !          5997:             "\xf3\x54\xe0\x11\xfe\x54\xe0\x20\xf3\x54\xe0\x20\x55"
        !          5998:             "\xe0\x1e\x01\xa2" }  },
        !          5999:       /* --- pixel bitmap for cmr325 char#1 \Delta --- */
        !          6000:       {   1,58824,                      /* character number, location */
        !          6001:          32, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          6002:           { 33,   32, 3,180, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          6003:             "\xe0\x21\xe0\x20\xf1\xe0\x13\xe0\x10\xf1\xe5\xe0\xd1"
        !          6004:             "\x15\xe0\xc1\x24\xe0\xb1\x35\xe0\xa1\x44\xe0\x91\x55"
        !          6005:             "\xe0\x81\x64\xe0\x71\x75\xe0\x61\x84\xe0\x51\x95\xe0"
        !          6006:             "\x41\xa4\xe0\x31\xb5\xe0\x21\xc4\xe0\x11\xd5\xe1\xe4"
        !          6007:             "\xd1\xe0\x15\xc1\xe0\x24\xb1\xe0\x35\xa1\xe0\x44\x91"
        !          6008:             "\xe0\x55\x81\xe0\x64\x71\xe0\x75\x61\xe0\x84\x51\xe0"
        !          6009:             "\x95\x41\xe0\xa4\x20\xf1\x1e\x0e\x03\x1e\x0e\x05" }  },
        !          6010:       /* --- pixel bitmap for cmr325 char#2 \Theta --- */
        !          6011:       {   2,60017,                      /* character number, location */
        !          6012:          32, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          6013:           { 29,   33, 3,165, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          6014:             "\xb7\xe0\x54\x54\xe0\x13\x93\xd3\xb3\xb3\xd3\x93\xe0"
        !          6015:             "\x13\x74\xe0\x14\x30\xf1\x24\xe0\x34\x20\xf1\x15\xe0"
        !          6016:             "\x35\x10\x14\xe0\x54\x15\xe0\x55\x0f\x15\x41\x91\x45"
        !          6017:             "\x0f\x25\x4b\x45\x0f\x15\x41\x91\x45\x05\xe0\x55\x14"
        !          6018:             "\xe0\x54\x10\xf1\x15\xe0\x35\x10\xf1\x24\xe0\x34\x20"
        !          6019:             "\x34\xe0\x14\x73\xe0\x13\x93\xd3\xb3\xb3\xd3\x93\xe0"
        !          6020:             "\x14\x54\xe0\x57\xb0" }  },
        !          6021:       /* --- pixel bitmap for cmr325 char#3 \Lambda --- */
        !          6022:       {   3,61121,                      /* character number, location */
        !          6023:          32, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          6024:           { 29,   32, 3,130, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          6025:             "\xe1\xe0\xf2\xd3\xd0\xf2\xc5\xc0\xb7\xb0\xf1\xb1\x24"
        !          6026:             "\xb0\xa2\x25\xa0\xf1\xa1\x44\xa0\x92\x45\x90\xf1\x91"
        !          6027:             "\x64\x90\x82\x65\x80\xf1\x81\x84\x80\x72\x85\x70\xf1"
        !          6028:             "\x71\xa4\x70\x62\xa5\x60\xf1\x61\xc4\x60\x52\xc5\x50"
        !          6029:             "\xf1\x51\xe4\x50\x42\xe4\x92\xe0\x14\x74\xd5\x49\x8c" }  },
        !          6030:       /* --- pixel bitmap for cmr325 char#4 \Xi --- */
        !          6031:       {   4,62554,                      /* character number, location */
        !          6032:          31, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          6033:           { 26,   31, 3,66, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          6034:             "\xf2\x0e\x0c\x0f\x31\xe0\xa1\xf3\xe0\xc0\xf1\x41\xe0"
        !          6035:             "\x21\x40\xf2\x4e\x04\x40\xf1\x41\xe0\x21\x40\xf5\xe0"
        !          6036:             "\xcf\x31\xe0\xa1\x0f\x2e\x0c" }  },
        !          6037:       /* --- pixel bitmap for cmr325 char#5 \Pi --- */
        !          6038:       {   5,63781,                      /* character number, location */
        !          6039:          31, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          6040:           { 32,   31, 3,24, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          6041:             "\x0e\x0e\x04\xfe\x54\xe4\x50\xfd\x54\xe4\x5e\x4e" }  },
        !          6042:       /* --- pixel bitmap for cmr325 char#6 \Sigma --- */
        !          6043:       {   6,64972,                      /* character number, location */
        !          6044:          31, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          6045:           { 28,   31, 3,161, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          6046:             "\x0e\x0d\x24\xe0\x26\x25\xe0\x43\x35\xe0\x42\x44\xe0"
        !          6047:             "\x51\x45\xe0\x42\x45\xe0\x32\x54\xe0\x41\x55\xe0\x31"
        !          6048:             "\x64\xe0\x31\x74\xe0\xa5\xe0\xa4\xe0\xb4\xe0\xa5\xe0"
        !          6049:             "\xa4\xe0\xb3\xe0\xb2\xe0\xc1\xe0\xc1\xe0\xc1\xe0\x31"
        !          6050:             "\x81\xe0\x41\x71\xe0\x51\x61\xe0\x52\x51\xe0\x62\x41"
        !          6051:             "\xe0\x71\x51\xe0\x62\x41\xe0\x63\x31\xe0\x46\x2e\x0c"
        !          6052:             "\x1e\x0d\x10" }  },
        !          6053:       /* --- pixel bitmap for cmr325 char#7 \Upsilon --- */
        !          6054:       {   7,66120,                      /* character number, location */
        !          6055:          32, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          6056:           { 29,   32, 3,77, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          6057:             "\x35\xd5\x58\x98\x3a\x7a\x2b\x5b\x13\x55\x44\x55\x83"
        !          6058:             "\x34\x73\xa3\x23\x92\xa3\x22\xa1\xc2\x13\xe0\x96\xe0"
        !          6059:             "\x95\xc0\xfe\xd4\xc0\xf3\xd4\xc0\xc6\xe0\x4e\x02\x60" }  },
        !          6060:       /* --- pixel bitmap for cmr325 char#8 \Phi --- */
        !          6061:       {   8,67208,                      /* character number, location */
        !          6062:          31, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          6063:           { 28,   31, 3,121, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          6064:             "\x6e\x02\xe0\x36\xb0\xf3\xc4\xc0\x9a\xe0\x14\x24\x24"
        !          6065:             "\xb3\x44\x43\x84\x54\x54\x54\x64\x64\x35\x64\x65\x24"
        !          6066:             "\x74\x74\x1f\x45\x74\x75\x14\x74\x74\x25\x64\x65\x34"
        !          6067:             "\x64\x64\x54\x54\x54\x83\x44\x43\xb4\x24\x24\xe0\x1a"
        !          6068:             "\x90\xf3\xc4\xc0\xb6\xe0\x3e\x02\x62" }  },
        !          6069:       /* --- pixel bitmap for cmr325 char#9 \Psi --- */
        !          6070:       {   9,68401,                      /* character number, location */
        !          6071:          31, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          6072:           { 29,   31, 3,103, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          6073:             "\x7e\x02\xe0\x46\xb0\xf2\xd4\xc5\x84\x75\xf1\x24\x74"
        !          6074:             "\x64\x20\xf8\x34\x64\x54\x30\x44\x54\x53\x84\x54\x44"
        !          6075:             "\x93\x54\x43\xa4\x44\x34\xb3\x44\x33\xd3\x34\x23\xe0"
        !          6076:             "\x23\x18\xe0\x58\xa0\xf3\xd4\xc0\xc6\xe0\x4e\x02\x6a" }  },
        !          6077:       /* --- pixel bitmap for cmr325 char#10 \Omega --- */
        !          6078:       {  10,69638,                      /* character number, location */
        !          6079:          32, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          6080:           { 28,   32, 3,135, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          6081:             "\xa8\xe0\x34\x64\xc4\xa4\x94\xc4\x74\xe4\x54\xe0\x24"
        !          6082:             "\x20\xf1\x15\xe0\x25\x1f\x55\xe0\x45\x14\xe0\x44\x10"
        !          6083:             "\xf1\x15\xe0\x25\x10\xf1\x24\xe0\x24\x20\x34\xe4\x73"
        !          6084:             "\xe3\x40\xf1\x53\xc3\x50\x62\xc2\xd2\xa2\x71\x62\xa2"
        !          6085:             "\x62\x71\xa1\x72\x72\x82\x71\x11\x71\x81\x71\x10\xf2"
        !          6086:             "\x19\x89\x11" }  },
        !          6087:       /* --- pixel bitmap for cmr325 char#11 \ff --- */
        !          6088:       {  11,118093,                     /* character number, location */
        !          6089:          31, 0,    0, 0,      /* topleft row,col, and botleft row,col */
        !          6090:           { 29,   31, 3,65, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          6091:             "\xb6\x55\xa4\x52\x13\x32\x83\x74\x44\x63\x75\x44\x62"
        !          6092:             "\x84\x62\x10\xf6\x53\x93\x9e\x0b\x40\xfe\x53\x93\x90"
        !          6093:             "\xf1\x53\x93\x90\x29\x3a\x52" }  },
        !          6094:       /* --- pixel bitmap for cmr325 char#12 \fi --- */
        !          6095:       {  12,119337,                     /* character number, location */
        !          6096:          31, 0,    0, 0,      /* topleft row,col, and botleft row,col */
        !          6097:           { 24,   31, 3,58, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          6098:             "\xb6\xe0\x14\x51\xd3\x72\xb3\x74\xa2\x84\x93\x84\x40"
        !          6099:             "\xf5\x53\xe0\x2e\x06\x40\xfe\x53\x93\x40\xf1\x53\x93"
        !          6100:             "\x40\x29\x3a" }  },
        !          6101:       /* --- pixel bitmap for cmr325 char#13 \fl --- */
        !          6102:       {  13,120557,                     /* character number, location */
        !          6103:          31, 0,    0, 0,      /* topleft row,col, and botleft row,col */
        !          6104:           { 24,   31, 3,52, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          6105:             "\xb9\xc4\x53\xb3\x64\xa3\x74\xa2\x93\x40\xf6\x53\x93"
        !          6106:             "\x4e\x06\x40\xfe\x53\x93\x40\xf1\x53\x93\x40\x29\x3a" }  },
        !          6107:       /* --- pixel bitmap for cmr325 char#14 \ffi --- */
        !          6108:       {  14,122234,                     /* character number, location */
        !          6109:          31, 0,    0, 0,      /* topleft row,col, and botleft row,col */
        !          6110:           { 35,   31, 3,80, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          6111:             "\xb6\x66\xe4\x51\x24\x51\xc3\x75\x72\xa3\x75\x74\x92"
        !          6112:             "\x84\x84\x83\x84\x84\x30\xf5\x53\x93\xe0\x1e\x0e\x04"
        !          6113:             "\x30\xfe\x53\x93\x93\x30\xf1\x53\x93\x93\x30\x29\x39"
        !          6114:             "\x39" }  },
        !          6115:       /* --- pixel bitmap for cmr325 char#15 \ffl --- */
        !          6116:       {  15,123961,                     /* character number, location */
        !          6117:          31, 0,    0, 0,      /* topleft row,col, and botleft row,col */
        !          6118:           { 35,   31, 3,74, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          6119:             "\xb6\x69\xb4\x52\x14\x53\xa3\x75\x64\x93\x75\x74\x92"
        !          6120:             "\x84\x93\x30\xf6\x53\x93\x93\x3e\x0e\x04\x30\xfe\x53"
        !          6121:             "\x93\x93\x30\xf1\x53\x93\x93\x30\x29\x39\x39" }  },
        !          6122:       /* --- pixel bitmap for cmr325 char#16 \imath --- */
        !          6123:       {  16,84431,                      /* character number, location */
        !          6124:          19, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          6125:           {  9,   19, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          6126:             "\x06\x30\xfe\x33\x30\xf1\x33\x39" }  },
        !          6127:       /* --- pixel bitmap for cmr325 char#17 \jmath --- */
        !          6128:       {  17,85147,                      /* character number, location */
        !          6129:          19,-3,   -9,-3,      /* topleft row,col, and botleft row,col */
        !          6130:           { 12,   28, 3,29, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          6131:             "\x57\x84\xfe\x93\xf5\x93\x12\x67\x52\x14\x42\x32\x42"
        !          6132:             "\x56\x40" }  },
        !          6133:       /* --- pixel bitmap for cmr325 char#18 \gravesym --- */
        !          6134:       {  18,109160,                     /* character number, location */
        !          6135:          31, 5,   23, 5,      /* topleft row,col, and botleft row,col */
        !          6136:           {  8,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          6137:             "\x07\x07\x0f\x1c\x38\x30\x60\xc0" }  },
        !          6138:       /* --- pixel bitmap for cmr325 char#19 \acutesym --- */
        !          6139:       {  19,109739,                     /* character number, location */
        !          6140:          31, 9,   23, 9,      /* topleft row,col, and botleft row,col */
        !          6141:           {  8,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          6142:             "\xe0\xe0\xf0\x38\x1c\x0c\x06\x03" }  },
        !          6143:       /* --- pixel bitmap for cmr325 char#20 \checksym --- */
        !          6144:       {  20,110374,                     /* character number, location */
        !          6145:          28, 5,   23, 5,      /* topleft row,col, and botleft row,col */
        !          6146:           { 12,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          6147:             "\x03\xec\x70\xf8\x01\x0f\x60\x00" }  },
        !          6148:       /* --- pixel bitmap for cmr325 char#21 \brevesym --- */
        !          6149:       {  21,110998,                     /* character number, location */
        !          6150:          31, 4,   23, 4,      /* topleft row,col, and botleft row,col */
        !          6151:           { 14,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          6152:             "\x01\x60\x00\x38\x00\x0b\x40\x06\x18\x87\x83\x7f\x80"
        !          6153:             "\x07" }  },
        !          6154:       /* --- pixel bitmap for cmr325 char#22 (noname) --- */
        !          6155:       {  22,111596,                     /* character number, location */
        !          6156:          27, 3,   26, 3,      /* topleft row,col, and botleft row,col */
        !          6157:           { 16,    1, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          6158:             "\xff\xff" }  },
        !          6159:       /* --- pixel bitmap for cmr325 char#23 (noname) --- */
        !          6160:       {  23,112413,                     /* character number, location */
        !          6161:          32,13,   24,13,      /* topleft row,col, and botleft row,col */
        !          6162:           {  8,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          6163:             "\x3c\x42\x81\x81\x81\x81\x42\x3c" }  },
        !          6164:       /* --- pixel bitmap for cmr325 char#24 (noname) --- */
        !          6165:       {  24,113121,                     /* character number, location */
        !          6166:          -1, 6,  -10, 6,      /* topleft row,col, and botleft row,col */
        !          6167:           { 10,    9, 3,17, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          6168:             "\x43\x74\x83\x10\xf3\x73\x18\x11\x94" }  },
        !          6169:       /* --- pixel bitmap for cmr325 char#25 \ss --- */
        !          6170:       {  25,86264,                      /* character number, location */
        !          6171:          31, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          6172:           { 19,   31, 3,109, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          6173:             "\x76\xc2\x43\x92\x63\x72\x83\x20\xf3\x33\x84\x10\x33"
        !          6174:             "\x83\x53\x74\x53\x73\x63\x53\x56\x24\xa3\x53\x83\x63"
        !          6175:             "\x73\x73\x30\xf1\x33\x83\x20\x33\x84\x43\x93\x10\xf5"
        !          6176:             "\x33\x94\x33\x93\x43\x23\x34\x43\x23\x33\x53\x23\x23"
        !          6177:             "\x36\x35\x53" }  },
        !          6178:       /* --- pixel bitmap for cmr325 char#26 \ae --- */
        !          6179:       {  26,87675,                      /* character number, location */
        !          6180:          19, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          6181:           { 29,   19, 3,99, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          6182:             "\x38\x85\x72\x63\x42\x52\x44\x73\x12\x72\x34\x84\x83"
        !          6183:             "\x32\x94\x92\x10\xf2\xd3\xa3\x8e\x07\x45\x43\xe0\x24"
        !          6184:             "\x63\xe0\x13\x83\xe4\x83\xd4\x94\xc4\x94\xb5\x95\xa1"
        !          6185:             "\x13\x82\x22\x91\x33\x53\x43\x52\x67\x86\x43" }  },
        !          6186:       /* --- pixel bitmap for cmr325 char#27 \oe --- */
        !          6187:       {  27,88847,                      /* character number, location */
        !          6188:          19, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          6189:           { 33,   19, 3,109, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          6190:             "\x76\x96\xa2\x53\x53\x43\x63\x82\x32\x82\x43\xa2\x12"
        !          6191:             "\x93\x33\xa5\x93\x23\xc4\xa3\x13\xc3\xb7\xc3\xb7\xce"
        !          6192:             "\x03\x0f\x24\xc3\xe0\x13\xc3\xe0\x13\xb5\xe0\x13\xa5"
        !          6193:             "\xc1\x23\x93\x13\xb1\x33\x82\x33\x91\x63\x43\x62\x62"
        !          6194:             "\x96\xa6\x43" }  },
        !          6195:       /* --- pixel bitmap for cmr325 char#28 (noname) --- */
        !          6196:       {  28,89723,                      /* character number, location */
        !          6197:          24, 2,   -4, 2,      /* topleft row,col, and botleft row,col */
        !          6198:           { 18,   28, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          6199:             "\x00\x00\x01\x00\x02\x00\x08\x00\x10\x00\x40\x00\xbf"
        !          6200:             "\x00\x87\x03\x06\x1c\x0c\xd8\x38\x20\x67\x40\xd8\x01"
        !          6201:             "\xe1\x07\x82\x1f\x08\x7e\x10\xf8\x41\xe0\x87\x80\x1f"
        !          6202:             "\x02\x6e\x04\x98\x1b\x70\x2c\xc0\xe0\x80\x01\x87\x03"
        !          6203:             "\xf2\x03\x08\x00\x10\x00\x40\x00\x80\x00\x00" }  },
        !          6204:       /* --- pixel bitmap for cmr325 char#29 \AE --- */
        !          6205:       {  29,91607,                      /* character number, location */
        !          6206:          31, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          6207:           { 39,   31, 3,219, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          6208:             "\xbe\x0c\xe0\x31\x15\xb4\xe0\x31\x24\xd2\xe0\x21\x34"
        !          6209:             "\xd2\xe0\x21\x34\xe1\xe0\x11\x44\xe2\x10\xf1\xd1\x44"
        !          6210:             "\xe0\x11\x10\xf1\xc1\x54\xe0\x11\x10\xc1\x54\xe0\x30"
        !          6211:             "\xf1\xb1\x64\x81\x80\xa2\x64\x81\xe0\x41\x74\x81\xe0"
        !          6212:             "\x41\x74\x72\xe0\x3e\x08\xe0\x31\x84\x72\xe0\x31\x84"
        !          6213:             "\x81\xe0\x21\x94\x81\xe0\x21\x94\x81\x71\x72\x94\x81"
        !          6214:             "\x71\x71\xa4\xe0\x21\x71\xa4\xe0\x11\x10\xf1\x61\xb4"
        !          6215:             "\xe0\x11\x10\x61\xb4\xe2\x61\xc4\xe2\x62\xb4\xd2\x55"
        !          6216:             "\xa4\xb4\x2a\x5e\x08\x21" }  },
        !          6217:       /* --- pixel bitmap for cmr325 char#30 \OE --- */
        !          6218:       {  30,93439,                      /* character number, location */
        !          6219:          32, 4,   -1, 4,      /* topleft row,col, and botleft row,col */
        !          6220:           { 41,   33, 3,225, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          6221:             "\xb7\xe0\xe0\x34\x5e\x08\x93\x85\xc4\x83\xa4\xe2\x73"
        !          6222:             "\xb4\xe2\x64\xb4\xe0\x11\x54\xc4\xe0\x12\x35\xc4\xe0"
        !          6223:             "\x21\x34\xd4\xe0\x21\x25\xd4\xe0\x21\x25\xd4\xa1\x51"
        !          6224:             "\x24\xe0\x13\xa1\x75\xe0\x13\xa1\x75\xe0\x13\x92\x75"
        !          6225:             "\xe0\x13\x83\x75\xe0\x1e\x75\xe0\x13\x83\x75\xe0\x13"
        !          6226:             "\x92\x7f\x25\xe0\x13\xa1\x70\x15\xe3\xe0\x31\xf1\x15"
        !          6227:             "\xd4\xe0\x31\x24\xd4\xe0\x21\x35\xc4\xe0\x21\x44\xc4"
        !          6228:             "\xe0\x21\x54\xb4\xe0\x12\x64\xa4\xe0\x12\x73\xa4\xe2"
        !          6229:             "\x93\x85\xc4\xa4\x5e\x08\xd7\xe0\x90" }  },
        !          6230:       /* --- pixel bitmap for cmr325 char#31 (noname) --- */
        !          6231:       {  31,94521,                      /* character number, location */
        !          6232:          33, 3,   -2, 3,      /* topleft row,col, and botleft row,col */
        !          6233:           { 29,   35, 3,187, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          6234:             "\xe0\xb1\xe7\x62\xb4\x54\x31\xb3\x93\x11\xb2\xd3\xa2"
        !          6235:             "\xe0\x12\x93\xe4\x73\xe2\x13\x53\xe0\x11\x33\x43\xe1"
        !          6236:             "\x43\x34\xe1\x44\x24\xd1\x54\x23\xd1\x73\x14\xd1\x78"
        !          6237:             "\xc1\x84\x0f\x14\xb1\x94\x04\xa1\xa4\x0f\x14\x91\xb4"
        !          6238:             "\x04\x81\xc8\x71\xd4\x13\x71\xd3\x24\x51\xd4\x24\x41"
        !          6239:             "\xe4\x33\x41\xe3\x43\x31\xe0\x13\x53\x12\xe3\x74\xe3"
        !          6240:             "\x92\xe0\x12\xa3\xd2\xb1\x13\x93\xb1\x34\x54\xb2\x67"
        !          6241:             "\xe1\xe0\xb4" }  },
        !          6242:       /* --- pixel bitmap for cmr325 char#32 (noname) --- */
        !          6243:       {  32,113629,                     /* character number, location */
        !          6244:          17, 1,   13, 1,      /* topleft row,col, and botleft row,col */
        !          6245:           { 10,    4, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          6246:             "\x00\x83\x83\xc1\x01" }  },
        !          6247:       /* --- pixel bitmap for cmr325 char#33 ! --- */
        !          6248:       {  33,95280,                      /* character number, location */
        !          6249:          32, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          6250:           {  5,   32, 3,31, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          6251:             "\x13\x1f\x55\xf9\x13\x10\xf4\x21\x20\xf4\x50\x13\x1f"
        !          6252:             "\x25\x13\x13" }  },
        !          6253:       /* --- pixel bitmap for cmr325 char#34 " --- */
        !          6254:       {  34,125008,                     /* character number, location */
        !          6255:          31, 1,   17, 1,      /* topleft row,col, and botleft row,col */
        !          6256:           { 15,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          6257:             "\x0e\x9c\x0f\xdf\x8f\xff\xc7\xef\xc2\x05\x01\x82\x00"
        !          6258:             "\x41\x80\x10\x20\x08\x10\x02\x04\x01\x42\x80\x10\x20"
        !          6259:             "\x00" }  },
        !          6260:       /* --- pixel bitmap for cmr325 char#35 # --- */
        !          6261:       {  35,96798,                      /* character number, location */
        !          6262:          31, 2,   -9, 2,      /* topleft row,col, and botleft row,col */
        !          6263:           { 33,   40, 3,143, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          6264:             "\xf2\xe0\x12\x92\x50\xe3\x83\x50\xf2\xe2\x92\x60\xd3"
        !          6265:             "\x83\x60\xf3\xd2\x92\x70\xc3\x83\xe0\x52\x92\x8f\x1e"
        !          6266:             "\x0e\x05\xb2\x92\xe0\x53\x83\x90\xf3\xa2\x92\xa0\x93"
        !          6267:             "\x83\xe0\x52\x92\xbf\x1e\x0e\x05\x82\x92\xe0\x53\x83"
        !          6268:             "\xc0\xf3\x72\x92\xd0\x63\x83\xd0\xf2\x62\x92\xe0\x53"
        !          6269:             "\x83\xe0\xf2\x52\x92\xe0\x10" }  },
        !          6270:       /* --- pixel bitmap for cmr325 char#36 $ --- */
        !          6271:       {  36,80373,                      /* character number, location */
        !          6272:          34, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
        !          6273:           { 18,   36, 3,149, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          6274:             "\xf2\x91\x80\x67\x92\x31\x32\x61\x51\x51\x41\x61\x61"
        !          6275:             "\x22\x61\x61\x21\x71\x73\x71\x53\x0f\x12\x71\x44\x03"
        !          6276:             "\x61\x52\x13\x61\x94\x41\x97\x11\xaa\x9b\x9a\xa9\xb1"
        !          6277:             "\x16\xa1\x34\x10\xf1\x91\x53\x12\x61\x62\x0f\x14\x51"
        !          6278:             "\x62\x03\x61\x63\x81\x61\x21\x71\x52\x21\x71\x51\x42"
        !          6279:             "\x51\x41\x72\x31\x22\xa6\x60\xf1\x91\x80" }  },
        !          6280:       /* --- pixel bitmap for cmr325 char#37 % --- */
        !          6281:       {  37,98115,                      /* character number, location */
        !          6282:          34, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
        !          6283:           { 33,   36, 3,243, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          6284:             "\x54\xe0\x42\x72\x41\xe0\x23\x62\x61\xe0\x12\x72\x72"
        !          6285:             "\xb4\x63\x71\x12\x75\x72\x81\x37\x22\x73\x91\xa3\x73"
        !          6286:             "\x91\x93\x83\x91\x92\x93\x91\x83\x93\x91\x73\xa3\x91"
        !          6287:             "\x72\xb3\x91\x63\xc2\x81\x63\xd3\x71\x62\xe0\x12\x71"
        !          6288:             "\x53\xe0\x12\x61\x53\xe0\x32\x41\x53\xe0\x64\x62\x84"
        !          6289:             "\xe0\x43\x62\x41\xe0\x23\x62\x61\xe0\x12\x72\x71\xd3"
        !          6290:             "\x62\x81\xc3\x72\x91\xb2\x73\x91\xa3\x73\x91\x93\x83"
        !          6291:             "\x91\x92\x93\x91\x83\x93\x91\x73\xa3\x91\x72\xc2\x91"
        !          6292:             "\x63\xc2\x81\x63\xe2\x71\x62\xe0\x12\x61\x63\xe0\x22"
        !          6293:             "\x41\x72\xe0\x54\x40" }  },
        !          6294:       /* --- pixel bitmap for cmr325 char#38 & --- */
        !          6295:       {  38,81731,                      /* character number, location */
        !          6296:          32, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          6297:           { 31,   33, 3,177, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          6298:             "\x94\xe0\xc1\x41\xe0\xa2\x41\xe0\x92\x61\xe0\x20\xf3"
        !          6299:             "\x53\x61\xe0\x20\xf1\x53\x51\xe0\x30\x53\x41\xe0\x93"
        !          6300:             "\x31\xe0\xb3\x21\xe0\xb3\x11\xaa\x64\xe4\xa3\xe3\xb3"
        !          6301:             "\xe2\xb5\xd1\xb1\x23\xc1\xb1\x34\xb1\xa2\x43\xa1\xa2"
        !          6302:             "\x63\x91\x93\x64\x71\xa3\x73\x61\xa4\x83\x51\xa4\x93"
        !          6303:             "\x31\xb4\x94\x11\xc4\xa4\xc1\x13\xb3\xc1\x14\xa4\xa1"
        !          6304:             "\x33\x91\x24\x72\x43\x53\x53\x52\x76\xa6\x4e" }  },
        !          6305:       /* --- pixel bitmap for cmr325 char#39 ' --- */
        !          6306:       {  39,98891,                      /* character number, location */
        !          6307:          31, 4,   17, 4,      /* topleft row,col, and botleft row,col */
        !          6308:           {  6,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          6309:             "\xce\xf7\xff\x2e\x08\x82\x10\x84\x20\x84\x00" }  },
        !          6310:       /* --- pixel bitmap for cmr325 char#40 ( --- */
        !          6311:       {  40,99483,                      /* character number, location */
        !          6312:          34, 5,  -12, 5,      /* topleft row,col, and botleft row,col */
        !          6313:           { 10,   46, 3,86, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          6314:             "\x91\x81\x81\x82\x72\x81\x82\x40\xf1\x32\x50\x23\x50"
        !          6315:             "\xf1\x22\x60\x13\x60\xf3\x12\x7f\xb3\x70\xf3\x12\x70"
        !          6316:             "\x13\x60\xf1\x22\x60\x23\x50\xf1\x32\x50\x42\x91\x92"
        !          6317:             "\x92\x91\xa1\xa1" }  },
        !          6318:       /* --- pixel bitmap for cmr325 char#41 ) --- */
        !          6319:       {  41,100138,                     /* character number, location */
        !          6320:          34, 2,  -12, 2,      /* topleft row,col, and botleft row,col */
        !          6321:           { 10,   46, 3,87, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          6322:             "\x01\xa1\xa1\x92\x92\x91\x92\x40\xf1\x52\x30\x53\x20"
        !          6323:             "\xf1\x62\x20\x63\x10\xf3\x72\x10\xfb\x73\xf3\x72\x10"
        !          6324:             "\x63\x10\xf1\x62\x20\x53\x20\xf1\x52\x30\x42\x81\x82"
        !          6325:             "\x72\x81\x81\x81\x92" }  },
        !          6326:       /* --- pixel bitmap for cmr325 char#42 * --- */
        !          6327:       {  42,100817,                     /* character number, location */
        !          6328:          34, 3,   15, 3,      /* topleft row,col, and botleft row,col */
        !          6329:           { 16,   19, 3,59, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          6330:             "\xf3\x72\x72\x52\x55\x42\x43\x13\x32\x33\x43\x12\x13"
        !          6331:             "\x86\xc2\xc6\x83\x12\x13\x43\x32\x33\x13\x42\x45\x52"
        !          6332:             "\x52\xf3\x72\x72" }  },
        !          6333:       /* --- pixel bitmap for cmr325 char#43 + --- */
        !          6334:       {  43,101543,                     /* character number, location */
        !          6335:          26, 3,   -4, 3,      /* topleft row,col, and botleft row,col */
        !          6336:           { 29,   30, 3,17, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          6337:             "\xfd\xe2\xdf\x1e\x0e\x01\xfd\xe2\xd2" }  },
        !          6338:       /* --- pixel bitmap for cmr325 char#44 (noname) --- */
        !          6339:       {  44,102158,                     /* character number, location */
        !          6340:           5, 4,   -9, 4,      /* topleft row,col, and botleft row,col */
        !          6341:           {  5,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          6342:             "\xee\xfd\xef\x21\x84\x08\x21\x42\x04" }  },
        !          6343:       /* --- pixel bitmap for cmr325 char#45 (noname) --- */
        !          6344:       {  45,125547,                     /* character number, location */
        !          6345:          11, 1,    9, 1,      /* topleft row,col, and botleft row,col */
        !          6346:           { 12,    2, 3, 4, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          6347:             "\xf1\x0c" }  },
        !          6348:       /* --- pixel bitmap for cmr325 char#46 (noname) --- */
        !          6349:       {  46,102639,                     /* character number, location */
        !          6350:           5, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          6351:           {  5,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          6352:             "\xee\xff\xef\x00" }  },
        !          6353:       /* --- pixel bitmap for cmr325 char#47 / --- */
        !          6354:       {  47,103151,                     /* character number, location */
        !          6355:          34, 2,  -11, 2,      /* topleft row,col, and botleft row,col */
        !          6356:           { 18,   45, 3,159, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          6357:             "\xf1\xe0\x22\xe0\x13\xf1\xe0\x12\x10\xe3\xe0\x12\xe0"
        !          6358:             "\x13\x20\xf1\xd2\x30\xc3\x30\xf1\xc2\x40\xb3\xe0\x12"
        !          6359:             "\xe0\x13\x50\xf1\xa2\x60\x93\x60\xf1\x92\x70\x83\xe0"
        !          6360:             "\x12\xe0\x13\x80\xf1\x72\x90\x63\x90\xf1\x62\xa0\x53"
        !          6361:             "\xe0\x12\xe0\x13\xb0\xf1\x42\xc0\x33\xc0\xf1\x32\xd0"
        !          6362:             "\x23\xe0\x12\xe0\x13\xe0\xf1\x12\xe0\x13\xe0\x1f\x12"
        !          6363:             "\xe0\x21" }  },
        !          6364:       /* --- pixel bitmap for cmr325 char#48 0 --- */
        !          6365:       {  48,70438,                      /* character number, location */
        !          6366:          30, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          6367:           { 18,   31, 3,63, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          6368:             "\x66\xa3\x43\x73\x63\x62\x82\x53\x83\x20\xf3\x13\xa3"
        !          6369:             "\x1f\xc4\xa4\xf2\x13\xa3\x10\x14\x84\x33\x83\x52\x82"
        !          6370:             "\x63\x63\x73\x43\xa6\x61" }  },
        !          6371:       /* --- pixel bitmap for cmr325 char#49 1 --- */
        !          6372:       {  49,71280,                      /* character number, location */
        !          6373:          30, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          6374:           { 15,   30, 3,28, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          6375:             "\x81\xc3\xa5\x64\x23\x60\xfe\x63\x60\xf8\x63\x60\x55"
        !          6376:             "\x6e" }  },
        !          6377:       /* --- pixel bitmap for cmr325 char#50 2 --- */
        !          6378:       {  50,72283,                      /* character number, location */
        !          6379:          30, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          6380:           { 18,   30, 3,101, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          6381:             "\x66\xa2\x53\x71\x83\x51\xa3\x31\xb4\x11\xc4\x14\x95"
        !          6382:             "\x0f\x25\x94\x21\xa5\xd5\xf1\xd4\x10\xc4\xe3\xe3\xe3"
        !          6383:             "\xe3\xe0\x12\xe0\x12\xe0\x12\xe0\x12\xe0\x12\xa1\x42"
        !          6384:             "\xb1\x32\xc1\x31\xc1\x3e\x01\x2e\x02\x1e\x03\x12" }  },
        !          6385:       /* --- pixel bitmap for cmr325 char#51 3 --- */
        !          6386:       {  51,73361,                      /* character number, location */
        !          6387:          30, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          6388:           { 18,   31, 3,105, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          6389:             "\x66\xa2\x53\x71\x83\x51\x94\x34\x75\x10\xf1\x14\x84"
        !          6390:             "\x10\x23\x75\xd5\x10\xf1\xc4\x20\xb4\xe3\xd3\xb7\xe0"
        !          6391:             "\x24\xe0\x23\xe0\x14\x20\xf1\xd4\x10\xd5\x21\xa5\x0f"
        !          6392:             "\x25\x85\x04\x94\x21\xb4\x21\xa4\x41\x93\x62\x54\x97"
        !          6393:             "\x62" }  },
        !          6394:       /* --- pixel bitmap for cmr325 char#52 4 --- */
        !          6395:       {  52,74333,                      /* character number, location */
        !          6396:          30, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          6397:           { 20,   30, 3,101, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          6398:             "\xf1\xd2\x50\xf1\xc3\x50\xb4\x50\xf1\xa1\x13\x50\x91"
        !          6399:             "\x23\x50\xf1\x81\x33\x50\x71\x43\x50\xf1\x61\x53\x50"
        !          6400:             "\x51\x63\x50\xf1\x41\x73\x50\x31\x83\x50\xf1\x21\x93"
        !          6401:             "\x50\x11\xa3\x52\xa3\x5e\x06\xf6\xc3\x50\x8b\x14" }  },
        !          6402:       /* --- pixel bitmap for cmr325 char#53 5 --- */
        !          6403:       {  53,75415,                      /* character number, location */
        !          6404:          30, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          6405:           { 18,   31, 3,91, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          6406:             "\x32\x92\x5c\x6b\x7a\x88\x70\xf5\x31\xe0\x31\x35\x91"
        !          6407:             "\x12\x43\x72\x73\x61\x93\x51\x94\x10\xf1\xe3\x10\xf2"
        !          6408:             "\xe4\x13\xa4\x0f\x14\xa4\x03\xb3\x21\xc3\x21\xb3\x41"
        !          6409:             "\xa2\x61\x82\x81\x53\xa6\x76" }  },
        !          6410:       /* --- pixel bitmap for cmr325 char#54 6 --- */
        !          6411:       {  54,76355,                      /* character number, location */
        !          6412:          30, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          6413:           { 18,   31, 3,101, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          6414:             "\x95\xb2\x51\x83\x71\x63\x73\x52\x74\x42\x84\x33\x92"
        !          6415:             "\x43\xe4\xd0\xf1\x13\xe4\x35\x64\x21\x43\x44\x11\x72"
        !          6416:             "\x35\x83\x2f\x15\x93\x1f\x44\xa4\xf1\x13\xa4\x13\xa3"
        !          6417:             "\x33\x93\x33\x83\x52\x83\x62\x63\x82\x43\xb5\x64" }  },
        !          6418:       /* --- pixel bitmap for cmr325 char#55 7 --- */
        !          6419:       {  55,77319,                      /* character number, location */
        !          6420:          30, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          6421:           { 19,   31, 3,83, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          6422:             "\x11\xe0\x4e\x04\xf1\x1e\x03\x10\x11\xe1\x2f\x11\xe1"
        !          6423:             "\x31\xd1\x40\xf1\xd1\x50\xc1\x60\xf1\xb1\x70\xf1\xa1"
        !          6424:             "\x80\xf1\x92\x80\x83\xe0\x22\x90\xf3\x73\x90\xf6\x64"
        !          6425:             "\x90\x72\xa3" }  },
        !          6426:       /* --- pixel bitmap for cmr325 char#56 8 --- */
        !          6427:       {  56,78269,                      /* character number, location */
        !          6428:          30, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          6429:           { 18,   31, 3,105, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          6430:             "\x66\xa2\x62\x71\x92\x52\xa2\x41\xc2\x10\xf2\x12\xc2"
        !          6431:             "\x10\x13\xb2\x24\x92\x45\x72\x46\x52\x67\x21\x98\xc7"
        !          6432:             "\xa9\x82\x36\x61\x66\x42\x85\x22\xa4\x22\xc5\xd3\x0f"
        !          6433:             "\x22\xe2\x02\xe1\x22\xc2\x31\xc1\x51\xa1\x72\x62\xa6"
        !          6434:             "\x62" }  },
        !          6435:       /* --- pixel bitmap for cmr325 char#57 9 --- */
        !          6436:       {  57,79229,                      /* character number, location */
        !          6437:          30, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          6438:           { 18,   31, 3,99, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          6439:             "\x66\xa3\x42\x83\x62\x63\x82\x53\x83\x33\x93\x33\xa3"
        !          6440:             "\x1f\x14\xa3\x1f\x44\xa4\xf1\x13\x95\x23\x85\x32\x71"
        !          6441:             "\x14\x43\x41\x24\x65\x34\xf2\xe3\x10\xd3\x42\x93\x34"
        !          6442:             "\x82\x44\x73\x43\x82\x61\x82\x81\x53\xa6\x82" }  },
        !          6443:       /* --- pixel bitmap for cmr325 char#58 : --- */
        !          6444:       {  58,103787,                     /* character number, location */
        !          6445:          19, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          6446:           {  5,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          6447:             "\xee\xff\xef\x00\x00\x00\x00\x00\x80\xfb\xff\x3b" }  },
        !          6448:       /* --- pixel bitmap for cmr325 char#59 ; --- */
        !          6449:       {  59,104462,                     /* character number, location */
        !          6450:          19, 4,   -9, 4,      /* topleft row,col, and botleft row,col */
        !          6451:           {  5,   28, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          6452:             "\xee\xff\xef\x00\x00\x00\x00\x00\x80\x7b\xff\x7b\x08"
        !          6453:             "\x21\x42\x88\x10\x01" }  },
        !          6454:       /* --- pixel bitmap for cmr325 char#60 (noname) --- */
        !          6455:       {  60,95922,                      /* character number, location */
        !          6456:          22, 4,  -10, 4,      /* topleft row,col, and botleft row,col */
        !          6457:           {  5,   32, 3,31, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          6458:             "\x13\x1f\x25\x13\x10\xf4\x50\xf4\x21\x20\xf9\x13\x1f"
        !          6459:             "\x55\x13\x13" }  },
        !          6460:       /* --- pixel bitmap for cmr325 char#61 = --- */
        !          6461:       {  61,105160,                     /* character number, location */
        !          6462:          17, 3,    5, 3,      /* topleft row,col, and botleft row,col */
        !          6463:           { 29,   12, 2,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          6464:             "\xff\x01\x00\x1d\xff\x07\x1d\xff\x01\x1d" }  },
        !          6465:       /* --- pixel bitmap for cmr325 char#62 (noname) --- */
        !          6466:       {  62,83762,                      /* character number, location */
        !          6467:          22, 2,   -9, 2,      /* topleft row,col, and botleft row,col */
        !          6468:           { 17,   31, 3,71, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          6469:             "\x63\x80\xf2\x55\x70\x63\x80\xf4\xe0\x30\xf4\x71\x90"
        !          6470:             "\x62\x90\xf1\x61\xa0\x52\xe2\xe3\xd3\xd4\xc4\xa2\x1f"
        !          6471:             "\x24\x94\x04\xb1\x23\xa2\x33\x72\x78\x54" }  },
        !          6472:       /* --- pixel bitmap for cmr325 char#63 ? --- */
        !          6473:       {  63,82788,                      /* character number, location */
        !          6474:          31, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          6475:           { 17,   31, 3,71, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          6476:             "\x48\x72\x73\x41\xa4\x21\xb3\x1f\x24\x94\x12\xa4\xc4"
        !          6477:             "\xc4\xc3\xd3\xe2\xe2\xe0\x11\xe0\x12\x80\xf4\x71\x90"
        !          6478:             "\xf4\xe0\x30\x63\x80\xf2\x55\x70\x63\x84" }  },
        !          6479:       /* --- pixel bitmap for cmr325 char#64 @ --- */
        !          6480:       {  64,106334,                     /* character number, location */
        !          6481:          31, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          6482:           { 29,   31, 3,183, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          6483:             "\xb7\xe0\x53\x73\xe0\x11\xd1\xd1\xe0\x11\xa2\xe0\x32"
        !          6484:             "\x81\xe0\x51\x71\x85\x81\x51\x72\x52\x71\x41\x53\x81"
        !          6485:             "\x61\x31\x53\xa1\x61\x21\x52\xc3\x31\x21\x43\xc3\x31"
        !          6486:             "\x11\x52\xd3\x41\x0f\x41\x43\xd3\x41\x01\x52\xd3\x41"
        !          6487:             "\x11\x43\xc3\x41\x11\x52\xc3\x41\x11\x53\xa4\x41\x21"
        !          6488:             "\x53\x81\x13\x31\x31\x72\x52\x32\x31\x41\x85\x64\x61"
        !          6489:             "\xe0\xe2\xe0\xe0\x11\xe0\xe0\x11\xe0\x34\x83\xa6\xdb"
        !          6490:             "\x71" }  },
        !          6491:       /* --- pixel bitmap for cmr325 char#65 A --- */
        !          6492:       {  65, 1066,                      /* character number, location */
        !          6493:          32, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          6494:           { 32,   32, 3,128, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          6495:             "\xf2\xe0\x12\xe0\x10\xf1\xe4\xe0\xd6\xd0\xf1\xd1\x14"
        !          6496:             "\xd0\xc1\x25\xc0\xf1\xc1\x34\xc0\xf2\xb1\x54\xb0\xf1"
        !          6497:             "\xa1\x74\xa0\x92\x75\x90\xf1\x91\x94\x90\x81\xa5\xe0"
        !          6498:             "\x21\xb4\xe0\x2e\x02\x80\xf2\x71\xd4\x70\xf2\x61\xe0"
        !          6499:             "\x14\x60\x51\xe0\x34\x93\xe0\x24\x85\xe6\x4a\x9d" }  },
        !          6500:       /* --- pixel bitmap for cmr325 char#66 B --- */
        !          6501:       {  66, 2494,                      /* character number, location */
        !          6502:          31, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          6503:           { 29,   31, 3,107, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          6504:             "\x0e\x07\xd4\xa4\xb4\xb4\xa4\xc4\x94\xd4\x30\xf4\x54"
        !          6505:             "\xd5\x20\x54\xd4\x84\xc5\x84\xb5\x94\xa5\xae\x03\xc4"
        !          6506:             "\xa5\xa4\xc5\x84\xd5\x20\xf1\x54\xe5\x10\xf4\x54\xe0"
        !          6507:             "\x15\x54\xe0\x14\x64\xe5\x64\xd5\x74\xc5\x84\xb4\x5e"
        !          6508:             "\x08\x70" }  },
        !          6509:       /* --- pixel bitmap for cmr325 char#67 C --- */
        !          6510:       {  67, 3483,                      /* character number, location */
        !          6511:          32, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          6512:           { 28,   33, 3,139, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          6513:             "\xc7\x81\xa3\x62\x52\x83\xa2\x23\x64\xd1\x13\x54\xe0"
        !          6514:             "\x14\x44\xe0\x33\x34\xe0\x43\x34\xe0\x52\xf1\x24\xe0"
        !          6515:             "\x62\x15\xe0\x71\x14\xe0\x86\xe0\x81\x0f\x75\xe0\x90"
        !          6516:             "\x14\xe0\x81\x15\xe0\x71\xf1\x24\xe0\x71\xf1\x34\xe0"
        !          6517:             "\x51\x10\x44\xe0\x31\x74\xe0\x11\x94\xd1\xc3\xb1\xe0"
        !          6518:             "\x13\x72\xe0\x48\x80" }  },
        !          6519:       /* --- pixel bitmap for cmr325 char#68 D --- */
        !          6520:       {  68, 4699,                      /* character number, location */
        !          6521:          31, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          6522:           { 31,   31, 3,119, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          6523:             "\x0e\x07\xe0\x14\xa4\xd4\xc4\xb4\xd4\xa4\xe4\x94\xe0"
        !          6524:             "\x14\x84\xe0\x23\x30\xf1\x54\xe0\x24\x20\xf2\x54\xe0"
        !          6525:             "\x34\x10\xf7\x54\xe0\x35\xf1\x54\xe0\x34\x10\x54\xe0"
        !          6526:             "\x25\x10\xf1\x54\xe0\x24\x20\x54\xe0\x14\x84\xe4\x94"
        !          6527:             "\xd4\xa4\xc4\xb4\xa4\x8e\x07\xa1" }  },
        !          6528:       /* --- pixel bitmap for cmr325 char#69 E --- */
        !          6529:       {  69, 6196,                      /* character number, location */
        !          6530:          31, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          6531:           { 28,   31, 3,129, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          6532:             "\x0e\x0c\x65\xc5\x74\xe3\x74\xe0\x12\x74\xe0\x21\x74"
        !          6533:             "\xe0\x22\x10\xf2\x54\xe0\x31\x10\x54\x91\x71\x10\xf1"
        !          6534:             "\x54\x91\x90\x54\x82\xe4\x73\xee\xe4\x73\xe4\x82\x90"
        !          6535:             "\xf2\x54\x91\x90\xf2\x54\xe0\x41\xf2\x54\xe0\x31\x10"
        !          6536:             "\x54\xe0\x22\x64\xe0\x13\x64\xe3\x65\xc5\x2e\x0c\x20" }  },
        !          6537:       /* --- pixel bitmap for cmr325 char#70 F --- */
        !          6538:       {  70, 7551,                      /* character number, location */
        !          6539:          31, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          6540:           { 26,   31, 3,91, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          6541:             "\x0e\x0b\x64\xc4\x10\xf1\x54\xe2\x10\x54\xe0\x11\x64"
        !          6542:             "\xe0\x12\xf3\x54\xe0\x21\xf2\x54\x91\x70\x54\x82\xc4"
        !          6543:             "\x73\xce\xc4\x73\xc4\x82\x70\xf2\x54\x91\x70\xf7\x54"
        !          6544:             "\xe0\x30\x55\xe0\x2e\x01\xb0" }  },
        !          6545:       /* --- pixel bitmap for cmr325 char#71 G --- */
        !          6546:       {  71, 8768,                      /* character number, location */
        !          6547:          32, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          6548:           { 30,   33, 3,161, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          6549:             "\xc7\x71\xc4\x62\x42\xb3\xa1\x23\x93\xd1\x13\x83\xe0"
        !          6550:             "\x14\x74\xe0\x23\x64\xe0\x33\x64\xe0\x42\x30\xf1\x24"
        !          6551:             "\xe0\x52\x30\x15\xe0\x61\x44\xe0\x71\x35\xe0\x71\x3f"
        !          6552:             "\x55\xe0\xb5\xce\x04\xe0\x35\x44\xe0\x44\x45\xe0\x34"
        !          6553:             "\x30\xf1\x24\xe0\x34\x30\xf1\x34\xe0\x24\x30\x44\xe0"
        !          6554:             "\x14\x83\xe0\x14\x93\xd1\x13\xb3\xa1\x32\xc4\x62\x51"
        !          6555:             "\xe0\x17\xb0" }  },
        !          6556:       /* --- pixel bitmap for cmr325 char#72 H --- */
        !          6557:       {  72,10049,                      /* character number, location */
        !          6558:          31, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          6559:           { 32,   31, 3,28, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          6560:             "\x0e\x4e\xfc\x54\xe4\x50\x5e\x08\x50\xfe\x54\xe4\x5e"
        !          6561:             "\x4e" }  },
        !          6562:       /* --- pixel bitmap for cmr325 char#73 I --- */
        !          6563:       {  73,10824,                      /* character number, location */
        !          6564:          31, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          6565:           { 14,   31, 3,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          6566:             "\x0e\xfe\x54\x50\xfd\x54\x5e" }  },
        !          6567:       /* --- pixel bitmap for cmr325 char#74 J --- */
        !          6568:       {  74,11680,                      /* character number, location */
        !          6569:          31, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          6570:           { 18,   32, 3,47, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          6571:             "\x5d\xa5\x30\xfe\xb4\x30\xf5\xb4\x30\x21\x84\x3f\x25"
        !          6572:             "\x64\x34\x73\x51\x84\x52\x73\x81\x53\xa6\x80" }  },
        !          6573:       /* --- pixel bitmap for cmr325 char#75 K --- */
        !          6574:       {  75,12937,                      /* character number, location */
        !          6575:          31, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          6576:           { 32,   31, 3,166, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          6577:             "\x0e\x99\x54\xe0\x15\x84\xe0\x22\xa4\xe0\x21\xb4\xe0"
        !          6578:             "\x11\xc4\xe1\xd4\xd1\xe4\xc1\xe0\x14\xa2\xe0\x24\x91"
        !          6579:             "\xe0\x44\x81\xe0\x54\x71\xe0\x64\x62\xe0\x64\x54\xe0"
        !          6580:             "\x54\x45\xe0\x54\x31\x24\xe0\x44\x21\x44\xe0\x34\x11"
        !          6581:             "\x54\xe0\x35\x74\xb0\xf1\x54\x94\xa0\x54\xa4\x90\xf1"
        !          6582:             "\x54\xb4\x80\x54\xc4\x70\xf1\x54\xd4\x60\x54\xe4\xa4"
        !          6583:             "\xe5\x94\xe6\x3e\x6c" }  },
        !          6584:       /* --- pixel bitmap for cmr325 char#76 L --- */
        !          6585:       {  76,13992,                      /* character number, location */
        !          6586:          31, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          6587:           { 25,   31, 3,67, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          6588:             "\x0e\x01\xe0\x15\xe0\x10\xfe\x54\xe0\x20\xf2\x54\xe0"
        !          6589:             "\x20\xf3\x54\xe0\x11\x54\xe2\x54\xe1\x10\xf1\x54\xd2"
        !          6590:             "\x10\x54\xc3\x64\xa5\x1e\x0a\x14" }  },
        !          6591:       /* --- pixel bitmap for cmr325 char#77 M --- */
        !          6592:       {  77,15374,                      /* character number, location */
        !          6593:          31, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          6594:           { 39,   31, 3,156, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          6595:             "\x0a\xe0\x5a\xf1\x55\xe0\x55\x50\xf1\x51\x14\xe0\x31"
        !          6596:             "\x14\x50\xf2\x51\x24\xe0\x11\x24\x50\xf1\x51\x34\xd1"
        !          6597:             "\x34\x50\xf2\x51\x44\xb1\x44\x50\xf1\x51\x54\x91\x54"
        !          6598:             "\x50\xf2\x51\x64\x71\x64\x50\xf2\x51\x74\x51\x74\x50"
        !          6599:             "\xf1\x51\x84\x31\x84\x50\xf2\x51\x94\x11\x94\x50\xf1"
        !          6600:             "\x51\xa4\xa4\x50\x51\xb2\xb4\x85\x92\xb4\x5b\x62\x6e" }  },
        !          6601:       /* --- pixel bitmap for cmr325 char#78 N --- */
        !          6602:       {  78,16670,                      /* character number, location */
        !          6603:          31, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          6604:           { 32,   31, 3,187, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          6605:             "\x09\xcb\x55\xe5\x86\xe0\x11\xa1\x14\xe0\x11\xa1\x24"
        !          6606:             "\xe1\xa1\x25\xd1\xa1\x34\xd1\xa1\x44\xc1\xa1\x54\xb1"
        !          6607:             "\xa1\x55\xa1\xa1\x64\xa1\xa1\x74\x91\xa1\x75\x81\xa1"
        !          6608:             "\x84\x81\xa1\x94\x71\xa1\x95\x61\xa1\xa4\x61\xa1\xb4"
        !          6609:             "\x51\xa1\xc4\x41\xa1\xc5\x31\xa1\xd4\x31\xa1\xe4\x21"
        !          6610:             "\xa1\xe5\x11\xa1\xe0\x14\x11\x50\xf1\x51\xe0\x25\x50"
        !          6611:             "\x51\xe0\x34\xa1\xe0\x43\xa1\xe0\x52\x85\xe0\x32\x5b"
        !          6612:             "\xe0\x11\x50" }  },
        !          6613:       /* --- pixel bitmap for cmr325 char#79 O --- */
        !          6614:       {  79,17623,                      /* character number, location */
        !          6615:          32, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          6616:           { 29,   33, 3,133, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          6617:             "\xb7\xe0\x54\x54\xe0\x13\x93\xd3\xb3\xb3\xd3\x93\xe0"
        !          6618:             "\x13\x74\xe0\x14\x30\xf1\x24\xe0\x34\x20\x15\xe0\x35"
        !          6619:             "\x10\xf1\x14\xe0\x54\x1f\x85\xe0\x55\x14\xe0\x54\x10"
        !          6620:             "\xf1\x15\xe0\x35\x10\x24\xe0\x34\x45\xe0\x15\x54\xe0"
        !          6621:             "\x14\x74\xd4\x93\xd3\xb3\xb3\xd3\x93\xe0\x14\x54\xe0"
        !          6622:             "\x57\xb5" }  },
        !          6623:       /* --- pixel bitmap for cmr325 char#80 P --- */
        !          6624:       {  80,18842,                      /* character number, location */
        !          6625:          31, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          6626:           { 27,   31, 3,73, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          6627:             "\x0e\x06\xb5\x94\xa4\xb4\x84\xc4\x20\xf1\x54\xd4\x10"
        !          6628:             "\xf3\x54\xd5\xf1\x54\xd4\x10\x54\xc4\x74\xb4\x84\x94"
        !          6629:             "\xae\x01\x70\xfc\x54\xe0\x40\x46\xe0\x3e\xd0" }  },
        !          6630:       /* --- pixel bitmap for cmr325 char#81 Q --- */
        !          6631:       {  81,19907,                      /* character number, location */
        !          6632:          32, 3,   -9, 3,      /* topleft row,col, and botleft row,col */
        !          6633:           { 29,   41, 3,191, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          6634:             "\xb7\xe0\x54\x54\xe0\x13\x93\xd3\xb3\xb3\xd3\x93\xe0"
        !          6635:             "\x13\x74\xe0\x14\x30\xf1\x24\xe0\x34\x20\xf1\x15\xe0"
        !          6636:             "\x35\x10\x14\xe0\x54\x1f\x85\xe0\x55\x14\xe0\x54\x10"
        !          6637:             "\xf1\x15\xe0\x35\x10\x24\xe0\x34\x44\x73\x74\x54\x51"
        !          6638:             "\x41\x44\x73\x41\x51\x43\x93\x31\x61\x23\xb3\x21\x61"
        !          6639:             "\x13\xd3\x11\x64\xe0\x15\x44\x71\xb7\x11\x81\xe0\x52"
        !          6640:             "\x71\xe0\x52\x62\xe0\x53\x43\xf1\xe0\x59\x10\xe0\x68"
        !          6641:             "\xe0\x86\xe0\xa4\x30" }  },
        !          6642:       /* --- pixel bitmap for cmr325 char#82 R --- */
        !          6643:       {  82,21344,                      /* character number, location */
        !          6644:          31, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
        !          6645:           { 32,   32, 3,139, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          6646:             "\x0e\x05\xe0\x44\x84\xe0\x24\xa4\xe4\xb4\x80\xf1\x54"
        !          6647:             "\xc4\x70\xf3\x54\xc5\x60\xf1\x54\xc4\x70\x54\xb4\xd4"
        !          6648:             "\xa4\xe4\x84\xe0\x2e\xe0\x44\x82\xe0\x44\x93\xe0\x24"
        !          6649:             "\x94\xe0\x14\xa3\xa0\xf2\x54\xa4\x90\xf2\x54\xa5\x80"
        !          6650:             "\x54\xa5\x71\x54\xa6\x61\x54\xb5\x61\x54\xc4\x51\x1e"
        !          6651:             "\x84\x31\xe0\xc5\x30" }  },
        !          6652:       /* --- pixel bitmap for cmr325 char#83 S --- */
        !          6653:       {  83,22463,                      /* character number, location */
        !          6654:          32, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          6655:           { 20,   33, 3,113, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          6656:             "\x66\x51\x62\x62\x22\x52\x94\x42\xb3\x32\xc3\x32\xd2"
        !          6657:             "\x23\xd2\x2f\x23\xe1\x2f\x14\xe0\x20\x15\xe0\x18\xdb"
        !          6658:             "\xac\x9d\xab\xd7\xe0\x25\xe0\x24\x10\xf1\xe0\x24\x0f"
        !          6659:             "\x31\xe0\x23\x02\xe0\x12\x12\xe3\x13\xd2\x25\xa2\x32"
        !          6660:             "\x32\x63\x41\x67\x66" }  },
        !          6661:       /* --- pixel bitmap for cmr325 char#84 T --- */
        !          6662:       {  84,23605,                      /* character number, location */
        !          6663:          31, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          6664:           { 28,   31, 3,61, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          6665:             "\x1e\x0c\x24\x74\x74\x22\x94\x92\x10\xf1\x11\xa4\xa1"
        !          6666:             "\x12\xa4\xa2\x0f\x31\xb4\xb1\xfe\xc4\xc0\xf3\xc4\xc0"
        !          6667:             "\xb6\xe0\x3e\x02\x60" }  },
        !          6668:       /* --- pixel bitmap for cmr325 char#85 U --- */
        !          6669:       {  85,24679,                      /* character number, location */
        !          6670:          31, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
        !          6671:           { 32,   32, 3,77, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          6672:             "\x0e\x7b\x54\xe0\x15\x30\xfe\x54\xe0\x31\x50\xf6\x54"
        !          6673:             "\xe0\x31\x50\x63\xe0\x21\xc4\xe0\x11\xd3\xe1\xe0\x13"
        !          6674:             "\xd1\xe0\x13\xc1\xe0\x42\xa1\xe0\x63\x62\xe0\x97\xcf" }  },
        !          6675:       /* --- pixel bitmap for cmr325 char#86 V --- */
        !          6676:       {  86,25775,                      /* character number, location */
        !          6677:          31, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
        !          6678:           { 32,   32, 3,133, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          6679:             "\x0c\xb9\x36\xe0\x25\x64\xe0\x42\x85\xe0\x32\x40\xf1"
        !          6680:             "\x54\xe0\x31\x50\xf2\x64\xe0\x11\x60\xf1\x74\xd1\x70"
        !          6681:             "\x75\xb2\x70\xf1\x84\xb1\x80\xf1\x94\x91\x90\x95\x72"
        !          6682:             "\x90\xf1\xa4\x71\xa0\xf1\xb4\x51\xb0\xb5\x41\xb0\xf1"
        !          6683:             "\xc4\x31\xc0\xf2\xd4\x11\xd0\xf2\xe4\xe0\xf1\xe0\x12"
        !          6684:             "\xe0\x11" }  },
        !          6685:       /* --- pixel bitmap for cmr325 char#87 W --- */
        !          6686:       {  87,27304,                      /* character number, location */
        !          6687:          31, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
        !          6688:           { 44,   32, 3,225, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          6689:             "\x0c\x5c\x69\x35\xc6\xb5\x64\xd4\xe2\x74\xd4\xe1\x84"
        !          6690:             "\xd5\xd1\x85\xc5\xc2\x94\xc5\xc1\xa4\xb1\x24\xb1\xa5"
        !          6691:             "\xa1\x24\xb1\xb4\xa1\x24\xa1\xc4\x92\x25\x91\xc4\x91"
        !          6692:             "\x44\x91\x60\xf1\x74\x81\x44\x81\x70\x74\x71\x64\x71"
        !          6693:             "\x70\xf1\x84\x61\x64\x61\x80\x84\x51\x84\x51\x80\xf1"
        !          6694:             "\x94\x41\x84\x41\x90\x94\x31\xa4\x31\xe0\x45\x21\xa4"
        !          6695:             "\x22\xe0\x54\x21\xa4\x21\xe0\x64\x11\xc4\x11\xe0\x66"
        !          6696:             "\xc4\x11\xa0\xf1\xb5\xc5\xb0\xb4\xe4\xb0\xf1\xc3\xe3"
        !          6697:             "\xc0\xc2\xe0\x22\xe0\xb1\xe0\x21\xd0" }  },
        !          6698:       /* --- pixel bitmap for cmr325 char#88 X --- */
        !          6699:       {  88,28573,                      /* character number, location */
        !          6700:          31, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          6701:           { 32,   31, 3,160, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          6702:             "\x1c\x7a\x67\xb5\xa5\xd2\xd5\xc1\xe0\x14\xb1\xe0\x25"
        !          6703:             "\x92\xe0\x35\x81\xe0\x54\x71\xe0\x65\x52\xe0\x75\x41"
        !          6704:             "\xe0\x94\x31\xe0\xa5\x11\xe0\xc6\xe0\xd4\xe0\xe5\xe0"
        !          6705:             "\xf1\xe5\xd0\xd1\x15\xe0\xa2\x25\xe0\x91\x44\xe0\x81"
        !          6706:             "\x55\xe0\x62\x65\xe0\x51\x84\xe0\x41\x95\xe0\x21\xb5"
        !          6707:             "\xe0\x11\xc4\xe1\xd5\xc1\xe0\x15\xa3\xe0\x14\x86\xd6"
        !          6708:             "\x4a\xac" }  },
        !          6709:       /* --- pixel bitmap for cmr325 char#89 Y --- */
        !          6710:       {  89,29815,                      /* character number, location */
        !          6711:          31, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          6712:           { 32,   31, 3,111, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          6713:             "\x0c\xc8\x36\xe0\x25\x65\xe0\x32\x94\xe0\x31\xa5\xe0"
        !          6714:             "\x12\xb4\xe0\x11\xd4\xd1\xe5\xc1\xe0\x14\xb1\xe0\x25"
        !          6715:             "\x92\xe0\x35\x81\xe0\x54\x71\xe0\x65\x61\xe0\x74\x51"
        !          6716:             "\xe0\x85\x31\xe0\xa5\x21\xe0\xb4\x11\xe0\xc6\xd0\xfb"
        !          6717:             "\xe4\xe0\x9d\xa5" }  },
        !          6718:       /* --- pixel bitmap for cmr325 char#90 Z --- */
        !          6719:       {  90,30904,                      /* character number, location */
        !          6720:          31, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          6721:           { 23,   31, 3,123, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          6722:             "\x1e\x08\x16\xb4\x24\xd4\x23\xd4\x32\xd5\x32\xd4\x41"
        !          6723:             "\xd4\x51\xc5\x51\xc4\x61\xb4\xe0\x54\xe0\x44\x70\xf1"
        !          6724:             "\xb4\x80\xa4\xe0\x45\xe0\x44\xe0\x44\xe0\x45\xe0\x44"
        !          6725:             "\xc0\xf1\x64\xc1\x54\xd1\x45\xd1\x44\xd2\x34\xe1\x35"
        !          6726:             "\xe1\x34\xe2\x24\xe3\x24\xc5\x1e\x08\x15" }  },
        !          6727:       /* --- pixel bitmap for cmr325 char#91 [ --- */
        !          6728:       {  91,107171,                     /* character number, location */
        !          6729:          34, 4,  -11, 4,      /* topleft row,col, and botleft row,col */
        !          6730:           {  8,   45, 3,20, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          6731:             "\xf1\x08\x0f\xe2\x6f\xe2\x6f\xa2\x6f\x18" }  },
        !          6732:       /* --- pixel bitmap for cmr325 char#92 (noname) --- */
        !          6733:       {  92,126416,                     /* character number, location */
        !          6734:          31, 6,   17, 6,      /* topleft row,col, and botleft row,col */
        !          6735:           { 15,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          6736:             "\x10\x20\x04\x08\x01\x82\x00\x21\x40\x10\x20\x04\x08"
        !          6737:             "\x02\x04\x01\x82\x0e\xdd\x8f\xff\xc7\xef\xc3\xe7\xc0"
        !          6738:             "\x01" }  },
        !          6739:       /* --- pixel bitmap for cmr325 char#93 ] --- */
        !          6740:       {  93,107909,                     /* character number, location */
        !          6741:          34, 0,  -11, 0,      /* topleft row,col, and botleft row,col */
        !          6742:           {  8,   45, 3,20, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          6743:             "\xf1\x08\xfe\x62\xfe\x62\xfa\x62\x0f\x18" }  },
        !          6744:       /* --- pixel bitmap for cmr325 char#94 \^ --- */
        !          6745:       {  94,114258,                     /* character number, location */
        !          6746:          31, 5,   24, 5,      /* topleft row,col, and botleft row,col */
        !          6747:           { 12,    7, 3,20, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          6748:             "\x52\x94\x76\x53\x23\x32\x62\x12\x83\xa1" }  },
        !          6749:       /* --- pixel bitmap for cmr325 char#95 (noname) --- */
        !          6750:       {  95,114737,                     /* character number, location */
        !          6751:          31, 3,   26, 3,      /* topleft row,col, and botleft row,col */
        !          6752:           {  6,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          6753:             "\x8c\xf7\x7b\x0c" }  },
        !          6754:       /* --- pixel bitmap for cmr325 char#96 (noname) --- */
        !          6755:       {  96,108567,                     /* character number, location */
        !          6756:          31, 3,   17, 3,      /* topleft row,col, and botleft row,col */
        !          6757:           {  6,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          6758:             "\x10\x42\x10\x82\x10\x04\x41\xf7\xff\x3e\x07" }  },
        !          6759:       /* --- pixel bitmap for cmr325 char#97 a --- */
        !          6760:       {  97,32096,                      /* character number, location */
        !          6761:          19, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          6762:           { 20,   19, 3,77, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          6763:             "\x38\xb2\x63\x84\x63\x74\x72\x82\x83\x50\xf1\xc3\x50"
        !          6764:             "\x87\xa5\x23\x84\x53\x73\x73\x64\x73\x5f\x24\x83\x41"
        !          6765:             "\x04\x74\x41\x14\x64\x41\x23\x42\x23\x21\x55\x54\x24" }  },
        !          6766:       /* --- pixel bitmap for cmr325 char#98 b --- */
        !          6767:       {  98,33144,                      /* character number, location */
        !          6768:          31, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          6769:           { 21,   31, 3,81, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          6770:             "\x06\xe0\x10\xfa\x33\xe0\x10\x33\x36\x93\x12\x53\x74"
        !          6771:             "\x83\x63\xa3\x53\xa4\x43\xb3\x10\xf5\x33\xb4\xf1\x33"
        !          6772:             "\xb3\x10\x33\xa3\x54\x93\x52\x11\x83\x62\x22\x52\x81"
        !          6773:             "\x55\x71" }  },
        !          6774:       /* --- pixel bitmap for cmr325 char#99 c --- */
        !          6775:       {  99,33975,                      /* character number, location */
        !          6776:          19, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          6777:           { 17,   19, 3,47, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          6778:             "\x68\x73\x62\x53\x64\x33\x74\x24\x82\x33\xdf\x64\xd0"
        !          6779:             "\x13\xe4\xb1\x23\xb1\x33\x91\x53\x62\x87\x44" }  },
        !          6780:       /* --- pixel bitmap for cmr325 char#100 d --- */
        !          6781:       { 100,34996,                      /* character number, location */
        !          6782:          31, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          6783:           { 22,   31, 3,76, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          6784:             "\xb7\x40\xfa\xe0\x13\x40\x75\x33\x92\x52\x13\x73\x84"
        !          6785:             "\x40\xf1\x23\xa3\x40\xf1\x13\xb3\x4f\x54\xb3\x40\x13"
        !          6786:             "\xb3\x54\xa3\x63\x94\x73\x75\x83\x51\x23\xa6\x37" }  },
        !          6787:       /* --- pixel bitmap for cmr325 char#101 e --- */
        !          6788:       { 101,35810,                      /* character number, location */
        !          6789:          19, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          6790:           { 18,   19, 3,61, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          6791:             "\x76\xa2\x53\x63\x73\x20\xf1\x23\x93\x10\x13\xa4\x13"
        !          6792:             "\xb7\xbe\x07\x0f\x24\xe0\xf1\x13\xe0\xf1\x23\xc1\x42"
        !          6793:             "\xa1\x63\x62\x97\x44" }  },
        !          6794:       /* --- pixel bitmap for cmr325 char#102 f --- */
        !          6795:       { 102,36689,                      /* character number, location */
        !          6796:          31, 0,    0, 0,      /* topleft row,col, and botleft row,col */
        !          6797:           { 17,   31, 3,43, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          6798:             "\xa5\xa3\x32\x82\x44\x63\x44\x53\x62\x10\xf6\x53\x9d"
        !          6799:             "\x40\xfe\x53\x90\xf1\x53\x90\x1b\x50" }  },
        !          6800:       /* --- pixel bitmap for cmr325 char#103 g --- */
        !          6801:       { 103,37960,                      /* character number, location */
        !          6802:          20, 1,  -10, 1,      /* topleft row,col, and botleft row,col */
        !          6803:           { 20,   30, 3,109, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          6804:             "\xe0\x23\x75\x32\x22\x43\x34\x42\x33\x53\x41\x33\x73"
        !          6805:             "\x50\xf3\x14\x74\x40\x23\x73\x83\x53\x94\x33\x92\x25"
        !          6806:             "\x90\xf1\x21\xe0\x30\xf1\x22\xe0\x20\x2d\x8e\x6e\x01"
        !          6807:             "\x42\xb4\x22\xe3\x0f\x32\xe0\x22\x12\xe2\x32\xc2\x53"
        !          6808:             "\x83\x98\x62" }  },
        !          6809:       /* --- pixel bitmap for cmr325 char#104 h --- */
        !          6810:       { 104,38993,                      /* character number, location */
        !          6811:          31, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          6812:           { 22,   31, 3,50, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          6813:             "\x06\xe0\x20\xfa\x33\xe0\x20\x33\x45\xa3\x22\x42\x93"
        !          6814:             "\x11\x72\x50\xf1\x34\x83\x40\xfc\x33\x93\x4a\x2a" }  },
        !          6815:       /* --- pixel bitmap for cmr325 char#105 i --- */
        !          6816:       { 105,39788,                      /* character number, location */
        !          6817:          31, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          6818:           {  9,   31, 3,32, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          6819:             "\x23\x40\xf2\x15\x30\x23\x40\xf6\x96\x30\xfe\x33\x30"
        !          6820:             "\xf1\x33\x39" }  },
        !          6821:       /* --- pixel bitmap for cmr325 char#106 j --- */
        !          6822:       { 106,40606,                      /* character number, location */
        !          6823:          31,-3,   -9,-3,      /* topleft row,col, and botleft row,col */
        !          6824:           { 12,   40, 3,45, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          6825:             "\x83\x10\xf2\x75\x83\x10\xf6\xc0\x57\x84\xfe\x93\xf5"
        !          6826:             "\x93\x12\x67\x52\x14\x42\x32\x42\x56\x43" }  },
        !          6827:       /* --- pixel bitmap for cmr325 char#107 k --- */
        !          6828:       { 107,41762,                      /* character number, location */
        !          6829:          31, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          6830:           { 22,   31, 3,90, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          6831:             "\x07\xe0\x10\xfa\x43\xe0\x10\x43\x68\x53\x75\x73\x82"
        !          6832:             "\x93\x72\xa3\x61\xc3\x51\xd3\x41\xe3\x32\xe3\x15\xd4"
        !          6833:             "\x24\xc3\x43\xc3\x53\xb3\x54\xa3\x63\xa3\x73\x93\x74"
        !          6834:             "\x83\x84\x73\x85\x2b\x29" }  },
        !          6835:       /* --- pixel bitmap for cmr325 char#108 l --- */
        !          6836:       { 108,42459,                      /* character number, location */
        !          6837:          31, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          6838:           {  9,   31, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          6839:             "\x06\x30\xfe\x33\x30\xfd\x33\x39" }  },
        !          6840:       /* --- pixel bitmap for cmr325 char#109 m --- */
        !          6841:       { 109,43800,                      /* character number, location */
        !          6842:          19, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          6843:           { 33,   19, 3,52, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          6844:             "\x06\x45\x75\x93\x22\x42\x42\x42\x83\x11\x72\x21\x72"
        !          6845:             "\x40\xf1\x34\x84\x83\x30\xfc\x33\x93\x93\x39\x39\x39" }  },
        !          6846:       /* --- pixel bitmap for cmr325 char#110 n --- */
        !          6847:       { 110,44847,                      /* character number, location */
        !          6848:          19, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          6849:           { 22,   19, 3,36, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          6850:             "\x06\x45\xa3\x22\x42\x93\x11\x72\x50\xf1\x34\x83\x40"
        !          6851:             "\xfc\x33\x93\x4a\x2a" }  },
        !          6852:       /* --- pixel bitmap for cmr325 char#111 o --- */
        !          6853:       { 111,45584,                      /* character number, location */
        !          6854:          19, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          6855:           { 20,   19, 3,55, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          6856:             "\x76\xc3\x43\x83\x83\x30\xf1\x23\xa3\x20\xf1\x13\xc3"
        !          6857:             "\x1f\x54\xc4\x13\xc3\x24\xa4\x33\xa3\x53\x83\x83\x43"
        !          6858:             "\xc6\x73" }  },
        !          6859:       /* --- pixel bitmap for cmr325 char#112 p --- */
        !          6860:       { 112,46686,                      /* character number, location */
        !          6861:          19, 2,   -9, 2,      /* topleft row,col, and botleft row,col */
        !          6862:           { 21,   28, 3,75, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          6863:             "\x06\x36\x93\x12\x53\x74\x83\x63\xa3\x20\xf1\x33\xa4"
        !          6864:             "\x10\xf5\x33\xb4\x33\xb3\x43\xa4\x43\xa3\x54\x84\x54"
        !          6865:             "\x83\x63\x12\x43\x83\x35\x70\xf7\x33\xe0\x1a\xb3" }  },
        !          6866:       /* --- pixel bitmap for cmr325 char#113 q --- */
        !          6867:       { 113,47766,                      /* character number, location */
        !          6868:          19, 2,   -9, 2,      /* topleft row,col, and botleft row,col */
        !          6869:           { 22,   28, 3,80, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          6870:             "\x75\x51\x93\x41\x32\x73\x71\x22\x64\x84\x63\xa3\x54"
        !          6871:             "\xa3\x53\xb3\x4f\x54\xb3\x40\xf1\x14\xa3\x40\x23\x94"
        !          6872:             "\x73\x71\x13\x83\x51\x23\xa6\x33\x40\xf7\xe0\x13\x40"
        !          6873:             "\xbb" }  },
        !          6874:       /* --- pixel bitmap for cmr325 char#114 r --- */
        !          6875:       { 114,48679,                      /* character number, location */
        !          6876:          19, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          6877:           { 16,   19, 3,33, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          6878:             "\x07\x34\x63\x21\x32\x53\x11\x34\x44\x44\x44\x52\x10"
        !          6879:             "\xfc\x43\x9b\x5f" }  },
        !          6880:       /* --- pixel bitmap for cmr325 char#115 s --- */
        !          6881:       { 115,49640,                      /* character number, location */
        !          6882:          19, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          6883:           { 14,   19, 3,55, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          6884:             "\x46\x21\x32\x63\x21\x92\x1f\x22\xa1\x14\xb7\x89\x69"
        !          6885:             "\x96\xb5\xa4\xb2\x0f\x12\xa2\x03\x82\x12\x11\x62\x21"
        !          6886:             "\x36\x41" }  },
        !          6887:       /* --- pixel bitmap for cmr325 char#116 t --- */
        !          6888:       { 116,50499,                      /* character number, location */
        !          6889:          28, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          6890:           { 14,   28, 3,47, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          6891:             "\xf3\x61\x70\xf1\x52\x70\xf1\x43\x70\x25\x7d\x10\xf9"
        !          6892:             "\x43\x70\xf4\x43\x61\x53\x41\x72\x41\x85\x21" }  },
        !          6893:       /* --- pixel bitmap for cmr325 char#117 u --- */
        !          6894:       { 117,51458,                      /* character number, location */
        !          6895:          19, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          6896:           { 22,   19, 3,34, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          6897:             "\x06\x57\x40\xfd\x33\x93\x40\x33\x84\x82\x71\x13\x92"
        !          6898:             "\x51\x23\xa6\x37" }  },
        !          6899:       /* --- pixel bitmap for cmr325 char#118 v --- */
        !          6900:       { 118,52390,                      /* character number, location */
        !          6901:          19, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          6902:           { 22,   19, 3,65, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          6903:             "\x09\x67\x34\x94\x54\xa2\x30\xf1\x43\xa1\x40\xf1\x53"
        !          6904:             "\x81\x50\xf2\x63\x61\x60\xf1\x73\x41\x70\xf1\x83\x21"
        !          6905:             "\x80\xf2\x94\x90\xf1\xa2\xa6" }  },
        !          6906:       /* --- pixel bitmap for cmr325 char#119 w --- */
        !          6907:       { 119,53686,                      /* character number, location */
        !          6908:          19, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          6909:           { 30,   19, 3,117, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          6910:             "\x09\x28\x47\x24\x74\x83\x53\x83\x82\x63\x83\x91\x73"
        !          6911:             "\x73\x81\x40\xf1\x43\x74\x71\x40\x53\x51\x22\x61\xa3"
        !          6912:             "\x51\x23\x51\xb3\x41\x23\x41\xc3\x31\x42\x41\xc3\x31"
        !          6913:             "\x43\x31\xd3\x11\x62\x21\x70\xf1\x73\x11\x63\x11\x70"
        !          6914:             "\xf2\x83\x83\x80\x91\xa1\x95" }  },
        !          6915:       /* --- pixel bitmap for cmr325 char#120 x --- */
        !          6916:       { 120,54747,                      /* character number, location */
        !          6917:          19, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          6918:           { 22,   19, 3,82, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          6919:             "\x09\x58\x34\x84\x73\x82\xa3\x71\xc3\x51\xd4\x32\xe3"
        !          6920:             "\x22\xe0\x23\x11\xe0\x43\xe0\x63\xe0\x45\xe0\x22\x13"
        !          6921:             "\xe0\x12\x33\xe1\x53\xc1\x73\xa1\x84\x82\x93\x64\x94"
        !          6922:             "\x38\x59" }  },
        !          6923:       /* --- pixel bitmap for cmr325 char#121 y --- */
        !          6924:       { 121,55872,                      /* character number, location */
        !          6925:          19, 1,   -9, 1,      /* topleft row,col, and botleft row,col */
        !          6926:           { 22,   28, 3,101, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          6927:             "\x09\x67\x34\x94\x54\xa2\x30\xf1\x43\xa1\x40\xf1\x53"
        !          6928:             "\x81\x50\xf2\x63\x61\x60\xf1\x73\x41\x70\xf1\x83\x21"
        !          6929:             "\x80\xf2\x94\x90\xf1\xa2\xa0\xf1\xa1\xb0\xf1\x91\xc4"
        !          6930:             "\x51\xc4\x41\xd4\x31\xe0\x12\x32\xe0\x24\xe0\x21" }  },
        !          6931:       /* --- pixel bitmap for cmr325 char#122 z --- */
        !          6932:       { 122,56879,                      /* character number, location */
        !          6933:          19, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          6934:           { 17,   19, 3,69, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          6935:             "\x2e\x01\x23\x83\x31\x94\x31\x93\x31\x93\x41\x83\x51"
        !          6936:             "\x73\xd4\xd3\xd3\xd3\xd4\x71\x53\x81\x43\x91\x33\x92"
        !          6937:             "\x23\xa1\x24\x92\x23\x93\x1e\x02\x11" }  },
        !          6938:       /* --- pixel bitmap for cmr325 char#123 (noname) --- */
        !          6939:       { 123,127060,                     /* character number, location */
        !          6940:          12, 0,   11, 0,      /* topleft row,col, and botleft row,col */
        !          6941:           { 22,    1, 3, 4, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          6942:             "\x0e\x08" }  },
        !          6943:       /* --- pixel bitmap for cmr325 char#124 (noname) --- */
        !          6944:       { 124,127880,                     /* character number, location */
        !          6945:          12, 0,   11, 0,      /* topleft row,col, and botleft row,col */
        !          6946:           { 45,    1, 2, 2, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          6947:             "\x00\x2d" }  },
        !          6948:       /* --- pixel bitmap for cmr325 char#125 (noname) --- */
        !          6949:       { 125,115420,                     /* character number, location */
        !          6950:          31, 6,   23, 6,      /* topleft row,col, and botleft row,col */
        !          6951:           { 12,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          6952:             "\x1c\xce\xe1\x1c\xee\x70\x06\x33\x18\x83\x11\x08" }  },
        !          6953:       /* --- pixel bitmap for cmr325 char#126 \~ --- */
        !          6954:       { 126,116120,                     /* character number, location */
        !          6955:          30, 4,   26, 4,      /* topleft row,col, and botleft row,col */
        !          6956:           { 14,    4, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          6957:             "\x38\x20\x3f\x24\xfc\x04\x1c" }  },
        !          6958:       /* --- pixel bitmap for cmr325 char#127 (noname) --- */
        !          6959:       { 127,116807,                     /* character number, location */
        !          6960:          31, 4,   26, 4,      /* topleft row,col, and botleft row,col */
        !          6961:           { 14,    5, 3,15, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          6962:             "\x13\x63\x1f\x25\x45\x13\x63\x13" }  },
        !          6963:       /* --- trailer  --- */
        !          6964:       { -99, -999,  0,0,0,0, { 0,0,0,0, (pixbyte *)"\0" }  }
        !          6965:    } ;
        !          6966: 
        !          6967: 
        !          6968: /* --- size=9 for .450gf ---
        !          6969:  * mf '\mode=preview; mag=magstep(-9.62468787106292402266); input cmr10'
        !          6970:  * --------------------------------------------------------------------- */
        !          6971: /* --- fontdef for cmr450 --- */
        !          6972: static	chardef  cmr450[] =
        !          6973:    {
        !          6974:       /* --- pixel bitmap for cmr450 char#0 \Gamma --- */
        !          6975:       {   0,60318,                      /* character number, location */
        !          6976:          43, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          6977:           { 34,   43, 3,83, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          6978:             "\xf1\x0e\x0e\x04\x20\x57\xd7\x86\xe0\x24\x86\xe0\x34"
        !          6979:             "\x10\xf1\x66\xe0\x43\x10\xf3\x66\xe0\x52\x10\xf2\x66"
        !          6980:             "\xe0\x62\xfe\x66\xe0\x80\xfa\x66\xe0\x80\x58\xe0\x7f"
        !          6981:             "\x1e\x06\xe5" }  },
        !          6982:       /* --- pixel bitmap for cmr450 char#1 \Delta --- */
        !          6983:       {   1,61295,                      /* character number, location */
        !          6984:          45, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          6985:           { 46,   45, 3,306, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          6986:             "\xe0\x82\xe0\x80\xf1\xe0\x74\xe0\x70\xf1\xe0\x66\xe0"
        !          6987:             "\x60\xf1\xe0\x58\xe0\x50\xe0\x42\x17\xe0\xe0\x82\x26"
        !          6988:             "\xe0\xe0\x72\x37\xe0\xe0\x62\x46\xe0\xe0\x52\x57\xe0"
        !          6989:             "\xe0\x42\x66\xe0\xe0\x32\x77\xe0\xe0\x22\x86\xe0\xe0"
        !          6990:             "\x12\x97\xe0\xe2\xa6\xe0\xd2\xb7\xe0\xc2\xc6\xe0\xb2"
        !          6991:             "\xd7\xe0\xa2\xe6\xe0\x92\xe0\x17\xe0\x82\xe0\x26\xe0"
        !          6992:             "\x72\xe0\x37\xe0\x62\xe0\x46\xe0\x52\xe0\x57\xe0\x42"
        !          6993:             "\xe0\x66\xe0\x32\xe0\x77\xe0\x22\xe0\x86\xe0\x13\xe0"
        !          6994:             "\x87\xe2\xe0\xa6\xd3\xe0\xa7\xc2\xe0\xc6\xb3\xe0\xc7"
        !          6995:             "\xa2\xe0\xe6\x93\xe0\xe7\x82\xe0\xe0\x17\x73\xe0\xe0"
        !          6996:             "\x27\x62\xe0\xe0\x37\x53\xe0\xe0\x47\x4e\x0e\x0e\x20"
        !          6997:             "\xf1\x1e\x0e\x0e\x02\x1f\x1e\x0e\x0e\x04" }  },
        !          6998:       /* --- pixel bitmap for cmr450 char#2 \Theta --- */
        !          6999:       {   2,62532,                      /* character number, location */
        !          7000:          44, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          7001:           { 42,   45, 3,253, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          7002:             "\xe0\x38\xe0\xe0\x34\x64\xe0\xb4\xc4\xe0\x74\xe4\xe0"
        !          7003:             "\x44\xe0\x44\xe0\x14\xe0\x64\xd5\xe0\x65\xb5\xe0\x85"
        !          7004:             "\xa4\xe0\xa4\x95\xe0\xa5\x40\xf1\x35\xe0\xc5\x30\xf1"
        !          7005:             "\x25\xe0\xe5\x20\xf1\x16\xe0\xe6\x10\xf1\x15\xe0\xe0"
        !          7006:             "\x25\x1f\x16\x42\xe0\x42\x46\x0f\x46\x4e\x08\x46\x0f"
        !          7007:             "\x16\x42\xe0\x42\x46\x06\xe0\xe0\x26\x15\xe0\xe0\x25"
        !          7008:             "\x10\xf1\x16\xe0\xe6\x10\xf1\x25\xe0\xe5\x20\xf1\x35"
        !          7009:             "\xe0\xc5\x30\x45\xe0\xa5\x94\xe0\xa4\xa5\xe0\x85\xb5"
        !          7010:             "\xe0\x65\xd4\xe0\x64\xe0\x14\xe0\x44\xe0\x44\xe4\xe0"
        !          7011:             "\x74\xc4\xe0\xa5\x65\xe0\xe0\x28\xe0\x37" }  },
        !          7012:       /* --- pixel bitmap for cmr450 char#3 \Lambda --- */
        !          7013:       {   3,63662,                      /* character number, location */
        !          7014:          45, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          7015:           { 39,   45, 3,198, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          7016:             "\xf2\xe0\x43\xe0\x40\xf2\xe0\x35\xe0\x30\xf2\xe0\x27"
        !          7017:             "\xe0\x20\xe0\x19\xe0\x10\xf1\xe0\x12\x16\xe0\x10\xe3"
        !          7018:             "\x17\xe0\xf2\xe2\x36\xe0\xf2\xd2\x56\xd0\xc2\x67\xc0"
        !          7019:             "\xf1\xc2\x76\xc0\xb2\x87\xb0\xf1\xb2\x96\xb0\xa2\xa7"
        !          7020:             "\xa0\xf1\xa2\xb6\xa0\x92\xc7\x90\xf1\x92\xd6\x90\x83"
        !          7021:             "\xd7\x80\xf1\x82\xe0\x16\x80\x73\xe0\x17\x70\xf2\x72"
        !          7022:             "\xe0\x36\x70\xf1\x62\xe0\x56\x60\x53\xe0\x56\xb4\xe0"
        !          7023:             "\x47\x87\xe0\x29\x4f\x1d\x9e\x03" }  },
        !          7024:       /* --- pixel bitmap for cmr450 char#4 \Xi --- */
        !          7025:       {   4,65143,                      /* character number, location */
        !          7026:          43, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          7027:           { 36,   43, 3,107, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          7028:             "\xf4\x1e\x0e\x06\x1f\x13\xe0\xe0\x23\x0f\x22\xe0\xe0"
        !          7029:             "\x42\xf4\xe0\xe0\x80\xf2\x62\xe0\x62\x60\xf4\x6e\x0a"
        !          7030:             "\x60\xf2\x62\xe0\x62\x60\xf5\xe0\xe0\x8f\x32\xe0\xe0"
        !          7031:             "\x42\x03\xe0\xe0\x23\x12\xe0\xe0\x22\x10\xf4\x1e\x0e"
        !          7032:             "\x06\x11" }  },
        !          7033:       /* --- pixel bitmap for cmr450 char#5 \Pi --- */
        !          7034:       {   5,66428,                      /* character number, location */
        !          7035:          43, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          7036:           { 43,   43, 2,28, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          7037:             "\xff\x01\x00\x2b\x05\x07\x13\x07\x05\x00\xff\x24\x06"
        !          7038:             "\x06\x13\x06\x06\x00\x05\x08\x11\x08\x05\xff\x01\x12"
        !          7039:             "\x07\x12" }  },
        !          7040:       /* --- pixel bitmap for cmr450 char#6 \Sigma --- */
        !          7041:       {   6,67665,                      /* character number, location */
        !          7042:          43, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          7043:           { 39,   43, 3,249, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          7044:             "\xf1\x0e\x0e\x09\x20\x17\xe0\x69\x37\xe0\xa5\x47\xe0"
        !          7045:             "\xa5\x47\xe0\xa4\x48\xe0\xa3\x57\xe0\xa3\x67\xe0\xa2"
        !          7046:             "\x10\xf1\x67\xe0\x92\x10\x77\xe0\x92\xf1\x87\xe0\x82"
        !          7047:             "\x97\xe0\x90\xf1\xa7\xe0\x80\xb7\xe0\xe0\x57\xe0\xe0"
        !          7048:             "\x48\xe0\xe0\x47\xe0\xe0\x57\xe0\xe0\x55\xe0\xe0\x64"
        !          7049:             "\xe0\xe0\x82\xe0\xe0\x82\xe0\xe0\x83\xe0\xe0\x73\xe0"
        !          7050:             "\xe0\x73\xe0\x82\xc2\xe0\x92\xb2\xe0\xa2\xa2\xe0\xa3"
        !          7051:             "\x92\xe0\xb2\x92\xe0\xc2\x82\xe0\xc3\x73\xe0\xc3\x63"
        !          7052:             "\xe0\xc4\x53\xe0\xc5\x52\xe0\xc6\x42\xe0\x99\x4e\x0e"
        !          7053:             "\x07\x3e\x0e\x08\x2e\x0e\x09\x28" }  },
        !          7054:       /* --- pixel bitmap for cmr450 char#7 \Upsilon --- */
        !          7055:       {   7,68849,                      /* character number, location */
        !          7056:          44, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          7057:           { 42,   44, 3,127, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          7058:             "\x56\xe0\x66\x9a\xea\x7c\xcc\x5e\xae\x3e\x02\x8e\x02"
        !          7059:             "\x23\x86\x66\x83\x13\xa5\x65\xa6\xb5\x45\xb5\xd4\x44"
        !          7060:             "\xd4\xe4\x24\xe2\xf1\xe0\x24\x24\xe0\x20\xe0\x33\x23"
        !          7061:             "\xe0\x30\xf2\xe0\x38\xe0\x30\xfe\xe0\x46\xe0\x40\xf9"
        !          7062:             "\xe0\x46\xe0\x40\xe0\x38\xe0\x30\xf1\xae\x08\xa0" }  },
        !          7063:       /* --- pixel bitmap for cmr450 char#8 \Phi --- */
        !          7064:       {   8,69973,                      /* character number, location */
        !          7065:          43, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          7066:           { 39,   43, 3,181, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          7067:             "\xf1\x9e\x08\x80\xe0\x28\xe0\x10\xf4\xe0\x36\xe0\x20"
        !          7068:             "\xeb\xe0\xa5\x26\x15\xe0\x44\x56\x44\xe5\x66\x55\xb4"
        !          7069:             "\x86\x74\x94\x96\x84\x75\x96\x85\x55\xa6\x95\x36\xa6"
        !          7070:             "\x96\x25\xb6\xa5\x1f\x66\xb6\xa6\x15\xb6\xa5\x26\xa6"
        !          7071:             "\x96\x35\xa6\x95\x55\x96\x85\x74\x96\x84\x94\x86\x74"
        !          7072:             "\xb5\x66\x55\xe4\x56\x44\xe0\x45\x26\x15\xe0\xab\xe0"
        !          7073:             "\xf4\xe0\x36\xe0\x20\xe0\x28\xe0\x10\xf1\x9e\x08\x83" }  },
        !          7074:       /* --- pixel bitmap for cmr450 char#9 \Psi --- */
        !          7075:       {   9,71222,                      /* character number, location */
        !          7076:          43, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          7077:           { 42,   43, 3,167, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          7078:             "\xf1\xae\x08\xa0\xe0\x38\xe0\x30\xf4\xe0\x46\xe0\x47"
        !          7079:             "\xb6\xb7\x26\xa6\xa6\x20\xf1\x36\x96\x96\x30\xf9\x46"
        !          7080:             "\x86\x86\x40\x55\x86\x85\x50\xf2\x56\x76\x76\x50\x65"
        !          7081:             "\x76\x75\xc6\x66\x66\xd5\x66\x65\xe0\x15\x56\x55\xe0"
        !          7082:             "\x34\x56\x54\xe0\x54\x46\x44\xe0\x75\x26\x25\xe0\xae"
        !          7083:             "\x02\xe0\xe0\x1a\xe0\x20\xf4\xe0\x46\xe0\x40\xe0\x38"
        !          7084:             "\xe0\x30\xf1\xae\x08\xa0" }  },
        !          7085:       /* --- pixel bitmap for cmr450 char#10 \Omega --- */
        !          7086:       {  10,72509,                      /* character number, location */
        !          7087:          44, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          7088:           { 39,   44, 3,235, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          7089:             "\xe0\x19\xe0\xc5\x75\xe0\x64\xd4\xe0\x24\xe0\x34\xd4"
        !          7090:             "\xe0\x54\xb4\xe0\x74\x94\xe0\x94\x75\xe0\x95\x30\xf1"
        !          7091:             "\x25\xe0\xb5\x20\x16\xe0\xb6\x25\xe0\xd5\x1f\x66\xe0"
        !          7092:             "\xd6\x15\xe0\xd5\x10\xf1\x16\xe0\xb6\x10\x25\xe0\xb5"
        !          7093:             "\x46\xe0\x96\x55\xe0\x95\x74\xe0\x94\x85\xe0\x75\x94"
        !          7094:             "\xe0\x74\xb4\xe0\x54\x60\xf1\x73\xe0\x53\x70\x83\xe0"
        !          7095:             "\x33\xe0\x32\xe0\x32\xe0\x43\xe0\x13\x92\x82\xe0\x12"
        !          7096:             "\x84\x91\xe0\x11\x92\x12\x82\xd2\x82\x10\xf1\x12\x91"
        !          7097:             "\xd1\x92\x10\x13\x82\xb2\x83\x2d\xbd\x10\xf2\x2c\xbc"
        !          7098:             "\x27" }  },
        !          7099:       /* --- pixel bitmap for cmr450 char#11 \ff --- */
        !          7100:       {  11,122766,                     /* character number, location */
        !          7101:          44, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          7102:           { 39,   44, 3,101, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          7103:             "\xe0\x17\x86\xe0\x14\x63\x33\x42\xc4\xa5\x54\xa3\xa7"
        !          7104:             "\x46\x84\x97\x56\x74\xa7\x56\x74\xa6\x74\x74\xc5\x82"
        !          7105:             "\x20\xf8\x64\xd4\xcf\x1e\x0e\x06\x50\xfe\x64\xd4\xc0"
        !          7106:             "\xf6\x64\xd4\xc0\x55\xd5\xb0\xf1\x1e\x3e\x01\x62" }  },
        !          7107:       /* --- pixel bitmap for cmr450 char#12 \fi --- */
        !          7108:       {  12,124066,                     /* character number, location */
        !          7109:          44, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          7110:           { 32,   44, 3,100, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          7111:             "\xe0\x17\xe0\x84\x62\xe0\x44\x92\xe0\x23\xb3\xe4\xa5"
        !          7112:             "\x50\xf1\x74\xa6\x50\x64\xb6\xb4\xc4\x60\xf6\x64\xe0"
        !          7113:             "\x80\x64\xd4\x5f\x1e\x0d\x50\x64\xc5\x50\xfe\x64\xd4"
        !          7114:             "\x50\xf5\x64\xd4\x50\x55\xd5\x40\xf1\x1e\x3e" }  },
        !          7115:       /* --- pixel bitmap for cmr450 char#13 \fl --- */
        !          7116:       {  13,125334,                     /* character number, location */
        !          7117:          44, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          7118:           { 32,   44, 3,76, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          7119:             "\xe0\x18\xe0\x74\x65\xe0\x14\x85\xe3\x96\xd4\x96\xc4"
        !          7120:             "\xa6\xc4\xb5\x50\xf9\x64\xd4\x5f\x1e\x0d\x50\xfe\x64"
        !          7121:             "\xd4\x50\xf6\x64\xd4\x50\x56\xb6\x40\xf1\x1e\x3e" }  },
        !          7122:       /* --- pixel bitmap for cmr450 char#14 \ffi --- */
        !          7123:       {  14,127061,                     /* character number, location */
        !          7124:          44, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          7125:           { 49,   44, 3,138, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          7126:             "\xe0\x17\xa7\xe0\x84\x62\x54\x62\xe0\x44\x92\x24\x92"
        !          7127:             "\xe0\x23\xb6\xb3\xe4\xa7\xa5\x50\xf1\x74\xa7\xa6\x50"
        !          7128:             "\x64\xb6\xb6\xb4\xc5\xc4\x60\xf6\x64\xd4\xe0\x80\x64"
        !          7129:             "\xd4\xd4\x5f\x1e\x0e\x0e\x02\x50\x64\xd4\xc5\x50\xfe"
        !          7130:             "\x64\xd4\xd4\x50\xf5\x64\xd4\xd4\x50\x55\xd4\xd5\x40"
        !          7131:             "\xf1\x1e\x3e\x3e" }  },
        !          7132:       /* --- pixel bitmap for cmr450 char#15 \ffl --- */
        !          7133:       {  15,128862,                     /* character number, location */
        !          7134:          44, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          7135:           { 49,   44, 3,114, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          7136:             "\xe0\x17\xa8\xe0\x74\x62\x54\x65\xe0\x14\xa1\x24\x85"
        !          7137:             "\xe3\xa7\x96\xd4\x98\x96\xc4\xa7\xa6\xc4\xa7\xb5\xb4"
        !          7138:             "\xc5\xd4\x50\xf8\x64\xd4\xd4\x5f\x1e\x0e\x0e\x02\x50"
        !          7139:             "\xfe\x64\xd4\xd4\x50\xf6\x64\xd4\xd4\x50\x56\xb6\xb6"
        !          7140:             "\x40\xf1\x1e\x3e\x3e" }  },
        !          7141:       /* --- pixel bitmap for cmr450 char#16 \imath --- */
        !          7142:       {  16,87862,                      /* character number, location */
        !          7143:          28, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          7144:           { 13,   28, 3,30, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          7145:             "\x54\x4f\x19\x40\x45\x40\xfe\x54\x40\xf5\x54\x40\x45"
        !          7146:             "\x4f\x1d" }  },
        !          7147:       /* --- pixel bitmap for cmr450 char#17 \jmath --- */
        !          7148:       {  17,88610,                      /* character number, location */
        !          7149:          28,-3,  -13,-3,      /* topleft row,col, and botleft row,col */
        !          7150:           { 16,   41, 3,43, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          7151:             "\xb5\xf1\x79\xb5\xfe\xc4\xfd\xc4\x14\x7a\x6a\x63\x16"
        !          7152:             "\x54\x15\x63\x33\x63\x53\x43\x86\x60" }  },
        !          7153:       /* --- pixel bitmap for cmr450 char#18 \gravesym --- */
        !          7154:       {  18,113703,                     /* character number, location */
        !          7155:          43, 7,   32, 7,      /* topleft row,col, and botleft row,col */
        !          7156:           { 11,   11, 3,22, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          7157:             "\x03\x84\x75\x75\x75\x75\x74\x84\x93\x93\x92" }  },
        !          7158:       /* --- pixel bitmap for cmr450 char#19 \acutesym --- */
        !          7159:       {  19,114288,                     /* character number, location */
        !          7160:          43,13,   32,13,      /* topleft row,col, and botleft row,col */
        !          7161:           { 11,   11, 3,23, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          7162:             "\x83\x74\x65\x55\x55\x55\x64\x64\x63\x73\x82\x91" }  },
        !          7163:       /* --- pixel bitmap for cmr450 char#20 \checksym --- */
        !          7164:       {  20,114929,                     /* character number, location */
        !          7165:          40, 7,   32, 7,      /* topleft row,col, and botleft row,col */
        !          7166:           { 16,    8, 3,27, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          7167:             "\x11\xd1\x13\x93\x14\x74\x34\x34\x64\x14\x87\xb3\xe1"
        !          7168:             "\x73" }  },
        !          7169:       /* --- pixel bitmap for cmr450 char#21 \brevesym --- */
        !          7170:       {  21,115565,                     /* character number, location */
        !          7171:          43, 6,   32, 6,      /* topleft row,col, and botleft row,col */
        !          7172:           { 19,   11, 3,41, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          7173:             "\xf2\x01\xe0\x31\x02\xe0\x12\x11\xe0\x11\x22\xd2\x32"
        !          7174:             "\xb2\x52\x92\x64\x54\x89\xc5\x73" }  },
        !          7175:       /* --- pixel bitmap for cmr450 char#22 (noname) --- */
        !          7176:       {  22,116175,                     /* character number, location */
        !          7177:          36, 4,   34, 4,      /* topleft row,col, and botleft row,col */
        !          7178:           { 23,    2, 3, 6, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          7179:             "\xf1\x0e\x09" }  },
        !          7180:       /* --- pixel bitmap for cmr450 char#23 (noname) --- */
        !          7181:       {  23,117020,                     /* character number, location */
        !          7182:          44,17,   33,17,      /* topleft row,col, and botleft row,col */
        !          7183:           { 13,   11, 3,27, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          7184:             "\x45\x62\x52\x32\x72\x1f\x42\x92\x12\x72\x32\x52\x65"
        !          7185:             "\x42" }  },
        !          7186:       /* --- pixel bitmap for cmr450 char#24 (noname) --- */
        !          7187:       {  24,117740,                     /* character number, location */
        !          7188:          -1, 8,  -13, 8,      /* topleft row,col, and botleft row,col */
        !          7189:           { 15,   12, 3,27, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          7190:             "\xf1\x64\x50\x65\xc5\xc4\x10\xf2\xb4\xa5\x95\x2b\x31"
        !          7191:             "\xe2" }  },
        !          7192:       /* --- pixel bitmap for cmr450 char#25 \ss --- */
        !          7193:       {  25,89759,                      /* character number, location */
        !          7194:          44, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          7195:           { 27,   45, 3,163, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          7196:             "\xc7\xe0\x43\x53\xe3\x84\xb3\xa4\x94\xa5\x83\xc4\x20"
        !          7197:             "\xf4\x54\xc5\x10\x54\xc4\x74\xb5\x74\xb4\x84\xa4\x94"
        !          7198:             "\x94\xa4\x74\x79\x35\xa9\x63\xe4\x83\xc4\x93\xb4\xa3"
        !          7199:             "\xa4\xb3\x94\xb4\x30\xf1\x54\xc4\x20\xf1\x54\xc5\x10"
        !          7200:             "\x54\xd4\x10\xf7\x54\xd5\x54\x51\x74\x64\x34\x64\x64"
        !          7201:             "\x35\x44\x74\x34\x54\x65\x34\x44\x39\x42\x53\x49\x51"
        !          7202:             "\x43\xe0\x65\x70" }  },
        !          7203:       /* --- pixel bitmap for cmr450 char#26 \ae --- */
        !          7204:       {  26,91232,                      /* character number, location */
        !          7205:          29, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          7206:           { 40,   30, 3,183, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          7207:             "\x77\xd6\xc3\x54\x83\x43\x82\xa3\x62\x73\x62\xc3\x33"
        !          7208:             "\x93\x54\xb3\x22\xb3\x36\xa7\xb3\x36\xa6\xc4\x26\xb5"
        !          7209:             "\xd3\x26\xb5\xd4\x24\xc4\xe4\xf2\xe0\x44\xe4\xce\x0e"
        !          7210:             "\x86\x44\xe0\xa5\x74\xe0\x85\x94\xe0\x74\xb4\xe0\x65"
        !          7211:             "\xb4\xe0\x55\xd3\xe0\x55\xd4\xe0\x35\xe4\xe0\x35\xe4"
        !          7212:             "\xe0\x17\xd5\xe0\x17\xd2\x13\xd2\x15\xc3\x23\xc2\x25"
        !          7213:             "\xa3\x42\xb2\x44\x93\x62\x92\x65\x53\x93\x53\xa8\xe6"
        !          7214:             "\x62" }  },
        !          7215:       /* --- pixel bitmap for cmr450 char#27 \oe --- */
        !          7216:       {  27,92474,                      /* character number, location */
        !          7217:          29, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          7218:           { 44,   30, 3,197, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          7219:             "\xa6\xe0\x16\xe0\x13\x53\xa3\x43\xb3\x92\x82\x73\x93"
        !          7220:             "\xb2\x53\x93\x73\xc3\x42\xb3\x54\xd3\x23\xb3\x44\xe0"
        !          7221:             "\x16\xc4\x34\xe0\x16\xd3\x25\xe0\x16\xd4\xf1\x14\xe0"
        !          7222:             "\x34\xe4\x0f\x15\xe0\x34\xe4\x05\xe0\x3e\x08\x0f\x45"
        !          7223:             "\xe0\x34\xe0\x40\x14\xe0\x34\xe0\x54\xe0\x35\xe0\x45"
        !          7224:             "\xe0\x16\xe0\x30\xf1\x24\xe0\x16\xe0\x12\x34\xd3\x23"
        !          7225:             "\xd2\x53\xc3\x43\xc2\x63\xb2\x62\xb2\x83\x92\x82\x92"
        !          7226:             "\xb3\x53\xa3\x53\xe6\xe0\x26\x64" }  },
        !          7227:       /* --- pixel bitmap for cmr450 char#28 (noname) --- */
        !          7228:       {  28,93418,                      /* character number, location */
        !          7229:          33, 2,   -6, 2,      /* topleft row,col, and botleft row,col */
        !          7230:           { 27,   39, 3,185, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          7231:             "\xf1\xe0\xa1\x20\xe0\x91\xe0\xb2\xd7\x51\xc3\x53\x21"
        !          7232:             "\xb3\x94\xa3\xb3\x93\xc4\x73\xd1\x13\x63\xc1\x23\x53"
        !          7233:             "\xd1\x33\x34\xc1\x44\x24\xb2\x44\x23\xc1\x63\x1f\x14"
        !          7234:             "\xb1\x74\x0f\x14\xa1\x84\x04\x91\x94\x0f\x14\x81\xa4"
        !          7235:             "\x0f\x14\x71\xb4\x13\x61\xc3\x24\x42\xb4\x33\x41\xc3"
        !          7236:             "\x43\x31\xd3\x53\x21\xc3\x74\xc3\x93\xc2\xb3\x93\xb1"
        !          7237:             "\x14\x54\xc1\x47\xe1\xe0\xb2\xe0\xb1\xe0\x90\xf1\x21"
        !          7238:             "\xe0\xa3" }  },
        !          7239:       /* --- pixel bitmap for cmr450 char#29 \AE --- */
        !          7240:       {  29,95364,                      /* character number, location */
        !          7241:          43, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          7242:           { 52,   43, 3,287, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          7243:             "\xf1\xee\x0e\x07\x30\xe0\x52\x27\xc7\xe0\x82\x36\xe0"
        !          7244:             "\x14\xe0\x73\x36\xe0\x24\x20\xf1\xe0\x42\x46\xe0\x33"
        !          7245:             "\x20\xf2\xe0\x32\x56\xe0\x42\x20\xe0\x22\x66\xe0\x42"
        !          7246:             "\x20\xf1\xe0\x22\x66\xe0\x52\x10\xe0\x12\x76\xe0\x52"
        !          7247:             "\x10\xf1\xe0\x12\x76\xa2\xa0\xf1\xe2\x86\xa2\xa0\xd3"
        !          7248:             "\x86\xa2\xe0\x92\x96\x93\xe0\x92\x96\x84\xa0\xf1\xce"
        !          7249:             "\x0e\x02\xa0\xc2\xa6\x84\xe0\x72\xb6\x93\xa0\xf1\xb2"
        !          7250:             "\xb6\xa2\xa0\xf2\xa2\xc6\xa2\x82\xf2\x92\xd6\xe0\x52"
        !          7251:             "\x10\x82\xe6\xe0\x52\x92\xe6\xe0\x43\x83\xe6\xe0\x42"
        !          7252:             "\x20\xf1\x72\xe0\x16\xe0\x33\x20\x63\xe0\x16\xe0\x24"
        !          7253:             "\x74\xe0\x16\xe0\x15\x58\xc7\xc7\x3f\x1d\x6e\x0e\x02"
        !          7254:             "\x32" }  },
        !          7255:       /* --- pixel bitmap for cmr450 char#30 \OE --- */
        !          7256:       {  30,97262,                      /* character number, location */
        !          7257:          44, 4,   -1, 4,      /* topleft row,col, and botleft row,col */
        !          7258:           { 57,   45, 3,363, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          7259:             "\xe0\x39\xe0\xe0\xe0\x34\x6e\x0e\x02\xe4\xbe\x0e\xd4"
        !          7260:             "\xd6\xe7\xb5\xe6\xe0\x34\xa5\xe0\x16\xe0\x44\x85\xe0"
        !          7261:             "\x35\xe0\x53\x75\xe0\x45\xe0\x53\x74\xe0\x55\xe0\x62"
        !          7262:             "\x65\xe0\x55\xe0\x62\x20\xf1\x35\xe0\x65\xe0\x62\x20"
        !          7263:             "\x26\xe0\x65\xe0\x72\x35\xe0\x75\xe0\x72\x26\xe0\x75"
        !          7264:             "\xd2\x62\x26\xe0\x75\xd2\x90\xf1\x15\xe0\x85\xd2\x9f"
        !          7265:             "\x16\xe0\x85\xc3\x96\xe0\x85\xa5\x9f\x16\xe0\x8e\x06"
        !          7266:             "\x96\xe0\x85\xa5\x9f\x16\xe0\x85\xc3\x96\xe0\x85\xd2"
        !          7267:             "\x97\xe0\x75\xd2\x90\xf1\x16\xe0\x75\xd2\x72\x16\xe0"
        !          7268:             "\x75\xe0\x82\xf1\x26\xe0\x65\xe0\x72\x10\x35\xe0\x65"
        !          7269:             "\xe0\x72\x46\xe0\x55\xe0\x72\x55\xe0\x55\xe0\x63\x65"
        !          7270:             "\xe0\x45\xe0\x62\x75\xe0\x45\xe0\x53\x85\xe0\x35\xe0"
        !          7271:             "\x53\x95\xe0\x16\xe0\x44\xa5\xe6\xe0\x26\xc4\xd6\xe7"
        !          7272:             "\xe5\xae\x0e\xe0\x34\x6e\x0e\x02\xe0\x69\xe0\xe0\x30" }  },
        !          7273:       /* --- pixel bitmap for cmr450 char#31 (noname) --- */
        !          7274:       {  31,98414,                      /* character number, location */
        !          7275:          46, 3,   -3, 3,      /* topleft row,col, and botleft row,col */
        !          7276:           { 42,   49, 3,355, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          7277:             "\xe0\xe0\x91\xe0\xe0\xc2\xe0\x78\xb1\xe0\x53\x83\x71"
        !          7278:             "\xe0\x34\xc4\x31\xe0\x33\xe0\x23\x21\xe0\x14\xe0\x44"
        !          7279:             "\xe0\x14\xe0\x64\xd4\xe0\x75\xb5\xe0\x76\xa4\xe0\x71"
        !          7280:             "\x24\x94\xe0\x72\x34\x75\xe0\x71\x45\x65\xe0\x61\x55"
        !          7281:             "\x55\xe0\x62\x65\x45\xe0\x61\x75\x36\xe0\x51\x86\x26"
        !          7282:             "\xe0\x41\x96\x25\xe0\x51\xa5\x25\xe0\x41\xb5\x16\xe0"
        !          7283:             "\x31\xcc\xe0\x22\xcc\xe0\x21\xdc\xe0\x11\xec\xe2\xec"
        !          7284:             "\xe1\xe0\x1c\xd1\xe0\x2c\xc2\xe0\x2c\xc1\xe0\x3c\xb1"
        !          7285:             "\xe0\x46\xf1\x15\xa1\xe0\x55\x10\x16\x81\xe0\x56\x35"
        !          7286:             "\x71\xe0\x65\x45\x62\xe0\x65\x54\x61\xe0\x74\x65\x41"
        !          7287:             "\xe0\x75\x74\x32\xe0\x74\x94\x21\xe0\x74\xa4\x11\xe0"
        !          7288:             "\x84\xb5\xe0\x74\xd4\xe0\x64\xe0\x14\xe0\x44\xe0\x11"
        !          7289:             "\x23\xe0\x23\xe0\x31\x34\xc4\xe0\x31\x64\x84\xe0\x41"
        !          7290:             "\xb8\xe0\x72\xe0\xe0\xc1\xe0\xe0\x90" }  },
        !          7291:       /* --- pixel bitmap for cmr450 char#32 (noname) --- */
        !          7292:       {  32,118254,                     /* character number, location */
        !          7293:          24, 1,   18, 1,      /* topleft row,col, and botleft row,col */
        !          7294:           { 14,    6, 3,13, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          7295:             "\xb3\x95\x66\x56\x65\x93\xa0" }  },
        !          7296:       /* --- pixel bitmap for cmr450 char#33 ! --- */
        !          7297:       {  33,99247,                      /* character number, location */
        !          7298:          44, 5,    0, 5,      /* topleft row,col, and botleft row,col */
        !          7299:           {  7,   44, 3,41, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          7300:             "\x23\x35\x1f\x67\xfa\x15\x10\xf9\x23\x20\x32\x20\xf5"
        !          7301:             "\x70\x23\x35\x1f\x27\x15\x33\x23" }  },
        !          7302:       /* --- pixel bitmap for cmr450 char#34 " --- */
        !          7303:       {  34,129985,                     /* character number, location */
        !          7304:          43, 2,   24, 2,      /* topleft row,col, and botleft row,col */
        !          7305:           { 20,   19, 3,73, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          7306:             "\x23\x93\x45\x75\x27\x57\x1f\x18\x48\x15\x11\x55\x11"
        !          7307:             "\x23\x21\x63\x21\xf2\x71\xb1\xf2\x61\xb1\x10\xf1\x51"
        !          7308:             "\xb1\x20\x41\xb1\x61\xb1\x61\xb1\x61\xb1\x6e" }  },
        !          7309:       /* --- pixel bitmap for cmr450 char#35 # --- */
        !          7310:       {  35,100809,                     /* character number, location */
        !          7311:          43, 3,  -12, 3,      /* topleft row,col, and botleft row,col */
        !          7312:           { 46,   55, 3,231, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          7313:             "\xf2\xe0\x73\xc3\x70\xe0\x64\xb4\x70\xf2\xe0\x63\xc3"
        !          7314:             "\x80\xe0\x54\xb4\x80\xf1\xe0\x53\xc3\x90\xe0\x44\xb4"
        !          7315:             "\x90\xf2\xe0\x43\xc3\xa0\xe0\x34\xb4\xa0\xf2\xe0\x33"
        !          7316:             "\xc3\xb0\xe0\x24\xb4\xbf\x2e\x0e\x0e\x04\xe0\x13\xc3"
        !          7317:             "\xe0\xd4\xb4\xd0\xf6\xe3\xc3\xe0\xd4\xb4\xe0\xd3\xc3"
        !          7318:             "\xe0\x1f\x2e\x0e\x0e\x04\xb4\xb4\xe0\x20\xf2\xb3\xc3"
        !          7319:             "\xe0\x30\xa4\xb4\xe0\x30\xf2\xa3\xc3\xe0\x40\x94\xb4"
        !          7320:             "\xe0\x40\xf1\x93\xc3\xe0\x50\x84\xb4\xe0\x50\xf2\x83"
        !          7321:             "\xc3\xe0\x60\x74\xb4\xe0\x60\xf2\x73\xc3\xe0\x76" }  },
        !          7322:       /* --- pixel bitmap for cmr450 char#36 $ --- */
        !          7323:       {  36,83650,                      /* character number, location */
        !          7324:          47, 3,   -3, 3,      /* topleft row,col, and botleft row,col */
        !          7325:           { 25,   50, 3,205, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          7326:             "\xf2\xc2\xb0\x98\xe0\x1c\xb4\x32\x25\x83\x52\x53\x62"
        !          7327:             "\x72\x63\x43\x72\x73\x32\x82\x82\x22\x92\x82\x22\x92"
        !          7328:             "\x77\x92\x65\x0f\x23\x92\x56\x04\x82\x64\x14\x82\xb5"
        !          7329:             "\x72\xc6\x52\xc8\x32\xdc\xed\xde\xce\x01\xbe\x01\xce"
        !          7330:             "\xe0\x1b\xe2\x27\xe2\x46\xd2\x55\xd2\x65\xc2\x74\x14"
        !          7331:             "\x72\x74\x0f\x26\x62\x83\x05\x72\x87\x82\x86\x92\x82"
        !          7332:             "\x22\x92\x73\x22\x92\x72\x42\x82\x63\x43\x72\x53\x63"
        !          7333:             "\x62\x43\x85\x32\x24\xbc\xe0\x27\x90\xf1\xc2\xb2" }  },
        !          7334:       /* --- pixel bitmap for cmr450 char#37 % --- */
        !          7335:       {  37,102182,                     /* character number, location */
        !          7336:          47, 3,   -3, 3,      /* topleft row,col, and botleft row,col */
        !          7337:           { 46,   50, 3,373, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          7338:             "\x75\xe0\xc2\xb3\x32\xe0\xa3\xa2\x71\xe0\x84\x93\x82"
        !          7339:             "\xe0\x54\x93\x93\xe0\x34\xa3\xa1\x12\xd6\x94\xa2\x24"
        !          7340:             "\x54\x14\xa3\xb2\x65\x53\xb3\xc1\xe0\x14\xa4\xc2\xd4"
        !          7341:             "\xb4\xc2\xd3\xc4\xc2\xc4\xc4\xc2\xb4\xd4\xc2\xb3\xe4"
        !          7342:             "\xc2\xa4\xe4\xc2\x94\xe0\x14\xc2\x93\xe0\x33\xc1\x94"
        !          7343:             "\xe0\x33\xb2\x84\xe0\x44\xa2\x83\xe0\x63\xa1\x84\xe0"
        !          7344:             "\x63\x92\x74\xe0\x83\x81\x83\xe0\xa2\x71\x84\xe0\xb3"
        !          7345:             "\x32\x84\xe0\xe5\x93\xb5\xe0\xc4\x93\x41\xe0\xb3\x92"
        !          7346:             "\x71\xe0\x94\x83\x81\xe0\x74\x83\x92\xe0\x63\x93\xa2"
        !          7347:             "\xe0\x44\x84\xa2\xe0\x34\x93\xb2\xe0\x33\xa3\xc2\xe0"
        !          7348:             "\x14\x94\xc2\xe4\xa4\xc2\xe3\xb4\xc2\xd4\xb4\xc2\xc4"
        !          7349:             "\xc4\xc2\xc3\xd4\xc2\xb4\xd4\xc2\xa4\xe0\x13\xc2\xa3"
        !          7350:             "\xe0\x23\xb2\xa4\xe0\x24\xa2\x94\xe0\x43\xa2\x93\xe0"
        !          7351:             "\x53\x92\x94\xe0\x63\x81\x94\xe0\x82\x71\xa3\xe0\xa3"
        !          7352:             "\x41\xc2\xe0\xc5\x60" }  },
        !          7353:       /* --- pixel bitmap for cmr450 char#38 & --- */
        !          7354:       {  38,85068,                      /* character number, location */
        !          7355:          44, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          7356:           { 42,   45, 3,309, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          7357:             "\xd4\xe0\xe0\x82\x42\xe0\xe0\x52\x61\xe0\xe0\x43\x62"
        !          7358:             "\xe0\xe0\x23\x81\xe0\xe0\x23\x82\xe0\x70\xf3\x74\x82"
        !          7359:             "\xe0\x70\x74\x81\xe0\xe0\x14\x72\xe0\xe0\x14\x71\xe0"
        !          7360:             "\xe0\x24\x62\xe0\xe0\x24\x61\xe0\xe0\x44\x41\xe0\xe0"
        !          7361:             "\x54\x31\xe0\xc0\xf1\x84\x21\xde\x95\xe0\x37\xd4\xe0"
        !          7362:             "\x54\xe0\x15\xe0\x43\xe0\x34\xe0\x42\xe0\x35\xe0\x42"
        !          7363:             "\xe0\x21\x24\xe0\x22\xe0\x21\x35\xe0\x12\xe0\x11\x54"
        !          7364:             "\xe2\xe0\x12\x55\xc2\xe0\x12\x74\xc2\xe0\x12\x75\xa2"
        !          7365:             "\xe0\x12\x95\x92\xe3\xa4\x82\xe4\xb4\x62\xe0\x14\xb5"
        !          7366:             "\x52\xe5\xc5\x32\xe0\x15\xd4\x22\xe0\x2f\x15\xe6\xe0"
        !          7367:             "\x12\x06\xe5\xe0\x12\x15\xe0\x15\xd2\x26\xc8\xc2\x36"
        !          7368:             "\xa2\x45\x83\x56\x64\x65\x63\x8c\xab\xb8\xe7\x60" }  },
        !          7369:       /* --- pixel bitmap for cmr450 char#39 ' --- */
        !          7370:       {  39,103046,                     /* character number, location */
        !          7371:          43, 5,   24, 5,      /* topleft row,col, and botleft row,col */
        !          7372:           {  8,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          7373:             "\x1c\x3e\x7f\xff\xff\xbe\x9c\x80\x80\x80\x40\x40\x40"
        !          7374:             "\x20\x20\x10\x08\x04\x02" }  },
        !          7375:       /* --- pixel bitmap for cmr450 char#40 ( --- */
        !          7376:       {  40,103650,                     /* character number, location */
        !          7377:          47, 7,  -16, 7,      /* topleft row,col, and botleft row,col */
        !          7378:           { 14,   63, 3,118, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          7379:             "\xd1\xc1\xc1\xc1\xc2\xb2\x40\xf1\x72\x50\x62\xb3\xb2"
        !          7380:             "\xb3\xb2\x80\xf1\x33\x80\x32\x90\xf2\x23\x90\x14\x90"
        !          7381:             "\xf3\x13\xaf\xe4\xa0\xf3\x13\xa0\x14\x90\xf2\x23\x90"
        !          7382:             "\x32\x90\xf1\x33\x80\x42\xc3\xc2\xc3\xc2\x60\xf1\x72"
        !          7383:             "\x50\x82\xd2\xd1\xe1\xe1\xe1" }  },
        !          7384:       /* --- pixel bitmap for cmr450 char#41 ) --- */
        !          7385:       {  41,104339,                     /* character number, location */
        !          7386:          47, 3,  -16, 3,      /* topleft row,col, and botleft row,col */
        !          7387:           { 14,   63, 3,119, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          7388:             "\x01\xe1\xe1\xe1\xd2\xd2\x80\xf1\x52\x70\x62\xc3\xc2"
        !          7389:             "\xc3\xc2\x40\xf1\x83\x30\x92\x30\xf2\x93\x20\x94\x10"
        !          7390:             "\xf3\xa3\x10\xfe\xa4\xf3\xa3\x10\x94\x10\xf2\x93\x20"
        !          7391:             "\x92\x30\xf1\x83\x30\x82\xb3\xb2\xb3\xb2\x60\xf1\x52"
        !          7392:             "\x70\x42\xb2\xc1\xc1\xc1\xc1\xd2" }  },
        !          7393:       /* --- pixel bitmap for cmr450 char#42 * --- */
        !          7394:       {  42,105052,                     /* character number, location */
        !          7395:          47, 4,   20, 4,      /* topleft row,col, and botleft row,col */
        !          7396:           { 23,   27, 3,83, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          7397:             "\xf5\xa3\xa3\x73\x77\x62\x79\x61\x65\x25\x41\x45\x64"
        !          7398:             "\x31\x34\xa4\x11\x14\xe7\xe0\x43\xe0\x47\xe4\x11\x14"
        !          7399:             "\xa4\x31\x34\x65\x41\x45\x25\x61\x69\x62\x77\x73\x73"
        !          7400:             "\xf5\xa3\xa1" }  },
        !          7401:       /* --- pixel bitmap for cmr450 char#43 + --- */
        !          7402:       {  43,105810,                     /* character number, location */
        !          7403:          36, 3,   -5, 3,      /* topleft row,col, and botleft row,col */
        !          7404:           { 42,   41, 2,13, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          7405:             "\xff\x12\x14\x03\x13\xff\x02\x2a\xff\x12\x14\x03\x13" }  },
        !          7406:       /* --- pixel bitmap for cmr450 char#44 (noname) --- */
        !          7407:       {  44,106447,                     /* character number, location */
        !          7408:           7, 5,  -12, 5,      /* topleft row,col, and botleft row,col */
        !          7409:           {  8,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          7410:             "\x1c\x3e\x7f\xff\xff\xbe\x9c\x80\x80\x80\x40\x40\x40"
        !          7411:             "\x20\x20\x10\x08\x04\x02" }  },
        !          7412:       /* --- pixel bitmap for cmr450 char#45 (noname) --- */
        !          7413:       {  45,130548,                     /* character number, location */
        !          7414:          15, 1,   12, 1,      /* topleft row,col, and botleft row,col */
        !          7415:           { 16,    3, 3, 6, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          7416:             "\xf2\x0e\x02" }  },
        !          7417:       /* --- pixel bitmap for cmr450 char#46 (noname) --- */
        !          7418:       {  46,106942,                     /* character number, location */
        !          7419:           7, 5,    0, 5,      /* topleft row,col, and botleft row,col */
        !          7420:           {  7,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          7421:             "\x1c\xdf\xff\xff\xf7\x71\x00" }  },
        !          7422:       /* --- pixel bitmap for cmr450 char#47 / --- */
        !          7423:       {  47,107458,                     /* character number, location */
        !          7424:          47, 3,  -16, 3,      /* topleft row,col, and botleft row,col */
        !          7425:           { 25,   63, 3,257, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          7426:             "\xe0\x92\xe0\x83\xe0\x74\xf1\xe0\x73\x10\xe0\x64\x10"
        !          7427:             "\xf1\xe0\x63\x20\xe0\x54\x20\xf1\xe0\x53\x30\xe0\x44"
        !          7428:             "\xe0\x73\xe0\x74\x40\xf1\xe0\x33\x50\xe0\x24\x50\xf1"
        !          7429:             "\xe0\x23\x60\xe0\x14\xe0\x73\xe0\x74\x70\xf1\xe3\x80"
        !          7430:             "\xd4\x80\xf1\xd3\x90\xc4\x90\xf1\xc3\xa0\xb4\xe0\x73"
        !          7431:             "\xe0\x74\xb0\xf1\xa3\xc0\x94\xc0\xf1\x93\xd0\x84\xd0"
        !          7432:             "\xf1\x83\xe0\x74\xe0\x73\xe0\x74\xe0\x10\xf1\x63\xe0"
        !          7433:             "\x20\x54\xe0\x20\xf1\x53\xe0\x30\x44\xe0\x73\xe0\x74"
        !          7434:             "\xe0\x40\xf1\x33\xe0\x50\x24\xe0\x50\xf1\x23\xe0\x60"
        !          7435:             "\x14\xe0\x60\xf1\x13\xe0\x74\xe0\x7f\x13\xe0\x82" }  },
        !          7436:       /* --- pixel bitmap for cmr450 char#48 0 --- */
        !          7437:       {  48,73365,                      /* character number, location */
        !          7438:          41, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          7439:           { 27,   42, 3,131, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          7440:             "\xa7\xe0\x43\x53\xe3\x93\xb3\xb3\x93\xd3\x74\xd4\x63"
        !          7441:             "\xe0\x13\x30\xf1\x24\xe0\x14\x20\x15\xe0\x15\x10\xf2"
        !          7442:             "\x14\xe0\x34\x1f\xe5\xe0\x35\x05\xe0\x35\xf2\x14\xe0"
        !          7443:             "\x34\x10\x15\xe0\x15\x10\xf1\x24\xe0\x14\x20\x33\xe0"
        !          7444:             "\x13\x64\xd4\x73\xd3\x93\xb3\xb3\x93\xd4\x54\xe0\x37"
        !          7445:             "\xa0" }  },
        !          7446:       /* --- pixel bitmap for cmr450 char#49 1 --- */
        !          7447:       {  49,74251,                      /* character number, location */
        !          7448:          41, 5,    0, 5,      /* topleft row,col, and botleft row,col */
        !          7449:           { 21,   41, 3,46, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          7450:             "\xb2\xe0\x43\xe0\x25\xd8\x8d\x85\x35\x80\xfe\x85\x80"
        !          7451:             "\xfe\x85\x80\xf1\x85\x80\x77\x7f\x1e\x07" }  },
        !          7452:       /* --- pixel bitmap for cmr450 char#50 2 --- */
        !          7453:       {  50,75276,                      /* character number, location */
        !          7454:          41, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          7455:           { 25,   41, 3,165, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          7456:             "\x88\xe0\x1c\xb4\x66\x83\xa5\x62\xd5\x52\xe5\x32\xe0"
        !          7457:             "\x16\x24\xe5\x16\xdd\xc6\x0f\x27\xd5\x15\xd6\xe0\x56"
        !          7458:             "\xf1\xe0\x55\x10\xf1\xe0\x45\x20\xe0\x35\xe0\x64\xe0"
        !          7459:             "\x64\xe0\x64\xe0\x73\xe0\x73\xe0\x73\xe0\x73\xe0\x73"
        !          7460:             "\xe0\x73\xe0\x73\xe0\x73\xc2\x72\xe2\x62\xe0\x12\x61"
        !          7461:             "\xe0\x12\x61\xe0\x22\x51\xe0\x32\x4e\x07\x3e\x08\x2e"
        !          7462:             "\x08\x2f\x1e\x09\x22" }  },
        !          7463:       /* --- pixel bitmap for cmr450 char#51 3 --- */
        !          7464:       {  51,76384,                      /* character number, location */
        !          7465:          41, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          7466:           { 25,   42, 3,163, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          7467:             "\x88\xe0\x1d\xa4\x75\x83\xb4\x63\xd4\x54\xc5\x36\xb6"
        !          7468:             "\x10\xf2\x17\xb5\x10\x25\xb6\x43\xc6\x10\xf1\xe0\x45"
        !          7469:             "\x20\xe0\x35\xe0\x64\xe0\x64\xe0\x63\xe0\x63\xe0\x29"
        !          7470:             "\xe0\x94\xe0\x94\xe0\x84\xe0\x84\xe0\x75\xe0\x66\xe0"
        !          7471:             "\x65\x10\xf1\xe0\x56\x24\xd6\x16\xc6\x0f\x18\xb6\x08"
        !          7472:             "\xb5\x18\xa6\x17\xb5\x35\xc5\x42\xd5\x63\xa5\x84\x75"
        !          7473:             "\xad\xe0\x18\x99" }  },
        !          7474:       /* --- pixel bitmap for cmr450 char#52 4 --- */
        !          7475:       {  52,77388,                      /* character number, location */
        !          7476:          42, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          7477:           { 27,   42, 3,162, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          7478:             "\xe0\x52\x60\xf1\xe0\x43\x60\xe0\x34\x60\xf1\xe0\x25"
        !          7479:             "\x60\xe0\x16\xe0\x67\xe0\x61\x15\xe0\x52\x15\xe0\x42"
        !          7480:             "\x25\xe0\x41\x35\xe0\x32\x35\xe0\x22\x45\xe0\x21\x55"
        !          7481:             "\xe0\x12\x55\xe2\x65\xe1\x75\xd2\x75\xc2\x85\xc1\x95"
        !          7482:             "\xb2\x95\xa2\xa5\xa1\xb5\x92\xb5\x82\xc5\x81\xd5\x72"
        !          7483:             "\xd5\x62\xe5\x6f\x1e\x0d\xf7\xe0\x25\x60\xe0\x17\x50"
        !          7484:             "\xf1\xae\x03" }  },
        !          7485:       /* --- pixel bitmap for cmr450 char#53 5 --- */
        !          7486:       {  53,78504,                      /* character number, location */
        !          7487:          41, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          7488:           { 25,   42, 3,147, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          7489:             "\x32\xe0\x12\x65\x94\x7e\x03\x8e\x02\x9e\x01\xad\xc2"
        !          7490:             "\x26\xc0\xf7\x32\xe0\x60\x32\x56\xc2\x32\x53\xa2\x12"
        !          7491:             "\x93\x83\xb4\x72\xd4\x62\xd5\xe0\x74\x20\xf1\xe0\x55"
        !          7492:             "\x10\xf2\xe0\x56\x31\xe0\x16\x15\xdc\xd6\x0f\x17\xc6"
        !          7493:             "\x06\xd5\x15\xe5\x10\xf1\x12\xe0\x15\x20\x22\xd5\x53"
        !          7494:             "\xc4\x73\xa4\x94\x65\xcb\xe0\x27\xa5" }  },
        !          7495:       /* --- pixel bitmap for cmr450 char#54 6 --- */
        !          7496:       {  54,79482,                      /* character number, location */
        !          7497:          41, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          7498:           { 25,   42, 3,161, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          7499:             "\xd6\xe0\x2b\xd4\x63\xa4\xa2\x84\x95\x64\x96\x63\xa6"
        !          7500:             "\x53\xb6\x44\xb6\x43\xd4\x20\xf1\x24\xe0\x50\x15\xe0"
        !          7501:             "\x50\xf1\x14\xe0\x60\x14\x56\x95\x41\x62\x75\x31\x83"
        !          7502:             "\x55\x21\xa3\x45\x11\xc3\x3f\x16\xd4\x26\xe4\x15\xe0"
        !          7503:             "\x14\x1f\x35\xe0\x15\xf3\x14\xe0\x15\xf1\x24\xe4\x10"
        !          7504:             "\x24\xd5\x43\xd4\x54\xc3\x73\xb4\x83\x94\xa4\x55\xcb"
        !          7505:             "\xe0\x27\x93" }  },
        !          7506:       /* --- pixel bitmap for cmr450 char#55 7 --- */
        !          7507:       {  55,80488,                      /* character number, location */
        !          7508:          42, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          7509:           { 27,   43, 3,137, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          7510:             "\x22\xe0\xb4\xe0\x70\xf1\x2e\x0b\x2e\x0a\x2e\x0b\x2e"
        !          7511:             "\x0a\x33\xe0\x42\x30\xf1\x12\xe0\x42\x42\xe0\x42\x52"
        !          7512:             "\xe0\x32\x62\xe0\x22\xe0\xb2\xe0\xa2\x80\xf1\xe0\x22"
        !          7513:             "\x90\xe0\x12\xe0\xa3\xe0\xa2\xb0\xf1\xd3\xb0\xf1\xc3"
        !          7514:             "\xc0\xf1\xb4\xc0\xa5\xc0\xf1\xa4\xd0\xf4\x95\xd0\xf7"
        !          7515:             "\x86\xd0\x94\xe4" }  },
        !          7516:       /* --- pixel bitmap for cmr450 char#56 8 --- */
        !          7517:       {  56,81466,                      /* character number, location */
        !          7518:          41, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          7519:           { 25,   42, 3,175, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          7520:             "\x97\xe0\x2c\xb4\x74\x93\xb3\x72\xe3\x53\xe0\x13\x42"
        !          7521:             "\xe0\x24\x10\xf2\x13\xe0\x33\x10\x14\xe0\x23\x25\xe0"
        !          7522:             "\x13\x26\xd3\x47\xb2\x58\x93\x69\x63\x89\x42\xbd\xda"
        !          7523:             "\xe0\x2b\xe0\x2b\xc2\x1b\x92\x5a\x72\x7a\x52\xa8\x43"
        !          7524:             "\xc7\x23\xe6\x23\xe0\x25\x0f\x13\xe0\x44\x0f\x23\xe0"
        !          7525:             "\x53\x03\xe0\x52\x23\xe0\x42\x23\xe0\x33\x33\xe0\x22"
        !          7526:             "\x44\xe2\x64\xb3\x94\x74\xbc\xe0\x27\x92" }  },
        !          7527:       /* --- pixel bitmap for cmr450 char#57 9 --- */
        !          7528:       {  57,82464,                      /* character number, location */
        !          7529:          41, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          7530:           { 25,   42, 3,161, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          7531:             "\x97\xe0\x2b\xd4\x54\xa4\x93\x93\xb3\x73\xc4\x54\xd3"
        !          7532:             "\x45\xd4\x34\xe4\x34\xe5\x1f\x35\xe0\x14\x1f\x35\xe0"
        !          7533:             "\x15\x14\xe0\x15\x14\xe6\xf1\x24\xd6\x33\xc1\x15\x43"
        !          7534:             "\xa1\x25\x53\x81\x35\x72\x61\x45\x96\x54\x10\xf1\xe0"
        !          7535:             "\x64\x10\xe0\x55\x10\xf1\xe0\x54\x20\x24\xd4\x36\xb4"
        !          7536:             "\x46\xb3\x56\xa4\x56\xa3\x65\xa3\x82\xb3\xa3\x74\xcb"
        !          7537:             "\xe0\x27\xc4" }  },
        !          7538:       /* --- pixel bitmap for cmr450 char#58 : --- */
        !          7539:       {  58,108130,                     /* character number, location */
        !          7540:          27, 5,    0, 5,      /* topleft row,col, and botleft row,col */
        !          7541:           {  7,   27, 3,31, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          7542:             "\x23\x35\x1f\x27\x15\x33\x20\xfc\x70\x23\x35\x1f\x27"
        !          7543:             "\x15\x33\x23" }  },
        !          7544:       /* --- pixel bitmap for cmr450 char#59 ; --- */
        !          7545:       {  59,108813,                     /* character number, location */
        !          7546:          27, 5,  -12, 5,      /* topleft row,col, and botleft row,col */
        !          7547:           {  7,   39, 3,57, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          7548:             "\x23\x35\x1f\x27\x15\x33\x20\xfc\x70\x23\x35\x16\x1f"
        !          7549:             "\x17\x16\x23\x11\xf3\x61\xf2\x51\x10\xf1\x41\x20\x31"
        !          7550:             "\x51\x51\x50" }  },
        !          7551:       /* --- pixel bitmap for cmr450 char#60 (noname) --- */
        !          7552:       {  60,99911,                      /* character number, location */
        !          7553:          31, 5,  -13, 5,      /* topleft row,col, and botleft row,col */
        !          7554:           {  7,   44, 3,41, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          7555:             "\x23\x35\x1f\x27\x15\x33\x20\xf5\x70\x32\x20\xf9\x23"
        !          7556:             "\x20\xfa\x15\x1f\x67\x15\x33\x23" }  },
        !          7557:       /* --- pixel bitmap for cmr450 char#61 = --- */
        !          7558:       {  61,109527,                     /* character number, location */
        !          7559:          24, 3,    7, 3,      /* topleft row,col, and botleft row,col */
        !          7560:           { 42,   17, 2,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          7561:             "\xff\x02\x00\x2a\xff\x0a\x2a\xff\x02\x2a" }  },
        !          7562:       /* --- pixel bitmap for cmr450 char#62 (noname) --- */
        !          7563:       {  62,87189,                      /* character number, location */
        !          7564:          31, 3,  -13, 3,      /* topleft row,col, and botleft row,col */
        !          7565:           { 23,   44, 3,115, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          7566:             "\x93\xe0\x55\xa0\xf2\x77\x90\x85\xe0\x53\xb0\xf5\xe0"
        !          7567:             "\x90\xf3\xa2\xb0\xf4\x92\xc0\x83\xc0\xf1\x82\xd0\x73"
        !          7568:             "\xd0\xf1\x63\xe0\x53\xe0\x53\xe0\x45\xe0\x44\xe0\x44"
        !          7569:             "\xe0\x45\xd4\x1f\x35\xc6\x05\xd4\x24\xe0\x12\x34\xd2"
        !          7570:             "\x44\xb3\x74\x73\xb9\x84" }  },
        !          7571:       /* --- pixel bitmap for cmr450 char#63 ? --- */
        !          7572:       {  63,86185,                      /* character number, location */
        !          7573:          44, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          7574:           { 23,   44, 3,111, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          7575:             "\x79\xb3\x75\x72\xb4\x52\xd4\x32\xe0\x14\x24\xd4\x1f"
        !          7576:             "\x36\xc5\x14\xd4\xe0\x45\xe0\x44\xe0\x44\xe0\x44\xe0"
        !          7577:             "\x43\xe0\x53\xe0\x62\xe0\x63\xe0\x53\x90\xf1\xb2\xa0"
        !          7578:             "\xf8\xa2\xb0\xf5\xe0\x90\x93\xe0\x55\xa0\xf2\x77\x90"
        !          7579:             "\x85\xe0\x53\xb0" }  },
        !          7580:       /* --- pixel bitmap for cmr450 char#64 @ --- */
        !          7581:       {  64,110705,                     /* character number, location */
        !          7582:          44, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          7583:           { 42,   45, 3,291, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          7584:             "\xe0\x38\xe0\xe0\x33\x83\xe0\xc2\xe2\xe0\x82\xe0\x42"
        !          7585:             "\xe0\x51\xe0\x81\xe0\x22\xe0\xa2\xd2\xe0\xc2\xc1\xe0"
        !          7586:             "\xe1\xb1\xe0\xe0\x21\x92\xc6\xc2\x72\xb3\x52\xb2\x62"
        !          7587:             "\x93\x82\xa2\x52\x93\xb1\xa2\x42\x83\xc2\x92\x32\x84"
        !          7588:             "\xd5\x62\x22\x83\xe0\x14\x62\x10\xf1\x12\x74\xe0\x14"
        !          7589:             "\x62\x12\x83\xe0\x24\x72\x0f\x62\x74\xe0\x24\x72\x02"
        !          7590:             "\x83\xe0\x24\x72\xf1\x12\x74\xe0\x14\x72\x12\x83\xe0"
        !          7591:             "\x14\x71\x22\x84\xd5\x62\x32\x83\xc6\x62\x32\x93\xb1"
        !          7592:             "\x14\x61\x52\x93\x82\x33\x52\x52\xb3\x52\x53\x32\x72"
        !          7593:             "\xc6\x85\xa1\xe0\xe0\xe1\xe0\xe0\xd2\xe0\xe0\xd2\xe0"
        !          7594:             "\xe0\xe1\xe0\xe4\xa2\xe0\x95\xe2\xe0\x45\xe0\x53\xa7"
        !          7595:             "\xe0\xbb\xe3" }  },
        !          7596:       /* --- pixel bitmap for cmr450 char#65 A --- */
        !          7597:       {  65, 1092,                      /* character number, location */
        !          7598:          45, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          7599:           { 43,   45, 3,226, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          7600:             "\xf2\xe0\x63\xe0\x60\xf2\xe0\x55\xe0\x50\xf1\xe0\x47"
        !          7601:             "\xe0\x40\xe0\x39\xe0\x30\xf1\xe0\x32\x16\xe0\x30\xe0"
        !          7602:             "\x23\x17\xe0\x20\xf1\xe0\x22\x36\xe0\x20\xe0\x13\x37"
        !          7603:             "\xe0\x10\xf1\xe0\x12\x56\xe0\x10\xe2\x67\xe0\xf1\xe2"
        !          7604:             "\x76\xe0\xd2\x87\xd0\xf1\xd2\x96\xd0\xf2\xc2\xb6\xc0"
        !          7605:             "\xf2\xb2\xd6\xb0\xf1\xae\x09\xa0\xa2\xe0\x16\xa0\xf1"
        !          7606:             "\x92\xe0\x36\x90\x83\xe0\x37\x80\xf1\x82\xe0\x56\x80"
        !          7607:             "\x73\xe0\x57\x70\xf1\x72\xe0\x76\x70\x63\xe0\x77\xb4"
        !          7608:             "\xe0\x86\xa7\xe0\x58\x5f\x1e\xbe\x04" }  },
        !          7609:       /* --- pixel bitmap for cmr450 char#66 B --- */
        !          7610:       {  66, 2564,                      /* character number, location */
        !          7611:          43, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          7612:           { 39,   43, 3,197, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          7613:             "\x0e\x0d\xce\x0e\x02\xe7\xe6\xd6\xe0\x25\xc6\xe0\x35"
        !          7614:             "\xb6\xe0\x45\xa6\xe0\x46\x96\xe0\x55\x30\xf5\x66\xe0"
        !          7615:             "\x56\x20\x66\xe0\x55\x96\xe0\x45\xa6\xe0\x36\xa6\xe0"
        !          7616:             "\x26\xb6\xe0\x15\xd6\xd6\xee\x09\xe0\x26\xe6\xd6\xe0"
        !          7617:             "\x26\xb6\xe0\x45\xa6\xe0\x55\x96\xe0\x56\x20\xf1\x66"
        !          7618:             "\xe0\x66\x10\xf5\x66\xe0\x76\x66\xe0\x75\x76\xe0\x66"
        !          7619:             "\x76\xe0\x65\x86\xe0\x56\x86\xe0\x46\x96\xe0\x27\x97"
        !          7620:             "\xe8\x5e\x0e\x04\x7e\x0e\x01\xa6" }  },
        !          7621:       /* --- pixel bitmap for cmr450 char#67 C --- */
        !          7622:       {  67, 3597,                      /* character number, location */
        !          7623:          44, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          7624:           { 39,   45, 3,221, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          7625:             "\xe0\x48\xc1\xee\x01\x82\xc7\x84\x53\xa6\xd3\x43\x95"
        !          7626:             "\xe0\x32\x24\x85\xe0\x57\x75\xe0\x76\x65\xe0\x95\x55"
        !          7627:             "\xe0\xa5\xf1\x45\xe0\xc4\x35\xe0\xe3\x26\xe0\xe3\x25"
        !          7628:             "\xe0\xe0\x13\xf2\x16\xe0\xe0\x22\x15\xe0\xe0\x5f\x86"
        !          7629:             "\xe0\xe0\x50\x15\xe0\xe0\x66\xe0\xe0\x40\xf1\x16\xe0"
        !          7630:             "\xe0\x22\x25\xe0\xe0\x22\x26\xe0\xe0\x12\x35\xe0\xe2"
        !          7631:             "\x10\xf1\x45\xe0\xd2\x10\x55\xe0\xb2\x85\xe0\x93\x95"
        !          7632:             "\xe0\x82\xb5\xe0\x62\xd5\xe0\x33\xe0\x16\xe3\xe0\x47"
        !          7633:             "\x84\xe0\x8e\x01\xe0\xe8\xde" }  },
        !          7634:       /* --- pixel bitmap for cmr450 char#68 D --- */
        !          7635:       {  68, 4851,                      /* character number, location */
        !          7636:          43, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          7637:           { 43,   43, 3,197, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          7638:             "\x0e\x0e\xe0\x1e\x0e\x02\xe0\x47\xe6\xe0\x36\xe0\x26"
        !          7639:             "\xe0\x16\xe0\x45\xe6\xe0\x55\xd6\xe0\x74\xc6\xe0\x75"
        !          7640:             "\xb6\xe0\x85\x40\xf1\x66\xe0\x95\x30\xf1\x66\xe0\xa5"
        !          7641:             "\x20\x66\xe0\xa6\x10\xf2\x66\xe0\xb5\x10\xf9\x66\xe0"
        !          7642:             "\xb6\xf1\x66\xe0\xb5\x10\x66\xe0\xa6\x10\xf1\x66\xe0"
        !          7643:             "\xa5\x20\xf1\x66\xe0\x95\x30\x66\xe0\x85\xa6\xe0\x84"
        !          7644:             "\xb6\xe0\x75\xb6\xe0\x65\xc6\xe0\x45\xe6\xe0\x35\xe7"
        !          7645:             "\xe7\xae\x0e\x03\xce\x0e\xe0\x13" }  },
        !          7646:       /* --- pixel bitmap for cmr450 char#69 E --- */
        !          7647:       {  69, 6392,                      /* character number, location */
        !          7648:          43, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          7649:           { 38,   43, 3,199, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          7650:             "\xf1\x0e\x0e\x07\x30\x57\xe0\x27\x96\xe0\x45\x96\xe0"
        !          7651:             "\x64\x20\xf1\x66\xe0\x73\x20\xf3\x66\xe0\x82\x20\xf1"
        !          7652:             "\x66\xe0\x92\x10\x66\xc2\x92\x10\xf2\x66\xc2\xc0\xf1"
        !          7653:             "\x66\xb3\xc0\x66\x95\xc0\xf1\x6e\x06\xc0\x66\x95\xc0"
        !          7654:             "\xf1\x66\xb3\xc0\xf1\x66\xc2\xc0\xf1\x66\xc2\xa2\x66"
        !          7655:             "\xe0\xa2\xf2\x66\xe0\x92\x10\xf1\x66\xe0\x83\x10\x66"
        !          7656:             "\xe0\x82\x20\xf1\x66\xe0\x73\x20\x66\xe0\x64\x86\xe0"
        !          7657:             "\x46\x77\xe0\x18\x3f\x1e\x0e\x07\x30" }  },
        !          7658:       /* --- pixel bitmap for cmr450 char#70 F --- */
        !          7659:       {  70, 7793,                      /* character number, location */
        !          7660:          43, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          7661:           { 36,   43, 3,137, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          7662:             "\xf1\x0e\x0e\x06\x20\x57\xe0\x17\x86\xe0\x44\x86\xe0"
        !          7663:             "\x54\x10\xf1\x66\xe0\x63\x10\xf3\x66\xe0\x72\x10\xf1"
        !          7664:             "\x66\xe0\x82\x66\xc2\x82\xf2\x66\xc2\xa0\xf1\x66\xb3"
        !          7665:             "\xa0\x66\x95\xa0\xf1\x6e\x06\xa0\x66\x95\xa0\xf1\x66"
        !          7666:             "\xb3\xa0\xf3\x66\xc2\xa0\xfa\x66\xe0\xa0\x58\xe0\x9f"
        !          7667:             "\x1e\x06\xe0\x26" }  },
        !          7668:       /* --- pixel bitmap for cmr450 char#71 G --- */
        !          7669:       {  71, 9048,                      /* character number, location */
        !          7670:          44, 4,   -1, 4,      /* topleft row,col, and botleft row,col */
        !          7671:           { 42,   45, 3,249, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          7672:             "\xe0\x38\xc1\xe0\x4e\x82\xe0\x27\x74\x53\xe6\xc3\x43"
        !          7673:             "\xd5\xe0\x22\x24\xc4\xe0\x57\xb4\xe0\x76\xa4\xe0\x95"
        !          7674:             "\x95\xe0\x95\x85\xe0\xb4\x75\xe0\xc4\x75\xe0\xd3\x66"
        !          7675:             "\xe0\xd3\x65\xe0\xe3\x40\xf1\x16\xe0\xe0\x12\x40\x15"
        !          7676:             "\xe0\xe0\x22\x55\xe0\xe0\x8f\x76\xe0\xe0\x86\xe0\x4e"
        !          7677:             "\x04\x15\xe0\x4e\x04\x16\xe0\xa7\x40\xf1\x16\xe0\xb6"
        !          7678:             "\x40\x25\xe0\xb6\x66\xe0\xa6\x75\xe0\xa6\x76\xe0\x96"
        !          7679:             "\x85\xe0\x96\x95\xe0\x86\xa5\xe0\x76\xb4\xe0\x76\xc5"
        !          7680:             "\xe0\x47\xd5\xe0\x23\x14\xe6\xd3\x33\xe0\x27\x84\x52"
        !          7681:             "\xe0\x4e\x01\x81\xe0\x79\xe0\x20" }  },
        !          7682:       /* --- pixel bitmap for cmr450 char#72 H --- */
        !          7683:       {  72,10397,                      /* character number, location */
        !          7684:          43, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          7685:           { 43,   43, 3,84, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          7686:             "\xf1\x0e\x04\x7e\x04\x58\xe0\x38\x50\xfe\x66\xe0\x56"
        !          7687:             "\x60\xf1\x66\xe0\x56\x60\xf1\x6e\x0e\x03\x60\xfe\x66"
        !          7688:             "\xe0\x56\x60\xf2\x66\xe0\x56\x60\x58\xe0\x38\x5f\x1e"
        !          7689:             "\x04\x7e\x04" }  },
        !          7690:       /* --- pixel bitmap for cmr450 char#73 I --- */
        !          7691:       {  73,11244,                      /* character number, location */
        !          7692:          43, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          7693:           { 18,   43, 3,36, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          7694:             "\xf1\x0e\x04\x58\x50\xfe\x66\x60\xfe\x66\x60\xf6\x66"
        !          7695:             "\x60\x58\x5f\x1e\x04" }  },
        !          7696:       /* --- pixel bitmap for cmr450 char#74 J --- */
        !          7697:       {  74,12124,                      /* character number, location */
        !          7698:          43, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
        !          7699:           { 28,   44, 3,71, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          7700:             "\xf1\x9e\x05\xe0\x28\x40\xfe\xe0\x36\x50\xfd\xe0\x36"
        !          7701:             "\x50\x24\xb6\x66\xa6\x5f\x28\x96\x58\x95\x76\x96\x75"
        !          7702:             "\xa5\x92\xb5\xb2\x95\xd3\x64\xe0\x47\xe0" }  },
        !          7703:       /* --- pixel bitmap for cmr450 char#75 K --- */
        !          7704:       {  75,13411,                      /* character number, location */
        !          7705:          43, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          7706:           { 44,   43, 3,280, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          7707:             "\xf1\x0e\x04\xbe\x10\x58\xe0\x48\xb6\xe0\x65\xd6\xe0"
        !          7708:             "\x63\xe0\x16\xe0\x53\xe0\x26\xe0\x43\xe0\x36\xe0\x33"
        !          7709:             "\xe0\x46\xe0\x23\xe0\x56\xe0\x13\xe0\x66\xe3\xe0\x76"
        !          7710:             "\xd3\xe0\x86\xc3\xe0\x96\xb3\xe0\xa6\xa3\xe0\xb6\x93"
        !          7711:             "\xe0\xc6\x83\xe0\xd6\x74\xe0\xd6\x66\xe0\xc6\x58\xe0"
        !          7712:             "\xb6\x49\xe0\xb6\x33\x26\xe0\xa6\x23\x37\xe0\x96\x13"
        !          7713:             "\x56\xe0\x98\x86\xe0\x87\x97\xe0\x76\xb6\xe0\x76\xc6"
        !          7714:             "\xe0\x66\xc7\xe0\x56\xd6\xe0\x56\xe6\xe0\x46\xe7\xe0"
        !          7715:             "\x36\xe0\x16\xe0\x36\xe0\x26\xe0\x26\xe0\x27\xe0\x16"
        !          7716:             "\xe0\x36\xe0\x16\xe0\x46\xe6\xe0\x47\xd6\xe0\x56\xd6"
        !          7717:             "\xe0\x57\xb8\xe0\x3a\x4f\x1e\x04\x9e\x03" }  },
        !          7718:       /* --- pixel bitmap for cmr450 char#76 L --- */
        !          7719:       {  76,14514,                      /* character number, location */
        !          7720:          43, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          7721:           { 34,   43, 3,97, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          7722:             "\xf1\x0e\x06\xe0\x58\xe0\x70\xfe\x66\xe0\x80\xf8\x66"
        !          7723:             "\xe0\x80\xf2\x66\xe0\x62\x66\xe0\x53\xf2\x66\xe0\x52"
        !          7724:             "\x10\xf1\x66\xe0\x43\x10\xf1\x66\xe0\x34\x10\x66\xe0"
        !          7725:             "\x25\x76\xe6\x77\xc8\x2f\x1e\x0e\x04\x23" }  },
        !          7726:       /* --- pixel bitmap for cmr450 char#77 M --- */
        !          7727:       {  77,15928,                      /* character number, location */
        !          7728:          43, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          7729:           { 51,   43, 3,218, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          7730:             "\x0c\xe0\xde\x0b\xe0\xbd\x58\xe0\xb8\xb7\xe0\xb7\x60"
        !          7731:             "\xf2\x62\x15\xe0\x92\x15\x60\xf1\x62\x25\xe0\x72\x25"
        !          7732:             "\x60\xf2\x62\x35\xe0\x52\x35\x60\xf2\x62\x45\xe0\x32"
        !          7733:             "\x45\x60\xf1\x62\x55\xe0\x12\x55\x60\xf2\x62\x65\xd2"
        !          7734:             "\x65\x60\xf2\x62\x75\xb2\x75\x60\xf2\x62\x85\x92\x85"
        !          7735:             "\x60\xf1\x62\x95\x72\x95\x60\xf2\x62\xa5\x52\xa5\x60"
        !          7736:             "\xf2\x62\xb5\x32\xb5\x60\xf1\x62\xc5\x12\xc5\x60\xf2"
        !          7737:             "\x62\xd6\xd5\x60\x54\xd4\xe5\xa6\xc4\xd7\x5e\x84\x8e"
        !          7738:             "\x0e\x03\x92\x9e\x03" }  },
        !          7739:       /* --- pixel bitmap for cmr450 char#78 N --- */
        !          7740:       {  78,17338,                      /* character number, location */
        !          7741:          43, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          7742:           { 43,   43, 3,291, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          7743:             "\x0c\xe0\x3e\x0d\xe0\x2e\x68\xe0\x48\x99\xe0\x54\xb2"
        !          7744:             "\x16\xe0\x62\xc2\x17\xe0\x52\xc2\x27\xe0\x42\xc2\x36"
        !          7745:             "\xe0\x42\xc2\x46\xe0\x32\xc2\x47\xe0\x22\xc2\x56\xe0"
        !          7746:             "\x22\xc2\x66\xe0\x12\xc2\x67\xe2\xc2\x76\xe2\xc2\x86"
        !          7747:             "\xd2\xc2\x87\xc2\xc2\x96\xc2\xc2\xa6\xb2\xc2\xa7\xa2"
        !          7748:             "\xc2\xb7\x92\xc2\xc6\x92\xc2\xc7\x82\xc2\xd7\x72\xc2"
        !          7749:             "\xe6\x72\xc2\xe0\x16\x62\xc2\xe0\x17\x52\xc2\xe0\x26"
        !          7750:             "\x52\xc2\xe0\x36\x42\xc2\xe0\x37\x32\xc2\xe0\x46\x32"
        !          7751:             "\xc2\xe0\x56\x22\xc2\xe0\x57\x12\xc2\xe0\x69\x60\xf1"
        !          7752:             "\x62\xe0\x78\x60\x62\xe0\x87\xc2\xe0\x96\x60\xf1\x62"
        !          7753:             "\xe0\xa5\x60\x54\xe0\xa4\x98\xe0\x93\x6e\xe0\x63\x6e"
        !          7754:             "\xe0\x72\x60" }  },
        !          7755:       /* --- pixel bitmap for cmr450 char#79 O --- */
        !          7756:       {  79,18353,                      /* character number, location */
        !          7757:          44, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          7758:           { 42,   45, 3,215, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          7759:             "\xe0\x38\xe0\xe0\x34\x64\xe0\xb4\xc4\xe0\x74\xe4\xe0"
        !          7760:             "\x44\xe0\x44\xe0\x14\xe0\x64\xd4\xe0\x84\xb5\xe0\x85"
        !          7761:             "\xa4\xe0\xa4\x95\xe0\xa5\x40\xf1\x35\xe0\xc5\x30\xf1"
        !          7762:             "\x25\xe0\xe5\x20\xf1\x16\xe0\xe6\x10\xf1\x15\xe0\xe0"
        !          7763:             "\x25\x1f\x96\xe0\xe0\x26\xf2\x16\xe0\xe6\x10\x25\xe0"
        !          7764:             "\xe5\x46\xe0\xc6\x20\xf1\x35\xe0\xc5\x30\x45\xe0\xa5"
        !          7765:             "\x94\xe0\xa4\xa5\xe0\x85\xb5\xe0\x65\xd5\xe0\x45\xe0"
        !          7766:             "\x15\xe0\x25\xe0\x44\xe4\xe0\x74\xc4\xe0\xa5\x65\xe0"
        !          7767:             "\xe0\x28\xe0\x32" }  },
        !          7768:       /* --- pixel bitmap for cmr450 char#80 P --- */
        !          7769:       {  80,19620,                      /* character number, location */
        !          7770:          43, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          7771:           { 37,   43, 3,133, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          7772:             "\x0e\x0c\xbe\x0e\x01\xd7\xd6\xc6\xe0\x16\xa6\xe0\x35"
        !          7773:             "\x96\xe0\x45\x86\xe0\x46\x10\xf1\x66\xe0\x55\x10\xf4"
        !          7774:             "\x66\xe0\x56\x66\xe0\x55\x76\xe0\x46\x10\xf1\x66\xe0"
        !          7775:             "\x45\x20\x66\xe0\x35\x96\xe0\x15\xb6\xd6\xce\x08\x90"
        !          7776:             "\xfe\x66\xe0\xb0\xf2\x66\xe0\xb0\x58\xe0\xaf\x1e\x04"
        !          7777:             "\xe0\x56" }  },
        !          7778:       /* --- pixel bitmap for cmr450 char#81 Q --- */
        !          7779:       {  81,20719,                      /* character number, location */
        !          7780:          44, 3,  -12, 3,      /* topleft row,col, and botleft row,col */
        !          7781:           { 42,   56, 3,303, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          7782:             "\xe0\x38\xe0\xe0\x34\x64\xe0\xb4\xc4\xe0\x74\xe4\xe0"
        !          7783:             "\x44\xe0\x44\xe0\x14\xe0\x64\xd5\xe0\x65\xb5\xe0\x85"
        !          7784:             "\xa4\xe0\xa4\x95\xe0\xa5\x40\xf1\x35\xe0\xc5\x30\xf1"
        !          7785:             "\x25\xe0\xe5\x20\xf1\x16\xe0\xe6\x10\xf1\x15\xe0\xe0"
        !          7786:             "\x25\x1f\x96\xe0\xe0\x26\x15\xe0\xe0\x25\x10\xf1\x16"
        !          7787:             "\xe0\xe6\x10\xf1\x25\xe0\xe5\x20\xf1\x35\xe0\xc5\x30"
        !          7788:             "\x45\xa4\xa5\x94\x91\x42\x84\xa5\x71\x71\x65\xb5\x51"
        !          7789:             "\x81\x55\xd4\x51\x91\x44\xe0\x14\x41\x92\x24\xe0\x44"
        !          7790:             "\x21\xa5\xe0\x74\x21\x94\xe0\xa6\x55\xc1\xe0\x38\x22"
        !          7791:             "\xc1\xe0\xd3\xb1\xe0\xe2\xb1\xe0\xe3\x92\xe0\xe3\x83"
        !          7792:             "\xe0\xe5\x53\xe0\xe0\x1d\xe0\xe0\x2c\xe0\xe0\x2b\xe0"
        !          7793:             "\xe0\x49\xe0\xe0\x67\xe0\xe0\x85\x50" }  },
        !          7794:       /* --- pixel bitmap for cmr450 char#82 R --- */
        !          7795:       {  82,22220,                      /* character number, location */
        !          7796:          43, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          7797:           { 44,   44, 3,225, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          7798:             "\x0e\x0b\xe0\x5e\x0e\xe0\x77\xb7\xe0\x66\xe5\xe0\x56"
        !          7799:             "\xe0\x16\xe0\x36\xe0\x26\xe0\x26\xe0\x35\xe0\x26\xe0"
        !          7800:             "\x36\xe0\x16\xe0\x45\x90\xf4\x66\xe0\x46\x80\x66\xe0"
        !          7801:             "\x45\xe0\x16\xe0\x36\xe0\x16\xe0\x35\xe0\x26\xe0\x25"
        !          7802:             "\xe0\x36\xe0\x15\xe0\x46\xe4\xe0\x66\xb5\xe0\x8e\x05"
        !          7803:             "\xe0\xb6\xb5\xe0\x86\xd5\xe0\x66\xe5\xe0\x56\xe0\x15"
        !          7804:             "\xe0\x46\xe0\x16\xb0\xf9\x66\xe0\x26\xa0\x66\xe0\x26"
        !          7805:             "\x82\xf1\x66\xe0\x35\x82\x58\xe0\x35\x62\x1e\x04\xd4"
        !          7806:             "\x62\x1e\x04\xe4\x42\xe0\xe0\x87\x35" }  },
        !          7807:       /* --- pixel bitmap for cmr450 char#83 S --- */
        !          7808:       {  83,23387,                      /* character number, location */
        !          7809:          44, 4,   -1, 4,      /* topleft row,col, and botleft row,col */
        !          7810:           { 27,   45, 3,197, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          7811:             "\x88\x91\x7d\x52\x64\x74\x33\x53\xb3\x23\x43\xe6\x33"
        !          7812:             "\xe0\x25\x24\xe0\x34\x23\xe0\x44\x23\xe0\x53\x1f\x14"
        !          7813:             "\xe0\x53\x1f\x14\xe0\x62\x15\xe0\x52\x15\xe0\x86\xe0"
        !          7814:             "\x87\xe0\x69\xe0\x5c\xe0\x2e\x01\xce\x04\xae\x04\xbe"
        !          7815:             "\x03\xce\x02\xee\xe0\x49\xe0\x77\xe0\x76\xe0\x86\xf1"
        !          7816:             "\xe0\x85\x0f\x32\xe0\x74\x03\xe0\x67\xe0\x63\x13\xe0"
        !          7817:             "\x54\x14\xe0\x43\x25\xe0\x33\x26\xe0\x13\x33\x14\xc3"
        !          7818:             "\x43\x35\x74\x52\x6d\x61\xa7\x90" }  },
        !          7819:       /* --- pixel bitmap for cmr450 char#84 T --- */
        !          7820:       {  84,24573,                      /* character number, location */
        !          7821:          43, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          7822:           { 41,   43, 3,97, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          7823:             "\xf1\x1e\x0e\x0b\x10\x16\xb6\xa6\x24\xd6\xc4\x23\xe6"
        !          7824:             "\xd3\x10\xf1\x12\xe0\x16\xe2\x1f\x13\xe0\x16\xe3\x0f"
        !          7825:             "\x42\xe0\x26\xe0\x12\xfe\xe0\x46\xe0\x30\xfa\xe0\x46"
        !          7826:             "\xe0\x30\xe0\x38\xe0\x20\xf1\x9e\x0a\x84" }  },
        !          7827:       /* --- pixel bitmap for cmr450 char#85 U --- */
        !          7828:       {  85,25709,                      /* character number, location */
        !          7829:          43, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          7830:           { 43,   44, 3,117, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          7831:             "\xf1\x0e\x04\xbe\x58\xe0\x58\x96\xe0\x84\x50\xfe\x66"
        !          7832:             "\xe0\x92\x60\xfc\x66\xe0\x92\x60\x75\xe0\x92\xd5\xe0"
        !          7833:             "\x82\xe6\xe0\x72\x70\xf1\x85\xe0\x62\x80\x95\xe0\x42"
        !          7834:             "\xe0\x55\xe0\x22\xe0\x75\xe3\xe0\x85\xc3\xe0\xb5\x74"
        !          7835:             "\xe0\xee\xe0\xe0\x48\xe0\x30" }  },
        !          7836:       /* --- pixel bitmap for cmr450 char#86 V --- */
        !          7837:       {  86,26877,                      /* character number, location */
        !          7838:          43, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
        !          7839:           { 45,   44, 3,235, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          7840:             "\xf1\x0e\x03\xe0\x1d\x58\xe0\x77\xa6\xe0\xa4\xb7\xe0"
        !          7841:             "\x93\x60\xf1\x76\xe0\x92\x70\xf1\x86\xe0\x72\x80\x87"
        !          7842:             "\xe0\x62\x80\xf1\x96\xe0\x52\x90\x97\xe0\x33\x90\xf1"
        !          7843:             "\xa6\xe0\x32\xa0\xf1\xb6\xe0\x12\xb0\xb7\xe2\xb0\xf1"
        !          7844:             "\xc6\xd2\xc0\xc7\xb3\xc0\xf1\xd6\xb2\xd0\xf1\xe6\x92"
        !          7845:             "\xe0\xe7\x73\xe0\xf1\xe0\x16\x72\xe0\x10\xf1\xe0\x26"
        !          7846:             "\x52\xe0\x20\xe0\x27\x42\xe0\x20\xf1\xe0\x36\x32\xe0"
        !          7847:             "\x30\xe0\x37\x13\xe0\x30\xf1\xe0\x46\x12\xe0\x40\xf2"
        !          7848:             "\xe0\x57\xe0\x50\xf2\xe0\x65\xe0\x60\xf1\xe0\x73\xe0"
        !          7849:             "\x71" }  },
        !          7850:       /* --- pixel bitmap for cmr450 char#87 W --- */
        !          7851:       {  87,28463,                      /* character number, location */
        !          7852:          43, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
        !          7853:           { 62,   44, 3,333, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          7854:             "\xf1\x0e\x03\x6e\x03\x8e\x58\xe0\x18\xe0\x18\x87\xe0"
        !          7855:             "\x36\xe0\x44\x50\xf1\x66\xe0\x36\xe0\x52\x60\x67\xe0"
        !          7856:             "\x36\xe0\x42\x60\xf1\x76\xe0\x36\xe0\x32\x70\x76\xe0"
        !          7857:             "\x28\xe0\x22\x70\xf1\x86\xe0\x18\xe0\x12\x80\x86\xe2"
        !          7858:             "\x26\xe2\x80\xf1\x96\xd2\x26\xd2\x90\x96\xc2\x46\xc2"
        !          7859:             "\x90\xf1\xa6\xb2\x46\xb2\xa0\xa6\xa3\x47\xa2\xa0\xf1"
        !          7860:             "\xb6\x92\x66\x92\xb0\xb6\x83\x67\x82\xe0\x87\x72\x86"
        !          7861:             "\x73\xb0\xf1\xc6\x72\x86\x72\xc0\xc7\x52\xa6\x53\xc0"
        !          7862:             "\xf1\xd6\x52\xa6\x52\xd0\xd7\x32\xc6\x42\xd0\xf1\xe6"
        !          7863:             "\x32\xc6\x32\xe0\xe6\x22\xe6\x22\xe0\xf1\xe0\x16\x12"
        !          7864:             "\xe6\x12\xe0\x10\xe0\x18\xe0\x28\xe0\x10\xf1\xe0\x27"
        !          7865:             "\xe0\x27\xe0\x20\xe0\x26\xe0\x46\xe0\x20\xf2\xe0\x35"
        !          7866:             "\xe0\x45\xe0\x30\xf2\xe0\x43\xe0\x63\xe0\x40" }  },
        !          7867:       /* --- pixel bitmap for cmr450 char#88 X --- */
        !          7868:       {  88,29834,                      /* character number, location */
        !          7869:          43, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          7870:           { 45,   43, 3,290, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          7871:             "\xf1\x1e\x04\x8e\x01\x30\x79\xd9\xe0\x17\xe0\x15\xe0"
        !          7872:             "\x47\xe0\x23\xe0\x67\xe0\x12\xe0\x87\xd2\xe0\x97\xc3"
        !          7873:             "\xe0\xa7\xb2\xe0\xc6\xa2\xe0\xd7\x83\xe0\xe7\x72\xe0"
        !          7874:             "\xe0\x26\x62\xe0\xe0\x37\x43\xe0\xe0\x47\x32\xe0\xe0"
        !          7875:             "\x66\x22\xe0\xe0\x7a\xe0\xe0\x88\xe0\xe0\xa6\xe0\xe0"
        !          7876:             "\xb7\xe0\xe0\xb7\xe0\xe0\xb6\xe0\xe0\xa8\xe0\xe0\x99"
        !          7877:             "\xe0\xe0\x72\x26\xe0\xe0\x63\x27\xe0\xe0\x52\x47\xe0"
        !          7878:             "\xe0\x32\x57\xe0\xe0\x23\x67\xe0\xe0\x12\x87\xe0\xd2"
        !          7879:             "\x97\xe0\xc3\xa7\xe0\xb2\xc6\xe0\xa2\xd7\xe0\x83\xe7"
        !          7880:             "\xe0\x72\xe0\x26\xe0\x62\xe0\x37\xe0\x43\xe0\x47\xe0"
        !          7881:             "\x23\xe0\x66\xe0\x15\xe0\x57\xc8\xe0\x39\x6f\x1e\x02"
        !          7882:             "\xbe\x04" }  },
        !          7883:       /* --- pixel bitmap for cmr450 char#89 Y --- */
        !          7884:       {  89,31144,                      /* character number, location */
        !          7885:          43, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          7886:           { 45,   43, 3,195, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          7887:             "\xf1\x0e\x03\xe0\x1d\x59\xe0\x68\x97\xe0\x94\xc7\xe0"
        !          7888:             "\x82\xe7\xe0\x73\xe0\x17\xe0\x62\xe0\x36\xe0\x53\xe0"
        !          7889:             "\x37\xe0\x42\xe0\x57\xe0\x22\xe0\x67\xe0\x13\xe0\x77"
        !          7890:             "\xe2\xe0\x97\xc3\xe0\x97\xc2\xe0\xb7\xa2\xe0\xd6\xa2"
        !          7891:             "\xe0\xd7\x82\xe0\xe0\x17\x63\xe0\xe0\x17\x62\xe0\xe0"
        !          7892:             "\x37\x43\xe0\xe0\x47\x32\xe0\xe0\x57\x22\xe0\xe0\x7a"
        !          7893:             "\xe0\x30\xf1\xe0\x58\xe0\x40\xfe\xe0\x66\xe0\x50\xe0"
        !          7894:             "\x58\xe0\x40\xf1\xee\x04\xd7" }  },
        !          7895:       /* --- pixel bitmap for cmr450 char#90 Z --- */
        !          7896:       {  90,32267,                      /* character number, location */
        !          7897:          43, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          7898:           { 32,   43, 3,225, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          7899:             "\xf1\x2e\x0e\x02\x29\xe6\x36\xe0\x27\x35\xe0\x36\x44"
        !          7900:             "\xe0\x36\x53\xe0\x37\x43\xe0\x46\x53\xe0\x36\x63\xe0"
        !          7901:             "\x27\x62\xe0\x36\x72\xe0\x27\x72\xe0\x26\x82\xe0\x16"
        !          7902:             "\xe0\xb7\xe0\xb6\xe0\xb6\xe0\xb7\xe0\xb6\xe0\xb6\xe0"
        !          7903:             "\xb7\xe0\xb6\xe0\xb7\xe0\xb6\xe0\xb6\xe0\xb7\xe0\xb6"
        !          7904:             "\xe2\x96\xe0\x12\x87\xe0\x12\x86\xe0\x22\x76\xe0\x32"
        !          7905:             "\x67\xe0\x23\x66\xe0\x33\x57\xe0\x33\x56\xe0\x42\x56"
        !          7906:             "\xe0\x43\x47\xe0\x43\x46\xe0\x44\x36\xe0\x45\x27\xe0"
        !          7907:             "\x36\x26\xe0\x19\x1f\x1e\x0e\x03\x12" }  },
        !          7908:       /* --- pixel bitmap for cmr450 char#91 [ --- */
        !          7909:       {  91,111630,                     /* character number, location */
        !          7910:          47, 6,  -16, 6,      /* topleft row,col, and botleft row,col */
        !          7911:           { 10,   63, 3,24, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          7912:             "\xf2\x0a\x0f\xe3\x7f\xe3\x7f\xe3\x7f\xb3\x7f\x2a" }  },
        !          7913:       /* --- pixel bitmap for cmr450 char#92 (noname) --- */
        !          7914:       {  92,131419,                     /* character number, location */
        !          7915:          43, 9,   24, 9,      /* topleft row,col, and botleft row,col */
        !          7916:           { 20,   19, 3,73, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          7917:             "\x61\xb1\x61\xb1\x61\xb1\x61\xb1\x40\xf1\x21\xb1\x50"
        !          7918:             "\xf2\x11\xb1\x6f\x21\xb1\x71\x23\x61\x23\x21\x15\x51"
        !          7919:             "\x15\x1f\x18\x48\x17\x57\x25\x75\x43\x93\x2e" }  },
        !          7920:       /* --- pixel bitmap for cmr450 char#93 ] --- */
        !          7921:       {  93,112404,                     /* character number, location */
        !          7922:          47, 1,  -16, 1,      /* topleft row,col, and botleft row,col */
        !          7923:           { 10,   63, 3,24, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          7924:             "\xf2\x0a\xfe\x73\xfe\x73\xfe\x73\xfb\x73\x0f\x2a" }  },
        !          7925:       /* --- pixel bitmap for cmr450 char#94 \^ --- */
        !          7926:       {  94,118887,                     /* character number, location */
        !          7927:          43, 7,   34, 7,      /* topleft row,col, and botleft row,col */
        !          7928:           { 16,    9, 3,30, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          7929:             "\x81\xe3\xc5\xa3\x13\x83\x33\x63\x53\x43\x73\x23\x93"
        !          7930:             "\x12\xb2" }  },
        !          7931:       /* --- pixel bitmap for cmr450 char#95 (noname) --- */
        !          7932:       {  95,119374,                     /* character number, location */
        !          7933:          43, 5,   36, 5,      /* topleft row,col, and botleft row,col */
        !          7934:           {  7,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          7935:             "\x1c\xdf\xff\xff\xf7\x71\x00" }  },
        !          7936:       /* --- pixel bitmap for cmr450 char#96 (noname) --- */
        !          7937:       {  96,113098,                     /* character number, location */
        !          7938:          43, 4,   24, 4,      /* topleft row,col, and botleft row,col */
        !          7939:           {  8,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          7940:             "\x40\x20\x10\x08\x04\x04\x02\x02\x02\x01\x01\x01\x39"
        !          7941:             "\x7d\xff\xff\xfe\x7c\x38" }  },
        !          7942:       /* --- pixel bitmap for cmr450 char#97 a --- */
        !          7943:       {  97,33499,                      /* character number, location */
        !          7944:          29, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          7945:           { 28,   30, 3,133, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          7946:             "\x77\xe0\x53\x53\xe0\x12\x93\xd2\xb3\xc4\xa3\xa6\x94"
        !          7947:             "\x96\xa3\x80\xf1\x16\xa4\x70\x24\xb4\x70\xf2\xe0\x34"
        !          7948:             "\x70\xc9\xe0\x15\x44\xd4\x74\xb4\x94\xa4\xa4\x95\xa4"
        !          7949:             "\x85\xb4\x85\xb4\x52\x0f\x25\xc4\x52\x0f\x15\xb1\x13"
        !          7950:             "\x52\x15\x91\x23\x52\x24\x81\x43\x32\x45\x42\x66\x86"
        !          7951:             "\x94\x36" }  },
        !          7952:       /* --- pixel bitmap for cmr450 char#98 b --- */
        !          7953:       {  98,34601,                      /* character number, location */
        !          7954:          43, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          7955:           { 31,   44, 3,153, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          7956:             "\x54\xe0\x8f\x19\xe0\x80\x45\xe0\x80\xfa\x54\xe0\x80"
        !          7957:             "\x54\x57\xe0\x14\x32\x63\xd4\x12\xa3\xb6\xc3\xa5\xe3"
        !          7958:             "\x95\xe4\x30\xf1\x54\xe0\x24\x20\x54\xe0\x25\x10\xf1"
        !          7959:             "\x54\xe0\x34\x10\xf6\x54\xe0\x35\xf1\x54\xe0\x34\x10"
        !          7960:             "\x54\xe0\x25\x64\xe0\x24\x74\xe0\x23\x85\xe4\x85\xd4"
        !          7961:             "\x93\x12\xc3\xa3\x22\x94\xb2\x52\x54\xe0\x86\xb0" }  },
        !          7962:       /* --- pixel bitmap for cmr450 char#99 c --- */
        !          7963:       {  99,35480,                      /* character number, location */
        !          7964:          29, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          7965:           { 24,   30, 3,95, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          7966:             "\xa8\xe3\x63\xa3\xa3\x73\xd2\x54\xb4\x10\xf1\x34\xb6"
        !          7967:             "\xf1\x24\xc6\x15\xd4\x24\xe0\x5f\x75\xe0\x50\xf1\x14"
        !          7968:             "\xe0\x50\x15\xe0\x40\xf1\x24\xe0\x22\x34\xe2\x54\xd2"
        !          7969:             "\x63\xc2\x83\xa2\xb3\x62\xe0\x17\x71" }  },
        !          7970:       /* --- pixel bitmap for cmr450 char#100 d --- */
        !          7971:       { 100,36539,                      /* character number, location */
        !          7972:          43, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          7973:           { 31,   44, 3,155, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          7974:             "\xe0\x84\x50\xf1\xe0\x39\x50\xe0\x75\x50\xfa\xe0\x84"
        !          7975:             "\x50\xb6\x54\xd4\x53\x24\xb4\x92\x14\xa3\xc6\x94\xd5"
        !          7976:             "\x84\xe0\x14\x83\xe0\x24\x74\xe0\x24\x65\xe0\x24\x50"
        !          7977:             "\xf1\x14\xe0\x34\x5f\x65\xe0\x34\x50\xf1\x14\xe0\x34"
        !          7978:             "\x50\x15\xe0\x24\x50\xf1\x24\xe0\x24\x50\x34\xe5\x93"
        !          7979:             "\xe5\xa3\xc1\x15\xa3\xa1\x29\x83\x62\x39\xa7\x54\x52" }  },
        !          7980:       /* --- pixel bitmap for cmr450 char#101 e --- */
        !          7981:       { 101,37405,                      /* character number, location */
        !          7982:          29, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          7983:           { 24,   30, 3,117, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          7984:             "\xa6\xe0\x13\x54\xb3\x83\x93\xa3\x73\xb4\x54\xc3\x20"
        !          7985:             "\xf1\x24\xd4\x10\x15\xe3\x10\xf1\x14\xe0\x14\x0f\x15"
        !          7986:             "\xe0\x14\x0e\x0a\x0f\x45\xe0\x50\xf1\x14\xe0\x50\x15"
        !          7987:             "\xe0\x64\xe0\x22\x33\xe0\x22\x34\xe2\x53\xe2\x63\xc2"
        !          7988:             "\x83\xa2\xb3\x62\xe0\x17\x74" }  },
        !          7989:       /* --- pixel bitmap for cmr450 char#102 f --- */
        !          7990:       { 102,38322,                      /* character number, location */
        !          7991:          44, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          7992:           { 22,   44, 3,67, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          7993:             "\xd6\xe3\x42\xb3\x54\x94\x46\x83\x56\x74\x56\x73\x74"
        !          7994:             "\x74\x82\x20\xf8\x64\xcf\x1e\x03\x50\xfe\x64\xc0\xf6"
        !          7995:             "\x64\xc0\x56\xb0\xf1\x1e\x01\x60" }  },
        !          7996:       /* --- pixel bitmap for cmr450 char#103 g --- */
        !          7997:       { 103,39625,                      /* character number, location */
        !          7998:          28, 2,  -14, 2,      /* topleft row,col, and botleft row,col */
        !          7999:           { 28,   42, 3,171, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          8000:             "\x96\x75\x83\x43\x32\x24\x53\x84\x44\x43\xa3\x44\x34"
        !          8001:             "\xa4\x42\x43\xc3\x70\xf5\x24\xc4\x60\x33\xc3\xa4\xa4"
        !          8002:             "\xb3\xa3\xd3\x83\xd1\x23\x43\xe0\x11\x46\xe0\x22\xe0"
        !          8003:             "\xc1\xe0\xa0\xf2\x32\xe0\x90\x33\xe0\xce\x01\xee\x03"
        !          8004:             "\xce\x04\x82\xd6\x53\xe0\x34\x33\xe0\x53\x33\xe0\x54"
        !          8005:             "\x1f\x43\xe0\x73\x10\x13\xe0\x53\x42\xe0\x52\x63\xe0"
        !          8006:             "\x13\x83\xd3\xb4\x74\xe0\x29\xa0" }  },
        !          8007:       /* --- pixel bitmap for cmr450 char#104 h --- */
        !          8008:       { 104,40710,                      /* character number, location */
        !          8009:          43, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          8010:           { 31,   43, 3,92, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          8011:             "\x54\xe0\x8f\x19\xe0\x80\x45\xe0\x80\xfa\x54\xe0\x80"
        !          8012:             "\x54\x66\xe0\x14\x42\x53\xd4\x31\x83\xc4\x21\x94\xb4"
        !          8013:             "\x11\xb3\x60\xf2\x55\xc4\x50\xfe\x54\xd4\x50\xf1\x54"
        !          8014:             "\xd4\x50\x46\xb6\x4f\x1e\x3e" }  },
        !          8015:       /* --- pixel bitmap for cmr450 char#105 i --- */
        !          8016:       { 105,41525,                      /* character number, location */
        !          8017:          43, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          8018:           { 13,   43, 3,52, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          8019:             "\x53\x95\x40\xf2\x37\x30\x45\x93\x50\xf7\xd0\x54\x4f"
        !          8020:             "\x19\x40\x45\x40\xfe\x54\x40\xf5\x54\x40\x45\x4f\x1d" }  },
        !          8021:       /* --- pixel bitmap for cmr450 char#106 j --- */
        !          8022:       { 106,42379,                      /* character number, location */
        !          8023:          43,-3,  -13,-3,      /* topleft row,col, and botleft row,col */
        !          8024:           { 16,   56, 3,65, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          8025:             "\xb3\xc5\x10\xf2\x97\xa5\xc3\x20\xf7\xe0\x20\xb5\xf1"
        !          8026:             "\x79\xb5\xfe\xc4\xfd\xc4\x14\x7a\x6a\x63\x16\x54\x15"
        !          8027:             "\x63\x33\x63\x53\x43\x86\x60" }  },
        !          8028:       /* --- pixel bitmap for cmr450 char#107 k --- */
        !          8029:       { 107,43571,                      /* character number, location */
        !          8030:          43, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          8031:           { 30,   43, 3,156, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          8032:             "\x54\xe0\x7f\x19\xe0\x70\x45\xe0\x70\xfb\x54\xe0\x70"
        !          8033:             "\xf1\x54\x8c\x10\x54\x98\x94\xa4\xc4\xa3\xd4\x93\xe4"
        !          8034:             "\x82\xe0\x24\x72\xe0\x34\x62\xe0\x44\x43\xe0\x54\x34"
        !          8035:             "\xe0\x54\x25\xe0\x54\x13\x13\xe0\x47\x24\xe0\x35\x54"
        !          8036:             "\xe0\x24\x73\xe0\x24\x83\xe0\x14\x84\xe4\x93\xe4\xa3"
        !          8037:             "\xd4\xa4\xc4\xb3\xc4\xc3\xb4\xc4\x96\xb5\x4f\x1e\x5b" }  },
        !          8038:       /* --- pixel bitmap for cmr450 char#108 l --- */
        !          8039:       { 108,44284,                      /* character number, location */
        !          8040:          43, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          8041:           { 14,   43, 3,36, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          8042:             "\x54\x5f\x19\x50\x45\x50\xfe\x54\x50\xfe\x54\x50\xf5"
        !          8043:             "\x54\x50\x46\x4f\x1e" }  },
        !          8044:       /* --- pixel bitmap for cmr450 char#109 m --- */
        !          8045:       { 109,45649,                      /* character number, location */
        !          8046:          28, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          8047:           { 48,   28, 3,92, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          8048:             "\x54\x66\xb6\xa9\x42\x53\x72\x53\x89\x31\x83\x51\x83"
        !          8049:             "\xb5\x21\x94\x31\x94\xb4\x11\xb3\x21\xb3\x60\xf2\x55"
        !          8050:             "\xc5\xc4\x50\xfe\x54\xd4\xd4\x50\xf1\x54\xd4\xd4\x50"
        !          8051:             "\x46\xb6\xb6\x4f\x1e\x3e\x3e" }  },
        !          8052:       /* --- pixel bitmap for cmr450 char#110 n --- */
        !          8053:       { 110,46758,                      /* character number, location */
        !          8054:          28, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          8055:           { 31,   28, 3,64, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          8056:             "\x54\x66\xa9\x42\x53\x89\x31\x83\xb5\x21\x94\xb4\x11"
        !          8057:             "\xb3\x60\xf2\x55\xc4\x50\xfe\x54\xd4\x50\xf1\x54\xd4"
        !          8058:             "\x50\x46\xb6\x4f\x1e\x3e" }  },
        !          8059:       /* --- pixel bitmap for cmr450 char#111 o --- */
        !          8060:       { 111,47535,                      /* character number, location */
        !          8061:          29, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          8062:           { 27,   30, 3,109, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          8063:             "\xa7\xe0\x43\x53\xe3\x93\xb3\xb3\x93\xd3\x74\xd4\x63"
        !          8064:             "\xe0\x13\x54\xe0\x14\x35\xe0\x15\x10\xf1\x14\xe0\x34"
        !          8065:             "\x1f\x85\xe0\x35\x14\xe0\x34\x25\xe0\x15\x10\xf1\x24"
        !          8066:             "\xe0\x14\x20\x34\xd4\x73\xd3\x93\xb3\xb3\x93\xd4\x54"
        !          8067:             "\xe0\x37\xa3" }  },
        !          8068:       /* --- pixel bitmap for cmr450 char#112 p --- */
        !          8069:       { 112,48681,                      /* character number, location */
        !          8070:          28, 2,  -12, 2,      /* topleft row,col, and botleft row,col */
        !          8071:           { 31,   40, 3,147, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          8072:             "\x54\x57\xa9\x32\x63\x89\x12\x94\xa7\xb4\xa5\xd4\x95"
        !          8073:             "\xe4\x84\xe0\x15\x74\xe0\x24\x20\xf1\x54\xe0\x25\x10"
        !          8074:             "\x54\xe0\x34\x10\xf6\x54\xe0\x35\x54\xe0\x34\x10\xf1"
        !          8075:             "\x54\xe0\x25\x10\x54\xe0\x24\x74\xe0\x14\x85\xe4\x85"
        !          8076:             "\xd4\x96\xb4\xa4\x12\x94\xb4\x32\x54\xd4\x56\xb0\xf7"
        !          8077:             "\x54\xe0\x80\x46\xe0\x7f\x1e\xe0\x36" }  },
        !          8078:       /* --- pixel bitmap for cmr450 char#113 q --- */
        !          8079:       { 113,49809,                      /* character number, location */
        !          8080:          28, 2,  -12, 2,      /* topleft row,col, and botleft row,col */
        !          8081:           { 31,   40, 3,156, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          8082:             "\xb6\x72\xd4\x52\x52\xb4\x91\x33\xa4\xb1\x23\x94\xc2"
        !          8083:             "\x13\x50\xf1\x34\xe5\x50\x24\xe0\x24\x50\xf1\x15\xe0"
        !          8084:             "\x24\x50\x14\xe0\x34\x5f\x65\xe0\x34\x50\x14\xe0\x34"
        !          8085:             "\x50\xf1\x15\xe0\x24\x50\x24\xe0\x24\x75\xe0\x14\x84"
        !          8086:             "\xe5\x94\xc6\xa4\xb1\x14\xb4\x82\x24\xd3\x62\x34\xe0"
        !          8087:             "\x17\x54\x50\xf7\xe0\x84\x50\xe0\x76\x40\xf1\xe0\x3e" }  },
        !          8088:       /* --- pixel bitmap for cmr450 char#114 r --- */
        !          8089:       { 114,50772,                      /* character number, location */
        !          8090:          28, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          8091:           { 21,   28, 3,65, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          8092:             "\x44\x65\x28\x42\x33\x18\x31\x45\x44\x21\x55\x53\x21"
        !          8093:             "\x55\x53\x11\x73\x10\xf1\x53\x11\xb0\xfe\x54\xc0\xf1"
        !          8094:             "\x54\xc0\x46\xbf\x1e\x01\x65" }  },
        !          8095:       /* --- pixel bitmap for cmr450 char#115 s --- */
        !          8096:       { 115,51763,                      /* character number, location */
        !          8097:          29, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          8098:           { 21,   30, 3,109, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          8099:             "\x68\x41\x63\x62\x22\x43\xa4\x42\xc3\x32\xd3\x23\xd3"
        !          8100:             "\x2f\x13\xe2\x2f\x14\xd2\x20\x15\xe0\x28\xec\xad\xad"
        !          8101:             "\xac\xe7\xe0\x35\x12\xe7\xe0\x16\xe0\x23\x0f\x23\xe0"
        !          8102:             "\x13\x04\xe2\x14\xd3\x15\xc2\x23\x12\xa2\x32\x33\x63"
        !          8103:             "\x41\x68\x66" }  },
        !          8104:       /* --- pixel bitmap for cmr450 char#116 t --- */
        !          8105:       { 116,52666,                      /* character number, location */
        !          8106:          38, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
        !          8107:           { 20,   39, 3,63, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          8108:             "\xf3\x82\xa0\xf2\x73\xa0\xf1\x64\xa0\x55\xe6\xde\x02"
        !          8109:             "\x1e\x05\x10\xfd\x64\xa0\xf6\x64\x82\x73\x81\x84\x62"
        !          8110:             "\x93\x61\xb3\x41\xe5\x47" }  },
        !          8111:       /* --- pixel bitmap for cmr450 char#117 u --- */
        !          8112:       { 117,53655,                      /* character number, location */
        !          8113:          28, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          8114:           { 31,   29, 3,71, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          8115:             "\x54\xd4\x5f\x19\x89\x50\x45\xc5\x50\xfe\x54\xd4\x50"
        !          8116:             "\xf2\x54\xd4\x50\xf1\x54\xc5\x50\x63\xb1\x14\xb4\xa1"
        !          8117:             "\x15\xb3\x91\x29\x84\x52\x39\xa7\x54\x53" }  },
        !          8118:       /* --- pixel bitmap for cmr450 char#118 v --- */
        !          8119:       { 118,54631,                      /* character number, location */
        !          8120:          27, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
        !          8121:           { 31,   28, 3,99, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          8122:             "\xf1\x0d\x7b\x46\xc6\x84\xe4\x94\xe3\x50\xf1\x64\xd2"
        !          8123:             "\x60\x65\xb3\x60\xf1\x74\xb2\x70\xf1\x84\x92\x80\x84"
        !          8124:             "\x83\x80\xf1\x94\x72\x90\xf2\xa4\x52\xa0\xf1\xb4\x32"
        !          8125:             "\xb0\xf2\xc4\x12\xc0\xf2\xd5\xd0\xf1\xe3\xe2" }  },
        !          8126:       /* --- pixel bitmap for cmr450 char#119 w --- */
        !          8127:       { 119,55963,                      /* character number, location */
        !          8128:          27, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
        !          8129:           { 43,   28, 3,205, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          8130:             "\xf1\x0c\x3c\x5b\x45\xa5\xa6\x75\xb3\xc4\x40\xf1\x54"
        !          8131:             "\xb4\xc2\x50\x55\xa4\xb3\xb4\xa5\xa2\xc4\x92\x13\xa2"
        !          8132:             "\xc5\x82\x13\x93\xd4\x82\x14\x82\xe4\x72\x33\x82\xe5"
        !          8133:             "\x62\x33\x73\xe0\x14\x62\x34\x62\xe0\x24\x52\x53\x62"
        !          8134:             "\xe0\x34\x42\x53\x52\xe0\x44\x42\x54\x42\xe0\x44\x32"
        !          8135:             "\x73\x42\xe0\x54\x22\x73\x32\xe0\x64\x22\x74\x22\xe0"
        !          8136:             "\x64\x12\x93\x22\xe0\x76\x93\x12\xe0\x86\x96\xe0\x85"
        !          8137:             "\xb5\xb0\xf1\xc4\xb4\xc0\xc3\xd3\xe0\xb2\xd2\xd7" }  },
        !          8138:       /* --- pixel bitmap for cmr450 char#120 x --- */
        !          8139:       { 120,57084,                      /* character number, location */
        !          8140:          27, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          8141:           { 31,   27, 3,130, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          8142:             "\xf1\x0c\x7b\x10\x56\x97\xa4\xb4\xd4\xa2\xe0\x15\x83"
        !          8143:             "\xe0\x24\x73\xe0\x44\x53\xe0\x64\x42\xe0\x75\x22\xe0"
        !          8144:             "\x94\x13\xe0\xa6\xe0\xc4\xe0\xe4\xe0\xc6\xe0\xa7\xe0"
        !          8145:             "\x93\x24\xe0\x82\x44\xe0\x62\x55\xe0\x42\x74\xe0\x33"
        !          8146:             "\x84\xe0\x13\xa4\xe2\xc4\xb4\xc5\x87\xb6\x4f\x1b\x8c" }  },
        !          8147:       /* --- pixel bitmap for cmr450 char#121 y --- */
        !          8148:       { 121,58237,                      /* character number, location */
        !          8149:          27, 1,  -13, 1,      /* topleft row,col, and botleft row,col */
        !          8150:           { 31,   40, 3,167, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          8151:             "\xf1\x0d\x7b\x46\xc6\x84\xe4\x94\xe3\x50\xf1\x64\xd2"
        !          8152:             "\x60\xf1\x74\xb2\x70\x74\xa3\x70\xf1\x84\x92\x80\xf1"
        !          8153:             "\x94\x72\x90\x95\x53\x90\xf1\xa4\x52\xa0\xf1\xb4\x32"
        !          8154:             "\xb0\xb5\x13\xb0\xf1\xc4\x12\xc0\xf2\xd5\xd0\xf1\xe3"
        !          8155:             "\xe0\xf1\xe2\xe0\x10\xd3\xe0\xe2\xe0\x42\x92\xe0\x2f"
        !          8156:             "\x16\x62\xe0\x3f\x16\x52\xe0\x45\x52\xe0\x62\x62\xe0"
        !          8157:             "\x82\x42\xe0\xb4\xe0\x96" }  },
        !          8158:       /* --- pixel bitmap for cmr450 char#122 z --- */
        !          8159:       { 122,59292,                      /* character number, location */
        !          8160:          27, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          8161:           { 23,   27, 3,111, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          8162:             "\x2e\x07\x25\xb4\x33\xc5\x33\xc4\x42\xc4\x43\xb4\x52"
        !          8163:             "\xb5\x52\xb4\x62\xa4\x72\x95\xe0\x44\xe0\x44\xe0\x44"
        !          8164:             "\xe0\x45\xe0\x44\xe0\x44\xe0\x44\xa2\x65\xa2\x64\xb2"
        !          8165:             "\x54\xc2\x45\xb3\x44\xc2\x44\xd2\x34\xd3\x25\xc4\x24"
        !          8166:             "\xb6\x1e\x08\x10" }  },
        !          8167:       /* --- pixel bitmap for cmr450 char#123 (noname) --- */
        !          8168:       { 123,132087,                     /* character number, location */
        !          8169:          17, 0,   16, 0,      /* topleft row,col, and botleft row,col */
        !          8170:           { 31,    1, 2, 2, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          8171:             "\x00\x1f" }  },
        !          8172:       /* --- pixel bitmap for cmr450 char#124 (noname) --- */
        !          8173:       { 124,132907,                     /* character number, location */
        !          8174:          17, 0,   16, 0,      /* topleft row,col, and botleft row,col */
        !          8175:           { 62,    1, 2, 2, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          8176:             "\x00\x3e" }  },
        !          8177:       /* --- pixel bitmap for cmr450 char#125 (noname) --- */
        !          8178:       { 125,120061,                     /* character number, location */
        !          8179:          43, 8,   32, 8,      /* topleft row,col, and botleft row,col */
        !          8180:           { 18,   11, 3,43, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          8181:             "\x53\x73\xf1\x44\x64\xf1\x34\x64\x10\x24\x64\x43\x73"
        !          8182:             "\x30\xf1\x13\x73\x43\x73\x52\x82\x62" }  },
        !          8183:       /* --- pixel bitmap for cmr450 char#126 \~ --- */
        !          8184:       { 126,120773,                     /* character number, location */
        !          8185:          42, 5,   36, 5,      /* topleft row,col, and botleft row,col */
        !          8186:           { 21,    6, 3,29, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          8187:             "\x54\xb1\x46\x91\x42\x34\x61\x41\x64\x32\x41\x96\x41"
        !          8188:             "\xb4\x51" }  },
        !          8189:       /* --- pixel bitmap for cmr450 char#127 (noname) --- */
        !          8190:       { 127,121472,                     /* character number, location */
        !          8191:          43, 6,   36, 6,      /* topleft row,col, and botleft row,col */
        !          8192:           { 19,    7, 3,23, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          8193:             "\x23\x93\x35\x75\x1f\x27\x57\x15\x75\x33\x93\x26" }  },
        !          8194:       /* --- trailer  --- */
        !          8195:       { -99, -999,  0,0,0,0, { 0,0,0,0, (pixbyte *)"\0" }  }
        !          8196:    } ;
        !          8197: 
        !          8198: 
        !          8199: /* --- size=10 for .600gf ---
        !          8200:  * mf '\mode=preview; mag=magstep(-8.04680493988053835544); input cmr10'
        !          8201:  * --------------------------------------------------------------------- */
        !          8202: /* --- fontdef for cmr600 --- */
        !          8203: static	chardef  cmr600[] =
        !          8204:    {
        !          8205:       /* --- pixel bitmap for cmr600 char#0 \Gamma --- */
        !          8206:       {   0,62764,                      /* character number, location */
        !          8207:          57, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          8208:           { 47,   57, 3,125, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          8209:             "\xf2\x0e\x0e\x0e\x03\x20\x89\xe0\x59\xb7\xe0\x96\xb7"
        !          8210:             "\xe0\xa6\xa7\xe0\xb5\xa7\xe0\xc4\x10\xf1\x97\xe0\xd3"
        !          8211:             "\x10\xf3\x97\xe0\xe2\x10\x97\xe0\xe3\xf3\x97\xe0\xe0"
        !          8212:             "\x12\xfe\x97\xe0\xe0\x30\xfe\x97\xe0\xe0\x30\xf3\x97"
        !          8213:             "\xe0\xe0\x30\x8a\xe0\xe0\x1f\x2e\x0d\xe0\x62" }  },
        !          8214:       /* --- pixel bitmap for cmr600 char#1 \Delta --- */
        !          8215:       {   1,63777,                      /* character number, location */
        !          8216:          60, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          8217:           { 61,   60, 2,224, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          8218:             "\xff\x01\x1d\x03\x1d\x00\xff\x01\x1c\x05\x1c\x00\xff"
        !          8219:             "\x01\x1b\x07\x1b\x00\xff\x01\x1a\x09\x1a\x00\x19\x02"
        !          8220:             "\x01\x08\x32\x02\x02\x07\x31\x02\x03\x08\x30\x02\x04"
        !          8221:             "\x07\x2f\x02\x05\x08\x2e\x02\x06\x07\x2d\x02\x07\x08"
        !          8222:             "\x2c\x02\x08\x07\x2b\x02\x09\x08\x2a\x02\x0a\x07\x29"
        !          8223:             "\x02\x0b\x08\x28\x02\x0c\x07\x27\x02\x0d\x08\x26\x02"
        !          8224:             "\x0e\x07\x25\x02\x0f\x08\x24\x02\x10\x07\x23\x02\x11"
        !          8225:             "\x08\x22\x02\x12\x07\x21\x02\x13\x08\x20\x02\x14\x07"
        !          8226:             "\x1f\x02\x15\x08\x1e\x02\x16\x07\x1d\x02\x17\x08\x1c"
        !          8227:             "\x02\x18\x07\x1b\x02\x19\x08\x1a\x02\x1a\x07\x19\x02"
        !          8228:             "\x1b\x08\x18\x02\x1c\x07\x17\x02\x1d\x08\x16\x02\x1e"
        !          8229:             "\x07\x15\x02\x1f\x08\x14\x02\x20\x07\x0a\x00\xff\x01"
        !          8230:             "\x09\x02\x21\x08\x09\x00\xff\x01\x08\x02\x23\x08\x08"
        !          8231:             "\x00\xff\x01\x07\x02\x25\x08\x07\x00\xff\x01\x06\x02"
        !          8232:             "\x27\x08\x06\x00\xff\x01\x05\x02\x29\x08\x05\x00\xff"
        !          8233:             "\x01\x04\x02\x2b\x08\x04\x00\xff\x01\x03\x02\x2d\x08"
        !          8234:             "\x03\x00\xff\x01\x02\x39\x02\x00\xff\x01\x01\x3b\x01"
        !          8235:             "\xff\x01\x3d" }  },
        !          8236:       /* --- pixel bitmap for cmr600 char#2 \Theta --- */
        !          8237:       {   2,65070,                      /* character number, location */
        !          8238:          59, 5,   -2, 5,      /* topleft row,col, and botleft row,col */
        !          8239:           { 55,   61, 3,381, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          8240:             "\xe0\x99\xe0\xe0\xee\x03\xe0\xe0\x87\x77\xe0\xe0\x46"
        !          8241:             "\xd6\xe0\xe7\xe0\x17\xe0\xb6\xe0\x56\xe0\x96\xe0\x76"
        !          8242:             "\xe0\x67\xe0\x97\xe0\x46\xe0\xb6\xe0\x36\xe0\xd6\xe0"
        !          8243:             "\x17\xe0\xd7\xd7\xe0\xe0\x17\xb8\xe0\xe0\x18\xa7\xe0"
        !          8244:             "\xe0\x37\x98\xe0\xe0\x38\x87\xe0\xe0\x57\x40\xf1\x38"
        !          8245:             "\xe0\xe0\x58\x30\xf2\x28\xe0\xe0\x78\x20\xf1\x19\xe0"
        !          8246:             "\xe0\x79\x10\x18\xe0\xe0\x98\x28\x62\xe0\x72\x68\x1f"
        !          8247:             "\x19\x62\xe0\x72\x69\x0f\x59\x6e\x0b\x69\x0f\x29\x62"
        !          8248:             "\xe0\x72\x69\x09\xe0\xe0\x99\x18\xe0\xe0\x98\x10\xf2"
        !          8249:             "\x19\xe0\xe0\x79\x10\xf1\x28\xe0\xe0\x78\x20\xf2\x38"
        !          8250:             "\xe0\xe0\x58\x30\x48\xe0\xe0\x38\x97\xe0\xe0\x37\xa8"
        !          8251:             "\xe0\xe0\x18\xb7\xe0\xe0\x17\x60\xf1\x77\xe0\xd7\x70"
        !          8252:             "\x87\xe0\xb7\xe0\x37\xe0\x97\xe0\x57\xe0\x77\xe0\x86"
        !          8253:             "\xe0\x56\xe0\xb6\xe0\x36\xe0\xe6\xd6\xe0\xe0\x47\x77"
        !          8254:             "\xe0\xe0\x8e\x03\xe0\xe0\xe9\xe0\x92" }  },
        !          8255:       /* --- pixel bitmap for cmr600 char#3 \Lambda --- */
        !          8256:       {   3,66270,                      /* character number, location */
        !          8257:          60, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          8258:           { 52,   60, 3,352, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          8259:             "\xe0\xb2\xe0\xb0\xf2\xe0\xa4\xe0\xa0\xf3\xe0\x96\xe0"
        !          8260:             "\x90\xf2\xe0\x88\xe0\x80\xe0\x7a\xe0\x70\xf1\xe0\x72"
        !          8261:             "\x17\xe0\x70\xe0\x62\x28\xe0\x60\xf1\xe0\x62\x37\xe0"
        !          8262:             "\x60\xe0\x52\x48\xe0\x50\xf1\xe0\x52\x57\xe0\x50\xe0"
        !          8263:             "\x42\x68\xe0\x40\xf1\xe0\x42\x77\xe0\x40\xe0\x32\x88"
        !          8264:             "\xe0\x30\xf1\xe0\x32\x97\xe0\x30\xe0\x22\xa8\xe0\x20"
        !          8265:             "\xf1\xe0\x22\xb7\xe0\x20\xe0\x12\xc8\xe0\x10\xf1\xe0"
        !          8266:             "\x12\xd7\xe0\x10\xe2\xe8\xe0\xf1\xe2\xe0\x17\xe0\xd2"
        !          8267:             "\xe0\x28\xd0\xf1\xd2\xe0\x37\xd0\xc2\xe0\x48\xc0\xf1"
        !          8268:             "\xc2\xe0\x57\xc0\xb3\xe0\x58\xb0\xf1\xb2\xe0\x77\xb0"
        !          8269:             "\xa3\xe0\x78\xa0\xf1\xa2\xe0\x97\xa0\x93\xe0\x98\x90"
        !          8270:             "\xf1\x92\xe0\xb7\x90\x83\xe0\xb8\xe0\x22\xe0\xc8\xe0"
        !          8271:             "\x22\xe0\xd7\x80\xf1\x73\xe0\xd8\x70\x56\xe0\xc8\xaa"
        !          8272:             "\xe0\x9b\x5f\x2e\x02\xee\x08" }  },
        !          8273:       /* --- pixel bitmap for cmr600 char#4 \Xi --- */
        !          8274:       {   4,67807,                      /* character number, location */
        !          8275:          57, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          8276:           { 49,   57, 3,147, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          8277:             "\xf5\x2e\x0e\x0e\x03\x20\x22\xe0\xe0\xd2\x20\xf1\x13"
        !          8278:             "\xe0\xe0\xd3\x10\xf3\x12\xe0\xe0\xe0\x12\x10\xf6\xe0"
        !          8279:             "\xe0\xe0\x70\xf3\x82\xe0\xe0\x12\x80\xf5\x8e\x0e\x05"
        !          8280:             "\x80\xf3\x82\xe0\xe0\x12\x80\xf8\xe0\xe0\xe0\x7f\x42"
        !          8281:             "\xe0\xe0\xe0\x32\x0f\x13\xe0\xe0\xe0\x13\x12\xe0\xe0"
        !          8282:             "\xe0\x12\x10\xf5\x1e\x0e\x0e\x05\x10" }  },
        !          8283:       /* --- pixel bitmap for cmr600 char#5 \Pi --- */
        !          8284:       {   5,69122,                      /* character number, location */
        !          8285:          57, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          8286:           { 58,   57, 2,28, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          8287:             "\xff\x02\x00\x3a\x08\x08\x1a\x08\x08\x00\xff\x30\x09"
        !          8288:             "\x07\x1a\x07\x09\x00\x08\x09\x18\x09\x08\xff\x02\x19"
        !          8289:             "\x08\x19" }  },
        !          8290:       /* --- pixel bitmap for cmr600 char#6 \Sigma --- */
        !          8291:       {   6,70413,                      /* character number, location */
        !          8292:          57, 5,    0, 5,      /* topleft row,col, and botleft row,col */
        !          8293:           { 50,   57, 2,181, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          8294:             "\xff\x02\x00\x30\x02\x00\x01\x08\x1b\x0c\x03\x09\x1e"
        !          8295:             "\x08\x04\x09\x1f\x07\x04\x09\x1f\x06\x04\x09\x20\x05"
        !          8296:             "\x05\x09\x20\x04\x06\x09\x20\x03\x07\x08\x20\x03\x07"
        !          8297:             "\x09\x1f\x03\x08\x09\x1f\x02\x09\x08\x1f\x02\x09\x09"
        !          8298:             "\x1e\x03\x09\x09\x1e\x02\xff\x01\x0a\x09\x1d\x02\x0b"
        !          8299:             "\x09\x1c\x02\x0c\x09\x2a\x08\x2a\x09\x2a\x09\x2a\x08"
        !          8300:             "\x2a\x09\x2a\x09\x19\x00\xff\x01\x11\x09\x18\x00\x12"
        !          8301:             "\x09\x2a\x07\x2c\x05\x2d\x04\x2f\x02\x2f\x03\x2e\x03"
        !          8302:             "\x2e\x03\x2e\x03\x2e\x03\x1d\x02\x0f\x03\x1e\x02\x0e"
        !          8303:             "\x03\x1f\x02\x0d\x03\x20\x02\x0d\x02\x20\x03\x0c\x03"
        !          8304:             "\x20\x02\x0c\x03\x21\x02\x0b\x03\x21\x03\x0a\x03\x22"
        !          8305:             "\x03\x09\x03\x23\x03\x08\x03\x23\x04\x07\x03\x23\x05"
        !          8306:             "\x06\x03\x23\x06\x05\x03\x23\x07\x05\x02\x22\x09\x04"
        !          8307:             "\x03\x1e\x0c\x04\x2e\x03\x2f\x02\xff\x01\x30\x02" }  },
        !          8308:       /* --- pixel bitmap for cmr600 char#7 \Upsilon --- */
        !          8309:       {   7,71641,                      /* character number, location */
        !          8310:          59, 5,    0, 5,      /* topleft row,col, and botleft row,col */
        !          8311:           { 55,   59, 3,217, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          8312:             "\x77\xe0\xd7\xcc\xe0\x7c\x9e\xe0\x5e\x7e\x03\xe0\x1e"
        !          8313:             "\x03\x6e\x04\xde\x04\x5e\x06\xbe\x06\x3e\x07\xbe\x07"
        !          8314:             "\x25\x89\x99\x85\x24\xb8\x78\xb4\x14\xe6\x76\xe7\xe0"
        !          8315:             "\x26\x56\xe0\x25\xe0\x36\x56\xe0\x34\xe0\x45\x55\xe0"
        !          8316:             "\x44\xe0\x55\x35\xe0\x52\xe0\x75\x35\xe0\xe0\xe0\x14"
        !          8317:             "\x34\xe0\x80\xf1\xe0\x85\x15\xe0\x80\xf2\xe0\x94\x14"
        !          8318:             "\xe0\x90\xf1\xe0\x99\xe0\x90\xfe\xe0\xa7\xe0\xa0\xfe"
        !          8319:             "\xe0\xa7\xe0\xa0\xf1\xe0\xa7\xe0\xa0\xe0\x8b\xe0\x80"
        !          8320:             "\xf2\xde\x0e\x01\xd0" }  },
        !          8321:       /* --- pixel bitmap for cmr600 char#8 \Phi --- */
        !          8322:       {   8,72819,                      /* character number, location */
        !          8323:          57, 5,    0, 5,      /* topleft row,col, and botleft row,col */
        !          8324:           { 50,   57, 3,233, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          8325:             "\xf2\xbe\x0e\x01\xa0\xe0\x6b\xe0\x50\xf7\xe0\x87\xe0"
        !          8326:             "\x70\xe0\x5c\xe0\xe0\x5e\x08\xe0\xc8\x27\x18\xe0\x87"
        !          8327:             "\x57\x47\xe0\x47\x77\x67\xe7\x97\x87\xb7\xa7\x97\x97"
        !          8328:             "\xb7\xa7\x78\xb7\xa8\x30\xf1\x28\xc7\xb8\x20\x19\xc7"
        !          8329:             "\xb9\x28\xd7\xc8\x1f\x69\xd7\xc9\x18\xd7\xc8\x29\xc7"
        !          8330:             "\xb9\x10\xf1\x28\xc7\xb8\x20\x38\xb7\xa8\x77\xb7\xa7"
        !          8331:             "\x97\xa7\x97\xb7\x97\x87\xe7\x77\x67\xe0\x47\x57\x47"
        !          8332:             "\xe0\x88\x27\x18\xe0\xce\x08\xe0\xe0\x5c\xe0\x50\xf7"
        !          8333:             "\xe0\x87\xe0\x70\xe0\x6b\xe0\x50\xf2\xbe\x0e\x01\xa0" }  },
        !          8334:       /* --- pixel bitmap for cmr600 char#9 \Psi --- */
        !          8335:       {   9,74112,                      /* character number, location */
        !          8336:          57, 5,    0, 5,      /* topleft row,col, and botleft row,col */
        !          8337:           { 55,   57, 3,215, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          8338:             "\xf2\xde\x0e\x01\xd0\xe0\x8b\xe0\x80\xf6\xe0\xa7\xe0"
        !          8339:             "\xa8\xe0\x27\xe0\x2e\x04\xe7\xea\x37\xe7\xe7\x68\xd7"
        !          8340:             "\xd8\x77\xd7\xd7\x88\xc7\xc8\x40\xfb\x57\xc7\xc7\x50"
        !          8341:             "\xf2\x67\xb7\xb7\x60\x76\xb7\xb6\x70\xf1\x77\xa7\xa7"
        !          8342:             "\x70\x87\x97\x97\xe0\x36\x97\x96\xe0\x47\x87\x87\xe0"
        !          8343:             "\x57\x77\x77\xe0\x77\x67\x67\xe0\x97\x57\x57\xe0\xc7"
        !          8344:             "\x37\x37\xe0\xe0\x27\x17\x17\xe0\xe0\x6e\x05\xe0\xe0"
        !          8345:             "\xcb\xe0\x80\xf7\xe0\xa7\xe0\xa0\xe0\x8b\xe0\x80\xf2"
        !          8346:             "\xde\x0e\x01\xd0" }  },
        !          8347:       /* --- pixel bitmap for cmr600 char#10 \Omega --- */
        !          8348:       {  10,75455,                      /* character number, location */
        !          8349:          59, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          8350:           { 52,   59, 3,347, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          8351:             "\xe0\x7a\xe0\xe0\xae\x04\xe0\xe0\x38\x88\xe0\xc7\xe7"
        !          8352:             "\xe0\x97\xe0\x27\xe0\x67\xe0\x67\xe0\x37\xe0\x87\xe0"
        !          8353:             "\x17\xe0\xa7\xd8\xe0\xa8\xb8\xe0\xc8\x50\xf1\x48\xe0"
        !          8354:             "\xe8\x40\x39\xe0\xe9\x68\xe0\xe0\x28\x30\xf1\x29\xe0"
        !          8355:             "\xe0\x29\x20\xf9\x19\xe0\xe0\x49\x10\xf2\x29\xe0\xe0"
        !          8356:             "\x29\x20\xf1\x38\xe0\xe0\x28\x30\xf1\x48\xe0\xe8\x40"
        !          8357:             "\x57\xe0\xe7\xa8\xe0\xc8\x50\xf1\x67\xe0\xc7\x60\x77"
        !          8358:             "\xe0\xa7\x70\xf1\x86\xe0\xa6\x80\x95\xe0\xa5\xe0\x46"
        !          8359:             "\xe0\x86\xe0\x55\xe0\x85\xe0\x74\xe0\x84\xe0\x85\xe0"
        !          8360:             "\x65\xe0\x94\xe0\x64\xc2\xa4\xe0\x64\xa4\xb4\xe0\x44"
        !          8361:             "\xb2\x12\xa4\xe0\x44\xa2\x10\xf1\x12\xb3\xe0\x43\xb2"
        !          8362:             "\x10\x12\xc2\xe0\x42\xc2\x32\xb3\xe0\x23\xb2\x43\xa3"
        !          8363:             "\xe0\x23\xa3\x20\xf2\x2e\x02\xe0\x2e\x02\x20\xf1\x3e"
        !          8364:             "\x01\xe0\x2e\x01\x30" }  },
        !          8365:       /* --- pixel bitmap for cmr600 char#11 \ff --- */
        !          8366:       {  11,127698,                     /* character number, location */
        !          8367:          59, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          8368:           { 52,   59, 3,143, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          8369:             "\xe0\x69\xb7\xe0\x8e\x01\x6b\xe0\x46\x85\x25\x64\xe6"
        !          8370:             "\xc9\x56\xc6\xca\x58\xa6\xca\x68\x96\xda\x68\x96\xd9"
        !          8371:             "\x78\x86\xe9\x78\x86\xe8\xa4\x96\xe0\x27\xe0\x20\xfb"
        !          8372:             "\x76\xe0\x36\xe0\x2f\x2e\x0e\x0e\x03\x70\xfe\x76\xe0"
        !          8373:             "\x36\xe0\x20\xfd\x76\xe0\x36\xe0\x20\x68\xe0\x18\xe0"
        !          8374:             "\x10\xf2\x1e\x04\x5e\x06\x83" }  },
        !          8375:       /* --- pixel bitmap for cmr600 char#12 \fi --- */
        !          8376:       {  12,129058,                     /* character number, location */
        !          8377:          59, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          8378:           { 42,   59, 3,138, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          8379:             "\xe0\x78\xe0\xe0\x2e\xe0\xc7\x74\xe0\x96\xb3\xe0\x66"
        !          8380:             "\xe3\xe0\x46\xc6\x70\xf1\xa6\xc8\x60\xf1\x96\xd8\x60"
        !          8381:             "\x86\xe8\xe6\xe0\x16\xe0\x16\xe0\x32\x90\xf8\x86\xe0"
        !          8382:             "\xe0\x86\xe0\x26\x6f\x2e\x0e\x08\x60\x86\xe8\x60\xfe"
        !          8383:             "\x86\xe0\x26\x60\xfc\x86\xe0\x26\x60\x78\xe8\x50\xf2"
        !          8384:             "\x2e\x04\x4e\x04" }  },
        !          8385:       /* --- pixel bitmap for cmr600 char#13 \fl --- */
        !          8386:       {  13,130378,                     /* character number, location */
        !          8387:          59, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          8388:           { 42,   59, 3,118, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          8389:             "\xe0\x79\xe0\xe0\x1e\x01\x13\xe0\x77\x86\xe0\x65\xa7"
        !          8390:             "\xe0\x46\xa8\xe0\x36\xb8\xe0\x26\xc8\xe0\x17\xc8\xe0"
        !          8391:             "\x16\xd8\xe0\x16\xe7\x60\xfc\x86\xe0\x26\x6f\x2e\x0e"
        !          8392:             "\x08\x60\xfe\x86\xe0\x26\x60\xfd\x86\xe0\x26\x60\x78"
        !          8393:             "\xe8\x50\xf2\x2e\x04\x4e\x04" }  },
        !          8394:       /* --- pixel bitmap for cmr600 char#14 \ffi --- */
        !          8395:       {  14,132163,                     /* character number, location */
        !          8396:          59, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          8397:           { 65,   59, 3,206, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          8398:             "\xe0\x78\xe0\x18\xe0\xe0\x3e\x8e\xe0\xd6\x75\x47\x74"
        !          8399:             "\xe0\x96\xc3\x26\xb3\xe0\x66\xe0\x18\xe3\xe0\x46\xda"
        !          8400:             "\xc6\x70\xf1\xa6\xda\xc8\x60\xf1\x96\xe9\xd8\x60\x86"
        !          8401:             "\xe0\x18\xe8\xe6\xe0\x27\xe0\x16\xe0\x16\xe0\x36\xe0"
        !          8402:             "\x32\x90\xf8\x86\xe0\x36\xe0\xe0\x86\xe0\x36\xe0\x26"
        !          8403:             "\x6f\x2e\x0e\x0e\x0e\x03\x60\x86\xe0\x36\xe8\x60\xfe"
        !          8404:             "\x86\xe0\x36\xe0\x26\x60\xfc\x86\xe0\x36\xe0\x26\x60"
        !          8405:             "\x78\xe0\x18\xe8\x50\xf2\x2e\x04\x5e\x04\x4e\x04" }  },
        !          8406:       /* --- pixel bitmap for cmr600 char#15 \ffl --- */
        !          8407:       {  15,134044,                     /* character number, location */
        !          8408:          59, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          8409:           { 65,   59, 3,172, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          8410:             "\xe0\x79\xe9\xe0\xe0\x2e\x01\x7e\x01\x13\xe0\x86\x84"
        !          8411:             "\x47\x86\xe0\x66\xc3\x25\xa7\xe0\x46\xcb\xa8\xe0\x36"
        !          8412:             "\xcb\xb8\x60\xf1\xa6\xda\xc8\x60\x96\xe9\xd8\xe0\x16"
        !          8413:             "\xe9\xe7\xe6\xe0\x27\xe0\x26\x60\xfb\x86\xe0\x36\xe0"
        !          8414:             "\x26\x6f\x2e\x0e\x0e\x0e\x03\x60\xfe\x86\xe0\x36\xe0"
        !          8415:             "\x26\x60\xfd\x86\xe0\x36\xe0\x26\x60\x78\xe0\x18\xe8"
        !          8416:             "\x50\xf2\x2e\x04\x5e\x04\x4e\x04" }  },
        !          8417:       /* --- pixel bitmap for cmr600 char#16 \imath --- */
        !          8418:       {  16,91542,                      /* character number, location */
        !          8419:          37, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          8420:           { 18,   37, 3,32, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          8421:             "\x66\x6f\x2c\x60\x57\x60\xfe\x66\x60\xfc\x66\x60\x58"
        !          8422:             "\x5f\x2e\x04" }  },
        !          8423:       /* --- pixel bitmap for cmr600 char#17 \jmath --- */
        !          8424:       {  17,92334,                      /* character number, location */
        !          8425:          37,-4,  -17,-4,      /* topleft row,col, and botleft row,col */
        !          8426:           { 22,   54, 3,65, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          8427:             "\xe0\x17\xf2\x9d\xe8\xfe\xe0\x26\xfe\xe0\x26\xf7\xe0"
        !          8428:             "\x26\x24\xa6\x16\x9e\x85\x1f\x18\x76\x18\x75\x27\x75"
        !          8429:             "\x45\x75\x64\x65\x9b\xd7\x94" }  },
        !          8430:       /* --- pixel bitmap for cmr600 char#18 \gravesym --- */
        !          8431:       {  18,118535,                     /* character number, location */
        !          8432:          58, 9,   43, 9,      /* topleft row,col, and botleft row,col */
        !          8433:           { 15,   15, 3,30, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          8434:             "\x14\xaf\x16\x97\x88\x88\x97\x96\xa6\xb5\xb5\xb5\xc4"
        !          8435:             "\xc3\xd2" }  },
        !          8436:       /* --- pixel bitmap for cmr600 char#19 \acutesym --- */
        !          8437:       {  19,119128,                     /* character number, location */
        !          8438:          58,17,   43,17,      /* topleft row,col, and botleft row,col */
        !          8439:           { 16,   15, 3,33, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          8440:             "\xb4\x10\xf1\xa6\x97\x88\x78\x77\x96\x96\x95\xa5\xa5"
        !          8441:             "\xa4\xc3\xd2\xd3" }  },
        !          8442:       /* --- pixel bitmap for cmr600 char#20 \checksym --- */
        !          8443:       {  20,119777,                     /* character number, location */
        !          8444:          53,10,   43,10,      /* topleft row,col, and botleft row,col */
        !          8445:           { 21,   10, 3,37, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          8446:             "\x11\xe0\x41\x13\xe3\x15\xa5\x34\x84\x65\x45\x8c\xaa"
        !          8447:             "\xd6\xe0\x24\xe0\x42\x9f" }  },
        !          8448:       /* --- pixel bitmap for cmr600 char#21 \brevesym --- */
        !          8449:       {  21,120417,                     /* character number, location */
        !          8450:          58, 8,   44, 8,      /* topleft row,col, and botleft row,col */
        !          8451:           { 26,   14, 3,57, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          8452:             "\xf2\x02\xe0\x82\x03\xe0\x63\xf1\x12\xe0\x62\x10\x13"
        !          8453:             "\xe0\x43\x33\xe0\x23\x53\xe3\x64\xc4\x76\x66\xae\xdc"
        !          8454:             "\xe0\x36\xa3" }  },
        !          8455:       /* --- pixel bitmap for cmr600 char#22 (noname) --- */
        !          8456:       {  22,121037,                     /* character number, location */
        !          8457:          49, 6,   46, 6,      /* topleft row,col, and botleft row,col */
        !          8458:           { 30,    3, 3, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          8459:             "\xf2\x0e\x0e\x02" }  },
        !          8460:       /* --- pixel bitmap for cmr600 char#23 (noname) --- */
        !          8461:       {  23,121884,                     /* character number, location */
        !          8462:          60,23,   45,23,      /* topleft row,col, and botleft row,col */
        !          8463:           { 16,   15, 3,39, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          8464:             "\x56\x8a\x53\x63\x20\xf1\x12\xa2\x1f\x42\xc2\xf1\x12"
        !          8465:             "\xa2\x10\x23\x63\x5a\x86\x53" }  },
        !          8466:       /* --- pixel bitmap for cmr600 char#24 (noname) --- */
        !          8467:       {  24,122616,                     /* character number, location */
        !          8468:          -2,11,  -17,11,      /* topleft row,col, and botleft row,col */
        !          8469:           { 20,   15, 3,33, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          8470:             "\xf2\x76\x70\x79\xe8\xe7\xe6\x10\xf2\xe6\xd6\xd7\xa9"
        !          8471:             "\x2e\x02\x4b\x93" }  },
        !          8472:       /* --- pixel bitmap for cmr600 char#25 \ss --- */
        !          8473:       {  25,93513,                      /* character number, location */
        !          8474:          59, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          8475:           { 38,   60, 3,239, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          8476:             "\xe0\x38\xe0\xdd\xe0\x96\x56\xe0\x66\x86\xe0\x36\xa6"
        !          8477:             "\xe0\x16\xb7\x50\xf1\x86\xd7\x40\x76\xe0\x16\x40\xf6"
        !          8478:             "\x76\xe0\x17\x30\xf1\x76\xe7\x40\x76\xd7\xc6\xd6\xd6"
        !          8479:             "\xc6\xe6\xb6\xe0\x16\x96\xaf\x1d\x58\xcd\x96\xe0\x36"
        !          8480:             "\xb5\xe0\x26\xc6\xe6\xd6\xd6\xe6\xc6\xe7\xb6\xe0\x16"
        !          8481:             "\x40\xf1\x76\xe0\x26\x30\x76\xe0\x27\x96\xe0\x36\x20"
        !          8482:             "\xf2\x76\xe0\x37\x10\xf9\x76\xe0\x47\x76\xe0\x46\x86"
        !          8483:             "\x44\x97\x86\x36\x87\x86\x36\x86\x20\xf1\x76\x36\x76"
        !          8484:             "\x30\x67\x35\x76\x4d\x43\x76\x5d\x53\x55\x7d\x6a\xe0"
        !          8485:             "\xe0\x26\xb0" }  },
        !          8486:       /* --- pixel bitmap for cmr600 char#26 \ae --- */
        !          8487:       {  26,95046,                      /* character number, location */
        !          8488:          38, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          8489:           { 55,   39, 3,283, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          8490:             "\xb8\xe0\x47\xe0\x5e\xdc\xe5\x76\x95\x56\xb3\xc6\x55"
        !          8491:             "\x95\x95\xc6\x35\xb5\x77\xc6\x15\xc6\x68\xbb\xe6\x58"
        !          8492:             "\xca\xe6\x58\xc9\xe0\x26\x48\xd8\xe0\x26\x56\xe7\xe0"
        !          8493:             "\x36\x64\xe0\x17\xe0\x36\x10\xf1\xe0\xa7\xe0\x46\xf2"
        !          8494:             "\xe0\xa6\xe0\x56\xe0\x4e\x0e\x09\xde\x0e\x0e\xaa\x46"
        !          8495:             "\xe0\xe0\x48\x96\xe0\xe0\x28\xb6\xe0\xe0\x17\xd6\xe0"
        !          8496:             "\xe7\xe6\xe0\xd7\xe0\x25\xe0\xc8\xe0\x26\xe0\xb7\xe0"
        !          8497:             "\x36\xe0\xa8\xe0\x36\xe0\xaf\x17\xe0\x47\xe0\x72\x07"
        !          8498:             "\xe0\x38\xe0\x6a\xe0\x39\xe0\x52\x18\xe0\x1b\xe0\x33"
        !          8499:             "\x27\xe5\x26\xe0\x13\x38\xc5\x46\xd3\x58\xa5\x75\xb3"
        !          8500:             "\x87\x75\xa6\x65\xbe\x01\xed\xe0\x29\xe0\x67\xa3" }  },
        !          8501:       /* --- pixel bitmap for cmr600 char#27 \oe --- */
        !          8502:       {  27,96326,                      /* character number, location */
        !          8503:          38, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          8504:           { 61,   39, 3,305, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          8505:             "\xe8\xe0\x77\xe0\x8e\xe0\x2c\xe0\x36\x66\xc5\x56\xe5"
        !          8506:             "\xa5\x95\x95\xc5\xd5\x65\xb5\x96\xe0\x15\x45\xc6\x85"
        !          8507:             "\xe0\x26\x25\xe6\x66\xe0\x35\x16\xe6\x56\xe0\x5a\xe0"
        !          8508:             "\x26\x37\xe0\x5a\xe0\x26\x36\xe0\x78\xe0\x36\x27\xe0"
        !          8509:             "\x78\xe0\x36\x27\xe0\x78\xe0\x46\x16\xe0\x88\xe0\x46"
        !          8510:             "\x16\xe0\x96\xe0\x56\x0f\x17\xe0\x96\xe0\x56\x0f\x17"
        !          8511:             "\xe0\x9e\x0e\x03\x0f\x47\xe0\x96\xe0\xb0\x16\xe0\x96"
        !          8512:             "\xe0\xb0\xf2\x17\xe0\x78\xe0\xa0\x26\xe0\x79\xe0\x72"
        !          8513:             "\x27\xe0\x5a\xe0\x72\x36\xe0\x5a\xe0\x63\x46\xe0\x35"
        !          8514:             "\x25\xe0\x52\x65\xe0\x26\x26\xe0\x33\x66\xe0\x15\x46"
        !          8515:             "\xe0\x13\x95\xd5\x66\xd3\xb5\xa5\xa5\xb3\xd6\x66\xc6"
        !          8516:             "\x65\xe0\x2e\xe0\x2d\xe0\x78\xe0\x87\xa0" }  },
        !          8517:       /* --- pixel bitmap for cmr600 char#28 (noname) --- */
        !          8518:       {  28,97320,                      /* character number, location */
        !          8519:          44, 3,   -8, 3,      /* topleft row,col, and botleft row,col */
        !          8520:           { 36,   52, 3,317, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          8521:             "\xe0\xe0\x42\xe0\xe0\x52\xe0\xe0\x53\xe0\xe0\x52\xe0"
        !          8522:             "\xe0\x53\xe0\xe0\x52\xe0\x58\x62\xe0\x3e\x32\xe0\x16"
        !          8523:             "\x68\xe0\x15\xa6\xe4\xe4\xd4\xe0\x15\xb4\xe0\x26\x95"
        !          8524:             "\xe0\x12\x15\x75\xe0\x13\x25\x65\xe0\x12\x35\x55\xe0"
        !          8525:             "\x13\x45\x45\xe0\x12\x55\x36\xe2\x66\x25\xe0\x12\x75"
        !          8526:             "\x25\xe2\x85\x16\xd3\x8c\xd2\x9c\xc3\x9c\xc2\xa6\x0f"
        !          8527:             "\x16\xb2\xb6\x06\xa2\xcc\x93\xcc\x92\xdc\x83\xd6\x15"
        !          8528:             "\x82\xe5\x25\x72\xe0\x15\x26\x62\xe6\x35\x52\xe0\x15"
        !          8529:             "\x45\x43\xe0\x15\x55\x32\xe0\x15\x74\x23\xe0\x14\x85"
        !          8530:             "\x12\xe0\x15\x96\xe0\x15\xb5\xe5\xe4\xc4\xe0\x18\x66"
        !          8531:             "\xe0\x22\x2e\xe0\x32\x68\xe0\x62\xe0\xe0\x52\xe0\xe0"
        !          8532:             "\x53\xe0\xe0\x52\xe0\xe0\x53\xe0\xe0\x52\xe0\xe0\x52"
        !          8533:             "\xe0\xe0\x43" }  },
        !          8534:       /* --- pixel bitmap for cmr600 char#29 \AE --- */
        !          8535:       {  29,99318,                      /* character number, location */
        !          8536:          57, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          8537:           { 70,   57, 3,491, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          8538:             "\xf2\xe0\x5e\x0e\x0e\x04\x50\xe0\xc2\x29\xe0\x39\xe0"
        !          8539:             "\xe0\x32\x46\xe0\x76\xe0\xe0\x22\x56\xe0\x95\x40\xf1"
        !          8540:             "\xe0\xb2\x56\xe0\xa4\x40\xf1\xe0\xa2\x66\xe0\xb3\x40"
        !          8541:             "\xe0\x93\x66\xe0\xc2\x40\xf1\xe0\x92\x76\xe0\xc2\x40"
        !          8542:             "\xe0\x82\x86\xe0\xc2\xe0\xc2\x86\xe0\xc3\xe0\xb2\x86"
        !          8543:             "\xe0\xd2\x30\xf1\xe0\x72\x96\xe0\xd2\x30\xe0\x63\x96"
        !          8544:             "\xe0\x22\x92\x30\xf1\xe0\x62\xa6\xe0\x22\xe0\xf2\xe0"
        !          8545:             "\x52\xb6\xe0\x22\xe0\xf1\xe0\x42\xc6\xe0\x13\xe0\xe0"
        !          8546:             "\x33\xc6\xe4\xe0\xe0\x32\xd6\xc6\xe0\xe0\x3e\x0e\x0b"
        !          8547:             "\xe0\xf1\xe0\x2e\x0e\x0c\xe0\xe0\x22\xe6\xc6\xe0\xe0"
        !          8548:             "\x12\xe0\x16\xe4\xe0\xf1\xe0\x12\xe0\x16\xe0\x13\xe0"
        !          8549:             "\xf1\xe2\xe0\x26\xe0\x22\xc2\xd3\xe0\x26\xe0\x22\xc2"
        !          8550:             "\xd2\xe0\x36\xe0\x22\xb3\xd2\xe0\x36\xe0\x22\xb2\xd2"
        !          8551:             "\xe0\x46\xe0\x22\xb2\x10\xf1\xc2\xe0\x46\xe0\xe0\x12"
        !          8552:             "\x10\xb2\xe0\x56\xe0\xe0\x12\xc2\xe0\x56\xe0\xe3\xb3"
        !          8553:             "\xe0\x56\xe0\xe3\xb2\xe0\x66\xe0\xe2\xc2\xe0\x66\xe0"
        !          8554:             "\xd3\xb2\xe0\x76\xe0\xd3\xb2\xe0\x76\xe0\xc4\xa3\xe0"
        !          8555:             "\x76\xe0\xb5\x95\xe0\x66\xe0\xa6\x86\xe0\x66\xe0\x88"
        !          8556:             "\x6a\xe0\x38\xe0\x4a\x3f\x2e\x03\x9e\x0e\x0d\x30" }  },
        !          8557:       /* --- pixel bitmap for cmr600 char#30 \OE --- */
        !          8558:       {  30,101298,                     /* character number, location */
        !          8559:          59, 6,   -2, 6,      /* topleft row,col, and botleft row,col */
        !          8560:           { 76,   61, 3,559, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          8561:             "\xe0\x89\xe0\xe0\xe0\xe0\x8e\x03\xe0\xe0\xe0\xe0\x17"
        !          8562:             "\x7e\x0e\x0c\xe0\x66\xce\x0e\x0a\xe0\x47\xee\x0e\x09"
        !          8563:             "\xe0\x36\xe0\x39\xe0\x49\xe0\x26\xe0\x48\xe0\x86\xe7"
        !          8564:             "\xe0\x67\xe0\x96\xc7\xe0\x77\xe0\xa5\xc7\xe0\x77\xe0"
        !          8565:             "\xb4\xb7\xe0\x87\xe0\xc3\xa7\xe0\x97\xe0\xc3\x98\xe0"
        !          8566:             "\x97\xe0\xd2\x97\xe0\xa7\xe0\xd2\x88\xe0\xa7\xe0\xd2"
        !          8567:             "\x87\xe0\xb7\xe0\xd2\x78\xe0\xb7\xe0\xd3\x68\xe0\xb7"
        !          8568:             "\xe0\xe2\x30\xf2\x28\xe0\xc7\xe0\x42\x82\x30\xf1\x19"
        !          8569:             "\xe0\xd6\xe0\x42\xd0\x18\xe0\xe6\xe0\x42\xe8\xe0\xe6"
        !          8570:             "\xe0\x33\xd9\xe0\xe6\xe0\x33\xd9\xe0\xe6\xe0\x24\xd9"
        !          8571:             "\xe0\xe6\xe6\xdf\x29\xe0\xee\x0c\xd9\xe0\xe6\xe6\xd9"
        !          8572:             "\xe0\xe6\xe0\x24\xdf\x19\xe0\xe6\xe0\x33\xd9\xe0\xe6"
        !          8573:             "\xe0\x42\xda\xe0\xd6\xe0\x42\xd0\xf2\x19\xe0\xd6\xe0"
        !          8574:             "\x42\xb2\x19\xe0\xc7\xe0\x42\xa3\xf1\x29\xe0\xb7\xe0"
        !          8575:             "\xe0\x22\x10\x38\xe0\xb7\xe0\xe0\x22\x10\xf1\x39\xe0"
        !          8576:             "\xa7\xe0\xe0\x22\x10\x48\xe0\xa7\xe0\xe0\x13\x68\xe0"
        !          8577:             "\x97\xe0\xe0\x13\x68\xe0\x97\xe0\xe0\x12\x88\xe0\x87"
        !          8578:             "\xe0\xe3\x97\xe0\x87\xe0\xe3\x98\xe0\x77\xe0\xd4\xa8"
        !          8579:             "\xe0\x67\xe0\xc5\xb8\xe0\x57\xe0\xb6\xc8\xe0\x38\xe0"
        !          8580:             "\x98\xe7\xe0\x29\xe0\x5a\xe0\x27\xee\x0e\x0b\xe0\x47"
        !          8581:             "\xbe\x0e\x0c\xe0\x58\x7e\x0e\x0e\xe0\x8e\x03\xe0\xe0"
        !          8582:             "\xe0\xe0\x69\xe0\xe0\xe0\x30" }  },
        !          8583:       /* --- pixel bitmap for cmr600 char#31 (noname) --- */
        !          8584:       {  31,102540,                     /* character number, location */
        !          8585:          61, 5,   -4, 5,      /* topleft row,col, and botleft row,col */
        !          8586:           { 55,   65, 3,533, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          8587:             "\xe0\xe0\xe0\x62\xe0\xe0\xe0\xa3\xe0\xe9\xe0\x12\xe0"
        !          8588:             "\xbe\x03\xa2\xe0\xa6\x96\x73\xe0\x85\xe0\x15\x52\xe0"
        !          8589:             "\x75\xe0\x55\x22\xe0\x75\xe0\x78\xe0\x65\xe0\x96\xa0"
        !          8590:             "\xf1\x95\xe0\xd5\x90\x85\xe0\xe6\xe0\x15\xe0\xe2\x15"
        !          8591:             "\xd5\xe0\xe3\x25\xb6\xe0\xd3\x36\xa5\xe0\xe2\x55\x96"
        !          8592:             "\xe0\xd3\x56\x85\xe0\xd3\x75\x76\xe0\xd2\x86\x66\xe0"
        !          8593:             "\xc3\x86\x56\xe0\xc3\xa6\x46\xe0\xc2\xb6\x46\xe0\xb2"
        !          8594:             "\xc6\x37\xe0\xa3\xc7\x27\xe0\xa2\xd7\x26\xe0\xa2\xe0"
        !          8595:             "\x16\x26\xe0\x93\xe0\x16\x17\xe0\x92\xe0\x2e\xe0\x82"
        !          8596:             "\xe0\x3e\xe0\x73\xe0\x3e\xe0\x72\xe0\x4e\xe0\x62\xe0"
        !          8597:             "\x5e\xe0\x53\xe0\x5e\xe0\x52\xe0\x6e\xe0\x42\xe0\x7e"
        !          8598:             "\xe0\x33\xe0\x7e\xe0\x32\xe0\x8e\xe0\x22\xe0\x9e\xe0"
        !          8599:             "\x13\xe0\x97\x16\xe0\x12\xe0\xa6\x26\xe2\xe0\xb6\x27"
        !          8600:             "\xc3\xe0\xa7\x27\xc2\xe0\xb7\x36\xb2\xe0\xc6\x46\xa3"
        !          8601:             "\xe0\xc6\x56\x83\xe0\xc6\x66\x82\xe0\xd6\x66\x73\xe0"
        !          8602:             "\xd6\x76\x53\xe0\xd6\x95\x52\xe0\xe5\xa6\x33\xe0\xd6"
        !          8603:             "\xb5\x23\xe0\xe5\xd5\x12\xe0\xe5\xe7\xe0\xe6\xe0\x16"
        !          8604:             "\xe0\xe5\xe0\x35\xe0\xd5\xe0\x55\xe0\xb5\xe0\x58\xe0"
        !          8605:             "\x75\xe0\x72\x25\xe0\x55\xe0\x72\x55\xe0\x15\xe0\x83"
        !          8606:             "\x76\x96\xe0\xa2\xae\x03\xe0\xb2\xe0\x19\xe0\xe3\xe0"
        !          8607:             "\xe0\xe0\xa2\xe0\xe0\xe0\x6e" }  },
        !          8608:       /* --- pixel bitmap for cmr600 char#32 (noname) --- */
        !          8609:       {  32,123136,                     /* character number, location */
        !          8610:          33, 2,   23, 2,      /* topleft row,col, and botleft row,col */
        !          8611:           { 19,   10, 3,29, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          8612:             "\xe0\x41\xe0\x14\xc7\x99\x79\x7a\x79\x97\xc4\xe0\x11"
        !          8613:             "\xe0\x42" }  },
        !          8614:       /* --- pixel bitmap for cmr600 char#33 ! --- */
        !          8615:       {  33,103459,                     /* character number, location */
        !          8616:          60, 7,    0, 7,      /* topleft row,col, and botleft row,col */
        !          8617:           {  9,   60, 3,43, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          8618:             "\x33\x47\x1f\x79\xfa\x17\x10\xfa\x25\x20\xfa\x33\x30"
        !          8619:             "\xf7\x90\x33\x47\x1f\x49\x17\x43\x35" }  },
        !          8620:       /* --- pixel bitmap for cmr600 char#34 " --- */
        !          8621:       {  34,135253,                     /* character number, location */
        !          8622:          58, 3,   33, 3,      /* topleft row,col, and botleft row,col */
        !          8623:           { 26,   25, 3,87, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          8624:             "\x33\xd3\x57\x97\x2f\x19\x79\x1f\x2a\x6a\x19\x79\x33"
        !          8625:             "\x22\x93\x22\xf3\x82\xe2\x73\xd3\xf1\x72\xe2\x10\x63"
        !          8626:             "\xd3\x72\xe2\x73\xd3\x72\xe2\x73\xd3\x63\xd3\x63\xd3"
        !          8627:             "\x63\xd3\x72\xe2\x77" }  },
        !          8628:       /* --- pixel bitmap for cmr600 char#35 # --- */
        !          8629:       {  35,105077,                     /* character number, location */
        !          8630:          58, 5,  -16, 5,      /* topleft row,col, and botleft row,col */
        !          8631:           { 59,   74, 3,429, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          8632:             "\xe0\xe2\xe0\x32\xa0\xf1\xe0\xd4\xe0\x14\x90\xf1\xe0"
        !          8633:             "\xc5\xe5\x90\xf1\xe0\xc4\xe0\x14\xa0\xf1\xe0\xb5\xe5"
        !          8634:             "\xa0\xf2\xe0\xb4\xe0\x14\xb0\xf1\xe0\xa5\xe5\xb0\xf1"
        !          8635:             "\xe0\xa4\xe0\x14\xc0\xf1\xe0\x95\xe5\xc0\xf1\xe0\x94"
        !          8636:             "\xe0\x14\xd0\xf1\xe0\x85\xe5\xd0\xf2\xe0\x84\xe0\x14"
        !          8637:             "\xe0\xe0\x75\xe5\xe0\x1e\x0e\x0e\x0e\x01\x1f\x1e\x0e"
        !          8638:             "\x0e\x0e\x03\x1e\x0e\x0e\x0e\x01\xe0\x65\xe5\xe0\x20"
        !          8639:             "\xf2\xe0\x54\xe0\x14\xe0\x30\xf1\xe0\x45\xe5\xe0\x30"
        !          8640:             "\xf1\xe0\x44\xe0\x14\xe0\x40\xf1\xe0\x35\xe5\xe0\x40"
        !          8641:             "\xf2\xe0\x34\xe0\x14\xe0\x50\xe0\x25\xe5\xe0\x6e\x0e"
        !          8642:             "\x0e\x0e\x01\x1f\x1e\x0e\x0e\x0e\x03\x1e\x0e\x0e\x0e"
        !          8643:             "\x01\xe0\x15\xe5\xe0\x70\xf2\xe4\xe0\x14\xe0\x80\xf1"
        !          8644:             "\xd5\xe5\xe0\x80\xf1\xd4\xe0\x14\xe0\x90\xf1\xc5\xe5"
        !          8645:             "\xe0\x90\xf1\xc4\xe0\x14\xe0\xa0\xf1\xb5\xe5\xe0\xa0"
        !          8646:             "\xf2\xb4\xe0\x14\xe0\xb0\xf1\xa5\xe5\xe0\xb0\xf1\xa4"
        !          8647:             "\xe0\x14\xe0\xc0\xf1\x95\xe5\xe0\xc0\xf1\x94\xe0\x14"
        !          8648:             "\xe0\xd0\xa2\xe0\x32\xe0\xe0" }  },
        !          8649:       /* --- pixel bitmap for cmr600 char#36 $ --- */
        !          8650:       {  36,87116,                      /* character number, location */
        !          8651:          62, 5,   -5, 5,      /* topleft row,col, and botleft row,col */
        !          8652:           { 32,   67, 3,319, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          8653:             "\xf2\xe0\x13\xe0\xc9\xe0\x6e\xe0\x3e\x03\xd6\x33\x36"
        !          8654:             "\xa5\x53\x64\x84\x73\x74\x64\x83\x84\x44\x93\x93\x44"
        !          8655:             "\x93\xa3\x24\xa3\xb2\x24\xa3\xb3\x13\xb3\x99\xb3\x77"
        !          8656:             "\x0f\x34\xb3\x68\x05\xa3\x76\x15\xa3\x84\x26\x93\xe0"
        !          8657:             "\xf1\x16\x83\xe0\x18\x63\xe0\x28\x53\xe0\x2b\x23\xe0"
        !          8658:             "\x3e\x01\xe0\x4e\x03\xe0\x2e\x04\xe0\x1e\x05\xe0\x1e"
        !          8659:             "\x04\xe0\x2e\x03\xe0\x3e\x02\xe0\x5e\xe0\x43\x2a\xe0"
        !          8660:             "\x33\x48\xe0\x33\x67\x10\xf1\xe0\x13\x76\x10\xe0\x13"
        !          8661:             "\x86\xe0\x13\x95\x24\x93\x9d\x73\x95\x0f\x38\x73\xa4"
        !          8662:             "\x07\x83\xa9\xa3\xa3\x13\xc3\x94\x22\xc3\x94\x23\xb3"
        !          8663:             "\x93\x33\xb3\x84\x43\xa3\x74\x63\x93\x65\x64\x83\x55"
        !          8664:             "\x85\x63\x45\xa6\x43\x26\xde\x03\xe0\x3d\xe0\x88\xc0"
        !          8665:             "\xf3\xe0\x13\xe0" }  },
        !          8666:       /* --- pixel bitmap for cmr600 char#37 % --- */
        !          8667:       {  37,106522,                     /* character number, location */
        !          8668:          62, 5,   -5, 5,      /* topleft row,col, and botleft row,col */
        !          8669:           { 59,   67, 3,603, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          8670:             "\x96\xe0\xe0\x62\xe0\x1a\xe0\xe0\x34\xd4\x53\xe0\xe0"
        !          8671:             "\x15\xc4\x73\xe0\xd6\xb4\x93\xe0\xb6\xb4\xb4\xe0\x86"
        !          8672:             "\xb5\xb5\xe0\x67\xb4\xd7\xe9\xb5\xd3\x16\x8b\xc5\xe2"
        !          8673:             "\x4e\x26\xc5\xe2\x78\x55\xc5\xe0\x13\xe0\x45\xd5\xe0"
        !          8674:             "\x22\xe0\x45\xd5\xe0\x22\xe0\x35\xe5\xe0\x22\xe0\x26"
        !          8675:             "\xe5\xe0\x22\xe0\x25\xe0\x15\xe0\x22\xe0\x15\xe0\x25"
        !          8676:             "\xe0\x22\xe6\xe0\x25\xe0\x22\xe5\xe0\x35\xe0\x22\xd5"
        !          8677:             "\xe0\x45\xe0\x22\xc6\xe0\x45\xe0\x13\xc5\xe0\x65\xe2"
        !          8678:             "\xc5\xe0\x75\xe2\xb6\xe0\x75\xd3\xb5\xe0\x94\xd2\xb5"
        !          8679:             "\xe0\xa5\xb3\xa6\xe0\xb4\xb2\xb5\xe0\xd4\x93\xa5\xe0"
        !          8680:             "\xe0\x14\x73\xa6\xe0\xe0\x24\x53\xb5\xe0\xe0\x4a\xb5"
        !          8681:             "\xe0\xe0\x76\xc6\xe0\xe0\xe0\xb5\xd6\xe0\xe0\x65\xca"
        !          8682:             "\xe0\xe0\x45\xb4\x53\xe0\xe0\x25\xb4\x73\xe0\xe6\xa4"
        !          8683:             "\x93\xe0\xd5\xa4\xb2\xe0\xc5\xa5\xb3\xe0\xa6\xa4\xd2"
        !          8684:             "\xe0\xa5\xa5\xd3\xe0\x85\xb5\xe2\xe0\x76\xb5\xe2\xe0"
        !          8685:             "\x75\xc4\xe0\x13\xe0\x55\xc5\xe0\x22\xe0\x46\xc5\xe0"
        !          8686:             "\x22\xe0\x45\xd5\xe0\x22\xe0\x35\xe5\xe0\x22\xe0\x26"
        !          8687:             "\xe5\xe0\x22\xe0\x25\xe0\x15\xe0\x22\xe0\x15\xe0\x25"
        !          8688:             "\xe0\x22\xe6\xe0\x25\xe0\x22\xe5\xe0\x35\xe0\x22\xd5"
        !          8689:             "\xe0\x45\xe0\x22\xd5\xe0\x54\xe0\x13\xc5\xe0\x65\xe2"
        !          8690:             "\xc6\xe0\x65\xe2\xc5\xe0\x75\xd3\xb5\xe0\x94\xd2\xb6"
        !          8691:             "\xe0\x95\xb3\xb5\xe0\xb4\xb2\xb5\xe0\xd4\x93\xa6\xe0"
        !          8692:             "\xe4\x73\xb5\xe0\xe0\x24\x53\xc4\xe0\xe0\x4a\xe2\xe0"
        !          8693:             "\xe0\x76\x80" }  },
        !          8694:       /* --- pixel bitmap for cmr600 char#38 & --- */
        !          8695:       {  38,88608,                      /* character number, location */
        !          8696:          60, 3,   -2, 3,      /* topleft row,col, and botleft row,col */
        !          8697:           { 58,   62, 3,545, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          8698:             "\xe0\x55\xe0\xe0\xe0\x99\xe0\xe0\xe0\x64\x43\xe0\xe0"
        !          8699:             "\xe0\x35\x63\xe0\xe0\xe0\x24\x82\xe0\xe0\xe0\x15\x82"
        !          8700:             "\xe0\xe0\xe5\x93\xe0\xe0\x10\xf1\xc5\xa2\xe0\xe0\x10"
        !          8701:             "\xf1\xb6\xa2\xe0\xe0\x10\xb5\xb2\xe0\xe0\xc6\xa2\xe0"
        !          8702:             "\xe0\xc6\x93\xe0\xe0\x10\xf1\xb6\x92\xe0\xe0\x20\xb6"
        !          8703:             "\x83\xe0\xe0\xd6\x73\xe0\xe0\xe6\x72\xe0\xe0\xe0\x16"
        !          8704:             "\x63\xe0\xe0\xe0\x26\x43\xe0\xe0\xe0\x36\x42\xe0\xe0"
        !          8705:             "\xe0\x46\x33\xe0\xe0\xe0\x46\x23\xe0\xe0\xe0\x5a\xe0"
        !          8706:             "\x4e\x04\xd8\xe0\x5e\x04\xd7\xe0\x6e\x04\xd7\xe0\x9b"
        !          8707:             "\xe0\x37\xe0\xb6\xe0\x76\xe0\xb5\xe0\x78\xe0\xa4\xe0"
        !          8708:             "\x88\xe0\xa3\xe0\x8a\xe0\x92\xe0\x83\x17\xe0\x83\xe0"
        !          8709:             "\x73\x37\xe0\x72\xe0\x73\x47\xe0\x63\xe0\x63\x67\xe0"
        !          8710:             "\x43\xe0\x63\x78\xe0\x32\xe0\x63\x97\xe0\x23\xe0\x54"
        !          8711:             "\x98\xe3\xe0\x54\xb8\xd2\xe0\x55\xc7\xc3\xe0\x46\xc8"
        !          8712:             "\xb2\xe0\x46\xe8\x93\xe0\x46\xe0\x17\x83\xe0\x56\xe0"
        !          8713:             "\x18\x72\xe0\x57\xe0\x28\x53\xe0\x57\xe0\x37\x43\xe0"
        !          8714:             "\x67\xe0\x47\x23\xe0\x77\xe0\x4b\xe0\x88\xe0\x4a\xe0"
        !          8715:             "\x52\x18\xe0\x58\xe0\x62\x18\xe0\x67\xe0\x62\x28\xe0"
        !          8716:             "\x67\xe0\x43\x28\xe0\x59\xe0\x32\x48\xe0\x3b\xe0\x13"
        !          8717:             "\x58\xe0\x14\x28\xc3\x78\xc4\x58\xa4\x88\x86\x88\x65"
        !          8718:             "\xae\x05\xbe\x03\xde\x01\xe0\x2c\xe0\x49\xe0\x87\x90" }  },
        !          8719:       /* --- pixel bitmap for cmr600 char#39 ' --- */
        !          8720:       {  39,107474,                     /* character number, location */
        !          8721:          58, 7,   33, 7,      /* topleft row,col, and botleft row,col */
        !          8722:           { 10,   25, 3,49, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          8723:             "\x33\x57\x2f\x19\x1f\x2a\x19\x33\x22\xf3\x82\x73\xf1"
        !          8724:             "\x72\x10\x63\x72\x73\x72\x73\x63\x63\x63\x72\x70" }  },
        !          8725:       /* --- pixel bitmap for cmr600 char#40 ( --- */
        !          8726:       {  40,108088,                     /* character number, location */
        !          8727:          62, 8,  -20, 8,      /* topleft row,col, and botleft row,col */
        !          8728:           { 19,   82, 3,190, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          8729:             "\xe0\x32\xe0\x23\xe0\x13\xe0\x13\xe0\x13\xe0\x13\xe0"
        !          8730:             "\x14\xe4\x50\xf1\x94\x60\x84\x70\xf1\x74\x80\xf1\x64"
        !          8731:             "\x90\x55\xe4\xe5\xa0\xf1\x44\xb0\x35\xb0\xf1\x34\xc0"
        !          8732:             "\xf2\x25\xc0\xf5\x15\xdf\xe5\xef\x25\xe0\xf5\x15\xd0"
        !          8733:             "\xf2\x25\xc0\xf1\x34\xc0\x35\xb0\xf1\x44\xb0\x45\xe0"
        !          8734:             "\x14\xe0\x15\x90\xf1\x64\x90\xf1\x74\x80\x84\x70\xf1"
        !          8735:             "\x94\x60\xa4\xe0\x24\xe0\x23\xe0\x33\xe0\x33\xe0\x33"
        !          8736:             "\xe0\x33\xe0\x32" }  },
        !          8737:       /* --- pixel bitmap for cmr600 char#41 ) --- */
        !          8738:       {  41,108815,                     /* character number, location */
        !          8739:          62, 5,  -20, 5,      /* topleft row,col, and botleft row,col */
        !          8740:           { 19,   82, 3,191, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          8741:             "\x02\xe0\x33\xe0\x33\xe0\x33\xe0\x33\xe0\x33\xe0\x24"
        !          8742:             "\xe0\x24\xa0\xf1\x64\x90\x74\x80\xf1\x84\x70\xf1\x94"
        !          8743:             "\x60\x95\xe0\x14\xe0\x15\x40\xf1\xb4\x40\xb5\x30\xf1"
        !          8744:             "\xc4\x30\xf2\xc5\x20\xf5\xd5\x10\xfe\xe5\xf2\xe5\xf5"
        !          8745:             "\xd5\x10\xf2\xc5\x20\xf1\xc4\x30\xb5\x30\xf1\xb4\x40"
        !          8746:             "\xa5\xe4\xe5\x50\xf1\x94\x60\xf1\x84\x70\x74\x80\xf1"
        !          8747:             "\x64\x90\x54\xe4\xe0\x13\xe0\x13\xe0\x13\xe0\x13\xe0"
        !          8748:             "\x13\xe0\x22\xe0\x36" }  },
        !          8749:       /* --- pixel bitmap for cmr600 char#42 * --- */
        !          8750:       {  42,109566,                     /* character number, location */
        !          8751:          62, 5,   26, 5,      /* topleft row,col, and botleft row,col */
        !          8752:           { 32,   36, 3,145, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          8753:             "\xf1\xe4\xe0\xe5\xd0\xf4\xe4\xe0\x14\x94\x94\x25\x84"
        !          8754:             "\x85\x17\x74\x77\x18\x54\x58\x38\x44\x48\x68\x32\x38"
        !          8755:             "\xa7\x22\x27\xe6\x12\x16\xe0\x4c\xa0\xf1\xd6\xd0\xac"
        !          8756:             "\xe0\x46\x12\x16\xe7\x22\x27\xa8\x32\x38\x68\x44\x48"
        !          8757:             "\x38\x54\x58\x17\x74\x77\x15\x84\x85\x24\x94\x94\x10"
        !          8758:             "\xf4\xe4\xe0\xe5\xd0\xf1\xe4\xe1" }  },
        !          8759:       /* --- pixel bitmap for cmr600 char#43 + --- */
        !          8760:       {  43,110358,                     /* character number, location */
        !          8761:          48, 5,   -6, 5,      /* topleft row,col, and botleft row,col */
        !          8762:           { 55,   54, 2,29, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          8763:             "\x1b\x02\x1a\x00\xff\x17\x1a\x04\x19\x00\x01\x35\x01"
        !          8764:             "\xff\x01\x37\x01\x35\x01\x00\xff\x17\x1a\x04\x19\x00"
        !          8765:             "\x1b\x02\x1a" }  },
        !          8766:       /* --- pixel bitmap for cmr600 char#44 (noname) --- */
        !          8767:       {  44,111021,                     /* character number, location */
        !          8768:           9, 7,  -16, 7,      /* topleft row,col, and botleft row,col */
        !          8769:           { 10,   25, 3,49, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          8770:             "\x33\x57\x2f\x19\x1f\x2a\x19\x33\x22\xf3\x82\x73\xf1"
        !          8771:             "\x72\x10\x63\x72\x73\x72\x73\x63\x63\x63\x72\x7e" }  },
        !          8772:       /* --- pixel bitmap for cmr600 char#45 (noname) --- */
        !          8773:       {  45,135836,                     /* character number, location */
        !          8774:          21, 1,   16, 1,      /* topleft row,col, and botleft row,col */
        !          8775:           { 22,    5, 3, 6, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          8776:             "\xf4\x0e\x08" }  },
        !          8777:       /* --- pixel bitmap for cmr600 char#46 (noname) --- */
        !          8778:       {  46,111526,                     /* character number, location */
        !          8779:           9, 7,    0, 7,      /* topleft row,col, and botleft row,col */
        !          8780:           {  9,    9, 3,13, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          8781:             "\x33\x47\x1f\x49\x17\x43\x39" }  },
        !          8782:       /* --- pixel bitmap for cmr600 char#47 / --- */
        !          8783:       {  47,112046,                     /* character number, location */
        !          8784:          62, 5,  -21, 5,      /* topleft row,col, and botleft row,col */
        !          8785:           { 32,   83, 3,375, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          8786:             "\xe0\xe0\x12\xe0\xe0\x14\xf1\xe0\xd5\xe0\xd4\x10\xf1"
        !          8787:             "\xe0\xc5\x10\xe0\xc4\x20\xf1\xe0\xb5\x20\xe0\xb4\x30"
        !          8788:             "\xf1\xe0\xa5\x30\xe0\xa4\x40\xf1\xe0\x95\x40\xe0\x94"
        !          8789:             "\x50\xf1\xe0\x85\x50\xf1\xe0\x75\x60\xe0\x74\x70\xf1"
        !          8790:             "\xe0\x65\x70\xe0\x64\x80\xf1\xe0\x55\x80\xe0\x54\x90"
        !          8791:             "\xf1\xe0\x45\x90\xe0\x44\xa0\xf1\xe0\x35\xa0\xf1\xe0"
        !          8792:             "\x25\xb0\xe0\x24\xc0\xf1\xe0\x15\xc0\xe0\x14\xd0\xf1"
        !          8793:             "\xe5\xd0\xe4\xe0\xf1\xd5\xe0\xd4\xe0\x10\xf1\xc5\xe0"
        !          8794:             "\x10\xc4\xe0\x20\xf1\xb5\xe0\x20\xf1\xa5\xe0\x30\xa4"
        !          8795:             "\xe0\x40\xf1\x95\xe0\x40\x94\xe0\x50\xf1\x85\xe0\x50"
        !          8796:             "\x84\xe0\x60\xf1\x75\xe0\x60\x74\xe0\x70\xf1\x65\xe0"
        !          8797:             "\x70\xf1\x55\xe0\x80\x54\xe0\x90\xf1\x45\xe0\x90\x44"
        !          8798:             "\xe0\xa0\xf1\x35\xe0\xa0\x34\xe0\xb0\xf1\x25\xe0\xb0"
        !          8799:             "\x24\xe0\xc0\xf1\x15\xe0\xc0\x14\xe0\xdf\x15\xe0\xd4"
        !          8800:             "\xe0\xe0\x12\xe0\xe0\x15" }  },
        !          8801:       /* --- pixel bitmap for cmr600 char#48 0 --- */
        !          8802:       {  48,76377,                      /* character number, location */
        !          8803:          55, 3,   -2, 3,      /* topleft row,col, and botleft row,col */
        !          8804:           { 36,   57, 3,177, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          8805:             "\xe8\xe0\xbe\xe0\x66\x66\xe0\x35\xa5\xe0\x15\xc5\xd5"
        !          8806:             "\xe5\xb5\xe0\x25\x50\xf1\x45\xe0\x45\x40\xf1\x35\xe0"
        !          8807:             "\x65\x30\xf2\x26\xe0\x66\x20\xf4\x16\xe0\x86\x1f\xe7"
        !          8808:             "\xe0\x87\x0f\x37\xe0\x87\xf3\x16\xe0\x86\x10\x17\xe0"
        !          8809:             "\x67\x10\xf2\x26\xe0\x66\x20\x35\xe0\x65\x66\xe0\x46"
        !          8810:             "\x30\xf1\x45\xe0\x45\x40\x55\xe0\x25\xb5\xe5\xd5\xc5"
        !          8811:             "\xe0\x15\xa5\xe0\x36\x66\xe0\x6e\xe0\xb8\xe7" }  },
        !          8812:       /* --- pixel bitmap for cmr600 char#49 1 --- */
        !          8813:       {  49,77319,                      /* character number, location */
        !          8814:          55, 8,    0, 8,      /* topleft row,col, and botleft row,col */
        !          8815:           { 28,   55, 3,60, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          8816:             "\xe0\x12\xe0\xa4\xe0\x95\xe0\x77\xe0\x4a\xbe\x03\xba"
        !          8817:             "\x16\xb7\x46\xb0\xfe\xb6\xb0\xfe\xb6\xb0\xfc\xb6\xb0"
        !          8818:             "\x9a\x9f\x2e\x0e" }  },
        !          8819:       /* --- pixel bitmap for cmr600 char#50 2 --- */
        !          8820:       {  50,78374,                      /* character number, location */
        !          8821:          55, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          8822:           { 34,   55, 3,255, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          8823:             "\xc9\xe0\x8e\x01\xe0\x3e\x05\xe5\x7a\xa4\xd8\x93\xe0"
        !          8824:             "\x18\x73\xe0\x38\x53\xe0\x58\x33\xe0\x68\x33\xe0\x78"
        !          8825:             "\x22\xe0\x88\x17\xe0\x48\x18\xe0\x48\x0f\x49\xe0\x38"
        !          8826:             "\x17\xe0\x48\x33\xe0\x68\xe0\xc8\xf1\xe0\xb8\x10\xe0"
        !          8827:             "\xb7\xe0\xc8\xe0\xc7\xe0\xc7\xe0\xc8\xe0\xc7\xe0\xc7"
        !          8828:             "\xe0\xc7\xe0\xd6\xe0\xd6\xe0\xd6\xe0\xd5\xe0\xe5\xe0"
        !          8829:             "\xe5\xe0\xe5\xe0\xe5\xe0\xe4\xe0\xe0\x14\xe0\xe0\x14"
        !          8830:             "\xe0\x42\x94\xe0\x52\x93\xe0\x62\x83\xe0\x62\x83\xe0"
        !          8831:             "\x72\x73\xe0\x82\x63\xe0\x92\x53\xe0\x93\x4e\x0e\x02"
        !          8832:             "\x3e\x0e\x03\x2e\x0e\x03\x2f\x2e\x0e\x04\x24" }  },
        !          8833:       /* --- pixel bitmap for cmr600 char#51 3 --- */
        !          8834:       {  51,79524,                      /* character number, location */
        !          8835:          55, 4,   -2, 4,      /* topleft row,col, and botleft row,col */
        !          8836:           { 35,   57, 3,269, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          8837:             "\xc9\xe0\xae\xe0\x5e\x04\xe0\x16\x88\xc4\xc8\xa3\xe0"
        !          8838:             "\x18\x83\xe0\x38\x74\xe0\x28\x67\xe0\x18\x30\xf1\x28"
        !          8839:             "\xe8\x30\x29\xd8\x30\xf1\x28\xe8\x30\x36\xe0\x18\x83"
        !          8840:             "\xe0\x28\x30\xf1\xe0\x98\x40\xe0\x97\xe0\xd8\xe0\xd7"
        !          8841:             "\xe0\xd7\xe0\xd7\xe0\xd6\xe0\xd6\xe0\x8b\xe0\xae\xe0"
        !          8842:             "\xe0\x37\xe0\xe0\x17\xe0\xe0\x18\xe0\xe8\xe0\xe8\xe0"
        !          8843:             "\xd9\xe0\xd8\x20\xf1\xe0\xb9\x10\xe0\xc8\x10\xf1\xe0"
        !          8844:             "\xc9\x33\xe0\x69\x17\xe0\x49\x0f\x39\xe0\x39\x09\xe0"
        !          8845:             "\x29\x18\xe0\x39\x26\xe0\x48\x33\xe0\x69\x34\xe0\x58"
        !          8846:             "\x54\xe0\x38\x74\xe0\x18\x95\xc8\xb7\x88\xee\x05\xe0"
        !          8847:             "\x4e\x01\xe0\x99\xe4" }  },
        !          8848:       /* --- pixel bitmap for cmr600 char#52 4 --- */
        !          8849:       {  52,80572,                      /* character number, location */
        !          8850:          56, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          8851:           { 38,   56, 3,249, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          8852:             "\xf1\xe0\xc3\x90\xe0\xb4\xe0\xe0\x55\x90\xf1\xe0\x96"
        !          8853:             "\x90\xe0\x87\x90\xf1\xe0\x78\x90\xe0\x62\x16\xe0\xe3"
        !          8854:             "\x16\xe0\xe2\x26\xe0\xd2\x36\xe0\xc3\x36\xe0\xb3\x46"
        !          8855:             "\xe0\xb2\x56\xe0\xa2\x66\xe0\x93\x66\xe0\x92\x76\xe0"
        !          8856:             "\x82\x86\xe0\x73\x86\xe0\x72\x96\xe0\x62\xa6\xe0\x53"
        !          8857:             "\xa6\xe0\x43\xb6\xe0\x42\xc6\xe0\x32\xd6\xe0\x23\xd6"
        !          8858:             "\xe0\x22\xe6\xe0\x12\xe0\x16\xe3\xe0\x16\xe2\xe0\x26"
        !          8859:             "\xd2\xe0\x36\xc3\xe0\x36\xb3\xe0\x46\xb2\xe0\x56\xa2"
        !          8860:             "\xe0\x66\x93\xe0\x66\x9f\x2e\x0e\x0a\xfa\xe0\x96\x90"
        !          8861:             "\xe0\x88\x80\xf2\xe0\x1e\x08\x18" }  },
        !          8862:       /* --- pixel bitmap for cmr600 char#53 5 --- */
        !          8863:       {  53,81732,                      /* character number, location */
        !          8864:          55, 4,   -2, 4,      /* topleft row,col, and botleft row,col */
        !          8865:           { 34,   57, 3,231, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          8866:             "\x52\xe0\x82\x84\xe0\x44\x88\xa7\x9e\x0b\x9e\x0a\xae"
        !          8867:             "\x09\xbe\x07\xde\x06\xee\x04\xe0\x22\x2b\xe0\xf9\x52"
        !          8868:             "\xe0\xd0\x52\x78\xe0\x32\x4d\xe0\x12\x34\x75\xd2\x14"
        !          8869:             "\xa6\xb5\xd6\xa4\xe0\x16\x93\xe0\x35\x92\xe0\x46\x82"
        !          8870:             "\xe0\x56\xe0\xe6\x20\xf1\xe0\xc7\x10\xe0\xd6\x10\xf3"
        !          8871:             "\xe0\xd7\x32\xe0\x87\x16\xe0\x67\x0f\x38\xe0\x57\x08"
        !          8872:             "\xe0\x56\x17\xe0\x57\x15\xe0\x77\x22\xe0\x96\x33\xe0"
        !          8873:             "\x77\x42\xe0\x76\x53\xe0\x56\x73\xe0\x37\x83\xe0\x17"
        !          8874:             "\xa4\xc7\xc6\x77\xe0\x1e\x04\xe0\x4e\xe0\x98\xe6" }  },
        !          8875:       /* --- pixel bitmap for cmr600 char#54 6 --- */
        !          8876:       {  54,82756,                      /* character number, location */
        !          8877:          55, 4,   -2, 4,      /* topleft row,col, and botleft row,col */
        !          8878:           { 34,   57, 3,231, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          8879:             "\xe0\x47\xe0\xad\xe0\x5e\x02\xe0\x27\x84\xe6\xc3\xc6"
        !          8880:             "\xb5\xb6\xb7\x96\xb8\x86\xc8\x77\xc8\x76\xd8\x67\xe6"
        !          8881:             "\x76\xe0\x24\x77\xe0\xd6\xe0\xb0\xf2\x27\xe0\xb0\x18"
        !          8882:             "\xe0\xc7\xe0\xd7\x77\xd7\x4c\xa8\x34\x65\x88\x23\x95"
        !          8883:             "\x78\x13\xb5\x68\x12\xd5\x5b\xd6\x4a\xe0\x16\x3a\xe0"
        !          8884:             "\x17\x29\xe0\x27\x2f\x29\xe0\x37\x1f\x48\xe0\x48\xf4"
        !          8885:             "\x17\xe0\x48\x27\xe0\x38\xf1\x27\xe0\x37\x10\x36\xe0"
        !          8886:             "\x28\x46\xe0\x27\x66\xe0\x16\x76\xe7\x86\xd6\xa6\xb6"
        !          8887:             "\xc6\x96\xe6\x67\xe0\x2e\x03\xe0\x5d\xe0\xa7\xd6" }  },
        !          8888:       /* --- pixel bitmap for cmr600 char#55 7 --- */
        !          8889:       {  55,83814,                      /* character number, location */
        !          8890:          56, 5,   -2, 5,      /* topleft row,col, and botleft row,col */
        !          8891:           { 36,   58, 3,235, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          8892:             "\x22\xe0\xe0\x63\xe0\xe0\x55\xe0\xe0\x10\xf2\x2e\x0e"
        !          8893:             "\x06\x2e\x0e\x05\x2e\x0e\x06\x2e\x0e\x05\x33\xe0\xc3"
        !          8894:             "\x42\xe0\xd2\x52\xe0\xc3\x52\xe0\xb3\x62\xe0\xa3\x62"
        !          8895:             "\xe0\xb2\x72\xe0\xa3\x72\xe0\x93\xe0\xe0\x43\xe0\xe0"
        !          8896:             "\x52\xe0\xe0\x53\xe0\xe0\x43\xe0\xe0\x43\xe0\xe0\x52"
        !          8897:             "\xe0\xe0\x53\xd0\xf1\xe0\x53\xe0\xe0\x43\xe0\x10\xf1"
        !          8898:             "\xe0\x34\xe0\x10\xf1\xe0\x24\xe0\x20\xf1\xe0\x15\xe0"
        !          8899:             "\x20\xf2\xe5\xe0\x30\xf2\xd6\xe0\x30\xf2\xc6\xe0\x40"
        !          8900:             "\xf4\xb7\xe0\x40\xf8\xa8\xe0\x40\xb6\xe0\xe0\x34\xe0"
        !          8901:             "\x60" }  },
        !          8902:       /* --- pixel bitmap for cmr600 char#56 8 --- */
        !          8903:       {  56,84826,                      /* character number, location */
        !          8904:          55, 4,   -2, 4,      /* topleft row,col, and botleft row,col */
        !          8905:           { 34,   57, 3,267, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          8906:             "\xd8\xe0\x9e\xe0\x4e\x04\xe0\x16\x86\xd4\xd6\xa4\xe0"
        !          8907:             "\x16\x84\xe0\x35\x74\xe0\x55\x64\xe0\x64\x63\xe0\x75"
        !          8908:             "\x20\xf3\x24\xe0\x84\x20\x25\xe0\x74\x46\xe0\x55\x46"
        !          8909:             "\xe0\x54\x58\xe0\x34\x68\xe0\x14\x7a\xc5\x8a\xa5\x9c"
        !          8910:             "\x75\xbc\x54\xed\x24\xe0\x3e\x01\xe0\x6d\xe0\x9d\xe0"
        !          8911:             "\x8d\xe0\x5e\x03\xe0\x14\x3d\xd4\x6c\xa5\x9b\x85\xbb"
        !          8912:             "\x65\xea\x45\xe0\x29\x44\xe0\x58\x25\xe0\x67\x24\xe0"
        !          8913:             "\x8c\xe0\x96\x0f\x14\xe0\xb5\x0f\x34\xe0\xc4\x05\xe0"
        !          8914:             "\xb3\x10\xf1\x14\xe0\xa4\x10\x15\xe0\x84\x45\xe0\x74"
        !          8915:             "\x55\xe0\x54\x75\xe0\x34\x95\xe5\xb7\x87\xee\x04\xe0"
        !          8916:             "\x4e\xe0\x98\xd9" }  },
        !          8917:       /* --- pixel bitmap for cmr600 char#57 9 --- */
        !          8918:       {  57,85878,                      /* character number, location */
        !          8919:          55, 4,   -2, 4,      /* topleft row,col, and botleft row,col */
        !          8920:           { 34,   57, 3,235, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          8921:             "\xd8\xe0\xac\xe0\x6e\x02\xe0\x27\x66\xe6\x97\xb6\xb6"
        !          8922:             "\xa6\xd6\x87\xe6\x76\xe0\x16\x67\xe0\x26\x48\xe0\x26"
        !          8923:             "\x30\xf1\x17\xe0\x37\x28\xe0\x37\x2f\x48\xe0\x47\x1f"
        !          8924:             "\x48\xe0\x48\xf2\x17\xe0\x39\x27\xe0\x29\x27\xe0\x1a"
        !          8925:             "\x36\xe0\x1a\x46\xdb\x55\xd2\x18\x65\xb3\x18\x75\x93"
        !          8926:             "\x28\x85\x64\x38\xac\x47\xd7\x77\x10\xf1\xe0\xc7\x10"
        !          8927:             "\xe0\xb8\x10\xf2\xe0\xb7\x20\xe0\xa7\x74\xe0\x27\x66"
        !          8928:             "\xe0\x16\x68\xd7\x68\xd6\x78\xc6\x88\xb6\x97\xc6\xa5"
        !          8929:             "\xc6\xb3\xc7\xd5\x86\xe0\x2e\x03\xe0\x5d\xe0\x98\xe0"
        !          8930:             "\x35" }  },
        !          8931:       /* --- pixel bitmap for cmr600 char#58 : --- */
        !          8932:       {  58,112758,                     /* character number, location */
        !          8933:          36, 7,    0, 7,      /* topleft row,col, and botleft row,col */
        !          8934:           {  9,   36, 3,35, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          8935:             "\x33\x47\x1f\x49\x17\x43\x30\xfe\x90\xf2\x90\x33\x47"
        !          8936:             "\x1f\x49\x17\x43\x34" }  },
        !          8937:       /* --- pixel bitmap for cmr600 char#59 ; --- */
        !          8938:       {  59,113449,                     /* character number, location */
        !          8939:          36, 7,  -16, 7,      /* topleft row,col, and botleft row,col */
        !          8940:           {  9,   52, 3,73, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          8941:             "\x33\x47\x1f\x49\x17\x43\x30\xfe\x90\xf2\x90\x33\x47"
        !          8942:             "\x18\x1f\x39\x18\x33\x12\xf3\x72\x63\xf1\x62\x10\x53"
        !          8943:             "\x10\xf1\x52\x20\x43\x53\x62\x63\x53\x62\x60" }  },
        !          8944:       /* --- pixel bitmap for cmr600 char#60 (noname) --- */
        !          8945:       {  60,104151,                     /* character number, location */
        !          8946:          42, 7,  -18, 7,      /* topleft row,col, and botleft row,col */
        !          8947:           {  9,   60, 3,43, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          8948:             "\x33\x47\x1f\x49\x17\x43\x30\xf7\x90\xfa\x33\x30\xfa"
        !          8949:             "\x25\x20\xfa\x17\x1f\x79\x17\x43\x35" }  },
        !          8950:       /* --- pixel bitmap for cmr600 char#61 = --- */
        !          8951:       {  61,114179,                     /* character number, location */
        !          8952:          32, 5,   10, 5,      /* topleft row,col, and botleft row,col */
        !          8953:           { 55,   22, 2,23, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          8954:             "\x01\x35\x01\xff\x01\x37\x01\x35\x01\x00\xff\x0d\x37"
        !          8955:             "\x00\x01\x35\x01\xff\x01\x37\x01\x35\x01" }  },
        !          8956:       /* --- pixel bitmap for cmr600 char#62 (noname) --- */
        !          8957:       {  62,90837,                      /* character number, location */
        !          8958:          42, 5,  -17, 5,      /* topleft row,col, and botleft row,col */
        !          8959:           { 29,   59, 3,173, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          8960:             "\xc3\xe0\xa7\xc0\xf4\x99\xb0\xa7\xe0\xa3\xe0\xf7\xe0"
        !          8961:             "\xe0\x10\xf3\xd2\xe0\xc3\xe0\xf5\xc2\xe0\x10\xf2\xb3"
        !          8962:             "\xe0\x10\xf1\xa3\xe0\x20\x94\xe0\x20\xf1\x84\xe0\x30"
        !          8963:             "\x75\xe0\x95\xe0\x96\xe0\x86\xe0\x86\xe0\x87\xe0\x60"
        !          8964:             "\xf1\x17\xe0\x77\xe0\x24\x27\xe0\x16\x1f\x37\xe8\x07"
        !          8965:             "\xe0\x1e\xe0\x25\x26\xe0\x43\x27\xe0\x23\x46\xe0\x13"
        !          8966:             "\x66\xc4\x86\x85\xce\x01\xe0\x39\xb0" }  },
        !          8967:       /* --- pixel bitmap for cmr600 char#63 ? --- */
        !          8968:       {  63,89801,                      /* character number, location */
        !          8969:          59, 5,    0, 5,      /* topleft row,col, and botleft row,col */
        !          8970:           { 29,   59, 3,159, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          8971:             "\xa9\xe0\x3e\x01\xc5\x77\x93\xc7\x54\xe7\x42\xe0\x37"
        !          8972:             "\x23\xe0\x37\x25\xe0\x26\x17\xe0\x17\x0f\x38\xe7\x16"
        !          8973:             "\xe0\x17\x24\xe0\x18\xf1\xe0\x77\x10\xe0\x67\xe0\x77"
        !          8974:             "\xe0\x76\xe0\x86\xe0\x95\xe0\x95\xe0\xa4\x90\xf1\xe0"
        !          8975:             "\x14\xa0\xe4\xb0\xf1\xe3\xc0\xf2\xd3\xd0\xf9\xd2\xe0"
        !          8976:             "\xf7\xe0\xe0\x10\xc3\xe0\xa7\xc0\xf4\x99\xb0\xa7\xe0"
        !          8977:             "\xa3\xe0" }  },
        !          8978:       /* --- pixel bitmap for cmr600 char#64 @ --- */
        !          8979:       {  64,115361,                     /* character number, location */
        !          8980:          59, 5,   -1, 5,      /* topleft row,col, and botleft row,col */
        !          8981:           { 55,   60, 3,431, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          8982:             "\xe0\x99\xe0\xe0\xee\x03\xe0\xe0\x86\x96\xe0\xe0\x44"
        !          8983:             "\xe0\x34\xe0\xe4\xe0\x74\xe0\xb3\xe0\xb3\xe0\x84\xe0"
        !          8984:             "\xd4\xe0\x53\xe0\xe0\x33\xe0\x33\xe0\xe0\x53\xe0\x13"
        !          8985:             "\xe0\xe0\x73\xd3\xe0\xe0\x93\xc2\xe0\xe0\xb2\xb3\xe0"
        !          8986:             "\x27\xe0\x23\x93\xec\xe0\x13\x82\xd6\x64\xe2\x73\xc5"
        !          8987:             "\xa3\xd3\x62\xc5\xc3\xd2\x53\xb5\xe3\xc3\x42\xb5\xe0"
        !          8988:             "\x23\xc2\x42\xa6\xe0\x37\x72\x33\x96\xe0\x47\x73\x22"
        !          8989:             "\xa6\xe0\x56\x82\x10\xf1\x12\x96\xe0\x66\x82\x13\x96"
        !          8990:             "\xe0\x66\x83\x0f\x92\x96\xe0\x76\x92\x03\x96\xe0\x66"
        !          8991:             "\x92\xf1\x12\x96\xe0\x66\x92\x12\xa6\xe0\x56\x83\x13"
        !          8992:             "\x96\xe0\x47\x82\x32\xa6\xe0\x37\x82\x32\xb5\xe0\x28"
        !          8993:             "\x82\x33\xb5\xe9\x73\x42\xc5\xc3\x16\x72\x53\xc5\xa3"
        !          8994:             "\x36\x53\x62\xd6\x64\x55\x43\x73\xec\x8a\x93\xe0\x27"
        !          8995:             "\xc6\xc2\xe0\xe0\xe0\xb3\xe0\xe0\xe0\xb3\xe0\xe0\xe0"
        !          8996:             "\xb3\xe0\xe0\xe0\xb3\xe0\xe0\xe0\xb4\xe0\xe0\x85\xc3"
        !          8997:             "\xe0\xe0\x48\xd4\xe0\xd9\xe0\x34\xe0\x89\xe0\x86\xcb"
        !          8998:             "\xe0\xee\x09\xe0\xe0\x8d\xe0\x55" }  },
        !          8999:       /* --- pixel bitmap for cmr600 char#65 A --- */
        !          9000:       {  65, 1092,                      /* character number, location */
        !          9001:          60, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          9002:           { 56,   60, 3,324, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          9003:             "\xe0\xd2\xe0\xd0\xf2\xe0\xc4\xe0\xc0\xf2\xe0\xb6\xe0"
        !          9004:             "\xb0\xf2\xe0\xa8\xe0\xa0\xf2\xe0\x92\x17\xe0\x90\xf2"
        !          9005:             "\xe0\x82\x37\xe0\x80\xf2\xe0\x72\x57\xe0\x70\xf1\xe0"
        !          9006:             "\x62\x77\xe0\x60\xe0\x53\x78\xe0\x50\xf1\xe0\x52\x97"
        !          9007:             "\xe0\x50\xe0\x43\x98\xe0\x40\xf1\xe0\x42\xb7\xe0\x40"
        !          9008:             "\xe0\x33\xb8\xe0\x30\xf1\xe0\x32\xd7\xe0\x30\xe0\x22"
        !          9009:             "\xe8\xe0\x20\xf1\xe0\x22\xe0\x17\xe0\x20\xf2\xe0\x12"
        !          9010:             "\xe0\x37\xe0\x10\xf1\xe2\xe0\x57\xe0\xee\x0e\xe0\xf1"
        !          9011:             "\xde\x0e\x02\xd0\xd2\xe0\x77\xd0\xf2\xc2\xe0\x97\xc0"
        !          9012:             "\xf1\xb2\xe0\xb7\xb0\xa3\xe0\xb8\xa0\xf1\xa2\xe0\xd7"
        !          9013:             "\xa0\x93\xe0\xd8\x90\xf1\x92\xe0\xe0\x17\x90\x83\xe0"
        !          9014:             "\xe0\x18\xe0\x14\xe0\xe0\x27\xe6\xe0\xe9\xba\xe0\xbb"
        !          9015:             "\x6f\x2e\x03\xe0\x3e\x08" }  },
        !          9016:       /* --- pixel bitmap for cmr600 char#66 B --- */
        !          9017:       {  66, 2620,                      /* character number, location */
        !          9018:          57, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          9019:           { 52,   57, 3,309, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          9020:             "\x0e\x0e\x08\xe0\x2e\x0e\x0c\xce\x0e\x0e\xe0\x49\xe0"
        !          9021:             "\x3a\xe0\x37\xe0\x69\xe0\x27\xe0\x88\xe0\x17\xe0\x98"
        !          9022:             "\xe7\xe0\x99\xd7\xe0\xa8\xd7\xe0\xa9\xc7\xe0\xb8\x30"
        !          9023:             "\xf5\x97\xe0\xb9\x20\xf1\x97\xe0\xb8\x30\x97\xe0\xa9"
        !          9024:             "\xc7\xe0\xa8\xd7\xe0\x98\xe7\xe0\x88\xe0\x17\xe0\x78"
        !          9025:             "\xe0\x27\xe0\x68\xe0\x37\xe0\x48\xa0\xf1\x9e\x0e\x03"
        !          9026:             "\xc0\x97\xe0\x49\xe0\x47\xe0\x77\xe0\x37\xe0\x88\xe0"
        !          9027:             "\x17\xe0\x98\xe7\xe0\xa8\xd7\xe0\xb8\x30\xf1\x97\xe0"
        !          9028:             "\xc8\x20\x97\xe0\xc9\xa7\xe0\xd8\x10\xf6\x97\xe0\xd9"
        !          9029:             "\x97\xe0\xd8\x10\xf1\x97\xe0\xc9\x10\x97\xe0\xb9\x20"
        !          9030:             "\xf1\x97\xe0\xa9\x30\x97\xe0\x8a\xd7\xe0\x7a\xd9\xe0"
        !          9031:             "\x4a\x7e\x0e\x0e\x02\x8e\x0e\x0e\xae\x0e\x0a\xe0" }  },
        !          9032:       /* --- pixel bitmap for cmr600 char#67 C --- */
        !          9033:       {  67, 3703,                      /* character number, location */
        !          9034:          59, 5,   -2, 5,      /* topleft row,col, and botleft row,col */
        !          9035:           { 50,   61, 3,329, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          9036:             "\xe0\xa9\xe0\x12\xe0\x6e\x02\xb3\xe0\x4e\x06\x93\xe0"
        !          9037:             "\x29\x96\x64\xe8\xe0\x14\x45\xc8\xe0\x44\x26\xb8\xe0"
        !          9038:             "\x73\x16\xa8\xe0\x99\x98\xe0\xb8\x88\xe0\xd7\x78\xe0"
        !          9039:             "\xe7\x68\xe0\xe0\x26\xf1\x58\xe0\xe0\x45\xf1\x48\xe0"
        !          9040:             "\xe0\x64\x38\xe0\xe0\x74\x38\xe0\xe0\x83\x29\xe0\xe0"
        !          9041:             "\x83\x28\xe0\xe0\x93\xf3\x19\xe0\xe0\xa2\x0f\xc9\xe0"
        !          9042:             "\xe0\xd0\x19\xe0\xe0\xc0\xf2\x19\xe0\xe0\xa2\x28\xe0"
        !          9043:             "\xe0\xa2\x29\xe0\xe0\x92\x38\xe0\xe0\x83\x38\xe0\xe0"
        !          9044:             "\x82\x58\xe0\xe0\x72\x58\xe0\xe0\x63\x68\xe0\xe0\x52"
        !          9045:             "\x78\xe0\xe0\x43\x88\xe0\xe0\x33\x98\xe0\xe0\x13\xb8"
        !          9046:             "\xe0\xd3\xd8\xe0\xc3\xe8\xe0\xa3\xe0\x28\xe0\x74\xe0"
        !          9047:             "\x48\xe0\x54\xe0\x78\xe0\x15\xe0\xa9\x96\xe0\xee\x07"
        !          9048:             "\xe0\xe0\x3e\x02\xe0\xe0\xa9\xe0\x30" }  },
        !          9049:       /* --- pixel bitmap for cmr600 char#68 D --- */
        !          9050:       {  68, 5017,                      /* character number, location */
        !          9051:          57, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          9052:           { 55,   57, 3,299, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          9053:             "\x0e\x0e\x07\xe0\x6e\x0e\x0a\xe0\x3e\x0e\x0c\xe0\x89"
        !          9054:             "\xe0\x2a\xe0\x77\xe0\x68\xe0\x67\xe0\x88\xe0\x47\xe0"
        !          9055:             "\x98\xe0\x37\xe0\xb7\xe0\x27\xe0\xc7\xe0\x17\xe0\xc8"
        !          9056:             "\xe7\xe0\xd7\xe7\xe0\xe7\xd7\xe0\xe8\xc7\xe0\xe0\x17"
        !          9057:             "\xc7\xe0\xe0\x18\xb7\xe0\xe0\x27\x30\xf2\x87\xe0\xe0"
        !          9058:             "\x28\x20\xf3\x87\xe0\xe0\x38\x10\xfb\x87\xe0\xe0\x39"
        !          9059:             "\xf3\x87\xe0\xe0\x38\x10\xf1\x87\xe0\xe0\x28\x20\x87"
        !          9060:             "\xe0\xe0\x27\xb7\xe0\xe0\x18\x30\xf1\x87\xe0\xe0\x17"
        !          9061:             "\x40\x87\xe0\xe7\xd7\xe0\xd8\xd7\xe0\xd7\xe7\xe0\xc7"
        !          9062:             "\xe0\x17\xe0\xb7\xe0\x27\xe0\xa7\xe0\x37\xe0\x88\xe0"
        !          9063:             "\x47\xe0\x69\xe0\x49\xe0\x2a\xde\x0e\x0c\xe0\x1e\x0e"
        !          9064:             "\x0a\xe0\x3e\x0e\x07\xe0\x65" }  },
        !          9065:       /* --- pixel bitmap for cmr600 char#69 E --- */
        !          9066:       {  69, 6610,                      /* character number, location */
        !          9067:          57, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          9068:           { 51,   57, 3,293, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          9069:             "\xf2\x0e\x0e\x0e\x04\x50\x79\xe0\x6a\xd7\xe0\xa7\xd7"
        !          9070:             "\xe0\xc6\xc7\xe0\xd5\xc7\xe0\xe4\x40\xf2\x87\xe0\xe0"
        !          9071:             "\x13\x40\xf2\x87\xe0\xe0\x22\x40\x87\xe0\xe0\x23\xb7"
        !          9072:             "\xe0\xe0\x32\x30\xf2\x87\xe0\x32\xc2\x30\xf2\x87\xe0"
        !          9073:             "\x32\xe0\x30\xf1\x87\xe0\x23\xe0\x30\x87\xe0\x14\xe0"
        !          9074:             "\xb7\xd6\xe0\x30\xf2\x8e\x0c\xe0\x30\x87\xd6\xe0\xb7"
        !          9075:             "\xe0\x14\xe0\x30\xf1\x87\xe0\x23\xe0\x30\xf1\x87\xe0"
        !          9076:             "\x32\xe0\x30\xf2\x87\xe0\x32\xe0\x12\x87\xe0\x32\xe3"
        !          9077:             "\xf3\x87\xe0\xe0\x52\x10\xf2\x87\xe0\xe0\x43\x10\xf1"
        !          9078:             "\x87\xe0\xe0\x33\x20\xf1\x87\xe0\xe0\x24\x20\x87\xe0"
        !          9079:             "\xe0\x15\xa7\xe0\xd7\xa7\xe0\xc8\x99\xe0\x7b\x3f\x2e"
        !          9080:             "\x0e\x0e\x06\x3e" }  },
        !          9081:       /* --- pixel bitmap for cmr600 char#70 F --- */
        !          9082:       {  70, 8069,                      /* character number, location */
        !          9083:          57, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          9084:           { 49,   57, 3,197, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          9085:             "\xf2\x0e\x0e\x0e\x05\x20\x89\xe0\x6a\xb7\xe0\xa7\xb7"
        !          9086:             "\xe0\xc6\xa7\xe0\xd5\xa7\xe0\xe4\x10\xf2\x97\xe0\xe0"
        !          9087:             "\x13\x10\xf2\x97\xe0\xe0\x22\x10\x97\xe0\xe0\x23\xf1"
        !          9088:             "\x97\xe0\xe0\x32\xf1\x97\xe0\x32\xc2\xf3\x97\xe0\x32"
        !          9089:             "\xe0\xf1\x97\xe0\x23\xe0\x97\xe0\x14\xe0\x97\xd6\xe0"
        !          9090:             "\xf2\x9e\x0c\xe0\x97\xd6\xe0\x97\xe0\x14\xe0\xf1\x97"
        !          9091:             "\xe0\x23\xe0\xf5\x97\xe0\x32\xe0\xfc\x97\xe0\xe0\x50"
        !          9092:             "\x8a\xe0\xe0\x3f\x2e\x0d\xe0\x80" }  },
        !          9093:       /* --- pixel bitmap for cmr600 char#71 G --- */
        !          9094:       {  71, 9398,                      /* character number, location */
        !          9095:          59, 5,   -2, 5,      /* topleft row,col, and botleft row,col */
        !          9096:           { 56,   61, 3,371, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          9097:             "\xe0\xa9\xe0\x12\xe0\xce\x02\xb3\xe0\xae\x06\x93\xe0"
        !          9098:             "\x89\x96\x64\xe0\x68\xe0\x14\x45\xe0\x48\xe0\x44\x26"
        !          9099:             "\xe0\x38\xe0\x73\x16\xe0\x28\xe0\x99\xe0\x18\xe0\xb8"
        !          9100:             "\xe8\xe0\xd7\xd8\xe0\xe7\xc8\xe0\xe0\x26\x60\xf1\x58"
        !          9101:             "\xe0\xe0\x45\x60\xf1\x48\xe0\xe0\x64\x60\x38\xe0\xe0"
        !          9102:             "\x74\x98\xe0\xe0\x83\x89\xe0\xe0\x83\x88\xe0\xe0\x93"
        !          9103:             "\x60\xf3\x19\xe0\xe0\xa2\x6f\xa9\xe0\xe0\xe0\x5f\x19"
        !          9104:             "\xe0\xae\x09\x19\xe0\x9e\x09\x19\xe0\xe0\x3a\x50\xf1"
        !          9105:             "\x19\xe0\xe0\x57\x60\x28\xe0\xe0\x57\x89\xe0\xe0\x47"
        !          9106:             "\x60\xf1\x38\xe0\xe0\x47\x60\xf1\x48\xe0\xe0\x37\x60"
        !          9107:             "\xf1\x58\xe0\xe0\x27\x60\x68\xe0\xe0\x17\xd8\xe0\xe7"
        !          9108:             "\xe8\xe0\xc8\xe0\x18\xe0\xb8\xe0\x28\xe0\x99\xe0\x38"
        !          9109:             "\xe0\x73\x25\xe0\x49\xe0\x44\x25\xe0\x69\xe0\x14\x44"
        !          9110:             "\xe0\x8a\x95\x73\xe0\xae\x07\x92\xe0\xce\x03\xe0\xe0"
        !          9111:             "\xe0\x1a\xe0\x80" }  },
        !          9112:       /* --- pixel bitmap for cmr600 char#72 H --- */
        !          9113:       {  72,10809,                      /* character number, location */
        !          9114:          57, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          9115:           { 58,   57, 3,84, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          9116:             "\xf2\x0e\x0b\x8e\x0b\x89\xe0\xa9\x80\xfe\x97\xe0\xc7"
        !          9117:             "\x90\xf6\x97\xe0\xc7\x90\xf2\x9e\x0e\x0c\x90\xfe\x97"
        !          9118:             "\xe0\xc7\x90\xf8\x97\xe0\xc7\x90\x89\xe0\xa9\x8f\x2e"
        !          9119:             "\x0b\x8e\x0b" }  },
        !          9120:       /* --- pixel bitmap for cmr600 char#73 I --- */
        !          9121:       {  73,11684,                      /* character number, location */
        !          9122:          57, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          9123:           { 25,   57, 2,20, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          9124:             "\xff\x02\x00\x19\x08\x09\x08\x00\xff\x30\x09\x07\x09"
        !          9125:             "\x00\x08\x09\x08\xff\x02\x19" }  },
        !          9126:       /* --- pixel bitmap for cmr600 char#74 J --- */
        !          9127:       {  74,12566,                      /* character number, location */
        !          9128:          57, 4,   -2, 4,      /* topleft row,col, and botleft row,col */
        !          9129:           { 35,   59, 3,99, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          9130:             "\xf2\xbe\x0a\xe0\x6a\x50\xfe\xe0\x87\x60\xfe\xe0\x87"
        !          9131:             "\x60\xf8\xe0\x87\x60\x33\xe0\x27\x77\xe7\x6f\x39\xd7"
        !          9132:             "\x69\xc7\x78\xd7\x85\xe7\x93\xe0\x27\xa3\xe7\xc3\xc7"
        !          9133:             "\xe3\xa7\xe0\x24\x76\xe0\x6d\xe0\xa8\xe0\x40" }  },
        !          9134:       /* --- pixel bitmap for cmr600 char#75 K --- */
        !          9135:       {  75,13889,                      /* character number, location */
        !          9136:          57, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          9137:           { 58,   57, 3,424, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          9138:             "\xf2\x0e\x0b\xe0\x1e\x03\x10\x89\xe0\xbb\xe7\xe0\xd7"
        !          9139:             "\xe0\x37\xe0\xd5\xe0\x57\xe0\xd4\xe0\x67\xe0\xd3\xe0"
        !          9140:             "\x77\xe0\xc3\xe0\x87\xe0\xb3\xe0\x97\xe0\xa3\xe0\xa7"
        !          9141:             "\xe0\x93\xe0\xb7\xe0\x83\xe0\xc7\xe0\x64\xe0\xd7\xe0"
        !          9142:             "\x53\xe0\xe0\x17\xe0\x43\xe0\xe0\x27\xe0\x33\xe0\xe0"
        !          9143:             "\x37\xe0\x23\xe0\xe0\x47\xe0\x13\xe0\xe0\x57\xe3\xe0"
        !          9144:             "\xe0\x67\xd3\xe0\xe0\x77\xc3\xe0\xe0\x87\xb4\xe0\xe0"
        !          9145:             "\x87\xa6\xe0\xe0\x77\x97\xe0\xe0\x77\x89\xe0\xe0\x67"
        !          9146:             "\x7b\xe0\xe0\x57\x63\x18\xe0\xe0\x57\x53\x38\xe0\xe0"
        !          9147:             "\x47\x43\x58\xe0\xe0\x37\x33\x68\xe0\xe0\x37\x23\x88"
        !          9148:             "\xe0\xe0\x27\x13\xa8\xe0\xe0\x1a\xb8\xe0\xe0\x19\xd8"
        !          9149:             "\xe0\xe8\xe0\x18\xe0\xd7\xe0\x28\xe0\xd7\xe0\x38\xe0"
        !          9150:             "\x30\xf1\x97\xe0\x48\xe0\x20\x97\xe0\x58\xe0\x10\xf1"
        !          9151:             "\x97\xe0\x68\xe0\x97\xe0\x78\xd0\xf1\x97\xe0\x88\xc0"
        !          9152:             "\x97\xe0\x98\xb0\xf1\x97\xe0\xa8\xa0\x97\xe0\xb8\x90"
        !          9153:             "\xf1\x97\xe0\xc8\x80\x97\xe0\xc9\xe0\x19\xe0\xac\x5f"
        !          9154:             "\x2e\x0b\xce\x07" }  },
        !          9155:       /* --- pixel bitmap for cmr600 char#76 L --- */
        !          9156:       {  76,15054,                      /* character number, location */
        !          9157:          57, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          9158:           { 47,   57, 3,135, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          9159:             "\xf2\x0e\x0d\xe0\x60\x8a\xe0\xe0\x10\xfe\x97\xe0\xe0"
        !          9160:             "\x30\xfe\x97\xe0\xe0\x30\x97\xe0\xe0\x30\xf4\x97\xe0"
        !          9161:             "\xe0\x12\x97\xe0\xe3\xf2\x97\xe0\xe2\x10\xf2\x97\xe0"
        !          9162:             "\xd3\x10\x97\xe0\xc4\x10\xf1\x97\xe0\xb5\x10\x97\xe0"
        !          9163:             "\xa6\xa7\xe0\x88\xa7\xe0\x69\xa9\xe0\x2c\x2f\x2e\x0e"
        !          9164:             "\x0e\x03\x23" }  },
        !          9165:       /* --- pixel bitmap for cmr600 char#77 M --- */
        !          9166:       {  77,16506,                      /* character number, location */
        !          9167:          57, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          9168:           { 70,   57, 3,346, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          9169:             "\x0e\x02\xe0\xe0\xae\x02\x0f\x1e\x03\xe0\xe0\x8e\x03"
        !          9170:             "\x89\xe0\xe0\x89\x80\xf1\x92\x16\xe0\xe0\x62\x16\x90"
        !          9171:             "\xf2\x92\x26\xe0\xe0\x42\x26\x90\xf2\x92\x36\xe0\xe0"
        !          9172:             "\x22\x36\x90\xf1\x92\x46\xe0\xe2\x46\x90\xf2\x92\x56"
        !          9173:             "\xe0\xc2\x56\x90\xf1\x92\x66\xe0\xa2\x66\x90\xf2\x92"
        !          9174:             "\x76\xe0\x82\x76\x90\xf2\x92\x86\xe0\x62\x86\x90\xf1"
        !          9175:             "\x92\x96\xe0\x42\x96\x90\xf2\x92\xa6\xe0\x22\xa6\x90"
        !          9176:             "\xf1\x92\xb6\xe2\xb6\x90\xf2\x92\xc6\xc2\xc6\x90\xf2"
        !          9177:             "\x92\xd6\xa2\xd6\x90\xf1\x92\xe6\x82\xe6\x90\xf2\x92"
        !          9178:             "\xe0\x16\x62\xe0\x16\x90\xf1\x92\xe0\x26\x42\xe0\x26"
        !          9179:             "\x90\xf2\x92\xe0\x36\x22\xe0\x36\x90\xf2\x92\xe0\x48"
        !          9180:             "\xe0\x46\x90\x84\xe0\x46\xe0\x56\xe0\x26\xe0\x36\xe0"
        !          9181:             "\x56\xea\xe0\x24\xe0\x58\x8f\x1e\x06\xb4\xbe\x0a\x0e"
        !          9182:             "\x06\xc2\xce\x0a" }  },
        !          9183:       /* --- pixel bitmap for cmr600 char#78 N --- */
        !          9184:       {  78,18024,                      /* character number, location */
        !          9185:          57, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          9186:           { 58,   57, 3,461, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          9187:             "\x0e\x02\xe0\x8e\x0e\x09\xe0\x7e\x0e\x0a\xe0\x6e\x06"
        !          9188:             "\x99\xe0\xba\xea\xe0\xc6\xe0\x22\x18\xe0\xc4\xe0\x32"
        !          9189:             "\x18\xe0\xd2\xe0\x42\x28\xe0\xc2\xe0\x42\x38\xe0\xb2"
        !          9190:             "\xe0\x42\x47\xe0\xb2\xe0\x42\x48\xe0\xa2\xe0\x42\x58"
        !          9191:             "\xe0\x92\x90\xf1\x92\x68\xe0\x82\x90\x92\x78\xe0\x72"
        !          9192:             "\x90\xf1\x92\x88\xe0\x62\x90\x92\x98\xe0\x52\x90\xf1"
        !          9193:             "\x92\xa8\xe0\x42\x90\x92\xb8\xe0\x32\xe0\x42\xc8\xe0"
        !          9194:             "\x22\xe0\x42\xd7\xe0\x22\xe0\x42\xd8\xe0\x12\xe0\x42"
        !          9195:             "\xe8\xe2\x90\xf1\x92\xe0\x18\xd2\x90\x92\xe0\x28\xc2"
        !          9196:             "\x90\xf1\x92\xe0\x38\xb2\x90\x92\xe0\x48\xa2\x90\xf1"
        !          9197:             "\x92\xe0\x58\x92\x90\x92\xe0\x68\x82\x90\xf1\x92\xe0"
        !          9198:             "\x78\x72\x90\x92\xe0\x88\x62\xe0\x42\xe0\x98\x52\xe0"
        !          9199:             "\x42\xe0\xa7\x52\xe0\x42\xe0\xa8\x42\xe0\x42\xe0\xb8"
        !          9200:             "\x32\x90\xf1\x92\xe0\xc8\x22\x90\x92\xe0\xd8\x12\x90"
        !          9201:             "\xf1\x92\xe0\xea\x90\x92\xe0\xe0\x19\x90\xf1\x92\xe0"
        !          9202:             "\xe0\x28\x90\x92\xe0\xe0\x37\xe0\x42\xe0\xe0\x46\xe0"
        !          9203:             "\x34\xe0\xe0\x45\xe0\x26\xe0\xe0\x35\xea\xe0\xe0\x24"
        !          9204:             "\x9f\x1e\x06\xe0\xc3\x9e\x06\xe0\xd2\x90" }  },
        !          9205:       /* --- pixel bitmap for cmr600 char#79 O --- */
        !          9206:       {  79,19117,                      /* character number, location */
        !          9207:          59, 5,   -2, 5,      /* topleft row,col, and botleft row,col */
        !          9208:           { 55,   61, 3,339, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          9209:             "\xe0\x99\xe0\xe0\xee\x03\xe0\xe0\x87\x77\xe0\xe0\x46"
        !          9210:             "\xd6\xe0\xe6\xe0\x36\xe0\xb6\xe0\x56\xe0\x96\xe0\x76"
        !          9211:             "\xe0\x67\xe0\x97\xe0\x46\xe0\xb6\xe0\x36\xe0\xd6\xe0"
        !          9212:             "\x17\xe0\xd7\xd7\xe0\xe0\x17\x60\xf1\x57\xe0\xe0\x37"
        !          9213:             "\x50\xf1\x47\xe0\xe0\x57\x40\x38\xe0\xe0\x58\x67\xe0"
        !          9214:             "\xe0\x77\x30\xf2\x28\xe0\xe0\x78\x20\x19\xe0\xe0\x79"
        !          9215:             "\x10\xf2\x18\xe0\xe0\x98\x1f\xb9\xe0\xe0\x99\x18\xe0"
        !          9216:             "\xe0\x98\x10\xf2\x19\xe0\xe0\x79\x10\xf1\x28\xe0\xe0"
        !          9217:             "\x78\x20\xf2\x38\xe0\xe0\x58\x30\x48\xe0\xe0\x38\x97"
        !          9218:             "\xe0\xe0\x37\xa8\xe0\xe0\x18\xb7\xe0\xe0\x17\xd7\xe0"
        !          9219:             "\xd7\xe8\xe0\xb8\xe0\x17\xe0\xb7\xe0\x37\xe0\x97\xe0"
        !          9220:             "\x57\xe0\x77\xe0\x86\xe0\x56\xe0\xb7\xe0\x17\xe0\xe6"
        !          9221:             "\xd6\xe0\xe0\x47\x77\xe0\xe0\x8e\x03\xe0\xe0\xe9\xe0"
        !          9222:             "\x92" }  },
        !          9223:       /* --- pixel bitmap for cmr600 char#80 P --- */
        !          9224:       {  80,20444,                      /* character number, location */
        !          9225:          57, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          9226:           { 48,   57, 3,185, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          9227:             "\x0e\x0e\x06\xee\x0e\x09\xbe\x0e\x0b\xe0\x29\xe0\x1a"
        !          9228:             "\xe0\x17\xe0\x58\xe7\xe0\x77\xd7\xe0\x87\xc7\xe0\x97"
        !          9229:             "\xb7\xe0\x98\xa7\xe0\x99\x10\xf1\x87\xe0\xa8\x10\xf6"
        !          9230:             "\x87\xe0\xa9\xf1\x87\xe0\xa8\x10\xf1\x87\xe0\x98\x20"
        !          9231:             "\x87\xe0\x88\xb7\xe0\x87\xc7\xe0\x77\xd7\xe0\x58\xe7"
        !          9232:             "\xe0\x29\xe0\x2e\x0e\x02\xe0\x4e\x0e\xc0\xfe\x87\xe0"
        !          9233:             "\xe0\x50\xf7\x87\xe0\xe0\x50\x79\xe0\xe0\x4f\x2e\x09"
        !          9234:             "\xe0\xb8" }  },
        !          9235:       /* --- pixel bitmap for cmr600 char#81 Q --- */
        !          9236:       {  81,21583,                      /* character number, location */
        !          9237:          59, 5,  -16, 5,      /* topleft row,col, and botleft row,col */
        !          9238:           { 55,   75, 3,455, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          9239:             "\xe0\x99\xe0\xe0\xee\x03\xe0\xe0\x87\x77\xe0\xe0\x46"
        !          9240:             "\xd6\xe0\xe7\xe0\x17\xe0\xb6\xe0\x56\xe0\x96\xe0\x76"
        !          9241:             "\xe0\x67\xe0\x97\xe0\x46\xe0\xb6\xe0\x36\xe0\xd6\xe0"
        !          9242:             "\x17\xe0\xd7\xd7\xe0\xe0\x17\xb8\xe0\xe0\x18\xa7\xe0"
        !          9243:             "\xe0\x37\x98\xe0\xe0\x38\x87\xe0\xe0\x57\x40\xf1\x38"
        !          9244:             "\xe0\xe0\x58\x30\xf2\x28\xe0\xe0\x78\x20\xf1\x19\xe0"
        !          9245:             "\xe0\x79\x10\xf1\x18\xe0\xe0\x98\x1f\xb9\xe0\xe0\x99"
        !          9246:             "\x18\xe0\xe0\x98\x10\xf2\x19\xe0\xe0\x79\x10\xf1\x28"
        !          9247:             "\xe0\xe0\x78\x20\xf2\x38\xe0\xe0\x58\x30\x48\xe0\xe0"
        !          9248:             "\x38\x97\xd5\xd7\xa8\xa9\xa8\xb7\x93\x53\x97\xd7\x82"
        !          9249:             "\x82\x77\xe7\x73\x83\x67\xe0\x17\x62\xa3\x47\xe0\x37"
        !          9250:             "\x52\xa3\x37\xe0\x57\x42\xb3\x17\xe0\x86\x32\xb9\xe0"
        !          9251:             "\xb6\x23\xa8\xe0\xe6\x12\xa6\xe0\xe0\x48\x67\xe0\x12"
        !          9252:             "\xe0\x5e\x06\xe2\xe0\x99\x34\xe2\xf1\xe0\xe0\x75\xc3"
        !          9253:             "\xe0\xe0\x85\xa4\xe0\xe0\x86\x85\xe0\xe0\x87\x65\xe0"
        !          9254:             "\xe0\x9e\x04\x10\xf1\xe0\xe0\x9e\x03\x10\xe0\xe0\x9e"
        !          9255:             "\x02\xe0\xe0\xce\x01\xe0\xe0\xce\xe0\xe0\xec\xe0\xe0"
        !          9256:             "\xe0\x2a\xe0\xe0\xe0\x56\x76" }  },
        !          9257:       /* --- pixel bitmap for cmr600 char#82 R --- */
        !          9258:       {  82,23160,                      /* character number, location */
        !          9259:          57, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
        !          9260:           { 59,   59, 3,371, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          9261:             "\x0e\x0e\x05\xe0\xce\x0e\x09\xe0\x8e\x0e\x0b\xe0\xe9"
        !          9262:             "\xea\xe0\xd7\xe0\x49\xe0\xb7\xe0\x68\xe0\xa7\xe0\x78"
        !          9263:             "\xe0\x97\xe0\x88\xd0\xf1\x97\xe0\x98\xc0\x97\xe0\x99"
        !          9264:             "\xe0\x67\xe0\xa8\xb0\xf5\x97\xe0\xa9\xa0\x97\xe0\xa8"
        !          9265:             "\xe0\x67\xe0\x99\xe0\x67\xe0\x98\xe0\x77\xe0\x97\xe0"
        !          9266:             "\x87\xe0\x88\xe0\x87\xe0\x77\xe0\xa7\xe0\x67\xe0\xb7"
        !          9267:             "\xe0\x47\xe0\xd7\xe0\x18\xe0\xe0\x1e\x0e\xe0\xe0\x3e"
        !          9268:             "\x0b\xe0\xe0\x67\xe6\xe0\xe0\x47\xe0\x26\xe0\xe0\x27"
        !          9269:             "\xe0\x36\xe0\xe0\x17\xe0\x46\xe0\xe7\xe0\x56\xe0\xd7"
        !          9270:             "\xe0\x66\xe0\xc7\xe0\x67\xe0\xb7\xe0\x76\xe0\x20\xf3"
        !          9271:             "\x97\xe0\x77\xe0\x10\xf2\x97\xe0\x78\xe0\xf3\x97\xe0"
        !          9272:             "\x79\xd0\xf2\x97\xe0\x7a\xa2\x97\xe0\x8a\x92\x97\xe0"
        !          9273:             "\x8a\x83\x89\xe0\x89\x82\x1e\x0b\xe0\x19\x63\x1e\x0b"
        !          9274:             "\xe0\x28\x62\x2e\x0b\xe0\x38\x43\xe0\xe0\xe0\x4c\xe0"
        !          9275:             "\xe0\xe0\x87\x54" }  },
        !          9276:       /* --- pixel bitmap for cmr600 char#83 S --- */
        !          9277:       {  83,24387,                      /* character number, location */
        !          9278:          59, 5,   -2, 5,      /* topleft row,col, and botleft row,col */
        !          9279:           { 36,   61, 3,313, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          9280:             "\xc8\xc2\xbe\x83\x9e\x04\x63\x86\x87\x34\x75\xd5\x15"
        !          9281:             "\x65\xe0\x29\x55\xe0\x48\x45\xe0\x67\x45\xe0\x76\x20"
        !          9282:             "\xf1\x15\xe0\x95\x20\x14\xe0\xb4\x25\xe0\xb4\x2f\x25"
        !          9283:             "\xe0\xc3\x25\xe0\xd2\x2f\x16\xe0\xc2\x27\xe0\xb2\x27"
        !          9284:             "\xe0\xe0\x27\xe0\xe0\x18\xe0\xe0\x19\xe0\xdc\xe0\xbe"
        !          9285:             "\x01\xe0\x8e\x04\xe0\x4e\x08\xe0\x2e\x08\xe0\x1e\x08"
        !          9286:             "\xe0\x2e\x08\xe0\x2e\x07\xe0\x5e\x03\xe0\x9e\xe0\xcb"
        !          9287:             "\xe0\xd9\xe0\xe0\x18\x10\xf1\xe0\xe7\x10\xe0\xe0\x17"
        !          9288:             "\xe0\xe0\x26\x0f\x12\xe0\xe6\x0f\x22\xe0\xe0\x15\x0f"
        !          9289:             "\x13\xe0\xe5\x03\xe0\xe4\x1f\x14\xe0\xc5\x15\xe0\xb4"
        !          9290:             "\x26\xe0\x95\x27\xe0\x84\x38\xe0\x65\x39\xe0\x45\x45"
        !          9291:             "\x15\xe0\x15\x54\x47\x96\x63\x6e\x05\x83\x9e\xa2\xd9"
        !          9292:             "\xca" }  },
        !          9293:       /* --- pixel bitmap for cmr600 char#84 T --- */
        !          9294:       {  84,25629,                      /* character number, location */
        !          9295:          57, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          9296:           { 54,   57, 3,145, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          9297:             "\xf2\x2e\x0e\x0e\x08\x20\x28\xd9\xc8\x46\xe0\x27\xe0"
        !          9298:             "\x25\x35\xe0\x47\xe0\x35\x24\xe0\x57\xe0\x44\x10\xf2"
        !          9299:             "\x13\xe0\x67\xe0\x53\x10\xf3\x12\xe0\x77\xe0\x62\x13"
        !          9300:             "\xe0\x77\xe0\x63\x0f\x32\xe0\x87\xe0\x72\xfe\xe0\xa7"
        !          9301:             "\xe0\x90\xfe\xe0\xa7\xe0\x90\xf3\xe0\xa7\xe0\x90\xe0"
        !          9302:             "\x8b\xe0\x70\xf2\xce\x0e\x03\xb0" }  },
        !          9303:       /* --- pixel bitmap for cmr600 char#85 U --- */
        !          9304:       {  85,26809,                      /* character number, location */
        !          9305:          57, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
        !          9306:           { 58,   59, 2,93, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          9307:             "\xff\x02\x00\x19\x0d\x14\x08\x09\x1a\x0a\x0e\x07\x1d"
        !          9308:             "\x06\x10\x07\x1e\x04\x08\x00\xff\x23\x09\x07\x1f\x02"
        !          9309:             "\x09\x00\x09\x07\x1e\x03\x09\x00\xff\x01\x0a\x07\x1d"
        !          9310:             "\x02\x0a\x00\x0a\x07\x1c\x03\x15\x06\x1c\x03\x15\x07"
        !          9311:             "\x1a\x03\x17\x06\x1a\x03\x17\x07\x18\x03\x19\x06\x17"
        !          9312:             "\x03\x1b\x06\x15\x04\x1c\x06\x13\x04\x1e\x06\x11\x04"
        !          9313:             "\x20\x07\x0d\x05\x23\x07\x08\x07\x25\x13\x2a\x0e\x2f"
        !          9314:             "\x08\x18" }  },
        !          9315:       /* --- pixel bitmap for cmr600 char#86 V --- */
        !          9316:       {  86,28035,                      /* character number, location */
        !          9317:          57, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
        !          9318:           { 58,   59, 3,375, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          9319:             "\xf2\x0e\x08\xe0\x5e\x03\x6b\xe0\xe9\xb8\xe0\xe0\x36"
        !          9320:             "\xe7\xe0\xe0\x44\xe0\x17\xe0\xe0\x43\xe0\x28\xe0\xe0"
        !          9321:             "\x33\x80\xf1\x97\xe0\xe0\x32\x90\xf1\xa7\xe0\xe0\x12"
        !          9322:             "\xa0\xa8\xe0\xe2\xa0\xf1\xb7\xe0\xd2\xb0\xb8\xe0\xb3"
        !          9323:             "\xb0\xf1\xc7\xe0\xb2\xc0\xf1\xd7\xe0\x92\xd0\xd8\xe0"
        !          9324:             "\x82\xd0\xf1\xe7\xe0\x72\xe0\xe8\xe0\x53\xe0\xf1\xe0"
        !          9325:             "\x17\xe0\x52\xe0\x10\xf1\xe0\x27\xe0\x32\xe0\x20\xe0"
        !          9326:             "\x28\xe0\x13\xe0\x20\xf1\xe0\x37\xe0\x12\xe0\x30\xf1"
        !          9327:             "\xe0\x47\xd2\xe0\x40\xe0\x48\xc2\xe0\x40\xf1\xe0\x57"
        !          9328:             "\xb2\xe0\x50\xe0\x58\x93\xe0\x50\xf1\xe0\x67\x92\xe0"
        !          9329:             "\x60\xf1\xe0\x77\x72\xe0\x70\xe0\x78\x62\xe0\x70\xf1"
        !          9330:             "\xe0\x87\x52\xe0\x80\xe0\x88\x33\xe0\x80\xf1\xe0\x97"
        !          9331:             "\x32\xe0\x90\xf1\xe0\xa7\x12\xe0\xa0\xe0\xaa\xe0\xa0"
        !          9332:             "\xf2\xe0\xb8\xe0\xb0\xf1\xe0\xc6\xe0\xc0\xf2\xe0\xd4"
        !          9333:             "\xe0\xd0\xe0\xe2\xe0\xe0" }  },
        !          9334:       /* --- pixel bitmap for cmr600 char#87 W --- */
        !          9335:       {  87,29677,                      /* character number, location */
        !          9336:          57, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
        !          9337:           { 81,   59, 3,593, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          9338:             "\xf2\x0e\x07\xae\x08\xbe\x03\x5b\xe0\x7b\xe0\x6a\x98"
        !          9339:             "\xe0\xa8\xe0\xa6\xc7\xe0\xa8\xe0\xb4\xd7\xe0\xb7\xe0"
        !          9340:             "\xb3\xe8\xe0\xa7\xe0\xb3\x70\xf1\x87\xe0\xa8\xe0\xa2"
        !          9341:             "\x80\x88\xe0\x98\xe0\x93\xe0\x37\xe0\x98\xe0\x92\x90"
        !          9342:             "\xf1\x97\xe0\x82\x17\xe0\x82\x90\xa7\xe0\x72\x17\xe0"
        !          9343:             "\x72\xa0\xf1\xa7\xe0\x62\x37\xe0\x62\xa0\xb7\xe0\x52"
        !          9344:             "\x37\xe0\x52\xb0\xf1\xb7\xe0\x42\x57\xe0\x42\xb0\xc7"
        !          9345:             "\xe0\x32\x57\xe0\x32\xc0\xf1\xc7\xe0\x22\x77\xe0\x22"
        !          9346:             "\xc0\xc8\xe0\x12\x77\xe0\x13\xe0\xb7\xe3\x78\xe2\xe0"
        !          9347:             "\xc7\xe2\x97\xe2\xe0\xc8\xd2\x97\xd3\xe0\xd7\xd2\x98"
        !          9348:             "\xc2\xe0\xf1\xe7\xc2\xb7\xc2\xe0\xe0\x17\xb2\xb7\xb2"
        !          9349:             "\xe0\x10\xf1\xe0\x17\xa2\xd7\xa2\xe0\x10\xe0\x27\x92"
        !          9350:             "\xd7\x92\xe0\x20\xf1\xe0\x27\x82\xe0\x17\x82\xe0\x20"
        !          9351:             "\xe0\x37\x72\xe0\x17\x72\xe0\x30\xf1\xe0\x37\x62\xe0"
        !          9352:             "\x37\x62\xe0\x30\xe0\x47\x52\xe0\x37\x52\xe0\xe0\x87"
        !          9353:             "\x43\xe0\x38\x42\xe0\xe0\x87\x42\xe0\x57\x42\xe0\xe0"
        !          9354:             "\x88\x32\xe0\x57\x33\xe0\xe0\x97\x23\xe0\x58\x22\xe0"
        !          9355:             "\xe0\xa7\x22\xe0\x77\x22\xe0\xe0\xa8\x12\xe0\x77\x22"
        !          9356:             "\xe0\xe0\xb7\x12\xe0\x77\x12\xe0\x60\xf1\xe0\x69\xe0"
        !          9357:             "\x99\xe0\x60\xe0\x78\xe0\x98\xe0\x70\xf1\xe0\x77\xe0"
        !          9358:             "\xb7\xe0\x70\xe0\x86\xe0\xb6\xe0\x80\xf1\xe0\x85\xe0"
        !          9359:             "\xd5\xe0\x80\xf1\xe0\x94\xe0\xd4\xe0\x90\xe0\x93\xe0"
        !          9360:             "\xe0\x13\xe0\xe0\xe0\x52\xe0\xe0\x12\xe0\xa0" }  },
        !          9361:       /* --- pixel bitmap for cmr600 char#88 X --- */
        !          9362:       {  88,31160,                      /* character number, location */
        !          9363:          57, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          9364:           { 58,   57, 2,204, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          9365:             "\xff\x02\x01\x17\x0b\x13\x04\x00\x08\x0c\x12\x0c\x11"
        !          9366:             "\x0a\x14\x08\x15\x08\x16\x05\x18\x08\x15\x04\x1a\x08"
        !          9367:             "\x14\x03\x1b\x08\x14\x02\x1d\x08\x12\x02\x1f\x08\x10"
        !          9368:             "\x03\x1f\x08\x10\x02\x21\x08\x0e\x02\x23\x08\x0c\x03"
        !          9369:             "\x23\x08\x0c\x02\x25\x08\x0a\x02\x27\x08\x08\x03\x27"
        !          9370:             "\x08\x08\x02\x29\x08\x06\x02\x2b\x08\x04\x03\x2b\x08"
        !          9371:             "\x03\x03\x2d\x08\x02\x02\x2f\x0b\x2f\x0a\x31\x08\x1b"
        !          9372:             "\x00\xff\x01\x18\x08\x1a\x00\x19\x08\x33\x08\x31\x09"
        !          9373:             "\x31\x0a\x2f\x02\x02\x07\x2e\x03\x02\x08\x2d\x02\x04"
        !          9374:             "\x08\x2b\x02\x06\x07\x2a\x03\x06\x08\x29\x02\x08\x08"
        !          9375:             "\x27\x02\x0a\x07\x26\x03\x0a\x08\x25\x02\x0c\x08\x23"
        !          9376:             "\x02\x0e\x07\x22\x03\x0e\x08\x21\x02\x10\x08\x1f\x02"
        !          9377:             "\x12\x07\x1e\x03\x12\x08\x1d\x02\x14\x08\x1b\x02\x16"
        !          9378:             "\x07\x1a\x03\x16\x08\x18\x03\x18\x08\x17\x02\x1a\x07"
        !          9379:             "\x16\x03\x1a\x08\x14\x04\x1b\x08\x11\x07\x19\x0a\x0d"
        !          9380:             "\x0c\x16\x0c\x07\xff\x02\x13\x11\x16" }  },
        !          9381:       /* --- pixel bitmap for cmr600 char#89 Y --- */
        !          9382:       {  89,32524,                      /* character number, location */
        !          9383:          57, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          9384:           { 60,   57, 2,139, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          9385:             "\xff\x02\x00\x17\x14\x11\x07\x0b\x1c\x0a\x0c\x09\x1e"
        !          9386:             "\x06\x10\x08\x1f\x04\x12\x08\x1e\x03\x13\x08\x1d\x03"
        !          9387:             "\x15\x08\x1c\x02\x17\x08\x1a\x03\x17\x08\x1a\x02\x19"
        !          9388:             "\x08\x18\x02\x1a\x08\x17\x03\x1b\x08\x16\x02\x1d\x08"
        !          9389:             "\x14\x03\x1d\x08\x14\x02\x1f\x08\x12\x02\x21\x08\x10"
        !          9390:             "\x03\x21\x08\x10\x02\x23\x08\x0e\x03\x23\x08\x0e\x02"
        !          9391:             "\x25\x08\x0c\x02\x27\x08\x0a\x03\x27\x08\x0a\x02\x29"
        !          9392:             "\x08\x08\x03\x2a\x08\x07\x02\x2b\x08\x06\x02\x2d\x08"
        !          9393:             "\x04\x03\x2d\x08\x04\x02\x2f\x08\x02\x03\x30\x08\x01"
        !          9394:             "\x02\x31\x0a\x33\x09\x19\x00\xff\x13\x1b\x07\x1a\x00"
        !          9395:             "\x1a\x09\x19\x00\xff\x02\x12\x18\x12" }  },
        !          9396:       /* --- pixel bitmap for cmr600 char#90 Z --- */
        !          9397:       {  90,33693,                      /* character number, location */
        !          9398:          57, 5,    0, 5,      /* topleft row,col, and botleft row,col */
        !          9399:           { 42,   57, 3,303, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          9400:             "\xf2\x2e\x0e\x0b\x10\x2c\xe0\x48\x49\xe0\x78\x47\xe0"
        !          9401:             "\x88\x30\xf1\x25\xe0\x98\x40\x24\xe0\x98\x73\xe0\xa8"
        !          9402:             "\x64\xe0\x98\x60\xf1\x13\xe0\x98\x70\x13\xe0\x88\x80"
        !          9403:             "\xf1\x12\xe0\x88\x90\x12\xe0\x78\xb2\xe0\x77\xc2\xe0"
        !          9404:             "\x68\xb0\xf1\xe0\x88\xc0\xe0\x78\xd0\xf1\xe0\x68\xe0"
        !          9405:             "\xe0\x58\xe0\x10\xf1\xe0\x48\xe0\x20\xe0\x38\xe0\xe0"
        !          9406:             "\x67\xe0\xe0\x68\xe0\x40\xf1\xe0\x18\xe0\x50\xe8\xe0"
        !          9407:             "\x60\xf1\xd8\xe0\x70\xc8\xe0\x62\xf1\xb8\xe0\x72\xa8"
        !          9408:             "\xe0\x82\xa7\xe0\x92\x98\xe0\x92\xf1\x88\xe0\x93\x78"
        !          9409:             "\xe0\xa3\xf1\x68\xe0\xb3\x58\xe0\xb3\x58\xe0\xc3\x58"
        !          9410:             "\xe0\xb4\x48\xe0\xb5\x48\xe0\xa6\x38\xe0\xa7\x28\xe0"
        !          9411:             "\x99\x28\xe0\x6c\x1f\x2e\x0e\x0d\x19" }  },
        !          9412:       /* --- pixel bitmap for cmr600 char#91 [ --- */
        !          9413:       {  91,116372,                     /* character number, location */
        !          9414:          62, 9,  -21, 9,      /* topleft row,col, and botleft row,col */
        !          9415:           { 13,   83, 2,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          9416:             "\xff\x03\x00\x0d\x00\xff\x4a\x04\x09\xff\x03\x0d" }  },
        !          9417:       /* --- pixel bitmap for cmr600 char#92 (noname) --- */
        !          9418:       {  92,136711,                     /* character number, location */
        !          9419:          58,13,   33,13,      /* topleft row,col, and botleft row,col */
        !          9420:           { 26,   25, 3,87, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          9421:             "\x72\xe2\x73\xd3\x63\xd3\x63\xd3\x63\xd3\x72\xe2\x73"
        !          9422:             "\xd3\x72\xe2\x73\xd3\x60\xf1\x12\xe2\x73\xd3\x7f\x32"
        !          9423:             "\xe2\x82\x23\x92\x23\x39\x79\x1f\x2a\x6a\xf1\x19\x79"
        !          9424:             "\x27\x97\x53\xd3\x37" }  },
        !          9425:       /* --- pixel bitmap for cmr600 char#93 ] --- */
        !          9426:       {  93,117186,                     /* character number, location */
        !          9427:          62, 1,  -21, 1,      /* topleft row,col, and botleft row,col */
        !          9428:           { 13,   83, 2,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          9429:             "\xff\x03\x00\x0d\xff\x4a\x09\x04\x00\xff\x03\x0d" }  },
        !          9430:       /* --- pixel bitmap for cmr600 char#94 \^ --- */
        !          9431:       {  94,123777,                     /* character number, location */
        !          9432:          57,10,   45,10,      /* topleft row,col, and botleft row,col */
        !          9433:           { 22,   12, 3,51, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          9434:             "\xa2\xe0\x54\xe0\x36\xe0\x18\xd4\x24\xb4\x44\x94\x64"
        !          9435:             "\x74\x84\x53\xc3\x33\xe3\x13\xe0\x23\x11\xe0\x41\x1c" }  },
        !          9436:       /* --- pixel bitmap for cmr600 char#95 (noname) --- */
        !          9437:       {  95,124274,                     /* character number, location */
        !          9438:          56, 7,   47, 7,      /* topleft row,col, and botleft row,col */
        !          9439:           {  9,    9, 3,13, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          9440:             "\x33\x47\x1f\x49\x17\x43\x38" }  },
        !          9441:       /* --- pixel bitmap for cmr600 char#96 (noname) --- */
        !          9442:       {  96,117920,                     /* character number, location */
        !          9443:          58, 6,   33, 6,      /* topleft row,col, and botleft row,col */
        !          9444:           { 10,   25, 3,49, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          9445:             "\x72\x73\x63\x63\x63\x72\x73\x72\x73\x60\xf1\x12\x73"
        !          9446:             "\x7f\x32\x82\x23\x39\x1f\x2a\xf1\x19\x27\x53\x34" }  },
        !          9447:       /* --- pixel bitmap for cmr600 char#97 a --- */
        !          9448:       {  97,34969,                      /* character number, location */
        !          9449:          38, 4,   -1, 4,      /* topleft row,col, and botleft row,col */
        !          9450:           { 38,   39, 3,187, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          9451:             "\xa9\xe0\xce\xe0\x85\x76\xe0\x53\xc6\xe0\x25\xc6\xe7"
        !          9452:             "\xc6\xd8\xb6\xb0\xf1\x28\xc6\xa0\x28\xd6\xc6\xe6\xd4"
        !          9453:             "\xe0\x16\x90\xf3\xe0\x96\x90\xe0\x3c\xe0\x7e\x03\xe0"
        !          9454:             "\x4a\x46\xe0\x28\x86\xe8\xa6\xd7\xc6\xc7\xd6\xb7\xe6"
        !          9455:             "\xa8\xe6\xa7\xe0\x16\x98\xe0\x16\x72\x0f\x27\xe0\x26"
        !          9456:             "\x72\x0f\x17\xe0\x17\x72\x08\xd8\x72\x17\xd2\x15\x72"
        !          9457:             "\x18\xb3\x25\x52\x38\x93\x36\x33\x57\x64\x5a\x8d\x88"
        !          9458:             "\xc8\xb5\x58" }  },
        !          9459:       /* --- pixel bitmap for cmr600 char#98 b --- */
        !          9460:       {  98,36103,                      /* character number, location */
        !          9461:          58, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          9462:           { 40,   59, 3,211, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          9463:             "\x66\xe0\xef\x2c\xe0\xe0\x48\xe0\xe0\xfe\x66\xe0\xe0"
        !          9464:             "\x66\xe0\xe0\x66\x77\xe0\x66\x5c\xe0\x36\x34\x66\xe0"
        !          9465:             "\x16\x14\xa6\xd9\xd6\xc8\xe0\x16\xb8\xe0\x26\xa7\xe0"
        !          9466:             "\x46\x96\xe0\x56\x30\xf1\x66\xe0\x66\x20\xf1\x66\xe0"
        !          9467:             "\x67\x10\x66\xe0\x76\x10\xf9\x66\xe0\x77\x66\xe0\x76"
        !          9468:             "\x10\xf1\x66\xe0\x67\x10\x66\xe0\x66\x86\xe0\x57\x86"
        !          9469:             "\xe0\x56\x97\xe0\x36\xa8\xe0\x26\xa5\x12\xe0\x16\xb4"
        !          9470:             "\x23\xd5\xd4\x33\xb5\xe3\x54\x75\xe0\x22\x8c\xe0\xe0"
        !          9471:             "\x28\xe2" }  },
        !          9472:       /* --- pixel bitmap for cmr600 char#99 c --- */
        !          9473:       {  99,37032,                      /* character number, location */
        !          9474:          38, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          9475:           { 32,   39, 3,143, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          9476:             "\xe9\xe0\x6e\x01\xe0\x16\x85\xc5\xd3\x96\xd5\x76\xd7"
        !          9477:             "\x65\xd8\x56\xd8\x10\xf1\x36\xe8\x10\x26\xe0\x26\x46"
        !          9478:             "\xe0\x34\x30\xf1\x17\xe0\xa0\x16\xe0\xbf\x97\xe0\xb0"
        !          9479:             "\xf2\x17\xe0\xa0\x26\xe0\x82\x27\xe0\x72\x36\xe0\x63"
        !          9480:             "\x46\xe0\x52\x56\xe0\x43\x66\xe0\x23\x86\xe3\xb5\xc3"
        !          9481:             "\xd6\x75\xe0\x2e\xe0\x78\xa6" }  },
        !          9482:       /* --- pixel bitmap for cmr600 char#100 d --- */
        !          9483:       { 100,38115,                      /* character number, location */
        !          9484:          58, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          9485:           { 40,   59, 3,201, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          9486:             "\xe0\xe6\x60\xf2\xe0\x8c\x60\xe0\xc8\x60\xfe\xe0\xe6"
        !          9487:             "\x60\xe0\xe6\xe0\x68\x66\xe0\x4c\x46\xe0\x25\x74\x26"
        !          9488:             "\xe5\xb3\x16\xd5\xd9\xb6\xe0\x18\x60\xf1\x46\xe0\x37"
        !          9489:             "\x60\x36\xe0\x56\x87\xe0\x56\x86\xe0\x66\x60\xf1\x17"
        !          9490:             "\xe0\x66\x60\x16\xe0\x76\x6f\x97\xe0\x76\x60\x16\xe0"
        !          9491:             "\x76\x60\xf1\x17\xe0\x66\x60\xf1\x26\xe0\x66\x60\xf1"
        !          9492:             "\x36\xe0\x47\x60\x46\xe0\x28\xb6\xe9\xc6\xc3\x18\xb6"
        !          9493:             "\xa3\x2c\x96\x64\x3c\xbc\x5c\xe7\x76\x62" }  },
        !          9494:       /* --- pixel bitmap for cmr600 char#101 e --- */
        !          9495:       { 101,39029,                      /* character number, location */
        !          9496:          38, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          9497:           { 33,   39, 3,175, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          9498:             "\xe8\xe0\x8d\xe0\x46\x65\xe0\x15\x96\xb6\xb6\x96\xd6"
        !          9499:             "\x76\xe0\x15\x75\xe0\x26\x56\xe0\x35\x47\xe0\x36\x36"
        !          9500:             "\xe0\x55\x27\xe0\x55\x27\xe0\x56\x16\xe0\x66\x0f\x27"
        !          9501:             "\xe0\x66\x0f\x1e\x0e\x05\x0f\x47\xe0\xc0\x16\xe0\xc0"
        !          9502:             "\xf1\x17\xe0\xb0\x26\xe0\xd6\xe0\x92\x36\xe0\x82\x36"
        !          9503:             "\xe0\x73\x46\xe0\x62\x65\xe0\x53\x75\xe0\x33\x95\xe0"
        !          9504:             "\x13\xb6\xb4\xe6\x74\xe0\x4d\xe0\x98\xa6" }  },
        !          9505:       /* --- pixel bitmap for cmr600 char#102 f --- */
        !          9506:       { 102,39974,                      /* character number, location */
        !          9507:          59, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          9508:           { 29,   59, 3,83, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          9509:             "\xe0\x37\xe0\x6b\xe0\x25\x64\xc6\x56\xb6\x58\xf1\x96"
        !          9510:             "\x68\xf1\x86\x78\x76\xa4\x20\xfc\x76\xe0\x2f\x2e\x08"
        !          9511:             "\x70\xfe\x76\xe0\x20\xfd\x76\xe0\x20\x68\xe0\x10\xf2"
        !          9512:             "\x1e\x06\x8f" }  },
        !          9513:       /* --- pixel bitmap for cmr600 char#103 g --- */
        !          9514:       { 103,41309,                      /* character number, location */
        !          9515:          38, 2,  -18, 2,      /* topleft row,col, and botleft row,col */
        !          9516:           { 39,   56, 3,255, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          9517:             "\xe0\xe0\x36\xe0\x17\x99\xbd\x44\x44\x86\x56\x13\x55"
        !          9518:             "\x75\x97\x65\x65\xb5\x75\x55\xd5\x81\x20\xf1\x46\xd6"
        !          9519:             "\xa0\xf7\x36\xe0\x16\x90\xf1\x46\xd6\xa0\x55\xd5\xe0"
        !          9520:             "\x35\xb5\xe0\x46\x95\xe0\x58\x56\xe0\x53\x2d\xe0\x72"
        !          9521:             "\x67\xe0\x50\xf3\x43\xe0\xe0\x40\x44\xe0\xe0\x75\xe0"
        !          9522:             "\xe0\x75\xe0\xe0\x6e\x07\xe0\x5e\x0a\xe0\x1e\x0c\xe0"
        !          9523:             "\x1e\x0c\xbe\x0e\x01\x85\xe0\x3a\x65\xe0\x78\x45\xe0"
        !          9524:             "\xa6\x35\xe0\xb6\x35\xe0\xc6\x1f\x45\xe0\xe5\x16\xe0"
        !          9525:             "\xc6\x25\xe0\xc5\x45\xe0\xa5\x65\xe0\x85\x85\xe0\x65"
        !          9526:             "\xa6\xe0\x26\xd7\xa7\xe0\x4e\x04\xe0\xac\xe0" }  },
        !          9527:       /* --- pixel bitmap for cmr600 char#104 h --- */
        !          9528:       { 104,42440,                      /* character number, location */
        !          9529:          58, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          9530:           { 40,   58, 3,128, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          9531:             "\x66\xe0\xef\x2c\xe0\xe0\x48\xe0\xe0\xfe\x66\xe0\xe0"
        !          9532:             "\x66\xe0\xe0\x66\x87\xe0\x56\x5c\xe0\x36\x44\x56\xe0"
        !          9533:             "\x16\x33\x86\xe6\x23\xa6\xd6\x13\xb6\xd9\xd5\x70\xf1"
        !          9534:             "\x68\xe6\x60\xf1\x67\xe0\x16\x60\xfe\x66\xe0\x26\x60"
        !          9535:             "\xf6\x66\xe0\x26\x60\x58\xe8\x5f\x2e\x04\x4e\x04" }  },
        !          9536:       /* --- pixel bitmap for cmr600 char#105 i --- */
        !          9537:       { 105,43303,                      /* character number, location */
        !          9538:          56, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          9539:           { 18,   56, 3,56, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          9540:             "\x63\xd7\x70\xf4\x39\x60\x47\xd3\x90\xf9\xe0\x40\x66"
        !          9541:             "\x6f\x2c\x60\x57\x60\xfe\x66\x60\xfc\x66\x60\x58\x5f"
        !          9542:             "\x2e\x04" }  },
        !          9543:       /* --- pixel bitmap for cmr600 char#106 j --- */
        !          9544:       { 106,44205,                      /* character number, location */
        !          9545:          56,-4,  -17,-4,      /* topleft row,col, and botleft row,col */
        !          9546:           { 22,   73, 3,93, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          9547:             "\xe0\x23\xe0\x37\x10\xf4\xd9\xe7\xe0\x33\x30\xf9\xe0"
        !          9548:             "\x80\xe0\x17\xf2\x9d\xe8\xfe\xe0\x26\xfe\xe0\x26\xf7"
        !          9549:             "\xe0\x26\x24\xa6\x16\x9e\x85\x1f\x18\x76\x18\x75\x27"
        !          9550:             "\x75\x45\x75\x64\x65\x9b\xd7\x90" }  },
        !          9551:       /* --- pixel bitmap for cmr600 char#107 k --- */
        !          9552:       { 107,45431,                      /* character number, location */
        !          9553:          58, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          9554:           { 40,   58, 3,224, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          9555:             "\x66\xe0\xef\x2c\xe0\xe0\x48\xe0\xe0\xfe\x66\xe0\xe0"
        !          9556:             "\xf1\x66\xe0\xe0\xf2\x66\xbe\x01\x20\x66\xd9\xc6\xd7"
        !          9557:             "\xe6\xd5\xe0\x26\xd3\xe0\x46\xc3\xe0\x56\xb3\xe0\x66"
        !          9558:             "\xa3\xe0\x76\x93\xe0\x86\x74\xe0\x96\x63\xe0\xb6\x54"
        !          9559:             "\xe0\xb6\x46\xe0\xa6\x37\xe0\xa6\x29\xe0\x96\x13\x26"
        !          9560:             "\xe0\x89\x37\xe0\x77\x66\xe0\x76\x86\xe0\x66\x87\xe0"
        !          9561:             "\x56\x96\xe0\x56\xa6\xe0\x46\xb6\xe0\x36\xb7\xe0\x26"
        !          9562:             "\xc6\xe0\x26\xd6\xe0\x16\xd7\xe6\xe6\xe6\xe7\xd6\xe0"
        !          9563:             "\x17\xb8\xda\x4f\x2e\x04\x6e\x02" }  },
        !          9564:       /* --- pixel bitmap for cmr600 char#108 l --- */
        !          9565:       { 108,46192,                      /* character number, location */
        !          9566:          58, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          9567:           { 18,   58, 3,44, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          9568:             "\x66\x6f\x2c\x60\x48\x60\xfe\x66\x60\xfe\x66\x60\xfe"
        !          9569:             "\x66\x60\xf3\x66\x60\x58\x5f\x2e\x04" }  },
        !          9570:       /* --- pixel bitmap for cmr600 char#109 m --- */
        !          9571:       { 109,47587,                      /* character number, location */
        !          9572:          37, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          9573:           { 64,   37, 3,144, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          9574:             "\x66\x88\xe0\x18\xdc\x6c\xbc\xbc\x44\x66\x74\x66\x9c"
        !          9575:             "\x33\x96\x53\x96\xc8\x23\xb6\x33\xb6\xd6\x13\xc6\x23"
        !          9576:             "\xc6\xd9\xd6\x13\xd6\x70\xf1\x68\xe0\x18\xe0\x16\x60"
        !          9577:             "\xf2\x67\xe0\x27\xe0\x26\x60\xfe\x66\xe0\x36\xe0\x36"
        !          9578:             "\x60\xf5\x66\xe0\x36\xe0\x36\x60\x58\xe0\x18\xe0\x18"
        !          9579:             "\x5f\x2e\x04\x5e\x04\x5e\x04" }  },
        !          9580:       /* --- pixel bitmap for cmr600 char#110 n --- */
        !          9581:       { 110,48752,                      /* character number, location */
        !          9582:          37, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          9583:           { 40,   37, 3,90, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          9584:             "\x66\x87\xdc\x5c\xbc\x44\x56\x9c\x33\x86\xc8\x23\xa6"
        !          9585:             "\xd6\x13\xb6\xd9\xd5\x70\xf1\x68\xe6\x60\xf1\x67\xe0"
        !          9586:             "\x16\x60\xfe\x66\xe0\x26\x60\xf6\x66\xe0\x26\x60\x58"
        !          9587:             "\xe8\x5f\x2e\x04\x4e\x04" }  },
        !          9588:       /* --- pixel bitmap for cmr600 char#111 o --- */
        !          9589:       { 111,49565,                      /* character number, location */
        !          9590:          38, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          9591:           { 38,   39, 3,163, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          9592:             "\xe0\x18\xe0\xde\xe0\x86\x66\xe0\x45\xc5\xe0\x15\xe5"
        !          9593:             "\xd5\xe0\x25\xb5\xe0\x45\x50\xf1\x45\xe0\x65\x40\x35"
        !          9594:             "\xe0\x85\x30\xf1\x26\xe0\x86\x20\xf3\x16\xe0\xa6\x1f"
        !          9595:             "\x87\xe0\xa7\xf1\x16\xe0\xa6\x10\x17\xe0\x87\x10\xf1"
        !          9596:             "\x26\xe0\x86\x20\x36\xe0\x66\x75\xe0\x65\x95\xe0\x45"
        !          9597:             "\xb5\xe0\x25\xd5\xe5\xe0\x15\xc5\xe0\x46\x66\xe0\x8e"
        !          9598:             "\xe0\xd8\xe0\x16" }  },
        !          9599:       /* --- pixel bitmap for cmr600 char#112 p --- */
        !          9600:       { 112,50743,                      /* character number, location */
        !          9601:          37, 3,  -16, 3,      /* topleft row,col, and botleft row,col */
        !          9602:           { 40,   53, 3,171, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          9603:             "\x66\x77\xec\x5c\xbc\x34\x66\x9c\x14\xa6\xbb\xd6\xc8"
        !          9604:             "\xe0\x16\xb8\xe0\x17\xa7\xe0\x37\x96\xe0\x56\x30\xf1"
        !          9605:             "\x66\xe0\x57\x20\xf2\x66\xe0\x67\x10\xf9\x66\xe0\x77"
        !          9606:             "\xf2\x66\xe0\x67\x10\xf1\x66\xe0\x57\x20\x66\xe0\x47"
        !          9607:             "\x97\xe0\x36\xa8\xe0\x17\xa8\xe7\xb9\xc6\xd6\x13\xa6"
        !          9608:             "\xe6\x24\x66\xe0\x26\x4c\xe0\x46\x68\xe0\xfa\x66\xe0"
        !          9609:             "\xe0\x58\xe0\xdf\x2e\x04\xe0\x86" }  },
        !          9610:       /* --- pixel bitmap for cmr600 char#113 q --- */
        !          9611:       { 113,51915,                      /* character number, location */
        !          9612:          37, 3,  -16, 3,      /* topleft row,col, and botleft row,col */
        !          9613:           { 40,   53, 3,188, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          9614:             "\xe8\xa2\xe0\x4c\x73\xe0\x26\x63\x63\xe6\x93\x44\xd6"
        !          9615:             "\xb3\x34\xb7\xd3\x15\xa7\xe0\x12\x15\xa6\xe0\x28\x97"
        !          9616:             "\xe0\x37\x87\xe0\x47\x87\xe0\x56\x60\xf2\x17\xe0\x66"
        !          9617:             "\x6f\x97\xe0\x76\x60\xf2\x17\xe0\x66\x60\x27\xe0\x56"
        !          9618:             "\x87\xe0\x47\x96\xe0\x47\x97\xe0\x28\xa7\xe0\x18\xb6"
        !          9619:             "\xe9\xc6\xc3\x16\xd6\xa3\x26\xe0\x16\x64\x36\xe0\x3c"
        !          9620:             "\x56\xe0\x67\x76\x60\xfa\xe0\xe6\x60\xe0\xd8\x50\xf2"
        !          9621:             "\xe0\x8e\x04" }  },
        !          9622:       /* --- pixel bitmap for cmr600 char#114 r --- */
        !          9623:       { 114,52924,                      /* character number, location */
        !          9624:          37, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          9625:           { 29,   37, 3,85, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          9626:             "\x66\x85\x4c\x69\x2c\x44\x35\x1c\x33\x47\x57\x23\x57"
        !          9627:             "\x75\x22\x67\x75\x13\x67\x75\x12\x85\x88\xa1\x30\xf3"
        !          9628:             "\x77\xe0\x10\xfe\x76\xe0\x20\xf4\x76\xe0\x20\x68\xe0"
        !          9629:             "\x1f\x2e\x07\x86" }  },
        !          9630:       /* --- pixel bitmap for cmr600 char#115 s --- */
        !          9631:       { 115,53937,                      /* character number, location */
        !          9632:          38, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          9633:           { 27,   39, 3,171, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          9634:             "\x98\x62\x8d\x33\x65\x88\x54\xc6\x44\xe5\x34\xe0\x24"
        !          9635:             "\x33\xe0\x43\x2f\x14\xe0\x43\x24\xe0\x52\x2f\x15\xe0"
        !          9636:             "\x42\x26\xe0\x32\x28\xe0\x6a\xe0\x3e\x01\xde\x03\xbe"
        !          9637:             "\x04\xae\x05\xae\x04\xce\x02\xe0\x1d\xe0\x58\xe0\x76"
        !          9638:             "\x12\xe0\x56\x0f\x12\xe0\x65\x0f\x23\xe0\x64\x04\xe0"
        !          9639:             "\x58\xe0\x53\x15\xe0\x34\x16\xe0\x24\x17\xe4\x28\xc4"
        !          9640:             "\x34\x24\x85\x43\x5d\x62\x88\x96" }  },
        !          9641:       /* --- pixel bitmap for cmr600 char#116 t --- */
        !          9642:       { 116,54866,                      /* character number, location */
        !          9643:          51, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          9644:           { 25,   52, 3,89, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          9645:             "\xf4\xa2\xd0\xf3\x93\xd0\xf1\x84\xd0\xf1\x75\xd0\x66"
        !          9646:             "\xe0\x47\xe0\x2e\x07\x1f\x1e\x0a\x10\xfe\x66\xd0\xf2"
        !          9647:             "\x66\xd0\xf8\x66\xb2\x76\x93\x76\x92\x95\x83\x96\x72"
        !          9648:             "\xb6\x53\xdb\xe0\x36\x5e" }  },
        !          9649:       /* --- pixel bitmap for cmr600 char#117 u --- */
        !          9650:       { 117,55887,                      /* character number, location */
        !          9651:          37, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          9652:           { 40,   38, 3,89, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          9653:             "\x66\xe0\x26\x6f\x2c\xac\x60\x48\xe8\x60\xfe\x66\xe0"
        !          9654:             "\x26\x60\xf6\x66\xe0\x26\x60\xf2\x66\xe0\x17\x60\x66"
        !          9655:             "\xe8\xd5\xe8\xd6\xc9\xe5\xb3\x18\xc6\x93\x2c\x96\x73"
        !          9656:             "\x3c\xbd\x4c\xe8\x66\x6e" }  },
        !          9657:       /* --- pixel bitmap for cmr600 char#118 v --- */
        !          9658:       { 118,56897,                      /* character number, location */
        !          9659:          36, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          9660:           { 40,   37, 3,183, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          9661:             "\xf2\x0e\x03\xad\x58\xe0\x28\x97\xe0\x35\xb7\xe0\x43"
        !          9662:             "\xd6\xe0\x43\xd6\xe0\x42\xe7\xe0\x23\x70\xf1\x86\xe0"
        !          9663:             "\x22\x80\xf1\x96\xe2\x90\x97\xc3\x90\xf1\xa6\xc2\xa0"
        !          9664:             "\xf1\xb6\xa2\xb0\xb7\x83\xb0\xf1\xc6\x82\xc0\xf1\xd6"
        !          9665:             "\x62\xd0\xd7\x43\xe0\xd6\x42\xe0\xe7\x32\xe0\xf1\xe0"
        !          9666:             "\x16\x22\xe0\x10\xe0\x1a\xe0\x10\xf1\xe0\x28\xe0\x20"
        !          9667:             "\xf1\xe0\x36\xe0\x30\xf2\xe0\x44\xe0\x40\xe0\x52\xe0"
        !          9668:             "\x50" }  },
        !          9669:       /* --- pixel bitmap for cmr600 char#119 w --- */
        !          9670:       { 119,58257,                      /* character number, location */
        !          9671:          36, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          9672:           { 56,   37, 3,299, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          9673:             "\xf2\x0e\x03\x3e\x02\x7d\x49\xc8\xc9\x77\xe6\xe0\x15"
        !          9674:             "\x97\xe6\xe0\x14\xb6\xe6\xe0\x13\xc6\xe0\x15\xe0\x13"
        !          9675:             "\xd6\xe6\xe2\x70\xf1\x76\xd7\xe2\x70\x86\xc8\xc2\xe0"
        !          9676:             "\x26\xb2\x25\xc2\xe0\x27\xa2\x25\xb3\xe0\x36\xa2\x26"
        !          9677:             "\xa2\xe0\x46\x92\x45\xa2\xe0\x47\x82\x45\x93\xe0\x56"
        !          9678:             "\x82\x46\x82\xe0\x66\x72\x65\x82\xe0\x76\x62\x65\x72"
        !          9679:             "\xe0\x86\x53\x66\x62\xe0\x86\x52\x85\x62\xe0\x96\x42"
        !          9680:             "\x85\x52\xe0\xa6\x33\x86\x42\xe0\xa6\x32\xa5\x42\xe0"
        !          9681:             "\xb6\x22\xa6\x22\xd0\xf1\xd6\x12\xc5\x22\xd0\xe8\xc8"
        !          9682:             "\xe0\xf1\xe7\xe7\xe0\xe0\x16\xe6\xe0\x10\xf1\xe0\x15"
        !          9683:             "\xe0\x25\xe0\x10\xe0\x24\xe0\x24\xe0\xe0\x43\xe0\x43"
        !          9684:             "\xe0\xe0\x52\xe0\x42\xe0\x3e" }  },
        !          9685:       /* --- pixel bitmap for cmr600 char#120 x --- */
        !          9686:       { 120,59432,                      /* character number, location */
        !          9687:          36, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          9688:           { 42,   36, 3,208, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          9689:             "\xf2\x0e\x04\x8e\x01\x10\x6a\xb9\xe7\xd6\xe0\x27\xd4"
        !          9690:             "\xe0\x57\xc3\xe0\x76\xb3\xe0\x96\xa2\xe0\xb6\x82\xe0"
        !          9691:             "\xc7\x63\xe0\xd6\x53\xe0\xe0\x16\x33\xe0\xe0\x36\x22"
        !          9692:             "\xe0\xe0\x49\xe0\xe0\x68\xe0\xe0\x76\xe0\xe0\x96\xe0"
        !          9693:             "\xe0\x87\xe0\xe0\x78\xe0\xe0\x59\xe0\xe0\x43\x26\xe0"
        !          9694:             "\xe0\x23\x37\xe0\xe0\x12\x57\xe0\xd2\x76\xe0\xc3\x86"
        !          9695:             "\xe0\xa3\xa6\xe0\x83\xb7\xe0\x63\xd6\xe0\x63\xe6\xe0"
        !          9696:             "\x35\xe7\xe0\x16\xe0\x17\xba\xd9\x6f\x2e\x01\xae\x03" }  },
        !          9697:       /* --- pixel bitmap for cmr600 char#121 y --- */
        !          9698:       { 121,60617,                      /* character number, location */
        !          9699:          36, 2,  -17, 2,      /* topleft row,col, and botleft row,col */
        !          9700:           { 40,   53, 3,277, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          9701:             "\xf2\x0e\x03\xad\x59\xe0\x18\x97\xe0\x35\xb7\xe0\x43"
        !          9702:             "\xd6\xe0\x43\xd6\xe0\x42\x70\xf1\x86\xe0\x22\x80\x87"
        !          9703:             "\xe3\x80\xf1\x96\xe2\x90\xf1\xa6\xc2\xa0\xa7\xa3\xe0"
        !          9704:             "\x76\xa2\xe0\x87\x92\xb0\xf1\xc6\x82\xc0\xf1\xd6\x62"
        !          9705:             "\xd0\xd7\x52\xd0\xf1\xe6\x42\xe0\xf1\xe0\x16\x22\xe0"
        !          9706:             "\x10\xe0\x1a\xe0\x10\xf1\xe0\x28\xe0\x20\xf2\xe0\x36"
        !          9707:             "\xe0\x30\xf1\xe0\x44\xe0\x40\xf1\xe0\x52\xe0\x50\xf1"
        !          9708:             "\xe0\x42\xe0\x60\xe0\x33\xe0\x60\xf1\xe0\x32\xe0\x70"
        !          9709:             "\xe0\x22\xe0\x95\xa2\xe0\x87\x83\xe0\x87\x82\xe0\x97"
        !          9710:             "\x72\xe0\xa7\x63\xe0\xa6\x72\xe0\xc3\x82\xe0\xe3\x53"
        !          9711:             "\xe0\xe0\x29\xe0\xe0\x55\xe0\xe0\x20" }  },
        !          9712:       /* --- pixel bitmap for cmr600 char#122 z --- */
        !          9713:       { 122,61708,                      /* character number, location */
        !          9714:          36, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          9715:           { 32,   36, 3,183, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          9716:             "\xf1\x2e\x0e\x01\x10\x27\xe8\x35\xe0\x27\x44\xe0\x27"
        !          9717:             "\x53\xe0\x27\x62\xe0\x28\x53\xe0\x27\x63\xe0\x17\x72"
        !          9718:             "\xe0\x17\x82\xe8\x82\xe7\x92\xd7\xa2\xc7\xe0\xa8\xe0"
        !          9719:             "\xa7\xe0\xa7\xc0\xf1\xc7\xd0\xb7\xe0\xa7\xe0\xa8\xd2"
        !          9720:             "\x97\xe2\x87\xe0\x12\x77\xe0\x22\x68\xe0\x22\x67\xe0"
        !          9721:             "\x23\x57\xe0\x33\x47\xe0\x42\x48\xe0\x33\x47\xe0\x43"
        !          9722:             "\x37\xe0\x44\x27\xe0\x45\x18\xe0\x18\x1f\x1e\x0e\x03"
        !          9723:             "\x10" }  },
        !          9724:       /* --- pixel bitmap for cmr600 char#123 (noname) --- */
        !          9725:       { 123,137399,                     /* character number, location */
        !          9726:          23, 0,   21, 0,      /* topleft row,col, and botleft row,col */
        !          9727:           { 42,    2, 3, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          9728:             "\xf1\x0e\x0e\x0e" }  },
        !          9729:       /* --- pixel bitmap for cmr600 char#124 (noname) --- */
        !          9730:       { 124,138221,                     /* character number, location */
        !          9731:          23, 0,   21, 0,      /* topleft row,col, and botleft row,col */
        !          9732:           { 83,    2, 2, 4, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          9733:             "\xff\x01\x00\x53" }  },
        !          9734:       /* --- pixel bitmap for cmr600 char#125 (noname) --- */
        !          9735:       { 125,124965,                     /* character number, location */
        !          9736:          58,11,   43,11,      /* topleft row,col, and botleft row,col */
        !          9737:           { 24,   15, 3,59, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          9738:             "\x54\xa4\x10\xf2\x46\x86\x37\x77\x36\x86\x45\x95\x20"
        !          9739:             "\xf1\x25\x95\x30\x15\x95\x54\xa4\x63\xb3\x64\xa4\x63"
        !          9740:             "\xb3\x72\xc2\x80" }  },
        !          9741:       /* --- pixel bitmap for cmr600 char#126 \~ --- */
        !          9742:       { 126,125693,                     /* character number, location */
        !          9743:          55, 7,   47, 7,      /* topleft row,col, and botleft row,col */
        !          9744:           { 28,    8, 3,33, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          9745:             "\x75\xe1\x69\xb3\x4b\x93\x4e\x54\x44\x5e\x43\x9b\x43"
        !          9746:             "\xb9\x61\xe5\x70" }  },
        !          9747:       /* --- pixel bitmap for cmr600 char#127 (noname) --- */
        !          9748:       { 127,126396,                     /* character number, location */
        !          9749:          56, 8,   47, 8,      /* topleft row,col, and botleft row,col */
        !          9750:           { 26,    9, 3,31, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          9751:             "\x34\xc4\x47\xa7\x28\x88\x1f\x29\x89\x18\x88\x27\xa7"
        !          9752:             "\x44\xc4\x35" }  },
        !          9753:       /* --- trailer  --- */
        !          9754:       { -99, -999,  0,0,0,0, { 0,0,0,0, (pixbyte *)"\0" }  }
        !          9755:    } ;
        !          9756: 
        !          9757: 
1.2       albertel 9758: /* ------------------------------------------------------------------------
1.5     ! raeburn  9759: font sizes 0-10 for cmmi10
1.2       albertel 9760: ------------------------------------------------------------------------ */
                   9761: 
                   9762: /* --- size=0 for .83gf ---
                   9763:  * mf '\mode=eighthre;  input cmmi10'
                   9764:  * --------------------------------------------------------------------- */
1.1       albertel 9765: /* --- fontdef for cmmi83 --- */
                   9766: static	chardef  cmmi83[] =
                   9767:    {
                   9768:       /* --- pixel bitmap for cmmi83 char#0 \Gamma --- */
                   9769:       {   0, 1597,                      /* character number, location */
1.2       albertel 9770:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   9771:           {  8,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   9772:             "\xfc\xc8\x44\x04\x04\x04\x02\x07" }  },
1.1       albertel 9773:       /* --- pixel bitmap for cmmi83 char#1 \Delta --- */
                   9774:       {   1, 1624,                      /* character number, location */
1.2       albertel 9775:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   9776:           {  8,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   9777:             "\x40\x60\xd0\x90\x88\x84\x86\xfe" }  },
1.1       albertel 9778:       /* --- pixel bitmap for cmmi83 char#2 \Theta --- */
                   9779:       {   2, 1657,                      /* character number, location */
1.2       albertel 9780:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   9781:           {  6,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   9782:             "\x9c\x28\xb6\x61\x14\x39" }  },
1.1       albertel 9783:       /* --- pixel bitmap for cmmi83 char#3 \Lambda --- */
                   9784:       {   3, 1694,                      /* character number, location */
1.2       albertel 9785:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   9786:           {  7,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   9787:             "\x20\x18\x0c\x85\x22\x91\xee" }  },
1.1       albertel 9788:       /* --- pixel bitmap for cmmi83 char#4 \Xi --- */
                   9789:       {   4, 1727,                      /* character number, location */
1.2       albertel 9790:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   9791:           {  9,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   9792:             "\xfc\x09\x12\xe1\x43\x04\x40\x90\x3f" }  },
1.1       albertel 9793:       /* --- pixel bitmap for cmmi83 char#5 \Pi --- */
                   9794:       {   5, 1758,                      /* character number, location */
1.2       albertel 9795:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   9796:           { 10,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   9797:             "\xfc\x23\x44\x08\x21\x84\x10\x22\xc4\x39" }  },
1.1       albertel 9798:       /* --- pixel bitmap for cmmi83 char#6 \Sigma --- */
                   9799:       {   6, 1795,                      /* character number, location */
1.2       albertel 9800:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   9801:           {  7,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   9802:             "\x7c\x32\x0b\x81\x20\x49\x3e" }  },
1.1       albertel 9803:       /* --- pixel bitmap for cmmi83 char#7 \Upsilon --- */
                   9804:       {   7, 1826,                      /* character number, location */
1.2       albertel 9805:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   9806:           {  6,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   9807:             "\x57\x4b\x10\x04\x21\x1c" }  },
1.1       albertel 9808:       /* --- pixel bitmap for cmmi83 char#8 \Phi --- */
                   9809:       {   8, 1855,                      /* character number, location */
1.2       albertel 9810:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   9811:           {  5,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   9812:             "\x1c\xf9\x5a\x9f\x38" }  },
1.1       albertel 9813:       /* --- pixel bitmap for cmmi83 char#9 \Psi --- */
                   9814:       {   9, 1886,                      /* character number, location */
1.2       albertel 9815:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   9816:           {  6,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   9817:             "\x38\x94\xa6\xa9\x47\x38" }  },
1.1       albertel 9818:       /* --- pixel bitmap for cmmi83 char#10 \Omega --- */
                   9819:       {  10, 1921,                      /* character number, location */
1.2       albertel 9820:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   9821:           {  7,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   9822:             "\x70\x24\x91\x48\x24\x95\xef" }  },
1.1       albertel 9823:       /* --- pixel bitmap for cmmi83 char#11 \alpha --- */
                   9824:       {  11, 1960,                      /* character number, location */
1.2       albertel 9825:           5, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   9826:           {  5,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   9827:             "\x3e\xa7\x7c\x01" }  },
1.1       albertel 9828:       /* --- pixel bitmap for cmmi83 char#12 \beta --- */
                   9829:       {  12, 1985,                      /* character number, location */
1.2       albertel 9830:           8, 0,   -2, 0,      /* topleft row,col, and botleft row,col */
                   9831:           {  6,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   9832:             "\x18\x29\x39\x92\xb4\x1c\x41\x00" }  },
1.1       albertel 9833:       /* --- pixel bitmap for cmmi83 char#13 \gamma --- */
                   9834:       {  13, 2022,                      /* character number, location */
1.2       albertel 9835:           5, 0,   -2, 0,      /* topleft row,col, and botleft row,col */
                   9836:           {  5,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   9837:             "\xb2\x32\x46\x08\x01" }  },
1.1       albertel 9838:       /* --- pixel bitmap for cmmi83 char#14 \delta --- */
                   9839:       {  14, 2049,                      /* character number, location */
1.2       albertel 9840:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   9841:           {  4,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   9842:             "\xa4\x42\x56\x59\x03" }  },
1.1       albertel 9843:       /* --- pixel bitmap for cmmi83 char#15 \epsilon --- */
                   9844:       {  15, 2082,                      /* character number, location */
1.2       albertel 9845:           5, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   9846:           {  3,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   9847:             "\xce\x73" }  },
1.1       albertel 9848:       /* --- pixel bitmap for cmmi83 char#16 \zeta --- */
                   9849:       {  16, 2099,                      /* character number, location */
1.2       albertel 9850:           8, 0,   -2, 0,      /* topleft row,col, and botleft row,col */
                   9851:           {  5,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   9852:             "\x08\x13\x21\x44\x10\xc4\x00" }  },
1.1       albertel 9853:       /* --- pixel bitmap for cmmi83 char#17 \eta --- */
                   9854:       {  17, 2126,                      /* character number, location */
1.2       albertel 9855:           5, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   9856:           {  5,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   9857:             "\x6f\xca\x94\x10\x02" }  },
1.1       albertel 9858:       /* --- pixel bitmap for cmmi83 char#18 \theta --- */
                   9859:       {  18, 2155,                      /* character number, location */
1.2       albertel 9860:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   9861:           {  4,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   9862:             "\xac\xfa\x5f\x35" }  },
1.1       albertel 9863:       /* --- pixel bitmap for cmmi83 char#19 \iota --- */
                   9864:       {  19, 2186,                      /* character number, location */
1.2       albertel 9865:           5, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   9866:           {  2,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   9867:             "\xea\x03" }  },
1.1       albertel 9868:       /* --- pixel bitmap for cmmi83 char#20 \kappa --- */
                   9869:       {  20, 2203,                      /* character number, location */
1.2       albertel 9870:           5, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   9871:           {  5,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   9872:             "\xda\xb8\x1c\x01" }  },
1.1       albertel 9873:       /* --- pixel bitmap for cmmi83 char#21 \lambda --- */
                   9874:       {  21, 2226,                      /* character number, location */
1.2       albertel 9875:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   9876:           {  6,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   9877:             "\x0c\x82\x40\x18\x25\x85" }  },
1.1       albertel 9878:       /* --- pixel bitmap for cmmi83 char#22 \mu --- */
                   9879:       {  22, 2255,                      /* character number, location */
1.2       albertel 9880:           5, 0,   -2, 0,      /* topleft row,col, and botleft row,col */
                   9881:           {  5,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   9882:             "\x52\xca\x7c\x43\x00" }  },
1.1       albertel 9883:       /* --- pixel bitmap for cmmi83 char#23 \nu --- */
                   9884:       {  23, 2286,                      /* character number, location */
1.2       albertel 9885:           5, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   9886:           {  5,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   9887:             "\x53\xaa\x32\x00" }  },
1.1       albertel 9888:       /* --- pixel bitmap for cmmi83 char#24 \xi --- */
                   9889:       {  24, 2311,                      /* character number, location */
1.2       albertel 9890:           8, 0,   -2, 0,      /* topleft row,col, and botleft row,col */
                   9891:           {  5,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   9892:             "\x88\x0b\xc1\x44\x08\xc6\x00" }  },
1.1       albertel 9893:       /* --- pixel bitmap for cmmi83 char#25 \pi --- */
                   9894:       {  25, 2338,                      /* character number, location */
1.2       albertel 9895:           5, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   9896:           {  5,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   9897:             "\xff\x18\x53\x00" }  },
1.1       albertel 9898:       /* --- pixel bitmap for cmmi83 char#26 \rho --- */
                   9899:       {  26, 2357,                      /* character number, location */
1.2       albertel 9900:           5, 0,   -2, 0,      /* topleft row,col, and botleft row,col */
                   9901:           {  5,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   9902:             "\x4c\xca\x75\x42\x00" }  },
1.1       albertel 9903:       /* --- pixel bitmap for cmmi83 char#27 \sigma --- */
                   9904:       {  27, 2384,                      /* character number, location */
1.2       albertel 9905:           5, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   9906:           {  6,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   9907:             "\x7e\x14\x25\x07" }  },
1.1       albertel 9908:       /* --- pixel bitmap for cmmi83 char#28 \tau --- */
                   9909:       {  28, 2407,                      /* character number, location */
1.2       albertel 9910:           5, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   9911:           {  5,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   9912:             "\xbe\x10\x21\x00" }  },
1.1       albertel 9913:       /* --- pixel bitmap for cmmi83 char#29 \upsilon --- */
                   9914:       {  29, 2426,                      /* character number, location */
1.2       albertel 9915:           5, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   9916:           {  5,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   9917:             "\x73\xca\x64\x00" }  },
1.1       albertel 9918:       /* --- pixel bitmap for cmmi83 char#30 \phi --- */
                   9919:       {  30, 2451,                      /* character number, location */
1.2       albertel 9920:           8, 0,   -2, 0,      /* topleft row,col, and botleft row,col */
                   9921:           {  6,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   9922:             "\x08\x82\x78\x65\x59\x39\x82\x00" }  },
1.1       albertel 9923:       /* --- pixel bitmap for cmmi83 char#31 \chi --- */
                   9924:       {  31, 2490,                      /* character number, location */
1.2       albertel 9925:           5, 0,   -2, 0,      /* topleft row,col, and botleft row,col */
                   9926:           {  7,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   9927:             "\x42\x13\x05\xc1\x90\xc4\x00" }  },
1.1       albertel 9928:       /* --- pixel bitmap for cmmi83 char#32 \psi --- */
                   9929:       {  32, 2521,                      /* character number, location */
1.2       albertel 9930:           8, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   9931:           {  6,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   9932:             "\x10\x82\xac\xab\x59\x39\x84\x00" }  },
1.1       albertel 9933:       /* --- pixel bitmap for cmmi83 char#33 \omega --- */
                   9934:       {  33, 2562,                      /* character number, location */
1.2       albertel 9935:           5, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   9936:           {  6,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   9937:             "\x63\x9a\x76\x1b" }  },
1.1       albertel 9938:       /* --- pixel bitmap for cmmi83 char#34 \varepsilon --- */
                   9939:       {  34, 2593,                      /* character number, location */
1.2       albertel 9940:           5, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   9941:           {  4,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   9942:             "\x2c\x12\x06" }  },
1.1       albertel 9943:       /* --- pixel bitmap for cmmi83 char#35 \vartheta --- */
                   9944:       {  35, 2610,                      /* character number, location */
1.2       albertel 9945:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   9946:           {  5,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   9947:             "\x9c\xd2\x3f\x55\x32" }  },
1.1       albertel 9948:       /* --- pixel bitmap for cmmi83 char#36 \varpi --- */
                   9949:       {  36, 2643,                      /* character number, location */
1.2       albertel 9950:           5, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   9951:           {  8,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   9952:             "\xfe\x53\x52\x29\x36" }  },
1.1       albertel 9953:       /* --- pixel bitmap for cmmi83 char#37 \varrho --- */
                   9954:       {  37, 2674,                      /* character number, location */
1.2       albertel 9955:           5, 0,   -2, 0,      /* topleft row,col, and botleft row,col */
                   9956:           {  5,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   9957:             "\x4c\xca\x75\xc2\x03" }  },
1.1       albertel 9958:       /* --- pixel bitmap for cmmi83 char#38 \varsigma --- */
                   9959:       {  38, 2701,                      /* character number, location */
1.2       albertel 9960:           5, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   9961:           {  3,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   9962:             "\x4e\xa2\x01" }  },
1.1       albertel 9963:       /* --- pixel bitmap for cmmi83 char#39 \varphi --- */
                   9964:       {  39, 2720,                      /* character number, location */
1.2       albertel 9965:           5, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   9966:           {  6,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   9967:             "\x5a\x59\x4e\x8e\x20\x00" }  },
1.1       albertel 9968:       /* --- pixel bitmap for cmmi83 char#40 \leftharpoonup --- */
                   9969:       {  40, 3136,                      /* character number, location */
1.2       albertel 9970:           5, 1,    2, 1,      /* topleft row,col, and botleft row,col */
                   9971:           {  8,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   9972:             "\x04\x02\xff" }  },
1.1       albertel 9973:       /* --- pixel bitmap for cmmi83 char#41 \leftharpoondown --- */
                   9974:       {  41, 3149,                      /* character number, location */
1.2       albertel 9975:           3, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   9976:           {  8,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   9977:             "\xff\x02\x04" }  },
1.1       albertel 9978:       /* --- pixel bitmap for cmmi83 char#42 \rightharpoonup --- */
                   9979:       {  42, 3162,                      /* character number, location */
1.2       albertel 9980:           5, 1,    2, 1,      /* topleft row,col, and botleft row,col */
                   9981:           {  8,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   9982:             "\x20\x40\xff" }  },
1.1       albertel 9983:       /* --- pixel bitmap for cmmi83 char#43 \rightharpoondown --- */
                   9984:       {  43, 3175,                      /* character number, location */
1.2       albertel 9985:           3, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   9986:           {  8,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   9987:             "\xff\x40\x20" }  },
1.1       albertel 9988:       /* --- pixel bitmap for cmmi83 char#44 ` --- */
                   9989:       {  44, 3188,                      /* character number, location */
1.2       albertel 9990:           7, 0,    2, 0,      /* topleft row,col, and botleft row,col */
                   9991:           {  2,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   9992:             "\x56\x02" }  },
1.1       albertel 9993:       /* --- pixel bitmap for cmmi83 char#45 ' --- */
                   9994:       {  45, 3205,                      /* character number, location */
1.2       albertel 9995:           7, 0,    2, 0,      /* topleft row,col, and botleft row,col */
                   9996:           {  2,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   9997:             "\xa9\x01" }  },
1.1       albertel 9998:       /* --- pixel bitmap for cmmi83 char#46 \triangleright --- */
                   9999:       {  46, 3222,                      /* character number, location */
1.2       albertel 10000:           4, 1,    1, 1,      /* topleft row,col, and botleft row,col */
                   10001:           {  3,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10002:             "\xf9\x00" }  },
1.1       albertel 10003:       /* --- pixel bitmap for cmmi83 char#47 \triangleleft --- */
                   10004:       {  47, 3235,                      /* character number, location */
1.2       albertel 10005:           4, 1,    1, 1,      /* topleft row,col, and botleft row,col */
                   10006:           {  3,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10007:             "\xbc\x01" }  },
1.1       albertel 10008:       /* --- pixel bitmap for cmmi83 char#48 \0 --- */
                   10009:       {  48, 2902,                      /* character number, location */
1.2       albertel 10010:           5, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   10011:           {  5,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10012:             "\x2e\xc6\xe8\x00" }  },
1.1       albertel 10013:       /* --- pixel bitmap for cmmi83 char#49 \1 --- */
                   10014:       {  49, 2925,                      /* character number, location */
1.2       albertel 10015:           5, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   10016:           {  3,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10017:             "\x93\x74" }  },
1.1       albertel 10018:       /* --- pixel bitmap for cmmi83 char#50 \2 --- */
                   10019:       {  50, 2942,                      /* character number, location */
1.2       albertel 10020:           5, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   10021:           {  5,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10022:             "\x4e\x42\xfe\x01" }  },
1.1       albertel 10023:       /* --- pixel bitmap for cmmi83 char#51 \3 --- */
                   10024:       {  51, 2961,                      /* character number, location */
1.2       albertel 10025:           5, 0,   -2, 0,      /* topleft row,col, and botleft row,col */
                   10026:           {  5,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10027:             "\x44\x21\x06\xa3\x03" }  },
1.1       albertel 10028:       /* --- pixel bitmap for cmmi83 char#52 \4 --- */
                   10029:       {  52, 2986,                      /* character number, location */
1.2       albertel 10030:           5, 0,   -2, 0,      /* topleft row,col, and botleft row,col */
                   10031:           {  5,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10032:             "\x8c\xa9\xf5\x11\x07" }  },
1.1       albertel 10033:       /* --- pixel bitmap for cmmi83 char#53 \5 --- */
                   10034:       {  53, 3011,                      /* character number, location */
1.2       albertel 10035:           5, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   10036:           {  4,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10037:             "\x17\x71\x98\x06" }  },
1.1       albertel 10038:       /* --- pixel bitmap for cmmi83 char#54 \6 --- */
                   10039:       {  54, 3034,                      /* character number, location */
1.2       albertel 10040:           7, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   10041:           {  5,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10042:             "\x4c\x84\x17\xa3\x03" }  },
1.1       albertel 10043:       /* --- pixel bitmap for cmmi83 char#55 \7 --- */
                   10044:       {  55, 3059,                      /* character number, location */
1.2       albertel 10045:           5, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   10046:           {  4,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10047:             "\x9f\x24\x22\x02" }  },
1.1       albertel 10048:       /* --- pixel bitmap for cmmi83 char#56 \8 --- */
                   10049:       {  56, 3082,                      /* character number, location */
1.2       albertel 10050:           7, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   10051:           {  5,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10052:             "\x44\x29\x17\xa3\x03" }  },
1.1       albertel 10053:       /* --- pixel bitmap for cmmi83 char#57 \9 --- */
                   10054:       {  57, 3111,                      /* character number, location */
1.2       albertel 10055:           5, 0,   -2, 0,      /* topleft row,col, and botleft row,col */
                   10056:           {  5,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10057:             "\x2e\x46\x0f\x91\x01" }  },
1.1       albertel 10058:       /* --- pixel bitmap for cmmi83 char#58 . --- */
                   10059:       {  58, 3248,                      /* character number, location */
1.2       albertel 10060:           1, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   10061:           {  1,    1, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10062:             "\x01" }  },
1.1       albertel 10063:       /* --- pixel bitmap for cmmi83 char#59 , --- */
                   10064:       {  59, 3257,                      /* character number, location */
1.2       albertel 10065:           1, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   10066:           {  1,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10067:             "\x07" }  },
1.1       albertel 10068:       /* --- pixel bitmap for cmmi83 char#60 < --- */
                   10069:       {  60, 3270,                      /* character number, location */
1.2       albertel 10070:           7, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   10071:           {  6,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10072:             "\x20\xc4\x08\x81\xc0\x40\x20" }  },
1.1       albertel 10073:       /* --- pixel bitmap for cmmi83 char#61 / --- */
                   10074:       {  61, 3295,                      /* character number, location */
1.2       albertel 10075:           9, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   10076:           {  3,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10077:             "\x24\x25\x49\x4a\x02" }  },
1.1       albertel 10078:       /* --- pixel bitmap for cmmi83 char#62 > --- */
                   10079:       {  62, 3326,                      /* character number, location */
1.2       albertel 10080:           7, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   10081:           {  6,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10082:             "\x81\xc0\x40\x20\xc4\x08\x01" }  },
1.1       albertel 10083:       /* --- pixel bitmap for cmmi83 char#63 \star --- */
                   10084:       {  63, 3351,                      /* character number, location */
1.2       albertel 10085:           3,-1,    1,-1,      /* topleft row,col, and botleft row,col */
                   10086:           {  6,    2, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10087:             "\x3c\x06" }  },
1.1       albertel 10088:       /* --- pixel bitmap for cmmi83 char#64 \partial --- */
                   10089:       {  64, 2753,                      /* character number, location */
1.2       albertel 10090:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   10091:           {  5,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10092:             "\x8c\x42\x1f\x53\x3a" }  },
1.1       albertel 10093:       /* --- pixel bitmap for cmmi83 char#65 A --- */
                   10094:       {  65,   35,                      /* character number, location */
1.2       albertel 10095:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   10096:           {  8,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10097:             "\x60\x60\x50\x50\x48\x78\x44\xe7" }  },
1.1       albertel 10098:       /* --- pixel bitmap for cmmi83 char#66 B --- */
                   10099:       {  66,   68,                      /* character number, location */
1.2       albertel 10100:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   10101:           {  8,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10102:             "\x7c\xc8\x44\x7c\x64\x44\x22\x1f" }  },
1.1       albertel 10103:       /* --- pixel bitmap for cmmi83 char#67 C --- */
                   10104:       {  67,  101,                      /* character number, location */
1.2       albertel 10105:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   10106:           {  6,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10107:             "\xbc\x2c\x05\x41\x94\x18" }  },
1.1       albertel 10108:       /* --- pixel bitmap for cmmi83 char#68 D --- */
                   10109:       {  68,  132,                      /* character number, location */
1.2       albertel 10110:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   10111:           {  8,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10112:             "\x7c\x88\x84\x84\x84\x04\x42\x3f" }  },
1.1       albertel 10113:       /* --- pixel bitmap for cmmi83 char#69 E --- */
                   10114:       {  69,  165,                      /* character number, location */
1.2       albertel 10115:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   10116:           {  8,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10117:             "\xfc\xc8\x64\x3c\xa4\x84\x42\x7f" }  },
1.1       albertel 10118:       /* --- pixel bitmap for cmmi83 char#70 F --- */
                   10119:       {  70,  200,                      /* character number, location */
1.2       albertel 10120:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   10121:           {  8,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10122:             "\xfc\xc8\x54\x1c\x14\x04\x02\x07" }  },
1.1       albertel 10123:       /* --- pixel bitmap for cmmi83 char#71 G --- */
                   10124:       {  71,  231,                      /* character number, location */
1.2       albertel 10125:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   10126:           {  7,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10127:             "\x58\xb3\x28\x10\x0f\x45\x3c" }  },
1.1       albertel 10128:       /* --- pixel bitmap for cmmi83 char#72 H --- */
                   10129:       {  72,  266,                      /* character number, location */
1.2       albertel 10130:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   10131:           { 10,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10132:             "\x9c\x23\x44\x08\x3f\x84\x10\x22\xc4\x39" }  },
1.1       albertel 10133:       /* --- pixel bitmap for cmmi83 char#73 I --- */
                   10134:       {  73,  303,                      /* character number, location */
1.2       albertel 10135:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   10136:           {  5,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10137:             "\x1c\x11\x42\x88\x38" }  },
1.1       albertel 10138:       /* --- pixel bitmap for cmmi83 char#74 J --- */
                   10139:       {  74,  326,                      /* character number, location */
1.2       albertel 10140:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   10141:           {  6,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10142:             "\x38\x84\x20\x08\x52\x1c" }  },
1.1       albertel 10143:       /* --- pixel bitmap for cmmi83 char#75 K --- */
                   10144:       {  75,  351,                      /* character number, location */
1.2       albertel 10145:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   10146:           { 10,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10147:             "\xdc\x23\x41\x02\x05\x2c\x90\x20\xc2\x39" }  },
1.1       albertel 10148:       /* --- pixel bitmap for cmmi83 char#76 L --- */
                   10149:       {  76,  390,                      /* character number, location */
1.2       albertel 10150:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   10151:           {  7,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10152:             "\x1c\x04\x81\x40\x24\x8a\x7e" }  },
1.1       albertel 10153:       /* --- pixel bitmap for cmmi83 char#77 M --- */
                   10154:       {  77,  419,                      /* character number, location */
1.2       albertel 10155:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   10156:           { 12,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10157:             "\x1c\x8e\x61\x14\x43\x29\x94\x42\x25\x32\x71\x3b" }  },
1.1       albertel 10158:       /* --- pixel bitmap for cmmi83 char#78 N --- */
                   10159:       {  78,  476,                      /* character number, location */
1.2       albertel 10160:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   10161:           { 10,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10162:             "\x8c\x63\x44\x09\x25\xa4\x90\x22\xc6\x11" }  },
1.1       albertel 10163:       /* --- pixel bitmap for cmmi83 char#79 O --- */
                   10164:       {  79,  523,                      /* character number, location */
1.2       albertel 10165:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   10166:           {  6,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10167:             "\x9c\x28\x86\x61\x14\x39" }  },
1.1       albertel 10168:       /* --- pixel bitmap for cmmi83 char#80 P --- */
                   10169:       {  80,  558,                      /* character number, location */
1.2       albertel 10170:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   10171:           {  7,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10172:             "\x7c\x24\x91\xc8\x23\x08\x0e" }  },
1.1       albertel 10173:       /* --- pixel bitmap for cmmi83 char#81 Q --- */
                   10174:       {  81,  587,                      /* character number, location */
1.2       albertel 10175:           8, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   10176:           {  6,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10177:             "\x9c\x28\x86\x61\x54\x39\x00\x02" }  },
1.1       albertel 10178:       /* --- pixel bitmap for cmmi83 char#82 R --- */
                   10179:       {  82,  628,                      /* character number, location */
1.2       albertel 10180:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   10181:           {  8,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10182:             "\x7c\x88\x44\x3c\x44\x44\x22\x67" }  },
1.1       albertel 10183:       /* --- pixel bitmap for cmmi83 char#83 S --- */
                   10184:       {  83,  663,                      /* character number, location */
1.2       albertel 10185:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   10186:           {  5,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10187:             "\x9c\x0a\x83\x60\x3a" }  },
1.1       albertel 10188:       /* --- pixel bitmap for cmmi83 char#84 T --- */
                   10189:       {  84,  690,                      /* character number, location */
1.2       albertel 10190:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   10191:           {  8,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10192:             "\xfe\xd2\x49\x08\x08\x08\x04\x1e" }  },
1.1       albertel 10193:       /* --- pixel bitmap for cmmi83 char#85 U --- */
                   10194:       {  85,  721,                      /* character number, location */
1.2       albertel 10195:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   10196:           {  8,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10197:             "\xe7\x42\x21\x21\x21\x21\x11\x0f" }  },
1.1       albertel 10198:       /* --- pixel bitmap for cmmi83 char#86 V --- */
                   10199:       {  86,  758,                      /* character number, location */
1.2       albertel 10200:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   10201:           {  8,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10202:             "\xe7\x22\x22\x12\x0a\x0a\x06\x06" }  },
1.1       albertel 10203:       /* --- pixel bitmap for cmmi83 char#87 W --- */
                   10204:       {  87,  793,                      /* character number, location */
1.2       albertel 10205:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   10206:           { 11,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10207:             "\x77\x97\x89\x4c\x54\xa1\x0a\x33\x98\x41\x04" }  },
1.1       albertel 10208:       /* --- pixel bitmap for cmmi83 char#88 X --- */
                   10209:       {  88,  846,                      /* character number, location */
1.2       albertel 10210:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   10211:           {  9,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10212:             "\xdc\xa1\xc0\x81\x01\x03\x05\x89\x73" }  },
1.1       albertel 10213:       /* --- pixel bitmap for cmmi83 char#89 Y --- */
                   10214:       {  89,  879,                      /* character number, location */
1.2       albertel 10215:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   10216:           {  8,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10217:             "\xe7\x26\x14\x14\x08\x08\x04\x0e" }  },
1.1       albertel 10218:       /* --- pixel bitmap for cmmi83 char#90 Z --- */
                   10219:       {  90,  910,                      /* character number, location */
1.2       albertel 10220:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   10221:           {  6,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10222:             "\x3c\xa5\x21\xa4\x29\x7d" }  },
1.1       albertel 10223:       /* --- pixel bitmap for cmmi83 char#91 \flat --- */
                   10224:       {  91, 3362,                      /* character number, location */
1.2       albertel 10225:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   10226:           {  3,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10227:             "\x49\xd2\x76\x03" }  },
1.1       albertel 10228:       /* --- pixel bitmap for cmmi83 char#92 \natural --- */
                   10229:       {  92, 3393,                      /* character number, location */
1.2       albertel 10230:           8, 0,   -2, 0,      /* topleft row,col, and botleft row,col */
                   10231:           {  3,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10232:             "\x49\xdf\xb6\x27" }  },
1.1       albertel 10233:       /* --- pixel bitmap for cmmi83 char#93 \sharp --- */
                   10234:       {  93, 3430,                      /* character number, location */
1.2       albertel 10235:           8, 0,   -2, 0,      /* topleft row,col, and botleft row,col */
                   10236:           {  3,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10237:             "\x6d\xdf\xb6\x2f" }  },
1.1       albertel 10238:       /* --- pixel bitmap for cmmi83 char#94 \smile --- */
                   10239:       {  94, 3473,                      /* character number, location */
1.2       albertel 10240:           5, 1,    2, 1,      /* topleft row,col, and botleft row,col */
                   10241:           {  8,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10242:             "\x81\x42\x3c" }  },
1.1       albertel 10243:       /* --- pixel bitmap for cmmi83 char#95 \frown --- */
                   10244:       {  95, 3490,                      /* character number, location */
1.2       albertel 10245:           5, 1,    2, 1,      /* topleft row,col, and botleft row,col */
                   10246:           {  8,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10247:             "\x3c\x42\x81" }  },
1.1       albertel 10248:       /* --- pixel bitmap for cmmi83 char#96 \ell --- */
                   10249:       {  96, 2784,                      /* character number, location */
1.2       albertel 10250:           8,-1,    0,-1,      /* topleft row,col, and botleft row,col */
                   10251:           {  5,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10252:             "\x10\x33\x46\x8c\xe1" }  },
1.1       albertel 10253:       /* --- pixel bitmap for cmmi83 char#97 a --- */
                   10254:       {  97,  943,                      /* character number, location */
1.2       albertel 10255:           5, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   10256:           {  4,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10257:             "\x9e\xd9\x0b" }  },
1.1       albertel 10258:       /* --- pixel bitmap for cmmi83 char#98 b --- */
                   10259:       {  98,  968,                      /* character number, location */
1.2       albertel 10260:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   10261:           {  4,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10262:             "\x23\x71\x99\x35" }  },
1.1       albertel 10263:       /* --- pixel bitmap for cmmi83 char#99 c --- */
                   10264:       {  99,  997,                      /* character number, location */
1.2       albertel 10265:           5, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   10266:           {  4,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10267:             "\x9e\x11\x07" }  },
1.1       albertel 10268:       /* --- pixel bitmap for cmmi83 char#100 d --- */
                   10269:       { 100, 1016,                      /* character number, location */
1.2       albertel 10270:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   10271:           {  5,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10272:             "\x18\x22\x97\x52\x5b" }  },
1.1       albertel 10273:       /* --- pixel bitmap for cmmi83 char#101 e --- */
                   10274:       { 101, 1047,                      /* character number, location */
1.2       albertel 10275:           5, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   10276:           {  4,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10277:             "\x96\x17\x07" }  },
1.1       albertel 10278:       /* --- pixel bitmap for cmmi83 char#102 f --- */
                   10279:       { 102, 1066,                      /* character number, location */
1.2       albertel 10280:           8, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   10281:           {  4,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10282:             "\x4c\x64\x22\x22\x11" }  },
1.1       albertel 10283:       /* --- pixel bitmap for cmmi83 char#103 g --- */
                   10284:       { 103, 1093,                      /* character number, location */
1.2       albertel 10285:           5, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   10286:           {  4,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10287:             "\x9e\x59\x47\x03" }  },
1.1       albertel 10288:       /* --- pixel bitmap for cmmi83 char#104 h --- */
                   10289:       { 104, 1120,                      /* character number, location */
1.2       albertel 10290:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   10291:           {  5,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10292:             "\x86\x08\x27\x65\xce" }  },
1.1       albertel 10293:       /* --- pixel bitmap for cmmi83 char#105 i --- */
                   10294:       { 105, 1151,                      /* character number, location */
1.2       albertel 10295:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   10296:           {  2,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10297:             "\x02\x55\x01" }  },
1.1       albertel 10298:       /* --- pixel bitmap for cmmi83 char#106 j --- */
                   10299:       { 106, 1172,                      /* character number, location */
1.2       albertel 10300:           9, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   10301:           {  4,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10302:             "\x08\x00\x66\x24\x22\x01" }  },
1.1       albertel 10303:       /* --- pixel bitmap for cmmi83 char#107 k --- */
                   10304:       { 107, 1197,                      /* character number, location */
1.2       albertel 10305:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   10306:           {  5,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10307:             "\x86\x08\x6d\x4d\x4b" }  },
1.1       albertel 10308:       /* --- pixel bitmap for cmmi83 char#108 l --- */
                   10309:       { 108, 1228,                      /* character number, location */
1.2       albertel 10310:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   10311:           {  3,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10312:             "\xa6\x24\x4d" }  },
1.1       albertel 10313:       /* --- pixel bitmap for cmmi83 char#109 m --- */
                   10314:       { 109, 1251,                      /* character number, location */
1.2       albertel 10315:           5, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   10316:           {  8,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10317:             "\x6f\x93\x92\xc9\xc9" }  },
1.1       albertel 10318:       /* --- pixel bitmap for cmmi83 char#110 n --- */
                   10319:       { 110, 1286,                      /* character number, location */
1.2       albertel 10320:           5, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   10321:           {  4,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10322:             "\xbf\xda\x0d" }  },
1.1       albertel 10323:       /* --- pixel bitmap for cmmi83 char#111 o --- */
                   10324:       { 111, 1311,                      /* character number, location */
1.2       albertel 10325:           5, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   10326:           {  5,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10327:             "\x2e\xc6\x74\x00" }  },
1.1       albertel 10328:       /* --- pixel bitmap for cmmi83 char#112 p --- */
                   10329:       { 112, 1334,                      /* character number, location */
1.2       albertel 10330:           5, 0,   -2, 0,      /* topleft row,col, and botleft row,col */
                   10331:           {  6,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10332:             "\x9e\x49\x5a\x8e\x30\x00" }  },
1.1       albertel 10333:       /* --- pixel bitmap for cmmi83 char#113 q --- */
                   10334:       { 113, 1361,                      /* character number, location */
1.2       albertel 10335:           5, 0,   -2, 0,      /* topleft row,col, and botleft row,col */
                   10336:           {  4,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10337:             "\x9e\x59\x47\x06" }  },
1.1       albertel 10338:       /* --- pixel bitmap for cmmi83 char#114 r --- */
                   10339:       { 114, 1388,                      /* character number, location */
1.2       albertel 10340:           5, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   10341:           {  4,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10342:             "\xbf\x12\x01" }  },
1.1       albertel 10343:       /* --- pixel bitmap for cmmi83 char#115 s --- */
                   10344:       { 115, 1407,                      /* character number, location */
1.2       albertel 10345:           5, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   10346:           {  4,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10347:             "\xac\x46\x06" }  },
1.1       albertel 10348:       /* --- pixel bitmap for cmmi83 char#116 t --- */
                   10349:       { 116, 1426,                      /* character number, location */
1.2       albertel 10350:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   10351:           {  3,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10352:             "\xd4\xa5\x09" }  },
1.1       albertel 10353:       /* --- pixel bitmap for cmmi83 char#117 u --- */
                   10354:       { 117, 1447,                      /* character number, location */
1.2       albertel 10355:           5, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   10356:           {  4,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10357:             "\xbb\xda\x0e" }  },
1.1       albertel 10358:       /* --- pixel bitmap for cmmi83 char#118 v --- */
                   10359:       { 118, 1472,                      /* character number, location */
1.2       albertel 10360:           5, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   10361:           {  4,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10362:             "\xbb\x5a\x06" }  },
1.1       albertel 10363:       /* --- pixel bitmap for cmmi83 char#119 w --- */
                   10364:       { 119, 1497,                      /* character number, location */
1.2       albertel 10365:           5, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   10366:           {  7,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10367:             "\xcb\xa5\xb2\xe4\x01" }  },
1.1       albertel 10368:       /* --- pixel bitmap for cmmi83 char#120 x --- */
                   10369:       { 120, 1530,                      /* character number, location */
1.2       albertel 10370:           5, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   10371:           {  5,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10372:             "\xce\x92\xf5\x00" }  },
1.1       albertel 10373:       /* --- pixel bitmap for cmmi83 char#121 y --- */
                   10374:       { 121, 1551,                      /* character number, location */
1.2       albertel 10375:           5, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   10376:           {  4,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10377:             "\xbb\x5a\x46\x03" }  },
1.1       albertel 10378:       /* --- pixel bitmap for cmmi83 char#122 z --- */
                   10379:       { 122, 1580,                      /* character number, location */
1.2       albertel 10380:           5, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   10381:           {  4,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10382:             "\x6e\x64\x07" }  },
1.1       albertel 10383:       /* --- pixel bitmap for cmmi83 char#123 \imath --- */
                   10384:       { 123, 2807,                      /* character number, location */
1.2       albertel 10385:           5, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   10386:           {  1,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10387:             "\x1f" }  },
1.1       albertel 10388:       /* --- pixel bitmap for cmmi83 char#124 \jmath --- */
                   10389:       { 124, 2824,                      /* character number, location */
1.2       albertel 10390:           5, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   10391:           {  3,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10392:             "\x36\x25\x05" }  },
1.1       albertel 10393:       /* --- pixel bitmap for cmmi83 char#125 \wp --- */
                   10394:       { 125, 2845,                      /* character number, location */
1.2       albertel 10395:           5, 0,   -2, 0,      /* topleft row,col, and botleft row,col */
                   10396:           {  7,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10397:             "\x3c\xa3\x50\xd4\x29\x08\x00" }  },
1.1       albertel 10398:       /* --- pixel bitmap for cmmi83 char#126 \vec --- */
                   10399:       { 126, 2876,                      /* character number, location */
1.2       albertel 10400:           9, 2,    6, 2,      /* topleft row,col, and botleft row,col */
                   10401:           {  5,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10402:             "\xe8\x23" }  },
1.1       albertel 10403:       /* --- pixel bitmap for cmmi83 char#127 (noname) --- */
                   10404:       { 127, 2889,                      /* character number, location */
1.2       albertel 10405:           8, 3,    6, 3,      /* topleft row,col, and botleft row,col */
                   10406:           {  3,    2, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10407:             "\x2b" }  },
1.1       albertel 10408:       /* --- trailer  --- */
1.2       albertel 10409:       { -99, -999,  0,0,0,0, { 0,0,0,0, (pixbyte *)"\0" }  }
1.1       albertel 10410:    } ;
                   10411: 
                   10412: 
1.2       albertel 10413: /* --- size=1 for .100gf ---
                   10414:  * mf '\mode=preview; mag=magstep(-17.87427405946994351363); input cmmi10'
                   10415:  * --------------------------------------------------------------------- */
1.1       albertel 10416: /* --- fontdef for cmmi100 --- */
                   10417: static	chardef  cmmi100[] =
                   10418:    {
                   10419:       /* --- pixel bitmap for cmmi100 char#0 \Gamma --- */
1.2       albertel 10420:       {   0,52525,                      /* character number, location */
                   10421:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   10422:           {  9,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10423:             "\xfc\x11\x23\x24\x44\x80\x00\x01\x01\x0f\x00" }  },
1.1       albertel 10424:       /* --- pixel bitmap for cmmi100 char#1 \Delta --- */
1.2       albertel 10425:       {   1,53390,                      /* character number, location */
                   10426:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   10427:           { 10,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10428:             "\xc0\x00\x03\x1a\x44\x08\x11\x44\xa0\x80\xff\x03" }  },
1.1       albertel 10429:       /* --- pixel bitmap for cmmi100 char#2 \Theta --- */
1.2       albertel 10430:       {   2,54515,                      /* character number, location */
                   10431:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   10432:           {  9,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10433:             "\xf0\x08\x0b\x1c\x98\x33\x60\x20\x21\x3c\x00" }  },
1.1       albertel 10434:       /* --- pixel bitmap for cmmi100 char#3 \Lambda --- */
1.2       albertel 10435:       {   3,55411,                      /* character number, location */
                   10436:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   10437:           {  9,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10438:             "\x60\xc0\x40\x81\x82\x04\x09\x11\x21\xe7\x01" }  },
1.1       albertel 10439:       /* --- pixel bitmap for cmmi100 char#4 \Xi --- */
1.2       albertel 10440:       {   4,56816,                      /* character number, location */
                   10441:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   10442:           {  9,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10443:             "\xfc\x09\x02\x20\xc2\x87\x08\x80\x20\x7f\x00" }  },
1.1       albertel 10444:       /* --- pixel bitmap for cmmi100 char#5 \Pi --- */
1.2       albertel 10445:       {   5,58037,                      /* character number, location */
                   10446:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   10447:           { 11,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10448:             "\xfc\x47\x08\x42\x08\x41\x08\x42\x10\x42\x08\xe7\x01" }  },
1.1       albertel 10449:       /* --- pixel bitmap for cmmi100 char#6 \Sigma --- */
1.2       albertel 10450:       {   6,59192,                      /* character number, location */
                   10451:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   10452:           { 10,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10453:             "\xfc\x33\x8c\x20\x44\x30\x60\xc4\x90\x21\xff\x00" }  },
1.1       albertel 10454:       /* --- pixel bitmap for cmmi100 char#7 \Upsilon --- */
1.2       albertel 10455:       {   7,60208,                      /* character number, location */
                   10456:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   10457:           {  9,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10458:             "\xce\x12\x62\x40\x80\x00\x01\x02\x02\x1f\x00" }  },
1.1       albertel 10459:       /* --- pixel bitmap for cmmi100 char#8 \Phi --- */
1.2       albertel 10460:       {   8,61210,                      /* character number, location */
                   10461:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   10462:           {  8,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10463:             "\xf8\x20\x7c\x92\x91\xd1\x3e\x08\x3e" }  },
1.1       albertel 10464:       /* --- pixel bitmap for cmmi100 char#9 \Psi --- */
1.2       albertel 10465:       {   9,62239,                      /* character number, location */
                   10466:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   10467:           {  9,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10468:             "\x7c\x20\x44\x4e\x92\x64\x85\x07\x02\x1f\x00" }  },
1.1       albertel 10469:       /* --- pixel bitmap for cmmi100 char#10 \Omega --- */
1.2       albertel 10470:       {  10,63426,                      /* character number, location */
                   10471:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   10472:           { 10,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10473:             "\xf0\x30\x44\xa0\x40\x02\x11\x42\x44\x31\xe7\x00" }  },
1.1       albertel 10474:       /* --- pixel bitmap for cmmi100 char#11 \alpha --- */
1.2       albertel 10475:       {  11,64434,                      /* character number, location */
                   10476:           6, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   10477:           {  6,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10478:             "\x4e\x1c\x47\xd9\x09" }  },
1.1       albertel 10479:       /* --- pixel bitmap for cmmi100 char#12 \beta --- */
1.2       albertel 10480:       {  12,65455,                      /* character number, location */
                   10481:          10, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   10482:           {  8,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10483:             "\x70\x90\x88\x48\x3c\x44\x44\x44\x26\x1e\x02\x02\x01" }  },
1.1       albertel 10484:       /* --- pixel bitmap for cmmi100 char#13 \gamma --- */
1.2       albertel 10485:       {  13,66316,                      /* character number, location */
                   10486:           6, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   10487:           {  7,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10488:             "\xce\x68\x0c\x06\x83\x40\x20\x08" }  },
1.1       albertel 10489:       /* --- pixel bitmap for cmmi100 char#14 \delta --- */
1.2       albertel 10490:       {  14,67225,                      /* character number, location */
                   10491:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   10492:           {  5,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10493:             "\x5e\x08\x42\x56\x4a\x65\x00" }  },
1.1       albertel 10494:       /* --- pixel bitmap for cmmi100 char#15 \epsilon --- */
1.2       albertel 10495:       {  15,68065,                      /* character number, location */
                   10496:           6, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   10497:           {  4,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10498:             "\x1e\x17\x69" }  },
1.1       albertel 10499:       /* --- pixel bitmap for cmmi100 char#16 \zeta --- */
1.2       albertel 10500:       {  16,68937,                      /* character number, location */
                   10501:          10, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   10502:           {  5,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10503:             "\x08\x13\x21\x42\x08\x61\x30\xe4\x00" }  },
1.1       albertel 10504:       /* --- pixel bitmap for cmmi100 char#17 \eta --- */
1.2       albertel 10505:       {  17,69770,                      /* character number, location */
                   10506:           6, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   10507:           {  6,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10508:             "\xdb\x29\x8a\x51\x04\x41\x08" }  },
1.1       albertel 10509:       /* --- pixel bitmap for cmmi100 char#18 \theta --- */
1.2       albertel 10510:       {  18,70480,                      /* character number, location */
                   10511:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   10512:           {  5,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10513:             "\x88\x4a\xf9\x5e\x2a\x65\x00" }  },
1.1       albertel 10514:       /* --- pixel bitmap for cmmi100 char#19 \iota --- */
1.2       albertel 10515:       {  19,71073,                      /* character number, location */
                   10516:           6, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   10517:           {  3,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10518:             "\x92\x54\x01" }  },
1.1       albertel 10519:       /* --- pixel bitmap for cmmi100 char#20 \kappa --- */
1.2       albertel 10520:       {  20,71967,                      /* character number, location */
                   10521:           6, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   10522:           {  6,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10523:             "\xb2\x62\x28\x69\x0c" }  },
1.1       albertel 10524:       /* --- pixel bitmap for cmmi100 char#21 \lambda --- */
1.2       albertel 10525:       {  21,72778,                      /* character number, location */
                   10526:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   10527:           {  6,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10528:             "\x06\x82\x20\x10\x84\x91\x62\x08" }  },
1.1       albertel 10529:       /* --- pixel bitmap for cmmi100 char#22 \mu --- */
1.2       albertel 10530:       {  22,73728,                      /* character number, location */
                   10531:           6, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   10532:           {  7,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10533:             "\x44\x22\x91\x68\xf6\x0a\x04\x01" }  },
1.1       albertel 10534:       /* --- pixel bitmap for cmmi100 char#23 \nu --- */
1.2       albertel 10535:       {  23,74469,                      /* character number, location */
                   10536:           6, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   10537:           {  6,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10538:             "\xa3\x28\x49\xcd\x00" }  },
1.1       albertel 10539:       /* --- pixel bitmap for cmmi100 char#24 \xi --- */
1.2       albertel 10540:       {  24,75547,                      /* character number, location */
                   10541:          10, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   10542:           {  6,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10543:             "\x08\x4e\x10\x04\x27\x08\x81\xc0\x40\x1c" }  },
1.1       albertel 10544:       /* --- pixel bitmap for cmmi100 char#25 \pi --- */
1.2       albertel 10545:       {  25,76403,                      /* character number, location */
                   10546:           6, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   10547:           {  8,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10548:             "\xfe\x15\x14\x14\x12\x22" }  },
1.1       albertel 10549:       /* --- pixel bitmap for cmmi100 char#26 \rho --- */
1.2       albertel 10550:       {  26,77185,                      /* character number, location */
                   10551:           6, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   10552:           {  6,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10553:             "\x18\x49\x92\x96\x23\x08\x01" }  },
1.1       albertel 10554:       /* --- pixel bitmap for cmmi100 char#27 \sigma --- */
1.2       albertel 10555:       {  27,78037,                      /* character number, location */
                   10556:           6, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   10557:           {  7,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10558:             "\x7c\x49\x24\x92\x30\x00" }  },
1.1       albertel 10559:       /* --- pixel bitmap for cmmi100 char#28 \tau --- */
1.2       albertel 10560:       {  28,78742,                      /* character number, location */
                   10561:           6, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   10562:           {  7,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10563:             "\xfe\x04\x02\x41\x20\x00" }  },
1.1       albertel 10564:       /* --- pixel bitmap for cmmi100 char#29 \upsilon --- */
1.2       albertel 10565:       {  29,79565,                      /* character number, location */
                   10566:           6, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   10567:           {  7,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10568:             "\xc2\xa1\x50\x28\xe2\x00" }  },
1.1       albertel 10569:       /* --- pixel bitmap for cmmi100 char#30 \phi --- */
1.2       albertel 10570:       {  30,80385,                      /* character number, location */
                   10571:          10, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   10572:           {  6,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10573:             "\x10\x84\x20\x9c\x5a\x96\x95\x23\x08\x02" }  },
1.1       albertel 10574:       /* --- pixel bitmap for cmmi100 char#31 \chi --- */
1.2       albertel 10575:       {  31,81378,                      /* character number, location */
                   10576:           6, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   10577:           {  8,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10578:             "\x84\x86\x48\x28\x10\x18\x24\x22\x41" }  },
1.1       albertel 10579:       /* --- pixel bitmap for cmmi100 char#32 \psi --- */
1.2       albertel 10580:       {  32,82387,                      /* character number, location */
                   10581:          10, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   10582:           {  8,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10583:             "\x20\x20\x20\x10\x92\x93\x92\x4a\x6a\x1c\x08\x04\x04" }  },
1.1       albertel 10584:       /* --- pixel bitmap for cmmi100 char#33 \omega --- */
1.2       albertel 10585:       {  33,83452,                      /* character number, location */
                   10586:           6, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   10587:           {  8,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10588:             "\x82\x81\x91\x91\x59\x36" }  },
1.1       albertel 10589:       /* --- pixel bitmap for cmmi100 char#34 \varepsilon --- */
1.2       albertel 10590:       {  34,84381,                      /* character number, location */
                   10591:           6, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   10592:           {  5,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10593:             "\x5c\x30\x11\x1d" }  },
1.1       albertel 10594:       /* --- pixel bitmap for cmmi100 char#35 \vartheta --- */
1.2       albertel 10595:       {  35,85330,                      /* character number, location */
                   10596:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   10597:           {  7,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10598:             "\x30\x14\x12\x39\x1b\x8b\x24\x12\x07" }  },
1.1       albertel 10599:       /* --- pixel bitmap for cmmi100 char#36 \varpi --- */
1.2       albertel 10600:       {  36,86475,                      /* character number, location */
                   10601:           6, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   10602:           { 11,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10603:             "\xfe\x4f\x10\x89\x48\x44\x13\x66\x00" }  },
1.1       albertel 10604:       /* --- pixel bitmap for cmmi100 char#37 \varrho --- */
1.2       albertel 10605:       {  37,87318,                      /* character number, location */
                   10606:           6, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   10607:           {  5,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10608:             "\x4c\x4a\xb9\x4e\x08\x07" }  },
1.1       albertel 10609:       /* --- pixel bitmap for cmmi100 char#38 \varsigma --- */
1.2       albertel 10610:       {  38,88091,                      /* character number, location */
                   10611:           6, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   10612:           {  4,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10613:             "\x1e\x11\x86\x06" }  },
1.1       albertel 10614:       /* --- pixel bitmap for cmmi100 char#39 \varphi --- */
1.2       albertel 10615:       {  39,88970,                      /* character number, location */
                   10616:           6, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   10617:           {  8,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10618:             "\x62\x91\x89\x49\x65\x1e\x04\x04\x02" }  },
1.1       albertel 10619:       /* --- pixel bitmap for cmmi100 char#40 \leftharpoonup --- */
1.2       albertel 10620:       {  40,103866,                     /* character number, location */
                   10621:           7, 1,    3, 1,      /* topleft row,col, and botleft row,col */
                   10622:           { 12,    4, 3,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10623:             "\xf1\x21\x90\x12\x9c" }  },
1.1       albertel 10624:       /* --- pixel bitmap for cmmi100 char#41 \leftharpoondown --- */
1.2       albertel 10625:       {  41,104862,                     /* character number, location */
                   10626:           4, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   10627:           { 12,    4, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10628:             "\xff\x6f\x00\x04\x40\x00" }  },
1.1       albertel 10629:       /* --- pixel bitmap for cmmi100 char#42 \rightharpoonup --- */
1.2       albertel 10630:       {  42,105856,                     /* character number, location */
                   10631:           7, 1,    3, 1,      /* topleft row,col, and botleft row,col */
                   10632:           { 12,    4, 3,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10633:             "\xf1\x91\x20\x92\x1c" }  },
1.1       albertel 10634:       /* --- pixel bitmap for cmmi100 char#43 \rightharpoondown --- */
1.2       albertel 10635:       {  43,106853,                     /* character number, location */
                   10636:           4, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   10637:           { 12,    4, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10638:             "\xff\x0f\x60\x00\x02\x20" }  },
1.1       albertel 10639:       /* --- pixel bitmap for cmmi100 char#44 ` --- */
1.2       albertel 10640:       {  44,107242,                     /* character number, location */
                   10641:           8, 1,    3, 1,      /* topleft row,col, and botleft row,col */
                   10642:           {  2,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10643:             "\x56\x02" }  },
1.1       albertel 10644:       /* --- pixel bitmap for cmmi100 char#45 ' --- */
1.2       albertel 10645:       {  45,107634,                     /* character number, location */
                   10646:           8, 1,    3, 1,      /* topleft row,col, and botleft row,col */
                   10647:           {  2,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10648:             "\xa9\x01" }  },
1.1       albertel 10649:       /* --- pixel bitmap for cmmi100 char#46 \triangleright --- */
1.2       albertel 10650:       {  46,108143,                     /* character number, location */
                   10651:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   10652:           {  5,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10653:             "\x61\xb4\xd8\x46\x00" }  },
1.1       albertel 10654:       /* --- pixel bitmap for cmmi100 char#47 \triangleleft --- */
1.2       albertel 10655:       {  47,108661,                     /* character number, location */
                   10656:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   10657:           {  5,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10658:             "\x90\xcb\x28\x39\x04" }  },
1.1       albertel 10659:       /* --- pixel bitmap for cmmi100 char#48 \0 --- */
1.2       albertel 10660:       {  48,94905,                      /* character number, location */
                   10661:           6, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   10662:           {  5,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10663:             "\x2e\xc6\x18\x1d" }  },
1.1       albertel 10664:       /* --- pixel bitmap for cmmi100 char#49 \1 --- */
1.2       albertel 10665:       {  49,95626,                      /* character number, location */
                   10666:           6, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   10667:           {  5,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10668:             "\xa6\x10\x42\x3e" }  },
1.1       albertel 10669:       /* --- pixel bitmap for cmmi100 char#50 \2 --- */
1.2       albertel 10670:       {  50,96560,                      /* character number, location */
                   10671:           6, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   10672:           {  5,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10673:             "\x2e\x42\x64\x3f" }  },
1.1       albertel 10674:       /* --- pixel bitmap for cmmi100 char#51 \3 --- */
1.2       albertel 10675:       {  51,97545,                      /* character number, location */
                   10676:           6, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   10677:           {  5,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10678:             "\x2e\x42\xe8\x60\x8c\x0e" }  },
1.1       albertel 10679:       /* --- pixel bitmap for cmmi100 char#52 \4 --- */
1.2       albertel 10680:       {  52,98426,                      /* character number, location */
                   10681:           6, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   10682:           {  7,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10683:             "\x18\x0c\x45\x32\xf9\x43\x20\x38" }  },
1.1       albertel 10684:       /* --- pixel bitmap for cmmi100 char#53 \5 --- */
1.2       albertel 10685:       {  53,99419,                      /* character number, location */
                   10686:           6, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   10687:           {  5,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10688:             "\x3f\x84\x17\x61\x8c\x0e" }  },
1.1       albertel 10689:       /* --- pixel bitmap for cmmi100 char#54 \6 --- */
1.2       albertel 10690:       {  54,100268,                     /* character number, location */
                   10691:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   10692:           {  5,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10693:             "\x5c\x84\x17\x63\x94\x0e" }  },
1.1       albertel 10694:       /* --- pixel bitmap for cmmi100 char#55 \7 --- */
1.2       albertel 10695:       {  55,101121,                     /* character number, location */
                   10696:           6, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   10697:           {  6,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10698:             "\x7f\x08\x21\x08\x41\x10\x04" }  },
1.1       albertel 10699:       /* --- pixel bitmap for cmmi100 char#56 \8 --- */
1.2       albertel 10700:       {  56,102000,                     /* character number, location */
                   10701:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   10702:           {  5,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10703:             "\x2e\x46\xe5\x62\x8c\x0e" }  },
1.1       albertel 10704:       /* --- pixel bitmap for cmmi100 char#57 \9 --- */
1.2       albertel 10705:       {  57,102855,                     /* character number, location */
                   10706:           6, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   10707:           {  5,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10708:             "\x2e\xc5\x18\x3d\x44\x07" }  },
1.1       albertel 10709:       /* --- pixel bitmap for cmmi100 char#58 . --- */
1.2       albertel 10710:       {  58,109108,                     /* character number, location */
                   10711:           1, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   10712:           {  1,    1, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10713:             "\x01" }  },
1.1       albertel 10714:       /* --- pixel bitmap for cmmi100 char#59 , --- */
1.2       albertel 10715:       {  59,109639,                     /* character number, location */
                   10716:           1, 2,   -3, 2,      /* topleft row,col, and botleft row,col */
                   10717:           {  1,    4, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10718:             "\x0f" }  },
1.1       albertel 10719:       /* --- pixel bitmap for cmmi100 char#60 < --- */
1.2       albertel 10720:       {  60,110267,                     /* character number, location */
                   10721:           8, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   10722:           {  9,    9, 3,18, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10723:             "\x72\x52\x52\x52\x61\x92\x92\x92\x92" }  },
1.1       albertel 10724:       /* --- pixel bitmap for cmmi100 char#61 / --- */
1.2       albertel 10725:       {  61,110761,                     /* character number, location */
                   10726:          10, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   10727:           {  5,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10728:             "\x10\x22\x84\x08\x21\x42\x88\x10\x00" }  },
1.1       albertel 10729:       /* --- pixel bitmap for cmmi100 char#62 > --- */
1.2       albertel 10730:       {  62,111410,                     /* character number, location */
                   10731:           8, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   10732:           {  9,    9, 3,19, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10733:             "\x02\x92\x92\x92\x91\x62\x52\x52\x52\x71" }  },
1.1       albertel 10734:       /* --- pixel bitmap for cmmi100 char#63 \star --- */
1.2       albertel 10735:       {  63,112079,                     /* character number, location */
                   10736:           4, 0,    2, 0,      /* topleft row,col, and botleft row,col */
                   10737:           {  6,    2, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10738:             "\x3c\x06" }  },
1.1       albertel 10739:       /* --- pixel bitmap for cmmi100 char#64 \partial --- */
1.2       albertel 10740:       {  64,89878,                      /* character number, location */
                   10741:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   10742:           {  6,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10743:             "\x9c\x08\x82\xbc\x18\x46\x91\x03" }  },
1.1       albertel 10744:       /* --- pixel bitmap for cmmi100 char#65 A --- */
1.2       albertel 10745:       {  65, 1000,                      /* character number, location */
                   10746:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   10747:           {  9,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10748:             "\x60\xc0\x40\x81\x82\x04\x0f\x11\x21\xe7\x01" }  },
1.1       albertel 10749:       /* --- pixel bitmap for cmmi100 char#66 B --- */
1.2       albertel 10750:       {  66, 2304,                      /* character number, location */
                   10751:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   10752:           { 10,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10753:             "\xfc\x21\x8c\x20\x61\xfc\x10\x44\x90\x20\x7f\x00" }  },
1.1       albertel 10754:       /* --- pixel bitmap for cmmi100 char#67 C --- */
1.2       albertel 10755:       {  67, 3245,                      /* character number, location */
                   10756:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   10757:           {  9,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10758:             "\x78\x09\x0b\x0c\x10\x20\x40\x20\x21\x3c\x00" }  },
1.1       albertel 10759:       /* --- pixel bitmap for cmmi100 char#68 D --- */
1.2       albertel 10760:       {  68, 4329,                      /* character number, location */
                   10761:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   10762:           { 11,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10763:             "\xf8\x83\x30\x04\x11\x88\x40\x04\x22\x88\x20\xfe\x00" }  },
1.1       albertel 10764:       /* --- pixel bitmap for cmmi100 char#69 E --- */
1.2       albertel 10765:       {  69, 5750,                      /* character number, location */
                   10766:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   10767:           {  9,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10768:             "\xfc\x11\x23\x25\xc5\x83\x24\x29\x61\x7f\x00" }  },
1.1       albertel 10769:       /* --- pixel bitmap for cmmi100 char#70 F --- */
1.2       albertel 10770:       {  70, 6983,                      /* character number, location */
                   10771:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   10772:           {  9,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10773:             "\xfc\x11\x23\x25\xc5\x83\x04\x09\x01\x0f\x00" }  },
1.1       albertel 10774:       /* --- pixel bitmap for cmmi100 char#71 G --- */
1.2       albertel 10775:       {  71, 8120,                      /* character number, location */
                   10776:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   10777:           {  9,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10778:             "\x78\x09\x0b\x0c\x10\x3e\x50\x20\x21\x7c\x00" }  },
1.1       albertel 10779:       /* --- pixel bitmap for cmmi100 char#72 H --- */
1.2       albertel 10780:       {  72, 9341,                      /* character number, location */
                   10781:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   10782:           { 11,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10783:             "\x9c\x47\x08\x42\x08\xc1\x0f\x42\x10\x42\x08\xe7\x01" }  },
1.1       albertel 10784:       /* --- pixel bitmap for cmmi100 char#73 I --- */
1.2       albertel 10785:       {  73,10040,                      /* character number, location */
                   10786:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   10787:           {  6,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10788:             "\x3c\x82\x10\x04\x41\x08\x0f" }  },
1.1       albertel 10789:       /* --- pixel bitmap for cmmi100 char#74 J --- */
1.2       albertel 10790:       {  74,10878,                      /* character number, location */
                   10791:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   10792:           {  7,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10793:             "\x78\x10\x08\x02\x81\x40\x12\x06" }  },
1.1       albertel 10794:       /* --- pixel bitmap for cmmi100 char#75 K --- */
1.2       albertel 10795:       {  75,12061,                      /* character number, location */
                   10796:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   10797:           { 11,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10798:             "\xbc\x47\x04\x12\x48\xc0\x03\x36\x10\x41\x08\xcf\x01" }  },
1.1       albertel 10799:       /* --- pixel bitmap for cmmi100 char#76 L --- */
1.2       albertel 10800:       {  76,12954,                      /* character number, location */
                   10801:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   10802:           {  9,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10803:             "\x78\x20\x40\x40\x80\x00\x21\x42\x42\xfe\x00" }  },
1.1       albertel 10804:       /* --- pixel bitmap for cmmi100 char#77 M --- */
1.2       albertel 10805:       {  77,14212,                      /* character number, location */
                   10806:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   10807:           { 14,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10808:             "\x1c\x3c\x06\x83\xa1\x50\x18\x14\x05\x29\x41\x4a\x88"
                   10809:             "\x09\x2f\x0f" }  },
1.1       albertel 10810:       /* --- pixel bitmap for cmmi100 char#78 N --- */
1.2       albertel 10811:       {  78,15350,                      /* character number, location */
                   10812:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   10813:           { 11,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10814:             "\x8c\xc7\x08\x46\x28\x41\x0a\x52\x90\x42\x08\x4f\x00" }  },
1.1       albertel 10815:       /* --- pixel bitmap for cmmi100 char#79 O --- */
1.2       albertel 10816:       {  79,16195,                      /* character number, location */
                   10817:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   10818:           {  9,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10819:             "\xf0\x08\x0b\x0c\x18\x30\x60\x20\x21\x3c\x00" }  },
1.1       albertel 10820:       /* --- pixel bitmap for cmmi100 char#80 P --- */
1.2       albertel 10821:       {  80,17278,                      /* character number, location */
                   10822:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   10823:           {  9,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10824:             "\xfc\x10\x22\x24\xc4\x87\x00\x01\x01\x0f\x00" }  },
1.1       albertel 10825:       /* --- pixel bitmap for cmmi100 char#81 Q --- */
1.2       albertel 10826:       {  81,18265,                      /* character number, location */
                   10827:           9, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   10828:           {  9,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10829:             "\xf0\x08\x0b\x1c\x18\x30\x60\x20\x2d\x3c\x00\x00\x00"
                   10830:             "\x03" }  },
1.1       albertel 10831:       /* --- pixel bitmap for cmmi100 char#82 R --- */
1.2       albertel 10832:       {  82,19576,                      /* character number, location */
                   10833:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   10834:           {  9,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10835:             "\xfc\x10\x23\x24\xc4\x87\x08\x11\x11\xcf\x01" }  },
1.1       albertel 10836:       /* --- pixel bitmap for cmmi100 char#83 S --- */
1.2       albertel 10837:       {  83,20595,                      /* character number, location */
                   10838:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   10839:           {  8,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10840:             "\xf8\x84\x04\x04\x38\x40\x40\x21\x1f" }  },
1.1       albertel 10841:       /* --- pixel bitmap for cmmi100 char#84 T --- */
1.2       albertel 10842:       {  84,21611,                      /* character number, location */
                   10843:           9,-1,    0,-1,      /* topleft row,col, and botleft row,col */
                   10844:           { 11,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10845:             "\xfe\x17\xa2\x10\x43\x04\x02\x10\x80\x00\x02\x7c\x00" }  },
1.1       albertel 10846:       /* --- pixel bitmap for cmmi100 char#85 U --- */
1.2       albertel 10847:       {  85,22591,                      /* character number, location */
                   10848:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   10849:           {  9,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10850:             "\xef\x85\x08\x09\x11\x22\x44\x88\x08\x0f\x00" }  },
1.1       albertel 10851:       /* --- pixel bitmap for cmmi100 char#86 V --- */
1.2       albertel 10852:       {  86,23491,                      /* character number, location */
                   10853:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   10854:           { 10,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10855:             "\xcf\x13\x42\x04\x11\x24\x90\x40\x01\x03\x0c\x00" }  },
1.1       albertel 10856:       /* --- pixel bitmap for cmmi100 char#87 W --- */
1.2       albertel 10857:       {  87,24856,                      /* character number, location */
                   10858:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   10859:           { 14,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10860:             "\xcf\xb9\x30\x42\x8a\x90\x12\x94\x04\xa5\xc0\x28\x10"
                   10861:             "\x06\x84\x01" }  },
1.1       albertel 10862:       /* --- pixel bitmap for cmmi100 char#88 X --- */
1.2       albertel 10863:       {  88,25983,                      /* character number, location */
                   10864:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   10865:           { 11,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10866:             "\x38\x87\x08\x28\xc0\x00\x06\x28\x60\x02\x11\xcf\x03" }  },
1.1       albertel 10867:       /* --- pixel bitmap for cmmi100 char#89 Y --- */
1.2       albertel 10868:       {  89,27039,                      /* character number, location */
                   10869:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   10870:           { 10,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10871:             "\xcf\x13\x82\x04\x0a\x38\x40\x00\x01\x02\x3c\x00" }  },
1.1       albertel 10872:       /* --- pixel bitmap for cmmi100 char#90 Z --- */
1.2       albertel 10873:       {  90,28084,                      /* character number, location */
                   10874:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   10875:           {  8,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10876:             "\xfc\x4c\x24\x32\x10\x48\x44\x22\x3f" }  },
1.1       albertel 10877:       /* --- pixel bitmap for cmmi100 char#91 \flat --- */
1.2       albertel 10878:       {  91,112714,                     /* character number, location */
                   10879:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   10880:           {  3,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10881:             "\x49\xd2\xf6\x0b" }  },
1.1       albertel 10882:       /* --- pixel bitmap for cmmi100 char#92 \natural --- */
1.2       albertel 10883:       {  92,113421,                     /* character number, location */
                   10884:          10, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   10885:           {  5,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10886:             "\x21\x84\x7c\x63\x8c\x31\x5f\x08\x01" }  },
1.1       albertel 10887:       /* --- pixel bitmap for cmmi100 char#93 \sharp --- */
1.2       albertel 10888:       {  93,114236,                     /* character number, location */
                   10889:          10, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   10890:           {  3,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10891:             "\x6d\xfb\xb6\xed\x5b" }  },
1.1       albertel 10892:       /* --- pixel bitmap for cmmi100 char#94 \smile --- */
1.2       albertel 10893:       {  94,115108,                     /* character number, location */
                   10894:           6, 1,    2, 1,      /* topleft row,col, and botleft row,col */
                   10895:           { 12,    4, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10896:             "\x01\x28\x40\x04\x82\x1f" }  },
1.1       albertel 10897:       /* --- pixel bitmap for cmmi100 char#95 \frown --- */
1.2       albertel 10898:       {  95,115946,                     /* character number, location */
                   10899:           6, 1,    2, 1,      /* topleft row,col, and botleft row,col */
                   10900:           { 12,    4, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10901:             "\xf8\x41\x20\x02\x14\x80" }  },
1.1       albertel 10902:       /* --- pixel bitmap for cmmi100 char#96 \ell --- */
1.2       albertel 10903:       {  96,90620,                      /* character number, location */
                   10904:          10,-1,    0,-1,      /* topleft row,col, and botleft row,col */
                   10905:           {  7,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10906:             "\x60\x28\x12\x45\xa2\x30\x08\x46\x1c" }  },
1.1       albertel 10907:       /* --- pixel bitmap for cmmi100 char#97 a --- */
1.2       albertel 10908:       {  97,28976,                      /* character number, location */
                   10909:           6, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   10910:           {  5,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10911:             "\x5c\xc6\x98\x2d" }  },
1.1       albertel 10912:       /* --- pixel bitmap for cmmi100 char#98 b --- */
1.2       albertel 10913:       {  98,29788,                      /* character number, location */
                   10914:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   10915:           {  4,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10916:             "\x23\x22\x97\x99\x35" }  },
1.1       albertel 10917:       /* --- pixel bitmap for cmmi100 char#99 c --- */
1.2       albertel 10918:       {  99,30573,                      /* character number, location */
                   10919:           6, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   10920:           {  4,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10921:             "\xbc\x11\x79" }  },
1.1       albertel 10922:       /* --- pixel bitmap for cmmi100 char#100 d --- */
1.2       albertel 10923:       { 100,31499,                      /* character number, location */
                   10924:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   10925:           {  6,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10926:             "\x30\x08\x82\x9c\x14\x45\x99\x05" }  },
1.1       albertel 10927:       /* --- pixel bitmap for cmmi100 char#101 e --- */
1.2       albertel 10928:       { 101,32286,                      /* character number, location */
                   10929:           6, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   10930:           {  4,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10931:             "\x9e\x17\x69" }  },
1.1       albertel 10932:       /* --- pixel bitmap for cmmi100 char#102 f --- */
1.2       albertel 10933:       { 102,33416,                      /* character number, location */
                   10934:          10, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   10935:           {  7,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10936:             "\x60\x08\x04\x82\x83\x20\x10\x08\x04\x82\x70\x00" }  },
1.1       albertel 10937:       /* --- pixel bitmap for cmmi100 char#103 g --- */
1.2       albertel 10938:       { 103,34363,                      /* character number, location */
                   10939:           6, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   10940:           {  6,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10941:             "\x38\x49\x92\x14\x07\x41\x0f" }  },
1.1       albertel 10942:       /* --- pixel bitmap for cmmi100 char#104 h --- */
1.2       albertel 10943:       { 104,35264,                      /* character number, location */
                   10944:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   10945:           {  6,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10946:             "\x06\x41\x10\x9a\x29\x8a\x71\x08" }  },
1.1       albertel 10947:       /* --- pixel bitmap for cmmi100 char#105 i --- */
1.2       albertel 10948:       { 105,36040,                      /* character number, location */
                   10949:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   10950:           {  4,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10951:             "\x08\x00\x52\x22\x66" }  },
1.1       albertel 10952:       /* --- pixel bitmap for cmmi100 char#106 j --- */
1.2       albertel 10953:       { 106,36941,                      /* character number, location */
                   10954:          10, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   10955:           {  6,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10956:             "\x20\x00\x00\x18\x05\x41\x08\x82\x10\x07" }  },
1.1       albertel 10957:       /* --- pixel bitmap for cmmi100 char#107 k --- */
1.2       albertel 10958:       { 107,37934,                      /* character number, location */
                   10959:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   10960:           {  6,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10961:             "\x06\x41\x10\xb2\x6a\x18\x55\x06" }  },
1.1       albertel 10962:       /* --- pixel bitmap for cmmi100 char#108 l --- */
1.2       albertel 10963:       { 108,38596,                      /* character number, location */
                   10964:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   10965:           {  3,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10966:             "\x26\x29\x49\x13" }  },
1.1       albertel 10967:       /* --- pixel bitmap for cmmi100 char#109 m --- */
1.2       albertel 10968:       { 109,39737,                      /* character number, location */
                   10969:           6, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   10970:           { 11,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10971:             "\xb6\x6b\x16\x91\x88\x24\x52\x11\x01" }  },
1.1       albertel 10972:       /* --- pixel bitmap for cmmi100 char#110 n --- */
1.2       albertel 10973:       { 110,40674,                      /* character number, location */
                   10974:           6, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   10975:           {  7,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10976:             "\xbe\x16\x89\x24\x15\x01" }  },
1.1       albertel 10977:       /* --- pixel bitmap for cmmi100 char#111 o --- */
1.2       albertel 10978:       { 111,41374,                      /* character number, location */
                   10979:           6, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   10980:           {  5,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10981:             "\x4c\xc6\x98\x0c" }  },
1.1       albertel 10982:       /* --- pixel bitmap for cmmi100 char#112 p --- */
1.2       albertel 10983:       { 112,42280,                      /* character number, location */
                   10984:           6, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   10985:           {  7,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10986:             "\x36\x27\x91\x68\xd2\x08\x04\x07" }  },
1.1       albertel 10987:       /* --- pixel bitmap for cmmi100 char#113 q --- */
1.2       albertel 10988:       { 113,43157,                      /* character number, location */
                   10989:           6, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   10990:           {  4,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10991:             "\x96\x99\x75\x44\x0f" }  },
1.1       albertel 10992:       /* --- pixel bitmap for cmmi100 char#114 r --- */
1.2       albertel 10993:       { 114,43958,                      /* character number, location */
                   10994:           6, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   10995:           {  6,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   10996:             "\x7e\x4b\x10\x82\x00" }  },
1.1       albertel 10997:       /* --- pixel bitmap for cmmi100 char#115 s --- */
1.2       albertel 10998:       { 115,44854,                      /* character number, location */
                   10999:           6, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   11000:           {  5,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11001:             "\x98\x32\x18\x1d" }  },
1.1       albertel 11002:       /* --- pixel bitmap for cmmi100 char#116 t --- */
1.2       albertel 11003:       { 116,45560,                      /* character number, location */
                   11004:           9,-1,    0,-1,      /* topleft row,col, and botleft row,col */
                   11005:           {  4,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11006:             "\x88\xf8\x44\xa4\x0c" }  },
1.1       albertel 11007:       /* --- pixel bitmap for cmmi100 char#117 u --- */
1.2       albertel 11008:       { 117,46548,                      /* character number, location */
                   11009:           6, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   11010:           {  6,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11011:             "\xe2\x28\x8a\xb2\x0b" }  },
1.1       albertel 11012:       /* --- pixel bitmap for cmmi100 char#118 v --- */
1.2       albertel 11013:       { 118,47399,                      /* character number, location */
                   11014:           6, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   11015:           {  6,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11016:             "\xe2\x28\x8a\x92\x03" }  },
1.1       albertel 11017:       /* --- pixel bitmap for cmmi100 char#119 w --- */
1.2       albertel 11018:       { 119,48543,                      /* character number, location */
                   11019:           6, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   11020:           {  9,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11021:             "\x22\x47\x8a\x14\x29\xcb\x0d" }  },
1.1       albertel 11022:       /* --- pixel bitmap for cmmi100 char#120 x --- */
1.2       albertel 11023:       { 120,49745,                      /* character number, location */
                   11024:           6, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   11025:           {  7,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11026:             "\x7c\x25\x02\x51\xf2\x00" }  },
1.1       albertel 11027:       /* --- pixel bitmap for cmmi100 char#121 y --- */
1.2       albertel 11028:       { 121,50757,                      /* character number, location */
                   11029:           6, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   11030:           {  6,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11031:             "\x66\x49\x92\x14\x07\x29\x06" }  },
1.1       albertel 11032:       /* --- pixel bitmap for cmmi100 char#122 z --- */
1.2       albertel 11033:       { 122,51611,                      /* character number, location */
                   11034:           6, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   11035:           {  6,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11036:             "\xac\x8c\x11\x52\x07" }  },
1.1       albertel 11037:       /* --- pixel bitmap for cmmi100 char#123 \imath --- */
1.2       albertel 11038:       { 123,91284,                      /* character number, location */
                   11039:           6, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   11040:           {  3,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11041:             "\xaa\x64\x03" }  },
1.1       albertel 11042:       /* --- pixel bitmap for cmmi100 char#124 \jmath --- */
1.2       albertel 11043:       { 124,92069,                      /* character number, location */
                   11044:           6, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   11045:           {  5,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11046:             "\x98\x42\x88\x10\x22\x07" }  },
1.1       albertel 11047:       /* --- pixel bitmap for cmmi100 char#125 \wp --- */
1.2       albertel 11048:       { 125,93174,                      /* character number, location */
                   11049:           6, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   11050:           {  7,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11051:             "\x86\x5c\x71\xb8\x9a\x14\x0a\x03" }  },
1.1       albertel 11052:       /* --- pixel bitmap for cmmi100 char#126 \vec --- */
1.2       albertel 11053:       { 126,93748,                      /* character number, location */
                   11054:          10, 2,    7, 2,      /* topleft row,col, and botleft row,col */
                   11055:           {  7,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11056:             "\xa0\x3f\x08" }  },
1.1       albertel 11057:       /* --- pixel bitmap for cmmi100 char#127 (noname) --- */
1.2       albertel 11058:       { 127,94258,                      /* character number, location */
                   11059:          10, 4,    7, 4,      /* topleft row,col, and botleft row,col */
                   11060:           {  6,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11061:             "\x5e\x18\x02" }  },
1.1       albertel 11062:       /* --- trailer  --- */
1.2       albertel 11063:       { -99, -999,  0,0,0,0, { 0,0,0,0, (pixbyte *)"\0" }  }
1.1       albertel 11064:    } ;
                   11065: 
                   11066: 
1.2       albertel 11067: /* --- size=2 for .118gf ---
                   11068:  * mf '\mode=preview; mag=magstep(-16.96645799324018499600); input cmmi10'
                   11069:  * --------------------------------------------------------------------- */
1.1       albertel 11070: /* --- fontdef for cmmi118 --- */
                   11071: static	chardef  cmmi118[] =
                   11072:    {
                   11073:       /* --- pixel bitmap for cmmi118 char#0 \Gamma --- */
1.2       albertel 11074:       {   0,53147,                      /* character number, location */
                   11075:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   11076:           { 12,   11, 3,25, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11077:             "\x39\xf2\x41\x51\x10\x41\x70\xf3\x31\x80\x21\x95\x71" }  },
1.1       albertel 11078:       /* --- pixel bitmap for cmmi118 char#1 \Delta --- */
1.2       albertel 11079:       {   1,54016,                      /* character number, location */
                   11080:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   11081:           { 12,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11082:             "\x00\x01\x28\x40\x02\x26\x20\x06\x41\x08\xc4\x40\x04"
                   11083:             "\x2c\x80\xff\x0f" }  },
1.1       albertel 11084:       /* --- pixel bitmap for cmmi118 char#2 \Theta --- */
1.2       albertel 11085:       {   2,55125,                      /* character number, location */
                   11086:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   11087:           { 12,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11088:             "\xe0\x81\x61\x04\x24\x40\x12\x99\x4f\x89\x14\x60\x02"
                   11089:             "\x62\x18\x7c\x00" }  },
1.1       albertel 11090:       /* --- pixel bitmap for cmmi118 char#3 \Lambda --- */
1.2       albertel 11091:       {   3,56037,                      /* character number, location */
                   11092:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   11093:           { 10,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11094:             "\xc0\x00\x03\x0a\x28\x90\x40\x82\x08\x22\x84\x18\xf2"
                   11095:             "\x3c" }  },
1.1       albertel 11096:       /* --- pixel bitmap for cmmi118 char#4 \Xi --- */
1.2       albertel 11097:       {   4,57424,                      /* character number, location */
                   11098:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   11099:           { 12,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11100:             "\xf8\x4f\x40\x00\x00\x00\x08\xc2\x1f\x04\x01\x00\x02"
                   11101:             "\x12\x10\xff\x01" }  },
1.1       albertel 11102:       /* --- pixel bitmap for cmmi118 char#5 \Pi --- */
1.2       albertel 11103:       {   5,58649,                      /* character number, location */
                   11104:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   11105:           { 14,   11, 3,27, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11106:             "\x3b\xf3\x41\x61\x20\xf3\x31\x61\x30\x21\x61\x45\x25"
                   11107:             "\x21" }  },
1.1       albertel 11108:       /* --- pixel bitmap for cmmi118 char#6 \Sigma --- */
1.2       albertel 11109:       {   6,59786,                      /* character number, location */
                   11110:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   11111:           { 13,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11112:             "\xf8\x1f\x01\x61\x20\x08\x04\x03\x40\x00\x04\x40\x20"
                   11113:             "\x0c\xc6\x40\xfc\x0f" }  },
1.1       albertel 11114:       /* --- pixel bitmap for cmmi118 char#7 \Upsilon --- */
1.2       albertel 11115:       {   7,60806,                      /* character number, location */
                   11116:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   11117:           { 10,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11118:             "\x8e\x27\x08\x02\x04\x10\x20\x80\x00\x02\x08\x10\xf0"
                   11119:             "\x01" }  },
1.1       albertel 11120:       /* --- pixel bitmap for cmmi118 char#8 \Phi --- */
1.2       albertel 11121:       {   8,61786,                      /* character number, location */
                   11122:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   11123:           { 10,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11124:             "\xf0\x03\x01\x04\x7e\x42\x86\x28\x32\x3f\x20\x40\xc0"
                   11125:             "\x07" }  },
1.1       albertel 11126:       /* --- pixel bitmap for cmmi118 char#9 \Psi --- */
1.2       albertel 11127:       {   9,62819,                      /* character number, location */
                   11128:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   11129:           { 11,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11130:             "\xf8\x01\xc1\x88\x45\x24\x22\x89\x48\x82\x0f\x10\x40"
                   11131:             "\x80\x0f\x00" }  },
1.1       albertel 11132:       /* --- pixel bitmap for cmmi118 char#10 \Omega --- */
1.2       albertel 11133:       {  10,63988,                      /* character number, location */
                   11134:          11, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   11135:           { 11,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11136:             "\xf0\x61\x90\x00\x05\x28\x40\x01\x09\x44\x10\x45\x29"
                   11137:             "\xca\x39\x00" }  },
1.1       albertel 11138:       /* --- pixel bitmap for cmmi118 char#11 \alpha --- */
1.2       albertel 11139:       {  11,64984,                      /* character number, location */
                   11140:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   11141:           {  8,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11142:             "\x1c\xa2\xa1\xc1\x41\x71\xce" }  },
1.1       albertel 11143:       /* --- pixel bitmap for cmmi118 char#12 \beta --- */
1.2       albertel 11144:       {  12,65987,                      /* character number, location */
                   11145:          11, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   11146:           {  9,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11147:             "\xe0\x20\x22\x44\x8c\x87\x10\x41\x82\x04\x8d\xe9\x10"
                   11148:             "\x20\x20\x00" }  },
1.1       albertel 11149:       /* --- pixel bitmap for cmmi118 char#13 \gamma --- */
1.2       albertel 11150:       {  13,66854,                      /* character number, location */
                   11151:           7, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   11152:           {  9,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11153:             "\x1c\x25\x85\x02\x03\x06\x0c\x08\x10\x20\x20\x00" }  },
1.1       albertel 11154:       /* --- pixel bitmap for cmmi118 char#14 \delta --- */
1.2       albertel 11155:       {  14,67767,                      /* character number, location */
                   11156:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   11157:           {  6,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11158:             "\x3c\x41\x10\x8c\x14\x45\x51\x62\x00" }  },
1.1       albertel 11159:       /* --- pixel bitmap for cmmi118 char#15 \epsilon --- */
1.2       albertel 11160:       {  15,68611,                      /* character number, location */
                   11161:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   11162:           {  5,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11163:             "\x5c\x84\x17\xa2\x03" }  },
1.1       albertel 11164:       /* --- pixel bitmap for cmmi118 char#16 \zeta --- */
1.2       albertel 11165:       {  16,69485,                      /* character number, location */
                   11166:          11, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   11167:           {  6,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11168:             "\x10\x8c\x10\x42\x10\x04\x41\x60\x60\x10\x03" }  },
1.1       albertel 11169:       /* --- pixel bitmap for cmmi118 char#17 \eta --- */
1.2       albertel 11170:       {  17,70360,                      /* character number, location */
                   11171:           7, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   11172:           {  7,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11173:             "\xf6\x66\x91\x48\x14\x89\x40\x20\x08" }  },
1.1       albertel 11174:       /* --- pixel bitmap for cmmi118 char#18 \theta --- */
1.2       albertel 11175:       {  18,71104,                      /* character number, location */
                   11176:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   11177:           {  6,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11178:             "\x18\x49\x8a\xe2\x17\x45\x49\x62\x00" }  },
1.1       albertel 11179:       /* --- pixel bitmap for cmmi118 char#19 \iota --- */
1.2       albertel 11180:       {  19,71729,                      /* character number, location */
                   11181:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   11182:           {  4,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11183:             "\x24\x22\x91\x06" }  },
1.1       albertel 11184:       /* --- pixel bitmap for cmmi118 char#20 \kappa --- */
1.2       albertel 11185:       {  20,72625,                      /* character number, location */
                   11186:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   11187:           {  8,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11188:             "\xe4\x12\x0e\x1e\x22\x51\x61" }  },
1.1       albertel 11189:       /* --- pixel bitmap for cmmi118 char#21 \lambda --- */
1.2       albertel 11190:       {  21,73438,                      /* character number, location */
                   11191:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   11192:           {  8,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11193:             "\x0c\x08\x10\x10\x20\x20\x30\x48\x44\x82\x81" }  },
1.1       albertel 11194:       /* --- pixel bitmap for cmmi118 char#22 \mu --- */
1.2       albertel 11195:       {  22,74418,                      /* character number, location */
                   11196:           7, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   11197:           {  8,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11198:             "\x88\x44\x44\x44\x64\xa6\xde\x02\x02\x01" }  },
1.1       albertel 11199:       /* --- pixel bitmap for cmmi118 char#23 \nu --- */
1.2       albertel 11200:       {  23,75165,                      /* character number, location */
                   11201:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   11202:           {  8,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11203:             "\x87\x42\x42\x22\x12\x0d\x03" }  },
1.1       albertel 11204:       /* --- pixel bitmap for cmmi118 char#24 \xi --- */
1.2       albertel 11205:       {  24,76247,                      /* character number, location */
                   11206:          11, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   11207:           {  6,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11208:             "\x10\x6e\x08\x02\x27\x04\x41\x30\x30\x10\x03" }  },
1.1       albertel 11209:       /* --- pixel bitmap for cmmi118 char#25 \pi --- */
1.2       albertel 11210:       {  25,77145,                      /* character number, location */
                   11211:           7, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   11212:           {  9,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11213:             "\xfe\x55\xa4\x20\x41\x82\x84\x08" }  },
1.1       albertel 11214:       /* --- pixel bitmap for cmmi118 char#26 \rho --- */
1.2       albertel 11215:       {  26,77933,                      /* character number, location */
                   11216:           7, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   11217:           {  7,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11218:             "\x30\x24\x91\x48\x34\x69\x04\x82\x00" }  },
1.1       albertel 11219:       /* --- pixel bitmap for cmmi118 char#27 \sigma --- */
1.2       albertel 11220:       {  27,78791,                      /* character number, location */
                   11221:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   11222:           {  8,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11223:             "\xfc\x22\x21\x21\x11\x11\x0e" }  },
1.1       albertel 11224:       /* --- pixel bitmap for cmmi118 char#28 \tau --- */
1.2       albertel 11225:       {  28,79514,                      /* character number, location */
                   11226:           7, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   11227:           {  8,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11228:             "\xfe\x0a\x09\x08\x08\x04\x04" }  },
1.1       albertel 11229:       /* --- pixel bitmap for cmmi118 char#29 \upsilon --- */
1.2       albertel 11230:       {  29,80407,                      /* character number, location */
                   11231:           7, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   11232:           {  8,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11233:             "\x86\x89\x85\x84\x44\x64\x18" }  },
1.1       albertel 11234:       /* --- pixel bitmap for cmmi118 char#30 \phi --- */
1.2       albertel 11235:       {  30,81261,                      /* character number, location */
                   11236:          11, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   11237:           {  8,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11238:             "\x20\x20\x20\x10\x38\x56\x91\x89\x49\x69\x1e\x04\x04"
                   11239:             "\x04" }  },
1.1       albertel 11240:       /* --- pixel bitmap for cmmi118 char#31 \chi --- */
1.2       albertel 11241:       {  31,82234,                      /* character number, location */
                   11242:           7, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   11243:           {  9,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11244:             "\x02\x09\x21\x41\x01\x01\x02\x0a\x12\x42\x02\x01" }  },
1.1       albertel 11245:       /* --- pixel bitmap for cmmi118 char#32 \psi --- */
1.2       albertel 11246:       {  32,83287,                      /* character number, location */
                   11247:          11, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   11248:           { 10,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11249:             "\x80\x00\x01\x04\x10\x46\xa6\x58\x22\x89\x24\x51\x82"
                   11250:             "\x07\x04\x10\x20\x00" }  },
1.1       albertel 11251:       /* --- pixel bitmap for cmmi118 char#33 \omega --- */
1.2       albertel 11252:       {  33,84336,                      /* character number, location */
                   11253:           7, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   11254:           { 10,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11255:             "\x02\x0a\x18\x62\x88\x31\xe7\xe4\x0c" }  },
1.1       albertel 11256:       /* --- pixel bitmap for cmmi118 char#34 \varepsilon --- */
1.2       albertel 11257:       {  34,85297,                      /* character number, location */
                   11258:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   11259:           {  5,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11260:             "\x7c\x8c\x17\xe2\x03" }  },
1.1       albertel 11261:       /* --- pixel bitmap for cmmi118 char#35 \vartheta --- */
1.2       albertel 11262:       {  35,86288,                      /* character number, location */
                   11263:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   11264:           {  8,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11265:             "\x70\x88\x88\x88\xb6\xc5\x45\x44\x24\x24\x1c" }  },
1.1       albertel 11266:       /* --- pixel bitmap for cmmi118 char#36 \varpi --- */
1.2       albertel 11267:       {  36,87483,                      /* character number, location */
                   11268:           7, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   11269:           { 13,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11270:             "\xfe\x5f\x01\x15\x21\x22\x44\x46\xc8\x08\xe7\x00" }  },
1.1       albertel 11271:       /* --- pixel bitmap for cmmi118 char#37 \varrho --- */
1.2       albertel 11272:       {  37,88334,                      /* character number, location */
                   11273:           7, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   11274:           {  6,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11275:             "\x18\x29\x8a\xe2\xd4\x04\x81\x03" }  },
1.1       albertel 11276:       /* --- pixel bitmap for cmmi118 char#38 \varsigma --- */
1.2       albertel 11277:       {  38,89113,                      /* character number, location */
                   11278:           7, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   11279:           {  5,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11280:             "\x5c\x84\x10\x0c\x42\x0c" }  },
1.1       albertel 11281:       /* --- pixel bitmap for cmmi118 char#39 \varphi --- */
1.2       albertel 11282:       {  39,90036,                      /* character number, location */
                   11283:           7, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   11284:           { 10,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11285:             "\xc2\x89\x18\x61\x84\x11\x29\xc2\x07\x02\x08\x10\x00" }  },
1.1       albertel 11286:       /* --- pixel bitmap for cmmi118 char#40 \leftharpoonup --- */
1.2       albertel 11287:       {  40,105132,                     /* character number, location */
                   11288:           8, 1,    4, 1,      /* topleft row,col, and botleft row,col */
                   11289:           { 14,    4, 3, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11290:             "\x31\xc1\xc2\xbe" }  },
1.1       albertel 11291:       /* --- pixel bitmap for cmmi118 char#41 \leftharpoondown --- */
1.2       albertel 11292:       {  41,106128,                     /* character number, location */
                   11293:           5, 1,    1, 1,      /* topleft row,col, and botleft row,col */
                   11294:           { 14,    4, 3, 9, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11295:             "\x0e\x12\xd1\xe1\xa1" }  },
1.1       albertel 11296:       /* --- pixel bitmap for cmmi118 char#42 \rightharpoonup --- */
1.2       albertel 11297:       {  42,107122,                     /* character number, location */
                   11298:           8, 1,    4, 1,      /* topleft row,col, and botleft row,col */
                   11299:           { 14,    4, 3, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11300:             "\xa1\xe1\xd2\x1e" }  },
1.1       albertel 11301:       /* --- pixel bitmap for cmmi118 char#43 \rightharpoondown --- */
1.2       albertel 11302:       {  43,108119,                     /* character number, location */
                   11303:           5, 1,    1, 1,      /* topleft row,col, and botleft row,col */
                   11304:           { 14,    4, 3, 9, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11305:             "\x0e\xb2\xc1\xc1\x31" }  },
1.1       albertel 11306:       /* --- pixel bitmap for cmmi118 char#44 ` --- */
1.2       albertel 11307:       {  44,108534,                     /* character number, location */
                   11308:           9, 1,    4, 1,      /* topleft row,col, and botleft row,col */
                   11309:           {  3,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11310:             "\x4e\x62" }  },
1.1       albertel 11311:       /* --- pixel bitmap for cmmi118 char#45 ' --- */
1.2       albertel 11312:       {  45,108952,                     /* character number, location */
                   11313:           9, 1,    4, 1,      /* topleft row,col, and botleft row,col */
                   11314:           {  3,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11315:             "\x23\x39" }  },
1.1       albertel 11316:       /* --- pixel bitmap for cmmi118 char#46 \triangleright --- */
1.2       albertel 11317:       {  46,109461,                     /* character number, location */
                   11318:           8, 1,    1, 1,      /* topleft row,col, and botleft row,col */
                   11319:           {  6,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11320:             "\xc1\x91\x85\xd9\x11\x00" }  },
1.1       albertel 11321:       /* --- pixel bitmap for cmmi118 char#47 \triangleleft --- */
1.2       albertel 11322:       {  47,109979,                     /* character number, location */
                   11323:           8, 1,    1, 1,      /* topleft row,col, and botleft row,col */
                   11324:           {  6,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11325:             "\x20\x6e\x86\x26\x0e\x02" }  },
1.1       albertel 11326:       /* --- pixel bitmap for cmmi118 char#48 \0 --- */
1.2       albertel 11327:       {  48,96123,                      /* character number, location */
                   11328:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   11329:           {  6,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11330:             "\x5e\x18\x86\x61\xe8\x01" }  },
1.1       albertel 11331:       /* --- pixel bitmap for cmmi118 char#49 \1 --- */
1.2       albertel 11332:       {  49,96848,                      /* character number, location */
                   11333:           7, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   11334:           {  5,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11335:             "\xe4\x10\x42\xc8\x07" }  },
1.1       albertel 11336:       /* --- pixel bitmap for cmmi118 char#50 \2 --- */
1.2       albertel 11337:       {  50,97782,                      /* character number, location */
                   11338:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   11339:           {  6,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11340:             "\x5e\x08\xc2\x88\xf9\x03" }  },
1.1       albertel 11341:       /* --- pixel bitmap for cmmi118 char#51 \3 --- */
1.2       albertel 11342:       {  51,98769,                      /* character number, location */
                   11343:           7, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   11344:           {  6,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11345:             "\x5e\x18\x82\x1c\x04\x86\x91\x03" }  },
1.1       albertel 11346:       /* --- pixel bitmap for cmmi118 char#52 \4 --- */
1.2       albertel 11347:       {  52,99654,                      /* character number, location */
                   11348:           7, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   11349:           {  8,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11350:             "\x30\x30\x28\x24\x22\x23\xff\x20\x20\xf8" }  },
1.1       albertel 11351:       /* --- pixel bitmap for cmmi118 char#53 \5 --- */
1.2       albertel 11352:       {  53,100651,                     /* character number, location */
                   11353:           7, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   11354:           {  6,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11355:             "\xe1\x17\x04\xdd\x08\x86\x91\x03" }  },
1.1       albertel 11356:       /* --- pixel bitmap for cmmi118 char#54 \6 --- */
1.2       albertel 11357:       {  54,101506,                     /* character number, location */
                   11358:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   11359:           {  6,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11360:             "\x9c\x28\x04\xcd\x14\x86\xa1\xc4\x00" }  },
1.1       albertel 11361:       /* --- pixel bitmap for cmmi118 char#55 \7 --- */
1.2       albertel 11362:       {  55,102369,                     /* character number, location */
                   11363:           8, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   11364:           {  7,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11365:             "\x81\x7f\x30\x04\x41\x20\x08\x04\x02\x01" }  },
1.1       albertel 11366:       /* --- pixel bitmap for cmmi118 char#56 \8 --- */
1.2       albertel 11367:       {  56,103254,                     /* character number, location */
                   11368:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   11369:           {  6,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11370:             "\x5e\x18\x86\x9e\x33\x85\x61\xe8\x01" }  },
1.1       albertel 11371:       /* --- pixel bitmap for cmmi118 char#57 \9 --- */
1.2       albertel 11372:       {  57,104115,                     /* character number, location */
                   11373:           7, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   11374:           {  6,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11375:             "\x8c\x14\x86\xb1\x0b\x42\x91\x03" }  },
1.1       albertel 11376:       /* --- pixel bitmap for cmmi118 char#58 . --- */
1.2       albertel 11377:       {  58,110452,                     /* character number, location */
                   11378:           2, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   11379:           {  2,    2, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11380:             "\x0f" }  },
1.1       albertel 11381:       /* --- pixel bitmap for cmmi118 char#59 , --- */
1.2       albertel 11382:       {  59,111011,                     /* character number, location */
                   11383:           2, 2,   -3, 2,      /* topleft row,col, and botleft row,col */
                   11384:           {  2,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11385:             "\xaf\x01" }  },
1.1       albertel 11386:       /* --- pixel bitmap for cmmi118 char#60 < --- */
1.2       albertel 11387:       {  60,111641,                     /* character number, location */
                   11388:          10, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   11389:           { 11,   11, 3,22, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11390:             "\x92\x72\x72\x72\x72\x81\xb2\xb2\xb2\xb2\xb2" }  },
1.1       albertel 11391:       /* --- pixel bitmap for cmmi118 char#61 / --- */
1.2       albertel 11392:       {  61,112139,                     /* character number, location */
                   11393:          12, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   11394:           {  6,   16, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11395:             "\x20\x08\x41\x10\x82\x20\x04\x41\x08\x82\x10\x04" }  },
1.1       albertel 11396:       /* --- pixel bitmap for cmmi118 char#62 > --- */
1.2       albertel 11397:       {  62,112794,                     /* character number, location */
                   11398:          10, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   11399:           { 11,   11, 3,23, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11400:             "\x02\xb2\xb2\xb2\xb2\xb1\x82\x72\x72\x72\x72\x92" }  },
1.1       albertel 11401:       /* --- pixel bitmap for cmmi118 char#63 \star --- */
1.2       albertel 11402:       {  63,113467,                     /* character number, location */
                   11403:           5,-1,    3,-1,      /* topleft row,col, and botleft row,col */
                   11404:           {  7,    2, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11405:             "\x78\x18" }  },
1.1       albertel 11406:       /* --- pixel bitmap for cmmi118 char#64 \partial --- */
1.2       albertel 11407:       {  64,91002,                      /* character number, location */
                   11408:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   11409:           {  8,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11410:             "\x3c\x42\x40\x80\xbc\x42\x41\x41\x21\x11\x0e" }  },
1.1       albertel 11411:       /* --- pixel bitmap for cmmi118 char#65 A --- */
1.2       albertel 11412:       {  65, 1000,                      /* character number, location */
                   11413:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   11414:           { 11,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11415:             "\x80\x00\x06\x30\x40\x02\x12\x88\x20\x04\x3f\x04\x21"
                   11416:             "\xc8\xe3\x01" }  },
1.1       albertel 11417:       /* --- pixel bitmap for cmmi118 char#66 B --- */
1.2       albertel 11418:       {  66, 2310,                      /* character number, location */
                   11419:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   11420:           { 13,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11421:             "\xf8\x0f\x02\x43\x40\x08\x08\xc1\xf0\x0f\x02\x43\x40"
                   11422:             "\x08\x88\xc0\xfc\x07" }  },
1.1       albertel 11423:       /* --- pixel bitmap for cmmi118 char#67 C --- */
1.2       albertel 11424:       {  67, 3233,                      /* character number, location */
                   11425:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   11426:           { 12,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11427:             "\xe0\x89\x61\x04\x24\x40\x02\x10\x00\x01\x10\x20\x02"
                   11428:             "\x61\x18\x78\x00" }  },
1.1       albertel 11429:       /* --- pixel bitmap for cmmi118 char#68 D --- */
1.2       albertel 11430:       {  68, 4377,                      /* character number, location */
                   11431:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   11432:           { 13,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11433:             "\xf8\x07\x82\x41\x20\x08\x08\x01\x11\x10\x02\x42\x40"
                   11434:             "\x08\x84\x60\xfc\x03" }  },
1.1       albertel 11435:       /* --- pixel bitmap for cmmi118 char#69 E --- */
1.2       albertel 11436:       {  69, 5780,                      /* character number, location */
                   11437:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   11438:           { 13,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11439:             "\xf8\x1f\x02\x41\x20\x88\x04\x19\xf0\x01\x22\x42\x44"
                   11440:             "\x08\x84\xc0\xfc\x0f" }  },
1.1       albertel 11441:       /* --- pixel bitmap for cmmi118 char#70 F --- */
1.2       albertel 11442:       {  70, 6993,                      /* character number, location */
                   11443:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   11444:           { 13,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11445:             "\xf8\x1f\x02\x41\x20\x08\x05\x31\xf0\x03\x42\x40\x08"
                   11446:             "\x08\x80\x00\x7c\x00" }  },
1.1       albertel 11447:       /* --- pixel bitmap for cmmi118 char#71 G --- */
1.2       albertel 11448:       {  71, 8134,                      /* character number, location */
                   11449:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   11450:           { 12,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11451:             "\xe0\x89\x61\x04\x24\x40\x02\x10\x00\x81\x17\x20\x02"
                   11452:             "\x62\x10\xf8\x01" }  },
1.1       albertel 11453:       /* --- pixel bitmap for cmmi118 char#72 H --- */
1.2       albertel 11454:       {  72, 9361,                      /* character number, location */
                   11455:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   11456:           { 14,   11, 3,33, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11457:             "\x34\x34\xf3\x41\x61\x20\x38\x30\xf2\x31\x61\x30\x21"
                   11458:             "\x61\x45\x25\x22" }  },
1.1       albertel 11459:       /* --- pixel bitmap for cmmi118 char#73 I --- */
1.2       albertel 11460:       {  73,10068,                      /* character number, location */
                   11461:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   11462:           {  8,   11, 3,19, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11463:             "\x35\xf3\x41\x30\xf3\x31\x40\x21\x55\x31" }  },
1.1       albertel 11464:       /* --- pixel bitmap for cmmi118 char#74 J --- */
1.2       albertel 11465:       {  74,10910,                      /* character number, location */
                   11466:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   11467:           {  9,   11, 3,19, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11468:             "\x45\xf3\x61\x20\xf3\x51\x31\x31\x53\x51" }  },
1.1       albertel 11469:       /* --- pixel bitmap for cmmi118 char#75 K --- */
1.2       albertel 11470:       {  75,12097,                      /* character number, location */
                   11471:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   11472:           { 15,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11473:             "\x78\x7c\x08\x06\x84\x00\x22\x00\x0d\x40\x07\x60\x04"
                   11474:             "\x10\x02\x08\x02\x02\xc1\xc7\x03" }  },
1.1       albertel 11475:       /* --- pixel bitmap for cmmi118 char#76 L --- */
1.2       albertel 11476:       {  76,13052,                      /* character number, location */
                   11477:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   11478:           { 10,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11479:             "\xf8\x40\x00\x01\x04\x10\x20\x80\x20\x82\x08\x13\xf6"
                   11480:             "\x1f" }  },
1.1       albertel 11481:       /* --- pixel bitmap for cmmi118 char#77 M --- */
1.2       albertel 11482:       {  77,14368,                      /* character number, location */
                   11483:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   11484:           { 17,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11485:             "\x38\xc0\x61\xc0\x40\x81\x81\x82\x02\x85\x04\x09\x05"
                   11486:             "\x12\x09\x24\x11\x88\x22\x08\x23\x7c\xf2\x01" }  },
1.1       albertel 11487:       /* --- pixel bitmap for cmmi118 char#78 N --- */
1.2       albertel 11488:       {  78,15498,                      /* character number, location */
                   11489:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   11490:           { 14,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11491:             "\x38\x3c\x0c\x02\x85\x40\x21\xd0\x08\x22\x81\x48\x20"
                   11492:             "\x14\x08\x05\xc1\xf0\x21\x00" }  },
1.1       albertel 11493:       /* --- pixel bitmap for cmmi118 char#79 O --- */
1.2       albertel 11494:       {  79,16331,                      /* character number, location */
                   11495:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   11496:           { 12,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11497:             "\xe0\x81\x61\x04\x24\x00\x02\x18\x40\x01\x14\x60\x02"
                   11498:             "\x62\x18\x7c\x00" }  },
1.1       albertel 11499:       /* --- pixel bitmap for cmmi118 char#80 P --- */
1.2       albertel 11500:       {  80,17394,                      /* character number, location */
                   11501:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   11502:           { 12,   11, 3,29, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11503:             "\x38\x10\xf2\x41\x61\x41\x51\x47\x20\xf2\x31\x80\x21"
                   11504:             "\x95\x71" }  },
1.1       albertel 11505:       /* --- pixel bitmap for cmmi118 char#81 Q --- */
1.2       albertel 11506:       {  81,18387,                      /* character number, location */
                   11507:          11, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   11508:           { 12,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11509:             "\xe0\x81\x61\x04\x24\x40\x02\x18\x40\x01\x14\x60\x32"
                   11510:             "\xe2\x18\x7c\x00\x04\x40\x00\x1c" }  },
1.1       albertel 11511:       /* --- pixel bitmap for cmmi118 char#82 R --- */
1.2       albertel 11512:       {  82,19656,                      /* character number, location */
                   11513:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   11514:           { 12,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11515:             "\xf8\x07\x81\x10\x08\x81\x10\x84\x1f\x08\x83\x20\x08"
                   11516:             "\x42\x10\x1f\x0e" }  },
1.1       albertel 11517:       /* --- pixel bitmap for cmmi118 char#83 S --- */
1.2       albertel 11518:       {  83,20735,                      /* character number, location */
                   11519:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   11520:           { 10,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11521:             "\xf0\x22\x44\x10\x01\x0c\xc0\x01\x08\x20\x82\x0c\xd1"
                   11522:             "\x03" }  },
1.1       albertel 11523:       /* --- pixel bitmap for cmmi118 char#84 T --- */
1.2       albertel 11524:       {  84,21763,                      /* character number, location */
                   11525:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   11526:           { 11,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11527:             "\xfe\x1f\x51\x88\x42\x04\x02\x08\x40\x00\x02\x10\x40"
                   11528:             "\x80\x1f\x00" }  },
1.1       albertel 11529:       /* --- pixel bitmap for cmmi118 char#85 U --- */
1.2       albertel 11530:       {  85,22721,                      /* character number, location */
                   11531:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   11532:           { 11,   11, 3,27, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11533:             "\x04\x34\xf3\x11\x61\x2f\x21\x61\x31\x51\x41\x42\x54"
                   11534:             "\x61" }  },
1.1       albertel 11535:       /* --- pixel bitmap for cmmi118 char#86 V --- */
1.2       albertel 11536:       {  86,23629,                      /* character number, location */
                   11537:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   11538:           { 11,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11539:             "\x8f\x17\x08\x41\x08\x41\x04\x22\x90\x80\x04\x14\x60"
                   11540:             "\x00\x03\x00" }  },
1.1       albertel 11541:       /* --- pixel bitmap for cmmi118 char#87 W --- */
1.2       albertel 11542:       {  87,24950,                      /* character number, location */
                   11543:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   11544:           { 16,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11545:             "\x8f\xf7\x42\x41\x42\x21\x22\x11\x22\x11\x12\x09\x12"
                   11546:             "\x09\x0a\x05\x0a\x05\x06\x02\x06\x02" }  },
1.1       albertel 11547:       /* --- pixel bitmap for cmmi118 char#88 X --- */
1.2       albertel 11548:       {  88,26123,                      /* character number, location */
                   11549:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   11550:           { 14,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11551:             "\x78\x3c\x08\x01\x24\x00\x05\xc0\x00\x30\x00\x0c\x80"
                   11552:             "\x04\x10\x01\x82\xf0\xf0\x00" }  },
1.1       albertel 11553:       /* --- pixel bitmap for cmmi118 char#89 Y --- */
1.2       albertel 11554:       {  89,27159,                      /* character number, location */
                   11555:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   11556:           { 12,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11557:             "\x8f\x4f\x10\x84\x80\x0c\x48\x00\x03\x10\x00\x01\x10"
                   11558:             "\x80\x00\x3e\x00" }  },
1.1       albertel 11559:       /* --- pixel bitmap for cmmi118 char#90 Z --- */
1.2       albertel 11560:       {  90,28236,                      /* character number, location */
                   11561:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   11562:           { 11,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11563:             "\xf8\x67\x10\x41\x08\x01\x04\x10\x40\x04\x21\x84\x11"
                   11564:             "\xc6\x3f\x00" }  },
1.1       albertel 11565:       /* --- pixel bitmap for cmmi118 char#91 \flat --- */
1.2       albertel 11566:       {  91,114102,                     /* character number, location */
                   11567:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   11568:           {  4,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11569:             "\x11\x11\xd1\x99\x59\x37" }  },
1.1       albertel 11570:       /* --- pixel bitmap for cmmi118 char#92 \natural --- */
1.2       albertel 11571:       {  92,114817,                     /* character number, location */
                   11572:          11, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   11573:           {  4,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11574:             "\x11\xd1\x9b\x99\x99\xbd\x88" }  },
1.1       albertel 11575:       /* --- pixel bitmap for cmmi118 char#93 \sharp --- */
1.2       albertel 11576:       {  93,115636,                     /* character number, location */
                   11577:          11, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   11578:           {  4,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11579:             "\x98\xd9\x9b\x99\x99\xbd\x19" }  },
1.1       albertel 11580:       /* --- pixel bitmap for cmmi118 char#94 \smile --- */
1.2       albertel 11581:       {  94,116512,                     /* character number, location */
                   11582:           7, 1,    2, 1,      /* topleft row,col, and botleft row,col */
                   11583:           { 14,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11584:             "\x01\xa0\x00\x44\x80\x20\x10\xf0\x03" }  },
1.1       albertel 11585:       /* --- pixel bitmap for cmmi118 char#95 \frown --- */
1.2       albertel 11586:       {  95,117354,                     /* character number, location */
                   11587:           7, 1,    2, 1,      /* topleft row,col, and botleft row,col */
                   11588:           { 14,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11589:             "\xf0\x03\x02\x41\x80\x08\x40\x01\x20" }  },
1.1       albertel 11590:       /* --- pixel bitmap for cmmi118 char#96 \ell --- */
1.2       albertel 11591:       {  96,91776,                      /* character number, location */
                   11592:          11,-1,    0,-1,      /* topleft row,col, and botleft row,col */
                   11593:           {  7,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11594:             "\x60\x28\x14\x89\xa2\x30\x08\x86\x22\x0e" }  },
1.1       albertel 11595:       /* --- pixel bitmap for cmmi118 char#97 a --- */
1.2       albertel 11596:       {  97,29160,                      /* character number, location */
                   11597:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   11598:           {  6,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11599:             "\xac\x14\x45\x51\x6a\x03" }  },
1.1       albertel 11600:       /* --- pixel bitmap for cmmi118 char#98 b --- */
1.2       albertel 11601:       {  98,29980,                      /* character number, location */
                   11602:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   11603:           {  5,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11604:             "\x47\x08\xe1\x66\x8c\x31\x19" }  },
1.1       albertel 11605:       /* --- pixel bitmap for cmmi118 char#99 c --- */
1.2       albertel 11606:       {  99,30769,                      /* character number, location */
                   11607:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   11608:           {  5,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11609:             "\x5c\x86\x10\xa2\x03" }  },
1.1       albertel 11610:       /* --- pixel bitmap for cmmi118 char#100 d --- */
1.2       albertel 11611:       { 100,31697,                      /* character number, location */
                   11612:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   11613:           {  7,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11614:             "\x70\x10\x08\xc4\x92\x44\x22\x91\x94\x0d" }  },
1.1       albertel 11615:       /* --- pixel bitmap for cmmi118 char#101 e --- */
1.2       albertel 11616:       { 101,32518,                      /* character number, location */
                   11617:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   11618:           {  5,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11619:             "\x5c\xe6\x13\xa2\x03" }  },
1.1       albertel 11620:       /* --- pixel bitmap for cmmi118 char#102 f --- */
1.2       albertel 11621:       { 102,33652,                      /* character number, location */
                   11622:          11, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   11623:           {  9,   14, 3,25, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11624:             "\x63\xf2\x51\x30\x34\x20\xf4\x41\x40\xf2\x31\x53\x61" }  },
1.1       albertel 11625:       /* --- pixel bitmap for cmmi118 char#103 g --- */
1.2       albertel 11626:       { 103,34601,                      /* character number, location */
                   11627:           7, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   11628:           {  8,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11629:             "\xb0\x48\x44\x44\x44\x24\x38\x20\x20\x1f" }  },
1.1       albertel 11630:       /* --- pixel bitmap for cmmi118 char#104 h --- */
1.2       albertel 11631:       { 104,35508,                      /* character number, location */
                   11632:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   11633:           {  7,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11634:             "\x0e\x02\x81\xc0\x33\x89\x44\x92\x68\x08" }  },
1.1       albertel 11635:       /* --- pixel bitmap for cmmi118 char#105 i --- */
1.2       albertel 11636:       { 105,36328,                      /* character number, location */
                   11637:          12, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   11638:           {  4,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11639:             "\x08\x00\x60\x59\x24\xca" }  },
1.1       albertel 11640:       /* --- pixel bitmap for cmmi118 char#106 j --- */
1.2       albertel 11641:       { 106,37235,                      /* character number, location */
                   11642:          12, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   11643:           {  7,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11644:             "\x40\x00\x00\x00\xc0\xa1\x48\x20\x10\x04\x02\x41\x1c"
                   11645:             "\x00" }  },
1.1       albertel 11646:       /* --- pixel bitmap for cmmi118 char#107 k --- */
1.2       albertel 11647:       { 107,38232,                      /* character number, location */
                   11648:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   11649:           {  7,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11650:             "\x0e\x02\x81\x40\xd6\x1a\x1c\x92\x54\x0c" }  },
1.1       albertel 11651:       /* --- pixel bitmap for cmmi118 char#108 l --- */
1.2       albertel 11652:       { 108,38898,                      /* character number, location */
                   11653:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   11654:           {  4,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11655:             "\x4e\x44\x24\x22\x52\x06" }  },
1.1       albertel 11656:       /* --- pixel bitmap for cmmi118 char#109 m --- */
1.2       albertel 11657:       { 109,40057,                      /* character number, location */
                   11658:           7, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   11659:           { 13,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11660:             "\x66\xae\x33\x35\x22\x42\x44\x48\x84\xa8\x10\x02" }  },
1.1       albertel 11661:       /* --- pixel bitmap for cmmi118 char#110 n --- */
1.2       albertel 11662:       { 110,41068,                      /* character number, location */
                   11663:           7, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   11664:           {  8,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11665:             "\x76\x4d\x45\x44\x24\xa2\x42" }  },
1.1       albertel 11666:       /* --- pixel bitmap for cmmi118 char#111 o --- */
1.2       albertel 11667:       { 111,41776,                      /* character number, location */
                   11668:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   11669:           {  6,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11670:             "\x9c\x18\x86\x51\xe4\x00" }  },
1.1       albertel 11671:       /* --- pixel bitmap for cmmi118 char#112 p --- */
1.2       albertel 11672:       { 112,42686,                      /* character number, location */
                   11673:           7, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   11674:           {  8,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11675:             "\x6c\x9a\x8a\x88\x88\x4c\x34\x04\x04\x0f" }  },
1.1       albertel 11676:       /* --- pixel bitmap for cmmi118 char#113 q --- */
1.2       albertel 11677:       { 113,43571,                      /* character number, location */
                   11678:           7, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   11679:           {  6,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11680:             "\xac\x14\x45\x51\xe2\x20\x88\x07" }  },
1.1       albertel 11681:       /* --- pixel bitmap for cmmi118 char#114 r --- */
1.2       albertel 11682:       { 114,44392,                      /* character number, location */
                   11683:           7, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   11684:           {  7,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11685:             "\xf6\x66\x81\x40\x10\x08\x00" }  },
1.1       albertel 11686:       /* --- pixel bitmap for cmmi118 char#115 s --- */
1.2       albertel 11687:       { 115,45346,                      /* character number, location */
                   11688:           7, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   11689:           {  7,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11690:             "\x38\x12\x01\x07\x0c\x79\x00" }  },
1.1       albertel 11691:       /* --- pixel bitmap for cmmi118 char#116 t --- */
1.2       albertel 11692:       { 116,46054,                      /* character number, location */
                   11693:          10, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   11694:           {  5,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11695:             "\x84\x90\x2f\x84\x10\xc9\x00" }  },
1.1       albertel 11696:       /* --- pixel bitmap for cmmi118 char#117 u --- */
1.2       albertel 11697:       { 117,47032,                      /* character number, location */
                   11698:           7, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   11699:           {  8,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11700:             "\x86\x49\x45\x44\x64\xa4\xdc" }  },
1.1       albertel 11701:       /* --- pixel bitmap for cmmi118 char#118 v --- */
1.2       albertel 11702:       { 118,47907,                      /* character number, location */
                   11703:           7, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   11704:           {  7,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11705:             "\xc6\x64\x91\x48\x22\x71\x00" }  },
1.1       albertel 11706:       /* --- pixel bitmap for cmmi118 char#119 w --- */
1.2       albertel 11707:       { 119,49073,                      /* character number, location */
                   11708:           7, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   11709:           { 11,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11710:             "\x86\x4c\x62\x11\x89\x48\x24\x32\x61\x07" }  },
1.1       albertel 11711:       /* --- pixel bitmap for cmmi118 char#120 x --- */
1.2       albertel 11712:       { 120,50285,                      /* character number, location */
                   11713:           7, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   11714:           {  8,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11715:             "\xfc\x94\x12\x10\x10\x59\x36" }  },
1.1       albertel 11716:       /* --- pixel bitmap for cmmi118 char#121 y --- */
1.2       albertel 11717:       { 121,51317,                      /* character number, location */
                   11718:           7, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   11719:           {  8,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11720:             "\x86\x49\x45\x44\x64\x24\x3c\x20\x12\x0e" }  },
1.1       albertel 11721:       /* --- pixel bitmap for cmmi118 char#122 z --- */
1.2       albertel 11722:       { 122,52229,                      /* character number, location */
                   11723:           7, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   11724:           {  8,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11725:             "\x9c\x62\x20\x18\x44\x26\x19" }  },
1.1       albertel 11726:       /* --- pixel bitmap for cmmi118 char#123 \imath --- */
1.2       albertel 11727:       { 123,92484,                      /* character number, location */
                   11728:           7, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   11729:           {  4,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11730:             "\x96\x45\xa2\x0c" }  },
1.1       albertel 11731:       /* --- pixel bitmap for cmmi118 char#124 \jmath --- */
1.2       albertel 11732:       { 124,93275,                      /* character number, location */
                   11733:           7, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   11734:           {  6,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11735:             "\x30\x4a\x82\x20\x04\x41\xc8\x01" }  },
1.1       albertel 11736:       /* --- pixel bitmap for cmmi118 char#125 \wp --- */
1.2       albertel 11737:       { 125,94358,                      /* character number, location */
                   11738:           7, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   11739:           {  9,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11740:             "\x04\xc4\x65\x2c\x38\x50\x52\x99\x04\x09\x0c\x00" }  },
1.1       albertel 11741:       /* --- pixel bitmap for cmmi118 char#126 \vec --- */
1.2       albertel 11742:       { 126,94940,                      /* character number, location */
                   11743:          11, 2,    8, 2,      /* topleft row,col, and botleft row,col */
                   11744:           {  8,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11745:             "\x80\xff\x40" }  },
1.1       albertel 11746:       /* --- pixel bitmap for cmmi118 char#127 (noname) --- */
1.2       albertel 11747:       { 127,95476,                      /* character number, location */
                   11748:          11, 4,    8, 4,      /* topleft row,col, and botleft row,col */
                   11749:           {  8,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11750:             "\x7c\x82\x81" }  },
1.1       albertel 11751:       /* --- trailer  --- */
1.2       albertel 11752:       { -99, -999,  0,0,0,0, { 0,0,0,0, (pixbyte *)"\0" }  }
1.1       albertel 11753:    } ;
                   11754: 
                   11755: 
1.2       albertel 11756: /* --- size=3 for .131gf ---
                   11757:  * mf '\mode=preview; mag=magstep(-16.39322518098640003469); input cmmi10'
                   11758:  * --------------------------------------------------------------------- */
1.1       albertel 11759: /* --- fontdef for cmmi131 --- */
                   11760: static	chardef  cmmi131[] =
                   11761:    {
                   11762:       /* --- pixel bitmap for cmmi131 char#0 \Gamma --- */
1.2       albertel 11763:       {   0,53970,                      /* character number, location */
                   11764:          12, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   11765:           { 13,   12, 3,29, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11766:             "\x3a\x52\x42\xf2\x42\x51\x10\x42\x70\xf3\x32\x80\x22"
                   11767:             "\x96\x71" }  },
1.1       albertel 11768:       /* --- pixel bitmap for cmmi131 char#1 \Delta --- */
1.2       albertel 11769:       {   1,54869,                      /* character number, location */
                   11770:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   11771:           { 13,   12, 3,38, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11772:             "\x91\xb2\xa4\x81\x22\x72\x22\x71\x33\x51\x52\x41\x62"
                   11773:             "\x32\x62\x31\x73\x1e\x0b" }  },
1.1       albertel 11774:       /* --- pixel bitmap for cmmi131 char#2 \Theta --- */
1.2       albertel 11775:       {   2,56028,                      /* character number, location */
                   11776:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   11777:           { 13,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11778:             "\xe0\x03\x86\x21\x30\x06\x6c\x92\xcd\xf3\x3c\x9b\x64"
                   11779:             "\x03\xc6\xc0\x18\x06\x7c\x00" }  },
1.1       albertel 11780:       /* --- pixel bitmap for cmmi131 char#3 \Lambda --- */
1.2       albertel 11781:       {   3,56972,                      /* character number, location */
                   11782:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   11783:           { 12,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11784:             "\x00\x01\x18\x80\x01\x1c\xa0\x01\x1a\x90\x03\x31\x08"
                   11785:             "\x43\x30\x04\xf3\xfc" }  },
1.1       albertel 11786:       /* --- pixel bitmap for cmmi131 char#4 \Xi --- */
1.2       albertel 11787:       {   4,58385,                      /* character number, location */
                   11788:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   11789:           { 13,   12, 3,37, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11790:             "\xf1\x3a\xf1\x21\x81\x10\x41\x41\x76\x66\x71\x41\x40"
                   11791:             "\xf1\x11\x81\x2f\x1a\x31" }  },
1.1       albertel 11792:       /* --- pixel bitmap for cmmi131 char#5 \Pi --- */
1.2       albertel 11793:       {   5,59564,                      /* character number, location */
                   11794:          12, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   11795:           { 17,   12, 3,33, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11796:             "\x3e\x52\x62\x20\xf3\x42\x62\x30\xf3\x32\x62\x40\x22"
                   11797:             "\x62\x56\x26\x3f" }  },
1.1       albertel 11798:       /* --- pixel bitmap for cmmi131 char#6 \Sigma --- */
1.2       albertel 11799:       {   6,60731,                      /* character number, location */
                   11800:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   11801:           { 14,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11802:             "\xf8\x3f\x0e\x0c\x03\xc1\x41\x60\x10\x38\x00\x0c\x80"
                   11803:             "\x20\x10\x08\x02\x43\x60\xf8\x1f" }  },
1.1       albertel 11804:       /* --- pixel bitmap for cmmi131 char#7 \Upsilon --- */
1.2       albertel 11805:       {   7,61783,                      /* character number, location */
                   11806:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   11807:           { 11,   12, 3,29, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11808:             "\x13\x48\x24\x41\x11\x40\xf2\x42\x50\xf3\x32\x60\x22"
                   11809:             "\x76\x51" }  },
1.1       albertel 11810:       /* --- pixel bitmap for cmmi131 char#8 \Phi --- */
1.2       albertel 11811:       {   8,62791,                      /* character number, location */
                   11812:          12, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   11813:           { 12,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11814:             "\xe0\x07\x18\xc0\x00\x3f\xcc\x66\xcc\x63\x66\x36\xfc"
                   11815:             "\x00\x06\x30\xc0\x0f" }  },
1.1       albertel 11816:       /* --- pixel bitmap for cmmi131 char#9 \Psi --- */
1.2       albertel 11817:       {   9,63856,                      /* character number, location */
                   11818:          12, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   11819:           { 12,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11820:             "\xf0\x03\x0c\x67\x6c\x66\x66\x66\x66\x36\x63\x1b\xfc"
                   11821:             "\x00\x03\x18\xe0\x07" }  },
1.1       albertel 11822:       /* --- pixel bitmap for cmmi131 char#10 \Omega --- */
1.2       albertel 11823:       {  10,65057,                      /* character number, location */
                   11824:          12, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   11825:           { 12,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11826:             "\xe0\x83\x61\x0c\x6c\xc0\x06\x6c\x60\x06\x66\x30\x05"
                   11827:             "\x55\x28\x87\x73\x1c" }  },
1.1       albertel 11828:       /* --- pixel bitmap for cmmi131 char#11 \alpha --- */
1.2       albertel 11829:       {  11,66083,                      /* character number, location */
                   11830:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   11831:           { 10,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11832:             "\x38\x10\x29\x54\x50\xc1\x04\x11\x8a\x67" }  },
1.1       albertel 11833:       /* --- pixel bitmap for cmmi131 char#12 \beta --- */
1.2       albertel 11834:       {  12,67094,                      /* character number, location */
                   11835:          13, 0,   -4, 0,      /* topleft row,col, and botleft row,col */
                   11836:           { 11,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11837:             "\xc0\x01\x11\x04\x21\x84\x30\x74\x20\x84\x40\x04\x22"
                   11838:             "\x10\x41\x0c\xa1\x07\x01\x08\x20\x00\x01\x00" }  },
1.1       albertel 11839:       /* --- pixel bitmap for cmmi131 char#13 \gamma --- */
1.2       albertel 11840:       {  13,67999,                      /* character number, location */
                   11841:           8, 0,   -4, 0,      /* topleft row,col, and botleft row,col */
                   11842:           { 10,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11843:             "\x1c\x9a\x14\x14\x50\xc0\x00\x03\x0c\x10\x40\x00\x01"
                   11844:             "\x02\x08" }  },
1.1       albertel 11845:       /* --- pixel bitmap for cmmi131 char#14 \delta --- */
1.2       albertel 11846:       {  14,68918,                      /* character number, location */
                   11847:          14, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   11848:           {  7,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11849:             "\x10\x34\x81\x80\x40\x60\x28\xa2\x50\x28\x14\x71\x00" }  },
1.1       albertel 11850:       /* --- pixel bitmap for cmmi131 char#15 \epsilon --- */
1.2       albertel 11851:       {  15,69746,                      /* character number, location */
                   11852:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   11853:           {  6,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11854:             "\xb8\x21\x7c\x41\x20\x72" }  },
1.1       albertel 11855:       /* --- pixel bitmap for cmmi131 char#16 \zeta --- */
1.2       albertel 11856:       {  16,70648,                      /* character number, location */
                   11857:          13, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   11858:           {  8,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11859:             "\x20\x20\xe0\x18\x04\x04\x02\x01\x01\x01\x01\x01\x06"
                   11860:             "\x18\x20\x20\x1c" }  },
1.1       albertel 11861:       /* --- pixel bitmap for cmmi131 char#17 \eta --- */
1.2       albertel 11862:       {  17,71529,                      /* character number, location */
                   11863:           8, 0,   -4, 0,      /* topleft row,col, and botleft row,col */
                   11864:           {  8,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11865:             "\xe6\x9a\x8d\x84\x84\x84\x42\x42\x40\x40\x20\x20" }  },
1.1       albertel 11866:       /* --- pixel bitmap for cmmi131 char#18 \theta --- */
1.2       albertel 11867:       {  18,72279,                      /* character number, location */
                   11868:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   11869:           {  7,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11870:             "\x30\x24\x91\x28\x14\xfa\x43\xa1\x50\x24\x61\x00" }  },
1.1       albertel 11871:       /* --- pixel bitmap for cmmi131 char#19 \iota --- */
1.2       albertel 11872:       {  19,72912,                      /* character number, location */
                   11873:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   11874:           {  5,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11875:             "\x84\x08\x21\x62\x32" }  },
1.1       albertel 11876:       /* --- pixel bitmap for cmmi131 char#20 \kappa --- */
1.2       albertel 11877:       {  20,73812,                      /* character number, location */
                   11878:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   11879:           {  9,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11880:             "\x84\xc9\x48\xf0\x20\x42\x68\xa8\x60" }  },
1.1       albertel 11881:       /* --- pixel bitmap for cmmi131 char#21 \lambda --- */
1.2       albertel 11882:       {  21,74633,                      /* character number, location */
                   11883:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   11884:           {  9,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11885:             "\x0c\x20\x40\x00\x01\x02\x04\x10\x30\x50\x10\x11\x12"
                   11886:             "\x14\x10" }  },
1.1       albertel 11887:       /* --- pixel bitmap for cmmi131 char#22 \mu --- */
1.2       albertel 11888:       {  22,75619,                      /* character number, location */
                   11889:           8, 0,   -4, 0,      /* topleft row,col, and botleft row,col */
                   11890:           { 10,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11891:             "\x08\x21\x44\x08\x21\x84\x10\x6b\x94\x6e\x02\x08\x10"
                   11892:             "\x40\x00" }  },
1.1       albertel 11893:       /* --- pixel bitmap for cmmi131 char#23 \nu --- */
1.2       albertel 11894:       {  23,76376,                      /* character number, location */
                   11895:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   11896:           {  9,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11897:             "\x07\x09\x0a\x12\x22\x44\x46\x83\x01" }  },
1.1       albertel 11898:       /* --- pixel bitmap for cmmi131 char#24 \xi --- */
1.2       albertel 11899:       {  24,77488,                      /* character number, location */
                   11900:          13, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   11901:           {  8,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11902:             "\x10\x10\xf8\x04\x02\x02\x7c\x06\x02\x01\x01\x01\x03"
                   11903:             "\x0c\x30\x20\x1c" }  },
1.1       albertel 11904:       /* --- pixel bitmap for cmmi131 char#25 \pi --- */
1.2       albertel 11905:       {  25,78392,                      /* character number, location */
                   11906:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   11907:           { 10,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11908:             "\xfc\x4b\x91\x04\x12\x48\x10\x41\x04\x11" }  },
1.1       albertel 11909:       /* --- pixel bitmap for cmmi131 char#26 \rho --- */
1.2       albertel 11910:       {  26,79184,                      /* character number, location */
                   11911:           8, 0,   -4, 0,      /* topleft row,col, and botleft row,col */
                   11912:           {  8,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11913:             "\x70\x88\x88\x84\x84\x44\x46\x3a\x02\x02\x01\x01" }  },
1.1       albertel 11914:       /* --- pixel bitmap for cmmi131 char#27 \sigma --- */
1.2       albertel 11915:       {  27,80048,                      /* character number, location */
                   11916:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   11917:           {  9,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11918:             "\xf8\x89\x08\x09\x12\x24\x44\x04\x07" }  },
1.1       albertel 11919:       /* --- pixel bitmap for cmmi131 char#28 \tau --- */
1.2       albertel 11920:       {  28,80801,                      /* character number, location */
                   11921:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   11922:           {  9,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11923:             "\xfc\x45\x44\x80\x00\x01\x02\x02\x04" }  },
1.1       albertel 11924:       /* --- pixel bitmap for cmmi131 char#29 \upsilon --- */
1.2       albertel 11925:       {  29,81696,                      /* character number, location */
                   11926:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   11927:           {  9,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11928:             "\x06\x15\x26\x24\x48\x90\x10\x11\x1c" }  },
1.1       albertel 11929:       /* --- pixel bitmap for cmmi131 char#30 \phi --- */
1.2       albertel 11930:       {  30,82554,                      /* character number, location */
                   11931:          13, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   11932:           {  9,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11933:             "\x40\x80\x00\x01\x01\x02\x0f\x29\x89\x11\x23\x46\x52"
                   11934:             "\xc2\x03\x01\x02\x02\x04\x00" }  },
1.1       albertel 11935:       /* --- pixel bitmap for cmmi131 char#31 \chi --- */
1.2       albertel 11936:       {  31,83563,                      /* character number, location */
                   11937:           8, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   11938:           { 10,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11939:             "\x06\x1a\x84\x10\x22\x50\xc0\x00\x03\x0a\x44\x08\x21"
                   11940:             "\x58\x60" }  },
1.1       albertel 11941:       /* --- pixel bitmap for cmmi131 char#32 \psi --- */
1.2       albertel 11942:       {  32,84624,                      /* character number, location */
                   11943:          13, 0,   -4, 0,      /* topleft row,col, and botleft row,col */
                   11944:           { 11,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11945:             "\x00\x01\x04\x20\x00\x01\x08\x23\x2a\x31\x89\x44\x24"
                   11946:             "\x21\x89\x48\x82\x0f\x08\x40\x00\x02\x10\x00" }  },
1.1       albertel 11947:       /* --- pixel bitmap for cmmi131 char#33 \omega --- */
1.2       albertel 11948:       {  33,85683,                      /* character number, location */
                   11949:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   11950:           { 10,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11951:             "\x06\x0a\x38\x61\x84\x11\x66\x94\x99\x39" }  },
1.1       albertel 11952:       /* --- pixel bitmap for cmmi131 char#34 \varepsilon --- */
1.2       albertel 11953:       {  34,86624,                      /* character number, location */
                   11954:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   11955:           {  6,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11956:             "\xbc\x10\x78\x43\x10\x7a" }  },
1.1       albertel 11957:       /* --- pixel bitmap for cmmi131 char#35 \vartheta --- */
1.2       albertel 11958:       {  35,87617,                      /* character number, location */
                   11959:          13, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   11960:           {  9,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11961:             "\xc0\x40\x82\x04\x09\xd2\xa8\xe2\x42\x84\x08\x11\x21"
                   11962:             "\x81\x01" }  },
1.1       albertel 11963:       /* --- pixel bitmap for cmmi131 char#36 \varpi --- */
1.2       albertel 11964:       {  36,88820,                      /* character number, location */
                   11965:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   11966:           { 15,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11967:             "\xfc\x7f\x05\x48\x02\x84\x10\x42\x08\x21\x46\x90\x22"
                   11968:             "\x30\x0e" }  },
1.1       albertel 11969:       /* --- pixel bitmap for cmmi131 char#37 \varrho --- */
1.2       albertel 11970:       {  37,89677,                      /* character number, location */
                   11971:           8, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   11972:           {  7,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11973:             "\x38\x22\x51\x28\x14\x8d\x3a\x81\x40\xc0\x03" }  },
1.1       albertel 11974:       /* --- pixel bitmap for cmmi131 char#38 \varsigma --- */
1.2       albertel 11975:       {  38,90488,                      /* character number, location */
                   11976:           8, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   11977:           {  6,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11978:             "\xb8\x21\x04\x81\xc0\x40\x10\x07" }  },
1.1       albertel 11979:       /* --- pixel bitmap for cmmi131 char#39 \varphi --- */
1.2       albertel 11980:       {  39,91413,                      /* character number, location */
                   11981:           8, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   11982:           { 10,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11983:             "\x84\x89\x19\x62\x84\x11\x46\xa4\x0c\x0f\x08\x20\x40"
1.1       albertel 11984:             "\x00\x01" }  },
                   11985:       /* --- pixel bitmap for cmmi131 char#40 \leftharpoonup --- */
1.2       albertel 11986:       {  40,106945,                     /* character number, location */
                   11987:           9, 1,    4, 1,      /* topleft row,col, and botleft row,col */
                   11988:           { 16,    5, 3,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11989:             "\xf1\x31\xc0\x21\xe2\xde\x02" }  },
1.1       albertel 11990:       /* --- pixel bitmap for cmmi131 char#41 \leftharpoondown --- */
1.2       albertel 11991:       {  41,107969,                     /* character number, location */
                   11992:           5, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   11993:           { 16,    5, 3,17, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11994:             "\x0e\x02\x12\xe0\x11\xd0\xf1\x31\xc1" }  },
1.1       albertel 11995:       /* --- pixel bitmap for cmmi131 char#42 \rightharpoonup --- */
1.2       albertel 11996:       {  42,108991,                     /* character number, location */
                   11997:           9, 1,    4, 1,      /* topleft row,col, and botleft row,col */
                   11998:           { 16,    5, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   11999:             "\xf1\xc1\x30\xd1\xe0\x12\x1e\x02" }  },
1.1       albertel 12000:       /* --- pixel bitmap for cmmi131 char#43 \rightharpoondown --- */
1.2       albertel 12001:       {  43,110016,                     /* character number, location */
                   12002:           5, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   12003:           { 16,    5, 3,15, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12004:             "\x0e\x02\xd2\xe1\x20\xf1\xc1\x32" }  },
1.1       albertel 12005:       /* --- pixel bitmap for cmmi131 char#44 ` --- */
1.2       albertel 12006:       {  44,110433,                     /* character number, location */
                   12007:           9, 1,    4, 1,      /* topleft row,col, and botleft row,col */
                   12008:           {  3,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12009:             "\x4e\x62" }  },
1.1       albertel 12010:       /* --- pixel bitmap for cmmi131 char#45 ' --- */
1.2       albertel 12011:       {  45,110851,                     /* character number, location */
                   12012:           9, 1,    4, 1,      /* topleft row,col, and botleft row,col */
                   12013:           {  3,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12014:             "\x23\x39" }  },
1.1       albertel 12015:       /* --- pixel bitmap for cmmi131 char#46 \triangleright --- */
1.2       albertel 12016:       {  46,111386,                     /* character number, location */
                   12017:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   12018:           {  7,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12019:             "\x81\x43\x22\x16\x8c\x25\x0e\x01" }  },
1.1       albertel 12020:       /* --- pixel bitmap for cmmi131 char#47 \triangleleft --- */
1.2       albertel 12021:       {  47,111938,                     /* character number, location */
                   12022:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   12023:           {  7,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12024:             "\x40\x38\xd2\x18\x34\x22\xe1\x40" }  },
1.1       albertel 12025:       /* --- pixel bitmap for cmmi131 char#48 \0 --- */
1.2       albertel 12026:       {  48,97636,                      /* character number, location */
                   12027:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   12028:           {  7,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12029:             "\x1c\x51\x30\x18\x0c\x8a\x7c" }  },
1.1       albertel 12030:       /* --- pixel bitmap for cmmi131 char#49 \1 --- */
1.2       albertel 12031:       {  49,98391,                      /* character number, location */
                   12032:           8, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   12033:           {  5,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12034:             "\xe4\x10\x42\x08\xf9" }  },
1.1       albertel 12035:       /* --- pixel bitmap for cmmi131 char#50 \2 --- */
1.2       albertel 12036:       {  50,99353,                      /* character number, location */
                   12037:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   12038:           {  7,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12039:             "\xbe\x70\x10\x0c\xc3\xfa\xff" }  },
1.3       albertel 12040: #if 0
                   12041:       /* --- *unmodified* pixel bitmap for cmmi131 char#51 \3 --- */
1.2       albertel 12042:       {  51,100370,                     /* character number, location */
                   12043:           8, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   12044:           {  7,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12045:             "\x9e\x70\x18\x0c\xe2\xc0\xc0\xe0\x71\xcc\x03" }  },
1.3       albertel 12046: #else
                   12047:       /* --- *modified* pixel bitmap for cmmi131 char#51 \3 --- */
                   12048:       {  51,100370,                     /* character number, location */
                   12049:           8, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   12050:           {  7,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12051:             "\xbe\x70\x18\x0c\xe2\xc0\xc0\xe0\x71\xcc\x03" }  },
                   12052: #endif
1.1       albertel 12053:       /* --- pixel bitmap for cmmi131 char#52 \4 --- */
1.2       albertel 12054:       {  52,101285,                     /* character number, location */
                   12055:           8, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   12056:           {  8,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12057:             "\x30\x30\x28\x2c\x24\x22\x23\xff\x20\x20\x20\xf8" }  },
1.1       albertel 12058:       /* --- pixel bitmap for cmmi131 char#53 \5 --- */
1.2       albertel 12059:       {  53,102314,                     /* character number, location */
                   12060:           8, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   12061:           {  7,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12062:             "\x22\x8f\x43\x20\xf0\x88\xc0\xe0\x70\xcc\x03" }  },
1.1       albertel 12063:       /* --- pixel bitmap for cmmi131 char#54 \6 --- */
1.2       albertel 12064:       {  54,103197,                     /* character number, location */
                   12065:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   12066:           {  7,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12067:             "\x38\xa2\x20\xd0\x19\x05\x83\x41\xa1\x88\x03" }  },
1.1       albertel 12068:       /* --- pixel bitmap for cmmi131 char#55 \7 --- */
1.2       albertel 12069:       {  55,104090,                     /* character number, location */
                   12070:           9, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   12071:           {  8,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12072:             "\x02\xfe\x82\x41\x20\x10\x10\x10\x08\x08\x08\x08\x08" }  },
1.3       albertel 12073: #if 0
                   12074:       /* --- *unmodified* pixel bitmap for cmmi131 char#56 \8 --- */
                   12075:       {  56,105005,                     /* character number, location */
                   12076:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   12077:           {  7,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12078:             "\x3c\x70\x70\xe8\xe2\xe8\xc2\xc1\xa0\x88\x03" }  },
                   12079:       /* --- *unmodified* pixel bitmap for cmmi131 char#57 \9 --- */
                   12080:       {  57,105896,                     /* character number, location */
                   12081:           8, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   12082:           {  7,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12083:             "\x1c\x51\x28\x18\x14\x73\x81\x40\x50\xc4\x01" }  },
                   12084: #else
1.1       albertel 12085:       /* --- pixel bitmap for cmmi131 char#56 \8 --- */
1.2       albertel 12086:       {  56,105005,                     /* character number, location */
                   12087:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   12088:           {  7,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
1.3       albertel 12089:             "\x3c\x71\x70\xe8\xe2\xe8\xc2\xc1\xa0\x88\x03" }  },
1.1       albertel 12090:       /* --- pixel bitmap for cmmi131 char#57 \9 --- */
1.2       albertel 12091:       {  57,105896,                     /* character number, location */
                   12092:           8, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   12093:           {  7,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
1.3       albertel 12094:             "\x1c\x51\x30\x18\x14\x73\x81\x40\x50\xc4\x01" }  },
                   12095: #endif
1.1       albertel 12096:       /* --- pixel bitmap for cmmi131 char#58 . --- */
1.2       albertel 12097:       {  58,112419,                     /* character number, location */
                   12098:           2, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   12099:           {  2,    2, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12100:             "\x0f" }  },
1.1       albertel 12101:       /* --- pixel bitmap for cmmi131 char#59 , --- */
1.2       albertel 12102:       {  59,112978,                     /* character number, location */
                   12103:           2, 2,   -4, 2,      /* topleft row,col, and botleft row,col */
                   12104:           {  2,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12105:             "\xaf\x06" }  },
1.1       albertel 12106:       /* --- pixel bitmap for cmmi131 char#60 < --- */
1.2       albertel 12107:       {  60,113636,                     /* character number, location */
                   12108:          10, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   12109:           { 10,   11, 3,22, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12110:             "\x91\x72\x62\x62\x62\x71\xa2\xa2\xa2\xa2\xa1" }  },
1.1       albertel 12111:       /* --- pixel bitmap for cmmi131 char#61 / --- */
1.2       albertel 12112:       {  61,114160,                     /* character number, location */
                   12113:          14, 1,   -5, 1,      /* topleft row,col, and botleft row,col */
                   12114:           {  7,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12115:             "\x40\x20\x08\x04\x82\x40\x20\x08\x04\x82\x40\x20\x08"
                   12116:             "\x04\x82\x40\x00" }  },
1.1       albertel 12117:       /* --- pixel bitmap for cmmi131 char#62 > --- */
1.2       albertel 12118:       {  62,114847,                     /* character number, location */
                   12119:          10, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   12120:           { 12,   11, 3,23, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12121:             "\x02\xc2\xc2\xc2\xc2\xc2\x82\x82\x82\x82\x82\xa2" }  },
1.1       albertel 12122:       /* --- pixel bitmap for cmmi131 char#63 \star --- */
1.2       albertel 12123:       {  63,115546,                     /* character number, location */
                   12124:           5, 0,    3, 0,      /* topleft row,col, and botleft row,col */
                   12125:           {  7,    2, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12126:             "\x78\x18" }  },
1.1       albertel 12127:       /* --- pixel bitmap for cmmi131 char#64 \partial --- */
1.2       albertel 12128:       {  64,92387,                      /* character number, location */
                   12129:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   12130:           {  9,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12131:             "\x78\x08\x01\x02\x08\x10\x2f\x61\x41\x81\x02\x05\x09"
                   12132:             "\xe1\x01" }  },
1.1       albertel 12133:       /* --- pixel bitmap for cmmi131 char#65 A --- */
1.2       albertel 12134:       {  65, 1026,                      /* character number, location */
                   12135:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   12136:           { 13,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12137:             "\x00\x03\x60\x00\x0e\xa0\x01\x34\x40\x06\xcc\x80\x18"
                   12138:             "\xf8\x03\xc1\x10\x98\xc7\x0f" }  },
1.1       albertel 12139:       /* --- pixel bitmap for cmmi131 char#66 B --- */
1.2       albertel 12140:       {  66, 2366,                      /* character number, location */
                   12141:          12, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   12142:           { 13,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12143:             "\xf8\x0f\x0c\xc3\x60\x18\x0c\xc3\xe1\x0f\x06\xc3\xc0"
                   12144:             "\x18\x18\x83\x31\xb8\xff\x01" }  },
1.1       albertel 12145:       /* --- pixel bitmap for cmmi131 char#67 C --- */
1.2       albertel 12146:       {  67, 3319,                      /* character number, location */
                   12147:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   12148:           { 13,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12149:             "\xc0\x13\x86\x23\x20\x06\x64\x00\x0c\xc0\x00\x18\x00"
                   12150:             "\x02\xc4\x40\x10\x04\x7c\x00" }  },
1.1       albertel 12151:       /* --- pixel bitmap for cmmi131 char#68 D --- */
1.2       albertel 12152:       {  68, 4439,                      /* character number, location */
                   12153:          12, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   12154:           { 15,   12, 3,41, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12155:             "\x39\x82\x52\x52\x71\x10\xf2\x42\x72\xf1\x32\x72\x10"
                   12156:             "\x32\x71\x52\x62\x42\x52\x4a\x55" }  },
1.1       albertel 12157:       /* --- pixel bitmap for cmmi131 char#69 E --- */
1.2       albertel 12158:       {  69, 5872,                      /* character number, location */
                   12159:          12, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   12160:           { 14,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12161:             "\xf8\x3f\x18\x0c\x03\xc1\x48\x30\x12\xfc\x80\x11\x60"
                   12162:             "\x44\x18\x10\x06\xc2\xc0\xfc\x1f" }  },
1.1       albertel 12163:       /* --- pixel bitmap for cmmi131 char#70 F --- */
1.2       albertel 12164:       {  70, 7115,                      /* character number, location */
                   12165:          12, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   12166:           { 13,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12167:             "\xf8\x1f\x0c\xc3\x40\x18\x09\x23\xe1\x07\x46\xc0\x08"
                   12168:             "\x18\x00\x03\x30\x80\x3f\x00" }  },
1.1       albertel 12169:       /* --- pixel bitmap for cmmi131 char#71 G --- */
1.2       albertel 12170:       {  71, 8286,                      /* character number, location */
                   12171:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   12172:           { 13,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12173:             "\xc0\x13\x86\x23\x20\x06\x64\x00\x0c\xc0\xe0\x1f\x30"
                   12174:             "\x02\xc6\xc0\x10\x0c\x7c\x01" }  },
1.1       albertel 12175:       /* --- pixel bitmap for cmmi131 char#72 H --- */
1.2       albertel 12176:       {  72, 9467,                      /* character number, location */
                   12177:          12, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   12178:           { 17,   12, 3,39, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12179:             "\x36\x26\x52\x62\x20\xf2\x42\x62\x30\x4a\x30\xf3\x32"
                   12180:             "\x62\x40\x22\x62\x56\x26\x32" }  },
1.1       albertel 12181:       /* --- pixel bitmap for cmmi131 char#73 I --- */
1.2       albertel 12182:       {  73,10178,                      /* character number, location */
                   12183:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   12184:           {  9,   12, 3,23, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12185:             "\x36\x52\x20\xf3\x42\x30\xf3\x32\x40\x22\x56\x33" }  },
1.1       albertel 12186:       /* --- pixel bitmap for cmmi131 char#74 J --- */
1.2       albertel 12187:       {  74,11022,                      /* character number, location */
                   12188:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   12189:           { 10,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12190:             "\xf0\x03\x06\x0c\x30\xc0\x00\x03\x06\x18\x60\x98\x31"
1.1       albertel 12191:             "\x83\x07" }  },
                   12192:       /* --- pixel bitmap for cmmi131 char#75 K --- */
1.2       albertel 12193:       {  75,12213,                      /* character number, location */
                   12194:          12, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   12195:           { 16,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12196:             "\xf8\xf9\x60\x10\x30\x0c\x30\x06\x30\x01\xf0\x01\x78"
                   12197:             "\x03\x18\x03\x18\x07\x18\x06\x0c\x06\x3f\x1f" }  },
1.1       albertel 12198:       /* --- pixel bitmap for cmmi131 char#76 L --- */
1.2       albertel 12199:       {  76,13170,                      /* character number, location */
                   12200:          12, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   12201:           { 11,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12202:             "\xf8\x01\x03\x0c\x60\x00\x03\x18\x60\x00\x83\x18\xc4"
                   12203:             "\x30\xc3\xfe\x07" }  },
1.3       albertel 12204: #if 0
                   12205:       /* --- *unmodified* pixel bitmap for cmmi131 char#77 M --- */
1.2       albertel 12206:       {  77,14488,                      /* character number, location */
                   12207:          12, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   12208:           { 20,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12209:             "\xf8\x80\x0f\x0e\x30\xd0\xc0\x01\x0d\x1a\xd0\x80\x01"
                   12210:             "\x0d\x19\x88\xc9\x80\x18\x0c\x88\xc5\x80\x38\x0c\x84"
                   12211:             "\x61\xf0\x99\x1f" }  },
1.3       albertel 12212: #else
                   12213:       /* --- *modified* pixel bitmap for cmmi131 char#77 M --- */
                   12214:       {  77,14488,                      /* character number, location */
                   12215:          12, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   12216:           { 20,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12217:             "\xf8\x80\x0f\x0e\x34\xd0\xa0\x01\x0d\x1a\xd0\x90\x01"
                   12218:             "\x0d\x19\x88\xc9\x80\x98\x0c\x88\xc5\x80\x38\x0c\x84"
                   12219:             "\x61\xf0\x99\x1f" }  },
                   12220: #endif
1.1       albertel 12221:       /* --- pixel bitmap for cmmi131 char#78 N --- */
1.2       albertel 12222:       {  78,15620,                      /* character number, location */
                   12223:          12, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   12224:           { 17,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12225:             "\xf8\xf0\xc1\x81\x40\x87\x80\x0c\x01\x39\x02\x62\x04"
                   12226:             "\xc2\x05\x04\x0b\x08\x1e\x10\x38\x10\x30\xf8\x40\x00" }  },
1.1       albertel 12227:       /* --- pixel bitmap for cmmi131 char#79 O --- */
1.2       albertel 12228:       {  79,16507,                      /* character number, location */
                   12229:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   12230:           { 13,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12231:             "\xe0\x03\x86\x21\x30\x06\x6c\x80\x0d\xf0\x00\x1b\x60"
                   12232:             "\x03\xc6\xc0\x38\x06\x7c\x00" }  },
1.1       albertel 12233:       /* --- pixel bitmap for cmmi131 char#80 P --- */
1.2       albertel 12234:       {  80,17628,                      /* character number, location */
                   12235:          12, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   12236:           { 13,   12, 3,31, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12237:             "\x39\x62\x42\xf2\x42\x52\x42\x42\x47\x30\xf2\x32\x80"
                   12238:             "\x22\x96\x72" }  },
1.1       albertel 12239:       /* --- pixel bitmap for cmmi131 char#81 Q --- */
1.2       albertel 12240:       {  81,18651,                      /* character number, location */
                   12241:          12, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   12242:           { 13,   16, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12243:             "\xe0\x03\x86\x21\x30\x06\x6c\x80\x0d\xf0\x00\x1b\x60"
                   12244:             "\x03\xc6\xce\x38\x06\x7c\x00\x00\x00\x09\xe0\x00\x0c" }  },
1.1       albertel 12245:       /* --- pixel bitmap for cmmi131 char#82 R --- */
1.2       albertel 12246:       {  82,19980,                      /* character number, location */
                   12247:          12, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   12248:           { 13,   12, 3,36, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12249:             "\x39\x62\x42\xf1\x42\x52\x42\x42\x56\x30\xf3\x32\x42"
                   12250:             "\x20\x22\x43\x17\x34" }  },
1.1       albertel 12251:       /* --- pixel bitmap for cmmi131 char#83 S --- */
1.2       albertel 12252:       {  83,21065,                      /* character number, location */
                   12253:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   12254:           { 11,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12255:             "\xe0\xc5\x30\x82\x18\xc0\x01\x7c\xc0\x07\x30\x80\x11"
                   12256:             "\xc4\x30\x7a\x00" }  },
1.1       albertel 12257:       /* --- pixel bitmap for cmmi131 char#84 T --- */
1.2       albertel 12258:       {  84,22121,                      /* character number, location */
                   12259:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   12260:           { 12,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12261:             "\xfe\x2f\xcc\x63\x14\x46\x61\x04\x06\x30\x00\x03\x30"
                   12262:             "\x00\x03\x18\xe0\x0f" }  },
1.1       albertel 12263:       /* --- pixel bitmap for cmmi131 char#85 U --- */
1.2       albertel 12264:       {  85,23111,                      /* character number, location */
                   12265:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   12266:           { 14,   12, 3,33, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12267:             "\x06\x35\x22\x71\x20\xf3\x12\x71\x3f\x22\x71\x42\x61"
                   12268:             "\x61\x51\x85\x72" }  },
1.1       albertel 12269:       /* --- pixel bitmap for cmmi131 char#86 V --- */
1.2       albertel 12270:       {  86,24049,                      /* character number, location */
                   12271:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   12272:           { 14,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12273:             "\x3f\x3e\x03\xc1\x40\x30\x08\x0c\x01\x46\x80\x09\x60"
                   12274:             "\x01\x58\x00\x0e\x80\x01\x60\x00" }  },
1.1       albertel 12275:       /* --- pixel bitmap for cmmi131 char#87 W --- */
1.2       albertel 12276:       {  87,25439,                      /* character number, location */
                   12277:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   12278:           { 19,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12279:             "\x9f\xcf\x67\x18\x04\xc3\x21\x18\x8e\xc0\x68\x04\x26"
                   12280:             "\x13\x30\x99\x80\xc5\x02\x2c\x0e\xe0\x70\x00\x86\x01"
                   12281:             "\x10\x0c\x00" }  },
1.1       albertel 12282:       /* --- pixel bitmap for cmmi131 char#88 X --- */
1.2       albertel 12283:       {  88,26556,                      /* character number, location */
                   12284:          12, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   12285:           { 16,   12, 3,45, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12286:             "\x36\x25\x62\x41\x92\x31\xa3\x11\x50\xf2\x73\x60\x61"
                   12287:             "\x12\xb1\x32\x91\x42\x82\x43\x46\x26\x20" }  },
1.1       albertel 12288:       /* --- pixel bitmap for cmmi131 char#89 Y --- */
1.2       albertel 12289:       {  89,27648,                      /* character number, location */
                   12290:          12, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   12291:           { 14,   12, 3,37, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12292:             "\x06\x35\x22\x61\x53\x41\x72\x31\x82\x22\x94\xa3\x70"
                   12293:             "\xf2\x42\x80\x32\xa6\x72" }  },
1.1       albertel 12294:       /* --- pixel bitmap for cmmi131 char#90 Z --- */
1.2       albertel 12295:       {  90,28727,                      /* character number, location */
                   12296:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   12297:           { 12,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12298:             "\xf8\x8f\x61\x0c\x43\x18\xc4\x00\x0e\x70\x00\x23\x18"
                   12299:             "\xc2\x30\x86\xf1\x1f" }  },
1.1       albertel 12300:       /* --- pixel bitmap for cmmi131 char#91 \flat --- */
1.2       albertel 12301:       {  91,116207,                     /* character number, location */
                   12302:          14, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   12303:           {  5,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12304:             "\x21\x84\x10\xc2\x8e\x31\xa6\x54\x06" }  },
1.1       albertel 12305:       /* --- pixel bitmap for cmmi131 char#92 \natural --- */
1.2       albertel 12306:       {  92,116956,                     /* character number, location */
                   12307:          13, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   12308:           {  5,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12309:             "\x21\x84\x90\x6f\x8c\x31\xc6\x98\x2f\x84\x10" }  },
1.1       albertel 12310:       /* --- pixel bitmap for cmmi131 char#93 \sharp --- */
1.2       albertel 12311:       {  93,117809,                     /* character number, location */
                   12312:          13, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   12313:           {  5,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12314:             "\x4a\x29\xa5\x9f\x52\x4a\x29\xa5\x9f\x52\x0a" }  },
1.1       albertel 12315:       /* --- pixel bitmap for cmmi131 char#94 \smile --- */
1.2       albertel 12316:       {  94,118723,                     /* character number, location */
                   12317:           7, 1,    3, 1,      /* topleft row,col, and botleft row,col */
                   12318:           { 16,    4, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12319:             "\x01\x80\x02\x40\x0c\x30\xf0\x0f" }  },
1.1       albertel 12320:       /* --- pixel bitmap for cmmi131 char#95 \frown --- */
1.2       albertel 12321:       {  95,119587,                     /* character number, location */
                   12322:           7, 1,    3, 1,      /* topleft row,col, and botleft row,col */
                   12323:           { 16,    4, 3,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12324:             "\x48\x62\x82\x31\xc1\x11\xe1" }  },
1.1       albertel 12325:       /* --- pixel bitmap for cmmi131 char#96 \ell --- */
1.2       albertel 12326:       {  96,93167,                      /* character number, location */
                   12327:          13,-1,    0,-1,      /* topleft row,col, and botleft row,col */
                   12328:           {  9,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12329:             "\xc0\x40\x42\x84\x84\x08\x09\x0a\x0a\x0c\x08\x18\x40"
                   12330:             "\x04\x07" }  },
1.1       albertel 12331:       /* --- pixel bitmap for cmmi131 char#97 a --- */
1.2       albertel 12332:       {  97,29655,                      /* character number, location */
                   12333:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   12334:           {  8,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12335:             "\x5c\x62\x22\x21\x21\xb1\x51\x6e" }  },
1.1       albertel 12336:       /* --- pixel bitmap for cmmi131 char#98 b --- */
1.2       albertel 12337:       {  98,30481,                      /* character number, location */
                   12338:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   12339:           {  6,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12340:             "\x06\x41\x08\x82\x27\x8e\x61\x18\x45\x0e" }  },
1.1       albertel 12341:       /* --- pixel bitmap for cmmi131 char#99 c --- */
1.2       albertel 12342:       {  99,31276,                      /* character number, location */
                   12343:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   12344:           {  7,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12345:             "\x38\xa2\x20\x10\x08\x84\x3c" }  },
1.1       albertel 12346:       /* --- pixel bitmap for cmmi131 char#100 d --- */
1.2       albertel 12347:       { 100,32206,                      /* character number, location */
                   12348:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   12349:           {  8,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12350:             "\xc0\x80\x80\x40\x40\x5c\x62\x22\x21\x21\xb1\x51\x6e" }  },
1.1       albertel 12351:       /* --- pixel bitmap for cmmi131 char#101 e --- */
1.2       albertel 12352:       { 101,33009,                      /* character number, location */
                   12353:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   12354:           {  7,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12355:             "\x38\xa3\xe8\x13\x08\x84\x3c" }  },
1.3       albertel 12356: #if 0
                   12357:       /* --- *unmodified* pixel bitmap for cmmi131 char#102 f --- */
1.2       albertel 12358:       { 102,34171,                      /* character number, location */
                   12359:          13, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   12360:           {  9,   17, 3,35, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12361:             "\x62\x71\x11\xf2\x51\x30\x43\x71\x30\xf4\x41\x40\xf2"
                   12362:             "\x31\x51\x21\x62\x62" }  },
1.3       albertel 12363: #else
                   12364:       /* --- *modified* pixel bitmap for cmmi131 char#102 f --- */
                   12365:       { 102,34171,                      /* character number, location */
                   12366:          13, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   12367:           { 10,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12368:             "\x80\x01\x09\x04\x08\x20\xe0\x03\x02\x08\x10\x40\x00"
                   12369:             "\x01\x04\x08\x20\x80\x40\x02\x06\x00" }  },
                   12370: #endif
1.1       albertel 12371:       /* --- pixel bitmap for cmmi131 char#103 g --- */
1.2       albertel 12372:       { 103,35130,                      /* character number, location */
                   12373:           8, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   12374:           {  8,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12375:             "\xb8\xc4\x44\x42\x42\x62\x22\x3c\x20\x20\x10\x0f" }  },
1.1       albertel 12376:       /* --- pixel bitmap for cmmi131 char#104 h --- */
1.2       albertel 12377:       { 104,36043,                      /* character number, location */
                   12378:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   12379:           {  9,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12380:             "\x0c\x10\x20\x20\x40\x80\x0e\x13\x23\x42\x84\x88\x0c"
                   12381:             "\x15\x0c" }  },
1.1       albertel 12382:       /* --- pixel bitmap for cmmi131 char#105 i --- */
1.2       albertel 12383:       { 105,36873,                      /* character number, location */
                   12384:          13, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   12385:           {  5,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12386:             "\x10\x00\x00\x8c\x4a\x84\x48\xc5\x00" }  },
1.1       albertel 12387:       /* --- pixel bitmap for cmmi131 char#106 j --- */
1.2       albertel 12388:       { 106,37784,                      /* character number, location */
                   12389:          13, 0,   -4, 0,      /* topleft row,col, and botleft row,col */
                   12390:           {  8,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12391:             "\x80\x00\x00\x00\x00\x30\x48\x24\x20\x20\x20\x10\x10"
                   12392:             "\x10\x10\x08\x07" }  },
1.1       albertel 12393:       /* --- pixel bitmap for cmmi131 char#107 k --- */
1.2       albertel 12394:       { 107,38785,                      /* character number, location */
                   12395:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   12396:           {  9,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12397:             "\x0c\x10\x20\x20\x40\x80\x1c\x45\x05\x0e\x24\x88\x8a"
                   12398:             "\x12\x06" }  },
1.1       albertel 12399:       /* --- pixel bitmap for cmmi131 char#108 l --- */
1.2       albertel 12400:       { 108,39475,                      /* character number, location */
                   12401:          13, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   12402:           {  4,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12403:             "\x8c\x48\x44\x24\x22\x5a\x06" }  },
1.1       albertel 12404:       /* --- pixel bitmap for cmmi131 char#109 m --- */
1.2       albertel 12405:       { 109,40692,                      /* character number, location */
                   12406:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   12407:           { 15,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12408:             "\xe6\x1c\x4d\x49\x63\x84\x10\x42\x08\x21\x44\x0a\xa1"
                   12409:             "\x84\x60" }  },
1.1       albertel 12410:       /* --- pixel bitmap for cmmi131 char#110 n --- */
1.2       albertel 12411:       { 110,41713,                      /* character number, location */
                   12412:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   12413:           { 10,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12414:             "\xe6\x68\xd2\x08\x21\x84\x10\x29\x94\x60" }  },
1.1       albertel 12415:       /* --- pixel bitmap for cmmi131 char#111 o --- */
1.2       albertel 12416:       { 111,42427,                      /* character number, location */
                   12417:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   12418:           {  7,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12419:             "\x38\xa2\x30\x18\x0c\x45\x1c" }  },
1.1       albertel 12420:       /* --- pixel bitmap for cmmi131 char#112 p --- */
1.2       albertel 12421:       { 112,43381,                      /* character number, location */
                   12422:           8,-1,   -4,-1,      /* topleft row,col, and botleft row,col */
                   12423:           {  9,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12424:             "\xec\x28\x6a\x44\x88\x10\x11\x23\x3a\x04\x08\x08\x78"
                   12425:             "\x00" }  },
1.1       albertel 12426:       /* --- pixel bitmap for cmmi131 char#113 q --- */
1.2       albertel 12427:       { 113,44272,                      /* character number, location */
                   12428:           8, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   12429:           {  7,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12430:             "\x5c\xb1\x28\x14\x8a\x45\x3c\x10\x08\x82\x07" }  },
1.1       albertel 12431:       /* --- pixel bitmap for cmmi131 char#114 r --- */
1.2       albertel 12432:       { 114,45125,                      /* character number, location */
                   12433:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   12434:           {  8,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12435:             "\x76\x8a\x0d\x04\x04\x04\x02\x02" }  },
1.1       albertel 12436:       /* --- pixel bitmap for cmmi131 char#115 s --- */
1.2       albertel 12437:       { 115,46055,                      /* character number, location */
                   12438:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   12439:           {  7,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12440:             "\x38\xa2\x80\x03\x02\x86\x3c" }  },
1.1       albertel 12441:       /* --- pixel bitmap for cmmi131 char#116 t --- */
1.2       albertel 12442:       { 116,46791,                      /* character number, location */
                   12443:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   12444:           {  6,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12445:             "\x10\x82\xfc\x08\x41\x10\xa4\xc4\x00" }  },
1.1       albertel 12446:       /* --- pixel bitmap for cmmi131 char#117 u --- */
1.2       albertel 12447:       { 117,47799,                      /* character number, location */
                   12448:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   12449:           { 10,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12450:             "\x06\x29\x94\x08\x21\x84\x10\x4b\x14\x6e" }  },
1.1       albertel 12451:       /* --- pixel bitmap for cmmi131 char#118 v --- */
1.2       albertel 12452:       { 118,48680,                      /* character number, location */
                   12453:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   12454:           {  8,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12455:             "\x86\x8a\x89\x84\x84\x44\x44\x38" }  },
1.1       albertel 12456:       /* --- pixel bitmap for cmmi131 char#119 w --- */
1.2       albertel 12457:       { 119,49850,                      /* character number, location */
                   12458:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   12459:           { 12,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12460:             "\x86\xa8\x88\x49\x48\x84\x44\x48\x44\x64\x84\x39" }  },
1.1       albertel 12461:       /* --- pixel bitmap for cmmi131 char#120 x --- */
1.2       albertel 12462:       { 120,51068,                      /* character number, location */
                   12463:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   12464:           { 10,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12465:             "\xd8\xd1\x28\x01\x04\x10\x40\x94\x89\x1d" }  },
1.1       albertel 12466:       /* --- pixel bitmap for cmmi131 char#121 y --- */
1.2       albertel 12467:       { 121,52132,                      /* character number, location */
                   12468:           8, 0,   -4, 0,      /* topleft row,col, and botleft row,col */
                   12469:           {  9,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12470:             "\x06\x15\x26\x22\x44\x88\x18\x11\x3c\x40\x40\x44\x70"
                   12471:             "\x00" }  },
1.1       albertel 12472:       /* --- pixel bitmap for cmmi131 char#122 z --- */
1.2       albertel 12473:       { 122,53024,                      /* character number, location */
                   12474:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   12475:           {  8,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12476:             "\x9c\x64\x20\x10\x08\x44\x26\x19" }  },
1.1       albertel 12477:       /* --- pixel bitmap for cmmi131 char#123 \imath --- */
1.2       albertel 12478:       { 123,93907,                      /* character number, location */
                   12479:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   12480:           {  5,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12481:             "\x46\x25\x42\xa4\x62" }  },
1.1       albertel 12482:       /* --- pixel bitmap for cmmi131 char#124 \jmath --- */
1.2       albertel 12483:       { 124,94676,                      /* character number, location */
                   12484:           8,-1,   -4,-1,      /* topleft row,col, and botleft row,col */
                   12485:           {  8,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12486:             "\x60\x90\x48\x40\x40\x40\x20\x20\x20\x20\x10\x0f" }  },
1.1       albertel 12487:       /* --- pixel bitmap for cmmi131 char#125 \wp --- */
1.2       albertel 12488:       { 125,95815,                      /* character number, location */
                   12489:           8, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   12490:           { 10,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12491:             "\x08\x90\x27\xa1\x82\x06\x0a\x24\x51\x39\x09\x24\x50"
                   12492:             "\x80\x00" }  },
1.1       albertel 12493:       /* --- pixel bitmap for cmmi131 char#126 \vec --- */
1.2       albertel 12494:       { 126,96431,                      /* character number, location */
                   12495:          13, 4,   10, 4,      /* topleft row,col, and botleft row,col */
                   12496:           {  7,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12497:             "\xa0\x3f\x08" }  },
1.1       albertel 12498:       /* --- pixel bitmap for cmmi131 char#127 (noname) --- */
1.2       albertel 12499:       { 127,96967,                      /* character number, location */
                   12500:          12, 5,   10, 5,      /* topleft row,col, and botleft row,col */
                   12501:           {  8,    2, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12502:             "\x7e\x81" }  },
1.1       albertel 12503:       /* --- trailer  --- */
1.2       albertel 12504:       { -99, -999,  0,0,0,0, { 0,0,0,0, (pixbyte *)"\0" }  }
1.1       albertel 12505:    } ;
                   12506: 
                   12507: 
1.2       albertel 12508: /* --- size=4 for .160gf ---
                   12509:  * mf '\mode=preview; mag=magstep(-15.29639112828755784636); input cmmi10'
                   12510:  * --------------------------------------------------------------------- */
1.1       albertel 12511: /* --- fontdef for cmmi160 --- */
                   12512: static	chardef  cmmi160[] =
                   12513:    {
                   12514:       /* --- pixel bitmap for cmmi160 char#0 \Gamma --- */
1.2       albertel 12515:       {   0,54633,                      /* character number, location */
                   12516:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   12517:           { 15,   15, 3,31, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12518:             "\x3c\xf1\x52\x62\xf1\x52\x71\xf3\x42\x90\xf3\x32\xa0"
                   12519:             "\x22\xb7\x81" }  },
1.1       albertel 12520:       /* --- pixel bitmap for cmmi160 char#1 \Delta --- */
1.2       albertel 12521:       {   1,55538,                      /* character number, location */
                   12522:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   12523:           { 16,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12524:             "\x00\x08\x00\x1c\x00\x1a\x00\x1a\x00\x19\x80\x38\x40"
                   12525:             "\x30\x40\x30\x20\x30\x10\x70\x08\x60\x08\x60\x04\x60"
                   12526:             "\xfe\xff\xff\xff" }  },
1.1       albertel 12527:       /* --- pixel bitmap for cmmi160 char#2 \Theta --- */
1.2       albertel 12528:       {   2,56711,                      /* character number, location */
                   12529:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   12530:           { 15,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12531:             "\xc0\x0f\x38\x0c\x06\x8c\x01\x6c\x00\xb6\x20\xcf\x9f"
                   12532:             "\xe7\xcf\x13\xe4\x01\xd8\x00\x6c\x00\x23\xc0\x70\x18"
                   12533:             "\xe0\x03\x00" }  },
1.1       albertel 12534:       /* --- pixel bitmap for cmmi160 char#3 \Lambda --- */
1.2       albertel 12535:       {   3,57667,                      /* character number, location */
                   12536:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   12537:           { 14,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12538:             "\x00\x06\x80\x01\x70\x00\x1c\x80\x06\xa0\x01\x64\x80"
                   12539:             "\x19\x20\x06\x84\x01\x61\x20\x38\x08\x0e\x01\xf3\xf9"
                   12540:             "\x03" }  },
1.1       albertel 12541:       /* --- pixel bitmap for cmmi160 char#4 \Xi --- */
1.2       albertel 12542:       {   4,59092,                      /* character number, location */
                   12543:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   12544:           { 17,   15, 3,51, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12545:             "\x4d\x3d\x10\xf1\x31\xb1\x10\xe0\x71\x71\x40\xf1\x49"
                   12546:             "\x40\x41\x71\x40\xf1\xe0\x30\xf1\x11\xb1\x3f\x1d\x41" }  },
1.1       albertel 12547:       /* --- pixel bitmap for cmmi160 char#5 \Pi --- */
1.2       albertel 12548:       {   5,60275,                      /* character number, location */
                   12549:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   12550:           { 19,   15, 3,37, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12551:             "\x3e\x02\xf3\x52\x72\x30\xf3\x42\x72\x40\xf3\x32\x72"
                   12552:             "\x50\x22\x72\x67\x27\x30" }  },
1.1       albertel 12553:       /* --- pixel bitmap for cmmi160 char#6 \Sigma --- */
1.2       albertel 12554:       {   6,61428,                      /* character number, location */
                   12555:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   12556:           { 17,   15, 3,57, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12557:             "\x4d\x42\x83\x43\x82\x52\x82\x53\x81\x62\xe0\x13\xe0"
                   12558:             "\x12\xe0\x11\xe0\x11\xe0\x11\x81\x61\x82\x51\x91\x51"
                   12559:             "\x83\x4c\x47" }  },
1.1       albertel 12560:       /* --- pixel bitmap for cmmi160 char#7 \Upsilon --- */
1.2       albertel 12561:       {   7,62486,                      /* character number, location */
                   12562:          15, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   12563:           { 15,   15, 3,39, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12564:             "\x24\x53\x26\x27\x51\x21\x41\xf1\x61\x11\x60\xf3\x62"
                   12565:             "\x70\xf3\x52\x80\x42\xa8\x61" }  },
1.1       albertel 12566:       /* --- pixel bitmap for cmmi160 char#8 \Phi --- */
1.2       albertel 12567:       {   8,63508,                      /* character number, location */
                   12568:          15, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   12569:           { 14,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12570:             "\xe0\x0f\x60\x00\x18\x80\x1f\x9c\x99\x31\x3c\x0c\x0f"
                   12571:             "\xc3\xc3\xd8\x18\x66\x66\xe0\x07\x60\x00\x0c\xe0\x1f"
                   12572:             "\x00" }  },
1.1       albertel 12573:       /* --- pixel bitmap for cmmi160 char#9 \Psi --- */
1.2       albertel 12574:       {   9,64591,                      /* character number, location */
                   12575:          15, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   12576:           { 15,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12577:             "\xe0\x0f\xc0\x00\x60\xe0\x30\x6e\x98\x31\x66\x18\x33"
                   12578:             "\x8c\x19\xc6\x06\x33\x03\xdb\x00\x1f\x00\x06\x80\x01"
                   12579:             "\xf8\x07\x00" }  },
1.1       albertel 12580:       /* --- pixel bitmap for cmmi160 char#10 \Omega --- */
1.2       albertel 12581:       {  10,65780,                      /* character number, location */
                   12582:          15, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   12583:           { 16,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12584:             "\x80\x1f\x70\x30\x18\x60\x0c\xc0\x0c\xc0\x06\x60\x06"
                   12585:             "\x60\x06\x30\x04\x30\x0c\x18\x0c\x0c\x09\x24\x09\x12"
                   12586:             "\x0f\x1e\x0f\x0f" }  },
1.1       albertel 12587:       /* --- pixel bitmap for cmmi160 char#11 \alpha --- */
1.2       albertel 12588:       {  11,66818,                      /* character number, location */
                   12589:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   12590:           { 13,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12591:             "\xf0\x00\x21\x12\x44\x01\x15\xa0\x02\x4c\x80\x08\x18"
                   12592:             "\xc2\x8a\x87\x01" }  },
1.1       albertel 12593:       /* --- pixel bitmap for cmmi160 char#12 \beta --- */
1.2       albertel 12594:       {  12,67867,                      /* character number, location */
                   12595:          15, 0,   -4, 0,      /* topleft row,col, and botleft row,col */
                   12596:           { 13,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12597:             "\x80\x07\x08\x83\x40\x08\x08\xc1\xd0\x07\x02\x41\x40"
                   12598:             "\x08\x88\x00\x11\x20\x02\x44\x40\x14\x86\x3c\x10\x00"
                   12599:             "\x02\x20\x00\x04\x00" }  },
1.1       albertel 12600:       /* --- pixel bitmap for cmmi160 char#13 \gamma --- */
1.2       albertel 12601:       {  13,68808,                      /* character number, location */
                   12602:          10, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   12603:           { 11,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12604:             "\x3c\x34\x63\x10\x03\x05\x28\xc0\x00\x06\x30\x80\x00"
                   12605:             "\x04\x20\x00\x01\x04\x20\x00" }  },
1.1       albertel 12606:       /* --- pixel bitmap for cmmi160 char#14 \delta --- */
1.2       albertel 12607:       {  14,69761,                      /* character number, location */
                   12608:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   12609:           {  9,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12610:             "\xf0\x11\x40\x80\x00\x02\x0e\x12\x42\x82\x02\x05\x0a"
                   12611:             "\x14\x44\x0c\x07" }  },
1.1       albertel 12612:       /* --- pixel bitmap for cmmi160 char#15 \epsilon --- */
1.2       albertel 12613:       {  15,70619,                      /* character number, location */
                   12614:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   12615:           {  8,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12616:             "\xf0\x0c\x02\x02\x7f\x01\x01\x02\x42\x3c" }  },
1.1       albertel 12617:       /* --- pixel bitmap for cmmi160 char#16 \zeta --- */
1.2       albertel 12618:       {  16,71551,                      /* character number, location */
                   12619:          15, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   12620:           { 10,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12621:             "\x40\x00\x01\x3c\x0c\x08\x10\x40\x80\x00\x02\x04\x10"
                   12622:             "\x40\x00\x01\x08\xc0\x01\x18\x40\x00\x01\x07" }  },
1.1       albertel 12623:       /* --- pixel bitmap for cmmi160 char#17 \eta --- */
1.2       albertel 12624:       {  17,72436,                      /* character number, location */
                   12625:          10, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   12626:           { 10,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12627:             "\xc6\xe5\x98\x61\x82\x0c\x11\x44\x10\x41\x82\x08\x02"
                   12628:             "\x08\x20\x40\x00\x01" }  },
1.1       albertel 12629:       /* --- pixel bitmap for cmmi160 char#18 \theta --- */
1.2       albertel 12630:       {  18,73196,                      /* character number, location */
                   12631:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   12632:           {  9,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12633:             "\xe0\x20\x22\x24\x48\x90\xa0\x40\xff\x02\x05\x05\x0a"
                   12634:             "\x22\x44\x04\x07" }  },
1.1       albertel 12635:       /* --- pixel bitmap for cmmi160 char#19 \iota --- */
1.2       albertel 12636:       {  19,73837,                      /* character number, location */
                   12637:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   12638:           {  6,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12639:             "\x04\x41\x10\x82\x20\x86\x91\x03" }  },
1.1       albertel 12640:       /* --- pixel bitmap for cmmi160 char#20 \kappa --- */
1.2       albertel 12641:       {  20,74743,                      /* character number, location */
                   12642:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   12643:           { 11,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12644:             "\x04\x23\x04\x19\x28\xe0\x03\x21\x08\x52\x90\x81\x0a"
                   12645:             "\x1c" }  },
1.1       albertel 12646:       /* --- pixel bitmap for cmmi160 char#21 \lambda --- */
1.2       albertel 12647:       {  21,75574,                      /* character number, location */
                   12648:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   12649:           { 11,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12650:             "\x18\x00\x01\x08\x80\x00\x04\x20\x00\x02\x10\xc0\x00"
                   12651:             "\x09\x44\x10\x42\x20\x01\x05\x10" }  },
1.1       albertel 12652:       /* --- pixel bitmap for cmmi160 char#22 \mu --- */
1.2       albertel 12653:       {  22,76554,                      /* character number, location */
                   12654:          10, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   12655:           { 12,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12656:             "\x08\x82\x20\x08\x82\x20\x04\x41\x10\x04\x49\x98\x46"
                   12657:             "\xa5\x33\x02\x20\x00\x01\x10\x00" }  },
1.1       albertel 12658:       /* --- pixel bitmap for cmmi160 char#23 \nu --- */
1.2       albertel 12659:       {  23,77349,                      /* character number, location */
                   12660:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   12661:           { 10,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12662:             "\x06\x12\x48\x20\x41\x82\x08\x22\x84\x0c\x0d\x0c\x00" }  },
1.1       albertel 12663:       /* --- pixel bitmap for cmmi160 char#24 \xi --- */
1.2       albertel 12664:       {  24,78495,                      /* character number, location */
                   12665:          15, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   12666:           {  9,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12667:             "\x40\x80\xc0\x47\x40\x40\x00\x01\x7c\x0c\x04\x04\x08"
                   12668:             "\x10\x20\x80\x01\x1c\x40\x80\xe0\x01" }  },
1.1       albertel 12669:       /* --- pixel bitmap for cmmi160 char#25 \pi --- */
1.2       albertel 12670:       {  25,79429,                      /* character number, location */
                   12671:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   12672:           { 11,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12673:             "\xfc\x97\x44\x24\x90\x80\x04\x24\x10\x81\x08\x44\x10"
                   12674:             "\x04" }  },
1.1       albertel 12675:       /* --- pixel bitmap for cmmi160 char#26 \rho --- */
1.2       albertel 12676:       {  26,80243,                      /* character number, location */
                   12677:          10, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   12678:           { 10,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12679:             "\xc0\xc1\x88\x20\x82\x04\x12\x48\x20\x41\x8a\xc8\x21"
                   12680:             "\x80\x00\x01\x04\x00" }  },
1.1       albertel 12681:       /* --- pixel bitmap for cmmi160 char#27 \sigma --- */
1.2       albertel 12682:       {  27,81143,                      /* character number, location */
                   12683:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   12684:           { 12,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12685:             "\xf0\x8f\x10\x04\x21\x10\x01\x11\x10\x01\x11\x08\x42"
                   12686:             "\xc0\x03" }  },
1.1       albertel 12687:       /* --- pixel bitmap for cmmi160 char#28 \tau --- */
1.2       albertel 12688:       {  28,81930,                      /* character number, location */
                   12689:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   12690:           { 10,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12691:             "\xfc\x4b\x10\x01\x04\x08\x20\x80\x00\x02\x04\x10\x00" }  },
1.1       albertel 12692:       /* --- pixel bitmap for cmmi160 char#29 \upsilon --- */
1.2       albertel 12693:       {  29,82829,                      /* character number, location */
                   12694:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   12695:           { 10,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12696:             "\x0e\x26\x98\x60\x82\x04\x11\x44\x10\x21\x44\xe0\x00" }  },
1.1       albertel 12697:       /* --- pixel bitmap for cmmi160 char#30 \phi --- */
1.2       albertel 12698:       {  30,83697,                      /* character number, location */
                   12699:          15, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   12700:           { 12,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12701:             "\x00\x01\x10\x00\x01\x08\x80\x00\x3e\x98\x44\x84\x42"
                   12702:             "\x18\x84\x41\x18\x82\x22\x64\x32\xf8\x00\x01\x10\x00"
                   12703:             "\x01\x10\x00" }  },
1.1       albertel 12704:       /* --- pixel bitmap for cmmi160 char#31 \chi --- */
1.2       albertel 12705:       {  31,84718,                      /* character number, location */
                   12706:          10, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   12707:           { 13,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12708:             "\x0c\x50\x01\x41\x10\x08\x02\x22\x40\x02\x30\x00\x06"
                   12709:             "\xa0\x00\x22\x20\x04\x02\x21\xa0\x02\x18" }  },
1.1       albertel 12710:       /* --- pixel bitmap for cmmi160 char#32 \psi --- */
1.2       albertel 12711:       {  32,85791,                      /* character number, location */
                   12712:          15, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   12713:           { 13,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12714:             "\x00\x02\x40\x00\x04\x80\x00\x10\x1c\x62\x22\x4c\x84"
                   12715:             "\x89\x90\x10\x11\x21\x22\x42\x44\x90\x06\x3c\x00\x01"
                   12716:             "\x20\x00\x04\x40\x00" }  },
1.1       albertel 12717:       /* --- pixel bitmap for cmmi160 char#33 \omega --- */
1.2       albertel 12718:       {  33,86890,                      /* character number, location */
                   12719:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   12720:           { 13,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12721:             "\x04\x90\x00\x0a\x40\x41\x18\x84\x82\x50\x10\x0a\x23"
                   12722:             "\xd3\xc6\x71\x00" }  },
1.1       albertel 12723:       /* --- pixel bitmap for cmmi160 char#34 \varepsilon --- */
1.2       albertel 12724:       {  34,87869,                      /* character number, location */
                   12725:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   12726:           {  9,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12727:             "\xf8\x08\x0a\x10\xc0\x43\x40\x80\x00\x41\x7c\x00" }  },
1.1       albertel 12728:       /* --- pixel bitmap for cmmi160 char#35 \vartheta --- */
1.2       albertel 12729:       {  35,88868,                      /* character number, location */
                   12730:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   12731:           { 11,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12732:             "\xc0\x01\x11\x84\x20\x04\x21\x13\x25\x2f\xc1\x09\x22"
                   12733:             "\x08\x41\x08\x41\x08\x22\xe0\x00" }  },
1.1       albertel 12734:       /* --- pixel bitmap for cmmi160 char#36 \varpi --- */
1.2       albertel 12735:       {  36,90081,                      /* character number, location */
                   12736:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   12737:           { 17,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12738:             "\xfc\xff\x15\x80\x24\x00\x21\x00\x24\x10\x44\x20\x88"
                   12739:             "\x60\x10\xc1\x10\x62\x11\x38\x1c\x00" }  },
1.1       albertel 12740:       /* --- pixel bitmap for cmmi160 char#37 \varrho --- */
1.2       albertel 12741:       {  37,90962,                      /* character number, location */
                   12742:          10, 2,   -4, 2,      /* topleft row,col, and botleft row,col */
                   12743:           {  9,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12744:             "\xe0\x30\x12\x24\x28\x50\xa0\x40\x41\x45\x72\x04\x08"
                   12745:             "\x10\xc0\x0f" }  },
1.1       albertel 12746:       /* --- pixel bitmap for cmmi160 char#38 \varsigma --- */
1.2       albertel 12747:       {  38,91783,                      /* character number, location */
                   12748:          10, 0,   -2, 0,      /* topleft row,col, and botleft row,col */
                   12749:           {  9,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12750:             "\xf0\x19\x08\x10\x10\x40\x00\x01\x0c\x20\x80\x00\x81"
                   12751:             "\x01" }  },
1.1       albertel 12752:       /* --- pixel bitmap for cmmi160 char#39 \varphi --- */
1.2       albertel 12753:       {  39,92712,                      /* character number, location */
                   12754:          10, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   12755:           { 13,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12756:             "\x04\x87\x10\x09\x21\x21\x18\x82\x42\x50\x08\x12\x21"
                   12757:             "\x14\x03\x1f\x40\x00\x08\x80\x00\x10\x00" }  },
1.1       albertel 12758:       /* --- pixel bitmap for cmmi160 char#40 \leftharpoonup --- */
1.2       albertel 12759:       {  40,108370,                     /* character number, location */
                   12760:          11, 1,    5, 1,      /* topleft row,col, and botleft row,col */
                   12761:           { 20,    6, 3,24, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12762:             "\xf1\x41\xe0\x10\x31\xe0\x42\xe0\x32\xe0\x3e\x06" }  },
1.1       albertel 12763:       /* --- pixel bitmap for cmmi160 char#41 \leftharpoondown --- */
1.2       albertel 12764:       {  41,109396,                     /* character number, location */
                   12765:           6, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   12766:           { 20,    6, 3,25, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12767:             "\x0e\x06\x12\xe0\x52\xe0\x51\xe0\x20\xf1\x41\xe0\x14" }  },
1.1       albertel 12768:       /* --- pixel bitmap for cmmi160 char#42 \rightharpoonup --- */
1.2       albertel 12769:       {  42,110420,                     /* character number, location */
                   12770:          11, 1,    5, 1,      /* topleft row,col, and botleft row,col */
                   12771:           { 20,    6, 3,24, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12772:             "\xf1\xe0\x11\x40\xe0\x21\xe0\x52\xe0\x52\x1e\x06" }  },
1.1       albertel 12773:       /* --- pixel bitmap for cmmi160 char#43 \rightharpoondown --- */
1.2       albertel 12774:       {  43,111447,                     /* character number, location */
                   12775:           6, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   12776:           { 20,    6, 3,25, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12777:             "\x0e\x06\xe0\x32\xe0\x32\xe0\x41\x30\xf1\xe0\x11\x44" }  },
1.1       albertel 12778:       /* --- pixel bitmap for cmmi160 char#44 ` --- */
1.2       albertel 12779:       {  44,111866,                     /* character number, location */
                   12780:          12, 1,    5, 1,      /* topleft row,col, and botleft row,col */
                   12781:           {  4,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12782:             "\x2c\x11\x21\x0c" }  },
1.1       albertel 12783:       /* --- pixel bitmap for cmmi160 char#45 ' --- */
1.2       albertel 12784:       {  45,112288,                     /* character number, location */
                   12785:          12, 1,    5, 1,      /* topleft row,col, and botleft row,col */
                   12786:           {  4,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12787:             "\x43\x88\x48\x03" }  },
1.1       albertel 12788:       /* --- pixel bitmap for cmmi160 char#46 \triangleright --- */
1.2       albertel 12789:       {  46,112827,                     /* character number, location */
                   12790:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   12791:           { 11,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12792:             "\x01\x38\x40\x06\xc2\x10\x98\x00\x07\x2c\x18\x31\x28"
                   12793:             "\x40\x00\x00" }  },
1.1       albertel 12794:       /* --- pixel bitmap for cmmi160 char#47 \triangleleft --- */
1.2       albertel 12795:       {  47,113389,                     /* character number, location */
                   12796:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   12797:           { 11,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12798:             "\x00\x04\x38\x30\x61\x48\xc0\x00\x1a\x10\x83\x60\x04"
                   12799:             "\x2c\x80\x01" }  },
1.1       albertel 12800:       /* --- pixel bitmap for cmmi160 char#48 \0 --- */
1.2       albertel 12801:       {  48,98993,                      /* character number, location */
                   12802:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   12803:           {  9,   10, 3,19, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12804:             "\x25\x31\x51\x1f\x51\x71\x11\x51\x35\x21" }  },
1.1       albertel 12805:       /* --- pixel bitmap for cmmi160 char#49 \1 --- */
1.2       albertel 12806:       {  49,99756,                      /* character number, location */
                   12807:          10, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   12808:           {  7,   10, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12809:             "\x31\x34\x30\xf6\x31\x37" }  },
1.1       albertel 12810:       /* --- pixel bitmap for cmmi160 char#50 \2 --- */
1.2       albertel 12811:       {  50,100722,                     /* character number, location */
                   12812:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   12813:           {  9,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12814:             "\x7c\x04\x05\x04\x08\x18\x18\x0c\x8c\xfe\xfe\x01" }  },
1.1       albertel 12815:       /* --- pixel bitmap for cmmi160 char#51 \3 --- */
1.2       albertel 12816:       {  51,101743,                     /* character number, location */
                   12817:          10, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   12818:           {  9,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12819:             "\x38\x8c\x08\x03\x06\x0c\x08\x1e\x60\x80\x01\x0f\x1e"
                   12820:             "\x2c\x8c\x0f" }  },
1.1       albertel 12821:       /* --- pixel bitmap for cmmi160 char#52 \4 --- */
1.2       albertel 12822:       {  52,102664,                     /* character number, location */
                   12823:          10, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   12824:           {  9,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12825:             "\x60\xc0\x40\x81\x82\x84\x08\x11\x21\x43\xfe\x03\x01"
                   12826:             "\x02\x04\x3e" }  },
1.1       albertel 12827:       /* --- pixel bitmap for cmmi160 char#53 \5 --- */
1.2       albertel 12828:       {  53,103701,                     /* character number, location */
                   12829:          10, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   12830:           {  9,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12831:             "\x82\xfc\xe8\x10\x20\x40\x8f\x31\xc1\x80\x01\x07\x0e"
                   12832:             "\x24\x8c\x07" }  },
1.1       albertel 12833:       /* --- pixel bitmap for cmmi160 char#54 \6 --- */
1.2       albertel 12834:       {  54,104596,                     /* character number, location */
                   12835:          14, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   12836:           {  9,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12837:             "\xf0\x18\x0a\x10\x10\x20\xcf\xa1\x81\x01\x03\x06\x14"
                   12838:             "\x44\x0c\x07" }  },
1.1       albertel 12839:       /* --- pixel bitmap for cmmi160 char#55 \7 --- */
1.2       albertel 12840:       {  55,105495,                     /* character number, location */
                   12841:          11, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   12842:           { 10,   15, 3,35, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12843:             "\x11\x99\x11\x72\x71\x81\x20\xf1\x61\x30\x51\x40\xf2"
                   12844:             "\x41\x50\xf3\x31\x61" }  },
1.1       albertel 12845:       /* --- pixel bitmap for cmmi160 char#56 \8 --- */
1.2       albertel 12846:       {  56,106414,                     /* character number, location */
                   12847:          14, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   12848:           {  9,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12849:             "\x38\x88\x08\x12\x64\x88\x0f\x0e\x7a\xc2\x03\x06\x0c"
                   12850:             "\x28\x88\x0f" }  },
1.1       albertel 12851:       /* --- pixel bitmap for cmmi160 char#57 \9 --- */
1.2       albertel 12852:       {  57,107313,                     /* character number, location */
                   12853:          10, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   12854:           {  9,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12855:             "\x38\x8c\x08\x0a\x18\x30\x60\x60\xe1\x3c\x01\x02\x02"
                   12856:             "\x14\xc6\x03" }  },
1.1       albertel 12857:       /* --- pixel bitmap for cmmi160 char#58 . --- */
1.2       albertel 12858:       {  58,113880,                     /* character number, location */
                   12859:           2, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   12860:           {  2,    2, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12861:             "\x0f" }  },
1.1       albertel 12862:       /* --- pixel bitmap for cmmi160 char#59 , --- */
1.2       albertel 12863:       {  59,114439,                     /* character number, location */
                   12864:           2, 2,   -4, 2,      /* topleft row,col, and botleft row,col */
                   12865:           {  2,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12866:             "\xaf\x05" }  },
1.1       albertel 12867:       /* --- pixel bitmap for cmmi160 char#60 < --- */
1.2       albertel 12868:       {  60,115097,                     /* character number, location */
                   12869:          12, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   12870:           { 13,   13, 3,26, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12871:             "\xb2\x92\x92\x92\x92\x92\xa1\xd2\xd2\xd2\xd2\xd2\xd2" }  },
1.1       albertel 12872:       /* --- pixel bitmap for cmmi160 char#61 / --- */
1.2       albertel 12873:       {  61,115625,                     /* character number, location */
                   12874:          17, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   12875:           {  9,   23, 3,49, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12876:             "\xf1\x81\xf2\x71\x10\xf1\x61\x20\xf2\x51\x30\xf2\x41"
                   12877:             "\x40\xf2\x31\x50\xf1\x21\x60\xf2\x11\x7f\x11\x81" }  },
1.1       albertel 12878:       /* --- pixel bitmap for cmmi160 char#62 > --- */
1.2       albertel 12879:       {  62,116320,                     /* character number, location */
                   12880:          12, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   12881:           { 13,   13, 3,27, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12882:             "\x02\xd2\xd2\xd2\xd2\xd2\xd1\xa2\x92\x92\x92\x92\x92"
                   12883:             "\xb0" }  },
1.1       albertel 12884:       /* --- pixel bitmap for cmmi160 char#63 \star --- */
1.2       albertel 12885:       {  63,117023,                     /* character number, location */
                   12886:           7, 0,    1, 0,      /* topleft row,col, and botleft row,col */
                   12887:           { 11,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12888:             "\x02\xc4\x0f\x18\x00\x00\x09\x84\x00" }  },
1.1       albertel 12889:       /* --- pixel bitmap for cmmi160 char#64 \partial --- */
1.2       albertel 12890:       {  64,93724,                      /* character number, location */
                   12891:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   12892:           { 11,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12893:             "\xf0\x40\x18\x81\x00\x08\x40\x00\xc2\x93\xa1\x02\x0e"
                   12894:             "\x50\x80\x02\x12\x10\x61\xf0\x00" }  },
1.1       albertel 12895:       /* --- pixel bitmap for cmmi160 char#65 A --- */
1.2       albertel 12896:       {  65, 1026,                      /* character number, location */
                   12897:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   12898:           { 15,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12899:             "\x00\x0c\x00\x06\x80\x03\xc0\x01\xd0\x00\x64\x00\x32"
                   12900:             "\x80\x30\x40\x18\xf0\x0f\x04\x06\x02\x83\x80\x61\xc0"
                   12901:             "\x7c\xf8\x01" }  },
1.1       albertel 12902:       /* --- pixel bitmap for cmmi160 char#66 B --- */
1.2       albertel 12903:       {  66, 2376,                      /* character number, location */
                   12904:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   12905:           { 16,   15, 3,49, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12906:             "\x3b\x72\x62\x10\xf2\x52\x72\x42\x72\x52\x53\x6a\x62"
                   12907:             "\x63\x10\xf2\x32\x82\x10\x32\x72\x42\x72\x3b\x52" }  },
1.1       albertel 12908:       /* --- pixel bitmap for cmmi160 char#67 C --- */
1.2       albertel 12909:       {  67, 3341,                      /* character number, location */
                   12910:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   12911:           { 16,   15, 3,47, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12912:             "\x75\x31\x52\x51\x11\x42\x82\x32\xa1\x22\xb1\x22\xdf"
                   12913:             "\x32\xef\x12\xa1\x30\x11\x91\x62\x52\x86\x7b" }  },
1.1       albertel 12914:       /* --- pixel bitmap for cmmi160 char#68 D --- */
1.2       albertel 12915:       {  68, 4473,                      /* character number, location */
                   12916:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   12917:           { 17,   15, 3,47, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12918:             "\x3b\x82\x62\x72\x72\x10\xf1\x52\x82\xf3\x42\x92\xf1"
                   12919:             "\x32\x92\x10\x32\x82\x52\x72\x52\x63\x4b\x6b" }  },
1.1       albertel 12920:       /* --- pixel bitmap for cmmi160 char#69 E --- */
1.2       albertel 12921:       {  69, 5918,                      /* character number, location */
                   12922:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   12923:           { 16,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12924:             "\xf8\xff\x60\xc0\x60\xc0\x60\x80\x60\x88\x30\x04\x30"
                   12925:             "\x04\xf0\x07\x30\x06\x18\x22\x18\x22\x18\x10\x18\x10"
                   12926:             "\x0c\x1c\xff\x0f" }  },
1.1       albertel 12927:       /* --- pixel bitmap for cmmi160 char#70 F --- */
1.2       albertel 12928:       {  70, 7173,                      /* character number, location */
                   12929:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   12930:           { 15,   15, 3,53, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12931:             "\x3c\xf1\x52\x62\x52\x71\x52\x41\x21\xf1\x42\x41\x40"
                   12932:             "\x47\x82\x32\x40\xf1\x32\x41\x50\xf1\x32\xa0\x22\xb7"
                   12933:             "\x82" }  },
1.1       albertel 12934:       /* --- pixel bitmap for cmmi160 char#71 G --- */
1.2       albertel 12935:       {  71, 8354,                      /* character number, location */
                   12936:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   12937:           { 16,   15, 3,53, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12938:             "\x75\x31\x52\x51\x11\x42\x82\x32\xa1\x22\xb1\x22\xdf"
                   12939:             "\x12\xe2\x76\x1f\x22\x92\x30\x11\x92\x52\x62\x77\x11"
                   12940:             "\x42" }  },
1.1       albertel 12941:       /* --- pixel bitmap for cmmi160 char#72 H --- */
1.2       albertel 12942:       {  72, 9547,                      /* character number, location */
                   12943:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   12944:           { 19,   15, 3,45, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12945:             "\x37\x27\xf3\x52\x72\x30\xf1\x42\x72\x40\x4b\x82\x72"
                   12946:             "\x40\xf3\x32\x72\x50\x22\x72\x67\x27\x32" }  },
1.1       albertel 12947:       /* --- pixel bitmap for cmmi160 char#73 I --- */
1.2       albertel 12948:       {  73,10270,                      /* character number, location */
                   12949:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   12950:           { 10,   15, 3,25, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12951:             "\x37\xf3\x52\x30\xf3\x42\x40\xf3\x32\x50\x22\x67\x32" }  },
1.1       albertel 12952:       /* --- pixel bitmap for cmmi160 char#74 J --- */
1.2       albertel 12953:       {  74,11094,                      /* character number, location */
                   12954:          15, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   12955:           { 12,   15, 3,29, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12956:             "\x66\xf3\x82\x20\xf3\x72\x30\xf2\x62\x42\x42\x41\x42"
                   12957:             "\x64\x73" }  },
1.1       albertel 12958:       /* --- pixel bitmap for cmmi160 char#75 K --- */
1.2       albertel 12959:       {  75,12317,                      /* character number, location */
                   12960:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   12961:           { 18,   15, 3,63, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12962:             "\x37\x26\x52\x62\x82\x52\x92\x42\xa2\x31\xb2\x31\xc2"
                   12963:             "\x23\xb2\x11\x12\xb3\x22\xa3\x42\x92\x52\x92\x53\x82"
                   12964:             "\x62\x72\x72\x56\x46\x20" }  },
1.1       albertel 12965:       /* --- pixel bitmap for cmmi160 char#76 L --- */
1.2       albertel 12966:       {  76,13290,                      /* character number, location */
                   12967:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   12968:           { 13,   15, 3,37, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12969:             "\x38\x20\xf3\x52\x60\xf3\x42\x70\xf1\x32\x71\xf1\x32"
                   12970:             "\x61\x10\x22\x53\x1b\x22" }  },
1.1       albertel 12971:       /* --- pixel bitmap for cmmi160 char#77 M --- */
1.2       albertel 12972:       {  77,14616,                      /* character number, location */
                   12973:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   12974:           { 22,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12975:             "\xf8\x00\x3e\x38\xc0\x01\x1a\x70\x80\x06\x1a\xa0\x41"
                   12976:             "\x06\x64\xd0\x00\x19\x32\x40\x86\x0c\x90\x11\x03\x62"
                   12977:             "\x62\x80\x98\x18\x20\x1c\x06\x08\x87\x01\xc3\x30\xf0"
                   12978:             "\x11\x3f\x00" }  },
1.1       albertel 12979:       /* --- pixel bitmap for cmmi160 char#78 N --- */
1.2       albertel 12980:       {  78,15774,                      /* character number, location */
                   12981:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   12982:           { 19,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12983:             "\xf8\xe0\x07\x0f\x0c\x68\x20\x40\x03\x01\x32\x08\x88"
                   12984:             "\x21\x40\x1c\x01\xc2\x08\x10\x46\x40\x60\x01\x02\x0b"
                   12985:             "\x10\x70\x80\x80\x03\x06\x0c\xfc\x40\x00" }  },
1.1       albertel 12986:       /* --- pixel bitmap for cmmi160 char#79 O --- */
1.2       albertel 12987:       {  79,16679,                      /* character number, location */
                   12988:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   12989:           { 15,   15, 3,47, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12990:             "\x66\x73\x42\x52\x72\x32\x92\xf1\x12\xa2\x0f\x22\xb2"
                   12991:             "\x0f\x12\xa2\x12\x92\x32\x72\x43\x42\x85\x71" }  },
1.1       albertel 12992:       /* --- pixel bitmap for cmmi160 char#80 P --- */
1.2       albertel 12993:       {  80,17786,                      /* character number, location */
                   12994:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   12995:           { 16,   15, 3,39, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   12996:             "\x3b\x72\x62\x10\xf2\x52\x72\x42\x72\x52\x62\x68\x82"
                   12997:             "\xa0\xf3\x32\xb0\x22\xc6\xa2" }  },
1.1       albertel 12998:       /* --- pixel bitmap for cmmi160 char#81 Q --- */
1.2       albertel 12999:       {  81,18843,                      /* character number, location */
                   13000:          15, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   13001:           { 15,   19, 3,59, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13002:             "\x66\x73\x42\x52\x72\x32\x92\xf1\x12\xa2\x0f\x22\xb2"
                   13003:             "\x0f\x12\xa2\x12\x92\x31\x23\x32\x43\x33\x85\xe0\xe0"
                   13004:             "\x21\xe4\xb3\x40" }  },
1.1       albertel 13005:       /* --- pixel bitmap for cmmi160 char#82 R --- */
1.2       albertel 13006:       {  82,20156,                      /* character number, location */
                   13007:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   13008:           { 15,   15, 3,47, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13009:             "\x3a\x72\x52\x10\xf2\x52\x62\x42\x62\x52\x52\x67\x82"
                   13010:             "\x42\x30\xf3\x32\x52\x30\x22\x62\x27\x44\x15" }  },
1.1       albertel 13011:       /* --- pixel bitmap for cmmi160 char#83 S --- */
1.2       albertel 13012:       {  83,21253,                      /* character number, location */
                   13013:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   13014:           { 13,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13015:             "\xc0\x13\x86\x41\x20\x0c\x84\x01\x30\x00\x7e\x80\x1f"
                   13016:             "\x80\x07\xc0\x00\x18\x01\x23\x30\x06\x43\x3f\x00" }  },
1.1       albertel 13017:       /* --- pixel bitmap for cmmi160 char#84 T --- */
1.2       albertel 13018:       {  84,22319,                      /* character number, location */
                   13019:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   13020:           { 15,   15, 3,35, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13021:             "\x1e\x02\x42\x51\x1f\x21\x52\x51\x10\xf3\x52\x80\xf3"
                   13022:             "\x42\x90\x32\xa8\x72" }  },
1.1       albertel 13023:       /* --- pixel bitmap for cmmi160 char#85 U --- */
1.2       albertel 13024:       {  85,23289,                      /* character number, location */
                   13025:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   13026:           { 16,   15, 3,41, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13027:             "\x07\x36\x22\x82\x20\xf2\x22\x81\x30\xf3\x12\x81\x4f"
                   13028:             "\x22\x81\x52\x71\x72\x42\x95\x92" }  },
1.1       albertel 13029:       /* --- pixel bitmap for cmmi160 char#86 V --- */
1.2       albertel 13030:       {  86,24213,                      /* character number, location */
                   13031:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   13032:           { 16,   15, 3,55, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13033:             "\x06\x55\x22\x82\x42\x81\x52\x71\x72\x61\x72\x51\x50"
                   13034:             "\xf1\x32\x41\x60\x32\x31\xa2\x22\xa2\x21\xb4\xd3\xd2"
                   13035:             "\xe1\xb4" }  },
1.1       albertel 13036:       /* --- pixel bitmap for cmmi160 char#87 W --- */
1.2       albertel 13037:       {  87,25598,                      /* character number, location */
                   13038:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   13039:           { 22,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13040:             "\x3f\x7e\x3e\x03\x07\xc2\xa0\x41\x30\x68\x10\x0c\x19"
                   13041:             "\x02\x43\x86\xc0\x88\x11\x30\x62\x04\x4c\x98\x00\x1b"
                   13042:             "\x36\xc0\x82\x05\x70\xe0\x00\x1c\x38\x00\x03\x06\xc0"
                   13043:             "\x80\x01\x00" }  },
1.1       albertel 13044:       /* --- pixel bitmap for cmmi160 char#88 X --- */
1.2       albertel 13045:       {  88,26741,                      /* character number, location */
                   13046:          15, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   13047:           { 19,   15, 3,61, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13048:             "\x47\x26\x72\x61\xa3\x41\xc2\x31\xd2\x21\xe0\x13\xe0"
                   13049:             "\x22\xe0\x33\xe0\x14\xe2\x13\xd1\x32\xc1\x42\xb1\x62"
                   13050:             "\x91\x72\x56\x47\x22" }  },
1.1       albertel 13051:       /* --- pixel bitmap for cmmi160 char#89 Y --- */
1.2       albertel 13052:       {  89,27817,                      /* character number, location */
                   13053:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   13054:           { 17,   15, 3,45, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13055:             "\x06\x56\x23\x72\x62\x71\x72\x61\x92\x41\xa2\x31\xb3"
                   13056:             "\x12\xc4\xd3\x90\xf3\x52\xa0\x42\xd6\x91" }  },
1.1       albertel 13057:       /* --- pixel bitmap for cmmi160 char#90 Z --- */
1.2       albertel 13058:       {  90,28906,                      /* character number, location */
                   13059:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   13060:           { 16,   15, 3,49, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13061:             "\x5b\x43\x53\x52\x53\x61\x62\x71\x52\xd2\xd2\xd2\xd2"
                   13062:             "\xd2\x51\x72\x61\x62\x71\x52\x72\x42\x72\x4c\x41" }  },
1.1       albertel 13063:       /* --- pixel bitmap for cmmi160 char#91 \flat --- */
1.2       albertel 13064:       {  91,117698,                     /* character number, location */
                   13065:          17, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   13066:           {  7,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13067:             "\x81\x40\x20\x10\x08\x04\x6e\xc1\x60\x30\x18\x8a\x64"
                   13068:             "\x0a\x03" }  },
1.1       albertel 13069:       /* --- pixel bitmap for cmmi160 char#92 \natural --- */
1.2       albertel 13070:       {  92,118457,                     /* character number, location */
                   13071:          15, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   13072:           {  7,   19, 3,26, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13073:             "\xf3\x01\x61\x37\x21\x0f\x71\x51\x01\x37\x21\xf2\x61" }  },
1.1       albertel 13074:       /* --- pixel bitmap for cmmi160 char#93 \sharp --- */
1.2       albertel 13075:       {  93,119318,                     /* character number, location */
                   13076:          15, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   13077:           {  7,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13078:             "\x22\x91\x48\x24\x7f\x89\x44\x22\x91\x48\x24\x12\xc9"
                   13079:             "\x5f\x22\x91\x08" }  },
1.1       albertel 13080:       /* --- pixel bitmap for cmmi160 char#94 \smile --- */
1.2       albertel 13081:       {  94,120244,                     /* character number, location */
                   13082:           9, 1,    3, 1,      /* topleft row,col, and botleft row,col */
                   13083:           { 20,    6, 3,27, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13084:             "\x01\xe0\x41\x11\xe0\x21\x31\xe1\x51\xc1\x73\x63\xb6"
                   13085:             "\x77" }  },
1.1       albertel 13086:       /* --- pixel bitmap for cmmi160 char#95 \frown --- */
1.2       albertel 13087:       {  95,121116,                     /* character number, location */
                   13088:           9, 1,    3, 1,      /* topleft row,col, and botleft row,col */
                   13089:           { 20,    6, 3,26, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13090:             "\x76\xb3\x63\x71\xc1\x51\xe1\x31\xe0\x21\x11\xe0\x41" }  },
1.1       albertel 13091:       /* --- pixel bitmap for cmmi160 char#96 \ell --- */
1.2       albertel 13092:       {  96,94488,                      /* character number, location */
                   13093:          15,-1,    0,-1,      /* topleft row,col, and botleft row,col */
                   13094:           {  9,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13095:             "\x80\x81\x02\x05\x09\x0a\x12\x14\x28\x30\x30\x20\x60"
                   13096:             "\xa0\x00\x22\x3c" }  },
1.1       albertel 13097:       /* --- pixel bitmap for cmmi160 char#97 a --- */
1.2       albertel 13098:       {  97,29842,                      /* character number, location */
                   13099:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   13100:           { 10,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13101:             "\xb8\x10\x23\x8c\x30\x41\x04\x11\x64\x98\x51\x39\x03" }  },
1.1       albertel 13102:       /* --- pixel bitmap for cmmi160 char#98 b --- */
1.2       albertel 13103:       {  98,30706,                      /* character number, location */
                   13104:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   13105:           {  8,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13106:             "\x0e\x04\x04\x04\x04\x72\x8e\x82\x82\x81\x81\x81\x41"
                   13107:             "\x22\x1c" }  },
1.1       albertel 13108:       /* --- pixel bitmap for cmmi160 char#99 c --- */
1.2       albertel 13109:       {  99,31537,                      /* character number, location */
                   13110:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   13111:           {  9,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13112:             "\xf0\x10\x12\x14\x10\x20\x40\x80\x80\xc2\x78\x00" }  },
1.1       albertel 13113:       /* --- pixel bitmap for cmmi160 char#100 d --- */
1.2       albertel 13114:       { 100,32501,                      /* character number, location */
                   13115:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   13116:           { 10,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13117:             "\x80\x03\x04\x10\x40\x00\xe1\x42\x8c\x30\xc2\x04\x11"
                   13118:             "\x44\x90\x61\x46\xe5\x0c" }  },
1.1       albertel 13119:       /* --- pixel bitmap for cmmi160 char#101 e --- */
1.2       albertel 13120:       { 101,33342,                      /* character number, location */
                   13121:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   13122:           {  9,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13123:             "\xf0\x18\x0a\x14\xf4\x27\x40\x80\x80\xc2\x78\x00" }  },
1.1       albertel 13124:       /* --- pixel bitmap for cmmi160 char#102 f --- */
1.2       albertel 13125:       { 102,34486,                      /* character number, location */
                   13126:          15, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   13127:           { 10,   19, 3,37, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13128:             "\x73\x61\x21\xf2\x61\x30\x44\x20\xf5\x51\x40\xf3\x41"
                   13129:             "\x50\x31\x61\x21\x72\x72" }  },
1.1       albertel 13130:       /* --- pixel bitmap for cmmi160 char#103 g --- */
1.2       albertel 13131:       { 103,35449,                      /* character number, location */
                   13132:          10, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   13133:           { 10,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13134:             "\xe0\x62\x4c\x30\xc1\x02\x09\x24\x90\x60\xc4\xe0\x02"
                   13135:             "\x08\x20\x40\xfc\x00" }  },
1.1       albertel 13136:       /* --- pixel bitmap for cmmi160 char#104 h --- */
1.2       albertel 13137:       { 104,36372,                      /* character number, location */
                   13138:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   13139:           { 11,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13140:             "\x1c\x40\x00\x02\x10\x80\x00\x72\x70\x84\x21\x04\x31"
                   13141:             "\x84\x20\x04\x29\xc4\x20\x05\x06" }  },
1.1       albertel 13142:       /* --- pixel bitmap for cmmi160 char#105 i --- */
1.2       albertel 13143:       { 105,37238,                      /* character number, location */
                   13144:          16, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   13145:           {  5,   16, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13146:             "\x10\x00\x00\x80\x49\xa9\x10\x22\xa5\x32" }  },
1.1       albertel 13147:       /* --- pixel bitmap for cmmi160 char#106 j --- */
1.2       albertel 13148:       { 106,38157,                      /* character number, location */
                   13149:          16,-1,   -4,-1,      /* topleft row,col, and botleft row,col */
                   13150:           { 10,   20, 3,39, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13151:             "\x91\xf4\xa0\x62\x71\x21\x10\xf1\x41\x31\x10\xf3\x71"
                   13152:             "\x20\xf3\x61\x30\x51\x45\x51" }  },
1.1       albertel 13153:       /* --- pixel bitmap for cmmi160 char#107 k --- */
1.2       albertel 13154:       { 107,39164,                      /* character number, location */
                   13155:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   13156:           { 10,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13157:             "\x1c\x20\x80\x00\x02\x08\x10\x4e\x24\x09\x14\x78\x20"
                   13158:             "\x82\x90\x42\x06\x15\x1c" }  },
1.1       albertel 13159:       /* --- pixel bitmap for cmmi160 char#108 l --- */
1.2       albertel 13160:       { 108,39890,                      /* character number, location */
                   13161:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   13162:           {  4,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13163:             "\x4e\x44\x24\x22\x12\x91\x59\x03" }  },
1.1       albertel 13164:       /* --- pixel bitmap for cmmi160 char#109 m --- */
1.2       albertel 13165:       { 109,41113,                      /* character number, location */
                   13166:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   13167:           { 17,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13168:             "\xc6\x71\x72\x1c\x65\x18\x4a\x10\xc4\x30\x84\x20\x08"
                   13169:             "\x41\x50\x82\x90\x82\xa0\x04\x81\x01" }  },
1.1       albertel 13170:       /* --- pixel bitmap for cmmi160 char#110 n --- */
1.2       albertel 13171:       { 110,42148,                      /* character number, location */
                   13172:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   13173:           { 11,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13174:             "\xc6\xc9\x51\x86\x12\xc4\x10\x82\x10\x94\x90\x82\x12"
                   13175:             "\x18" }  },
1.1       albertel 13176:       /* --- pixel bitmap for cmmi160 char#111 o --- */
1.2       albertel 13177:       { 111,42874,                      /* character number, location */
                   13178:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   13179:           {  9,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13180:             "\xf0\x10\x12\x14\x18\x30\x60\xc0\x40\x42\x78\x00" }  },
1.1       albertel 13181:       /* --- pixel bitmap for cmmi160 char#112 p --- */
1.2       albertel 13182:       { 112,43836,                      /* character number, location */
                   13183:          10, 0,   -4, 0,      /* topleft row,col, and botleft row,col */
                   13184:           { 10,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13185:             "\xcc\xc9\x28\xa1\x84\x08\x22\x88\x20\x42\x8c\xd0\x41"
                   13186:             "\x00\x01\x02\x3c\x00" }  },
1.1       albertel 13187:       /* --- pixel bitmap for cmmi160 char#113 q --- */
1.2       albertel 13188:       { 113,44763,                      /* character number, location */
                   13189:          10, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   13190:           {  9,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13191:             "\x70\x18\x0b\x16\x1c\x28\x50\xa0\x60\x62\xb8\x00\x01"
                   13192:             "\x02\x02\x1f" }  },
1.1       albertel 13193:       /* --- pixel bitmap for cmmi160 char#114 r --- */
1.2       albertel 13194:       { 114,45650,                      /* character number, location */
                   13195:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   13196:           {  8,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13197:             "\xe6\x99\x09\x09\x0c\x04\x04\x04\x02\x02" }  },
1.1       albertel 13198:       /* --- pixel bitmap for cmmi160 char#115 s --- */
1.2       albertel 13199:       { 115,46586,                      /* character number, location */
                   13200:          10, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   13201:           {  8,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13202:             "\x78\x86\x82\x02\x1c\x20\x40\x41\x21\x1e" }  },
1.1       albertel 13203:       /* --- pixel bitmap for cmmi160 char#116 t --- */
1.2       albertel 13204:       { 116,47330,                      /* character number, location */
                   13205:          14, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   13206:           {  7,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13207:             "\x10\x08\x04\xf2\x47\x20\x10\x04\x02\x91\x44\xe2\x00" }  },
1.1       albertel 13208:       /* --- pixel bitmap for cmmi160 char#117 u --- */
1.2       albertel 13209:       { 117,48372,                      /* character number, location */
                   13210:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   13211:           { 11,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13212:             "\x0e\x49\x48\x42\x12\x42\x08\x42\x10\x92\x98\xc4\xc2"
                   13213:             "\x0d" }  },
1.1       albertel 13214:       /* --- pixel bitmap for cmmi160 char#118 v --- */
1.2       albertel 13215:       { 118,49265,                      /* character number, location */
                   13216:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   13217:           {  9,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13218:             "\x0e\x13\x26\x4c\x48\x88\x10\x21\x22\x44\x70\x00" }  },
1.1       albertel 13219:       /* --- pixel bitmap for cmmi160 char#119 w --- */
1.2       albertel 13220:       { 119,50445,                      /* character number, location */
                   13221:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   13222:           { 14,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13223:             "\x0e\x61\x42\x98\x10\x26\x84\x84\x10\x21\x44\x08\x11"
                   13224:             "\x23\xc4\x08\xce\x01" }  },
1.1       albertel 13225:       /* --- pixel bitmap for cmmi160 char#120 x --- */
1.2       albertel 13226:       { 120,51677,                      /* character number, location */
                   13227:          10, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   13228:           { 12,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13229:             "\x30\x8f\x8c\x44\x40\x04\x20\x00\x02\x20\x04\x42\x31"
                   13230:             "\xe2\x1c" }  },
1.1       albertel 13231:       /* --- pixel bitmap for cmmi160 char#121 y --- */
1.2       albertel 13232:       { 121,52775,                      /* character number, location */
                   13233:          10, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   13234:           {  9,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13235:             "\x06\x0b\x16\x2c\x28\x48\x90\x20\x61\x62\xb8\x00\x01"
                   13236:             "\x11\xc1\x01" }  },
1.1       albertel 13237:       /* --- pixel bitmap for cmmi160 char#122 z --- */
1.2       albertel 13238:       { 122,53679,                      /* character number, location */
                   13239:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   13240:           {  9,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13241:             "\x38\x89\x13\x02\x02\x02\x02\x42\x82\x8e\xe2\x00" }  },
1.1       albertel 13242:       /* --- pixel bitmap for cmmi160 char#123 \imath --- */
1.2       albertel 13243:       { 123,95234,                      /* character number, location */
                   13244:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   13245:           {  5,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13246:             "\x26\xa5\x42\x88\x94\xca\x00" }  },
1.1       albertel 13247:       /* --- pixel bitmap for cmmi160 char#124 \jmath --- */
1.2       albertel 13248:       { 124,96037,                      /* character number, location */
                   13249:          10,-1,   -4,-1,      /* topleft row,col, and botleft row,col */
                   13250:           {  9,   14, 3,29, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13251:             "\x62\x61\x21\xf1\x41\x31\xf3\x71\x10\xf3\x61\x20\x51"
                   13252:             "\x35\x41" }  },
1.1       albertel 13253:       /* --- pixel bitmap for cmmi160 char#125 \wp --- */
1.2       albertel 13254:       { 125,97156,                      /* character number, location */
                   13255:          10, 2,   -4, 2,      /* topleft row,col, and botleft row,col */
                   13256:           { 12,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13257:             "\x08\x40\x78\x62\x28\x81\x09\x58\x80\x03\x28\x40\x15"
                   13258:             "\x92\x1e\x09\x10\x01\x09\x60\x00" }  },
1.1       albertel 13259:       /* --- pixel bitmap for cmmi160 char#126 \vec --- */
1.2       albertel 13260:       { 126,97786,                      /* character number, location */
                   13261:          15, 4,   11, 4,      /* topleft row,col, and botleft row,col */
                   13262:           {  9,    4, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13263:             "\x80\xfe\x03\x03\x02" }  },
1.1       albertel 13264:       /* --- pixel bitmap for cmmi160 char#127 (noname) --- */
1.2       albertel 13265:       { 127,98324,                      /* character number, location */
                   13266:          14, 6,   12, 6,      /* topleft row,col, and botleft row,col */
                   13267:           {  8,    2, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13268:             "\x7e\x81" }  },
1.1       albertel 13269:       /* --- trailer  --- */
1.2       albertel 13270:       { -99, -999,  0,0,0,0, { 0,0,0,0, (pixbyte *)"\0" }  }
1.1       albertel 13271:    } ;
                   13272: 
                   13273: 
1.2       albertel 13274: /* --- size=5 for .180gf ---
                   13275:  * mf '\mode=preview; mag=magstep(-14.65037297372839890542); input cmmi10'
                   13276:  * --------------------------------------------------------------------- */
1.1       albertel 13277: /* --- fontdef for cmmi180 --- */
                   13278: static	chardef  cmmi180[] =
                   13279:    {
                   13280:       /* --- pixel bitmap for cmmi180 char#0 \Gamma --- */
1.2       albertel 13281:       {   0,55074,                      /* character number, location */
                   13282:          17, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   13283:           { 18,   17, 3,37, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13284:             "\x4e\x72\x72\x72\x81\xf2\x62\x91\x62\xa0\xf3\x52\xb0"
                   13285:             "\xf3\x42\xc0\x32\xd8\xa2" }  },
1.1       albertel 13286:       /* --- pixel bitmap for cmmi180 char#1 \Delta --- */
1.2       albertel 13287:       {   1,55985,                      /* character number, location */
                   13288:          18, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   13289:           { 19,   18, 3,72, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13290:             "\xd2\x40\xf1\xc3\x40\xb1\x12\xe1\x23\x30\xf1\x91\x42"
                   13291:             "\x30\x81\x52\xa1\x63\x20\xf1\x61\x82\x20\x51\x92\x61"
                   13292:             "\xa3\x42\xb2\x41\xc2\x31\xd2\x2e\x0e\x09" }  },
1.1       albertel 13293:       /* --- pixel bitmap for cmmi180 char#2 \Theta --- */
1.2       albertel 13294:       {   2,57168,                      /* character number, location */
                   13295:          18, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   13296:           { 17,   19, 3,67, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13297:             "\x86\x92\x52\x72\x72\x51\xa2\x31\xb2\x22\xb2\x12\xd1"
                   13298:             "\x12\xc2\x0f\x22\x29\x22\x0f\x12\xc2\x1f\x12\xb2\x20"
                   13299:             "\x11\xa2\x42\x82\x62\x52\xa5\x8e" }  },
1.1       albertel 13300:       /* --- pixel bitmap for cmmi180 char#3 \Lambda --- */
1.2       albertel 13301:       {   3,58134,                      /* character number, location */
                   13302:          18, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   13303:           { 15,   18, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13304:             "\x00\x18\x00\x0c\x00\x07\x80\x03\xa0\x01\xc8\x00\x64"
                   13305:             "\x00\x31\x80\x18\x20\x0c\x10\x06\x04\x03\x82\x81\xc0"
                   13306:             "\x60\x60\x10\x30\x0c\x98\x0f\x3f" }  },
1.1       albertel 13307:       /* --- pixel bitmap for cmmi180 char#4 \Xi --- */
1.2       albertel 13308:       {   4,59545,                      /* character number, location */
                   13309:          17, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   13310:           { 19,   17, 3,59, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13311:             "\xf1\x4e\x01\x41\xd1\x31\xd1\x10\xf1\xe0\x50\x61\x71"
                   13312:             "\x40\xf1\x59\x50\x51\x71\x50\xf2\xe0\x50\xf1\x11\xd1"
                   13313:             "\x3f\x1e\x01\x41" }  },
1.1       albertel 13314:       /* --- pixel bitmap for cmmi180 char#5 \Pi --- */
1.2       albertel 13315:       {   5,60754,                      /* character number, location */
                   13316:          17, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   13317:           { 23,   17, 3,45, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13318:             "\x4e\x05\xf1\x72\x92\x30\xf3\x62\x92\x40\xf3\x52\x92"
                   13319:             "\x50\xf3\x42\x92\x60\x32\x92\x78\x38\x40" }  },
1.1       albertel 13320:       /* --- pixel bitmap for cmmi180 char#6 \Sigma --- */
1.2       albertel 13321:       {   6,61941,                      /* character number, location */
                   13322:          17, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   13323:           { 19,   17, 3,67, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13324:             "\x4e\x01\x52\xa2\x52\xb1\x53\xa1\x62\xa1\x63\x91\xf1"
                   13325:             "\x72\xa0\x82\xe0\x31\xe0\x31\xe0\x31\x91\x62\xa1\x51"
                   13326:             "\xb1\x51\xc1\x41\xb3\x3e\x01\x45" }  },
1.1       albertel 13327:       /* --- pixel bitmap for cmmi180 char#7 \Upsilon --- */
1.2       albertel 13328:       {   7,63033,                      /* character number, location */
                   13329:          18, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   13330:           { 18,   18, 3,57, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13331:             "\x34\x63\x46\x42\x12\x22\x42\x21\x42\x11\x52\x11\x53"
                   13332:             "\x71\x11\x51\x10\xf2\x82\x80\xf3\x72\x90\xf3\x62\xa0"
                   13333:             "\x52\xd8\x81" }  },
1.1       albertel 13334:       /* --- pixel bitmap for cmmi180 char#8 \Phi --- */
1.2       albertel 13335:       {   8,64071,                      /* character number, location */
                   13336:          17, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   13337:           { 16,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13338:             "\xc0\x3f\x00\x06\x00\x06\x00\x03\xe0\x1f\x18\x73\x06"
                   13339:             "\xc3\x86\xc1\x83\xc1\x83\xc1\x83\x61\xce\x18\xf8\x07"
                   13340:             "\xc0\x00\xc0\x00\x60\x00\xfc\x03" }  },
1.1       albertel 13341:       /* --- pixel bitmap for cmmi180 char#9 \Psi --- */
1.2       albertel 13342:       {   9,65184,                      /* character number, location */
                   13343:          17, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   13344:           { 17,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13345:             "\xc0\x3f\x00\x0c\x00\x18\x38\x18\xcc\x30\x8c\x61\x0c"
                   13346:             "\xc3\x18\xc3\x18\x86\x31\x0c\x33\x30\x66\xc0\x76\x00"
                   13347:             "\x3f\x00\x18\x00\x30\x00\x30\x00\xfc\x03\x00" }  },
1.1       albertel 13348:       /* --- pixel bitmap for cmmi180 char#10 \Omega --- */
1.2       albertel 13349:       {  10,66407,                      /* character number, location */
                   13350:          18, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   13351:           { 18,   18, 3,75, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13352:             "\x86\xa3\x52\x72\x82\x52\xa2\x32\xb2\xf2\x22\xc2\x22"
                   13353:             "\xb2\x10\xf1\x22\xa2\x20\x31\x92\x62\x72\x81\x62\x51"
                   13354:             "\x31\x61\x31\x21\x31\x51\x31\x35\x46\x35\x45\x42" }  },
1.1       albertel 13355:       /* --- pixel bitmap for cmmi180 char#11 \alpha --- */
1.2       albertel 13356:       {  11,67457,                      /* character number, location */
                   13357:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   13358:           { 14,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13359:             "\xe0\x01\xc6\xc8\x60\x1a\x98\x06\xd6\x80\x35\xe0\x0c"
                   13360:             "\x18\x02\x86\x61\xc5\xc7\x01" }  },
1.1       albertel 13361:       /* --- pixel bitmap for cmmi180 char#12 \beta --- */
1.2       albertel 13362:       {  12,68512,                      /* character number, location */
                   13363:          17, 1,   -5, 1,      /* topleft row,col, and botleft row,col */
                   13364:           { 13,   22, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13365:             "\x00\x07\x18\x83\x40\x10\x08\x81\x21\x10\xf4\x41\x3e"
                   13366:             "\x08\x0c\x81\x21\x30\x02\x46\xc0\x08\x18\x81\x51\x1c"
1.1       albertel 13367:             "\xf2\x40\x00\x08\x80\x00\x10\x00\x02\x00" }  },
                   13368:       /* --- pixel bitmap for cmmi180 char#13 \gamma --- */
1.2       albertel 13369:       {  13,69437,                      /* character number, location */
                   13370:          11, 0,   -6, 0,      /* topleft row,col, and botleft row,col */
                   13371:           { 14,   17, 3,51, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13372:             "\x33\x71\x16\x51\x22\x32\x41\x11\x61\x31\xa1\x21\x20"
                   13373:             "\xf1\x81\x11\x30\xf2\x82\x40\xf2\x81\x50\xf3\x71\x61" }  },
1.1       albertel 13374:       /* --- pixel bitmap for cmmi180 char#14 \delta --- */
1.2       albertel 13375:       {  14,70398,                      /* character number, location */
                   13376:          18, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   13377:           { 10,   18, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13378:             "\x40\x80\x0f\x21\x04\x30\x80\x01\x06\x38\xd8\x31\x66"
                   13379:             "\x98\x61\x83\x0d\x36\x98\x20\x46\xf0\x00" }  },
1.1       albertel 13380:       /* --- pixel bitmap for cmmi180 char#15 \epsilon --- */
1.2       albertel 13381:       {  15,71266,                      /* character number, location */
                   13382:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   13383:           {  9,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13384:             "\xe0\x31\x30\x30\xe0\x67\xc0\x80\x01\x06\x08\xe1\x01" }  },
1.1       albertel 13385:       /* --- pixel bitmap for cmmi180 char#16 \zeta --- */
1.2       albertel 13386:       {  16,72200,                      /* character number, location */
                   13387:          17, 0,   -5, 0,      /* topleft row,col, and botleft row,col */
                   13388:           { 10,   22, 3,47, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13389:             "\xf1\x71\x20\x73\x55\x42\x72\x81\x82\x60\xf2\x12\x7f"
                   13390:             "\x22\x80\x12\x83\x85\x74\x83\x82\x81\x63\x31" }  },
1.1       albertel 13391:       /* --- pixel bitmap for cmmi180 char#17 \eta --- */
1.2       albertel 13392:       {  17,73117,                      /* character number, location */
                   13393:          11, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   13394:           { 11,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13395:             "\xc6\x6b\x71\x87\x1b\xcc\x60\x83\x19\xcc\x60\x06\x1b"
                   13396:             "\xcc\x60\x00\x03\x18\x60\x00\x03\x18\x40\x00" }  },
1.1       albertel 13397:       /* --- pixel bitmap for cmmi180 char#18 \theta --- */
1.2       albertel 13398:       {  18,73887,                      /* character number, location */
                   13399:          17, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   13400:           { 10,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13401:             "\xe0\x40\x86\x11\xc3\x04\x1b\x6c\xf0\x60\xff\x0d\x36"
                   13402:             "\xd8\x30\xc1\x84\x31\xc2\x04\x0e\x00" }  },
1.1       albertel 13403:       /* --- pixel bitmap for cmmi180 char#19 \iota --- */
1.2       albertel 13404:       {  19,74536,                      /* character number, location */
                   13405:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   13406:           {  7,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13407:             "\x08\x06\x83\xc1\x30\x18\x8c\xa3\x99\x03" }  },
1.1       albertel 13408:       /* --- pixel bitmap for cmmi180 char#20 \kappa --- */
1.2       albertel 13409:       {  20,75444,                      /* character number, location */
                   13410:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   13411:           { 12,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13412:             "\x08\xc6\x58\x4c\xc0\x02\x1c\xe0\x0f\x86\x61\x98\x86"
                   13413:             "\x39\x58\x03\x03" }  },
1.1       albertel 13414:       /* --- pixel bitmap for cmmi180 char#21 \lambda --- */
1.2       albertel 13415:       {  21,76279,                      /* character number, location */
                   13416:          17, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   13417:           { 13,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13418:             "\x38\x00\x0c\x80\x03\x60\x00\x0c\x80\x03\x60\x00\x0c"
                   13419:             "\x00\x03\x70\x00\x1d\x10\x03\x63\x30\x1c\x03\x33\x60"
                   13420:             "\x02\x18" }  },
1.1       albertel 13421:       /* --- pixel bitmap for cmmi180 char#22 \mu --- */
1.2       albertel 13422:       {  22,77291,                      /* character number, location */
                   13423:          11, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   13424:           { 13,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13425:             "\x10\x08\x83\x61\x30\x0c\x86\xc1\x18\x0c\x83\x61\xb0"
                   13426:             "\x0c\xd7\xf1\xd9\x31\x03\x60\x00\x06\xc0\x00\x18\x00"
                   13427:             "\x01\x00" }  },
1.1       albertel 13428:       /* --- pixel bitmap for cmmi180 char#23 \nu --- */
1.2       albertel 13429:       {  23,78064,                      /* character number, location */
                   13430:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   13431:           { 12,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13432:             "\x1e\xc8\xc0\x0c\xcc\xc0\x0c\x66\x30\x86\x61\x0c\x66"
                   13433:             "\xb0\x01\x07\x00" }  },
1.1       albertel 13434:       /* --- pixel bitmap for cmmi180 char#24 \xi --- */
1.2       albertel 13435:       {  24,79214,                      /* character number, location */
                   13436:          17, 0,   -5, 0,      /* topleft row,col, and botleft row,col */
                   13437:           { 10,   22, 3,53, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13438:             "\xf1\x61\x30\x55\x42\x13\x32\x50\xf2\x22\x60\xf1\x36"
                   13439:             "\x10\x21\x82\x7f\x22\x83\x84\x75\x74\x92\x41\x31\x63"
                   13440:             "\x32" }  },
1.1       albertel 13441:       /* --- pixel bitmap for cmmi180 char#25 \pi --- */
1.2       albertel 13442:       {  25,80132,                      /* character number, location */
                   13443:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   13444:           { 13,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13445:             "\xfc\xdf\xff\xcf\x84\x88\x00\x11\x30\x03\x62\x40\x0c"
                   13446:             "\x8c\x81\x71\x10\x04" }  },
1.1       albertel 13447:       /* --- pixel bitmap for cmmi180 char#26 \rho --- */
1.2       albertel 13448:       {  26,80974,                      /* character number, location */
                   13449:          11, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   13450:           { 12,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13451:             "\xc0\x03\x66\x30\x84\xc1\x18\xcc\x60\x0c\xc6\x60\x0c"
                   13452:             "\xe3\x18\x76\x60\x00\x06\x30\x00\x03\x30\x00\x01\x00" }  },
1.1       albertel 13453:       /* --- pixel bitmap for cmmi180 char#27 \sigma --- */
1.2       albertel 13454:       {  27,81880,                      /* character number, location */
                   13455:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   13456:           { 13,   11, 3,33, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13457:             "\x58\x3a\x22\x42\x42\x52\x42\x61\x3f\x22\x62\x32\x52"
                   13458:             "\x52\x32\x74\x72" }  },
1.1       albertel 13459:       /* --- pixel bitmap for cmmi180 char#28 \tau --- */
1.2       albertel 13460:       {  28,82669,                      /* character number, location */
                   13461:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   13462:           { 11,   11, 3,29, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13463:             "\x29\x1c\x31\x51\x32\x50\xf1\x41\x60\xf2\x32\x60\xf1"
                   13464:             "\x22\x72" }  },
1.1       albertel 13465:       /* --- pixel bitmap for cmmi180 char#29 \upsilon --- */
1.2       albertel 13466:       {  29,83570,                      /* character number, location */
                   13467:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   13468:           { 11,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13469:             "\x0e\x54\x70\x03\x1b\xc8\x40\x03\x19\xc8\x40\x06\x21"
                   13470:             "\x04\x1e\x00" }  },
1.1       albertel 13471:       /* --- pixel bitmap for cmmi180 char#30 \phi --- */
1.2       albertel 13472:       {  30,84442,                      /* character number, location */
                   13473:          17, 1,   -5, 1,      /* topleft row,col, and botleft row,col */
                   13474:           { 14,   22, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13475:             "\x00\x02\x80\x00\x20\x00\x04\x00\x01\x40\x00\x7e\xe0"
                   13476:             "\x32\x8c\x98\x21\x64\x08\x0f\x61\x43\xd8\x10\x62\x44"
                   13477:             "\x90\x0c\xf8\x00\x08\x00\x02\x40\x00\x10\x00\x04\x00" }  },
1.1       albertel 13478:       /* --- pixel bitmap for cmmi180 char#31 \chi --- */
1.2       albertel 13479:       {  31,85513,                      /* character number, location */
                   13480:          11, 0,   -5, 0,      /* topleft row,col, and botleft row,col */
                   13481:           { 14,   16, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13482:             "\x1c\xa0\x0c\x08\x03\x81\x21\x60\x04\xb8\x00\x1c\x00"
                   13483:             "\x03\xc0\x00\x68\x00\x1a\x40\x0e\x08\x03\xc1\x20\x60"
                   13484:             "\x05\x30" }  },
1.1       albertel 13485:       /* --- pixel bitmap for cmmi180 char#32 \psi --- */
1.2       albertel 13486:       {  32,86592,                      /* character number, location */
                   13487:          17, 1,   -5, 1,      /* topleft row,col, and botleft row,col */
                   13488:           { 14,   22, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13489:             "\x00\x04\x00\x01\x20\x00\x08\x00\x02\x80\xe0\x10\x2a"
                   13490:             "\xc4\x0d\x61\x43\xc8\x08\x1a\x42\x86\x90\x21\x62\x44"
                   13491:             "\x30\x09\xf0\x01\x10\x00\x02\x80\x00\x20\x00\x08\x00" }  },
1.1       albertel 13492:       /* --- pixel bitmap for cmmi180 char#33 \omega --- */
1.2       albertel 13493:       {  33,87675,                      /* character number, location */
                   13494:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   13495:           { 14,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13496:             "\x0c\x20\x01\x6c\x00\x0a\x86\x82\x61\x30\x14\x0c\x0d"
                   13497:             "\x63\xf7\x8c\xef\xc3\x31\x00" }  },
1.1       albertel 13498:       /* --- pixel bitmap for cmmi180 char#34 \varepsilon --- */
1.2       albertel 13499:       {  34,88656,                      /* character number, location */
                   13500:          12, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   13501:           { 10,   13, 3,31, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13502:             "\x45\x47\x22\x51\xf1\x11\x80\x25\x46\x3f\x21\x91\x61"
                   13503:             "\x36\x54\x42" }  },
1.1       albertel 13504:       /* --- pixel bitmap for cmmi180 char#35 \vartheta --- */
1.2       albertel 13505:       {  35,89687,                      /* character number, location */
                   13506:          17, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   13507:           { 12,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13508:             "\x80\x03\x64\x40\x04\xc2\x20\x0c\xc4\x86\xdc\x70\x0d"
                   13509:             "\xde\x60\x0c\x66\x30\x06\x63\x18\x86\x60\x04\x3c\x00" }  },
1.1       albertel 13510:       /* --- pixel bitmap for cmmi180 char#36 \varpi --- */
1.2       albertel 13511:       {  36,90934,                      /* character number, location */
                   13512:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   13513:           { 19,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13514:             "\xfc\xff\xf7\xff\xff\x04\x80\x12\x00\x84\x40\x20\x02"
                   13515:             "\x81\x10\x08\x84\xe0\x30\x84\xc7\xe0\xe7\x03\x0e\x0f"
                   13516:             "\x00" }  },
1.1       albertel 13517:       /* --- pixel bitmap for cmmi180 char#37 \varrho --- */
1.2       albertel 13518:       {  37,91841,                      /* character number, location */
                   13519:          11, 2,   -5, 2,      /* topleft row,col, and botleft row,col */
                   13520:           { 11,   16, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13521:             "\xe0\x81\x19\x86\x18\xcc\x60\x83\x19\xcc\x60\x86\x29"
                   13522:             "\x46\x0e\x02\x10\x80\x3f\xf8\x03\x10" }  },
1.1       albertel 13523:       /* --- pixel bitmap for cmmi180 char#38 \varsigma --- */
1.2       albertel 13524:       {  38,92668,                      /* character number, location */
                   13525:          11, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   13526:           {  9,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13527:             "\xf0\x19\x18\x18\x30\x60\xc0\x01\x07\x3c\xe0\x00\x01"
                   13528:             "\x82\x03" }  },
1.1       albertel 13529:       /* --- pixel bitmap for cmmi180 char#39 \varphi --- */
1.2       albertel 13530:       {  39,93599,                      /* character number, location */
                   13531:          11, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   13532:           { 14,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13533:             "\x08\x0e\xc1\x27\x18\x0b\x82\x42\x60\x10\x14\x04\x89"
                   13534:             "\x20\x26\x06\xff\x00\x1f\xc0\x00\x10\x00\x04\x80\x01"
                   13535:             "\x60\x00\x08\x00" }  },
1.1       albertel 13536:       /* --- pixel bitmap for cmmi180 char#40 \leftharpoonup --- */
1.2       albertel 13537:       {  40,109405,                     /* character number, location */
                   13538:          13, 1,    6, 1,      /* topleft row,col, and botleft row,col */
                   13539:           { 23,    7, 3,30, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13540:             "\x61\xe0\x71\xe0\x30\xf1\x41\xe0\x40\x31\xe0\x62\xe0"
                   13541:             "\x6e\x09" }  },
1.1       albertel 13542:       /* --- pixel bitmap for cmmi180 char#41 \leftharpoondown --- */
1.2       albertel 13543:       {  41,110433,                     /* character number, location */
                   13544:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   13545:           { 23,    7, 3,31, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13546:             "\x0e\x09\x12\xe0\x91\xe0\x50\xf1\x41\xe0\x40\x51\xe0"
                   13547:             "\x91\xe0\x22" }  },
1.1       albertel 13548:       /* --- pixel bitmap for cmmi180 char#42 \rightharpoonup --- */
1.2       albertel 13549:       {  42,111459,                     /* character number, location */
                   13550:          13, 1,    6, 1,      /* topleft row,col, and botleft row,col */
                   13551:           { 23,    7, 3,30, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13552:             "\xe0\x21\xe0\x91\x50\xf1\xe0\x41\x40\xe0\x51\xe0\x92"
                   13553:             "\x1e\x09" }  },
1.1       albertel 13554:       /* --- pixel bitmap for cmmi180 char#43 \rightharpoondown --- */
1.2       albertel 13555:       {  43,112488,                     /* character number, location */
                   13556:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   13557:           { 23,    7, 3,31, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13558:             "\x0e\x09\xe0\x62\xe0\x61\x30\xf1\xe0\x41\x40\xe0\x31"
                   13559:             "\xe0\x71\x62" }  },
1.1       albertel 13560:       /* --- pixel bitmap for cmmi180 char#44 ` --- */
1.2       albertel 13561:       {  44,112909,                     /* character number, location */
                   13562:          13, 1,    6, 1,      /* topleft row,col, and botleft row,col */
                   13563:           {  5,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13564:             "\x5c\x84\x10\x04\x07" }  },
1.1       albertel 13565:       /* --- pixel bitmap for cmmi180 char#45 ' --- */
1.2       albertel 13566:       {  45,113331,                     /* character number, location */
                   13567:          13, 1,    6, 1,      /* topleft row,col, and botleft row,col */
                   13568:           {  5,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13569:             "\x07\x41\x08\xd1\x01" }  },
1.1       albertel 13570:       /* --- pixel bitmap for cmmi180 char#46 \triangleright --- */
1.2       albertel 13571:       {  46,113870,                     /* character number, location */
                   13572:          13, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   13573:           { 12,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13574:             "\x01\x70\x00\x19\x10\x06\x81\x11\x60\x01\x18\x60\x81"
                   13575:             "\x11\x06\x19\x70\x00\x01\x00" }  },
1.1       albertel 13576:       /* --- pixel bitmap for cmmi180 char#47 \triangleleft --- */
1.2       albertel 13577:       {  47,114438,                     /* character number, location */
                   13578:          13, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   13579:           { 12,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13580:             "\x00\x08\xe0\x80\x09\x86\x18\x68\x80\x01\x68\x80\x18"
                   13581:             "\x08\x86\x80\x09\xe0\x00\x08" }  },
1.1       albertel 13582:       /* --- pixel bitmap for cmmi180 char#48 \0 --- */
1.2       albertel 13583:       {  48,99908,                      /* character number, location */
                   13584:          12, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   13585:           { 10,   13, 3,27, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13586:             "\x34\x42\x42\x21\x61\x1f\x62\x62\x11\x61\x22\x42\x44"
                   13587:             "\x32" }  },
1.1       albertel 13588:       /* --- pixel bitmap for cmmi180 char#49 \1 --- */
1.2       albertel 13589:       {  49,100683,                     /* character number, location */
                   13590:          12, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   13591:           {  8,   12, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13592:             "\x41\x35\x30\xf8\x32\x38" }  },
1.1       albertel 13593:       /* --- pixel bitmap for cmmi180 char#50 \2 --- */
1.2       albertel 13594:       {  50,101653,                     /* character number, location */
                   13595:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   13596:           { 10,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13597:             "\x7c\x08\x16\xf0\xc0\x00\x03\x0c\x18\x30\x30\x22\xe8"
                   13598:             "\xdf\x7f" }  },
1.1       albertel 13599:       /* --- pixel bitmap for cmmi180 char#51 \3 --- */
1.2       albertel 13600:       {  51,102682,                     /* character number, location */
                   13601:          12, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   13602:           { 10,   18, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13603:             "\x78\x10\x23\x98\x61\x86\x01\x06\x08\x10\x78\x00\x02"
                   13604:             "\x18\xc0\x03\x0f\x1c\xb0\x60\x84\xe0\x01" }  },
1.1       albertel 13605:       /* --- pixel bitmap for cmmi180 char#52 \4 --- */
1.2       albertel 13606:       {  52,103619,                     /* character number, location */
                   13607:          12, 1,   -5, 1,      /* topleft row,col, and botleft row,col */
                   13608:           { 10,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13609:             "\x80\x00\x03\x0e\x38\xd0\x60\x83\x0c\x31\xc4\x08\x13"
                   13610:             "\xcc\xff\xc0\x00\x03\x0c\x30\xf0\x03" }  },
1.1       albertel 13611:       /* --- pixel bitmap for cmmi180 char#53 \5 --- */
1.2       albertel 13612:       {  53,104662,                     /* character number, location */
                   13613:          12, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   13614:           { 10,   18, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13615:             "\x06\xf9\xa3\x83\x00\x02\x08\x20\x87\x22\x86\x09\x0c"
                   13616:             "\x30\xc0\x00\x0f\x1c\x90\x60\xc6\xe0\x01" }  },
1.1       albertel 13617:       /* --- pixel bitmap for cmmi180 char#54 \6 --- */
1.2       albertel 13618:       {  54,105571,                     /* character number, location */
                   13619:          17, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   13620:           { 10,   18, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13621:             "\xf0\x60\xc4\x98\x61\x06\x08\xb0\xc7\x21\x87\x0d\x3c"
                   13622:             "\xf0\xc0\x03\x0f\x2c\xb0\x61\x8c\xe0\x01" }  },
1.1       albertel 13623:       /* --- pixel bitmap for cmmi180 char#55 \7 --- */
1.2       albertel 13624:       {  55,106488,                     /* character number, location */
                   13625:          12, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   13626:           { 11,   18, 3,45, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13627:             "\x11\xaa\x19\x11\x81\x11\x71\x20\xf1\x71\x30\x61\x92"
                   13628:             "\x91\x50\xf1\x42\x50\x41\x60\xf4\x32\x62" }  },
1.1       albertel 13629:       /* --- pixel bitmap for cmmi180 char#56 \8 --- */
1.2       albertel 13630:       {  56,107413,                     /* character number, location */
                   13631:          17, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   13632:           { 10,   18, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13633:             "\x78\x30\x63\x98\x61\x86\x19\xc6\x0c\x17\x70\xb0\x63"
                   13634:             "\xd8\xe0\x03\x0f\x3c\xb0\x41\x84\xe0\x01" }  },
1.1       albertel 13635:       /* --- pixel bitmap for cmmi180 char#57 \9 --- */
1.2       albertel 13636:       {  57,108330,                     /* character number, location */
                   13637:          12, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   13638:           { 10,   18, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13639:             "\x78\x10\x62\xd8\x40\x03\x0f\x3c\xf0\xc0\x03\x1b\x4e"
                   13640:             "\x38\xde\x00\x03\x66\x98\x21\x42\xf0\x00" }  },
1.1       albertel 13641:       /* --- pixel bitmap for cmmi180 char#58 . --- */
1.2       albertel 13642:       {  58,114935,                     /* character number, location */
                   13643:           3, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   13644:           {  3,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13645:             "\xba\x00" }  },
1.1       albertel 13646:       /* --- pixel bitmap for cmmi180 char#59 , --- */
1.2       albertel 13647:       {  59,115496,                     /* character number, location */
                   13648:           3, 2,   -5, 2,      /* topleft row,col, and botleft row,col */
                   13649:           {  3,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13650:             "\xba\x49\x29" }  },
1.1       albertel 13651:       /* --- pixel bitmap for cmmi180 char#60 < --- */
1.2       albertel 13652:       {  60,116158,                     /* character number, location */
                   13653:          14, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   13654:           { 15,   15, 3,44, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13655:             "\xd2\xb2\xb2\xb2\xb2\xb2\xb2\xc1\xe0\x12\xe0\x12\xe0"
                   13656:             "\x12\xe0\x12\xe0\x12\xe0\x12\xe0\x12" }  },
1.1       albertel 13657:       /* --- pixel bitmap for cmmi180 char#61 / --- */
1.2       albertel 13658:       {  61,116690,                     /* character number, location */
                   13659:          19, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   13660:           { 10,   25, 3,55, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13661:             "\xf1\x91\xf2\x81\x10\xf1\x71\x20\xf2\x61\x30\xf1\x51"
                   13662:             "\x40\xf2\x41\x50\xf2\x31\x60\xf1\x21\x70\xf2\x11\x8f"
                   13663:             "\x11\x94" }  },
1.1       albertel 13664:       /* --- pixel bitmap for cmmi180 char#62 > --- */
1.2       albertel 13665:       {  62,117389,                     /* character number, location */
                   13666:          14, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   13667:           { 15,   15, 3,45, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13668:             "\x01\xe0\x22\xe0\x12\xe0\x12\xe0\x12\xe0\x12\xe0\x12"
                   13669:             "\xe0\x11\xc2\xb2\xb2\xb2\xb2\xb2\xb2\xd0" }  },
1.1       albertel 13670:       /* --- pixel bitmap for cmmi180 char#63 \star --- */
1.2       albertel 13671:       {  63,118096,                     /* character number, location */
                   13672:          13, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   13673:           { 13,   13, 3,35, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13674:             "\xf4\x61\x64\x21\x24\x29\x73\xa1\x11\x92\x12\x72\x32"
                   13675:             "\x61\x51\x51\x71\x22" }  },
1.1       albertel 13676:       /* --- pixel bitmap for cmmi180 char#64 \partial --- */
1.2       albertel 13677:       {  64,94589,                      /* character number, location */
                   13678:          18, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   13679:           { 13,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13680:             "\xc0\x03\x84\x40\x20\x08\x0c\x01\x01\x20\xf8\x84\xa1"
                   13681:             "\x08\x9c\x01\x1b\x60\x03\x3c\xc0\x06\xd8\x80\x19\x30"
                   13682:             "\x02\x83\x30\xe0\x01" }  },
1.1       albertel 13683:       /* --- pixel bitmap for cmmi180 char#65 A --- */
1.2       albertel 13684:       {  65, 1026,                      /* character number, location */
                   13685:          18, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   13686:           { 17,   18, 3,70, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13687:             "\xf1\xc2\x30\xb3\x30\xf1\xa1\x12\x30\xf1\x91\x22\x30"
                   13688:             "\x81\x32\xa2\x32\xa1\x42\x91\x52\x99\x20\xf1\x51\x72"
                   13689:             "\x20\x41\x82\x51\x92\x42\x92\x26\x47" }  },
1.1       albertel 13690:       /* --- pixel bitmap for cmmi180 char#66 B --- */
1.2       albertel 13691:       {  66, 2390,                      /* character number, location */
                   13692:          17, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   13693:           { 19,   17, 3,55, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13694:             "\x4d\x92\x72\x82\x82\xf2\x62\x92\x62\x82\x62\x64\x7c"
                   13695:             "\x72\x83\x62\x92\x10\xf2\x42\xa2\x10\x42\x92\x52\x83"
                   13696:             "\x3e\x51" }  },
1.1       albertel 13697:       /* --- pixel bitmap for cmmi180 char#67 C --- */
1.2       albertel 13698:       {  67, 3363,                      /* character number, location */
                   13699:          18, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   13700:           { 18,   19, 3,63, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13701:             "\x86\x31\x63\x51\x21\x52\x83\x41\xb2\x32\xb1\x32\xc1"
                   13702:             "\x22\xd1\x22\xe0\x1f\x32\xe0\x2f\x22\xc1\x30\x11\xb1"
                   13703:             "\x61\x91\x81\x62\xa6\x82" }  },
1.1       albertel 13704:       /* --- pixel bitmap for cmmi180 char#68 D --- */
1.2       albertel 13705:       {  68, 4537,                      /* character number, location */
                   13706:          17, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   13707:           { 19,   17, 3,57, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13708:             "\x4c\x92\x72\x82\x82\x10\xf1\x52\xa2\xf1\x52\xb1\xf2"
                   13709:             "\x42\xb2\x42\xb1\x42\xb2\x42\xa2\x52\xa1\x62\x82\x62"
                   13710:             "\x73\x5c\x71" }  },
1.1       albertel 13711:       /* --- pixel bitmap for cmmi180 char#69 E --- */
1.2       albertel 13712:       {  69, 5964,                      /* character number, location */
                   13713:          17, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   13714:           { 18,   17, 3,69, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13715:             "\x4e\x62\x82\x62\x91\xf1\x52\xa1\x52\x51\x41\x52\x51"
                   13716:             "\x92\x51\xa8\xa2\x51\xa2\x51\x41\x42\x51\x41\x52\xa1"
                   13717:             "\x20\xf1\x32\x91\x30\x22\x83\x3e\x47" }  },
1.1       albertel 13718:       /* --- pixel bitmap for cmmi180 char#70 F --- */
1.2       albertel 13719:       {  70, 7227,                      /* character number, location */
                   13720:          17, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   13721:           { 17,   17, 3,59, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13722:             "\x4d\x62\x72\x62\x81\xf1\x52\x91\x52\x51\x31\x52\x51"
                   13723:             "\x82\x51\x98\x50\xf1\x42\x51\x50\x32\x51\x60\xf2\x32"
                   13724:             "\xc0\x22\xd7\xa1" }  },
1.1       albertel 13725:       /* --- pixel bitmap for cmmi180 char#71 G --- */
1.2       albertel 13726:       {  71, 8414,                      /* character number, location */
                   13727:          18, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   13728:           { 18,   19, 3,71, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13729:             "\x86\x31\x63\x51\x21\x52\x83\x41\xb2\x32\xb1\x32\xc1"
                   13730:             "\x22\xd1\x22\xe0\x1f\x12\xe0\x22\x99\xc2\x2f\x22\xb2"
                   13731:             "\x30\x11\xb2\x51\x92\x71\x62\x11\x86\x80" }  },
1.1       albertel 13732:       /* --- pixel bitmap for cmmi180 char#72 H --- */
1.2       albertel 13733:       {  72, 9649,                      /* character number, location */
                   13734:          17, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   13735:           { 23,   17, 3,53, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13736:             "\x48\x38\xf1\x72\x92\x30\xf3\x62\x92\x40\x52\x92\xad"
                   13737:             "\x50\xf1\x52\x92\x50\xf3\x42\x92\x60\x32\x92\x78\x38"
                   13738:             "\x40" }  },
1.1       albertel 13739:       /* --- pixel bitmap for cmmi180 char#73 I --- */
1.2       albertel 13740:       {  73,10380,                      /* character number, location */
                   13741:          17, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   13742:           { 12,   17, 3,31, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13743:             "\x48\xf1\x72\x30\xf3\x62\x40\xf3\x52\x50\xf3\x42\x60"
                   13744:             "\x32\x78\x42" }  },
1.1       albertel 13745:       /* --- pixel bitmap for cmmi180 char#74 J --- */
1.2       albertel 13746:       {  74,11208,                      /* character number, location */
                   13747:          17, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
                   13748:           { 13,   18, 3,43, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13749:             "\x67\xf1\x92\x20\xf3\x82\x30\xf3\x72\x40\xf1\x62\x51"
                   13750:             "\x52\x52\x41\x61\x42\x61\x32\x84\x80" }  },
1.1       albertel 13751:       /* --- pixel bitmap for cmmi180 char#75 K --- */
1.2       albertel 13752:       {  75,12441,                      /* character number, location */
                   13753:          17, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   13754:           { 21,   17, 3,73, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13755:             "\x47\x46\x62\x82\x92\x72\x92\x71\xb2\x61\xc2\x51\xd2"
                   13756:             "\x31\xe2\x32\xe2\x21\x12\xd3\x32\xd2\x51\x90\xf1\x32"
                   13757:             "\x62\x80\xf1\x32\x72\x70\x22\x92\x67\x46\x40" }  },
1.1       albertel 13758:       /* --- pixel bitmap for cmmi180 char#76 L --- */
1.2       albertel 13759:       {  76,13422,                      /* character number, location */
                   13760:          17, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   13761:           { 16,   17, 3,43, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13762:             "\x48\x40\xf1\x72\x70\xf3\x62\x80\xf3\x52\x90\xf1\x42"
                   13763:             "\x91\x42\x81\x52\x72\x42\x73\x1e\x22" }  },
1.1       albertel 13764:       /* --- pixel bitmap for cmmi180 char#77 M --- */
1.2       albertel 13765:       {  77,14726,                      /* character number, location */
                   13766:          17, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   13767:           { 27,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13768:             "\xf0\x03\xe0\x07\x1c\x00\x07\xe0\x00\x34\x80\x06\xd0"
                   13769:             "\x00\x34\x80\x06\x20\x03\x32\x00\x19\x88\x01\xc4\x40"
                   13770:             "\x06\x20\x06\x31\x00\x31\x84\x01\x88\x21\x0c\x20\x98"
                   13771:             "\x30\x00\xc1\x82\x01\x08\x16\x0c\x40\x70\x60\x00\x83"
                   13772:             "\x81\x01\x7f\x8c\x7f\x00" }  },
1.1       albertel 13773:       /* --- pixel bitmap for cmmi180 char#78 N --- */
1.2       albertel 13774:       {  78,15928,                      /* character number, location */
                   13775:          17, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   13776:           { 23,   17, 3,79, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13777:             "\x45\x77\xf1\x73\x91\x30\xf1\x61\x22\x71\x40\xf1\x61"
                   13778:             "\x32\x61\x40\xf1\x51\x52\x41\x50\xf1\x51\x62\x31\x50"
                   13779:             "\xf1\x41\x82\x11\x60\xf1\x41\x93\x60\x32\xa1\x77\x81"
                   13780:             "\x71" }  },
1.1       albertel 13781:       /* --- pixel bitmap for cmmi180 char#79 O --- */
1.2       albertel 13782:       {  79,16843,                      /* character number, location */
                   13783:          18, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   13784:           { 17,   19, 3,63, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13785:             "\x86\x92\x52\x71\x82\x51\xa2\x31\xb2\x22\xc1\xf1\x12"
                   13786:             "\xd1\x0f\x22\xd2\x0f\x12\xc2\x1f\x12\xb2\x20\x11\xa2"
                   13787:             "\x42\x82\x62\x52\xa5\x81" }  },
1.1       albertel 13788:       /* --- pixel bitmap for cmmi180 char#80 P --- */
1.2       albertel 13789:       {  80,17966,                      /* character number, location */
                   13790:          17, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   13791:           { 18,   17, 3,45, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13792:             "\x4c\x82\x72\x72\x82\xf2\x52\x92\x52\x82\x52\x73\x6a"
                   13793:             "\x40\xf1\x42\xc0\xf3\x32\xd0\x22\xe7\xb2" }  },
1.1       albertel 13794:       /* --- pixel bitmap for cmmi180 char#81 Q --- */
1.2       albertel 13795:       {  81,19029,                      /* character number, location */
                   13796:          18, 1,   -5, 1,      /* topleft row,col, and botleft row,col */
                   13797:           { 17,   23, 3,91, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13798:             "\x86\x92\x52\x72\x72\x51\xa2\x31\xb2\x22\xb2\x12\xd1"
                   13799:             "\x12\xc2\x0f\x22\xd2\x0f\x12\xc2\x12\xb2\x22\x43\x42"
                   13800:             "\x31\x31\x21\x32\x42\x11\x41\x12\x63\x42\x31\x66\x41"
                   13801:             "\xa2\x32\xa2\x31\xc4\xd3\x51" }  },
1.1       albertel 13802:       /* --- pixel bitmap for cmmi180 char#82 R --- */
1.2       albertel 13803:       {  82,20400,                      /* character number, location */
                   13804:          17, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   13805:           { 18,   18, 3,69, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13806:             "\x4b\x92\x62\x82\x72\x10\xf2\x52\x82\x10\x52\x72\x62"
                   13807:             "\x63\x79\x50\xf1\x42\x62\x40\xf2\x32\x72\x40\x32\x72"
                   13808:             "\x31\x22\x81\x31\x17\x52\x21\xe3\x23" }  },
1.1       albertel 13809:       /* --- pixel bitmap for cmmi180 char#83 S --- */
1.2       albertel 13810:       {  83,21485,                      /* character number, location */
                   13811:          18, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   13812:           { 15,   19, 3,69, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13813:             "\x75\x21\x62\x41\x11\x51\x72\x42\x72\xf1\x32\x81\x10"
                   13814:             "\x32\xd3\xd6\xa7\xc4\x20\xf1\xb2\x20\xf1\x11\x92\x20"
                   13815:             "\x11\x82\x32\x81\x44\x42\x51\x35\x63" }  },
1.1       albertel 13816:       /* --- pixel bitmap for cmmi180 char#84 T --- */
1.2       albertel 13817:       {  84,22569,                      /* character number, location */
                   13818:          17, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   13819:           { 17,   17, 3,47, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13820:             "\x1e\x02\x12\x52\x52\x11\x62\x52\x0f\x21\x62\x61\x10"
                   13821:             "\x72\x80\xf3\x62\x90\xf3\x52\xa0\x42\xc9\x71" }  },
1.1       albertel 13822:       /* --- pixel bitmap for cmmi180 char#85 U --- */
1.2       albertel 13823:       {  85,23573,                      /* character number, location */
                   13824:          17, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   13825:           { 19,   18, 3,49, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13826:             "\x08\x47\xf1\x32\xa1\x30\xf3\x22\xa1\x40\xf3\x12\xa1"
                   13827:             "\x5f\x22\xa1\x60\x11\x91\x82\x71\xa2\x42\xc5\xb2" }  },
1.1       albertel 13828:       /* --- pixel bitmap for cmmi180 char#86 V --- */
1.2       albertel 13829:       {  86,24509,                      /* character number, location */
                   13830:          17, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   13831:           { 18,   18, 3,77, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13832:             "\x06\x66\x22\x92\x30\xf1\x22\x91\x40\x22\x81\x50\xf1"
                   13833:             "\x22\x71\x60\xf1\x32\x51\x70\x32\x41\x80\xf1\x32\x31"
                   13834:             "\x90\x32\x21\xd2\x12\xd2\x11\xe3\xe0\x22\xe0\x21\xd1" }  },
1.1       albertel 13835:       /* --- pixel bitmap for cmmi180 char#87 W --- */
1.2       albertel 13836:       {  87,25897,                      /* character number, location */
                   13837:          17, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   13838:           { 25,   18, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13839:             "\x3f\xfe\xf8\x19\x30\x40\x30\x60\x80\x60\xc0\x80\xc0"
                   13840:             "\xc0\x81\x81\x41\x03\x01\x83\x06\x01\x86\x0c\x02\x0c"
                   13841:             "\x19\x02\x18\x71\x04\x30\xc2\x04\x60\x82\x09\xc0\x04"
                   13842:             "\x0b\x80\x05\x1e\x00\x07\x1c\x00\x0e\x18\x00\x0c\x30"
                   13843:             "\x00\x18\x20\x00\x00" }  },
1.1       albertel 13844:       /* --- pixel bitmap for cmmi180 char#88 X --- */
1.2       albertel 13845:       {  88,27082,                      /* character number, location */
                   13846:          17, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   13847:           { 20,   17, 3,65, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13848:             "\x47\x36\x72\x63\x92\x61\xc2\x41\xd2\x31\xe3\x11\xe0"
                   13849:             "\x24\x70\xf2\x93\x80\x81\x22\xe1\x32\xd1\x43\xb1\x62"
                   13850:             "\xa1\x73\x82\x82\x56\x56\x33" }  },
1.1       albertel 13851:       /* --- pixel bitmap for cmmi180 char#89 Y --- */
1.2       albertel 13852:       {  89,28166,                      /* character number, location */
                   13853:          17, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   13854:           { 18,   17, 3,55, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13855:             "\x06\x66\x22\x92\x53\x81\x72\x71\x83\x51\xa2\x42\xa2"
                   13856:             "\x41\xc2\x21\xd2\x11\xe3\xe0\x22\xa0\xf3\x52\xb0\x42"
                   13857:             "\xd8\x93" }  },
1.1       albertel 13858:       /* --- pixel bitmap for cmmi180 char#90 Z --- */
1.2       albertel 13859:       {  90,29263,                      /* character number, location */
                   13860:          17, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   13861:           { 17,   17, 3,57, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13862:             "\x5c\x53\x62\x61\x72\x62\x62\x71\x62\x81\x53\xd3\xe2"
                   13863:             "\xe2\xe2\xe2\x61\x72\x61\x72\x71\x62\x81\x52\x82\x42"
                   13864:             "\x82\x4d\x42" }  },
1.1       albertel 13865:       /* --- pixel bitmap for cmmi180 char#91 \flat --- */
1.2       albertel 13866:       {  91,118793,                     /* character number, location */
                   13867:          19, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   13868:           {  8,   20, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13869:             "\x01\x01\x01\x01\x01\x01\x01\x3d\x63\xc1\xc1\xc1\xc1"
                   13870:             "\x61\x61\x31\x19\x0d\x07\x01" }  },
1.1       albertel 13871:       /* --- pixel bitmap for cmmi180 char#92 \natural --- */
1.2       albertel 13872:       {  92,119562,                     /* character number, location */
                   13873:          19, 2,   -6, 2,      /* topleft row,col, and botleft row,col */
                   13874:           {  6,   25, 3,34, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13875:             "\xf5\x01\x51\x33\x18\x13\x31\x0f\x61\x41\x01\x33\x18"
                   13876:             "\x13\x31\xf3\x51" }  },
1.1       albertel 13877:       /* --- pixel bitmap for cmmi180 char#93 \sharp --- */
1.2       albertel 13878:       {  93,120441,                     /* character number, location */
                   13879:          18, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   13880:           {  8,   24, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13881:             "\x40\x42\x42\x42\x42\xc2\xfe\x7f\x43\x42\x42\x42\x42"
                   13882:             "\x42\x42\x42\xc2\xfe\x7f\x43\x42\x42\x42\x02" }  },
1.1       albertel 13883:       /* --- pixel bitmap for cmmi180 char#94 \smile --- */
1.2       albertel 13884:       {  94,121375,                     /* character number, location */
                   13885:          10, 1,    4, 1,      /* topleft row,col, and botleft row,col */
                   13886:           { 23,    6, 3,27, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13887:             "\x01\xe0\x71\x11\xe0\x51\x32\xe0\x12\x54\x94\x8d\xd7"
                   13888:             "\x81" }  },
1.1       albertel 13889:       /* --- pixel bitmap for cmmi180 char#95 \frown --- */
1.2       albertel 13890:       {  95,122245,                     /* character number, location */
                   13891:          11, 1,    4, 1,      /* topleft row,col, and botleft row,col */
                   13892:           { 23,    7, 3,32, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13893:             "\xb1\xe0\x3b\xae\x01\x72\xd2\x51\xe0\x31\x31\xe0\x51"
                   13894:             "\x11\xe0\x71" }  },
1.1       albertel 13895:       /* --- pixel bitmap for cmmi180 char#96 \ell --- */
1.2       albertel 13896:       {  96,95373,                      /* character number, location */
                   13897:          17, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   13898:           { 10,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13899:             "\x80\x01\x0b\x26\x58\x30\xc1\x04\x0b\x16\x58\xe0\x80"
                   13900:             "\x01\x02\x0c\x28\x90\x00\x66\x70\x00" }  },
1.1       albertel 13901:       /* --- pixel bitmap for cmmi180 char#97 a --- */
1.2       albertel 13902:       {  97,30207,                      /* character number, location */
                   13903:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   13904:           { 11,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13905:             "\xf0\xc2\x1c\xc3\x0c\x66\xb0\xc1\x0c\x66\xb0\xc3\x15"
                   13906:             "\x1f\xc7\x00" }  },
1.1       albertel 13907:       /* --- pixel bitmap for cmmi180 char#98 b --- */
1.2       albertel 13908:       {  98,31071,                      /* character number, location */
                   13909:          17, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   13910:           { 10,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13911:             "\x1e\x60\x80\x01\x03\x0c\x30\xc0\x8f\x63\x06\x19\x6c"
                   13912:             "\xf0\x60\x83\x0d\x36\x8c\x18\x1c\x00" }  },
1.1       albertel 13913:       /* --- pixel bitmap for cmmi180 char#99 c --- */
1.2       albertel 13914:       {  99,31906,                      /* character number, location */
                   13915:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   13916:           { 10,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13917:             "\xe0\x61\xc8\xb0\x01\x06\x0c\x30\xc0\x00\x02\x1a\xc6"
                   13918:             "\x07" }  },
1.1       albertel 13919:       /* --- pixel bitmap for cmmi180 char#100 d --- */
1.2       albertel 13920:       { 100,32872,                      /* character number, location */
                   13921:          17, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   13922:           { 12,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13923:             "\x00\x0f\xc0\x00\x0c\x60\x00\x06\x60\xf0\x86\x39\x0c"
                   13924:             "\x63\x30\x06\x33\x18\x83\x31\x58\xc3\x25\x3e\x1c\x03" }  },
1.1       albertel 13925:       /* --- pixel bitmap for cmmi180 char#101 e --- */
1.2       albertel 13926:       { 101,33715,                      /* character number, location */
                   13927:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   13928:           { 10,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13929:             "\xe0\x60\xc4\x90\x41\xfe\x0c\x30\xc0\x00\x02\x1a\xc6"
                   13930:             "\x07" }  },
1.1       albertel 13931:       /* --- pixel bitmap for cmmi180 char#102 f --- */
1.2       albertel 13932:       { 102,34861,                      /* character number, location */
                   13933:          17, 2,   -5, 2,      /* topleft row,col, and botleft row,col */
                   13934:           { 12,   22, 3,49, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13935:             "\x83\x82\x12\x72\x11\x10\xf2\x62\x40\x38\x72\x40\xf5"
                   13936:             "\x52\x50\xf3\x42\x60\x41\x81\x12\x72\x11\x92\x91" }  },
1.1       albertel 13937:       /* --- pixel bitmap for cmmi180 char#103 g --- */
1.2       albertel 13938:       { 103,35834,                      /* character number, location */
                   13939:          11, 1,   -5, 1,      /* topleft row,col, and botleft row,col */
                   13940:           { 11,   16, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13941:             "\xe0\x85\x39\x86\x19\xcc\x60\x83\x19\xcc\x60\x86\x23"
                   13942:             "\x0e\x6e\x00\x03\x18\x61\x8c\xc1\x07" }  },
1.1       albertel 13943:       /* --- pixel bitmap for cmmi180 char#104 h --- */
1.2       albertel 13944:       { 104,36767,                      /* character number, location */
                   13945:          17, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   13946:           { 12,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13947:             "\x3c\x00\x03\x30\x80\x01\x18\x80\x01\xd8\xc3\x62\x1c"
                   13948:             "\xc6\x60\x0c\x66\x30\x06\x63\xb0\x86\x39\x58\x03\x03" }  },
1.1       albertel 13949:       /* --- pixel bitmap for cmmi180 char#105 i --- */
1.2       albertel 13950:       { 105,37641,                      /* character number, location */
                   13951:          17, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   13952:           {  6,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13953:             "\x30\x0c\x00\x00\xc0\x68\x59\xc6\x30\x86\x69\x5a\x0c" }  },
1.1       albertel 13954:       /* --- pixel bitmap for cmmi180 char#106 j --- */
1.2       albertel 13955:       { 106,38564,                      /* character number, location */
                   13956:          17,-1,   -5,-1,      /* topleft row,col, and botleft row,col */
                   13957:           { 11,   22, 3,51, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13958:             "\xa1\x92\xf3\xb0\x63\x71\x22\x10\xf1\x41\x32\x10\x82"
                   13959:             "\x10\xf3\x72\x20\xf3\x62\x30\x11\x32\x42\x22\x64\x62" }  },
1.1       albertel 13960:       /* --- pixel bitmap for cmmi180 char#107 k --- */
1.2       albertel 13961:       { 107,39581,                      /* character number, location */
                   13962:          17, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   13963:           { 11,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13964:             "\x3c\x80\x01\x0c\x30\x80\x01\x0c\x60\x9c\x91\x4c\x66"
                   13965:             "\x01\x07\xfc\x60\x0c\x63\x1a\x73\x58\x83\x01" }  },
1.1       albertel 13966:       /* --- pixel bitmap for cmmi180 char#108 l --- */
1.2       albertel 13967:       { 108,40287,                      /* character number, location */
                   13968:          17, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   13969:           {  5,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13970:             "\x1e\x63\xc6\x18\x33\xc6\x98\x31\xe6\x5c\x06" }  },
1.1       albertel 13971:       /* --- pixel bitmap for cmmi180 char#109 m --- */
1.2       albertel 13972:       { 109,41514,                      /* character number, location */
                   13973:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   13974:           { 20,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13975:             "\x8e\xe7\xa1\xc5\x31\x39\x0c\x93\xc1\x30\x18\x0c\xc3"
                   13976:             "\x60\x18\x0c\x86\xc1\x60\x98\x0c\xc6\x64\x30\x4c\x06"
                   13977:             "\x83\x03" }  },
1.1       albertel 13978:       /* --- pixel bitmap for cmmi180 char#110 n --- */
1.2       albertel 13979:       { 110,42557,                      /* character number, location */
                   13980:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   13981:           { 13,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13982:             "\xce\x43\xc7\x64\x98\x0c\x83\x61\x18\x06\xc3\x60\x98"
                   13983:             "\x8c\xc9\x30\x19\x1c" }  },
1.1       albertel 13984:       /* --- pixel bitmap for cmmi180 char#111 o --- */
1.2       albertel 13985:       { 111,43313,                      /* character number, location */
                   13986:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   13987:           { 11,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13988:             "\xe0\xc0\x18\x83\x0c\x6c\xe0\x81\x0d\x6c\x60\x82\x31"
                   13989:             "\x06\x0f\x00" }  },
1.1       albertel 13990:       /* --- pixel bitmap for cmmi180 char#112 p --- */
1.2       albertel 13991:       { 112,44305,                      /* character number, location */
                   13992:          11,-2,   -5,-2,      /* topleft row,col, and botleft row,col */
                   13993:           { 14,   16, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   13994:             "\x30\x0f\x3a\x86\x06\xa1\xc1\x60\x30\x0c\x06\x83\xc1"
                   13995:             "\x60\x30\x0c\x8e\x81\x1d\x60\x00\x18\x00\x03\xc0\x00"
                   13996:             "\xfc\x00" }  },
1.1       albertel 13997:       /* --- pixel bitmap for cmmi180 char#113 q --- */
1.2       albertel 13998:       { 113,45238,                      /* character number, location */
                   13999:          11, 1,   -5, 1,      /* topleft row,col, and botleft row,col */
                   14000:           { 11,   16, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14001:             "\xf0\xc4\x14\xc3\x0c\x66\xb0\xc1\x0c\x66\x30\xc3\x11"
                   14002:             "\x07\x37\x80\x01\x0c\x30\x80\x01\x3f" }  },
1.1       albertel 14003:       /* --- pixel bitmap for cmmi180 char#114 r --- */
1.2       albertel 14004:       { 114,46109,                      /* character number, location */
                   14005:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   14006:           {  9,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14007:             "\xc6\x7b\x76\x6e\xc0\xc0\x80\x01\x03\x06\x06\x0c\x00" }  },
1.1       albertel 14008:       /* --- pixel bitmap for cmmi180 char#115 s --- */
1.2       albertel 14009:       { 115,47049,                      /* character number, location */
                   14010:          11, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   14011:           {  9,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14012:             "\xf8\x18\x1a\x36\xe0\x83\x0f\xb8\x60\x43\xc2\x78\x00" }  },
1.1       albertel 14013:       /* --- pixel bitmap for cmmi180 char#116 t --- */
1.2       albertel 14014:       { 116,47797,                      /* character number, location */
                   14015:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   14016:           {  8,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14017:             "\x10\x18\x18\x18\xff\x0c\x0c\x0c\x0c\x06\x06\x46\x26"
                   14018:             "\x26\x1c" }  },
1.1       albertel 14019:       /* --- pixel bitmap for cmmi180 char#117 u --- */
1.2       albertel 14020:       { 117,48841,                      /* character number, location */
                   14021:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   14022:           { 12,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14023:             "\x0e\xa4\x60\x0d\xd6\x60\x0c\x66\x30\x06\x63\xb0\x86"
                   14024:             "\x6b\x7c\x38\x06" }  },
1.1       albertel 14025:       /* --- pixel bitmap for cmmi180 char#118 v --- */
1.2       albertel 14026:       { 118,49736,                      /* character number, location */
                   14027:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   14028:           { 10,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14029:             "\x0e\x2b\xdc\x60\x83\x0c\x1a\x64\x90\x41\x86\x10\x81"
                   14030:             "\x03" }  },
1.1       albertel 14031:       /* --- pixel bitmap for cmmi180 char#119 w --- */
1.2       albertel 14032:       { 119,50920,                      /* character number, location */
                   14033:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   14034:           { 16,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14035:             "\x1c\xc4\x12\xc6\x11\x86\x19\x86\x18\x86\x0c\x43\x0c"
                   14036:             "\x43\x0c\x43\x0c\x23\x88\x23\x70\x1e" }  },
1.1       albertel 14037:       /* --- pixel bitmap for cmmi180 char#120 x --- */
1.2       albertel 14038:       { 120,52158,                      /* character number, location */
                   14039:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   14040:           { 13,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14041:             "\x70\x0e\x39\x12\x63\x62\x00\x0c\xc0\x00\x18\x00\x43"
                   14042:             "\x62\x64\xce\x38\x07" }  },
1.1       albertel 14043:       /* --- pixel bitmap for cmmi180 char#121 y --- */
1.2       albertel 14044:       { 121,53236,                      /* character number, location */
                   14045:          11, 1,   -5, 1,      /* topleft row,col, and botleft row,col */
                   14046:           { 11,   16, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14047:             "\x1c\x94\x70\x84\x33\x8c\x61\x86\x31\x8c\x61\x0c\x63"
                   14048:             "\x0c\x7e\x00\x23\x8c\x61\x84\xc1\x03" }  },
1.1       albertel 14049:       /* --- pixel bitmap for cmmi180 char#122 z --- */
1.2       albertel 14050:       { 122,54148,                      /* character number, location */
                   14051:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   14052:           { 11,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14053:             "\x70\xc4\x1f\x41\x00\x01\x04\x10\x40\x00\x41\x04\xf1"
                   14054:             "\x4f\x38\x00" }  },
1.1       albertel 14055:       /* --- pixel bitmap for cmmi180 char#123 \imath --- */
1.2       albertel 14056:       { 123,96127,                      /* character number, location */
                   14057:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   14058:           {  6,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14059:             "\x8c\x96\x65\x0c\x63\x98\xa6\xc5\x00" }  },
1.1       albertel 14060:       /* --- pixel bitmap for cmmi180 char#124 \jmath --- */
1.2       albertel 14061:       { 124,96932,                      /* character number, location */
                   14062:          11,-1,   -5,-1,      /* topleft row,col, and botleft row,col */
                   14063:           { 10,   16, 3,37, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14064:             "\x63\x61\x22\xf1\x41\x32\x82\xf3\x72\x10\xf3\x62\x20"
                   14065:             "\x11\x32\x32\x22\x54\x50" }  },
1.1       albertel 14066:       /* --- pixel bitmap for cmmi180 char#125 \wp --- */
1.2       albertel 14067:       { 125,98059,                      /* character number, location */
                   14068:          12, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   14069:           { 15,   18, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14070:             "\x30\x00\x0c\x0f\x66\x8c\x09\xc4\x02\xe6\x00\x3b\xc0"
                   14071:             "\x1c\x60\x06\x30\x47\x8c\x27\x43\xf3\x20\x03\x90\x01"
                   14072:             "\x64\x00\x32\x00\x09\x00\x03\x00" }  },
1.1       albertel 14073:       /* --- pixel bitmap for cmmi180 char#126 \vec --- */
1.2       albertel 14074:       { 126,98703,                      /* character number, location */
                   14075:          17, 5,   14, 5,      /* topleft row,col, and botleft row,col */
                   14076:           { 10,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14077:             "\x00\xfd\x0f\x08" }  },
1.1       albertel 14078:       /* --- pixel bitmap for cmmi180 char#127 (noname) --- */
1.2       albertel 14079:       { 127,99239,                      /* character number, location */
                   14080:          16, 6,   14, 6,      /* topleft row,col, and botleft row,col */
                   14081:           { 10,    2, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14082:             "\xf8\x19\x08" }  },
                   14083:       /* --- trailer  --- */
                   14084:       { -99, -999,  0,0,0,0, { 0,0,0,0, (pixbyte *)"\0" }  }
                   14085:    } ;
                   14086: 
                   14087: 
                   14088: /* --- size=6 for .210gf ---
                   14089:  * mf '\mode=preview; mag=magstep(-13.80488502080647873125); input cmmi10'
                   14090:  * --------------------------------------------------------------------- */
                   14091: /* --- fontdef for cmmi210 --- */
                   14092: static	chardef  cmmi210[] =
                   14093:    {
                   14094:       /* --- pixel bitmap for cmmi210 char#0 \Gamma --- */
                   14095:       {   0,55957,                      /* character number, location */
                   14096:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   14097:           { 20,   20, 3,49, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14098:             "\x5e\x01\x82\x82\xf2\x72\x92\x72\x91\x72\xa1\x10\xf2"
                   14099:             "\x62\xc0\xf3\x52\xd0\xf3\x42\xe0\x32\xe0\x19\xb3" }  },
                   14100:       /* --- pixel bitmap for cmmi210 char#1 \Delta --- */
                   14101:       {   1,56876,                      /* character number, location */
                   14102:          21, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   14103:           { 22,   21, 3,90, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14104:             "\xf1\xe0\x12\x50\xe3\xe0\x41\x13\x40\xf1\xc1\x32\x40"
                   14105:             "\xb1\x42\xe1\x53\xc2\x62\xc1\x72\xb1\x82\xa1\x93\x82"
                   14106:             "\xa2\x81\xb2\x71\xc2\x61\xd2\x61\xe2\x41\xe0\x12\x31"
                   14107:             "\xe0\x22\x2e\x06\x2e\x07" }  },
                   14108:       /* --- pixel bitmap for cmmi210 char#2 \Theta --- */
                   14109:       {   2,58071,                      /* character number, location */
                   14110:          21, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   14111:           { 20,   22, 3,95, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14112:             "\xa5\xd2\x52\x92\x82\x72\xa2\x52\xb2\x42\xd2\xf1\x22"
                   14113:             "\xe2\x12\xe0\x12\x12\x31\x71\x32\x12\x39\x34\x39\x32"
                   14114:             "\x12\x31\x71\x32\x12\xe0\x12\x1f\x12\xe2\x22\xd2\x42"
                   14115:             "\xb2\x52\xa2\x72\x82\x92\x52\xd5\xa0" }  },
                   14116:       /* --- pixel bitmap for cmmi210 char#3 \Lambda --- */
                   14117:       {   3,59055,                      /* character number, location */
                   14118:          21, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   14119:           { 18,   21, 3,84, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14120:             "\xf1\xd2\x30\xf1\xc3\x30\xf1\xb1\x12\x30\xf1\xa1\x22"
                   14121:             "\x30\x91\x32\x30\xf1\x81\x42\x30\x71\x52\xa1\x53\x81"
                   14122:             "\x63\x81\x72\x20\xf1\x51\x82\x20\x41\x92\x51\xa2\x42"
                   14123:             "\xa2\x26\x57" }  },
                   14124:       /* --- pixel bitmap for cmmi210 char#4 \Xi --- */
                   14125:       {   4,60530,                      /* character number, location */
                   14126:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   14127:           { 22,   20, 3,57, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14128:             "\xf1\x5e\x03\xf2\x41\xe0\x11\x10\xf2\xe0\x80\x61\x91"
                   14129:             "\xbb\xab\xb1\x91\x60\xf2\xe0\x80\xf2\x11\xe0\x11\x4f"
                   14130:             "\x1e\x03\x52" }  },
                   14131:       /* --- pixel bitmap for cmmi210 char#5 \Pi --- */
                   14132:       {   5,61747,                      /* character number, location */
                   14133:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   14134:           { 25,   20, 3,51, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14135:             "\x5e\x06\x82\xa2\x30\xf3\x72\xa2\x40\xf3\x62\xa2\x50"
                   14136:             "\xf3\x52\xa2\x60\xf3\x42\xa2\x70\x32\xa2\x88\x48\x5f" }  },
                   14137:       /* --- pixel bitmap for cmmi210 char#6 \Sigma --- */
                   14138:       {   6,62946,                      /* character number, location */
                   14139:          20, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   14140:           { 21,   20, 3,77, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14141:             "\x5e\x02\x53\xa3\xf1\x62\xb2\x72\xa2\x72\xa1\x83\x91"
                   14142:             "\x92\xe0\x53\xa0\xf1\x92\xa0\x91\xe0\x42\xe0\x41\xb1"
                   14143:             "\x71\xb1\x71\xc1\x61\xc1\x61\xc2\x51\xb4\x4e\x02\x52" }  },
                   14144:       /* --- pixel bitmap for cmmi210 char#7 \Upsilon --- */
                   14145:       {   7,63996,                      /* character number, location */
                   14146:          21, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   14147:           { 19,   21, 3,61, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14148:             "\x34\x74\x36\x56\x12\x42\x31\x51\x11\x61\x21\x62\x71"
                   14149:             "\x21\x61\xf1\x81\x11\x80\xf3\x82\x90\xf3\x72\xa0\xf3"
                   14150:             "\x62\xb0\x52\xda\x81" }  },
                   14151:       /* --- pixel bitmap for cmmi210 char#8 \Phi --- */
                   14152:       {   8,65068,                      /* character number, location */
                   14153:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   14154:           { 18,   20, 3,85, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14155:             "\x7a\xc2\x50\xf1\xa2\x60\x77\x92\x32\x13\x52\x42\x42"
                   14156:             "\x32\x52\x42\x10\xf1\x12\x62\x52\x0f\x12\x62\x52\x10"
                   14157:             "\x12\x52\x42\x32\x52\x32\x53\x22\x22\x97\x70\xf1\x72"
                   14158:             "\x90\x62\xca\x62" }  },
                   14159:       /* --- pixel bitmap for cmmi210 char#9 \Psi --- */
                   14160:       {   9,66173,                      /* character number, location */
                   14161:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   14162:           { 19,   20, 3,83, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14163:             "\x6a\xd2\x70\xf1\x92\x82\x72\x53\x12\x62\x42\x32\x52"
                   14164:             "\x52\x20\xf2\x12\x52\x42\x30\xf1\x12\x42\x42\x40\x12"
                   14165:             "\x42\x32\x71\x42\x22\x83\x12\x22\xb6\x90\xf1\x62\xb0"
                   14166:             "\x52\xda\x8a" }  },
                   14167:       /* --- pixel bitmap for cmmi210 char#10 \Omega --- */
                   14168:       {  10,67410,                      /* character number, location */
                   14169:          21, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   14170:           { 21,   21, 3,91, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14171:             "\xb5\xd3\x52\xa2\x91\x82\xa2\x62\xb2\x52\xd1\x52\xd2"
                   14172:             "\xf2\x32\xd2\x10\x32\xc2\x52\xc1\x71\xb2\x72\x92\x82"
                   14173:             "\x82\xa1\x81\x61\x41\x71\x41\x21\x41\x62\x41\x21\x41"
                   14174:             "\x61\x41\x36\x57\x36\x56\x42" }  },
                   14175:       /* --- pixel bitmap for cmmi210 char#11 \alpha --- */
                   14176:       {  11,68476,                      /* character number, location */
                   14177:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   14178:           { 17,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14179:             "\xc0\x07\x60\x18\x62\x60\x64\xc0\x64\x80\xc9\x00\x8f"
                   14180:             "\x01\x9c\x01\x18\x03\x30\x04\x70\x18\xd0\x60\x98\x85"
                   14181:             "\x0f\x0e" }  },
                   14182:       /* --- pixel bitmap for cmmi210 char#12 \beta --- */
                   14183:       {  12,69539,                      /* character number, location */
                   14184:          20, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   14185:           { 15,   26, 3,85, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14186:             "\x94\xa1\x41\x81\x52\x61\x62\x51\x72\x51\x71\x51\x72"
                   14187:             "\x51\x26\x61\x25\x71\x62\x20\xf3\x31\x82\x10\xf1\x21"
                   14188:             "\x82\x20\x21\x72\x52\x61\x51\x11\x42\x61\x25\x60\xf1"
                   14189:             "\x11\xdf\x31\xe7" }  },
                   14190:       /* --- pixel bitmap for cmmi210 char#13 \gamma --- */
                   14191:       {  13,70504,                      /* character number, location */
                   14192:          13, 0,   -7, 0,      /* topleft row,col, and botleft row,col */
                   14193:           { 15,   20, 3,57, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14194:             "\x44\x61\x27\x51\x13\x33\x31\x21\x71\x31\x11\x81\x31"
                   14195:             "\x10\xf2\xa1\x11\x20\xf2\xa2\x30\xf3\xa1\x40\xf3\x91"
                   14196:             "\x50\x81\x61" }  },
                   14197:       /* --- pixel bitmap for cmmi210 char#14 \delta --- */
                   14198:       {  14,71475,                      /* character number, location */
                   14199:          21, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   14200:           { 12,   21, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14201:             "\x80\x01\xfc\x20\x0c\x02\x60\x00\x04\xc0\x00\x18\xc0"
                   14202:             "\x03\x33\x18\xc7\x60\x06\x66\x60\x06\x36\x30\x03\x23"
                   14203:             "\x30\x86\xc1\x08\x78\x00" }  },
                   14204:       /* --- pixel bitmap for cmmi210 char#15 \epsilon --- */
                   14205:       {  15,72353,                      /* character number, location */
                   14206:          13, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   14207:           { 10,   13, 3,25, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14208:             "\x55\x32\x72\x72\x72\x88\x2f\x42\x80\x12\x51\x45\x22" }  },
                   14209:       /* --- pixel bitmap for cmmi210 char#16 \zeta --- */
                   14210:       {  16,73265,                      /* character number, location */
                   14211:          20, 2,   -6, 2,      /* topleft row,col, and botleft row,col */
                   14212:           { 12,   26, 3,53, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14213:             "\xf1\x71\x40\x75\x66\x51\xa1\xa2\x92\xa1\xa2\xa1\xaf"
                   14214:             "\x62\xa0\x13\xa5\x85\xa3\x30\xf1\x81\x30\x31\x32\x74"
                   14215:             "\x42" }  },
                   14216:       /* --- pixel bitmap for cmmi210 char#17 \eta --- */
                   14217:       {  17,74166,                      /* character number, location */
                   14218:          13, 1,   -7, 1,      /* topleft row,col, and botleft row,col */
                   14219:           { 14,   20, 3,63, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14220:             "\x22\x45\x21\x12\x21\x42\x11\x23\x53\x23\x63\x22\x72"
                   14221:             "\xf1\x32\x72\xf3\x22\x72\x10\xf1\x12\x72\x20\xf1\xa2"
                   14222:             "\x20\xf3\x92\x30\x91\x41" }  },
                   14223:       /* --- pixel bitmap for cmmi210 char#18 \theta --- */
                   14224:       {  18,74948,                      /* character number, location */
                   14225:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   14226:           { 12,   20, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14227:             "\x80\x03\x46\x30\x84\xc1\x08\xcc\xc0\x0c\x6c\xc0\x06"
                   14228:             "\xec\xff\xff\x37\x60\x03\x36\x30\x03\x33\x10\x83\x21"
                   14229:             "\x0c\x62\xc0\x01" }  },
                   14230:       /* --- pixel bitmap for cmmi210 char#19 \iota --- */
                   14231:       {  19,75607,                      /* character number, location */
                   14232:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   14233:           {  8,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14234:             "\x18\x18\x18\x0c\x0c\x0c\x0c\x06\x86\x86\x43\x23\x1e" }  },
                   14235:       /* --- pixel bitmap for cmmi210 char#20 \kappa --- */
                   14236:       {  20,76521,                      /* character number, location */
                   14237:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   14238:           { 15,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14239:             "\x18\x70\x0c\x3e\xc6\x8c\x11\xc0\x04\xe0\x01\xf0\x0f"
                   14240:             "\x0c\x0c\x06\x46\x03\xa3\x81\x71\xc0\x34\xc0\x01" }  },
                   14241:       /* --- pixel bitmap for cmmi210 char#21 \lambda --- */
                   14242:       {  21,77366,                      /* character number, location */
                   14243:          20, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   14244:           { 14,   20, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14245:             "\x38\x00\x18\x00\x06\x00\x03\xc0\x00\x70\x00\x18\x00"
                   14246:             "\x06\x80\x03\xc0\x00\x30\x00\x1e\x40\x06\x98\x01\xc3"
                   14247:             "\x60\x30\x0c\x8c\x01\x36\x80\x05\xc0" }  },
                   14248:       /* --- pixel bitmap for cmmi210 char#22 \mu --- */
                   14249:       {  22,78386,                      /* character number, location */
                   14250:          13, 0,   -7, 0,      /* topleft row,col, and botleft row,col */
                   14251:           { 17,   20, 3,69, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14252:             "\xf2\x52\x72\x10\xf3\x42\x72\x20\x32\x72\x30\xf1\x32"
                   14253:             "\x72\x21\x32\x63\x21\x24\x41\x12\x11\x32\x15\x33\x10"
                   14254:             "\xf1\x22\xd0\xf3\x12\xe0\x11\xe0\x12" }  },
                   14255:       /* --- pixel bitmap for cmmi210 char#23 \nu --- */
                   14256:       {  23,79175,                      /* character number, location */
                   14257:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   14258:           { 15,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14259:             "\x1e\x60\x0c\x30\x06\x98\x01\xc6\x00\x63\xc0\x30\x30"
                   14260:             "\x0c\x0c\x06\x03\xc3\x80\x19\x60\x07\x70\x00\x00" }  },
                   14261:       /* --- pixel bitmap for cmmi210 char#24 \xi --- */
                   14262:       {  24,80307,                      /* character number, location */
                   14263:          20, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   14264:           { 12,   26, 3,65, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14265:             "\xf1\x71\x40\x75\x52\x14\x42\x92\x70\xf2\x22\x80\x31"
                   14266:             "\x80\xf1\x37\x20\x22\x80\xf1\x12\x9f\x22\xa3\xa4\x96"
                   14267:             "\x94\xa3\xa2\x61\x32\x74\x31" }  },
                   14268:       /* --- pixel bitmap for cmmi210 char#25 \pi --- */
                   14269:       {  25,81259,                      /* character number, location */
                   14270:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   14271:           { 15,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14272:             "\xf8\x7f\xfe\xbf\x11\x41\xc4\x00\x22\x00\x11\xc0\x08"
                   14273:             "\x20\x04\x10\x02\x0c\x03\x86\x81\xc1\xc0\x60\x00" }  },
                   14274:       /* --- pixel bitmap for cmmi210 char#26 \rho --- */
                   14275:       {  26,82109,                      /* character number, location */
                   14276:          13, 0,   -7, 0,      /* topleft row,col, and botleft row,col */
                   14277:           { 15,   20, 3,63, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14278:             "\x93\xa2\x32\x72\x51\x62\x62\xf2\x42\x72\xf1\x32\x72"
                   14279:             "\x10\x32\x62\x52\x61\x52\x11\x32\x62\x24\x50\xf1\x22"
                   14280:             "\xb0\xf3\x12\xc0\x11\xd4" }  },
                   14281:       /* --- pixel bitmap for cmmi210 char#27 \sigma --- */
                   14282:       {  27,83027,                      /* character number, location */
                   14283:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   14284:           { 16,   13, 3,43, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14285:             "\x6a\x4c\x33\x42\x62\x72\x30\xf2\x12\x82\x3f\x12\x82"
                   14286:             "\x40\x11\x72\x62\x61\x81\x42\xa4\x92" }  },
                   14287:       /* --- pixel bitmap for cmmi210 char#28 \tau --- */
                   14288:       {  28,83798,                      /* character number, location */
                   14289:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   14290:           { 14,   13, 3,37, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14291:             "\x3b\x2c\x12\x41\x71\x51\x60\xf1\x62\x60\xf1\x61\x70"
                   14292:             "\xf2\x52\x70\xf1\x42\x81" }  },
                   14293:       /* --- pixel bitmap for cmmi210 char#29 \upsilon --- */
                   14294:       {  29,84703,                      /* character number, location */
                   14295:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   14296:           { 15,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14297:             "\x1c\x20\x19\xb8\x0c\x28\x06\x94\x01\xc2\x00\x61\x80"
                   14298:             "\x18\x20\x0c\x10\x06\x04\x03\x01\x43\x00\x1e\x00" }  },
                   14299:       /* --- pixel bitmap for cmmi210 char#30 \phi --- */
                   14300:       {  30,85585,                      /* character number, location */
                   14301:          20, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   14302:           { 17,   26, 3,91, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14303:             "\xf3\xb1\x50\xf2\xa1\x60\x76\x92\x21\x32\x52\x41\x42"
                   14304:             "\x32\x51\x51\x31\x61\x52\xf1\x12\x51\x62\x02\x61\x52"
                   14305:             "\x21\x61\x52\x22\x41\x52\x41\x41\x42\x62\x21\x22\x96"
                   14306:             "\x70\xf3\x61\xa0\xf1\x51\xb2" }  },
                   14307:       /* --- pixel bitmap for cmmi210 char#31 \chi --- */
                   14308:       {  31,86646,                      /* character number, location */
                   14309:          13, 0,   -6, 0,      /* topleft row,col, and botleft row,col */
                   14310:           { 17,   19, 3,77, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14311:             "\x33\xa1\x21\x22\x81\x62\x81\x63\x61\x82\x51\x93\x31"
                   14312:             "\xb2\x21\xc2\x11\xd3\xe0\x12\xe3\xe4\xc1\x22\xb1\x32"
                   14313:             "\xa1\x52\x81\x62\x71\x73\x21\x21\x92\x21\x11\xb3\x26" }  },
                   14314:       /* --- pixel bitmap for cmmi210 char#32 \psi --- */
                   14315:       {  32,87737,                      /* character number, location */
                   14316:          20, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   14317:           { 18,   26, 3,107, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   14318:             "\xf2\xc1\x50\xf3\xb1\x60\x23\x51\x51\x21\x22\x41\x52"
                   14319:             "\x11\x22\x41\x51\x11\x32\x41\x51\x11\x22\x41\x61\x10"
                   14320:             "\xf1\x32\x41\x61\x10\x22\x51\x51\x42\x41\x61\x42\x41"
                   14321:             "\x51\x62\x31\x41\x82\x21\x22\xa6\x70\xf2\x71\xa0\xf2"
                   14322:             "\x61\xb0" }  },
                   14323:       /* --- pixel bitmap for cmmi210 char#33 \omega --- */
                   14324:       {  33,88838,                      /* character number, location */
                   14325:          13, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   14326:           { 18,   13, 3,53, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14327:             "\x32\xb1\x41\xc2\xf1\x21\xd1\x10\xf2\x11\x62\x61\x1f"
                   14328:             "\x12\x52\x61\x22\x52\x51\x42\x26\x13\x46\x16\x63\x44"
                   14329:             "\x51" }  },
                   14330:       /* --- pixel bitmap for cmmi210 char#34 \varepsilon --- */
                   14331:       {  34,89829,                      /* character number, location */
                   14332:          14, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   14333:           { 11,   15, 3,39, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14334:             "\x54\x58\x22\x52\x21\x80\xf1\x11\x90\xf1\x25\x40\x11"
                   14335:             "\x9f\x21\xa2\x61\x37\x55\x42" }  },
                   14336:       /* --- pixel bitmap for cmmi210 char#35 \vartheta --- */
                   14337:       {  35,90838,                      /* character number, location */
                   14338:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   14339:           { 15,   20, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14340:             "\x00\x1c\x80\x11\x40\x08\x10\x0c\x08\x06\x04\x03\x82"
                   14341:             "\x19\xc2\x1a\x66\x19\x7c\x06\x2c\x03\x86\x01\xc3\xc0"
                   14342:             "\x30\x60\x18\x10\x0c\x0c\x06\x03\xc6\x00\x1e\x00" }  },
                   14343:       /* --- pixel bitmap for cmmi210 char#36 \varpi --- */
                   14344:       {  36,92101,                      /* character number, location */
                   14345:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   14346:           { 22,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14347:             "\xf8\xff\x3f\xff\xff\x6f\x02\x00\x49\x00\x40\x10\x08"
                   14348:             "\x10\x02\x02\x84\xc0\x00\x11\x30\x20\x04\x0e\x08\x81"
                   14349:             "\x02\xc1\x98\x31\xe0\xe3\x07\x78\xf0\x00" }  },
                   14350:       /* --- pixel bitmap for cmmi210 char#37 \varrho --- */
                   14351:       {  37,93024,                      /* character number, location */
                   14352:          13, 2,   -6, 2,      /* topleft row,col, and botleft row,col */
                   14353:           { 13,   19, 3,57, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14354:             "\x73\x82\x32\x52\x51\x42\x62\xf2\x22\x72\xf1\x12\x72"
                   14355:             "\x10\x12\x62\x33\x51\x31\x21\x32\x41\x34\x5f\x21\xc8"
                   14356:             "\x77\xc1\x41" }  },
                   14357:       /* --- pixel bitmap for cmmi210 char#38 \varsigma --- */
                   14358:       {  38,93861,                      /* character number, location */
                   14359:          13, 2,   -3, 2,      /* topleft row,col, and botleft row,col */
                   14360:           { 10,   16, 3,35, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14361:             "\x55\x32\x41\x21\x82\x7f\x32\x83\x84\x74\x84\x20\xf1"
                   14362:             "\x62\x20\x61\x63\x41" }  },
                   14363:       /* --- pixel bitmap for cmmi210 char#39 \varphi --- */
                   14364:       {  39,94800,                      /* character number, location */
                   14365:          13, 2,   -7, 2,      /* topleft row,col, and botleft row,col */
                   14366:           { 16,   20, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14367:             "\x04\x38\x04\x7e\x02\xc3\x02\x81\x81\x80\x81\x80\x41"
                   14368:             "\x80\x41\x40\x41\x60\x23\x30\x2e\x1c\xfc\x0f\xf0\x03"
                   14369:             "\x30\x00\x10\x00\x10\x00\x18\x00\x18\x00\x18\x00\x08"
                   14370:             "\x00" }  },
                   14371:       /* --- pixel bitmap for cmmi210 char#40 \leftharpoonup --- */
                   14372:       {  40,110784,                     /* character number, location */
                   14373:          15, 2,    6, 2,      /* topleft row,col, and botleft row,col */
                   14374:           { 25,    9, 3,36, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14375:             "\xf1\x62\xe0\x30\xf1\x52\xe0\x40\x42\xe0\x83\xe0\x73"
                   14376:             "\xe0\x7e\x0e\x0e\x07" }  },
                   14377:       /* --- pixel bitmap for cmmi210 char#41 \leftharpoondown --- */
                   14378:       {  41,111816,                     /* character number, location */
                   14379:           8, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   14380:           { 25,    9, 3,37, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14381:             "\x0e\x0b\x1e\x0a\x23\xe0\x93\xe0\x92\xe0\x50\xf1\x52"
                   14382:             "\xe0\x40\xf1\x62\xe0\x31" }  },
                   14383:       /* --- pixel bitmap for cmmi210 char#42 \rightharpoonup --- */
                   14384:       {  42,112846,                     /* character number, location */
                   14385:          15, 2,    6, 2,      /* topleft row,col, and botleft row,col */
                   14386:           { 25,    9, 3,34, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14387:             "\xf1\xe0\x32\x60\xf1\xe0\x42\x50\xe0\x52\xe0\x93\xe0"
                   14388:             "\x93\x2f\x1e\x0b" }  },
                   14389:       /* --- pixel bitmap for cmmi210 char#43 \rightharpoondown --- */
                   14390:       {  43,113879,                     /* character number, location */
                   14391:           8, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   14392:           { 25,    9, 3,35, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14393:             "\xf1\x0e\x0b\xe0\x63\xe0\x73\xe0\x82\x40\xf1\xe0\x42"
                   14394:             "\x50\xf1\xe0\x32\x60" }  },
                   14395:       /* --- pixel bitmap for cmmi210 char#44 ` --- */
                   14396:       {  44,114304,                     /* character number, location */
                   14397:          14, 2,    6, 2,      /* topleft row,col, and botleft row,col */
                   14398:           {  4,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14399:             "\xfe\x33\x33\xef" }  },
                   14400:       /* --- pixel bitmap for cmmi210 char#45 ' --- */
                   14401:       {  45,114728,                     /* character number, location */
                   14402:          14, 2,    6, 2,      /* topleft row,col, and botleft row,col */
                   14403:           {  4,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14404:             "\xf7\xcc\xcc\x7f" }  },
                   14405:       /* --- pixel bitmap for cmmi210 char#46 \triangleright --- */
                   14406:       {  46,115269,                     /* character number, location */
                   14407:          14, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   14408:           { 13,   14, 3,43, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14409:             "\x02\xb4\x96\x72\x23\x62\x34\x42\x54\x2f\x12\x74\x02"
                   14410:             "\x54\x22\x34\x42\x23\x66\x74\x92\xb4" }  },
                   14411:       /* --- pixel bitmap for cmmi210 char#47 \triangleleft --- */
                   14412:       {  47,115837,                     /* character number, location */
                   14413:          14, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   14414:           { 13,   14, 3,42, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14415:             "\xb2\x94\x76\x54\x22\x43\x42\x24\x52\x0f\x14\x72\x24"
                   14416:             "\x52\x43\x42\x54\x22\x76\x94\xb2" }  },
                   14417:       /* --- pixel bitmap for cmmi210 char#48 \0 --- */
                   14418:       {  48,101197,                     /* character number, location */
                   14419:          14, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   14420:           { 13,   15, 3,35, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14421:             "\x45\x62\x52\x32\x72\x21\x91\x1f\x62\x92\x11\x91\x22"
                   14422:             "\x72\x32\x52\x65\x41" }  },
                   14423:       /* --- pixel bitmap for cmmi210 char#49 \1 --- */
                   14424:       {  49,101980,                     /* character number, location */
                   14425:          14, 3,    0, 3,      /* topleft row,col, and botleft row,col */
                   14426:           { 10,   14, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14427:             "\x51\x46\x40\xfa\x42\x4a" }  },
                   14428:       /* --- pixel bitmap for cmmi210 char#50 \2 --- */
                   14429:       {  50,102954,                     /* character number, location */
                   14430:          14, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   14431:           { 13,   14, 3,41, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14432:             "\x45\x62\x52\x32\x72\x10\xf1\x13\x72\xb2\xb1\xb2\x92"
                   14433:             "\x93\x92\x51\x32\x71\x1b\x1c\x13" }  },
                   14434:       /* --- pixel bitmap for cmmi210 char#51 \3 --- */
                   14435:       {  51,103989,                     /* character number, location */
                   14436:          14, 1,   -7, 1,      /* topleft row,col, and botleft row,col */
                   14437:           { 13,   21, 3,65, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14438:             "\x45\x71\x52\x41\x71\x20\xf1\x13\x62\x10\x21\x72\xb1"
                   14439:             "\xb2\xa2\x75\xd2\xc2\xc1\xc2\x11\x92\x0f\x13\x82\x01"
                   14440:             "\xa1\x21\x82\x32\x52\x65\x41" }  },
                   14441:       /* --- pixel bitmap for cmmi210 char#52 \4 --- */
                   14442:       {  52,104936,                     /* character number, location */
                   14443:          14, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   14444:           { 13,   20, 3,56, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14445:             "\xf1\x82\x30\x73\x94\x91\x12\x81\x22\x72\x22\x71\x32"
                   14446:             "\x61\x42\x52\x42\x51\x52\x41\x62\x32\x62\x3d\xf4\x82"
                   14447:             "\x30\x58" }  },
                   14448:       /* --- pixel bitmap for cmmi210 char#53 \5 --- */
                   14449:       {  53,105989,                     /* character number, location */
                   14450:          14, 1,   -7, 1,      /* topleft row,col, and botleft row,col */
                   14451:           { 13,   21, 3,67, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14452:             "\x22\x52\x48\x51\x14\x50\xf3\x21\xa0\x21\x24\x61\x11"
                   14453:             "\x42\x42\x62\x31\x72\x10\xf2\xb2\x0f\x13\x82\x02\x92"
                   14454:             "\x11\x82\x21\x81\x42\x42\x75\x42" }  },
                   14455:       /* --- pixel bitmap for cmmi210 char#54 \6 --- */
                   14456:       {  54,106908,                     /* character number, location */
                   14457:          20, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   14458:           { 13,   21, 3,67, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14459:             "\x64\x72\x41\x52\x43\x32\x53\x31\xb2\xb1\xb2\x34\x42"
                   14460:             "\x12\x41\x33\x71\x23\x72\x1f\x32\x92\x11\x92\x12\x82"
                   14461:             "\x12\x72\x31\x71\x52\x41\x75\x42" }  },
                   14462:       /* --- pixel bitmap for cmmi210 char#55 \7 --- */
                   14463:       {  55,107837,                     /* character number, location */
                   14464:          14, 2,   -7, 2,      /* topleft row,col, and botleft row,col */
                   14465:           { 13,   21, 3,57, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14466:             "\x11\xcc\x1b\x21\x91\x11\x91\x21\x81\x30\xf1\x81\x40"
                   14467:             "\x71\x50\xf1\x61\x60\xf1\x52\x60\xf2\x42\x70\xf3\x33"
                   14468:             "\x70\x41\x81" }  },
                   14469:       /* --- pixel bitmap for cmmi210 char#56 \8 --- */
                   14470:       {  56,108770,                     /* character number, location */
                   14471:          20, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   14472:           { 13,   21, 3,65, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14473:             "\x45\x72\x32\x52\x52\x20\xf2\x12\x72\x10\x13\x62\x33"
                   14474:             "\x42\x53\x22\x74\x95\x62\x43\x32\x63\x21\x83\x0f\x32"
                   14475:             "\x92\x12\x72\x32\x52\x65\x45" }  },
                   14476:       /* --- pixel bitmap for cmmi210 char#57 \9 --- */
                   14477:       {  57,109697,                     /* character number, location */
                   14478:          14, 1,   -7, 1,      /* topleft row,col, and botleft row,col */
                   14479:           { 13,   21, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14480:             "\xf0\x01\x41\x10\x10\x03\x36\xc0\x06\xd0\x00\x1e\xc0"
                   14481:             "\x03\x78\x00\x1b\x70\x02\x8e\xb0\xe1\x31\x00\x02\x60"
                   14482:             "\x00\xcc\xc1\x38\x08\xc2\x80\x0f\x00" }  },
                   14483:       /* --- pixel bitmap for cmmi210 char#58 . --- */
                   14484:       {  58,116334,                     /* character number, location */
                   14485:           3, 3,    0, 3,      /* topleft row,col, and botleft row,col */
                   14486:           {  3,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14487:             "\xba\x00" }  },
                   14488:       /* --- pixel bitmap for cmmi210 char#59 , --- */
                   14489:       {  59,116895,                     /* character number, location */
                   14490:           3, 3,   -6, 3,      /* topleft row,col, and botleft row,col */
                   14491:           {  3,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14492:             "\xba\x49\x4a\x01" }  },
                   14493:       /* --- pixel bitmap for cmmi210 char#60 < --- */
                   14494:       {  60,117559,                     /* character number, location */
                   14495:          16, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
                   14496:           { 19,   18, 3,58, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14497:             "\xe0\x32\xe0\x14\xd4\xd4\xc5\xc5\xc4\xd4\xdf\x14\xe0"
                   14498:             "\x10\x24\xe0\x34\xe0\x35\xe0\x25\xe0\x34\xe0\x34\xe0"
                   14499:             "\x34\xe0\x32" }  },
                   14500:       /* --- pixel bitmap for cmmi210 char#61 / --- */
                   14501:       {  61,118097,                     /* character number, location */
                   14502:          22, 2,   -7, 2,      /* topleft row,col, and botleft row,col */
                   14503:           { 11,   29, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14504:             "\x00\x06\x30\xc0\x01\x06\x30\xc0\x01\x06\x30\xc0\x01"
                   14505:             "\x06\x30\xc0\x01\x06\x30\xc0\x01\x06\x30\xc0\x01\x06"
                   14506:             "\x30\xc0\x01\x06\x30\xc0\x01\x06\x30\xc0\x01\x06\x30"
                   14507:             "\x00" }  },
                   14508:       /* --- pixel bitmap for cmmi210 char#62 > --- */
                   14509:       {  62,118804,                     /* character number, location */
                   14510:          16, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
                   14511:           { 19,   18, 3,59, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14512:             "\x02\xe0\x34\xe0\x34\xe0\x34\xe0\x35\xe0\x25\xe0\x34"
                   14513:             "\xe0\x34\x20\xf1\xe0\x14\xd4\xd4\xc5\xc5\xc4\xd4\xd4"
                   14514:             "\xe0\x12\xe0\x32" }  },
                   14515:       /* --- pixel bitmap for cmmi210 char#63 \star --- */
                   14516:       {  63,119517,                     /* character number, location */
                   14517:          15,-1,   -1,-1,      /* topleft row,col, and botleft row,col */
                   14518:           { 17,   16, 3,41, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14519:             "\xf5\x81\x84\x41\x44\x3b\x87\xc3\xd2\x12\xc1\x31\xb2"
                   14520:             "\x32\x92\x52\x81\x71\x71\x91\x34" }  },
                   14521:       /* --- pixel bitmap for cmmi210 char#64 \partial --- */
                   14522:       {  64,95804,                      /* character number, location */
                   14523:          21, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   14524:           { 16,   22, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14525:             "\x80\x0f\x40\x10\x20\x20\x70\x60\x70\x40\x00\xc0\x00"
                   14526:             "\xc0\x80\xc7\x60\xd8\x10\xd0\x08\xe0\x0c\x60\x06\x60"
                   14527:             "\x06\x60\x06\x20\x03\x30\x03\x10\x03\x18\x02\x0c\x06"
                   14528:             "\x04\x0c\x03\xf8\x00" }  },
                   14529:       /* --- pixel bitmap for cmmi210 char#65 A --- */
                   14530:       {  65, 1026,                      /* character number, location */
                   14531:          21, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   14532:           { 20,   21, 3,88, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14533:             "\xf1\xe2\x40\xf1\xd3\x40\xc1\x12\xe0\x12\x12\xe0\x11"
                   14534:             "\x22\xe1\x32\xe1\x42\x30\xf1\x91\x52\x30\x81\x62\xa1"
                   14535:             "\x72\xaa\x30\xf1\x61\x82\x30\x51\x92\x30\xf1\x41\xa2"
                   14536:             "\x30\x32\xa3\x27\x58" }  },
                   14537:       /* --- pixel bitmap for cmmi210 char#66 B --- */
                   14538:       {  66, 2400,                      /* character number, location */
                   14539:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   14540:           { 21,   20, 3,71, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14541:             "\x5d\xb2\x73\x10\xf3\x72\xa2\x62\xa2\x72\x92\x82\x82"
                   14542:             "\x9b\x92\x92\x30\xf1\x52\xa2\x20\x52\xb2\x10\xf1\x42"
                   14543:             "\xb2\x20\x42\xa2\x72\x93\x62\x92\x5e\x70" }  },
                   14544:       /* --- pixel bitmap for cmmi210 char#67 C --- */
                   14545:       {  67, 3385,                      /* character number, location */
                   14546:          21, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   14547:           { 20,   22, 3,81, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14548:             "\xa5\x41\x82\x51\x22\x62\x81\x12\x52\xa2\x52\xb2\x42"
                   14549:             "\xc2\x32\xd2\x32\xd1\x20\xf2\x12\xe0\x3f\x22\xe0\x42"
                   14550:             "\xe1\x3f\x12\xd1\x40\x11\xc1\x62\xa1\x82\x81\xa2\x52"
                   14551:             "\xd5\xa2" }  },
                   14552:       /* --- pixel bitmap for cmmi210 char#68 D --- */
                   14553:       {  68, 4571,                      /* character number, location */
                   14554:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   14555:           { 22,   20, 3,63, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14556:             "\x5d\xc2\x73\x92\xa1\x92\xa2\x82\xb1\x82\xb2\xf3\x62"
                   14557:             "\xc2\xf2\x52\xc2\x10\x52\xb2\x62\xc2\x62\xb2\x72\xa2"
                   14558:             "\x82\x92\x82\x82\x7d\x91" }  },
                   14559:       /* --- pixel bitmap for cmmi210 char#69 E --- */
                   14560:       {  69, 6036,                      /* character number, location */
                   14561:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   14562:           { 21,   20, 3,83, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14563:             "\x5e\x02\x82\x83\xf2\x72\xa2\x72\xa1\x72\x61\x41\x10"
                   14564:             "\xf1\x62\x61\x60\x69\x60\xf1\x52\x61\x70\x52\x61\x51"
                   14565:             "\x62\xb1\x20\xf1\x42\xc1\x20\x42\xb1\x72\xa2\x62\xa3"
                   14566:             "\x3e\x03\x43" }  },
                   14567:       /* --- pixel bitmap for cmmi210 char#70 F --- */
                   14568:       {  70, 7309,                      /* character number, location */
                   14569:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   14570:           { 21,   20, 3,65, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14571:             "\x5e\x02\x82\x83\xf2\x72\xa2\x72\xa1\x72\x61\x41\x10"
                   14572:             "\xf1\x62\x61\x60\x69\x60\xf2\x52\x61\x70\x52\xe0\xf3"
                   14573:             "\x42\xe0\x10\x32\xe0\x29\xc0" }  },
                   14574:       /* --- pixel bitmap for cmmi210 char#71 G --- */
                   14575:       {  71, 8504,                      /* character number, location */
                   14576:          21, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   14577:           { 21,   22, 3,87, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14578:             "\xa6\x41\x82\x61\x22\x62\x91\x12\x52\xb2\x52\xc2\x42"
                   14579:             "\xd2\x41\xe2\x32\xe1\x20\xf2\x12\xe0\x42\xe0\x52\xa8"
                   14580:             "\x1f\x12\xe2\x32\xd2\x51\xd2\x52\xc2\x52\xb3\x62\xa2"
                   14581:             "\x82\x63\x11\xa6\xa8" }  },
                   14582:       /* --- pixel bitmap for cmmi210 char#72 H --- */
                   14583:       {  72, 9751,                      /* character number, location */
                   14584:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   14585:           { 25,   20, 3,55, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14586:             "\x58\x48\x82\xa2\x30\xf3\x72\xa2\x40\xf2\x62\xa2\x50"
                   14587:             "\x6e\x50\xf3\x52\xa2\x60\xf3\x42\xa2\x70\x32\xa2\x88"
                   14588:             "\x48\x52" }  },
                   14589:       /* --- pixel bitmap for cmmi210 char#73 I --- */
                   14590:       {  73,10520,                      /* character number, location */
                   14591:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   14592:           { 13,   20, 3,35, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14593:             "\x58\x82\x30\xf3\x72\x40\xf3\x62\x50\xf3\x52\x60\xf3"
                   14594:             "\x42\x70\x32\x88\x52" }  },
                   14595:       /* --- pixel bitmap for cmmi210 char#74 J --- */
                   14596:       {  74,11380,                      /* character number, location */
                   14597:          20, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
                   14598:           { 16,   21, 3,49, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14599:             "\x88\xc2\x20\xf3\xb2\x30\xf3\xa2\x40\xf3\x92\x50\x82"
                   14600:             "\x71\x62\x63\x52\x62\x52\x71\x62\x81\x32\xb4\xa2" }  },
                   14601:       /* --- pixel bitmap for cmmi210 char#75 K --- */
                   14602:       {  75,12621,                      /* character number, location */
                   14603:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   14604:           { 25,   20, 3,101, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   14605:             "\x58\x57\x82\xa2\xa2\xa2\xb2\x91\xd2\x81\xe2\x61\xe0"
                   14606:             "\x12\x61\xe0\x22\x51\xe0\x32\x33\xe0\x32\x21\x12\xe0"
                   14607:             "\x22\x21\x32\xe0\x12\x11\x42\xa0\xf1\x52\x72\x90\xf1"
                   14608:             "\x42\x92\x80\xf1\x42\xa2\x70\x32\xb3\x68\x67\x40" }  },
                   14609:       /* --- pixel bitmap for cmmi210 char#76 L --- */
                   14610:       {  76,13618,                      /* character number, location */
                   14611:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   14612:           { 18,   20, 3,53, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14613:             "\x59\xc2\x80\xf3\x72\x90\xf3\x62\xa0\xf2\x52\xb0\x52"
                   14614:             "\xa1\xf1\x42\xa1\x10\x42\x91\x62\x82\x52\x74\x2e\x01"
                   14615:             "\x32" }  },
                   14616:       /* --- pixel bitmap for cmmi210 char#77 M --- */
                   14617:       {  77,14956,                      /* character number, location */
                   14618:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   14619:           { 30,   20, 3,141, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   14620:             "\x56\xd6\x83\xd3\xa1\x12\xc3\x40\xf1\x71\x12\xb1\x12"
                   14621:             "\x40\x71\x12\xa1\x22\xa1\x22\x91\x22\xb1\x32\x81\x22"
                   14622:             "\xb1\x32\x71\x32\xb1\x32\x61\x42\xa1\x42\x61\x32\xb1"
                   14623:             "\x42\x51\x42\xb1\x42\x41\x52\xb1\x52\x31\x52\xa1\x62"
                   14624:             "\x21\x52\x70\xf1\x41\x62\x11\x62\x70\x41\x63\x72\xa2"
                   14625:             "\x62\x72\x87\x42\x48\x50" }  },
                   14626:       /* --- pixel bitmap for cmmi210 char#78 N --- */
                   14627:       {  78,16182,                      /* character number, location */
                   14628:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   14629:           { 25,   20, 3,107, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   14630:             "\x55\x87\x82\xa2\x30\xf1\x71\x12\x91\x40\xf1\x71\x22"
                   14631:             "\x81\x40\x61\x32\x71\x50\xf1\x61\x42\x61\x50\x61\x52"
                   14632:             "\x51\xa1\x62\x41\x60\xf1\x51\x72\x31\x60\x51\x81\x31"
                   14633:             "\x60\xf1\x41\x92\x11\x70\xf1\x41\xa3\x70\x32\xb1\x87"
                   14634:             "\x91\x82" }  },
                   14635:       /* --- pixel bitmap for cmmi210 char#79 O --- */
                   14636:       {  79,17117,                      /* character number, location */
                   14637:          21, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   14638:           { 20,   22, 3,73, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14639:             "\xa5\xd2\x52\x92\x82\x72\xa2\x52\xc1\x42\xd2\xf1\x22"
                   14640:             "\xe2\xf2\x12\xe0\x12\x0f\x22\xe0\x12\x1f\x12\xe2\x22"
                   14641:             "\xd2\x42\xb2\x52\xa2\x72\x82\x92\x52\xd5\xa1" }  },
                   14642:       /* --- pixel bitmap for cmmi210 char#80 P --- */
                   14643:       {  80,18252,                      /* character number, location */
                   14644:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   14645:           { 21,   20, 3,59, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14646:             "\x5d\xb2\x73\x82\x92\x10\xf2\x72\xa2\xf1\x62\xa2\x10"
                   14647:             "\x62\x92\x82\x73\x8a\x60\xf2\x52\xe0\xf3\x42\xe0\x10"
                   14648:             "\x32\xe0\x28\xd2" }  },
                   14649:       /* --- pixel bitmap for cmmi210 char#81 Q --- */
                   14650:       {  81,19299,                      /* character number, location */
                   14651:          21, 2,   -6, 2,      /* topleft row,col, and botleft row,col */
                   14652:           { 20,   27, 3,105, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   14653:             "\xa5\xd2\x52\x92\x82\x72\xa2\x52\xb2\x42\xd2\xf1\x22"
                   14654:             "\xe2\xf2\x12\xe0\x12\x0f\x22\xe0\x12\x1f\x12\xe2\x22"
                   14655:             "\xd2\x42\x43\x42\x52\x31\x31\x22\x72\x11\x41\x12\x93"
                   14656:             "\x42\x41\x86\x51\xd1\x42\xd1\x41\xe1\x32\xe5\xe0\x23"
                   14657:             "\x61" }  },
                   14658:       /* --- pixel bitmap for cmmi210 char#82 R --- */
                   14659:       {  82,20686,                      /* character number, location */
                   14660:          20, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   14661:           { 21,   21, 3,83, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14662:             "\x5c\xc2\x63\x92\x82\x20\xf2\x72\x92\x10\x62\x92\x82"
                   14663:             "\x82\x92\x63\xa9\xb2\x72\xa2\x81\x50\xf1\x52\x82\x40"
                   14664:             "\xf2\x42\x82\x50\x42\x82\x41\x32\x92\x31\x18\x62\x21"
                   14665:             "\xe0\x33\x36" }  },
                   14666:       /* --- pixel bitmap for cmmi210 char#83 S --- */
                   14667:       {  83,21809,                      /* character number, location */
                   14668:          21, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   14669:           { 17,   22, 3,75, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14670:             "\x85\x31\x72\x41\x21\x61\x73\x52\x72\x10\xf2\x42\x91"
                   14671:             "\x10\xf1\x42\xb0\x45\xd7\xd5\x40\xf2\xb2\x40\xf2\x11"
                   14672:             "\x92\x40\x11\x82\x53\x71\x61\x21\x42\x71\x35\x82" }  },
                   14673:       /* --- pixel bitmap for cmmi210 char#84 T --- */
                   14674:       {  84,22905,                      /* character number, location */
                   14675:          20, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   14676:           { 20,   20, 3,65, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14677:             "\x3e\x03\x23\x62\x52\x21\x72\x62\x21\x72\x71\x11\x82"
                   14678:             "\x71\x11\x82\x61\x11\x82\x71\x10\xf2\x92\x90\xf3\x82"
                   14679:             "\xa0\xf3\x72\xb0\x62\xea\x81" }  },
                   14680:       /* --- pixel bitmap for cmmi210 char#85 U --- */
                   14681:       {  85,23919,                      /* character number, location */
                   14682:          20, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   14683:           { 21,   21, 3,61, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14684:             "\x18\x57\x42\xa2\x30\xf3\x32\xb1\x40\xf3\x22\xb1\x50"
                   14685:             "\xf3\x12\xb1\x6f\x12\xb1\x70\x11\xa1\x92\x81\xa2\x71"
                   14686:             "\xc2\x51\xe0\x15\xc2" }  },
                   14687:       /* --- pixel bitmap for cmmi210 char#86 V --- */
                   14688:       {  86,24867,                      /* character number, location */
                   14689:          20, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   14690:           { 20,   21, 3,89, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14691:             "\x07\x76\x22\xc2\x42\xc1\x52\xb1\x40\xf1\x22\xa1\x50"
                   14692:             "\xf1\x32\x81\x60\x32\x71\x70\xf1\x32\x61\x80\x32\x51"
                   14693:             "\xc2\x42\xc2\x41\xd3\x21\xe0\x12\x21\xe0\x12\x11\xc0"
                   14694:             "\xf1\x43\xd0\xf1\x42\xe2" }  },
                   14695:       /* --- pixel bitmap for cmmi210 char#87 W --- */
                   14696:       {  87,26276,                      /* character number, location */
                   14697:          20, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   14698:           { 29,   21, 3,139, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   14699:             "\x08\x47\x46\x32\x93\x82\x52\x83\x91\x62\x81\x12\x81"
                   14700:             "\x62\x71\x22\x71\x72\x71\x22\x61\x82\x61\x32\x61\x82"
                   14701:             "\x61\x32\x51\x92\x51\x42\x51\x92\x42\x42\x41\xa2\x41"
                   14702:             "\x52\x41\x70\xf1\x32\x31\x62\x31\x80\xf1\x32\x21\x72"
                   14703:             "\x21\x90\xf1\x32\x11\x82\x11\xa0\xf1\x33\x93\xb0\x32"
                   14704:             "\xa2\xe0\x12\xa1\xd8" }  },
                   14705:       /* --- pixel bitmap for cmmi210 char#88 X --- */
                   14706:       {  88,27491,                      /* character number, location */
                   14707:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   14708:           { 24,   20, 3,89, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14709:             "\x58\x47\x82\x83\xb3\x71\xe2\x62\xe2\x52\xe0\x22\x32"
                   14710:             "\xe0\x32\x31\xe0\x43\x11\x90\xf2\xb3\xa0\xa1\x12\xe0"
                   14711:             "\x51\x32\xe0\x31\x42\xe0\x21\x62\xe1\x72\xd1\x83\xb2"
                   14712:             "\x92\xa2\xa3\x67\x67\x41" }  },
                   14713:       /* --- pixel bitmap for cmmi210 char#89 Y --- */
                   14714:       {  89,28589,                      /* character number, location */
                   14715:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   14716:           { 21,   20, 3,67, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14717:             "\x08\x76\x32\xc2\x53\xa1\x82\x91\x92\x82\xa2\x71\xb2"
                   14718:             "\x61\xc3\x41\xe2\x31\xe0\x12\x21\xe0\x24\xb0\xf2\x72"
                   14719:             "\xc0\xf3\x62\xd0\x52\xe0\x28\xb2" }  },
                   14720:       /* --- pixel bitmap for cmmi210 char#90 Z --- */
                   14721:       {  90,29694,                      /* character number, location */
                   14722:          20, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   14723:           { 19,   20, 3,81, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14724:             "\x5e\x53\x82\x52\x92\x62\x82\x71\x82\x81\x73\x71\x82"
                   14725:             "\xe0\x22\xe0\x22\xe0\x22\xe0\x22\xe0\x22\xe0\x22\x81"
                   14726:             "\x72\x91\x63\x81\x72\x91\x62\x92\x52\xa2\x42\x93\x4e"
                   14727:             "\x01\x42" }  },
                   14728:       /* --- pixel bitmap for cmmi210 char#91 \flat --- */
                   14729:       {  91,120222,                     /* character number, location */
                   14730:          22, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   14731:           {  7,   23, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14732:             "\x81\x40\x20\x10\x08\x04\x02\x9d\x59\x38\x1c\x0e\x87"
                   14733:             "\x63\xb1\x48\xa6\x51\x18\x04\x00" }  },
                   14734:       /* --- pixel bitmap for cmmi210 char#92 \natural --- */
                   14735:       {  92,121001,                     /* character number, location */
                   14736:          22, 2,   -7, 2,      /* topleft row,col, and botleft row,col */
                   14737:           {  7,   29, 3,34, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14738:             "\xf6\x01\x61\x43\x1a\x13\x41\x0f\x81\x51\x01\x43\x1a"
                   14739:             "\x13\x41\xf4\x61" }  },
                   14740:       /* --- pixel bitmap for cmmi210 char#93 \sharp --- */
                   14741:       {  93,121892,                     /* character number, location */
                   14742:          21, 2,   -7, 2,      /* topleft row,col, and botleft row,col */
                   14743:           {  7,   28, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14744:             "\x20\x91\x48\x24\x12\x89\xfd\xbf\x91\x48\x24\x12\x89"
                   14745:             "\x44\x22\x91\x48\xec\xff\x8d\x44\x22\x91\x48\x00" }  },
                   14746:       /* --- pixel bitmap for cmmi210 char#94 \smile --- */
                   14747:       {  94,122842,                     /* character number, location */
                   14748:          11, 2,    4, 2,      /* topleft row,col, and botleft row,col */
                   14749:           { 25,    7, 3,35, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14750:             "\x01\xe0\x91\x11\xe0\x71\x31\xe0\x51\x52\xe0\x12\x74"
                   14751:             "\x94\xad\xe0\x17\x92" }  },
                   14752:       /* --- pixel bitmap for cmmi210 char#95 \frown --- */
                   14753:       {  95,123716,                     /* character number, location */
                   14754:          12, 2,    4, 2,      /* topleft row,col, and botleft row,col */
                   14755:           { 25,    8, 3,38, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14756:             "\xc1\xe0\x5b\xce\x01\x92\xd2\x71\xe0\x31\x51\xe0\x51"
                   14757:             "\x31\xe0\x71\x11\xe0\x91" }  },
                   14758:       /* --- pixel bitmap for cmmi210 char#96 \ell --- */
                   14759:       {  96,96600,                      /* character number, location */
                   14760:          20, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   14761:           { 12,   20, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14762:             "\x00\x06\x98\x80\x08\x8c\x40\x08\x46\x20\x04\x23\x30"
                   14763:             "\x01\x13\x98\x80\x05\x38\x80\x01\x18\xc0\x01\x1a\x90"
                   14764:             "\x81\x10\x06\x1e" }  },
                   14765:       /* --- pixel bitmap for cmmi210 char#97 a --- */
                   14766:       {  97,30648,                      /* character number, location */
                   14767:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   14768:           { 14,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14769:             "\xc0\x19\x8c\x86\xc1\x31\x30\x06\x8c\x01\x63\xc0\x0c"
                   14770:             "\x18\x03\xa6\x80\x69\x70\x12\x5a\x78\x1c" }  },
                   14771:       /* --- pixel bitmap for cmmi210 char#98 b --- */
                   14772:       {  98,31502,                      /* character number, location */
                   14773:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   14774:           { 12,   20, 3,57, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14775:             "\x15\xa2\x60\xf3\x32\x70\x22\xa2\x23\x54\x32\x32\x61"
                   14776:             "\x10\xf3\x12\x72\x0f\x12\x72\x10\x11\x62\x32\x51\x51"
                   14777:             "\x32\x74\x54" }  },
                   14778:       /* --- pixel bitmap for cmmi210 char#99 c --- */
                   14779:       {  99,32349,                      /* character number, location */
                   14780:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   14781:           { 12,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14782:             "\xc0\x03\x43\x18\xce\x70\x06\x60\x00\x06\x30\x00\x03"
                   14783:             "\x20\x80\x06\xc4\x30\xf8\x00" }  },
                   14784:       /* --- pixel bitmap for cmmi210 char#100 d --- */
                   14785:       { 100,33323,                      /* character number, location */
                   14786:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   14787:           { 15,   20, 3,73, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14788:             "\xa5\xd2\xf3\xc2\x10\xb2\x83\x22\x62\x31\x12\x52\x53"
                   14789:             "\x42\x62\x30\xf2\x12\x72\x32\x72\x42\x72\x21\x21\x72"
                   14790:             "\x21\x22\x53\x21\x31\x41\x12\x11\x54\x33\x22" }  },
                   14791:       /* --- pixel bitmap for cmmi210 char#101 e --- */
                   14792:       { 101,34184,                      /* character number, location */
                   14793:          13, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   14794:           { 11,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14795:             "\xe0\xc1\x10\x03\x0d\x34\xa0\xff\x0c\x20\x00\x01\x18"
                   14796:             "\xe0\x80\x0c\xc3\x07" }  },
                   14797:       /* --- pixel bitmap for cmmi210 char#102 f --- */
                   14798:       { 102,35338,                      /* character number, location */
                   14799:          20, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   14800:           { 14,   26, 3,61, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14801:             "\xb2\xa2\x12\x95\x92\x12\xf2\x82\x40\x58\x92\x40\xf4"
                   14802:             "\x72\x50\xf4\x62\x60\x61\x70\xf1\x52\x70\x12\x22\x73"
                   14803:             "\x21\x82\x21\xa3\xa1" }  },
                   14804:       /* --- pixel bitmap for cmmi210 char#103 g --- */
                   14805:       { 103,36321,                      /* character number, location */
                   14806:          13, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   14807:           { 14,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14808:             "\x80\x33\x18\x0d\x83\x63\x60\x0c\x18\x03\xc6\x80\x19"
                   14809:             "\x30\x06\x0c\x01\xc3\xe0\x20\x1c\xf0\x06\x80\x01\x60"
                   14810:             "\x18\x0c\x07\xc3\x70\xe0\x07\x00" }  },
                   14811:       /* --- pixel bitmap for cmmi210 char#104 h --- */
                   14812:       { 104,37268,                      /* character number, location */
                   14813:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   14814:           { 15,   20, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14815:             "\x7c\x00\x30\x00\x0c\x00\x06\x00\x03\x80\x01\x60\x00"
                   14816:             "\x30\x1f\x58\x18\x1c\x0c\x07\x86\x01\xc3\x80\x61\xc0"
                   14817:             "\x18\x30\x0c\x98\x06\x46\x03\xd3\x80\x69\x80\x03" }  },
                   14818:       /* --- pixel bitmap for cmmi210 char#105 i --- */
                   14819:       { 105,38154,                      /* character number, location */
                   14820:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   14821:           {  8,   20, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14822:             "\x60\xe0\x60\x00\x00\x00\x00\x1c\x32\x32\x31\x19\x18"
                   14823:             "\x18\x0c\x4c\x4c\x26\x26\x1c" }  },
                   14824:       /* --- pixel bitmap for cmmi210 char#106 j --- */
                   14825:       { 106,39113,                      /* character number, location */
                   14826:          20,-1,   -6,-1,      /* topleft row,col, and botleft row,col */
                   14827:           { 13,   26, 3,65, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14828:             "\xa2\xb3\xa2\x10\xf3\xd0\x73\x91\x22\x71\x42\x61\x32"
                   14829:             "\x61\x42\x20\xf1\x92\x20\xf3\x82\x30\xf3\x72\x40\x12"
                   14830:             "\x32\x53\x32\x52\x32\x74\x82" }  },
                   14831:       /* --- pixel bitmap for cmmi210 char#107 k --- */
                   14832:       { 107,40142,                      /* character number, location */
                   14833:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   14834:           { 14,   20, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14835:             "\x7c\x00\x18\x00\x03\xc0\x00\x30\x00\x0c\x80\x01\x60"
                   14836:             "\x70\x18\x3a\x46\xce\x88\xb1\x01\x1c\x00\x7f\x60\x38"
                   14837:             "\x18\x4c\x06\x93\xc1\x34\xb0\x0c\x18" }  },
                   14838:       /* --- pixel bitmap for cmmi210 char#108 l --- */
                   14839:       { 108,40888,                      /* character number, location */
                   14840:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   14841:           {  6,   20, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14842:             "\x3c\x8c\x61\x18\xc6\x30\x0c\x63\x18\x86\x31\x4c\xd3"
                   14843:             "\xb4\x18" }  },
                   14844:       /* --- pixel bitmap for cmmi210 char#109 m --- */
                   14845:       { 109,42149,                      /* character number, location */
                   14846:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   14847:           { 23,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14848:             "\x0c\x0f\x0f\x6d\x6c\x8c\x0c\x0e\x26\x07\x07\x93\x81"
                   14849:             "\x81\xc1\xc0\xc0\x60\x60\x60\x18\x18\x18\x0c\x0c\x4c"
                   14850:             "\x06\x06\x26\x03\x83\xc9\xc0\xc0\x64\x60\xc0\x01" }  },
                   14851:       /* --- pixel bitmap for cmmi210 char#110 n --- */
                   14852:       { 110,43210,                      /* character number, location */
                   14853:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   14854:           { 15,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14855:             "\x0c\x0f\x6d\x8c\x0c\x26\x07\x93\x81\xc1\xc0\x60\x60"
                   14856:             "\x18\x18\x0c\x4c\x06\x26\x83\xc9\xc0\x64\xc0\x01" }  },
                   14857:       /* --- pixel bitmap for cmmi210 char#111 o --- */
                   14858:       { 111,43954,                      /* character number, location */
                   14859:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   14860:           { 14,   13, 3,43, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14861:             "\x65\x72\x51\x52\x62\x32\x82\xf2\x12\x92\x0f\x12\x92"
                   14862:             "\x10\x11\x82\x32\x62\x52\x42\x75\x62" }  },
                   14863:       /* --- pixel bitmap for cmmi210 char#112 p --- */
                   14864:       { 112,44954,                      /* character number, location */
                   14865:          13,-1,   -6,-1,      /* topleft row,col, and botleft row,col */
                   14866:           { 16,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14867:             "\x30\x1c\x68\x63\xc8\x40\x64\xc0\x64\xc0\x60\xc0\x60"
                   14868:             "\xc0\x30\x60\x30\x60\x30\x30\x30\x10\x58\x0c\x98\x07"
                   14869:             "\x18\x00\x18\x00\x0c\x00\x0c\x00\x0c\x00\x3f\x00" }  },
                   14870:       /* --- pixel bitmap for cmmi210 char#113 q --- */
                   14871:       { 113,45903,                      /* character number, location */
                   14872:          13, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   14873:           { 13,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14874:             "\xc0\x11\x46\x63\x70\x06\x66\xc0\x0c\x98\x01\x1b\x30"
                   14875:             "\x03\x46\xc0\x18\x1c\xc2\x81\x37\x00\x06\xc0\x00\x0c"
                   14876:             "\x80\x01\x30\xc0\x1f" }  },
                   14877:       /* --- pixel bitmap for cmmi210 char#114 r --- */
                   14878:       { 114,46784,                      /* character number, location */
                   14879:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   14880:           { 12,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14881:             "\x8c\xa7\xe5\x32\x9e\x63\x19\x80\x01\x18\xc0\x00\x0c"
                   14882:             "\xc0\x00\x0c\x60\x00\x06\x00" }  },
                   14883:       /* --- pixel bitmap for cmmi210 char#115 s --- */
                   14884:       { 115,47760,                      /* character number, location */
                   14885:          13, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   14886:           { 10,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14887:             "\xe0\x60\x84\x39\x63\x1c\xe0\x81\x0f\x70\x82\x1d\x36"
                   14888:             "\x48\x10\x3e\x00" }  },
                   14889:       /* --- pixel bitmap for cmmi210 char#116 t --- */
                   14890:       { 116,48516,                      /* character number, location */
                   14891:          18, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   14892:           {  9,   18, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14893:             "\x20\x60\xc0\x80\x81\xe1\x3f\x06\x0c\x0c\x18\x30\x60"
                   14894:             "\x60\xc0\x90\x21\x23\x26\x38\x00" }  },
                   14895:       /* --- pixel bitmap for cmmi210 char#117 u --- */
                   14896:       { 117,49568,                      /* character number, location */
                   14897:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   14898:           { 14,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14899:             "\x1c\x98\x0c\x26\x83\xc5\x30\x19\x0c\x06\x83\xc1\x30"
                   14900:             "\x18\x0c\x26\x83\xc9\x70\x22\x5e\x70\x0c" }  },
                   14901:       /* --- pixel bitmap for cmmi210 char#118 v --- */
                   14902:       { 118,50477,                      /* character number, location */
                   14903:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   14904:           { 13,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14905:             "\x1c\x48\x06\xcb\xa0\x18\x94\x81\x30\x10\x06\x62\x20"
                   14906:             "\x0c\x84\x41\x30\x08\x8c\x00\x0f\x00" }  },
                   14907:       /* --- pixel bitmap for cmmi210 char#119 w --- */
                   14908:       { 119,51697,                      /* character number, location */
                   14909:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   14910:           { 19,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14911:             "\x1c\x18\x92\xc1\xb0\x0c\x86\x63\x18\x94\xc1\x20\x0c"
                   14912:             "\x06\x61\x30\x88\xc1\x20\x0c\x06\x61\x30\x08\x83\x21"
                   14913:             "\x30\x8a\x00\x8f\x03" }  },
                   14914:       /* --- pixel bitmap for cmmi210 char#120 x --- */
                   14915:       { 120,52951,                      /* character number, location */
                   14916:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   14917:           { 15,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14918:             "\x70\x3c\xe4\x39\x71\x5c\x18\x26\x0c\x00\x06\x00\x03"
                   14919:             "\xc0\x00\x60\x90\x31\xc8\x19\x62\x8a\xe0\x38\x00" }  },
                   14920:       /* --- pixel bitmap for cmmi210 char#121 y --- */
                   14921:       { 121,54043,                      /* character number, location */
                   14922:          13, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   14923:           { 14,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14924:             "\x1c\xb0\x0c\x2c\x03\xc7\x60\x19\x18\x06\x86\x81\x31"
                   14925:             "\x30\x0c\x0c\x03\xc3\xe0\x60\x1c\xf0\x06\x80\x01\x30"
                   14926:             "\x1c\x0c\x87\x81\x30\xc0\x03\x00" }  },
                   14927:       /* --- pixel bitmap for cmmi210 char#122 z --- */
                   14928:       { 122,54995,                      /* character number, location */
                   14929:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   14930:           { 12,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14931:             "\x60\x88\x5f\x08\x07\x20\x00\x01\x08\x40\x00\x03\x08"
                   14932:             "\x44\x40\x1c\x22\x3f\xc1\x00" }  },
                   14933:       /* --- pixel bitmap for cmmi210 char#123 \imath --- */
                   14934:       { 123,97368,                      /* character number, location */
                   14935:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   14936:           {  7,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14937:             "\x1c\x99\x2c\x96\xc1\x60\x18\x4c\xa6\xc9\xc4\x01" }  },
                   14938:       /* --- pixel bitmap for cmmi210 char#124 \jmath --- */
                   14939:       { 124,98181,                      /* character number, location */
                   14940:          13,-1,   -6,-1,      /* topleft row,col, and botleft row,col */
                   14941:           { 12,   19, 3,53, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14942:             "\x73\x81\x22\x61\x42\x51\x32\x51\x42\x10\xf1\x92\x10"
                   14943:             "\xf3\x82\x20\xf3\x72\x30\x12\x32\x43\x32\x42\x32\x64"
                   14944:             "\x71" }  },
                   14945:       /* --- pixel bitmap for cmmi210 char#125 \wp --- */
                   14946:       { 125,99318,                      /* character number, location */
                   14947:          14, 2,   -7, 2,      /* topleft row,col, and botleft row,col */
                   14948:           { 17,   21, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14949:             "\x30\x00\x30\x78\x30\x0c\x63\x04\x64\x04\xd8\x04\xb0"
                   14950:             "\x05\x60\x0b\xc0\x0e\xc0\x1c\x80\x19\x82\x71\x04\xe1"
                   14951:             "\x89\x41\xe3\x81\x0c\x00\x19\x00\x31\x00\x62\x00\xc4"
                   14952:             "\x00\xc8\x00\xe0\x00\x00" }  },
                   14953:       /* --- pixel bitmap for cmmi210 char#126 \vec --- */
                   14954:       { 126,99982,                      /* character number, location */
                   14955:          21, 6,   15, 6,      /* topleft row,col, and botleft row,col */
                   14956:           { 13,    6, 3,13, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14957:             "\x82\xb3\x2f\x1d\x73\xa2\x42" }  },
                   14958:       /* --- pixel bitmap for cmmi210 char#127 (noname) --- */
                   14959:       { 127,100524,                     /* character number, location */
                   14960:          19, 8,   16, 8,      /* topleft row,col, and botleft row,col */
                   14961:           { 11,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14962:             "\xf8\x31\x50\x00\x01" }  },
1.1       albertel 14963:       /* --- trailer  --- */
1.2       albertel 14964:       { -99, -999,  0,0,0,0, { 0,0,0,0, (pixbyte *)"\0" }  }
1.1       albertel 14965:    } ;
                   14966: 
                   14967: 
1.2       albertel 14968: /* --- size=7 for .250gf ---
                   14969:  * mf '\mode=preview; mag=magstep(-12.84858895680446863032); input cmmi10'
                   14970:  * --------------------------------------------------------------------- */
                   14971: /* --- fontdef for cmmi250 --- */
                   14972: static	chardef  cmmi250[] =
                   14973:    {
                   14974:       /* --- pixel bitmap for cmmi250 char#0 \Gamma --- */
                   14975:       {   0,56859,                      /* character number, location */
                   14976:          24, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   14977:           { 26,   24, 3,69, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   14978:             "\x6e\x06\xa3\xa3\xf1\x93\xc2\xf1\x93\xc1\x10\xf1\x83"
                   14979:             "\xd1\x10\xf1\x83\xe0\x10\xf3\x73\xe0\x20\xf3\x63\xe0"
                   14980:             "\x30\xf3\x53\xe0\x40\x44\xe0\x4c\xe2" }  },
                   14981:       /* --- pixel bitmap for cmmi250 char#1 \Delta --- */
                   14982:       {   1,57788,                      /* character number, location */
                   14983:          25, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   14984:           { 25,   25, 3,120, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   14985:             "\xe0\x41\xe0\x93\x50\xf1\xe0\x24\x50\xe0\x11\x13\xe0"
                   14986:             "\x51\x24\x40\xf1\xd1\x43\x40\xc1\x53\xe0\x11\x64\x30"
                   14987:             "\xf1\xa1\x83\x30\x91\x93\xb1\xa4\x20\xf1\x71\xc3\x20"
                   14988:             "\x61\xd3\x71\xe4\x10\xf1\x41\xe0\x23\x10\x31\xe0\x33"
                   14989:             "\x31\xe0\x44\xf1\x1e\x0a\x0e\x0b" }  },
                   14990:       /* --- pixel bitmap for cmmi250 char#2 \Theta --- */
                   14991:       {   2,58995,                      /* character number, location */
                   14992:          25, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   14993:           { 23,   26, 3,101, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   14994:             "\xb7\xe3\x53\xa3\x83\x82\xb3\x62\xd2\x53\xd3\x33\xe3"
                   14995:             "\xf1\x23\xe0\x22\x13\xe0\x32\x13\xe0\x23\x0f\x33\x3b"
                   14996:             "\x33\x03\xe0\x23\x12\xe0\x33\x1f\x12\xe0\x23\x23\xe3"
                   14997:             "\x33\xd3\x52\xd2\x63\xb2\x83\x83\xa3\x53\xe7\xb0" }  },
                   14998:       /* --- pixel bitmap for cmmi250 char#3 \Lambda --- */
                   14999:       {   3,59991,                      /* character number, location */
                   15000:          25, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   15001:           { 22,   25, 3,106, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   15002:             "\xf1\xe0\x22\x40\xf1\xe0\x13\x40\xf1\xe4\x40\xd1\x13"
                   15003:             "\xe0\x22\x13\xe0\x21\x23\x40\xf1\xb1\x33\x40\xf1\xa1"
                   15004:             "\x44\x30\xf1\x91\x63\x30\x81\x73\x30\xf1\x71\x83\x30"
                   15005:             "\xf1\x61\x93\x30\xf1\x51\xa3\x30\x41\xb3\x62\xb3\x38"
                   15006:             "\x59" }  },
                   15007:       /* --- pixel bitmap for cmmi250 char#4 \Xi --- */
                   15008:       {   4,61478,                      /* character number, location */
                   15009:          24, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   15010:           { 26,   24, 3,61, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   15011:             "\xf1\x7e\x05\xf2\x61\xe0\x31\x10\xf4\xe0\xc0\x71\xb1"
                   15012:             "\x60\xf1\x7d\x60\x71\xb1\x60\xf4\xe0\xc0\xf2\x11\xe0"
                   15013:             "\x51\x4f\x1e\x07\x53" }  },
                   15014:       /* --- pixel bitmap for cmmi250 char#5 \Pi --- */
                   15015:       {   5,62721,                      /* character number, location */
                   15016:          24, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   15017:           { 32,   24, 3,59, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   15018:             "\x6e\x0c\xa3\xc3\x40\xf3\x93\xc3\x50\xf3\x83\xc3\x60"
                   15019:             "\xf3\x73\xc3\x70\xf3\x63\xc3\x80\xf3\x53\xc3\x90\x43"
                   15020:             "\xc3\xab\x4b\x67" }  },
                   15021:       /* --- pixel bitmap for cmmi250 char#6 \Sigma --- */
                   15022:       {   6,63936,                      /* character number, location */
                   15023:          24, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   15024:           { 26,   24, 3,95, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   15025:             "\x6e\x06\x64\xc4\x73\xe2\x74\xd2\xf1\x83\xd1\x10\x84"
                   15026:             "\xc1\xa3\xc1\xa4\xd0\xf1\xa3\xd0\xa4\xe0\x93\xe0\x91"
                   15027:             "\xe0\xa1\xe0\xa1\xc1\xb1\xd1\xa1\xd1\xa1\xe1\x91\xe2"
                   15028:             "\x72\xe2\x71\xe4\x6e\x05\x6e\x06\x61" }  },
                   15029:       /* --- pixel bitmap for cmmi250 char#7 \Upsilon --- */
                   15030:       {   7,64998,                      /* character number, location */
                   15031:          25, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   15032:           { 23,   25, 3,77, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   15033:             "\x44\x95\x37\x76\x23\x33\x44\x23\x11\x62\x42\x62\x72"
                   15034:             "\x32\x72\x82\x12\x81\x92\x11\xe0\x54\xa0\xf2\x93\xb0"
                   15035:             "\xf3\x83\xc0\xf3\x73\xd0\xf3\x63\xe0\x54\xe0\x1c\xa2" }  },
                   15036:       /* --- pixel bitmap for cmmi250 char#8 \Phi --- */
                   15037:       {   8,66056,                      /* character number, location */
                   15038:          24, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   15039:           { 21,   24, 3,97, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   15040:             "\x7c\xd4\x60\xf2\xb3\x70\x88\xa3\x23\x23\x72\x43\x43"
                   15041:             "\x33\x53\x52\x23\x63\x53\x13\x53\x63\x0f\x13\x63\x63"
                   15042:             "\x03\x63\x53\x13\x53\x63\x22\x53\x53\x33\x43\x42\x73"
                   15043:             "\x23\x23\xa8\x80\xf2\x73\xb0\x64\xdc\x73" }  },
                   15044:       /* --- pixel bitmap for cmmi250 char#9 \Psi --- */
                   15045:       {   9,67177,                      /* character number, location */
                   15046:          24, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   15047:           { 23,   24, 3,95, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   15048:             "\x6c\xe0\x14\x90\xf1\xa3\xa3\x73\x64\x13\x63\x53\x33"
                   15049:             "\x53\x63\x20\xf2\x13\x53\x53\x3f\x23\x53\x53\x43\x53"
                   15050:             "\x43\x53\x43\x52\x72\x43\x42\x92\x33\x32\xb2\x23\x13"
                   15051:             "\xd8\xb0\xf2\x63\xe0\x54\xe0\x1c\xac" }  },
                   15052:       /* --- pixel bitmap for cmmi250 char#10 \Omega --- */
                   15053:       {  10,68434,                      /* character number, location */
                   15054:          25, 3,    0, 3,      /* topleft row,col, and botleft row,col */
                   15055:           { 24,   25, 3,117, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   15056:             "\xc7\xe0\x13\x53\xb3\x92\x92\xc2\x72\xd3\x53\xd3\x43"
                   15057:             "\xe3\x42\xe0\x13\xf1\x33\xe0\x13\x33\xe0\x12\x43\xe3"
                   15058:             "\x43\xe2\x53\xd3\x53\xc3\x72\xc2\x82\xb2\x92\xb1\xb1"
                   15059:             "\xa2\x61\x41\x92\x31\x31\x41\x91\x41\x31\x42\x71\x41"
                   15060:             "\x46\x86\x46\x77\x46\x76\x5e" }  },
                   15061:       /* --- pixel bitmap for cmmi250 char#11 \alpha --- */
                   15062:       {  11,69516,                      /* character number, location */
                   15063:          15, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   15064:           { 18,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   15065:             "\xc0\x03\xc0\x30\x88\x81\x21\x03\x86\x06\x30\x19\xc0"
                   15066:             "\x34\x00\xcb\x00\x2c\x03\x70\x0c\xc0\x30\x00\xc3\x00"
                   15067:             "\x0e\x03\x34\x18\x8c\x84\x0f\x0c" }  },
                   15068:       /* --- pixel bitmap for cmmi250 char#12 \beta --- */
                   15069:       {  12,70619,                      /* character number, location */
                   15070:          24, 0,   -7, 0,      /* topleft row,col, and botleft row,col */
                   15071:           { 20,   31, 3,111, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   15072:             "\xc5\xd2\x51\xb1\x81\x10\xf1\x81\x92\x71\xa2\x71\x92"
                   15073:             "\x71\xa2\x71\x92\x81\x37\x81\x46\x91\x92\x81\xa1\x81"
                   15074:             "\xa2\x20\xf3\x41\xb2\x20\xf1\x32\xa2\x30\x32\x92\x72"
                   15075:             "\x82\x71\x21\x53\x81\x36\x80\xf1\x21\xe0\x30\xf3\x11"
                   15076:             "\xe0\x41\xe0\x57" }  },
                   15077:       /* --- pixel bitmap for cmmi250 char#13 \gamma --- */
                   15078:       {  13,71602,                      /* character number, location */
                   15079:          15, 0,   -8, 0,      /* topleft row,col, and botleft row,col */
                   15080:           { 19,   23, 3,73, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   15081:             "\x54\x91\x37\x71\x34\x14\x61\x22\x72\x41\x31\x91\x41"
                   15082:             "\x21\xa1\x31\x30\xf1\xc1\x21\x30\xf2\xc1\x11\x40\xf2"
                   15083:             "\xc2\x50\xf2\xc1\x60\xf3\xb1\x70\xf1\xa1\x82" }  },
                   15084:       /* --- pixel bitmap for cmmi250 char#14 \delta --- */
                   15085:       {  14,72561,                      /* character number, location */
                   15086:          25, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   15087:           { 13,   25, 3,79, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   15088:             "\x73\x97\x51\x43\xf2\x51\x70\xf1\x52\x60\x62\x50\xf1"
                   15089:             "\x63\x40\x42\x13\x62\x32\x52\x43\x20\xf1\x12\x62\x2f"
                   15090:             "\x22\x72\x22\x71\x32\x62\x32\x61\x42\x52\x52\x32\x74"
                   15091:             "\x72" }  },
                   15092:       /* --- pixel bitmap for cmmi250 char#15 \epsilon --- */
                   15093:       {  15,73451,                      /* character number, location */
                   15094:          15, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   15095:           { 10,   15, 3,29, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   15096:             "\x64\x42\x71\x81\x82\x72\x89\x1f\x42\x80\x11\xa1\x52"
                   15097:             "\x35\x20" }  },
                   15098:       /* --- pixel bitmap for cmmi250 char#16 \zeta --- */
                   15099:       {  16,74367,                      /* character number, location */
                   15100:          24, 2,   -7, 2,      /* topleft row,col, and botleft row,col */
                   15101:           { 14,   31, 3,63, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   15102:             "\xf2\x91\x40\x95\x81\x14\x62\xb2\xb2\xc1\xc2\xb2\xc1"
                   15103:             "\xb0\xf1\x12\xbf\x62\xc0\x12\xc4\xb6\xa6\xb4\x30\xf2"
                   15104:             "\x92\x30\x42\x31\xa3\x52" }  },
                   15105:       /* --- pixel bitmap for cmmi250 char#17 \eta --- */
                   15106:       {  17,75306,                      /* character number, location */
                   15107:          15, 1,   -8, 1,      /* topleft row,col, and botleft row,col */
                   15108:           { 16,   23, 3,69, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   15109:             "\x32\x54\x41\x21\x22\x32\x10\xf1\x11\x33\x62\x11\x32"
                   15110:             "\x72\xf3\x42\x72\x10\xf3\x32\x72\x20\xf1\x22\x72\x30"
                   15111:             "\xf1\xb2\x30\xf3\xa2\x40\xf1\x92\x52" }  },
                   15112:       /* --- pixel bitmap for cmmi250 char#18 \theta --- */
                   15113:       {  18,76072,                      /* character number, location */
                   15114:          24, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   15115:           { 14,   24, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   15116:             "\x00\x07\x20\x02\x04\x81\x40\x30\x30\x04\x8c\x01\x23"
                   15117:             "\xc0\x0c\x30\x03\x6c\x80\xf9\x7f\xfe\x9f\x01\x36\xc0"
                   15118:             "\x0c\x30\x03\xc4\x80\x31\x20\x0c\x0c\x02\x81\x20\x40"
                   15119:             "\x04\xe0\x00" }  },
                   15120:       /* --- pixel bitmap for cmmi250 char#19 \iota --- */
                   15121:       {  19,76747,                      /* character number, location */
                   15122:          15, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   15123:           {  9,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   15124:             "\x10\x30\x60\xc0\x80\x81\x01\x03\x06\x06\x0c\x18\x1c"
                   15125:             "\x38\x48\x0c\x07" }  },
                   15126:       /* --- pixel bitmap for cmmi250 char#20 \kappa --- */
                   15127:       {  20,77691,                      /* character number, location */
                   15128:          15, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   15129:           { 16,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   15130:             "\x10\x70\x18\x7c\x18\x62\x18\x01\x98\x00\x6c\x00\xfc"
                   15131:             "\x00\x8c\x07\x0c\x0c\x06\x0c\x06\x8c\x06\x8c\x06\x8c"
                   15132:             "\x03\x4c\x03\x38" }  },
                   15133:       /* --- pixel bitmap for cmmi250 char#21 \lambda --- */
                   15134:       {  21,78546,                      /* character number, location */
                   15135:          24, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   15136:           { 17,   24, 3,78, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   15137:             "\x43\xe0\x22\xe0\x13\x80\xf1\x72\x80\xf2\x82\x70\xf2"
                   15138:             "\x92\x60\xf1\xa2\x50\x94\xc2\x12\xb2\x22\xa2\x33\x82"
                   15139:             "\x52\x72\x62\x62\x82\x42\x92\x33\x92\x23\xb2\x12\xc3" }  },
                   15140:       /* --- pixel bitmap for cmmi250 char#22 \mu --- */
                   15141:       {  22,79604,                      /* character number, location */
                   15142:          15, 1,   -8, 1,      /* topleft row,col, and botleft row,col */
                   15143:           { 18,   23, 3,77, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   15144:             "\x61\x81\x20\xf3\x52\x72\x20\xf3\x42\x72\x30\x32\x72"
                   15145:             "\x40\xf1\x32\x72\x31\x32\x63\x31\x24\x41\x12\x21\x32"
                   15146:             "\x15\x33\x20\xf1\x22\xe0\xf3\x12\xe0\x1f\x12\xe0\x23" }  },
                   15147:       /* --- pixel bitmap for cmmi250 char#23 \nu --- */
                   15148:       {  23,80429,                      /* character number, location */
                   15149:          15, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   15150:           { 15,   15, 3,53, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   15151:             "\x15\x81\xf2\x32\x82\x32\x72\x32\x82\x32\x72\x42\x71"
                   15152:             "\x52\x62\x42\x62\x52\x52\x62\x41\x82\x22\x82\x12\xa3"
                   15153:             "\xc5" }  },
                   15154:       /* --- pixel bitmap for cmmi250 char#24 \xi --- */
                   15155:       {  24,81569,                      /* character number, location */
                   15156:          24, 1,   -7, 1,      /* topleft row,col, and botleft row,col */
                   15157:           { 14,   31, 3,71, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   15158:             "\xf2\x91\x40\x86\x63\x14\x52\xb2\x80\xf4\x32\x90\xf1"
                   15159:             "\x47\x30\x32\xb2\xa0\xf1\x12\xbf\x22\xc3\xc3\xc4\xb5"
                   15160:             "\xb6\xb4\x20\xf1\xa2\x20\x51\x41\x94\x4f" }  },
                   15161:       /* --- pixel bitmap for cmmi250 char#25 \pi --- */
                   15162:       {  25,82531,                      /* character number, location */
                   15163:          15, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   15164:           { 17,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   15165:             "\xf8\xff\xf9\xff\x1b\x21\x08\x42\x10\x84\x00\x8c\x01"
                   15166:             "\x08\x01\x10\x02\x30\x04\x20\x08\x40\x30\xc0\x60\x80"
                   15167:             "\xc1\x80\x81\x01\x03\x02" }  },
                   15168:       /* --- pixel bitmap for cmmi250 char#26 \rho --- */
                   15169:       {  26,83391,                      /* character number, location */
                   15170:          15, 1,   -8, 1,      /* topleft row,col, and botleft row,col */
                   15171:           { 16,   23, 3,69, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   15172:             "\x95\xa2\x32\x81\x61\x72\x62\xf1\x52\x72\xf2\x42\x82"
                   15173:             "\xf1\x32\x82\x10\x32\x72\x53\x52\x52\x11\x42\x62\x24"
                   15174:             "\x60\xf1\x22\xc0\xf3\x12\xdf\x12\xe4" }  },
                   15175:       /* --- pixel bitmap for cmmi250 char#27 \sigma --- */
                   15176:       {  27,84293,                      /* character number, location */
                   15177:          15, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   15178:           { 17,   15, 3,49, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   15179:             "\x6b\x4d\x33\x42\x72\x72\x40\xf1\x12\x82\x4f\x22\x92"
                   15180:             "\x42\x82\x51\x92\x52\x72\x62\x62\x82\x42\xa5\xa2" }  },
                   15181:       /* --- pixel bitmap for cmmi250 char#28 \tau --- */
                   15182:       {  28,85072,                      /* character number, location */
                   15183:          15, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   15184:           { 15,   15, 3,43, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   15185:             "\x3c\x2d\x11\x61\x6f\x11\x61\x70\x71\x70\xf1\x62\x70"
                   15186:             "\xf1\x61\x80\xf2\x52\x80\xf1\x42\x92" }  },
                   15187:       /* --- pixel bitmap for cmmi250 char#29 \upsilon --- */
                   15188:       {  29,86009,                      /* character number, location */
                   15189:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   15190:           { 17,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   15191:             "\x38\x80\x88\x00\x0b\x01\x16\x03\x2c\x06\x18\x0c\x10"
                   15192:             "\x0c\x20\x18\x40\x30\x40\x30\x80\x60\x80\xc0\x00\x01"
                   15193:             "\x03\x01\x06\x01\xf0\x01" }  },
                   15194:       /* --- pixel bitmap for cmmi250 char#30 \phi --- */
                   15195:       {  30,86899,                      /* character number, location */
                   15196:          24, 2,   -7, 2,      /* topleft row,col, and botleft row,col */
                   15197:           { 17,   31, 3,107, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   15198:             "\xf1\xc1\x40\xf3\xb1\x50\xf2\xa1\x60\x76\x92\x21\x32"
                   15199:             "\x52\x41\x42\x32\x51\x51\x22\x61\x52\x12\x51\x62\x0f"
                   15200:             "\x22\x61\x62\x02\x51\x62\x12\x51\x61\x22\x51\x51\x42"
                   15201:             "\x41\x32\x62\x21\x23\x96\x70\xf1\x61\xa0\xf3\x51\xb0"
                   15202:             "\x41\xc1" }  },
                   15203:       /* --- pixel bitmap for cmmi250 char#31 \chi --- */
                   15204:       {  31,88004,                      /* character number, location */
                   15205:          15, 1,   -7, 1,      /* topleft row,col, and botleft row,col */
                   15206:           { 19,   22, 3,99, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   15207:             "\x23\xd1\x21\x13\xa1\x21\x32\xa1\x63\x81\x82\x71\x92"
                   15208:             "\x61\xb2\x41\xc2\x31\xd3\x11\xe0\x13\xe0\x22\xe0\x42"
                   15209:             "\xe0\x23\xe0\x11\x13\xd1\x32\xc1\x42\xb1\x62\x91\x72"
                   15210:             "\x81\x83\x61\xa2\x31\x21\xa3\x11\x21\xd3\x23" }  },
                   15211:       /* --- pixel bitmap for cmmi250 char#32 \psi --- */
                   15212:       {  32,89135,                      /* character number, location */
                   15213:          24, 1,   -7, 1,      /* topleft row,col, and botleft row,col */
                   15214:           { 21,   31, 3,125, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   15215:             "\xf1\xe0\x11\x50\xf3\xe1\x60\xf2\xd1\x70\x33\x71\x51"
                   15216:             "\x31\x31\x51\x62\x11\x41\x51\x62\xf1\x11\x32\x51\x62"
                   15217:             "\x52\x41\x71\x10\xf1\x42\x51\x71\x10\x42\x51\x61\x52"
                   15218:             "\x51\x71\x52\x51\x61\x71\x51\x51\x82\x41\x41\xa2\x21"
                   15219:             "\x32\xd6\x80\xf1\x91\xb0\xf3\x81\xc0\x71\xd3" }  },
                   15220:       /* --- pixel bitmap for cmmi250 char#33 \omega --- */
                   15221:       {  33,90280,                      /* character number, location */
                   15222:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   15223:           { 20,   15, 3,73, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   15224:             "\x31\xe1\x32\xe2\x21\xe0\x12\xf1\x11\xe0\x22\x01\x91"
                   15225:             "\x71\x1f\x11\x82\x71\x11\x82\x62\x11\x81\x71\x21\x72"
                   15226:             "\x62\x22\x54\x51\x38\x18\x46\x36\x64\x53\x61" }  },
                   15227:       /* --- pixel bitmap for cmmi250 char#34 \varepsilon --- */
                   15228:       {  34,91279,                      /* character number, location */
                   15229:          16, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   15230:           { 13,   17, 3,47, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   15231:             "\x65\x69\x33\x52\x22\x90\xf2\x21\xa0\x36\x62\x13\x50"
                   15232:             "\xf1\x11\xbf\x11\xc1\xa1\x22\x62\x39\x65\x51" }  },
                   15233:       /* --- pixel bitmap for cmmi250 char#35 \vartheta --- */
                   15234:       {  35,92296,                      /* character number, location */
                   15235:          24, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   15236:           { 18,   24, 3,97, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   15237:             "\xc3\xe1\x22\xc1\x41\xb1\x51\x20\xf4\x91\x52\x10\x32"
                   15238:             "\x51\x42\x31\x21\x52\x12\x31\x32\x63\x31\x32\x74\x11"
                   15239:             "\x32\x72\x20\xf1\x42\x72\x30\x42\x71\x82\x62\x72\x72"
                   15240:             "\x72\x62\x82\x61\x92\x51\xb2\x32\xc4\x91" }  },
                   15241:       /* --- pixel bitmap for cmmi250 char#36 \varpi --- */
                   15242:       {  36,93575,                      /* character number, location */
                   15243:          15, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   15244:           { 26,   15, 3,95, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   15245:             "\x3e\x09\x2e\x0a\x12\x31\xe0\x21\x21\x41\xe0\x31\x21"
                   15246:             "\x31\xe0\x41\x61\x81\x91\x20\xf1\x31\x91\x91\x20\x31"
                   15247:             "\x82\x81\x51\x92\x81\x51\x81\x11\x72\x52\x61\x21\x62"
                   15248:             "\x71\x42\x32\x42\x86\x56\xa4\x74\x74" }  },
                   15249:       /* --- pixel bitmap for cmmi250 char#37 \varrho --- */
                   15250:       {  37,94512,                      /* character number, location */
                   15251:          15, 3,   -7, 3,      /* topleft row,col, and botleft row,col */
                   15252:           { 14,   22, 3,65, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   15253:             "\x75\x82\x32\x61\x61\x52\x62\xf1\x32\x72\xf2\x22\x82"
                   15254:             "\x13\x72\x22\x82\x23\x62\x33\x52\x32\x12\x32\x41\x34"
                   15255:             "\x6f\x21\xd2\xd9\x68\xd1\x41" }  },
                   15256:       /* --- pixel bitmap for cmmi250 char#38 \varsigma --- */
                   15257:       {  38,95385,                      /* character number, location */
                   15258:          15, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   15259:           { 12,   18, 3,41, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   15260:             "\x66\x42\x51\x31\xa1\xa2\x9f\x22\xa3\xa3\xa3\xa4\xa4"
                   15261:             "\xa3\x20\xf1\x82\x20\x81\x83\x42" }  },
                   15262:       /* --- pixel bitmap for cmmi250 char#39 \varphi --- */
                   15263:       {  39,96354,                      /* character number, location */
                   15264:          15, 2,   -8, 2,      /* topleft row,col, and botleft row,col */
                   15265:           { 19,   23, 3,91, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   15266:             "\x31\xa3\x41\x96\x31\x82\x42\x11\x82\x61\x11\x81\x71"
                   15267:             "\x0f\x11\x81\x81\x01\xe0\x31\x0f\x11\x71\x81\x12\x61"
                   15268:             "\x71\x32\x41\x62\x53\x21\x43\x7b\xa7\xd2\xb0\xf1\x61"
                   15269:             "\xc0\xf2\x52\xc0\xf1\x42\xd4" }  },
                   15270:       /* --- pixel bitmap for cmmi250 char#40 \leftharpoonup --- */
                   15271:       {  40,112528,                     /* character number, location */
                   15272:          18, 2,    8, 2,      /* topleft row,col, and botleft row,col */
                   15273:           { 31,   10, 3,42, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   15274:             "\xf1\x72\xe0\x80\xf1\x62\xe0\x90\x52\xe0\xe3\xe0\xd3"
                   15275:             "\xe0\xd3\xe0\xde\x0e\x0e\x0e\x05" }  },
                   15276:       /* --- pixel bitmap for cmmi250 char#41 \leftharpoondown --- */
                   15277:       {  41,113562,                     /* character number, location */
                   15278:          10, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   15279:           { 31,   10, 2,25, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   15280:             "\x00\x1f\x01\x1e\x02\x03\x1d\x03\x1d\x03\x1d\x02\x18"
                   15281:             "\x00\xff\x01\x06\x02\x17\x00\xff\x01\x07\x02\x16" }  },
                   15282:       /* --- pixel bitmap for cmmi250 char#42 \rightharpoonup --- */
                   15283:       {  42,114594,                     /* character number, location */
                   15284:          18, 2,    8, 2,      /* topleft row,col, and botleft row,col */
                   15285:           { 31,   10, 3,46, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   15286:             "\xf1\xe0\x82\x70\xf1\xe0\x92\x60\xe0\xa2\xe0\xe0\x13"
                   15287:             "\xe0\xe0\x13\xe0\xe0\x13\x2f\x1e\x0e\x03" }  },
                   15288:       /* --- pixel bitmap for cmmi250 char#43 \rightharpoondown --- */
                   15289:       {  43,115629,                     /* character number, location */
                   15290:          10, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   15291:           { 31,   10, 3,43, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   15292:             "\x0e\x0e\x0e\x0e\x05\xe0\xd3\xe0\xd3\xe0\xd3\xe0\xe2"
                   15293:             "\x50\xf1\xe0\x92\x60\xf1\xe0\x82\x7e" }  },
                   15294:       /* --- pixel bitmap for cmmi250 char#44 ` --- */
                   15295:       {  44,116056,                     /* character number, location */
                   15296:          18, 2,    8, 2,      /* topleft row,col, and botleft row,col */
                   15297:           {  6,   10, 3,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   15298:             "\x33\x18\x3f\x32\x43\x45\x33" }  },
                   15299:       /* --- pixel bitmap for cmmi250 char#45 ' --- */
                   15300:       {  45,116484,                     /* character number, location */
                   15301:          18, 2,    8, 2,      /* topleft row,col, and botleft row,col */
                   15302:           {  6,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   15303:             "\xc7\x87\xc3\x30\x0c\xe3\xdf\x01" }  },
                   15304:       /* --- pixel bitmap for cmmi250 char#46 \triangleright --- */
                   15305:       {  46,117029,                     /* character number, location */
                   15306:          17, 1,    1, 1,      /* topleft row,col, and botleft row,col */
                   15307:           { 15,   16, 3,51, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   15308:             "\x02\xd4\xb6\x92\x24\x72\x43\x62\x54\x42\x74\x2f\x12"
                   15309:             "\x94\x02\x74\x22\x54\x42\x43\x62\x24\x76\x94\xb2\xd1" }  },
                   15310:       /* --- pixel bitmap for cmmi250 char#47 \triangleleft --- */
                   15311:       {  47,117605,                     /* character number, location */
                   15312:          17, 1,    1, 1,      /* topleft row,col, and botleft row,col */
                   15313:           { 15,   16, 3,50, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   15314:             "\xd2\xb4\x96\x74\x22\x63\x42\x44\x52\x24\x72\x0f\x14"
                   15315:             "\x92\x24\x72\x44\x52\x63\x42\x74\x22\x96\xb4\xd2" }  },
                   15316:       /* --- pixel bitmap for cmmi250 char#48 \0 --- */
                   15317:       {  48,102853,                     /* character number, location */
                   15318:          16, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   15319:           { 13,   17, 3,35, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   15320:             "\x45\x62\x52\x20\xf1\x12\x72\x1f\x82\x92\xf1\x12\x72"
                   15321:             "\x10\x22\x52\x65\x41" }  },
                   15322:       /* --- pixel bitmap for cmmi250 char#49 \1 --- */
                   15323:       {  49,103644,                     /* character number, location */
                   15324:          16, 3,    0, 3,      /* topleft row,col, and botleft row,col */
                   15325:           { 10,   16, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   15326:             "\x51\x46\x40\xfc\x42\x4a" }  },
                   15327:       /* --- pixel bitmap for cmmi250 char#50 \2 --- */
                   15328:       {  50,104622,                     /* character number, location */
                   15329:          16, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   15330:           { 13,   16, 3,45, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   15331:             "\x36\x61\x53\x31\x82\x12\x86\x82\x11\x92\xa3\xa2\xa2"
                   15332:             "\xa2\xa2\x92\x51\x42\x61\x39\x2b\x1c\x11" }  },
                   15333:       /* --- pixel bitmap for cmmi250 char#51 \3 --- */
                   15334:       {  51,105663,                     /* character number, location */
                   15335:          16, 1,   -8, 1,      /* topleft row,col, and botleft row,col */
                   15336:           { 15,   24, 3,73, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   15337:             "\x55\x82\x52\x51\x82\x20\xf2\x13\x73\x10\x21\x83\x10"
                   15338:             "\xf1\xb2\x20\xa2\xc2\x95\xe0\x12\xe2\xd3\xd3\x12\x93"
                   15339:             "\x0f\x24\x83\x11\x93\x21\x92\x42\x62\x76\x51" }  },
                   15340:       /* --- pixel bitmap for cmmi250 char#52 \4 --- */
                   15341:       {  52,106620,                     /* character number, location */
                   15342:          16, 1,   -7, 1,      /* topleft row,col, and botleft row,col */
                   15343:           { 15,   23, 3,75, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   15344:             "\xf1\x92\x40\xf1\x83\x40\x71\x12\x40\xf1\x61\x22\x40"
                   15345:             "\x51\x32\x40\xf1\x41\x42\x40\x31\x52\x40\xf1\x21\x62"
                   15346:             "\x40\x11\x72\x42\x72\x4e\x01\xf5\x92\x40\x68\x13" }  },
                   15347:       /* --- pixel bitmap for cmmi250 char#53 \5 --- */
                   15348:       {  53,107683,                     /* character number, location */
                   15349:          16, 2,   -8, 2,      /* topleft row,col, and botleft row,col */
                   15350:           { 13,   24, 3,71, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   15351:             "\x12\x72\x2a\x39\x41\x31\x70\xf3\x11\xb0\x11\x25\x51"
                   15352:             "\x11\x42\x42\x62\x31\x73\xb2\x10\xf2\xa3\x0f\x23\x73"
                   15353:             "\x01\x92\x21\x73\x21\x72\x42\x42\x74\x50" }  },
                   15354:       /* --- pixel bitmap for cmmi250 char#54 \6 --- */
                   15355:       {  54,108610,                     /* character number, location */
                   15356:          23, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   15357:           { 13,   24, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   15358:             "\xc0\x07\x04\x61\x60\x04\x4e\xc0\x0d\x80\x01\x10\x00"
                   15359:             "\xe3\x61\x43\x1c\x90\x03\x36\x80\x06\xf0\x00\x1e\xc0"
                   15360:             "\x03\x78\x00\x0b\x60\x03\x44\xc0\x18\x08\x86\x80\x0f" }  },
                   15361:       /* --- pixel bitmap for cmmi250 char#55 \7 --- */
                   15362:       {  55,109551,                     /* character number, location */
                   15363:          16, 2,   -8, 2,      /* topleft row,col, and botleft row,col */
                   15364:           { 15,   24, 3,63, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   15365:             "\x11\xee\x1d\x21\xb1\x11\xb1\x21\xa1\x30\xf1\xa1\x40"
                   15366:             "\x91\x50\xf1\x81\x60\xf1\x71\x70\xf1\x62\x70\xf2\x52"
                   15367:             "\x80\xf4\x43\x80\x51\x91" }  },
                   15368:       /* --- pixel bitmap for cmmi250 char#56 \8 --- */
                   15369:       {  56,110490,                     /* character number, location */
                   15370:          23, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   15371:           { 15,   24, 3,83, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   15372:             "\x55\x82\x52\x52\x72\x41\x92\x10\xf1\x12\x92\x10\x13"
                   15373:             "\x82\x24\x62\x44\x52\x55\x21\x86\xa6\x81\x25\x52\x54"
                   15374:             "\x32\x74\x22\x95\xa3\x0f\x22\xb2\x12\xa1\x31\x91\x52"
                   15375:             "\x52\x85\x52" }  },
                   15376:       /* --- pixel bitmap for cmmi250 char#57 \9 --- */
                   15377:       {  57,111429,                     /* character number, location */
                   15378:          16, 2,   -8, 2,      /* topleft row,col, and botleft row,col */
                   15379:           { 13,   24, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   15380:             "\xf0\x01\x63\x10\x18\x03\x22\xc0\x06\xd0\x00\x1e\xc0"
                   15381:             "\x03\x78\x00\x0f\x60\x01\x6c\xc0\x09\x38\xc2\x86\xc7"
                   15382:             "\x00\x08\x80\x01\xb0\x03\x72\x60\x06\x86\x60\xe0\x03" }  },
                   15383:       /* --- pixel bitmap for cmmi250 char#58 . --- */
                   15384:       {  58,118110,                     /* character number, location */
                   15385:           4, 3,    0, 3,      /* topleft row,col, and botleft row,col */
                   15386:           {  4,    4, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   15387:             "\xf6\x6f" }  },
                   15388:       /* --- pixel bitmap for cmmi250 char#59 , --- */
                   15389:       {  59,118673,                     /* character number, location */
                   15390:           4, 3,   -7, 3,      /* topleft row,col, and botleft row,col */
                   15391:           {  4,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   15392:             "\xf6\xef\x88\x48\x24\x02" }  },
                   15393:       /* --- pixel bitmap for cmmi250 char#60 < --- */
                   15394:       {  60,119341,                     /* character number, location */
                   15395:          20, 3,   -2, 3,      /* topleft row,col, and botleft row,col */
                   15396:           { 21,   22, 3,88, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   15397:             "\xe0\x52\xe0\x34\xe0\x14\xe0\x14\xe0\x14\xe0\x14\xe0"
                   15398:             "\x23\xe0\x24\xe0\x14\xe0\x14\xe0\x1f\x14\xe0\x30\x24"
                   15399:             "\xe0\x54\xe0\x54\xe0\x53\xe0\x54\xe0\x54\xe0\x54\xe0"
                   15400:             "\x54\xe0\x54\xe0\x52" }  },
                   15401:       /* --- pixel bitmap for cmmi250 char#61 / --- */
                   15402:       {  61,119887,                     /* character number, location */
                   15403:          26, 2,   -9, 2,      /* topleft row,col, and botleft row,col */
                   15404:           { 13,   35, 3,107, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   15405:             "\xf1\xb2\xa3\xf1\xa2\x10\x93\x10\xf1\x92\x20\x83\x20"
                   15406:             "\xf1\x82\x30\x73\x30\xf1\x72\x40\x63\x40\xf1\x62\x50"
                   15407:             "\x53\x50\xf1\x52\x60\x43\x60\xf1\x42\x70\x33\x70\xf1"
                   15408:             "\x32\x80\x23\x80\xf1\x22\x90\x13\x90\xf1\x12\xa3\xaf"
                   15409:             "\x12\xb1" }  },
                   15410:       /* --- pixel bitmap for cmmi250 char#62 > --- */
                   15411:       {  62,120606,                     /* character number, location */
                   15412:          20, 3,   -2, 3,      /* topleft row,col, and botleft row,col */
                   15413:           { 21,   22, 3,89, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   15414:             "\x02\xe0\x54\xe0\x54\xe0\x54\xe0\x54\xe0\x54\xe0\x53"
                   15415:             "\xe0\x54\xe0\x54\xe0\x54\x20\xf1\xe0\x34\xe0\x14\xe0"
                   15416:             "\x14\xe0\x14\xe0\x23\xe0\x24\xe0\x14\xe0\x14\xe0\x14"
                   15417:             "\xe0\x14\xe0\x32\xe0\x52" }  },
                   15418:       /* --- pixel bitmap for cmmi250 char#63 \star --- */
                   15419:       {  63,121327,                     /* character number, location */
                   15420:          18,-1,    1,-1,      /* topleft row,col, and botleft row,col */
                   15421:           { 18,   17, 3,47, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   15422:             "\xf6\x91\x80\x14\x41\x44\x35\x11\x15\x87\xd3\xe2\x12"
                   15423:             "\xd1\x31\xc2\x32\xa2\x52\x91\x71\x81\x91\x30" }  },
                   15424:       /* --- pixel bitmap for cmmi250 char#64 \partial --- */
                   15425:       {  64,97370,                      /* character number, location */
                   15426:          25, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   15427:           { 17,   26, 3,105, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   15428:             "\x75\xa2\x52\x71\x82\x61\x91\x20\xf1\x33\x82\x10\xf1"
                   15429:             "\xe0\x11\x10\xe0\x12\x74\x42\x52\x42\x21\x51\x71\x12"
                   15430:             "\x41\x93\x31\xa3\x22\xa3\x21\xb2\x2f\x12\xb2\x22\xa2"
                   15431:             "\x31\xb2\x31\xa2\x41\xa1\x52\x82\x61\x72\x81\x52\xa5"
                   15432:             "\x92" }  },
                   15433:       /* --- pixel bitmap for cmmi250 char#65 A --- */
                   15434:       {  65, 1026,                      /* character number, location */
                   15435:          25, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   15436:           { 24,   25, 3,110, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   15437:             "\xf1\xe0\x32\x50\xf1\xe0\x23\x50\xe0\x14\xe0\x55\xe0"
                   15438:             "\x51\x13\xe0\x41\x23\xe0\x41\x24\x40\xf1\xc1\x43\x40"
                   15439:             "\xb1\x53\x40\xf1\xa1\x63\x40\xf1\x91\x73\x40\x8c\x40"
                   15440:             "\xf1\x71\x93\x40\x61\xa4\x91\xb3\x81\xc3\x72\xc3\x63"
                   15441:             "\xc3\x38\x6a" }  },
                   15442:       /* --- pixel bitmap for cmmi250 char#66 B --- */
                   15443:       {  66, 2438,                      /* character number, location */
                   15444:          24, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   15445:           { 25,   24, 3,89, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   15446:             "\x5e\x02\xd3\x83\xa3\xa3\x93\xb2\x10\xf1\x83\xb3\x73"
                   15447:             "\xc2\x83\xb3\x83\xa3\x93\x93\x93\x84\xae\xb3\x93\xa3"
                   15448:             "\xa3\x30\xf3\x53\xc3\x20\xf1\x43\xc3\x30\x43\xb3\x83"
                   15449:             "\xa3\x83\x94\x6e\x02\x94" }  },
                   15450:       /* --- pixel bitmap for cmmi250 char#67 C --- */
                   15451:       {  67, 3465,                      /* character number, location */
                   15452:          25, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   15453:           { 24,   26, 3,107, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   15454:             "\xc6\x51\x93\x61\x32\x82\x91\x22\x63\xb3\x62\xd3\x53"
                   15455:             "\xe2\x43\xe0\x12\x42\xe0\x21\x43\xe0\x21\x33\xe0\x31"
                   15456:             "\x33\xe0\x6f\x43\xe0\x7f\x12\xe0\x31\x42\xe0\x21\x53"
                   15457:             "\xe0\x11\x53\xe1\x72\xd1\x92\xb1\xb2\x91\xd2\x62\xe0"
                   15458:             "\x26\xc8" }  },
                   15459:       /* --- pixel bitmap for cmmi250 char#68 D --- */
                   15460:       {  68, 4667,                      /* character number, location */
                   15461:          24, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   15462:           { 26,   24, 3,77, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   15463:             "\x5e\x02\xe3\x83\xb3\xb2\xa3\xc2\x10\xf1\x83\xc3\xf3"
                   15464:             "\x73\xe2\xf3\x63\xe3\xf1\x53\xe3\x10\x53\xe2\x73\xd3"
                   15465:             "\x63\xd3\x73\xc3\x83\xb3\x93\xa3\x93\x93\x8e\x02\xa3" }  },
                   15466:       /* --- pixel bitmap for cmmi250 char#69 E --- */
                   15467:       {  69, 6148,                      /* character number, location */
                   15468:          24, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   15469:           { 27,   24, 3,109, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   15470:             "\x6e\x07\xa3\xb3\xf1\x93\xd2\xf1\x93\xd1\x10\x83\xe1"
                   15471:             "\x93\x81\x51\x93\x81\xe0\x13\x72\xe3\x81\xe0\x1c\x80"
                   15472:             "\xf1\x73\x72\x80\x63\x81\xe0\x13\x81\x61\x83\xe0\x11"
                   15473:             "\x83\xe1\x83\xe0\x11\x83\xe2\x83\xe1\x93\xd2\x83\xc3"
                   15474:             "\x5e\x08\x5a" }  },
                   15475:       /* --- pixel bitmap for cmmi250 char#70 F --- */
                   15476:       {  70, 7437,                      /* character number, location */
                   15477:          24, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   15478:           { 27,   24, 3,93, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   15479:             "\x6e\x07\xa3\xb3\xf1\x93\xd2\xf1\x93\xd1\x10\x83\xe1"
                   15480:             "\x93\x81\x51\x93\x81\xe0\x13\x72\xe3\x81\xe0\x1c\x80"
                   15481:             "\xf1\x73\x72\x80\xf1\x63\x81\x90\xf1\x63\xe0\x40\xf3"
                   15482:             "\x53\xe0\x50\x44\xe0\x5c\xe0\x13" }  },
                   15483:       /* --- pixel bitmap for cmmi250 char#71 G --- */
                   15484:       {  71, 8672,                      /* character number, location */
                   15485:          25, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   15486:           { 24,   26, 3,109, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   15487:             "\xc6\x51\x93\x61\x32\x82\x91\x22\x63\xb3\x62\xd3\x53"
                   15488:             "\xe2\x43\xe0\x12\x42\xe0\x21\x43\xe0\x21\x33\xe0\x31"
                   15489:             "\x33\xe0\x6f\x23\xe0\x73\xaa\x13\xe3\x4f\x22\xe0\x13"
                   15490:             "\x4f\x13\xd3\x50\x12\xd3\x72\xb4\x82\x91\x12\xa2\x62"
                   15491:             "\x31\xc6\xca" }  },
                   15492:       /* --- pixel bitmap for cmmi250 char#72 H --- */
                   15493:       {  72, 9963,                      /* character number, location */
                   15494:          24, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   15495:           { 32,   24, 3,69, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   15496:             "\x6b\x4b\xa3\xc3\x40\xf3\x93\xc3\x50\xf3\x83\xc3\x60"
                   15497:             "\x73\xc3\xee\x04\x70\xf1\x73\xc3\x70\xf3\x63\xc3\x80"
                   15498:             "\xf3\x53\xc3\x90\x43\xc3\xab\x4b\x63" }  },
                   15499:       /* --- pixel bitmap for cmmi250 char#73 I --- */
                   15500:       {  73,10748,                      /* character number, location */
                   15501:          24, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   15502:           { 17,   24, 3,41, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   15503:             "\x6b\xa3\x40\xf3\x93\x50\xf3\x83\x60\xf3\x73\x70\xf3"
                   15504:             "\x63\x80\xf3\x53\x90\x43\xab\x63" }  },
                   15505:       /* --- pixel bitmap for cmmi250 char#74 J --- */
                   15506:       {  74,11616,                      /* character number, location */
                   15507:          24, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   15508:           { 21,   25, 3,55, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   15509:             "\xab\xe4\x30\xf3\xe3\x40\xf3\xd3\x50\xf3\xc3\x60\xf3"
                   15510:             "\xb3\x70\x12\x73\x8f\x14\x63\x83\x63\x91\x73\xb1\x53"
                   15511:             "\xd6\xd3" }  },
                   15512:       /* --- pixel bitmap for cmmi250 char#75 K --- */
                   15513:       {  75,12867,                      /* character number, location */
                   15514:          24, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   15515:           { 31,   24, 3,127, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   15516:             "\x6b\x68\xa3\xc3\xc3\xd2\xd3\xc1\xe0\x13\xa2\xe0\x23"
                   15517:             "\x91\xe0\x33\x91\xe0\x43\x71\xe0\x63\x61\xe0\x73\x51"
                   15518:             "\xe0\x73\x43\xe0\x73\x31\x13\xe0\x63\x21\x23\xe0\x64"
                   15519:             "\x53\xe0\x44\x63\xe0\x43\x74\xb0\xf1\x63\x83\xb0\xf1"
                   15520:             "\x53\xa3\xa0\xf1\x53\xb3\x90\x43\xc4\x8b\x59\x60" }  },
                   15521:       /* --- pixel bitmap for cmmi250 char#76 L --- */
                   15522:       {  76,13878,                      /* character number, location */
                   15523:          24, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   15524:           { 23,   24, 3,65, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   15525:             "\x6c\xe0\x13\xa0\xf3\x93\xb0\xf3\x83\xc0\xf3\x73\xd0"
                   15526:             "\x63\xe0\xf1\x63\xd1\x63\xc1\x63\xd1\x63\xc2\x63\xc1"
                   15527:             "\x73\xa3\x63\x95\x2e\x06\x33" }  },
                   15528:       /* --- pixel bitmap for cmmi250 char#77 M --- */
                   15529:       {  77,15228,                      /* character number, location */
                   15530:          24, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   15531:           { 38,   24, 3,173, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   15532:             "\x68\xe0\x28\xa4\xe0\x11\x13\xd1\x13\xe0\x14\xe1\x13"
                   15533:             "\xe1\x13\x50\xf1\x91\x13\xd1\x23\x50\x81\x33\xb1\x23"
                   15534:             "\x60\xf1\x81\x33\xa1\x33\x60\x81\x33\x91\x43\x60\xf1"
                   15535:             "\x71\x43\x81\x43\x70\x71\x53\x61\x53\xe1\x53\x51\x63"
                   15536:             "\xd1\x63\x51\x53\xe1\x63\x41\x63\x80\xf1\x61\x63\x31"
                   15537:             "\x73\x80\x51\x83\x11\x73\x90\xf1\x51\x84\x83\x90\x51"
                   15538:             "\x83\x93\xc3\x82\x93\xa9\x52\x5b\x60" }  },
                   15539:       /* --- pixel bitmap for cmmi250 char#78 N --- */
                   15540:       {  78,16484,                      /* character number, location */
                   15541:          24, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   15542:           { 32,   24, 3,117, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   15543:             "\x67\xa9\xa3\xd3\x30\xf1\x91\x13\xc1\x50\xf1\x91\x23"
                   15544:             "\xb1\x50\xf1\x81\x43\x91\x60\xf1\x81\x53\x81\x60\xf1"
                   15545:             "\x71\x73\x61\x70\xf1\x71\x83\x51\x70\xf1\x61\xa3\x31"
                   15546:             "\x80\xf1\x61\xb3\x21\x80\xf1\x51\xd4\x90\xf1\x51\xe3"
                   15547:             "\x90\x33\xe0\x11\xa9\xc1\xa1" }  },
                   15548:       /* --- pixel bitmap for cmmi250 char#79 O --- */
                   15549:       {  79,17439,                      /* character number, location */
                   15550:          25, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   15551:           { 23,   26, 3,99, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   15552:             "\xb7\xe3\x53\xa3\x83\x82\xb3\x62\xd2\x52\xe3\x33\xe0"
                   15553:             "\x12\xf1\x23\xe0\x22\xf1\x13\xe0\x32\x0f\x33\xe0\x33"
                   15554:             "\x03\xe0\x23\x12\xe0\x33\x1f\x12\xe0\x23\x23\xe3\x33"
                   15555:             "\xd3\x52\xd2\x63\xa3\x83\x83\xa3\x53\xe7\xb1" }  },
                   15556:       /* --- pixel bitmap for cmmi250 char#80 P --- */
                   15557:       {  80,18590,                      /* character number, location */
                   15558:          24, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   15559:           { 27,   24, 3,83, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   15560:             "\x6e\x03\xe3\x93\x20\xf1\x93\xb3\x10\x93\xc2\xa3\xc3"
                   15561:             "\xf1\x83\xc3\x10\x83\xc2\xa3\xb3\x93\xb3\xa3\x93\xcd"
                   15562:             "\xe3\xe0\x30\xf3\x63\xe0\x40\xf3\x53\xe0\x50\x43\xe0"
                   15563:             "\x6b\xe0\x22" }  },
                   15564:       /* --- pixel bitmap for cmmi250 char#81 Q --- */
                   15565:       {  81,19675,                      /* character number, location */
                   15566:          25, 2,   -7, 2,      /* topleft row,col, and botleft row,col */
                   15567:           { 23,   32, 3,145, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   15568:             "\xb7\xe3\x53\xa3\x83\x82\xb3\x62\xd2\x53\xd3\x33\xe3"
                   15569:             "\xf1\x23\xe0\x22\x13\xe0\x32\x13\xe0\x23\x0f\x33\xe0"
                   15570:             "\x33\x03\xe0\x23\x12\xe0\x33\x1f\x12\xe0\x23\x23\xe3"
                   15571:             "\x33\x53\x53\x52\x41\x31\x42\x63\x31\x31\x32\x83\x11"
                   15572:             "\x54\xa3\x11\x33\x51\x88\x61\xe2\x52\xe2\x51\xe0\x12"
                   15573:             "\x42\xe0\x17\xe0\x35\xe0\x53\x71" }  },
                   15574:       /* --- pixel bitmap for cmmi250 char#82 R --- */
                   15575:       {  82,21058,                      /* character number, location */
                   15576:          24, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   15577:           { 25,   25, 3,97, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   15578:             "\x5e\x01\xe3\x73\xb3\xa3\x93\xb2\x10\xf1\x83\xb3\xf1"
                   15579:             "\x73\xb3\x10\x73\xa3\x93\x93\x93\x83\xbb\xe3\x73\xc3"
                   15580:             "\x92\x50\xf3\x53\xa3\x40\xf1\x43\xa3\x50\xf1\x43\xa3"
                   15581:             "\x41\x33\xb3\x31\x1a\x82\x21\xe0\x73\x31" }  },
                   15582:       /* --- pixel bitmap for cmmi250 char#83 S --- */
                   15583:       {  83,22199,                      /* character number, location */
                   15584:          25, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   15585:           { 20,   26, 3,103, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   15586:             "\xa5\x41\x82\x52\x12\x72\x83\x62\x92\x71\xa2\x10\xf1"
                   15587:             "\x52\xa2\x10\x43\xa1\x20\xf1\x43\xd0\x55\xe0\x18\xd9"
                   15588:             "\xd8\xe0\x15\x40\xf2\xe3\x30\x21\xb3\x30\xf1\x11\xc2"
                   15589:             "\x40\x11\xc1\x62\xa2\x53\x92\x62\x12\x61\x81\x46\x91" }  },
                   15590:       /* --- pixel bitmap for cmmi250 char#84 T --- */
                   15591:       {  84,23281,                      /* character number, location */
                   15592:          24, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   15593:           { 24,   24, 3,77, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   15594:             "\x3e\x07\x23\x73\x63\x22\x73\x82\x21\x83\x82\xf1\x11"
                   15595:             "\x93\x81\x10\x11\x83\x91\x11\x93\x91\x10\xf1\xa3\xb0"
                   15596:             "\xf3\x93\xc0\xf3\x83\xd0\xf3\x73\xe0\x64\xe0\x1d\xa2" }  },
                   15597:       /* --- pixel bitmap for cmmi250 char#85 U --- */
                   15598:       {  85,24307,                      /* character number, location */
                   15599:          24, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   15600:           { 26,   25, 3,75, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   15601:             "\x0b\x69\x43\xd3\x30\xf3\x33\xe1\x50\xf3\x23\xe1\x60"
                   15602:             "\xf3\x13\xe1\x7f\x23\xe1\x83\xd2\x83\xd1\x9f\x13\xc1"
                   15603:             "\xa0\x12\xb1\xd2\x82\xe0\x12\x52\xe0\x46\xe0\x2d" }  },
                   15604:       /* --- pixel bitmap for cmmi250 char#86 V --- */
                   15605:       {  86,25271,                      /* character number, location */
                   15606:          24, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
                   15607:           { 24,   25, 3,117, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   15608:             "\x09\x87\x24\xd3\x53\xd1\x73\xc2\x73\xc1\x50\xf1\x33"
                   15609:             "\xb1\x60\x33\xa1\x70\xf1\x33\x91\x80\xf1\x43\x71\x90"
                   15610:             "\x43\x61\xa0\xf1\x43\x51\xb0\x43\x41\xe0\x23\x32\xe0"
                   15611:             "\x23\x31\xe0\x34\x11\xe0\x53\x11\xe0\x54\xe0\x10\xf1"
                   15612:             "\x53\xe0\x20\xf1\x52\xe0\x31" }  },
                   15613:       /* --- pixel bitmap for cmmi250 char#87 W --- */
                   15614:       {  87,26694,                      /* character number, location */
                   15615:          24, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
                   15616:           { 34,   25, 3,169, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   15617:             "\x09\x4a\x47\x24\xa3\xa3\x43\xb3\xa2\x53\xa4\xa1\x63"
                   15618:             "\xa4\x91\x73\x91\x13\x91\x73\x91\x13\x81\x84\x71\x23"
                   15619:             "\x81\x60\xf1\x33\x61\x33\x71\x70\xf1\x33\x51\x43\x61"
                   15620:             "\x80\x33\x41\x54\x41\xc3\x41\x63\x31\xd3\x31\x73\x31"
                   15621:             "\xd3\x31\x73\x21\xe3\x21\x83\x21\xe3\x12\x83\x11\xe0"
                   15622:             "\x13\x11\x93\x11\xc0\xf1\x34\xa4\xd0\xf1\x33\xb3\xe0"
                   15623:             "\x32\xc2\xe0\x42\xc1\xe0\x22" }  },
                   15624:       /* --- pixel bitmap for cmmi250 char#88 X --- */
                   15625:       {  88,27955,                      /* character number, location */
                   15626:          24, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   15627:           { 28,   24, 3,119, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   15628:             "\x6a\x48\x94\x93\xd3\x92\xe4\x72\xe0\x23\x62\xe0\x33"
                   15629:             "\x61\xe0\x44\x41\xe0\x63\x31\xe0\x74\x11\xe0\x94\xe0"
                   15630:             "\xa3\xc0\xf1\xd4\xb0\xc1\x14\xe0\x72\x23\xe0\x62\x33"
                   15631:             "\xe0\x61\x44\xe0\x41\x63\xe0\x31\x74\xe0\x11\x93\xe1"
                   15632:             "\xa3\xd1\xb4\xa4\xa4\x78\x79\x41" }  },
                   15633:       /* --- pixel bitmap for cmmi250 char#89 Y --- */
                   15634:       {  89,29093,                      /* character number, location */
                   15635:          24, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   15636:           { 25,   24, 3,87, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   15637:             "\x0a\x87\x34\xd3\x63\xd1\x84\xb1\xa3\xa1\xb3\x92\xb4"
                   15638:             "\x81\xd3\x71\xe4\x51\xe0\x23\x41\xe0\x33\x32\xe0\x34"
                   15639:             "\x21\xe0\x53\x11\xe0\x64\xd0\xf3\x83\xe0\xf3\x73\xe0"
                   15640:             "\x10\x63\xe0\x4b\xc1" }  },
                   15641:       /* --- pixel bitmap for cmmi250 char#90 Z --- */
                   15642:       {  90,30238,                      /* character number, location */
                   15643:          24, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   15644:           { 23,   24, 3,97, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   15645:             "\x6e\x03\x64\x93\x63\xa3\x72\xa3\x81\xa4\x81\xa3\x81"
                   15646:             "\xa3\x91\x93\xe0\x53\xe0\x53\xe0\x53\x90\xf1\xa3\xa0"
                   15647:             "\x93\xe0\x53\xe0\x53\x81\xa3\x91\x93\x91\x93\xa1\x84"
                   15648:             "\x92\x83\xa1\x83\xa2\x73\x93\x7e\x02\x70" }  },
                   15649:       /* --- pixel bitmap for cmmi250 char#91 \flat --- */
                   15650:       {  91,122038,                     /* character number, location */
                   15651:          26, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   15652:           {  9,   27, 3,53, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   15653:             "\xf9\x01\x81\x15\x22\x42\x11\x61\x1f\x41\x62\x0f\x11"
                   15654:             "\x52\x11\x42\x21\x41\x31\x32\x31\x22\x41\x12\x52\x71"
                   15655:             "\x84" }  },
                   15656:       /* --- pixel bitmap for cmmi250 char#92 \natural --- */
                   15657:       {  92,122829,                     /* character number, location */
                   15658:          26, 2,   -8, 2,      /* topleft row,col, and botleft row,col */
                   15659:           {  9,   34, 3,34, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   15660:             "\xf8\x01\x81\x54\x1e\x14\x51\x0f\xa1\x71\x01\x54\x1e"
                   15661:             "\x14\x51\xf5\x81" }  },
                   15662:       /* --- pixel bitmap for cmmi250 char#93 \sharp --- */
                   15663:       {  93,123734,                     /* character number, location */
                   15664:          25, 2,   -8, 2,      /* topleft row,col, and botleft row,col */
                   15665:           {  9,   33, 3,59, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   15666:             "\x71\x10\xf6\x11\x51\x10\x11\x43\x1e\x02\x13\x41\x10"
                   15667:             "\xfa\x11\x51\x10\x11\x43\x1e\x02\x13\x41\x10\xf4\x11"
                   15668:             "\x51\x10\x11\x70" }  },
                   15669:       /* --- pixel bitmap for cmmi250 char#94 \smile --- */
                   15670:       {  94,124704,                     /* character number, location */
                   15671:          13, 2,    5, 2,      /* topleft row,col, and botleft row,col */
                   15672:           { 31,    8, 3,45, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   15673:             "\x01\xe0\xe0\x11\x11\xe0\xd1\x31\xe0\xb1\x52\xe0\x72"
                   15674:             "\x73\xe0\x33\xa4\xb4\xee\x01\xe0\x59\xb1" }  },
                   15675:       /* --- pixel bitmap for cmmi250 char#95 \frown --- */
                   15676:       {  95,125582,                     /* character number, location */
                   15677:          14, 2,    5, 2,      /* topleft row,col, and botleft row,col */
                   15678:           { 31,    9, 3,52, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   15679:             "\xe0\x11\xe0\xad\xe0\x2e\x03\xc3\xe0\x13\x92\xe0\x52"
                   15680:             "\x71\xe0\x91\x51\xe0\xb1\x31\xe0\xd1\x11\xe0\xe0\x11" }  },
                   15681:       /* --- pixel bitmap for cmmi250 char#96 \ell --- */
                   15682:       {  96,98180,                      /* character number, location */
                   15683:          24, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   15684:           { 14,   24, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   15685:             "\x00\x1c\x80\x09\x30\x02\x84\x80\x21\x30\x08\x0c\x81"
                   15686:             "\x41\x60\x08\x18\x02\x43\xc0\x08\x30\x01\x2c\x00\x05"
                   15687:             "\x60\x01\x38\x00\x06\xc0\x01\x48\x00\x11\x00\x0c\x04"
                   15688:             "\xc2\x00\x0f" }  },
                   15689:       /* --- pixel bitmap for cmmi250 char#97 a --- */
                   15690:       {  97,31204,                      /* character number, location */
                   15691:          15, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   15692:           { 14,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   15693:             "\xe0\x09\x84\x83\xe0\x10\x30\x06\x8c\x80\x31\x60\x0c"
                   15694:             "\x18\x03\x46\xc0\x10\x30\x06\x8c\x83\xa3\xd8\xc4\xe1"
                   15695:             "\x00" }  },
                   15696:       /* --- pixel bitmap for cmmi250 char#98 b --- */
                   15697:       {  98,32064,                      /* character number, location */
                   15698:          24, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   15699:           { 11,   24, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   15700:             "\x3e\x80\x01\x06\x30\x80\x01\x0c\x30\x80\x01\x0c\x60"
                   15701:             "\x8f\x85\x1c\x6c\x60\x03\x0f\x78\xc0\x03\x1e\x70\xc0"
                   15702:             "\x02\x16\x98\x41\x88\x81\x07" }  },
                   15703:       /* --- pixel bitmap for cmmi250 char#99 c --- */
                   15704:       {  99,32899,                      /* character number, location */
                   15705:          15, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   15706:           { 12,   15, 3,37, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   15707:             "\x64\x62\x41\x42\x43\x22\x53\x12\x62\x22\x9f\x42\xa2"
                   15708:             "\x93\x81\x22\x52\x46\x42" }  },
                   15709:       /* --- pixel bitmap for cmmi250 char#100 d --- */
                   15710:       { 100,33879,                      /* character number, location */
                   15711:          24, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   15712:           { 15,   24, 3,77, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   15713:             "\xa5\xd2\xf3\xc2\x10\xf2\xb2\x20\x54\x22\x61\x43\x61"
                   15714:             "\x53\x51\x72\x42\x72\x41\x72\x4f\x22\x72\x41\x72\x5f"
                   15715:             "\x11\x72\x31\x12\x53\x31\x21\x32\x12\x21\x43\x43\x34" }  },
                   15716:       /* --- pixel bitmap for cmmi250 char#101 e --- */
                   15717:       { 101,34750,                      /* character number, location */
                   15718:          15, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   15719:           { 12,   15, 3,43, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   15720:             "\x64\x62\x41\x41\x71\x21\x81\x12\x71\x12\x72\x19\x3f"
                   15721:             "\x32\xa2\x91\x11\x81\x22\x52\x55\x42" }  },
                   15722:       /* --- pixel bitmap for cmmi250 char#102 f --- */
                   15723:       { 102,35936,                      /* character number, location */
                   15724:          24, 2,   -7, 2,      /* topleft row,col, and botleft row,col */
                   15725:           { 18,   31, 3,65, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   15726:             "\xd4\xd1\x32\xb2\x23\xb1\x42\xf3\xa2\x60\x92\xd9\x30"
                   15727:             "\xf2\x92\x70\xf5\x82\x80\xf4\x72\x90\xf2\x62\xa0\x12"
                   15728:             "\x31\xb3\x22\xb2\x31\xd4\xd1" }  },
                   15729:       /* --- pixel bitmap for cmmi250 char#103 g --- */
                   15730:       { 103,36945,                      /* character number, location */
                   15731:          15, 0,   -7, 0,      /* topleft row,col, and botleft row,col */
                   15732:           { 15,   22, 3,79, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   15733:             "\x84\x21\x71\x43\x61\x53\x51\x72\x42\x72\x41\x72\x10"
                   15734:             "\xf2\x32\x72\x10\xf2\x31\x72\x20\x32\x53\x61\x34\x83"
                   15735:             "\x22\x30\xf1\xa2\x30\x92\x52\x62\x43\x52\x52\x52\x76"
                   15736:             "\x82" }  },
                   15737:       /* --- pixel bitmap for cmmi250 char#104 h --- */
                   15738:       { 104,37926,                      /* character number, location */
                   15739:          24, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   15740:           { 16,   24, 3,89, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   15741:             "\x35\xe2\x80\xf3\x52\x90\xf2\x42\xa0\x42\x24\x72\x12"
                   15742:             "\x32\x30\xf1\x33\x62\x20\x32\x72\x20\xf2\x22\x72\x30"
                   15743:             "\x22\x62\x52\x72\x52\x72\x31\x12\x62\x41\x12\x62\x31"
                   15744:             "\x12\x81\x22\x12\x92\x33" }  },
                   15745:       /* --- pixel bitmap for cmmi250 char#105 i --- */
                   15746:       { 105,38824,                      /* character number, location */
                   15747:          24, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   15748:           {  9,   24, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   15749:             "\x80\x81\x03\x06\x00\x00\x00\x00\x00\x00\x70\x90\x11"
                   15750:             "\x26\x46\x0c\x18\x18\x30\x30\x60\xc0\xc8\x90\x11\x22"
                   15751:             "\x38" }  },
                   15752:       /* --- pixel bitmap for cmmi250 char#106 j --- */
                   15753:       { 106,39787,                      /* character number, location */
                   15754:          24, 0,   -7, 0,      /* topleft row,col, and botleft row,col */
                   15755:           { 14,   31, 3,65, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   15756:             "\xc2\xb3\xc2\xf5\xe0\x83\xa1\x31\x81\x42\x10\xf1\x51"
                   15757:             "\x52\x10\xf3\xa2\x20\xf3\x92\x30\xf3\x82\x40\x72\x62"
                   15758:             "\x42\x53\x32\x62\x32\x84\x91" }  },
                   15759:       /* --- pixel bitmap for cmmi250 char#107 k --- */
                   15760:       { 107,40848,                      /* character number, location */
                   15761:          24, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   15762:           { 15,   24, 3,83, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   15763:             "\x35\xd2\x70\xf3\x52\x80\xf2\x42\x90\x42\x53\x42\x51"
                   15764:             "\x22\x32\x41\x23\x32\x31\x32\x42\x21\x92\x12\xa4\xb2"
                   15765:             "\x23\x82\x42\x62\x52\x50\xf2\x12\x52\x31\x12\x62\x21"
                   15766:             "\x22\x73\x32" }  },
                   15767:       /* --- pixel bitmap for cmmi250 char#108 l --- */
                   15768:       { 108,41608,                      /* character number, location */
                   15769:          24, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   15770:           {  7,   24, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   15771:             "\x7c\x30\x0c\x06\x83\x61\x30\x18\x0c\x83\xc1\x60\x18"
                   15772:             "\x0c\x06\xc3\x60\x34\x1a\x4d\x1c" }  },
                   15773:       /* --- pixel bitmap for cmmi250 char#109 m --- */
                   15774:       { 109,42851,                      /* character number, location */
                   15775:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   15776:           { 28,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   15777:             "\x18\x7c\xf0\x40\x22\xcc\x18\x62\x81\x02\x23\x0e\x38"
                   15778:             "\x30\x62\x80\x01\x03\x07\x0c\x18\x30\xc0\x80\x01\x03"
                   15779:             "\x0c\x18\x30\xc0\xc0\x80\x01\x06\x0c\x18\x60\xc0\x88"
                   15780:             "\x01\x06\x86\x18\x60\x60\xc4\x00\x03\x44\x0c\x30\x80"
                   15781:             "\x03" }  },
                   15782:       /* --- pixel bitmap for cmmi250 char#110 n --- */
                   15783:       { 110,43954,                      /* character number, location */
                   15784:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   15785:           { 18,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   15786:             "\x18\x3c\x90\x8c\x21\x0e\x8c\x38\x30\x62\xc0\xc0\x80"
                   15787:             "\x01\x03\x06\x0c\x18\x30\x30\x60\xc0\x80\x01\x23\x06"
                   15788:             "\x86\x18\x18\x31\x40\xc6\x00\x06" }  },
                   15789:       /* --- pixel bitmap for cmmi250 char#111 o --- */
                   15790:       { 111,44706,                      /* character number, location */
                   15791:          15, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   15792:           { 13,   15, 3,47, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   15793:             "\x64\x72\x41\x52\x61\x32\x72\xf1\x12\x82\x0f\x22\x92"
                   15794:             "\x0f\x12\x82\x12\x72\x22\x62\x42\x42\x74\x62" }  },
                   15795:       /* --- pixel bitmap for cmmi250 char#112 p --- */
                   15796:       { 112,45714,                      /* character number, location */
                   15797:          15,-1,   -7,-1,      /* topleft row,col, and botleft row,col */
                   15798:           { 17,   22, 3,73, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   15799:             "\x52\x44\x61\x21\x21\x41\x41\x33\x52\xf1\x31\x32\x62"
                   15800:             "\xf3\x62\x72\xf1\x52\x72\x10\x52\x62\x72\x61\x72\x11"
                   15801:             "\x32\x82\x24\x50\xf1\x42\xb0\xf3\x32\xc7\xa2" }  },
                   15802:       /* --- pixel bitmap for cmmi250 char#113 q --- */
                   15803:       { 113,46647,                      /* character number, location */
                   15804:          15, 2,   -7, 2,      /* topleft row,col, and botleft row,col */
                   15805:           { 13,   22, 3,67, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   15806:             "\x54\x31\x41\x41\x11\x41\x53\x31\x72\x22\x72\x21\x72"
                   15807:             "\x2f\x22\x72\x2f\x21\x72\x32\x53\x41\x34\x63\x22\x40"
                   15808:             "\xf1\x72\x40\xf3\x62\x50\x37\x33" }  },
                   15809:       /* --- pixel bitmap for cmmi250 char#114 r --- */
                   15810:       { 114,47564,                      /* character number, location */
                   15811:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   15812:           { 14,   15, 3,47, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   15813:             "\x32\x44\x31\x21\x21\x32\x11\x33\x33\x11\x32\x42\x21"
                   15814:             "\x32\x70\xf3\x42\x80\xf3\x32\x90\xf1\x22\xa3" }  },
                   15815:       /* --- pixel bitmap for cmmi250 char#115 s --- */
                   15816:       { 115,48544,                      /* character number, location */
                   15817:          15, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   15818:           { 12,   15, 3,43, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   15819:             "\x64\x62\x42\xf1\x32\x43\x32\x42\x43\x96\x85\xa3\xa2"
                   15820:             "\x1f\x13\x62\x12\x62\x31\x52\x56\x41" }  },
                   15821:       /* --- pixel bitmap for cmmi250 char#116 t --- */
                   15822:       { 116,49306,                      /* character number, location */
                   15823:          21, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   15824:           { 11,   21, 3,47, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   15825:             "\xf2\x52\x40\xf2\x42\x5b\xf3\x32\x60\xf3\x22\x70\x12"
                   15826:             "\x80\xf1\x12\x51\x20\x12\x41\x42\x31\x64\x53" }  },
                   15827:       /* --- pixel bitmap for cmmi250 char#117 u --- */
                   15828:       { 117,50364,                      /* character number, location */
                   15829:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   15830:           { 17,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   15831:             "\x38\x40\x88\xc0\x08\x81\x11\x03\x23\x06\x06\x0c\x06"
                   15832:             "\x0c\x0c\x18\x18\x30\x30\x30\x30\x60\x60\xc4\xc0\x88"
                   15833:             "\xc1\x11\x46\x13\x78\x1c" }  },
                   15834:       /* --- pixel bitmap for cmmi250 char#118 v --- */
                   15835:       { 118,51309,                      /* character number, location */
                   15836:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   15837:           { 15,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   15838:             "\x38\x20\x22\xb0\x10\x58\x0c\x2c\x06\x06\x03\xc1\x80"
                   15839:             "\x60\x40\x30\x20\x0c\x08\x06\x04\x03\x01\x41\x80\x31"
                   15840:             "\x80\x07\x00" }  },
                   15841:       /* --- pixel bitmap for cmmi250 char#119 w --- */
                   15842:       { 119,52537,                      /* character number, location */
                   15843:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   15844:           { 23,   15, 3,85, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   15845:             "\x33\x81\x61\x31\x31\x62\x62\x11\x41\x62\x62\xf1\x11"
                   15846:             "\x32\x62\x62\x52\x52\x71\x10\xf2\x42\x62\x71\x10\xf1"
                   15847:             "\x32\x62\x71\x20\x32\x62\x61\x71\x62\x61\x72\x41\x12"
                   15848:             "\x41\xa4\x35\x52" }  },
                   15849:       /* --- pixel bitmap for cmmi250 char#120 x --- */
                   15850:       { 120,53803,                      /* character number, location */
                   15851:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   15852:           { 18,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   15853:             "\xe0\xe1\x41\x6c\x8c\x60\x38\x81\x61\x04\x06\x00\x0c"
                   15854:             "\x00\x30\x00\xc0\x00\x00\x03\x00\x06\x00\x18\xc8\x60"
                   15855:             "\x20\xc7\x41\x8c\x85\xe0\xe1\x01" }  },
                   15856:       /* --- pixel bitmap for cmmi250 char#121 y --- */
                   15857:       { 121,54927,                      /* character number, location */
                   15858:          15, 1,   -7, 1,      /* topleft row,col, and botleft row,col */
                   15859:           { 15,   22, 3,81, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   15860:             "\x33\x81\x21\x31\x62\x11\x41\x62\xf1\x11\x32\x62\x52"
                   15861:             "\x52\x10\xf2\x42\x62\x10\xf2\x32\x62\x20\x32\x53\x62"
                   15862:             "\x33\x84\x12\xd2\xd1\x62\x52\x53\x42\x62\x51\x81\x32"
                   15863:             "\xa4\x84" }  },
                   15864:       /* --- pixel bitmap for cmmi250 char#122 z --- */
                   15865:       { 122,55891,                      /* character number, location */
                   15866:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   15867:           { 15,   15, 3,49, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   15868:             "\x54\x51\x46\x31\x42\x44\x51\x71\xd1\xd1\xd1\xd1\xd1"
                   15869:             "\xc2\xc1\x81\x41\x91\x45\x32\x41\x45\x41\x63\x53" }  },
                   15870:       /* --- pixel bitmap for cmmi250 char#123 \imath --- */
                   15871:       { 123,98964,                      /* character number, location */
                   15872:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   15873:           {  9,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   15874:             "\x38\xc8\x08\x13\x23\x06\x0c\x0c\x18\x18\x30\x60\x64"
                   15875:             "\xc8\x08\x11\x1c" }  },
                   15876:       /* --- pixel bitmap for cmmi250 char#124 \jmath --- */
                   15877:       { 124,99807,                      /* character number, location */
                   15878:          15, 0,   -7, 0,      /* topleft row,col, and botleft row,col */
                   15879:           { 13,   22, 3,51, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   15880:             "\x83\x91\x31\x71\x42\xf1\x51\x52\xf3\xa2\x10\xf3\x92"
                   15881:             "\x20\xf3\x82\x30\x72\x52\x42\x43\x32\x52\x32\x75\x71" }  },
                   15882:       /* --- pixel bitmap for cmmi250 char#125 \wp --- */
                   15883:       { 125,100950,                     /* character number, location */
                   15884:          16, 2,   -8, 2,      /* topleft row,col, and botleft row,col */
                   15885:           { 19,   24, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   15886:             "\x60\x00\x80\x81\x0f\x06\xc3\x10\x04\xcc\x18\x60\x26"
                   15887:             "\x00\x1b\x01\xd8\x04\xc0\x16\x00\xb6\x00\xb0\x03\xc0"
                   15888:             "\x1c\x00\xc6\x20\x18\x0e\x41\xe8\x88\x41\x86\x07\x62"
                   15889:             "\x00\x10\x03\x40\x18\x00\xc2\x00\x10\x06\x80\x18\x00"
                   15890:             "\x4c\x00\xc0\x01\x00" }  },
                   15891:       /* --- pixel bitmap for cmmi250 char#126 \vec --- */
                   15892:       { 126,101632,                     /* character number, location */
                   15893:          24, 6,   17, 6,      /* topleft row,col, and botleft row,col */
                   15894:           { 15,    7, 3,17, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   15895:             "\xb2\xd3\x1f\x1e\x01\xa3\xc2\xd1\x41" }  },
                   15896:       /* --- pixel bitmap for cmmi250 char#127 (noname) --- */
                   15897:       { 127,102176,                     /* character number, location */
                   15898:          23,10,   19,10,      /* topleft row,col, and botleft row,col */
                   15899:           { 13,    4, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   15900:             "\x46\x52\x62\x21\xa2\xb1" }  },
                   15901:       /* --- trailer  --- */
                   15902:       { -99, -999,  0,0,0,0, { 0,0,0,0, (pixbyte *)"\0" }  }
                   15903:    } ;
                   15904: 
1.1       albertel 15905: 
1.5     ! raeburn  15906: /* --- size=8 for .325gf ---
        !          15907:  * mf '\mode=preview; mag=magstep(-11.40956951729850636869); input cmmi10'
        !          15908:  * --------------------------------------------------------------------- */
        !          15909: /* --- fontdef for cmmi325 --- */
        !          15910: static	chardef  cmmi325[] =
        !          15911:    {
        !          15912:       /* --- pixel bitmap for cmmi325 char#0 \Gamma --- */
        !          15913:       {   0,58867,                      /* character number, location */
        !          15914:          31, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          15915:           { 31,   31, 3,89, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          15916:             "\x7e\x0a\xb4\xc3\xc4\xd2\x10\xf1\xb4\xe1\x10\xf3\xa4"
        !          15917:             "\xe0\x11\x10\x94\xe0\x11\x20\xf2\x94\xe0\x40\xf3\x84"
        !          15918:             "\xe0\x50\xf3\x74\xe0\x60\xf3\x64\xe0\x70\xf3\x54\xe0"
        !          15919:             "\x80\x45\xe0\x8e\xe0\x33" }  },
        !          15920:       /* --- pixel bitmap for cmmi325 char#1 \Delta --- */
        !          15921:       {   1,59814,                      /* character number, location */
        !          15922:          32, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          15923:           { 33,   32, 3,180, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          15924:             "\xe0\xa1\xe0\xe0\x32\xe0\xe0\x24\x70\xf1\xe0\x75\x70"
        !          15925:             "\xe0\x61\x14\xe0\xc1\x25\xe0\xa1\x35\xe0\xa1\x44\xe0"
        !          15926:             "\x91\x54\xe0\x81\x65\xe0\x61\x75\xe0\x61\x84\xe0\x51"
        !          15927:             "\x94\xe0\x41\xa5\x40\xf1\xc1\xc4\x40\xb1\xd4\xe1\xe5"
        !          15928:             "\x30\xf1\x91\xe0\x24\x30\x81\xe0\x34\xa1\xe0\x45\x81"
        !          15929:             "\xe0\x64\x72\xe0\x64\x71\xe0\x75\x51\xe0\x85\x41\xe0"
        !          15930:             "\xa4\x32\xe0\xa4\x3e\x0e\x03\x1e\x0e\x0e\x0e\x09" }  },
        !          15931:       /* --- pixel bitmap for cmmi325 char#2 \Theta --- */
        !          15932:       {   2,61047,                      /* character number, location */
        !          15933:          32, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          15934:           { 30,   33, 3,175, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          15935:             "\xe0\x27\xe0\x63\x63\xe0\x23\xa3\xd3\xc3\xa3\xe3\x93"
        !          15936:             "\xe0\x23\x74\xe0\x23\x64\xe0\x34\x53\xe0\x53\x44\xe0"
        !          15937:             "\x53\xf1\x34\xe0\x63\x24\xe0\x73\x24\x41\xb1\x34\x14"
        !          15938:             "\x41\xb1\x44\xf2\x14\x4d\x44\x0f\x14\x41\xb1\x44\x14"
        !          15939:             "\xe0\x73\x24\xe0\x64\x24\xe0\x63\x34\xe0\x54\x43\xe0"
        !          15940:             "\x53\x53\xe0\x43\x64\xe0\x23\x83\xe0\x13\x93\xe3\xb3"
        !          15941:             "\xc3\xd3\xa3\xe0\x23\x54\xe0\x67\xe0\x1e" }  },
        !          15942:       /* --- pixel bitmap for cmmi325 char#3 \Lambda --- */
        !          15943:       {   3,62151,                      /* character number, location */
        !          15944:          32, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          15945:           { 28,   32, 3,144, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          15946:             "\xe0\x71\x60\xf1\xe0\x62\x60\xe0\x53\x60\xf1\xe0\x44"
        !          15947:             "\x60\xf1\xe0\x36\x50\xe0\x21\x24\x50\xf1\xe0\x11\x34"
        !          15948:             "\x50\xf1\xe1\x44\x50\xf1\xd1\x54\x50\xc1\x64\x50\xf1"
        !          15949:             "\xb1\x74\x50\xf1\xa1\x85\x40\x91\x95\xc2\xa4\xc1\xb4"
        !          15950:             "\x40\xf1\x71\xc4\x40\xf1\x61\xd4\x40\x51\xe4\x82\xe4"
        !          15951:             "\x81\xe0\x14\x64\xe5\x38\x8c" }  },
        !          15952:       /* --- pixel bitmap for cmmi325 char#4 \Xi --- */
        !          15953:       {   4,63636,                      /* character number, location */
        !          15954:          31, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          15955:           { 34,   31, 3,111, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          15956:             "\x8e\x0c\xf1\x7e\x0c\x10\xf1\x71\xe0\xa1\x10\xf1\x61"
        !          15957:             "\xe0\xa1\x20\xf3\xe0\xe0\x60\xf1\x91\xe0\x21\x70\xf2"
        !          15958:             "\x8e\x04\x80\x81\xe0\x21\xe0\x11\xe0\x21\x90\xf5\xe0"
        !          15959:             "\xe0\x60\x21\xe0\xa1\x60\xf2\x11\xe0\xa1\x70\x1e\x0c"
        !          15960:             "\x7f\x1e\x0c\x84" }  },
        !          15961:       /* --- pixel bitmap for cmmi325 char#5 \Pi --- */
        !          15962:       {   5,64941,                      /* character number, location */
        !          15963:          31, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          15964:           { 38,   31, 3,77, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          15965:             "\x7e\x0e\x03\xb4\xe5\x40\xf2\xb4\xe4\x50\xf3\xa4\xe4"
        !          15966:             "\x60\xf3\x94\xe4\x70\xf3\x84\xe4\x80\xf3\x74\xe4\x90"
        !          15967:             "\xf3\x64\xe4\xa0\xf3\x54\xe4\xb0\x45\xd5\xbd\x5d\x70" }  },
        !          15968:       /* --- pixel bitmap for cmmi325 char#6 \Sigma --- */
        !          15969:       {   6,66184,                      /* character number, location */
        !          15970:          31, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          15971:           { 35,   31, 3,177, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          15972:             "\x8e\x0d\x85\xe0\x25\x95\xe0\x43\xa4\xe0\x52\xa5\xe0"
        !          15973:             "\x42\xb4\xe0\x51\x10\xf1\xa5\xe0\x41\x10\xb4\xe0\x32"
        !          15974:             "\xc5\xe0\x21\xe4\xe0\xe0\x35\xe0\x40\xf1\xd4\xe0\x40"
        !          15975:             "\xd5\xe0\xe0\x34\xe0\xe0\x33\xe0\xe0\x51\xe0\xe0\x51"
        !          15976:             "\xe0\xe0\x51\xe0\xe0\x51\xe0\x31\xe2\xe0\x31\xe1\xe0"
        !          15977:             "\x51\xd1\xe0\x52\xc1\xe0\x61\xc1\xe0\x62\xb1\xe0\x63"
        !          15978:             "\x92\xe0\x63\x91\xe0\x56\x8e\x0c\x8e\x0d\x8e" }  },
        !          15979:       /* --- pixel bitmap for cmmi325 char#7 \Upsilon --- */
        !          15980:       {   7,67294,                      /* character number, location */
        !          15981:          32, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          15982:           { 29,   32, 3,113, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          15983:             "\x55\xd4\x68\x98\x3a\x6a\x23\x44\x54\x52\x12\x74\x43"
        !          15984:             "\x71\x11\x93\x33\x82\xa3\x23\x92\xb2\x22\xa1\xc2\x13"
        !          15985:             "\xe0\x92\x12\xe0\xa5\xc0\xf1\xc4\xd0\xb5\xd0\xf3\xb4"
        !          15986:             "\xe0\xf3\xa4\xe0\x10\xf3\x94\xe0\x20\xf3\x84\xe0\x30"
        !          15987:             "\x75\xe0\x4e\x02\xc0" }  },
        !          15988:       /* --- pixel bitmap for cmmi325 char#8 \Phi --- */
        !          15989:       {   8,68376,                      /* character number, location */
        !          15990:          31, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          15991:           { 28,   31, 3,141, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          15992:             "\xae\x01\xe0\x45\x80\xf2\xe0\x14\x90\xe4\xe0\x89\xe0"
        !          15993:             "\x14\x24\x23\xb3\x54\x43\x83\x54\x63\x54\x64\x73\x34"
        !          15994:             "\x74\x74\x14\x84\x74\x14\x74\x84\x0f\x24\x84\x84\x04"
        !          15995:             "\x74\x84\x14\x74\x83\x24\x74\x74\x33\x74\x64\x53\x54"
        !          15996:             "\x63\x83\x44\x44\xa4\x24\x23\xe0\x29\xc0\xf3\x94\xe0"
        !          15997:             "\x10\x85\xe0\x3e\x02\xa0" }  },
        !          15998:       /* --- pixel bitmap for cmmi325 char#9 \Psi --- */
        !          15999:       {   9,69557,                      /* character number, location */
        !          16000:          31, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          16001:           { 29,   31, 3,131, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          16002:             "\x9e\x01\xe0\x55\xa0\xf2\xe4\xb5\x84\x75\x24\x74\x64"
        !          16003:             "\x20\xf1\x24\x74\x54\x30\xf3\x24\x64\x54\x40\xf2\x14"
        !          16004:             "\x64\x54\x50\x14\x64\x44\x74\x54\x54\x74\x54\x44\x93"
        !          16005:             "\x54\x43\xa3\x54\x34\xb3\x34\x34\xc3\x34\x23\xe0\x23"
        !          16006:             "\x18\xe0\x57\xe0\x10\xf3\x84\xe0\x30\x75\xe0\x4e\x02"
        !          16007:             "\xc0" }  },
        !          16008:       /* --- pixel bitmap for cmmi325 char#10 \Omega --- */
        !          16009:       {  10,70846,                      /* character number, location */
        !          16010:          32, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          16011:           { 32,   32, 3,173, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          16012:             "\xe0\x38\xe0\x73\x73\xe0\x33\xb3\xd3\xe3\xb3\xe0\x23"
        !          16013:             "\x93\xe0\x33\x83\xe0\x44\x64\xe0\x53\x54\xe0\x63\x54"
        !          16014:             "\xe0\x54\xf2\x44\xe0\x64\xf1\x44\xe0\x54\x10\xf1\x44"
        !          16015:             "\xe0\x44\x20\x44\xe0\x34\x83\xe0\x33\x93\xe0\x23\xb2"
        !          16016:             "\xe0\x13\xc3\xe2\xe2\xd2\xe0\x12\xc2\xe0\x31\xc1\xb1"
        !          16017:             "\x61\xb1\x71\x41\x61\xa2\x61\x41\x72\x91\x71\x42\x62"
        !          16018:             "\x81\x71\x59\x99\x59\x8a\x59\x89\x6e" }  },
        !          16019:       /* --- pixel bitmap for cmmi325 char#11 \alpha --- */
        !          16020:       {  11,71986,                      /* character number, location */
        !          16021:          19, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          16022:           { 25,   19, 3,99, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          16023:             "\x95\xe0\x43\x42\xe3\x72\x71\x43\x83\x61\x33\xa2\x61"
        !          16024:             "\x24\xa3\x41\x33\xb3\x41\x10\xf1\x14\xb3\x31\x24\xc3"
        !          16025:             "\x21\x3f\x14\xc3\x11\x44\xc4\x54\xc3\x73\xc3\x73\xb4"
        !          16026:             "\x82\x92\x22\x41\x42\x62\x52\x21\x67\x83\x30" }  },
        !          16027:       /* --- pixel bitmap for cmmi325 char#12 \beta --- */
        !          16028:       {  12,73087,                      /* character number, location */
        !          16029:          31, 1,   -9, 1,      /* topleft row,col, and botleft row,col */
        !          16030:           { 25,   40, 3,149, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          16031:             "\xe0\x16\xe0\x41\x53\xe2\x82\xc1\xa2\x10\xf1\xa1\xc2"
        !          16032:             "\x91\xc3\xf1\x81\xd3\x81\xd2\x81\xd2\x91\xc2\xa1\x46"
        !          16033:             "\x12\xa1\x41\x53\xb1\x56\x11\xb1\xc2\xa1\xc3\x30\xf3"
        !          16034:             "\x51\xe2\x30\xf2\x41\xe3\x30\x41\xd3\x72\xd3\x72\xc3"
        !          16035:             "\x81\x11\xb2\x91\x11\x93\x91\x32\x53\xb1\x56\xb0\xf1"
        !          16036:             "\x21\xe0\x80\xf3\x11\xe0\x9f\x21\xe0\xa1" }  },
        !          16037:       /* --- pixel bitmap for cmmi325 char#13 \gamma --- */
        !          16038:       {  13,74112,                      /* character number, location */
        !          16039:          19, 1,  -10, 1,      /* topleft row,col, and botleft row,col */
        !          16040:           { 24,   29, 3,101, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          16041:             "\x64\xd1\x48\xa1\x4a\x81\x4b\x81\x33\x73\x61\x41\xb1"
        !          16042:             "\x61\x31\xc2\x41\x41\xd1\x41\xe0\x41\x31\xe0\x61\x21"
        !          16043:             "\x50\xf2\xe0\x11\x11\x60\xf1\xe0\x12\x70\xf2\xe0\x11"
        !          16044:             "\x80\xf2\xe2\x80\xf3\xd2\x90\xf2\xc2\xa0\xc1\xb2" }  },
        !          16045:       /* --- pixel bitmap for cmmi325 char#14 \delta --- */
        !          16046:       {  14,75113,                      /* character number, location */
        !          16047:          32, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          16048:           { 18,   32, 3,103, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          16049:             "\xb4\xc9\x81\x54\x72\x63\xf2\x72\x90\xf1\x82\x80\x83"
        !          16050:             "\x70\xf1\x93\x60\xa3\xe5\xb2\x23\x93\x34\x72\x64\x53"
        !          16051:             "\x64\x43\x83\x42\x93\x20\xf1\x13\x93\x2f\x23\xa3\x2f"
        !          16052:             "\x13\xa2\x30\x12\x92\x52\x83\x62\x72\x82\x43\xb5\x83" }  },
        !          16053:       /* --- pixel bitmap for cmmi325 char#15 \epsilon --- */
        !          16054:       {  15,76027,                      /* character number, location */
        !          16055:          19, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          16056:           { 15,   19, 3,45, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          16057:             "\x96\x63\xb3\xb3\xb3\xb4\x90\xf1\x14\xa0\x1c\x2f\x24"
        !          16058:             "\xb0\xf2\x13\xb0\x23\xd2\xe2\x53\x75\x44" }  },
        !          16059:       /* --- pixel bitmap for cmmi325 char#16 \zeta --- */
        !          16060:       {  16,76977,                      /* character number, location */
        !          16061:          31, 1,   -9, 1,      /* topleft row,col, and botleft row,col */
        !          16062:           { 20,   40, 3,133, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          16063:             "\xd1\x60\xf1\xc1\x70\xd6\xd2\x51\xa2\x25\xa2\xe0\x31"
        !          16064:             "\xe0\x41\xe0\x42\xe0\x32\xe0\x41\xe0\x42\xe0\xf1\x32"
        !          16065:             "\xe0\x10\xf1\x22\xe0\x20\xf4\x12\xe0\x3f\x23\xe0\x30"
        !          16066:             "\x12\xe0\x43\xe0\x34\xe0\x35\xe0\x26\xe0\x18\xe8\xe0"
        !          16067:             "\x16\xe0\x33\x50\xf1\xd3\x40\xf1\xd2\x50\x72\x32\xe0"
        !          16068:             "\x14\x70" }  },
        !          16069:       /* --- pixel bitmap for cmmi325 char#17 \eta --- */
        !          16070:       {  17,77936,                      /* character number, location */
        !          16071:          19, 2,  -10, 2,      /* topleft row,col, and botleft row,col */
        !          16072:           { 20,   29, 3,93, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          16073:             "\x34\x65\x41\x32\x32\x42\x21\x42\x21\x63\x11\x44\x73"
        !          16074:             "\x11\x43\x84\x44\x84\x43\x93\xf1\x53\x93\xf3\x43\x93"
        !          16075:             "\x10\xf3\x33\x93\x20\x23\x93\x62\x93\x30\xf1\xe3\x30"
        !          16076:             "\xf3\xd3\x40\xf2\xc3\x50\xc2\x60" }  },
        !          16077:       /* --- pixel bitmap for cmmi325 char#18 \theta --- */
        !          16078:       {  18,78754,                      /* character number, location */
        !          16079:          31, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          16080:           { 19,   31, 3,115, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          16081:             "\xb4\xd2\x41\xb2\x52\x93\x53\x73\x63\x63\x73\x63\x74"
        !          16082:             "\xf1\x43\x84\x34\x84\x33\x94\x24\x94\x24\x93\x10\xf1"
        !          16083:             "\x14\x94\x10\x1e\x03\x24\x94\x1f\x24\x94\x24\x93\x34"
        !          16084:             "\x84\x33\x93\x43\x84\x43\x83\x53\x73\x72\x73\x73\x53"
        !          16085:             "\x92\x43\xa2\x33\xd4\xb3" }  },
        !          16086:       /* --- pixel bitmap for cmmi325 char#19 \iota --- */
        !          16087:       {  19,79485,                      /* character number, location */
        !          16088:          19, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          16089:           { 11,   19, 3,45, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          16090:             "\x52\x40\xf3\x43\x40\xf2\x33\x50\xf3\x23\x60\x13\x83"
        !          16091:             "\x61\x12\x74\x61\x13\x51\x32\x32\x54\x54" }  },
        !          16092:       /* --- pixel bitmap for cmmi325 char#20 \kappa --- */
        !          16093:       {  20,80439,                      /* character number, location */
        !          16094:          19, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          16095:           { 21,   19, 3,85, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          16096:             "\x52\x94\x53\x76\x53\x61\x24\x53\x51\x42\x63\x41\xc3"
        !          16097:             "\x32\xd3\x21\xe0\x15\xe0\x2a\xa3\x64\x60\xf1\x23\x83"
        !          16098:             "\x50\x23\x93\x40\xf2\x13\x93\x41\x13\xa2\x31\x13\xb2"
        !          16099:             "\x31\x22\xc4\x23" }  },
        !          16100:       /* --- pixel bitmap for cmmi325 char#21 \lambda --- */
        !          16101:       {  21,81338,                      /* character number, location */
        !          16102:          31, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          16103:           { 22,   31, 3,118, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          16104:             "\x63\xe0\x73\xe0\x54\xa0\xf1\x93\xa0\x94\x90\xf1\xa3"
        !          16105:             "\x90\xa4\xe0\x53\xe0\x54\x70\xf1\xc3\x70\xc4\x60\xf1"
        !          16106:             "\xd3\x60\xf1\xd4\x50\xc1\x13\xe0\x21\x24\xe2\x33\xd2"
        !          16107:             "\x44\xb2\x63\xa2\x73\x92\x84\x63\xa3\x53\xb3\x43\xc4"
        !          16108:             "\x24\xd3\x23\xe4\x12\xe0\x23" }  },
        !          16109:       /* --- pixel bitmap for cmmi325 char#22 \mu --- */
        !          16110:       {  22,82416,                      /* character number, location */
        !          16111:          19, 1,  -10, 1,      /* topleft row,col, and botleft row,col */
        !          16112:           { 23,   29, 3,95, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          16113:             "\x72\xa2\x20\xf3\x63\x93\x20\xf3\x53\x93\x30\xf3\x43"
        !          16114:             "\x93\x40\x34\x83\x41\x33\x93\x41\x34\x74\x41\x34\x65"
        !          16115:             "\x31\x36\x41\x32\x31\x33\x25\x54\x20\xf1\x23\xe0\x40"
        !          16116:             "\xf3\x13\xe0\x5f\x23\xe0\x62\xe0\x73" }  },
        !          16117:       /* --- pixel bitmap for cmmi325 char#23 \nu --- */
        !          16118:       {  23,83263,                      /* character number, location */
        !          16119:          19, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          16120:           { 21,   19, 3,75, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          16121:             "\x17\xb2\xf2\x43\xb3\x43\xa3\x43\xb3\x10\xf1\x33\xa3"
        !          16122:             "\x20\x33\x93\x53\xa2\x63\x92\x73\x82\x83\x72\x83\x72"
        !          16123:             "\x93\x62\xa3\x42\xc3\x23\xc3\x12\xe0\x14\xe0\x30" }  },
        !          16124:       /* --- pixel bitmap for cmmi325 char#24 \xi --- */
        !          16125:       {  24,84445,                      /* character number, location */
        !          16126:          31, 0,   -9, 0,      /* topleft row,col, and botleft row,col */
        !          16127:           { 20,   40, 3,131, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          16128:             "\xc1\x70\xf1\xb1\x80\xc7\xa4\x61\x83\x26\x83\xe0\x23"
        !          16129:             "\xe0\x24\xb0\xf4\x44\xc0\x53\xe0\x3b\xb3\x61\x91\x27"
        !          16130:             "\x82\xe0\x32\xe0\x41\xe0\x42\xe0\x20\xf2\x12\xe0\x3f"
        !          16131:             "\x13\xe0\x30\x12\xe0\x44\xe0\x35\xe0\x26\xe0\x18\xe9"
        !          16132:             "\xe7\xe0\x15\x40\xf1\xe2\x40\x71\x62\xc2\x32\xe0\x14"
        !          16133:             "\x64" }  },
        !          16134:       /* --- pixel bitmap for cmmi325 char#25 \pi --- */
        !          16135:       {  25,85433,                      /* character number, location */
        !          16136:          19, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          16137:           { 24,   19, 3,93, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          16138:             "\x5e\x05\x4e\x06\x3e\x06\x32\x51\x51\x91\x71\x51\x91"
        !          16139:             "\x62\x51\xe0\x21\x61\xe0\x21\x52\x80\xf1\x72\x52\x80"
        !          16140:             "\x71\x62\x80\xf1\x62\x62\x80\x53\x62\xd2\x73\x70\xf1"
        !          16141:             "\x43\x73\x70\x33\x84\xa2\x92\x75" }  },
        !          16142:       /* --- pixel bitmap for cmmi325 char#26 \rho --- */
        !          16143:       {  26,86307,                      /* character number, location */
        !          16144:          19, 1,  -10, 1,      /* topleft row,col, and botleft row,col */
        !          16145:           { 22,   29, 3,99, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          16146:             "\xc5\xe0\x13\x42\xc2\x72\xa2\x83\x82\x93\x73\x94\x62"
        !          16147:             "\xa4\xf1\x53\xa4\xf2\x43\xa4\x10\x43\x94\x53\xa4\x53"
        !          16148:             "\xa3\x64\x83\x74\x73\x73\x21\x43\x93\x35\x90\xf1\x23"
        !          16149:             "\xe0\x30\xf3\x13\xe0\x4f\x23\xe0\x52\xe0\x60" }  },
        !          16150:       /* --- pixel bitmap for cmmi325 char#27 \sigma --- */
        !          16151:       {  27,87255,                      /* character number, location */
        !          16152:          19, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          16153:           { 24,   19, 3,69, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          16154:             "\x9e\x01\x7e\x03\x5e\x04\x54\x64\x93\x93\x83\xa3\x83"
        !          16155:             "\xb3\x50\xf1\x13\xc3\x5f\x23\xc3\x6f\x13\xb3\x73\xa3"
        !          16156:             "\x92\xa2\xb2\x73\xd2\x52\xe0\x26\xe3" }  },
        !          16157:       /* --- pixel bitmap for cmmi325 char#28 \tau --- */
        !          16158:       {  28,88074,                      /* character number, location */
        !          16159:          19, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          16160:           { 21,   19, 3,59, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          16161:             "\x5e\x02\x3e\x04\x3e\x03\x32\x61\xa0\xf1\x11\x72\xa0"
        !          16162:             "\x91\xb0\xf3\x82\xb0\x73\xb0\xf1\x72\xc0\xf2\x63\xc0"
        !          16163:             "\x53\xe0\x52\xd3" }  },
        !          16164:       /* --- pixel bitmap for cmmi325 char#29 \upsilon --- */
        !          16165:       {  29,88993,                      /* character number, location */
        !          16166:          19, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          16167:           { 22,   19, 3,89, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          16168:             "\x44\xa2\x51\x32\x84\x31\x42\x84\x21\x52\x85\x11\x43"
        !          16169:             "\xa2\x11\x53\xa2\x11\x53\xb1\x10\xf1\x53\xc1\x10\xf1"
        !          16170:             "\x43\xc1\x20\xf1\x43\xb1\x30\xf1\x43\xa1\x40\x43\x91"
        !          16171:             "\xa2\x81\xc2\x52\xe6\x9f" }  },
        !          16172:       /* --- pixel bitmap for cmmi325 char#30 \phi --- */
        !          16173:       {  30,89929,                      /* character number, location */
        !          16174:          31, 2,   -9, 2,      /* topleft row,col, and botleft row,col */
        !          16175:           { 24,   40, 3,145, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          16176:             "\xe0\x31\x60\xf3\xe0\x21\x70\xf3\xe0\x11\x80\xf2\xe1"
        !          16177:             "\x90\xa8\xe3\x21\x33\xa3\x41\x52\x82\x61\x62\x53\x71"
        !          16178:             "\x63\x42\x71\x82\x33\x71\x82\x10\xf1\x13\x81\x83\x0f"
        !          16179:             "\x23\x81\x83\x13\x81\x73\x32\x71\x82\x42\x71\x72\x62"
        !          16180:             "\x61\x62\x82\x51\x43\xa3\x21\x33\xe7\xb0\xf1\x91\xe0"
        !          16181:             "\xf3\x81\xe0\x10\xf2\x71\xe0\x21" }  },
        !          16182:       /* --- pixel bitmap for cmmi325 char#31 \chi --- */
        !          16183:       {  31,91068,                      /* character number, location */
        !          16184:          19, 1,   -9, 1,      /* topleft row,col, and botleft row,col */
        !          16185:           { 25,   28, 3,139, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          16186:             "\x44\xe0\x21\x31\x23\xe1\x31\x43\xc1\x94\xb1\xa3\xa1"
        !          16187:             "\xb4\x81\xd3\x71\xe3\x61\xe0\x14\x41\xe0\x33\x31\xe0"
        !          16188:             "\x43\x21\xe0\x55\xe0\x74\xe0\x73\xb0\xf1\xb4\xa0\xa1"
        !          16189:             "\x13\xe0\x51\x23\xe0\x41\x43\xe0\x21\x53\xe0\x11\x64"
        !          16190:             "\xe1\x73\xd1\x83\xc1\x94\xa1\xb3\x91\xc4\x31\x31\xe3"
        !          16191:             "\x31\x21\xe0\x34\x32" }  },
        !          16192:       /* --- pixel bitmap for cmmi325 char#32 \psi --- */
        !          16193:       {  32,92195,                      /* character number, location */
        !          16194:          31, 2,   -9, 2,      /* topleft row,col, and botleft row,col */
        !          16195:           { 27,   40, 3,181, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          16196:             "\xf1\xe0\x51\x70\xf3\xe0\x41\x80\xf3\xe0\x31\x90\xf1"
        !          16197:             "\xe0\x21\xa0\x44\x81\x62\x51\x32\x71\x54\x31\x42\x61"
        !          16198:             "\x64\x21\x52\x61\x65\x11\x43\x61\x82\x11\x53\x61\x82"
        !          16199:             "\x11\x53\x51\xa1\x10\xf1\x53\x61\xa1\x10\x43\x71\x91"
        !          16200:             "\x63\x61\xa1\x20\xf1\x43\x61\x91\x30\x43\x61\x81\x83"
        !          16201:             "\x51\x81\x93\x51\x71\xb3\x41\x52\xd4\x21\x32\xe0\x47"
        !          16202:             "\xb0\xf2\xb1\xe0\x10\xf3\xa1\xe0\x20\xf1\x91\xe0\x35" }  },
        !          16203:       /* --- pixel bitmap for cmmi325 char#33 \omega --- */
        !          16204:       {  33,93378,                      /* character number, location */
        !          16205:          19, 0,    0, 0,      /* topleft row,col, and botleft row,col */
        !          16206:           { 27,   19, 3,103, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          16207:             "\x42\xe0\x32\x52\xe0\x34\x41\xe0\x44\x32\xe0\x45\xf1"
        !          16208:             "\x21\xe0\x72\x10\x11\xb1\xb1\x10\xf1\x11\xa2\xb1\x11"
        !          16209:             "\xb2\xa1\x21\xb1\xb1\x21\xb1\xa2\x22\x92\xa1\x32\x84"
        !          16210:             "\x82\x33\x66\x62\x4b\x1b\x59\x39\x77\x57\x94\x84\x81" }  },
        !          16211:       /* --- pixel bitmap for cmmi325 char#34 \varepsilon --- */
        !          16212:       {  34,94397,                      /* character number, location */
        !          16213:          20, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
        !          16214:           { 18,   21, 3,65, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          16215:             "\x96\x9b\x63\x73\x41\xc1\xf3\x31\xe0\x31\x17\xa3\x42"
        !          16216:             "\x81\x34\x91\xe0\x10\xf1\x11\xe0\x2f\x11\xe0\x32\xd1"
        !          16217:             "\x31\xc1\x52\x82\x7a\x97\x71" }  },
        !          16218:       /* --- pixel bitmap for cmmi325 char#35 \vartheta --- */
        !          16219:       {  35,95456,                      /* character number, location */
        !          16220:          31, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          16221:           { 22,   31, 3,135, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          16222:             "\xe0\x14\xe0\x22\x32\xe1\x53\x10\xf1\xb1\x72\x10\xf2"
        !          16223:             "\xa1\x83\xf1\xa1\x74\xf1\xb1\x64\x34\x52\x43\x31\x32"
        !          16224:             "\x61\x24\x21\x42\x76\x21\x43\x85\x11\x43\x84\x1f\x11"
        !          16225:             "\x43\x84\x20\x53\x84\x73\x83\x73\x84\x30\xf1\x43\x83"
        !          16226:             "\x40\x43\x73\x92\x83\x83\x73\xa2\x72\xb3\x52\xd2\x42"
        !          16227:             "\xe0\x15\xb3" }  },
        !          16228:       /* --- pixel bitmap for cmmi325 char#36 \varpi --- */
        !          16229:       {  36,96767,                      /* character number, location */
        !          16230:          19, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          16231:           { 35,   19, 3,123, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          16232:             "\x5e\x0e\x02\x4e\x0e\x03\x3e\x0e\x03\x32\x41\xe0\x81"
        !          16233:             "\x41\x51\xe0\x91\x41\x41\xe0\xa1\x91\xb1\xc1\x81\xc1"
        !          16234:             "\xc1\x81\xb2\xc1\x71\xc2\xb1\x81\xb3\xb1\x81\xb3\xa2"
        !          16235:             "\x81\xa4\xa1\x91\x92\x12\x92\x91\x82\x22\x82\xa2\x53"
        !          16236:             "\x42\x53\xb9\x59\xd7\x77\xe0\x14\xa4\xb3" }  },
        !          16237:       /* --- pixel bitmap for cmmi325 char#37 \varrho --- */
        !          16238:       {  37,97722,                      /* character number, location */
        !          16239:          19, 3,   -9, 3,      /* topleft row,col, and botleft row,col */
        !          16240:           { 20,   28, 3,95, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          16241:             "\xa5\xd3\x42\xa2\x72\x82\x83\x62\x93\x53\x94\x42\xa4"
        !          16242:             "\xf1\x33\xa4\xf2\x23\xa4\x10\x23\x94\x34\x94\x34\x93"
        !          16243:             "\x41\x12\x83\x51\x22\x63\x61\x22\x43\x71\x55\x9f\x31"
        !          16244:             "\xe0\x52\xe0\x4d\x8d\x9b\xe0\x51\x62" }  },
        !          16245:       /* --- pixel bitmap for cmmi325 char#38 \varsigma --- */
        !          16246:       {  38,98593,                      /* character number, location */
        !          16247:          19, 2,   -4, 2,      /* topleft row,col, and botleft row,col */
        !          16248:           { 16,   23, 3,49, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          16249:             "\x88\x53\x62\x42\xd1\xe1\xe2\xdf\x32\xef\x13\xd0\x14"
        !          16250:             "\xc6\xb7\xb7\xb6\xc4\x40\xf2\xa2\x40\x92\xb4\x64" }  },
        !          16251:       /* --- pixel bitmap for cmmi325 char#39 \varphi --- */
        !          16252:       {  39,99546,                      /* character number, location */
        !          16253:          19, 2,  -10, 2,      /* topleft row,col, and botleft row,col */
        !          16254:           { 26,   29, 3,133, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          16255:             "\x41\xe4\x71\xc7\x51\xc9\x31\xc3\x53\x21\xb2\x82\x11"
        !          16256:             "\xc1\xa1\xf1\x11\xb1\xb1\x11\xa1\xc3\xa1\xb1\x12\x91"
        !          16257:             "\xc1\x21\x91\xb1\x31\x91\xa2\x32\x71\xa2\x53\x51\x83"
        !          16258:             "\x75\x21\x55\x9e\x01\xcd\xe0\x27\xb0\xf2\x82\xe0\x20"
        !          16259:             "\xf1\x73\xe0\x20\xf1\x72\xe0\x30\xf1\x63\xe0\x30\x62"
        !          16260:             "\xe0\x45" }  },
        !          16261:       /* --- pixel bitmap for cmmi325 char#40 \leftharpoonup --- */
        !          16262:       {  40,116104,                     /* character number, location */
        !          16263:          23, 3,   10, 3,      /* topleft row,col, and botleft row,col */
        !          16264:           { 40,   13, 2,30, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          16265:             "\x0a\x01\x1d\x00\xff\x01\x09\x02\x1d\x00\xff\x01\x08"
        !          16266:             "\x02\x1e\x00\x07\x02\x25\x03\x25\x02\x25\x02\x24\x03"
        !          16267:             "\x24\x03\x24\x4f" }  },
        !          16268:       /* --- pixel bitmap for cmmi325 char#41 \leftharpoondown --- */
        !          16269:       {  41,117144,                     /* character number, location */
        !          16270:          12, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          16271:           { 40,   13, 2,33, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          16272:             "\x00\x28\x01\x27\x02\x03\x26\x03\x27\x02\x27\x02\x26"
        !          16273:             "\x03\x26\x02\x1f\x00\xff\x01\x08\x02\x1e\x00\xff\x01"
        !          16274:             "\x09\x02\x1d\x00\x0a\x01\x1d" }  },
        !          16275:       /* --- pixel bitmap for cmmi325 char#42 \rightharpoonup --- */
        !          16276:       {  42,118182,                     /* character number, location */
        !          16277:          23, 3,   10, 3,      /* topleft row,col, and botleft row,col */
        !          16278:           { 40,   13, 2,32, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          16279:             "\x1d\x01\x0a\x00\xff\x01\x1d\x02\x09\x00\xff\x01\x1e"
        !          16280:             "\x02\x08\x00\x1f\x02\x26\x03\x26\x02\x27\x02\x27\x03"
        !          16281:             "\x26\x03\x02\xff\x01\x28" }  },
        !          16282:       /* --- pixel bitmap for cmmi325 char#43 \rightharpoondown --- */
        !          16283:       {  43,119223,                     /* character number, location */
        !          16284:          12, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          16285:           { 40,   13, 2,31, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          16286:             "\x00\x4f\x24\x03\x24\x03\x24\x02\x25\x02\x25\x03\x25"
        !          16287:             "\x02\x07\x00\xff\x01\x1e\x02\x08\x00\xff\x01\x1d\x02"
        !          16288:             "\x09\x00\x1d\x01\x0a" }  },
        !          16289:       /* --- pixel bitmap for cmmi325 char#44 ` --- */
        !          16290:       {  44,119656,                     /* character number, location */
        !          16291:          22, 2,   10, 2,      /* topleft row,col, and botleft row,col */
        !          16292:           {  8,   12, 3,20, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          16293:             "\x44\x26\x13\x43\x5f\x32\x63\x63\x66\x44" }  },
        !          16294:       /* --- pixel bitmap for cmmi325 char#45 ' --- */
        !          16295:       {  45,120088,                     /* character number, location */
        !          16296:          22, 2,   10, 2,      /* topleft row,col, and botleft row,col */
        !          16297:           {  8,   12, 3,21, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          16298:             "\x04\x46\x63\x63\xf3\x62\x53\x43\x16\x24\x40" }  },
        !          16299:       /* --- pixel bitmap for cmmi325 char#46 \triangleright --- */
        !          16300:       {  46,120637,                     /* character number, location */
        !          16301:          23, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
        !          16302:           { 20,   24, 3,95, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          16303:             "\x02\xe0\x44\xe0\x25\xe0\x12\x14\xd2\x34\xb2\x53\xa2"
        !          16304:             "\x64\x82\x83\x72\x94\x52\xb4\x32\xd3\x2f\x12\xe4\x02"
        !          16305:             "\xd3\x22\xb4\x32\x94\x52\x83\x72\x64\x82\x53\xa2\x34"
        !          16306:             "\xb2\x14\xd5\xe0\x14\xe0\x22\xe0\x43" }  },
        !          16307:       /* --- pixel bitmap for cmmi325 char#47 \triangleleft --- */
        !          16308:       {  47,121245,                     /* character number, location */
        !          16309:          23, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
        !          16310:           { 20,   24, 3,94, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          16311:             "\xe0\x42\xe0\x24\xe0\x15\xd4\x12\xb4\x32\xa3\x52\x84"
        !          16312:             "\x62\x73\x82\x54\x92\x34\xb2\x23\xd2\x0f\x14\xe2\x23"
        !          16313:             "\xd2\x34\xb2\x54\x92\x73\x82\x84\x62\xa3\x52\xb4\x32"
        !          16314:             "\xd4\x12\xe0\x15\xe0\x24\xe0\x42" }  },
        !          16315:       /* --- pixel bitmap for cmmi325 char#48 \0 --- */
        !          16316:       {  48,106251,                     /* character number, location */
        !          16317:          20, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          16318:           { 18,   21, 3,51, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          16319:             "\x66\xa3\x43\x40\xf1\x23\x83\x20\xf1\x13\xa3\x1f\x84"
        !          16320:             "\xa4\xf1\x13\xa3\x10\xf1\x23\x83\x20\x43\x43\xa6\x63" }  },
        !          16321:       /* --- pixel bitmap for cmmi325 char#49 \1 --- */
        !          16322:       {  49,107058,                     /* character number, location */
        !          16323:          20, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          16324:           { 15,   20, 3,20, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          16325:             "\x81\xb4\x65\x13\x60\xfe\x63\x60\x63\x7e" }  },
        !          16326:       /* --- pixel bitmap for cmmi325 char#50 \2 --- */
        !          16327:       {  50,108046,                     /* character number, location */
        !          16328:          20, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          16329:           { 18,   20, 3,63, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          16330:             "\x58\x82\x64\x51\xa3\x31\xb4\x12\xc4\x0f\x13\xb4\xe4"
        !          16331:             "\xf1\xd4\x10\xc4\xd3\xe3\xd3\xe2\x81\x52\xa1\x42\xa2"
        !          16332:             "\x3e\x2e\x02\x1e\x03\x11" }  },
        !          16333:       /* --- pixel bitmap for cmmi325 char#51 \3 --- */
        !          16334:       {  51,109099,                     /* character number, location */
        !          16335:          20, 2,  -10, 2,      /* topleft row,col, and botleft row,col */
        !          16336:           { 18,   30, 3,99, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          16337:             "\x66\xa2\x53\x71\x83\x51\xa3\x20\xf2\x14\x84\x10\x23"
        !          16338:             "\x84\xe3\xe4\xe3\xe3\xe3\xa7\xe0\x33\xe0\x23\xe0\x23"
        !          16339:             "\xe0\x14\xe0\x13\x10\xf1\xe4\x13\xa4\x0f\x15\x94\x04"
        !          16340:             "\xa3\x22\xa4\x21\xb3\x41\x93\x63\x53\xa6\x62" }  },
        !          16341:       /* --- pixel bitmap for cmmi325 char#52 \4 --- */
        !          16342:       {  52,110072,                     /* character number, location */
        !          16343:          20, 1,   -9, 1,      /* topleft row,col, and botleft row,col */
        !          16344:           { 20,   29, 3,87, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          16345:             "\xf1\xd2\x50\xc3\x50\xf1\xb4\x50\xa1\x13\xe1\x23\xd2"
        !          16346:             "\x23\xd1\x33\xc1\x43\xb1\x53\xa2\x53\xa1\x63\x91\x73"
        !          16347:             "\x50\xf1\x31\x83\x50\x21\x93\x61\xa3\x52\xa3\x5e\x06"
        !          16348:             "\xf7\xc3\x50\x8b\x13" }  },
        !          16349:       /* --- pixel bitmap for cmmi325 char#53 \5 --- */
        !          16350:       {  53,111153,                     /* character number, location */
        !          16351:          20, 2,  -10, 2,      /* topleft row,col, and botleft row,col */
        !          16352:           { 18,   30, 3,87, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          16353:             "\x32\x92\x5c\x6b\x79\x60\xf6\x31\xe0\x31\x26\x91\x11"
        !          16354:             "\x53\x72\x82\x61\x93\xe0\x14\xe0\x13\x10\xf2\xe4\x13"
        !          16355:             "\xa4\x0f\x14\xa4\x03\xb3\x21\xc3\x21\xb3\x41\xa3\x51"
        !          16356:             "\x83\x71\x53\xa6\x73" }  },
        !          16357:       /* --- pixel bitmap for cmmi325 char#54 \6 --- */
        !          16358:       {  54,112094,                     /* character number, location */
        !          16359:          30, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          16360:           { 18,   31, 3,101, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          16361:             "\x95\xb2\x51\x83\x71\x63\x73\x52\x74\x42\x84\x33\x92"
        !          16362:             "\x43\xe4\xd0\xf1\x13\xe4\x35\x64\x21\x43\x44\x11\x72"
        !          16363:             "\x35\x83\x2f\x15\x93\x1f\x44\xa4\xf1\x13\xa4\x13\xa3"
        !          16364:             "\x33\x93\x33\x83\x52\x83\x62\x63\x82\x43\xb5\x61" }  },
        !          16365:       /* --- pixel bitmap for cmmi325 char#55 \7 --- */
        !          16366:       {  55,113063,                     /* character number, location */
        !          16367:          20, 2,  -10, 2,      /* topleft row,col, and botleft row,col */
        !          16368:           { 19,   30, 3,85, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          16369:             "\x11\xe0\x4e\x04\xf1\x1e\x03\x10\x11\xe1\x21\xe1\x3f"
        !          16370:             "\x11\xd1\x40\xd1\x50\xf1\xc1\x60\xb1\xe0\x32\xe0\x31"
        !          16371:             "\x80\xf1\x92\x80\x83\x80\xf1\x82\x90\xf3\x73\x90\xf5"
        !          16372:             "\x64\x90\x72\xa3" }  },
        !          16373:       /* --- pixel bitmap for cmmi325 char#56 \8 --- */
        !          16374:       {  56,114016,                     /* character number, location */
        !          16375:          30, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          16376:           { 18,   31, 3,105, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          16377:             "\x66\xa2\x62\x71\x92\x52\xa2\x41\xc2\x10\xf2\x12\xc2"
        !          16378:             "\x10\x13\xb2\x24\x92\x45\x72\x46\x52\x67\x21\x98\xc7"
        !          16379:             "\xa9\x82\x36\x61\x66\x42\x85\x22\xa4\x22\xc5\xd3\x0f"
        !          16380:             "\x22\xe2\x02\xe1\x22\xc2\x31\xc1\x51\xa1\x72\x62\xa6"
        !          16381:             "\x61" }  },
        !          16382:       /* --- pixel bitmap for cmmi325 char#57 \9 --- */
        !          16383:       {  57,114981,                     /* character number, location */
        !          16384:          20, 2,  -10, 2,      /* topleft row,col, and botleft row,col */
        !          16385:           { 18,   30, 3,99, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          16386:             "\x66\xa3\x42\x83\x62\x63\x82\x44\x83\x33\x93\x2f\x24"
        !          16387:             "\xa3\x1f\x34\xa4\x13\xa4\x13\x95\x23\x85\x32\x71\x14"
        !          16388:             "\x43\x41\x24\x65\x34\xe4\xf1\xe3\x10\xd4\x32\x93\x34"
        !          16389:             "\x82\x44\x73\x43\x82\x61\x82\x81\x53\xa6\x82" }  },
        !          16390:       /* --- pixel bitmap for cmmi325 char#58 . --- */
        !          16391:       {  58,121782,                     /* character number, location */
        !          16392:           5, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          16393:           {  5,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          16394:             "\xee\xff\xef\x00" }  },
        !          16395:       /* --- pixel bitmap for cmmi325 char#59 , --- */
        !          16396:       {  59,122347,                     /* character number, location */
        !          16397:           5, 4,   -9, 4,      /* topleft row,col, and botleft row,col */
        !          16398:           {  5,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          16399:             "\xee\xfd\xef\x21\x84\x08\x21\x42\x04" }  },
        !          16400:       /* --- pixel bitmap for cmmi325 char#60 < --- */
        !          16401:       {  60,123021,                     /* character number, location */
        !          16402:          25, 4,   -3, 4,      /* topleft row,col, and botleft row,col */
        !          16403:           { 27,   28, 3,112, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          16404:             "\xe0\xb2\xe0\x94\xe0\x74\xe0\x74\xe0\x74\xe0\x74\xe0"
        !          16405:             "\x74\xe0\x83\xe0\x84\xe0\x74\xe0\x74\xe0\x74\xe0\x74"
        !          16406:             "\xe0\x7f\x14\xe0\x90\x24\xe0\xb4\xe0\xb4\xe0\xb4\xe0"
        !          16407:             "\xb4\xe0\xb3\xe0\xb4\xe0\xb4\xe0\xb4\xe0\xb4\xe0\xb4"
        !          16408:             "\xe0\xb4\xe0\xb2" }  },
        !          16409:       /* --- pixel bitmap for cmmi325 char#61 / --- */
        !          16410:       {  61,123579,                     /* character number, location */
        !          16411:          34, 2,  -11, 2,      /* topleft row,col, and botleft row,col */
        !          16412:           { 18,   45, 3,159, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          16413:             "\xf1\xe0\x22\xe0\x13\xf1\xe0\x12\x10\xe3\xe0\x12\xe0"
        !          16414:             "\x13\x20\xf1\xd2\x30\xc3\x30\xf1\xc2\x40\xb3\xe0\x12"
        !          16415:             "\xe0\x13\x50\xf1\xa2\x60\x93\x60\xf1\x92\x70\x83\xe0"
        !          16416:             "\x12\xe0\x13\x80\xf1\x72\x90\x63\x90\xf1\x62\xa0\x53"
        !          16417:             "\xe0\x12\xe0\x13\xb0\xf1\x42\xc0\x33\xc0\xf1\x32\xd0"
        !          16418:             "\x23\xe0\x12\xe0\x13\xe0\xf1\x12\xe0\x13\xe0\x1f\x12"
        !          16419:             "\xe0\x20" }  },
        !          16420:       /* --- pixel bitmap for cmmi325 char#62 > --- */
        !          16421:       {  62,124318,                     /* character number, location */
        !          16422:          25, 4,   -3, 4,      /* topleft row,col, and botleft row,col */
        !          16423:           { 27,   28, 3,113, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          16424:             "\x02\xe0\xb4\xe0\xb4\xe0\xb4\xe0\xb4\xe0\xb4\xe0\xb4"
        !          16425:             "\xe0\xb3\xe0\xb4\xe0\xb4\xe0\xb4\xe0\xb4\xe0\xb4\x20"
        !          16426:             "\xf1\xe0\x94\xe0\x74\xe0\x74\xe0\x74\xe0\x74\xe0\x74"
        !          16427:             "\xe0\x83\xe0\x84\xe0\x74\xe0\x74\xe0\x74\xe0\x74\xe0"
        !          16428:             "\x74\xe0\x92\xe0\xb0" }  },
        !          16429:       /* --- pixel bitmap for cmmi325 char#63 \star --- */
        !          16430:       {  63,125051,                     /* character number, location */
        !          16431:          22, 0,    0, 0,      /* topleft row,col, and botleft row,col */
        !          16432:           { 23,   22, 3,69, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          16433:             "\xf3\xb1\xb0\xf3\xa3\xa3\x73\x73\x27\x13\x17\x6e\x01"
        !          16434:             "\xab\xe7\xe0\x35\xe0\x37\xe0\x14\x14\xe3\x33\xd3\x53"
        !          16435:             "\xc2\x72\xb2\x92\xa1\xb1\x91\xd1\x44" }  },
        !          16436:       /* --- pixel bitmap for cmmi325 char#64 \partial --- */
        !          16437:       {  64,100612,                     /* character number, location */
        !          16438:          32, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          16439:           { 24,   33, 3,141, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          16440:             "\xb6\xe0\x22\x53\xd1\x92\xb1\xb2\x91\xc3\x83\xb2\x20"
        !          16441:             "\xf1\x54\xb3\x10\x62\xc3\x10\xf1\xe0\x63\x10\xe0\x64"
        !          16442:             "\xa5\x53\x92\x52\x33\x73\x81\x14\x63\x91\x14\x53\xb5"
        !          16443:             "\x43\xc5\x34\xc4\x20\xf1\x14\xd4\x20\x14\xd3\x34\xd4"
        !          16444:             "\x3f\x14\xd3\x4f\x14\xc3\x54\xb3\x73\xb2\x83\xa2\xa3"
        !          16445:             "\x82\xc3\x53\xe0\x16\xd3" }  },
        !          16446:       /* --- pixel bitmap for cmmi325 char#65 A --- */
        !          16447:       {  65, 1066,                      /* character number, location */
        !          16448:          32, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          16449:           { 31,   32, 3,158, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          16450:             "\xf1\xe0\x82\x70\xe0\x73\x70\xf1\xe0\x64\x70\xe0\x55"
        !          16451:             "\xe0\xb6\xe0\xb1\x14\xe0\xa1\x24\xe0\xa1\x25\xe0\x81"
        !          16452:             "\x44\x60\xf1\xe0\x11\x54\x60\xf1\xe1\x64\x60\xd1\x74"
        !          16453:             "\x60\xf1\xc1\x84\x60\xb1\x95\xe0\x21\xa4\xe0\x11\xb4"
        !          16454:             "\xee\x03\xe1\xc4\xd1\xd4\xc2\xd4\xc1\xe4\x50\xf1\x61"
        !          16455:             "\xe0\x15\x40\x51\xe0\x34\x82\xe0\x34\x73\xe0\x25\x49"
        !          16456:             "\x9d" }  },
        !          16457:       /* --- pixel bitmap for cmmi325 char#66 B --- */
        !          16458:       {  66, 2518,                      /* character number, location */
        !          16459:          31, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          16460:           { 32,   31, 3,123, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          16461:             "\x7e\x06\xe0\x24\xb3\xe4\xc4\xc4\xd3\xc4\xd4\xf3\xa4"
        !          16462:             "\xe4\x94\xe4\xa4\xe3\xb4\xd4\xb4\xc4\xb4\xb4\xde\x03"
        !          16463:             "\xe0\x14\xa5\xd4\xc4\xb4\xe4\x30\xf2\x74\xe0\x14\x20"
        !          16464:             "\xf2\x64\xe0\x24\x20\x64\xe0\x14\x84\xe0\x24\x84\xe0"
        !          16465:             "\x14\x94\xe4\xa4\xd4\xa4\xb5\x8e\x07\xb4" }  },
        !          16466:       /* --- pixel bitmap for cmmi325 char#67 C --- */
        !          16467:       {  67, 3573,                      /* character number, location */
        !          16468:          32, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
        !          16469:           { 33,   33, 3,167, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          16470:             "\xe0\x37\x81\xe4\x62\x52\xc3\xb1\x32\xb3\xe1\x13\xa3"
        !          16471:             "\xe0\x24\x93\xe0\x34\x83\xe0\x52\x83\xe0\x62\x73\xe0"
        !          16472:             "\x72\x64\xe0\x72\x63\xe0\x81\x64\xe0\x81\x54\xe0\x91"
        !          16473:             "\x54\xe0\xd0\xf3\x14\xe0\xef\x24\xe0\xe0\x14\xe0\x91"
        !          16474:             "\x50\xf1\x13\xe0\x81\x60\xf1\x13\xe0\x71\x70\x23\xe0"
        !          16475:             "\x51\xa3\xe0\x41\xc3\xe0\x21\xe3\xe1\xe0\x23\xb2\xe0"
        !          16476:             "\x53\x63\xe0\x97\xe0\x30" }  },
        !          16477:       /* --- pixel bitmap for cmmi325 char#68 D --- */
        !          16478:       {  68, 4841,                      /* character number, location */
        !          16479:          31, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          16480:           { 34,   31, 3,135, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          16481:             "\x7e\x06\xe0\x44\xb3\xe0\x24\xd3\x30\xf1\xb4\xe3\x20"
        !          16482:             "\xf1\xa4\xe0\x23\x10\xf1\xa4\xe0\x33\xf3\x94\xe0\x43"
        !          16483:             "\xf3\x84\xe0\x44\xf1\x74\xe0\x44\x10\x74\xe0\x43\x94"
        !          16484:             "\xe0\x34\x84\xe0\x43\x94\xe0\x34\x94\xe0\x33\xa4\xe0"
        !          16485:             "\x23\xa4\xe0\x23\xb4\xe0\x13\xc4\xe3\xd4\xc3\xe4\xb3"
        !          16486:             "\xce\x06\xe0" }  },
        !          16487:       /* --- pixel bitmap for cmmi325 char#69 E --- */
        !          16488:       {  69, 6390,                      /* character number, location */
        !          16489:          31, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          16490:           { 34,   31, 3,145, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          16491:             "\x8e\x0c\xc4\xd4\x10\xf1\xc4\xe0\x12\x10\xc4\xe0\x21"
        !          16492:             "\x10\xf3\xb4\xe0\x31\x10\xa4\x91\x71\x20\xf1\xa4\x91"
        !          16493:             "\xa0\xa4\x82\xe0\x54\x82\xe0\x6e\xb0\xf1\x94\x82\xb0"
        !          16494:             "\xf2\x84\x91\xc0\x84\xe0\x41\x30\xf1\x74\xe0\x41\x40"
        !          16495:             "\xf1\x74\xe0\x31\x50\x64\xe0\x31\xc4\xe0\x22\xc4\xe0"
        !          16496:             "\x21\xd4\xe3\xc4\xd5\x8e\x0b\x83" }  },
        !          16497:       /* --- pixel bitmap for cmmi325 char#70 F --- */
        !          16498:       {  70, 7771,                      /* character number, location */
        !          16499:          31, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          16500:           { 32,   31, 3,107, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          16501:             "\x7e\x0b\xb4\xc4\x10\xf1\xb4\xe2\x10\xb4\xe0\x11\x10"
        !          16502:             "\xf3\xa4\xe0\x21\x10\x94\xe0\x21\x20\xf2\x94\x91\x90"
        !          16503:             "\x84\x91\xe0\x44\x82\xe0\x4e\xe0\x44\x82\xa0\xf3\x74"
        !          16504:             "\x91\xb0\xf3\x64\xe0\x80\xf3\x54\xe0\x90\x45\xe0\x9e"
        !          16505:             "\xe0\x44" }  },
        !          16506:       /* --- pixel bitmap for cmmi325 char#71 G --- */
        !          16507:       {  71, 9028,                      /* character number, location */
        !          16508:          32, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          16509:           { 32,   33, 3,163, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          16510:             "\xe0\x36\x81\xe3\x62\x52\xc3\xa1\x32\xb3\xd1\x13\xa3"
        !          16511:             "\xe0\x14\x93\xe0\x24\x83\xe0\x42\x83\xe0\x52\x73\xe0"
        !          16512:             "\x62\x64\xe0\x62\x20\xf1\x34\xe0\x71\x30\x24\xe0\x81"
        !          16513:             "\x54\xe0\xc0\xf3\x14\xe0\xd4\xe0\xe4\xdd\x2f\x14\xe0"
        !          16514:             "\x54\x54\xe0\x44\x60\xf2\x13\xe0\x44\x60\xf1\x23\xe0"
        !          16515:             "\x24\x70\x33\xe5\xb2\xe1\x13\xc2\xb2\x22\xe3\x72\x51"
        !          16516:             "\xe0\x37\xe0\x27" }  },
        !          16517:       /* --- pixel bitmap for cmmi325 char#72 H --- */
        !          16518:       {  72,10387,                      /* character number, location */
        !          16519:          31, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          16520:           { 38,   31, 3,87, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          16521:             "\x7d\x5d\xb5\xd5\x40\xf2\xb4\xe4\x50\xf3\xa4\xe4\x60"
        !          16522:             "\xf3\x94\xe4\x70\x84\xe4\xe0\x2e\x08\x80\xf1\x84\xe4"
        !          16523:             "\x80\xf3\x74\xe4\x90\xf3\x64\xe4\xa0\xf3\x54\xe4\xb0"
        !          16524:             "\x45\xd5\xbd\x5d\x74" }  },
        !          16525:       /* --- pixel bitmap for cmmi325 char#73 I --- */
        !          16526:       {  73,11240,                      /* character number, location */
        !          16527:          31, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          16528:           { 20,   31, 3,53, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          16529:             "\x7d\xb5\x40\xf2\xb4\x50\xf3\xa4\x60\xf3\x94\x70\xf3"
        !          16530:             "\x84\x80\xf3\x74\x90\xf3\x64\xa0\xf3\x54\xb0\x45\xbd"
        !          16531:             "\x70" }  },
        !          16532:       /* --- pixel bitmap for cmmi325 char#74 J --- */
        !          16533:       {  74,12122,                      /* character number, location */
        !          16534:          31, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          16535:           { 25,   32, 3,89, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          16536:             "\xcd\xe0\x35\x30\xf2\xe0\x34\x40\xf3\xe0\x24\x50\xf3"
        !          16537:             "\xe0\x14\x60\xf3\xe4\x70\xf3\xd4\x80\xf1\xc4\x90\x22"
        !          16538:             "\x84\xa4\x74\x9f\x15\x64\xa4\x64\xb1\x93\xd1\x73\xe0"
        !          16539:             "\x11\x53\xe0\x36\xe0\x20" }  },
        !          16540:       /* --- pixel bitmap for cmmi325 char#75 K --- */
        !          16541:       {  75,13431,                      /* character number, location */
        !          16542:          31, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          16543:           { 38,   31, 3,179, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          16544:             "\x7d\x99\xb5\xe0\x15\xd4\xe0\x23\xe0\x14\xe0\x12\xe0"
        !          16545:             "\x34\xe2\xe0\x34\xe1\xe0\x54\xd1\xe0\x64\xb1\xe0\x84"
        !          16546:             "\xa1\xe0\x84\xa1\xe0\x94\x81\xe0\xb4\x71\xe0\xc4\x62"
        !          16547:             "\xe0\xb4\x54\xe0\xb4\x45\xe0\xb4\x31\x24\xe0\xa4\x21"
        !          16548:             "\x34\xe0\x94\x11\x64\xe0\x85\x74\xe0\x84\x85\xe0\x74"
        !          16549:             "\x94\xe0\x64\xa4\xe0\xf1\x64\xb4\xd0\x64\xb5\xc0\xf1"
        !          16550:             "\x54\xd4\xc0\xf1\x54\xe4\xb0\x45\xd6\xad\x6c\x70" }  },
        !          16551:       /* --- pixel bitmap for cmmi325 char#76 L --- */
        !          16552:       {  76,14512,                      /* character number, location */
        !          16553:          31, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          16554:           { 27,   31, 3,93, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          16555:             "\x7e\xe0\x35\xb0\xf2\xb4\xc0\xf3\xa4\xd0\xf3\x94\xe0"
        !          16556:             "\xf3\x84\xe0\x10\xf2\x74\xe0\x20\x74\xe0\x11\xf1\x64"
        !          16557:             "\xe0\x11\x10\x64\xe2\x74\xe1\x20\xf1\x54\xe2\x20\x54"
        !          16558:             "\xd2\x84\xc3\x74\xa5\x4e\x09\x44" }  },
        !          16559:       /* --- pixel bitmap for cmmi325 char#77 M --- */
        !          16560:       {  77,15946,                      /* character number, location */
        !          16561:          31, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          16562:           { 45,   31, 3,265, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          16563:             "\x79\xe0\x69\xb5\xe0\x56\xe0\x11\x14\xe0\x45\xe0\x21"
        !          16564:             "\x14\xe0\x31\x14\xe0\x21\x14\xe0\x21\x24\xe0\x11\x24"
        !          16565:             "\xe0\x21\x14\xe0\x21\x24\xe0\x11\x24\x60\xf1\xa1\x24"
        !          16566:             "\xe1\x34\x60\xf1\x91\x44\xc1\x34\x70\x91\x44\xb1\x44"
        !          16567:             "\xe0\x21\x44\xa1\x54\xe0\x11\x54\xa1\x44\xe0\x21\x54"
        !          16568:             "\x91\x54\xe0\x21\x54\x81\x64\xe0\x21\x64\x71\x64\xe0"
        !          16569:             "\x11\x74\x61\x64\x90\xf1\x71\x74\x51\x74\x90\x71\x74"
        !          16570:             "\x41\x84\xe0\x11\x84\x41\x74\xe0\x21\x84\x31\x84\xe0"
        !          16571:             "\x21\x84\x21\x94\xe0\x21\x94\x11\x94\xe0\x11\xa5\x94"
        !          16572:             "\xb0\xf1\x51\xa4\xa4\xb0\x42\xa3\xb4\xe4\x92\xb5\xba"
        !          16573:             "\x62\x7d\x70" }  },
        !          16574:       /* --- pixel bitmap for cmmi325 char#78 N --- */
        !          16575:       {  78,17294,                      /* character number, location */
        !          16576:          31, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          16577:           { 38,   31, 3,201, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          16578:             "\x79\xca\xb5\xe0\x14\x30\xf1\xb1\x14\xe0\x11\x50\xb1"
        !          16579:             "\x15\xe1\xe0\x11\x34\xd1\xe0\x21\x35\xc1\x60\xf1\xa1"
        !          16580:             "\x44\xc1\x60\xf1\x91\x64\xa1\x70\xf1\x91\x74\x91\x70"
        !          16581:             "\x81\x85\x71\xe0\x21\x94\x71\xe0\x21\x95\x61\xe0\x21"
        !          16582:             "\xa4\x61\xe0\x11\xb4\x51\x90\xf1\x71\xc4\x41\x90\x71"
        !          16583:             "\xd4\x31\xe0\x11\xe4\x21\xa0\xf1\x61\xe0\x14\x11\xa0"
        !          16584:             "\x61\xe0\x16\xa0\xf1\x51\xe0\x34\xb0\x51\xe0\x43\xe0"
        !          16585:             "\x12\xe0\x43\xe4\xe0\x41\xca\xe0\x11\xc4" }  },
        !          16586:       /* --- pixel bitmap for cmmi325 char#79 O --- */
        !          16587:       {  79,18289,                      /* character number, location */
        !          16588:          32, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          16589:           { 30,   33, 3,163, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          16590:             "\xe0\x27\xe0\x63\x63\xe0\x23\xa3\xd3\xc3\xa3\xe3\x93"
        !          16591:             "\xe0\x23\x73\xe0\x33\x64\xe0\x43\x53\xe0\x53\x43\xe0"
        !          16592:             "\x63\x34\xe0\x63\x33\xe0\x73\xf1\x24\xe0\x73\xf3\x14"
        !          16593:             "\xe0\x74\x0f\x14\xe0\x74\x14\xe0\x73\x24\xe0\x64\x24"
        !          16594:             "\xe0\x63\x34\xe0\x54\x43\xe0\x44\x53\xe0\x43\x64\xe0"
        !          16595:             "\x23\x83\xe0\x13\x94\xd3\xb3\xc3\xd3\xa3\xe0\x23\x54"
        !          16596:             "\xe0\x67\xe0\x10" }  },
        !          16597:       /* --- pixel bitmap for cmmi325 char#80 P --- */
        !          16598:       {  80,19508,                      /* character number, location */
        !          16599:          31, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          16600:           { 32,   31, 3,101, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          16601:             "\x7e\x05\xe0\x34\xa4\xe4\xc3\x20\xf1\xb4\xd3\x10\xf3"
        !          16602:             "\xa4\xe4\xf1\x94\xe4\x10\x94\xd4\xb4\xc4\xb4\xc3\xd4"
        !          16603:             "\xa3\xe0\x1e\x01\xe0\x34\xe0\x60\xf3\x74\xe0\x70\xf3"
        !          16604:             "\x64\xe0\x80\xf3\x54\xe0\x90\x45\xe0\x9d\xe0\x54" }  },
        !          16605:       /* --- pixel bitmap for cmmi325 char#81 Q --- */
        !          16606:       {  81,20613,                      /* character number, location */
        !          16607:          32, 2,   -9, 2,      /* topleft row,col, and botleft row,col */
        !          16608:           { 30,   41, 3,215, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          16609:             "\xe0\x27\xe0\x63\x63\xe0\x23\xa3\xd3\xc3\xa3\xe3\x93"
        !          16610:             "\xe0\x23\x74\xe0\x23\x64\xe0\x34\x53\xe0\x53\x44\xe0"
        !          16611:             "\x53\xf1\x34\xe0\x63\x24\xe0\x73\x24\xe0\x64\xf3\x14"
        !          16612:             "\xe0\x74\x0f\x14\xe0\x74\x14\xe0\x73\x24\xe0\x64\x24"
        !          16613:             "\xe0\x63\x34\xe0\x54\x43\xe0\x53\x53\x74\x73\x64\x51"
        !          16614:             "\x41\x53\x83\x41\xa3\x93\x41\x61\x23\xb3\x31\x61\x13"
        !          16615:             "\xd3\x21\x64\xe0\x24\x44\x71\xc9\x81\xe0\x52\x72\xe0"
        !          16616:             "\x52\x71\xe0\x62\x62\xe0\x63\x42\xe0\x79\xe0\x78\xe0"
        !          16617:             "\x96\xe0\xb4\x94" }  },
        !          16618:       /* --- pixel bitmap for cmmi325 char#82 R --- */
        !          16619:       {  82,22074,                      /* character number, location */
        !          16620:          31, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          16621:           { 32,   32, 3,135, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          16622:             "\x7e\x04\xe0\x44\x94\xe0\x14\xb3\x30\xf1\xb4\xc3\x20"
        !          16623:             "\xf3\xa4\xd4\x10\xf1\x94\xd4\x20\x94\xc4\xc4\xb4\xc4"
        !          16624:             "\xb3\xe4\x93\xe0\x2e\xe0\x44\x83\xe0\x24\xa3\xe0\x14"
        !          16625:             "\xa4\xe4\xb3\xe4\xb4\x60\xf3\x64\xb4\x70\x54\xb4\x80"
        !          16626:             "\xf1\x54\xb4\x71\x54\xb4\x61\x55\xc3\x61\x1d\x93\x32"
        !          16627:             "\xe0\xb5\x43" }  },
        !          16628:       /* --- pixel bitmap for cmmi325 char#83 S --- */
        !          16629:       {  83,23245,                      /* character number, location */
        !          16630:          32, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          16631:           { 26,   33, 3,149, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          16632:             "\xd6\x61\xb3\x52\x32\xa2\x91\x12\xa2\xb3\x92\xc3\x83"
        !          16633:             "\xd2\x82\xe1\x20\xf2\x63\xe1\x20\x63\xe0\x30\xf1\x64"
        !          16634:             "\xe0\x20\x67\xe0\x5b\xe0\x2c\xe0\x1c\xe0\x3a\xe0\x58"
        !          16635:             "\xe0\x75\xe0\x84\x40\xf1\xe0\x53\x40\xf1\x21\xe0\x23"
        !          16636:             "\x40\x21\xe0\x22\x62\xe0\x13\x62\xe0\x12\x72\xe2\x83"
        !          16637:             "\xc2\x83\x11\xa2\x92\x32\x63\xa1\x67\xc3" }  },
        !          16638:       /* --- pixel bitmap for cmmi325 char#84 T --- */
        !          16639:       {  84,24379,                      /* character number, location */
        !          16640:          31, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          16641:           { 30,   31, 3,105, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          16642:             "\x4e\x0c\x34\x74\x83\x42\x94\x92\x41\xa4\xa1\x31\xb4"
        !          16643:             "\xa1\x31\xa4\xb1\x22\xa4\xb1\x10\xf1\x11\xb4\xb1\x11"
        !          16644:             "\xb4\xb1\x20\xf2\xc4\xe0\xf3\xb4\xe0\x10\xf3\xa4\xe0"
        !          16645:             "\x20\xf3\x94\xe0\x30\xf3\x84\xe0\x40\x75\xe0\x5e\x03"
        !          16646:             "\xc0" }  },
        !          16647:       /* --- pixel bitmap for cmmi325 char#85 U --- */
        !          16648:       {  85,25453,                      /* character number, location */
        !          16649:          31, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          16650:           { 32,   32, 3,115, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          16651:             "\x1d\x8a\x55\xe0\x14\x30\xf2\x54\xe0\x31\x50\xf3\x44"
        !          16652:             "\xe0\x31\x60\xf3\x34\xe0\x31\x70\xf3\x24\xe0\x31\x80"
        !          16653:             "\xf3\x14\xe0\x31\x9f\x24\xe0\x31\xa4\xe0\x21\xb0\xf1"
        !          16654:             "\x13\xe0\x11\xc0\x13\xe1\xe0\x13\xb2\xe0\x33\x91\xe0"
        !          16655:             "\x63\x62\xe0\x97\xe0\x50" }  },
        !          16656:       /* --- pixel bitmap for cmmi325 char#86 V --- */
        !          16657:       {  86,26471,                      /* character number, location */
        !          16658:          31, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          16659:           { 33,   32, 3,175, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          16660:             "\x0d\xb9\x45\xe0\x34\x74\xe0\x51\x94\xe0\x41\xa5\xe0"
        !          16661:             "\x31\xb4\xe0\x21\xc4\xe0\x12\xc4\xe0\x11\x80\xf1\x54"
        !          16662:             "\xe1\x90\x54\xd1\xe0\x15\xb1\xe0\x34\xb1\xe0\x34\xa1"
        !          16663:             "\xc0\xf1\x64\x91\xd0\x64\x81\xe0\x64\x72\xe0\x65\x61"
        !          16664:             "\xe0\x75\x51\xe0\x94\x51\xe0\x94\x41\xe0\x30\xf1\x74"
        !          16665:             "\x31\xe0\x40\x74\x21\xe0\xc4\x11\xe0\xd6\xe0\x60\xf1"
        !          16666:             "\x84\xe0\x70\x83\xe0\x80\xf1\x82\xe0\x90" }  },
        !          16667:       /* --- pixel bitmap for cmmi325 char#87 W --- */
        !          16668:       {  87,27920,                      /* character number, location */
        !          16669:          31, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          16670:           { 45,   32, 3,257, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          16671:             "\x0c\x6c\x69\x36\xc5\xc4\x74\xd4\xe2\x84\xd4\xe1\x94"
        !          16672:             "\xd4\xd1\xa4\xc5\xd1\xa4\xc5\xc1\xb4\xb1\x14\xc1\xb4"
        !          16673:             "\xb1\x15\xa1\xc4\xa1\x34\xa1\xc4\xa1\x34\x91\xd4\x91"
        !          16674:             "\x44\x82\xd4\x82\x44\x81\xe4\x81\x54\x71\xe0\x15\x61"
        !          16675:             "\x64\x71\xe0\x15\x61\x64\x61\xe0\x34\x51\x74\x61\xe0"
        !          16676:             "\x34\x51\x74\x51\xe0\x44\x41\x84\x51\xe0\x44\x41\x84"
        !          16677:             "\x41\xe0\x54\x31\x94\x31\xe0\x64\x21\xa4\x31\xe0\x64"
        !          16678:             "\x21\xa4\x21\xe0\x74\x11\xb4\x21\xe0\x74\x11\xb6\xe0"
        !          16679:             "\x85\xd5\xe0\x85\xd4\xe0\x94\xe4\xe0\x94\xe3\xe0\xa3"
        !          16680:             "\xe0\x12\xe0\xb2\xe0\x22\xe0\xb2\xe0\x21\xe0\x75" }  },
        !          16681:       /* --- pixel bitmap for cmmi325 char#88 X --- */
        !          16682:       {  88,29267,                      /* character number, location */
        !          16683:          31, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          16684:           { 38,   31, 3,191, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          16685:             "\x8d\x6b\xc6\xc4\xe0\x25\xd2\xe0\x54\xd1\xe0\x65\xb1"
        !          16686:             "\xe0\x84\xa1\xe0\x95\x81\xe0\xb4\x71\xe0\xc4\x61\xe0"
        !          16687:             "\xd5\x41\xe0\xe0\x14\x31\xe0\xe0\x25\x11\xe0\x10\xf1"
        !          16688:             "\xe0\x35\xe0\x20\xf1\xe0\x44\xe0\x20\xe0\x36\xe0\xe0"
        !          16689:             "\x32\x14\xe0\xe0\x31\x25\xe0\xe0\x11\x44\xe0\xe1\x55"
        !          16690:             "\xe0\xc1\x65\xe0\xb1\x84\xe0\xa1\x95\xe0\x81\xb4\xe0"
        !          16691:             "\x71\xc5\xe0\x51\xe4\xe0\x41\xe0\x14\xe0\x32\xe0\x15"
        !          16692:             "\xe4\xe6\xab\x9c\x64" }  },
        !          16693:       /* --- pixel bitmap for cmmi325 char#89 Y --- */
        !          16694:       {  89,30431,                      /* character number, location */
        !          16695:          31, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          16696:           { 33,   31, 3,135, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          16697:             "\x0c\xc9\x45\xe0\x34\x75\xe0\x32\xa4\xe0\x31\xb4\xe0"
        !          16698:             "\x21\xc5\xe1\xe4\xd2\xe5\xb2\xe0\x15\xb1\xe0\x34\xa1"
        !          16699:             "\xe0\x45\x81\xe0\x55\x71\xe0\x74\x61\xe0\x85\x41\xe0"
        !          16700:             "\xa4\x32\xe0\xa5\x21\xe0\xb5\x11\xe0\xd5\xe0\x40\xf2"
        !          16701:             "\xa4\xe0\x50\xf3\x94\xe0\x60\xf3\x84\xe0\x70\x74\xe0"
        !          16702:             "\xbd\xe0\x35" }  },
        !          16703:       /* --- pixel bitmap for cmmi325 char#90 Z --- */
        !          16704:       {  90,31598,                      /* character number, location */
        !          16705:          31, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          16706:           { 31,   31, 3,127, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          16707:             "\x9e\x08\x86\xc4\x94\xd4\xa2\xe4\xb1\xe4\xb2\xd4\xc1"
        !          16708:             "\xd4\xd1\xc5\xd1\xb5\xd1\xc4\xe0\xc4\xe0\xc4\xe0\xc4"
        !          16709:             "\xe0\xc4\xe0\xc4\xe0\xc4\xe0\xc5\xe0\xc4\xe0\xc4\xe0"
        !          16710:             "\xc4\xe0\xc4\xc1\xd4\xc1\xd4\xd1\xc4\xd2\xb5\xd1\xb5"
        !          16711:             "\xd2\xb4\xe2\xa4\xe2\xa4\xe3\x94\xc5\x9e\x08\x94" }  },
        !          16712:       /* --- pixel bitmap for cmmi325 char#91 \flat --- */
        !          16713:       {  91,125774,                     /* character number, location */
        !          16714:          34, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          16715:           { 13,   35, 3,65, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          16716:             "\xfd\x01\xc1\x27\x34\x34\x22\x64\x1f\x51\x84\x0f\x11"
        !          16717:             "\x74\x11\x73\x21\x64\x21\x63\x31\x53\x41\x43\x51\x33"
        !          16718:             "\x61\x23\x71\x12\x93\xa1\xc1" }  },
        !          16719:       /* --- pixel bitmap for cmmi325 char#92 \natural --- */
        !          16720:       {  92,126589,                     /* character number, location */
        !          16721:          33, 4,  -10, 4,      /* topleft row,col, and botleft row,col */
        !          16722:           {  9,   43, 3,54, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          16723:             "\xf9\x01\x81\x63\x45\x26\x0f\x19\x06\x25\x43\x61\x0f"
        !          16724:             "\xa1\x71\x01\x63\x45\x26\x0f\x19\x06\x25\x43\x61\xf5"
        !          16725:             "\x81" }  },
        !          16726:       /* --- pixel bitmap for cmmi325 char#93 \sharp --- */
        !          16727:       {  93,127520,                     /* character number, location */
        !          16728:          32, 2,  -10, 2,      /* topleft row,col, and botleft row,col */
        !          16729:           { 13,   42, 3,95, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          16730:             "\xf2\xa1\x20\xf5\x21\x71\x20\x21\x73\x21\x55\x21\x28"
        !          16731:             "\x2e\x08\x28\x21\x25\x51\x23\x71\x20\xfa\x21\x71\x20"
        !          16732:             "\x21\x73\x21\x55\x21\x28\x2e\x08\x28\x21\x25\x51\x23"
        !          16733:             "\x71\x20\xf2\x21\x71\x20\xf2\x21\xa0" }  },
        !          16734:       /* --- pixel bitmap for cmmi325 char#94 \smile --- */
        !          16735:       {  94,128518,                     /* character number, location */
        !          16736:          17, 3,    6, 3,      /* topleft row,col, and botleft row,col */
        !          16737:           { 39,   11, 3,77, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          16738:             "\x01\xe0\xe0\x91\x11\xe0\xe0\x71\x31\xe0\xe0\x51\x42"
        !          16739:             "\xe0\xe0\x32\x52\xe0\xe0\x12\x72\xe0\xd2\xa2\xe0\x92"
        !          16740:             "\xd3\xe0\x53\xe0\x25\xb5\xe0\x6e\x03\xe0\xc9\xe0\x13" }  },
        !          16741:       /* --- pixel bitmap for cmmi325 char#95 \frown --- */
        !          16742:       {  95,129408,                     /* character number, location */
        !          16743:          18, 3,    6, 3,      /* topleft row,col, and botleft row,col */
        !          16744:           { 39,   12, 3,80, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          16745:             "\xe0\x51\xe0\xe0\x4d\xe0\x9e\x05\xe0\x44\xe0\x14\xe0"
        !          16746:             "\x12\xe0\x72\xc2\xe0\xb2\x92\xe0\xd2\x71\xe0\xe0\x31"
        !          16747:             "\x51\xe0\xe0\x51\x20\xf1\x11\xe0\xe0\x71\x11\xe0\xe0"
        !          16748:             "\x91" }  },
        !          16749:       /* --- pixel bitmap for cmmi325 char#96 \ell --- */
        !          16750:       {  96,101478,                     /* character number, location */
        !          16751:          31, 0,    0, 0,      /* topleft row,col, and botleft row,col */
        !          16752:           { 18,   31, 3,117, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          16753:             "\xd3\xe2\x21\xc2\x41\xf1\xa2\x51\x92\x51\x93\x51\x92"
        !          16754:             "\x61\x10\xf1\x73\x51\x20\xf1\x63\x51\x30\x63\x41\x93"
        !          16755:             "\x51\x93\x41\xa3\x31\xb3\x21\x70\xf1\x43\x21\x80\x43"
        !          16756:             "\x11\xd4\xa0\xf2\x43\xb0\x34\xd1\x13\xc1\x32\xb1\x42"
        !          16757:             "\x82\x71\x71\x92\x42\xc4\x64" }  },
        !          16758:       /* --- pixel bitmap for cmmi325 char#97 a --- */
        !          16759:       {  97,32612,                      /* character number, location */
        !          16760:          19, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          16761:           { 19,   19, 3,79, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          16762:             "\x84\x32\x83\x31\x13\x72\x64\x63\x64\x53\x83\x44\x73"
        !          16763:             "\x53\x83\x30\xf1\x14\x83\x3f\x34\x83\x4f\x14\x73\x41"
        !          16764:             "\x13\x64\x41\x13\x51\x13\x31\x32\x41\x32\x31\x54\x54"
        !          16765:             "\x24" }  },
        !          16766:       /* --- pixel bitmap for cmmi325 char#98 b --- */
        !          16767:       {  98,33520,                      /* character number, location */
        !          16768:          31, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          16769:           { 17,   31, 3,85, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          16770:             "\x27\x80\xf3\x53\x90\xf3\x43\xa0\xf2\x33\xb0\x33\x25"
        !          16771:             "\x63\x21\x42\x55\x62\x20\xf1\x23\x83\x10\xf3\x13\x94"
        !          16772:             "\x0f\x23\x94\x13\x93\x23\x84\x23\x83\x42\x73\x52\x63"
        !          16773:             "\x72\x43\xa5\x81" }  },
        !          16774:       /* --- pixel bitmap for cmmi325 char#99 c --- */
        !          16775:       {  99,34403,                      /* character number, location */
        !          16776:          19, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          16777:           { 18,   19, 3,55, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          16778:             "\x96\xa3\x52\x63\x73\x43\x74\x33\x84\x24\x83\x33\xd0"
        !          16779:             "\xf1\x14\xdf\x44\xe0\x13\xc1\x23\xb1\x42\xa1\x62\x63"
        !          16780:             "\x96\x73" }  },
        !          16781:       /* --- pixel bitmap for cmmi325 char#100 d --- */
        !          16782:       { 100,35395,                      /* character number, location */
        !          16783:          31, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          16784:           { 21,   31, 3,107, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          16785:             "\xe7\xf3\xe0\x33\x10\xf3\xe0\x23\x20\xf2\xe0\x13\x30"
        !          16786:             "\x84\x33\x93\x31\x13\x92\x64\x83\x64\x73\x83\x64\x73"
        !          16787:             "\x73\x83\x50\xf1\x14\x83\x5f\x34\x83\x6f\x14\x73\x41"
        !          16788:             "\x20\x13\x64\x41\x33\x51\x13\x31\x52\x41\x32\x31\x74"
        !          16789:             "\x54\x44" }  },
        !          16790:       /* --- pixel bitmap for cmmi325 char#101 e --- */
        !          16791:       { 101,36294,                      /* character number, location */
        !          16792:          19, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          16793:           { 17,   19, 3,59, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          16794:             "\x95\x93\x52\x63\x81\x43\x91\x33\xa1\x24\x91\x24\x91"
        !          16795:             "\x34\x54\x49\x7f\x34\xd0\x13\xe3\xc1\x13\xb1\x33\x91"
        !          16796:             "\x53\x53\x86\x61" }  },
        !          16797:       /* --- pixel bitmap for cmmi325 char#102 f --- */
        !          16798:       { 102,37494,                      /* character number, location */
        !          16799:          31, 2,   -9, 2,      /* topleft row,col, and botleft row,col */
        !          16800:           { 23,   40, 3,101, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          16801:             "\xe0\x35\xe0\x22\x33\xe0\x12\x24\xe2\x34\xd3\x42\x10"
        !          16802:             "\xf2\xd3\x70\xf3\xc3\x80\x8c\x30\xf5\xb3\x90\xf4\xa3"
        !          16803:             "\xa0\xf4\x93\xb0\xf3\x83\xc0\x82\xe0\x63\xe0\x12\x32"
        !          16804:             "\xe0\x14\x22\xe4\x22\xe0\x22\x31\xe0\x44\xe0\x31" }  },
        !          16805:       /* --- pixel bitmap for cmmi325 char#103 g --- */
        !          16806:       { 103,38525,                      /* character number, location */
        !          16807:          19, 0,   -9, 0,      /* topleft row,col, and botleft row,col */
        !          16808:           { 21,   28, 3,109, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          16809:             "\xb5\x32\x93\x41\x13\x83\x64\x73\x74\x63\x93\x54\x83"
        !          16810:             "\x63\x93\x10\xf1\x44\x93\x10\xf3\x34\x93\x20\xf1\x34"
        !          16811:             "\x83\x30\x43\x74\x82\x61\x13\x83\x41\x13\xb5\x23\x40"
        !          16812:             "\xf1\xe3\x40\xf1\xd3\x50\x22\x93\x64\x73\x64\x73\x82"
        !          16813:             "\x64\xa8\xb2" }  },
        !          16814:       /* --- pixel bitmap for cmmi325 char#104 h --- */
        !          16815:       { 104,39534,                      /* character number, location */
        !          16816:          31, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          16817:           { 21,   31, 3,103, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          16818:             "\x47\xa0\xf3\x73\xb0\xf3\x63\xc0\xf2\x53\xd0\x53\x35"
        !          16819:             "\x93\x22\x42\x83\x11\x63\x74\x73\x73\x83\x64\x83\x30"
        !          16820:             "\xf2\x33\x93\x30\xf2\x23\x93\x40\x23\x83\x63\x93\x41"
        !          16821:             "\x13\x83\x51\xf1\x13\x83\x41\x13\xa2\x31\x32\xb4\x32" }  },
        !          16822:       /* --- pixel bitmap for cmmi325 char#105 i --- */
        !          16823:       { 105,40458,                      /* character number, location */
        !          16824:          31, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          16825:           { 11,   31, 3,75, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          16826:             "\x83\xf1\x74\x82\x10\xf7\xb0\x43\x71\x22\x51\x33\x20"
        !          16827:             "\xf1\x11\x43\x2f\x11\x43\x30\x53\x30\xf1\x43\x40\xf2"
        !          16828:             "\x33\x50\xf2\x23\x41\x10\x23\x31\x52\x21\x73\x43" }  },
        !          16829:       /* --- pixel bitmap for cmmi325 char#106 j --- */
        !          16830:       { 106,41437,                      /* character number, location */
        !          16831:          31,-1,   -9,-1,      /* topleft row,col, and botleft row,col */
        !          16832:           { 19,   40, 3,101, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          16833:             "\xe0\x22\xe0\x24\xe0\x13\xe0\x22\x20\xf7\xe0\x50\xb4"
        !          16834:             "\xd2\x32\xb1\x52\xb1\x53\x91\x63\x20\xf1\x61\x63\x30"
        !          16835:             "\xf1\xd3\x30\xf3\xc3\x40\xf3\xb3\x50\xf3\xa3\x60\xf1"
        !          16836:             "\x93\x70\x22\x53\x84\x33\x84\x33\xa2\x33\xc5\xc4" }  },
        !          16837:       /* --- pixel bitmap for cmmi325 char#107 k --- */
        !          16838:       { 107,42492,                      /* character number, location */
        !          16839:          31, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          16840:           { 21,   31, 3,115, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          16841:             "\x47\xa0\xf3\x73\xb0\xf3\x63\xc0\xf2\x53\xd0\x53\x74"
        !          16842:             "\x63\x71\x41\x53\x52\x43\x43\x41\x54\x43\x31\x64\x33"
        !          16843:             "\x31\x73\x43\x21\xe0\x15\xe0\x28\xc3\x44\x80\xf1\x23"
        !          16844:             "\x63\x70\x23\x64\x60\xf2\x13\x73\x41\x20\x13\x82\x31"
        !          16845:             "\x33\x92\x31\x42\xa4\x44" }  },
        !          16846:       /* --- pixel bitmap for cmmi325 char#108 l --- */
        !          16847:       { 108,43278,                      /* character number, location */
        !          16848:          31, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          16849:           { 10,   31, 3,53, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          16850:             "\x37\xf3\x63\x10\xf3\x53\x20\xf3\x43\x30\xf3\x33\x40"
        !          16851:             "\xf3\x23\x50\xf3\x13\x6f\x23\x41\x23\x31\x42\x31\x54"
        !          16852:             "\x41" }  },
        !          16853:       /* --- pixel bitmap for cmmi325 char#109 m --- */
        !          16854:       { 109,44537,                      /* character number, location */
        !          16855:          19, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          16856:           { 35,   19, 3,133, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          16857:             "\x34\x65\x75\x71\x32\x32\x42\x42\x42\x51\x42\x21\x63"
        !          16858:             "\x21\x63\x41\x44\x73\x11\x73\x41\x43\x84\x83\x31\x44"
        !          16859:             "\x84\x83\x31\x43\x93\x93\x30\xf1\x53\x93\x93\x30\xf2"
        !          16860:             "\x43\x93\x93\x40\x43\x93\x83\x83\x93\x93\x41\xf1\x33"
        !          16861:             "\x93\x83\x51\x33\x93\x83\x41\x33\x93\xa2\x31\x52\xa2"
        !          16862:             "\xb4\x30" }  },
        !          16863:       /* --- pixel bitmap for cmmi325 char#110 n --- */
        !          16864:       { 110,45646,                      /* character number, location */
        !          16865:          19, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          16866:           { 23,   19, 3,97, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          16867:             "\x33\x75\x71\x23\x32\x42\x51\x42\x21\x63\x41\x44\x73"
        !          16868:             "\x41\x43\x83\x31\x44\x83\x31\x43\x93\x30\xf1\x53\x93"
        !          16869:             "\x30\xf2\x43\x93\x40\x43\x83\x83\x93\x41\xf1\x33\x83"
        !          16870:             "\x51\x33\x83\x41\x33\xa2\x31\x52\xb4\x33" }  },
        !          16871:       /* --- pixel bitmap for cmmi325 char#111 o --- */
        !          16872:       { 111,46448,                      /* character number, location */
        !          16873:          19, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          16874:           { 19,   19, 3,65, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          16875:             "\x95\xc2\x52\x83\x63\x63\x83\x43\x93\x34\x93\x33\xa4"
        !          16876:             "\xf1\x14\xa4\x0f\x24\xa4\x14\x94\x24\x93\x43\x93\x43"
        !          16877:             "\x83\x62\x73\x82\x43\xb6\x93" }  },
        !          16878:       /* --- pixel bitmap for cmmi325 char#112 p --- */
        !          16879:       { 112,47472,                      /* character number, location */
        !          16880:          19,-1,   -9,-1,      /* topleft row,col, and botleft row,col */
        !          16881:           { 23,   28, 3,111, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          16882:             "\x64\x54\x91\x32\x22\x33\x61\x42\x11\x62\x20\xf1\x41"
        !          16883:             "\x43\x73\x10\xf1\x31\x43\x84\xf1\x83\x84\xf2\x73\x84"
        !          16884:             "\x10\x73\x83\x83\x84\x83\x83\x93\x73\xa4\x53\xa3\x12"
        !          16885:             "\x33\xb3\x34\x80\xf1\x53\xe0\x10\xf3\x43\xe0\x20\xf1"
        !          16886:             "\x33\xe0\x3a\xd3" }  },
        !          16887:       /* --- pixel bitmap for cmmi325 char#113 q --- */
        !          16888:       { 113,48457,                      /* character number, location */
        !          16889:          19, 2,   -9, 2,      /* topleft row,col, and botleft row,col */
        !          16890:           { 19,   28, 3,97, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          16891:             "\x85\x51\x63\x41\x31\x63\x61\x12\x53\x74\x43\x93\x34"
        !          16892:             "\x83\x43\x93\x20\xf1\x14\x93\x2f\x34\x93\x3f\x14\x83"
        !          16893:             "\x40\x13\x74\x62\x61\x13\x63\x41\x13\x95\x23\x50\xf1"
        !          16894:             "\xb3\x50\xf3\xa3\x60\xf1\x93\x70\x5b\x33" }  },
        !          16895:       /* --- pixel bitmap for cmmi325 char#114 r --- */
        !          16896:       { 114,49400,                      /* character number, location */
        !          16897:          19, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          16898:           { 18,   19, 3,65, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          16899:             "\x34\x54\x41\x23\x22\x41\x21\x42\x11\x53\xf1\x11\x43"
        !          16900:             "\x54\x01\x43\x63\x11\x43\xa0\xf1\x53\xa0\xf3\x43\xb0"
        !          16901:             "\xf3\x33\xc0\x23\xe0\x22\xd3" }  },
        !          16902:       /* --- pixel bitmap for cmmi325 char#115 s --- */
        !          16903:       { 115,50398,                      /* character number, location */
        !          16904:          19, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          16905:           { 17,   19, 3,59, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          16906:             "\x86\x92\x62\x61\xa1\xf1\x42\x83\x33\x82\x44\xe7\xaa"
        !          16907:             "\x99\xb6\xe4\x31\xa3\x23\x92\x24\x92\x23\xa1\x31\xb1"
        !          16908:             "\x52\x72\x87\x73" }  },
        !          16909:       /* --- pixel bitmap for cmmi325 char#116 t --- */
        !          16910:       { 116,51174,                      /* character number, location */
        !          16911:          28, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          16912:           { 14,   28, 3,59, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          16913:             "\x82\xc3\x30\xf3\x73\x40\xf2\x63\x5e\xf3\x53\x60\xf3"
        !          16914:             "\x43\x70\xf3\x33\x80\xf1\x23\x61\x20\xf1\x23\x51\x30"
        !          16915:             "\x32\x32\x84\x63" }  },
        !          16916:       /* --- pixel bitmap for cmmi325 char#117 u --- */
        !          16917:       { 117,52248,                      /* character number, location */
        !          16918:          19, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          16919:           { 22,   19, 3,91, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          16920:             "\x44\xa2\x51\x32\x83\x41\x42\x83\x31\x52\x83\x31\x43"
        !          16921:             "\x83\x2f\x11\x53\x73\x30\xf1\x53\x83\x30\xf3\x43\x83"
        !          16922:             "\x40\x43\x73\x41\x42\x83\x41\x43\x73\x41\x43\x64\x31"
        !          16923:             "\x62\x42\x22\x31\x75\x54\x23" }  },
        !          16924:       /* --- pixel bitmap for cmmi325 char#118 v --- */
        !          16925:       { 118,53189,                      /* character number, location */
        !          16926:          19, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          16927:           { 20,   19, 3,85, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          16928:             "\x44\x82\x51\x32\x64\x31\x42\x64\x21\x52\x65\x11\x43"
        !          16929:             "\x82\x11\x53\x82\x11\x53\x91\x10\xf1\x53\xa1\x10\xf2"
        !          16930:             "\x43\xa1\x20\xf1\x43\x91\x30\x42\x91\x83\x71\x93\x61"
        !          16931:             "\xb3\x41\xe5\x81" }  },
        !          16932:       /* --- pixel bitmap for cmmi325 char#119 w --- */
        !          16933:       { 119,54411,                      /* character number, location */
        !          16934:          19, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          16935:           { 30,   19, 3,119, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          16936:             "\x44\x92\x72\x51\x32\x73\x64\x31\x42\x73\x64\x21\x52"
        !          16937:             "\x73\x65\x11\x43\x73\x82\x11\x53\x63\x92\x11\x53\x63"
        !          16938:             "\xa1\x10\xf1\x53\x73\xa1\x10\xf2\x43\x73\xa1\x20\xf1"
        !          16939:             "\x43\x73\x91\x30\x43\x73\x81\x83\x64\x81\x83\x61\x12"
        !          16940:             "\x71\xa3\x41\x23\x42\xd5\x55\x83" }  },
        !          16941:       /* --- pixel bitmap for cmmi325 char#120 x --- */
        !          16942:       { 120,55733,                      /* character number, location */
        !          16943:          19, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          16944:           { 21,   19, 3,91, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          16945:             "\x64\x54\x62\x32\x31\x41\x41\x53\x11\x43\xf1\x21\x73"
        !          16946:             "\x44\x11\x73\x53\x21\x73\x90\xf1\x93\x90\xf3\x83\xa0"
        !          16947:             "\x12\x43\x81\x24\x33\x81\x24\x33\x71\x33\x31\x12\x61"
        !          16948:             "\x51\x31\x32\x41\x73\x55\x61" }  },
        !          16949:       /* --- pixel bitmap for cmmi325 char#121 y --- */
        !          16950:       { 121,56857,                      /* character number, location */
        !          16951:          19, 2,   -9, 2,      /* topleft row,col, and botleft row,col */
        !          16952:           { 20,   28, 3,113, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          16953:             "\x44\xa2\x31\x32\x83\x21\x42\x83\x11\x52\x83\x11\x43"
        !          16954:             "\x83\x0f\x11\x53\x73\x10\xf1\x53\x83\x10\xf3\x43\x83"
        !          16955:             "\x20\x43\x73\x72\x83\x73\x73\x73\x64\x82\x45\xa5\x23"
        !          16956:             "\xe0\x33\xe0\x32\xe0\x33\x64\x72\x74\x63\x73\x63\x82"
        !          16957:             "\x63\xa1\x52\xd5\xc2" }  },
        !          16958:       /* --- pixel bitmap for cmmi325 char#122 z --- */
        !          16959:       { 122,57847,                      /* character number, location */
        !          16960:          19, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          16961:           { 19,   19, 3,79, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          16962:             "\x73\x81\x65\x61\x68\x22\x62\x64\x71\x91\xe0\x31\xe0"
        !          16963:             "\x31\xe0\x31\xe0\x31\xe0\x31\xe0\x31\xe0\x22\xe0\x21"
        !          16964:             "\xe0\x31\xa1\x61\xb1\x55\x62\x61\x39\x51\x57\x51\x83"
        !          16965:             "\x70" }  },
        !          16966:       /* --- pixel bitmap for cmmi325 char#123 \imath --- */
        !          16967:       { 123,102288,                     /* character number, location */
        !          16968:          19, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          16969:           { 10,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          16970:             "\x70\x20\x43\x9c\x70\xc2\x85\x13\x0e\x38\x70\xc0\x81"
        !          16971:             "\x03\x0e\x38\x70\xc8\x21\x87\x1c\x61\x02\x07" }  },
        !          16972:       /* --- pixel bitmap for cmmi325 char#124 \jmath --- */
        !          16973:       { 124,103119,                     /* character number, location */
        !          16974:          19,-1,   -9,-1,      /* topleft row,col, and botleft row,col */
        !          16975:           { 17,   28, 3,75, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          16976:             "\xa4\xc1\x33\x91\x52\x10\xf1\x71\x63\xf1\x61\x63\x10"
        !          16977:             "\xf1\xd3\x10\xf3\xc3\x20\xf3\xb3\x30\xf3\xa3\x40\xf1"
        !          16978:             "\x93\x50\x22\x53\x64\x33\x64\x42\x82\x33\xa5\xa0" }  },
        !          16979:       /* --- pixel bitmap for cmmi325 char#125 \wp --- */
        !          16980:       { 125,104306,                     /* character number, location */
        !          16981:          20, 3,  -10, 3,      /* topleft row,col, and botleft row,col */
        !          16982:           { 25,   30, 3,161, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          16983:             "\x63\xe0\x72\xe0\x81\xa6\x72\x82\x52\x61\x81\x82\x42"
        !          16984:             "\x62\xa2\x31\x61\xc2\x22\x51\xd2\x10\xf1\x12\x41\xe3"
        !          16985:             "\x03\x31\xe3\x1f\x13\x21\xe0\x13\x13\x11\xe0\x13\x34"
        !          16986:             "\xe0\x13\x34\x52\x82\x54\x41\x82\x74\x31\x72\x71\x13"
        !          16987:             "\x41\x43\x81\x14\x45\xa1\x24\xe0\x41\x33\xe0\x20\xf3"
        !          16988:             "\x11\x52\xe0\x20\x11\x42\xe0\x41\x41\xe0\x51\x31\xe0"
        !          16989:             "\x73\xe0\x61" }  },
        !          16990:       /* --- pixel bitmap for cmmi325 char#126 \vec --- */
        !          16991:       { 126,105018,                     /* character number, location */
        !          16992:          32, 8,   23, 8,      /* topleft row,col, and botleft row,col */
        !          16993:           { 20,    9, 3,37, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          16994:             "\xe0\x21\x30\xf1\xe0\x22\x20\xe0\x23\x1f\x1e\x06\xe0"
        !          16995:             "\x13\xe0\x23\xe0\x32\x42" }  },
        !          16996:       /* --- pixel bitmap for cmmi325 char#127 (noname) --- */
        !          16997:       { 127,105566,                     /* character number, location */
        !          16998:          30,12,   24,12,      /* topleft row,col, and botleft row,col */
        !          16999:           { 16,    6, 3,22, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          17000:             "\x67\x72\x62\x42\xa1\x10\xf1\x11\xd1\x01\xe1" }  },
        !          17001:       /* --- trailer  --- */
        !          17002:       { -99, -999,  0,0,0,0, { 0,0,0,0, (pixbyte *)"\0" }  }
        !          17003:    } ;
        !          17004: 
        !          17005: 
        !          17006: /* --- size=9 for .450gf ---
        !          17007:  * mf '\mode=preview; mag=magstep(-9.62468787106292402266); input cmmi10'
        !          17008:  * --------------------------------------------------------------------- */
        !          17009: /* --- fontdef for cmmi450 --- */
        !          17010: static	chardef  cmmi450[] =
        !          17011:    {
        !          17012:       /* --- pixel bitmap for cmmi450 char#0 \Gamma --- */
        !          17013:       {   0,61425,                      /* character number, location */
        !          17014:          43, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          17015:           { 42,   43, 3,153, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          17016:             "\xf1\xae\x0e\x04\xe0\x25\xe6\xe0\x35\xe0\x24\xe0\x35"
        !          17017:             "\xe0\x33\xe0\x25\xe0\x43\x10\xf2\xe0\x15\xe0\x52\x10"
        !          17018:             "\xf2\xe5\xe0\x62\x10\xe5\xe0\x52\xe0\x15\xe0\x62\x20"
        !          17019:             "\xf2\xd5\xe0\xa0\xf3\xc5\xe0\xb0\xf3\xb5\xe0\xc0\xf3"
        !          17020:             "\xa5\xe0\xd0\xf3\x95\xe0\xe0\xf3\x85\xe0\xe0\x10\xf2"
        !          17021:             "\x75\xe0\xe0\x20\x66\xe0\xe0\x2f\x1e\x05\xe0\x93" }  },
        !          17022:       /* --- pixel bitmap for cmmi450 char#1 \Delta --- */
        !          17023:       {   1,62402,                      /* character number, location */
        !          17024:          45, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          17025:           { 46,   45, 3,324, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          17026:             "\xe0\xe0\x52\xe0\xe0\xe0\x14\xa0\xf1\xe0\xe0\x35\xa0"
        !          17027:             "\xe0\xe0\x26\xe0\xe0\xb8\xe0\xe0\x99\xe0\xe0\x92\x25"
        !          17028:             "\xe0\xe0\x82\x35\xe0\xe0\x72\x46\xe0\xe0\x53\x46\xe0"
        !          17029:             "\xe0\x52\x65\xe0\xe0\x42\x75\xe0\xe0\x32\x86\xe0\xe0"
        !          17030:             "\x13\x86\xe0\xe0\x12\xa5\xe0\xe2\xb5\xe0\xd2\xc6\xe0"
        !          17031:             "\xb3\xc6\xe0\xb2\xe5\xe0\xa2\xe0\x15\xe0\x92\xe0\x26"
        !          17032:             "\xe0\x73\xe0\x26\xe0\x72\xe0\x45\xe0\x62\xe0\x55\xe0"
        !          17033:             "\x52\xe0\x66\xe0\x33\xe0\x66\xe0\x32\xe0\x85\xe0\x22"
        !          17034:             "\xe0\x95\xe0\x12\xe0\xa6\xd3\xe0\xa6\xd2\xe0\xc5\xc2"
        !          17035:             "\xe0\xd5\xb2\xe0\xe6\x93\xe0\xe6\x92\xe0\xe0\x16\x82"
        !          17036:             "\xe0\xe0\x35\x72\xe0\xe0\x46\x53\xe0\xe0\x46\x52\xe0"
        !          17037:             "\xe0\x56\x42\xe0\xe0\x75\x3e\x0e\x0e\x02\xf1\x1e\x0e"
        !          17038:             "\x0e\x03\x0e\x0e\x0e\x04" }  },
        !          17039:       /* --- pixel bitmap for cmmi450 char#2 \Theta --- */
        !          17040:       {   2,63681,                      /* character number, location */
        !          17041:          44, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          17042:           { 43,   45, 3,295, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          17043:             "\xe0\x98\xe0\xe0\x34\x74\xe0\xc4\xb4\xe0\x84\xe4\xe0"
        !          17044:             "\x54\xe0\x34\xe0\x34\xe0\x54\xe0\x14\xe0\x74\xd4\xe0"
        !          17045:             "\x85\xa5\xe0\xa4\xa4\xe0\xb5\x85\xe0\xb5\x75\xe0\xc5"
        !          17046:             "\x65\xe0\xd6\x46\xe0\xd6\x45\xe0\xe6\x36\xe0\xe6\x35"
        !          17047:             "\xe0\xe0\x16\x26\xe0\xe0\x16\x26\x41\xe0\x51\x46\x16"
        !          17048:             "\x42\xe0\x42\x46\xf1\x16\x4e\x08\x46\x0f\x26\x4e\x08"
        !          17049:             "\x46\x16\x42\xe0\x42\x45\x26\x41\xe0\x51\x46\x25\xe0"
        !          17050:             "\xe0\x26\x2f\x15\xe0\xe0\x16\x35\xe0\xe0\x15\x45\xe0"
        !          17051:             "\xe5\x55\xe0\xd6\x55\xe0\xd5\x75\xe0\xb5\x85\xe0\xa5"
        !          17052:             "\x95\xe0\xa4\xb4\xe0\x94\xd4\xe0\x74\xe5\xe0\x54\xe0"
        !          17053:             "\x24\xe0\x35\xe0\x44\xe0\x14\xe0\x84\xb4\xe0\xc4\x74"
        !          17054:             "\xe0\xe0\x29\xe0\x90" }  },
        !          17055:       /* --- pixel bitmap for cmmi450 char#3 \Lambda --- */
        !          17056:       {   3,64811,                      /* character number, location */
        !          17057:          45, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          17058:           { 39,   45, 3,242, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          17059:             "\xf1\xe0\xe0\x13\x70\xf1\xe0\xe4\x70\xf1\xe0\xd5\x70"
        !          17060:             "\xe0\xc6\x70\xf1\xe0\xb7\x70\xe0\xa2\x15\xe0\xe0\x32"
        !          17061:             "\x16\x60\xf1\xe0\x92\x26\x60\xe0\x82\x36\xe0\xd3\x45"
        !          17062:             "\xe0\xd2\x55\x60\xf1\xe0\x62\x65\x60\xf1\xe0\x52\x75"
        !          17063:             "\x60\xe0\x42\x85\xe0\x93\x85\xe0\x92\x95\x60\xf1\xe0"
        !          17064:             "\x22\xa5\x60\xf1\xe0\x12\xb6\x50\xf1\xe2\xc6\x50\xd2"
        !          17065:             "\xe5\x50\xf1\xc2\xe0\x15\x50\xf1\xb2\xe0\x25\x50\xf1"
        !          17066:             "\xa2\xe0\x35\x50\x92\xe0\x45\x50\xf1\x82\xe0\x55\x50"
        !          17067:             "\x72\xe0\x65\xc2\xe0\x66\xa3\xe0\x66\x86\xe0\x47\x4d"
        !          17068:             "\xbe\x0e\xae\x02" }  },
        !          17069:       /* --- pixel bitmap for cmmi450 char#4 \Xi --- */
        !          17070:       {   4,66346,                      /* character number, location */
        !          17071:          43, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          17072:           { 45,   43, 3,165, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          17073:             "\xbe\x0e\x06\xf2\xae\x0e\x06\x10\xf1\x92\xe0\xe0\x32"
        !          17074:             "\x10\xf2\x82\xe0\xe0\x42\x10\xf6\xe0\xe0\xe0\x30\xc2"
        !          17075:             "\xe0\x62\x90\xf1\xb2\xe0\x62\xa0\xf1\xbe\x0a\xa0\xf1"
        !          17076:             "\xae\x0a\xb0\xf1\xa2\xe0\x62\xb0\x92\xe0\x62\xc0\xf6"
        !          17077:             "\xe0\xe0\xe0\x30\xf2\x12\xe0\xe0\x42\x80\xf1\x12\xe0"
        !          17078:             "\xe0\x32\x90\x12\xe0\xe0\x23\xae\x0e\x06\xae\x0e\x07"
        !          17079:             "\xaf\x1e\x0e\x06\xb0" }  },
        !          17080:       /* --- pixel bitmap for cmmi450 char#5 \Pi --- */
        !          17081:       {   5,67677,                      /* character number, location */
        !          17082:          43, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          17083:           { 52,   43, 3,145, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          17084:             "\xf1\xae\x0e\x0e\xe0\x25\xe0\x56\x60\xf1\xe0\x25\xe0"
        !          17085:             "\x55\x70\xf3\xe0\x15\xe0\x55\x80\xf3\xe5\xe0\x55\x90"
        !          17086:             "\xf3\xd5\xe0\x55\xa0\xf3\xc5\xe0\x55\xb0\xf3\xb5\xe0"
        !          17087:             "\x55\xc0\xf3\xa5\xe0\x55\xd0\xf3\x95\xe0\x55\xe0\xf3"
        !          17088:             "\x85\xe0\x55\xe0\x10\xf2\x75\xe0\x55\xe0\x20\x66\xe0"
        !          17089:             "\x46\xe0\x2f\x1e\x04\x6e\x04\xae" }  },
        !          17090:       /* --- pixel bitmap for cmmi450 char#6 \Sigma --- */
        !          17091:       {   6,68966,                      /* character number, location */
        !          17092:          43, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          17093:           { 48,   43, 2,145, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          17094:             "\x0b\x25\x0a\x26\x0b\x06\x16\x08\x0c\x06\x19\x05\x0d"
        !          17095:             "\x06\x19\x04\x0d\x06\x1a\x03\x0e\x05\x1a\x03\x01\x00"
        !          17096:             "\xff\x01\x0d\x06\x19\x03\x01\x00\xff\x01\x0e\x06\x19"
        !          17097:             "\x02\x01\x00\x0f\x06\x18\x02\x10\x06\x17\x02\x12\x06"
        !          17098:             "\x16\x02\x12\x06\x2b\x05\x1a\x00\xff\x01\x11\x06\x19"
        !          17099:             "\x00\xff\x01\x12\x06\x18\x00\xff\x01\x13\x06\x17\x00"
        !          17100:             "\x14\x04\x2c\x03\x2d\x02\x2c\x03\x2c\x03\x2c\x03\x2c"
        !          17101:             "\x03\x17\x02\x13\x02\x18\x02\x13\x02\x19\x02\x12\x02"
        !          17102:             "\x19\x02\x12\x02\x1a\x02\x11\x02\x1a\x03\x10\x02\x1b"
        !          17103:             "\x02\x10\x02\x1b\x03\x0f\x02\x1b\x03\x0e\x03\x1b\x04"
        !          17104:             "\x0d\x03\x1a\x06\x0c\x03\x17\x09\x0c\x24\x0b\x25\x0a"
        !          17105:             "\x25\x0b" }  },
        !          17106:       /* --- pixel bitmap for cmmi450 char#7 \Upsilon --- */
        !          17107:       {   7,70138,                      /* character number, location */
        !          17108:          44, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          17109:           { 42,   44, 3,183, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          17110:             "\x86\xe0\x46\xaa\xea\x6d\xbd\x4e\x01\x9e\x3e\x02\x8e"
        !          17111:             "\x02\x14\x86\x65\x84\x13\xa5\x55\xa6\xc4\x54\xc4\xe3"
        !          17112:             "\x44\xd4\xe4\x24\xe2\xe0\x24\x23\xe0\xe0\x54\x14\xe0"
        !          17113:             "\xe0\x54\x13\xe0\xe0\x68\xe0\xe0\x76\xe0\xe0\x77\xe0"
        !          17114:             "\x50\xf2\xe0\x26\xe0\x60\xf2\xe0\x25\xe0\x70\xf3\xe0"
        !          17115:             "\x15\xe0\x80\xf3\xe5\xe0\x90\xf3\xd5\xe0\xa0\xf3\xc5"
        !          17116:             "\xe0\xb0\xf2\xb5\xe0\xc0\xa6\xe0\xc0\xf1\x2e\x07\xe0"
        !          17117:             "\x50" }  },
        !          17118:       /* --- pixel bitmap for cmmi450 char#8 \Phi --- */
        !          17119:       {   8,71250,                      /* character number, location */
        !          17120:          43, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          17121:           { 40,   43, 3,223, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          17122:             "\xe0\x1e\x07\xe0\x4e\x07\xe0\xd6\xc0\xf1\xe0\x85\xd0"
        !          17123:             "\xf2\xe0\x75\xe0\xe0\x4a\xe0\xc4\x25\x25\xe0\x54\x55"
        !          17124:             "\x54\xe0\x14\x75\x64\xd4\x85\x75\x95\x85\x95\x75\x95"
        !          17125:             "\x95\x65\xa5\xa5\x45\xb5\xa5\x36\xa5\xb5\x35\xb5\xb6"
        !          17126:             "\xf1\x16\xb5\xb6\x0f\x26\xb5\xb6\x16\xb5\xa6\x26\xa5"
        !          17127:             "\xb5\x45\xa5\xa6\x45\xa5\xa5\x55\xa5\x95\x75\x85\x95"
        !          17128:             "\x94\x85\x84\xc4\x75\x64\xe0\x24\x55\x44\xe0\x64\x25"
        !          17129:             "\x25\xe0\xbb\xe0\x40\xf1\xe5\xe0\x70\xf2\xd5\xe0\x80"
        !          17130:             "\xc6\xe0\x80\xf1\x4e\x07\xe0\x10" }  },
        !          17131:       /* --- pixel bitmap for cmmi450 char#9 \Psi --- */
        !          17132:       {   9,72487,                      /* character number, location */
        !          17133:          43, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          17134:           { 42,   43, 3,233, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          17135:             "\xde\x07\xe0\x6e\x07\xe0\xe0\x16\xe0\x20\xf1\xe0\x65"
        !          17136:             "\xe0\x30\xf2\xe0\x55\xe0\x46\xd5\xb7\x25\xb5\xb5\x65"
        !          17137:             "\xa5\xa5\x75\xa5\x95\x85\xa5\x85\x95\x95\x95\x60\xf2"
        !          17138:             "\x35\x95\x85\x70\xf2\x25\x95\x85\x80\x25\x95\x84\xb5"
        !          17139:             "\x85\x85\xb4\x95\x85\x90\xf1\x24\x95\x75\xa0\x24\x85"
        !          17140:             "\x75\xd4\x85\x74\xe5\x75\x65\xe0\x14\x75\x64\xe0\x24"
        !          17141:             "\x65\x64\xe0\x44\x55\x54\xe0\x63\x55\x44\xe0\x83\x45"
        !          17142:             "\x24\xe0\xb4\x15\x14\xe0\xe0\x29\xe0\x90\xf1\xc5\xe0"
        !          17143:             "\xb0\xf2\xb5\xe0\xc0\xa6\xe0\xc0\xf1\x2e\x07\xe0\x52" }  },
        !          17144:       /* --- pixel bitmap for cmmi450 char#10 \Omega --- */
        !          17145:       {  10,73830,                      /* character number, location */
        !          17146:          44, 5,    0, 5,      /* topleft row,col, and botleft row,col */
        !          17147:           { 45,   44, 3,287, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          17148:             "\xe0\x9a\xe0\xe0\x44\x84\xe0\xc5\xc4\xe0\x85\xe0\x24"
        !          17149:             "\xe0\x54\xe0\x54\xe0\x25\xe0\x65\xe5\xe0\x85\xc5\xe0"
        !          17150:             "\x95\xb5\xe0\xa6\x96\xe0\xb5\x10\xf1\x76\xe0\xc5\x10"
        !          17151:             "\x66\xe0\xd6\x66\xe0\xd5\x10\xf2\x56\xe0\xd6\x10\x56"
        !          17152:             "\xe0\xd5\x76\xe0\xc6\x76\xe0\xc5\x86\xe0\xb6\x86\xe0"
        !          17153:             "\xb5\x96\xe0\xa5\xb5\xe0\xa5\xb5\xe0\x95\xc5\xe0\x85"
        !          17154:             "\xe4\xe0\x84\xe0\x14\xe0\x74\xe0\x33\xe0\x64\xe0\x44"
        !          17155:             "\xe0\x53\xe0\x63\xe0\x43\xe0\x73\xe0\x33\xe0\x92\xe0"
        !          17156:             "\x32\xe0\xa2\xe0\x22\xe0\x12\x82\xe0\x12\x82\x62\x92"
        !          17157:             "\xe1\x92\x62\x92\xd2\x82\x72\x92\xd1\x92\x72\x92\xc1"
        !          17158:             "\x92\x83\x91\xc1\x92\x8d\xbd\x8d\xbc\x9c\xbd\x9c\xbc"
        !          17159:             "\xae" }  },
        !          17160:       /* --- pixel bitmap for cmmi450 char#11 \alpha --- */
        !          17161:       {  11,75026,                      /* character number, location */
        !          17162:          28, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          17163:           { 35,   29, 3,191, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          17164:             "\xd7\xe0\xc3\x53\xe0\x83\x83\xe0\x63\xa3\x92\x64\xb3"
        !          17165:             "\x92\x54\xd3\x82\x53\xe4\x62\x54\xe4\x62\x44\xe0\x14"
        !          17166:             "\x62\x35\xe0\x14\x52\x45\xe0\x15\x42\x20\xf1\x15\xe0"
        !          17167:             "\x34\x32\x30\x15\xe0\x34\x22\x45\xe0\x44\x22\x45\xe0"
        !          17168:             "\x44\x12\x55\xe0\x46\x65\xe0\x37\x65\xe0\x36\x7f\x14"
        !          17169:             "\xe0\x45\x84\xe0\x54\x93\xe0\x45\x94\xe0\x26\x94\xe0"
        !          17170:             "\x12\x14\x52\x33\xd2\x34\x51\x53\xa3\x53\x42\x63\x64"
        !          17171:             "\x82\x32\x98\xc4\x50" }  },
        !          17172:       /* --- pixel bitmap for cmmi450 char#12 \beta --- */
        !          17173:       {  12,76181,                      /* character number, location */
        !          17174:          44, 0,  -12, 0,      /* topleft row,col, and botleft row,col */
        !          17175:           { 36,   56, 3,295, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          17176:             "\xe0\x97\xe0\xd2\x63\xe0\x92\xa2\xe0\x72\xc2\xe0\x51"
        !          17177:             "\xe3\xe0\x32\xe3\xe0\x22\xe0\x14\xe2\xe0\x24\xe1\xe0"
        !          17178:             "\x34\xd2\xe0\x34\xc2\xe0\x43\xd2\xe0\x34\x10\xf1\xb2"
        !          17179:             "\xe0\x43\x20\xb1\xe0\x43\xd2\xe0\x33\xe2\xe0\x23\xe0"
        !          17180:             "\x12\x59\x13\xe0\x12\x52\x73\xe0\x32\x68\x22\xe0\x22"
        !          17181:             "\xe0\x32\xe0\x12\xe0\x42\x50\xf1\x82\xe0\x53\x40\xf1"
        !          17182:             "\x82\xe0\x63\x30\xf2\x72\xe0\x73\x30\x72\xe0\x64\x30"
        !          17183:             "\xf3\x62\xe0\x74\x30\xf1\x53\xe0\x64\x40\x53\xe0\x54"
        !          17184:             "\xa3\xe0\x53\xa4\xe0\x43\xb4\xe0\x33\xc2\x12\xe0\x13"
        !          17185:             "\xd2\x21\xe3\xd2\x41\xb4\xe2\x52\x74\xe0\x22\x78\xe0"
        !          17186:             "\x52\xe0\xe0\x30\xf3\x22\xe0\xe0\x40\xf3\x12\xe0\xe0"
        !          17187:             "\x5f\x12\xe0\xe0\x60" }  },
        !          17188:       /* --- pixel bitmap for cmmi450 char#13 \gamma --- */
        !          17189:       {  13,77242,                      /* character number, location */
        !          17190:          28, 1,  -13, 1,      /* topleft row,col, and botleft row,col */
        !          17191:           { 33,   41, 3,169, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          17192:             "\xa5\xe0\xba\xe2\x6c\xc2\x6e\xb2\x54\x75\x92\x54\xa3"
        !          17193:             "\x92\x43\xd3\x72\x52\xe0\x12\x72\x43\xe0\x13\x52\x52"
        !          17194:             "\xe0\x32\x52\x4f\x12\xe0\x42\x42\x50\xe0\x72\x32\x50"
        !          17195:             "\xf1\xe0\x72\x22\x60\xf2\xe0\x72\x12\x70\xf2\xe0\x74"
        !          17196:             "\x80\xf2\xe0\x73\x90\xf2\xe0\x72\xa0\xf1\xe0\x63\xa0"
        !          17197:             "\xe0\x62\xb0\xf3\xe0\x53\xb0\xf3\xe0\x43\xc0\xe0\x42"
        !          17198:             "\xe0\xe0\x23\xe0\xe0\x31\xe0" }  },
        !          17199:       /* --- pixel bitmap for cmmi450 char#14 \delta --- */
        !          17200:       {  14,78283,                      /* character number, location */
        !          17201:          44, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          17202:           { 25,   45, 3,165, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          17203:             "\xe7\xe0\x2d\xb1\x58\xa1\x86\xa1\xa3\x10\xf2\xa2\xd0"
        !          17204:             "\xa3\xc0\xf1\xb3\xb0\xb4\xe0\x84\xe0\x75\xe0\x75\xe0"
        !          17205:             "\x75\xe0\x56\xe0\x33\x15\xe3\x36\xc2\x65\xb2\x75\x40"
        !          17206:             "\xf1\x53\x95\x30\x43\xa5\x64\xb4\x30\xf1\x24\xc4\x30"
        !          17207:             "\xf2\x14\xd4\x34\xe3\x4f\x24\xd4\x44\xd3\x54\xc4\x5f"
        !          17208:             "\x14\xc3\x60\xf1\x13\xb3\x70\x22\xb2\xa3\x92\xc3\x72"
        !          17209:             "\xe3\x52\xe0\x45\xd0" }  },
        !          17210:       /* --- pixel bitmap for cmmi450 char#15 \epsilon --- */
        !          17211:       {  15,79245,                      /* character number, location */
        !          17212:          27, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          17213:           { 21,   28, 3,87, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          17214:             "\xd8\xaa\x95\xe0\x14\xe0\x24\xe0\x24\xe0\x24\xe0\x24"
        !          17215:             "\xe0\x25\xe0\x24\xe0\x25\xe0\x10\xf1\x1e\x03\x3f\x55"
        !          17216:             "\xe0\x20\xf2\x14\xe0\x20\x23\xe0\x53\xe0\x43\xb2\x63"
        !          17217:             "\x93\x83\x53\xc7\x63" }  },
        !          17218:       /* --- pixel bitmap for cmmi450 char#16 \zeta --- */
        !          17219:       {  16,80191,                      /* character number, location */
        !          17220:          43, 2,  -13, 2,      /* topleft row,col, and botleft row,col */
        !          17221:           { 27,   56, 3,211, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          17222:             "\xe0\x32\x80\xf1\xe0\x22\x90\xe0\x31\xe0\xca\xe0\x32"
        !          17223:             "\x62\xe0\x12\x27\xe0\x12\xe0\xa1\xe0\xb1\xe0\xb1\xe0"
        !          17224:             "\xb2\xe0\xa2\xe0\xa2\xe0\xa2\xe0\xa3\xe0\xa2\xe0\xa2"
        !          17225:             "\xe0\xa3\xe0\xa2\xe0\x70\xf1\x33\xe0\x70\xf2\x23\xe0"
        !          17226:             "\x80\xf4\x13\xe0\x9f\x44\xe0\x90\xf1\x14\xe0\x80\x15"
        !          17227:             "\xe0\x95\xe0\x87\xe0\x79\xe0\x5b\xe0\x4c\xe0\x3b\xe0"
        !          17228:             "\x4a\xe0\x68\xe0\x85\x60\xf1\xe0\x44\x50\xe0\x53\x50"
        !          17229:             "\xf1\xe0\x52\x60\xe0\x42\xe0\x31\x72\xe0\x41\x52\xe0"
        !          17230:             "\x65\xa0" }  },
        !          17231:       /* --- pixel bitmap for cmmi450 char#17 \eta --- */
        !          17232:       {  17,81184,                      /* character number, location */
        !          17233:          28, 1,  -13, 1,      /* topleft row,col, and botleft row,col */
        !          17234:           { 30,   41, 3,141, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          17235:             "\x64\xa6\x82\x32\x72\x53\x61\x52\x42\x83\x42\x53\x22"
        !          17236:             "\x93\x32\x63\x12\xa4\x22\x65\xb4\x21\x65\xc4\x12\x65"
        !          17237:             "\xc4\xf1\x12\x64\xd4\xf3\x84\xd4\x10\xf3\x74\xd4\x20"
        !          17238:             "\xf3\x64\xd4\x30\xf3\x54\xd4\x40\xf1\x44\xd4\x50\x52"
        !          17239:             "\xe4\xe0\xc4\x50\xf3\xe0\x64\x60\xf3\xe0\x54\x70\xf1"
        !          17240:             "\xe0\x44\x80\xe0\x52\x99" }  },
        !          17241:       /* --- pixel bitmap for cmmi450 char#18 \theta --- */
        !          17242:       {  18,82056,                      /* character number, location */
        !          17243:          44, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          17244:           { 26,   45, 3,189, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          17245:             "\xe0\x25\xe0\x52\x42\xe0\x32\x62\xe0\x12\x73\xd2\x83"
        !          17246:             "\xc3\x93\xa3\xa3\x94\xa3\x84\xb3\x84\xb4\xf1\x64\xc4"
        !          17247:             "\xf1\x54\xc5\x45\xc5\x44\xd5\xf1\x35\xd4\x10\x34\xd5"
        !          17248:             "\x10\xf1\x25\xd5\x10\x2e\x09\x10\xf1\x1e\x09\x20\xf1"
        !          17249:             "\x15\xd5\x20\x14\xd5\x35\xd5\x35\xd4\x4f\x15\xc5\x44"
        !          17250:             "\xd4\x54\xc5\x5f\x14\xc4\x64\xb4\x74\xb3\x93\xa4\x93"
        !          17251:             "\xa3\xa3\x93\xc2\x83\xd3\x72\xe0\x12\x62\xe0\x32\x33"
        !          17252:             "\xe0\x55\xe0\x20" }  },
        !          17253:       /* --- pixel bitmap for cmmi450 char#19 \iota --- */
        !          17254:       {  19,82839,                      /* character number, location */
        !          17255:          28, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          17256:           { 17,   29, 3,77, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          17257:             "\x82\xe4\x60\xf3\x64\x70\xf3\x54\x80\xf2\x44\x90\xf2"
        !          17258:             "\x34\xa0\xf1\x24\xb0\x24\xa1\xf1\x14\xa2\x14\x92\x14"
        !          17259:             "\xa2\x14\x92\x24\x82\x43\x72\x53\x62\x72\x43\x95\x95" }  },
        !          17260:       /* --- pixel bitmap for cmmi450 char#20 \kappa --- */
        !          17261:       {  20,83823,                      /* character number, location */
        !          17262:          28, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          17263:           { 31,   29, 3,149, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          17264:             "\x82\xe0\xe4\xd4\x94\xc7\x84\xa2\x16\x84\x91\x36\x84"
        !          17265:             "\x81\x45\x84\x72\x63\x94\x61\xe0\x64\x51\xe0\x74\x41"
        !          17266:             "\xe0\x74\x32\xe0\x84\x21\xe0\xa6\xe0\xbe\xe0\x24\x86"
        !          17267:             "\xd4\xa5\xc4\xb5\xb4\xc4\xa4\xd4\x71\xf2\x24\xd4\x62"
        !          17268:             "\xf1\x14\xe3\x62\x10\x14\xe3\x61\x34\xe3\x52\x24\xe0"
        !          17269:             "\x13\x51\x34\xe0\x22\x41\x52\xe0\x54\x53" }  },
        !          17270:       /* --- pixel bitmap for cmmi450 char#21 \lambda --- */
        !          17271:       {  21,84774,                      /* character number, location */
        !          17272:          43, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          17273:           { 31,   44, 3,210, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          17274:             "\x84\xe0\xe0\x14\xe0\xe4\xe0\xd5\xe0\x10\xf1\xc4\xe0"
        !          17275:             "\x10\xc5\xe0\xd4\xe0\xf1\xd5\xd0\xe4\xd0\xf1\xe5\xc0"
        !          17276:             "\xe0\x14\xe0\xd5\xb0\xf1\xe0\x24\xb0\xe0\x25\xe0\xd4"
        !          17277:             "\xa0\xf1\xe0\x35\x90\xe0\x44\x90\xf1\xe0\x45\x80\xe0"
        !          17278:             "\x36\xe0\xa2\x15\xe0\x83\x24\xe0\x73\x35\xe0\x53\x45"
        !          17279:             "\xe0\x43\x64\xe0\x33\x75\xe0\x13\x85\xe4\x94\xd4\xa5"
        !          17280:             "\xb4\xc4\xa4\xd5\x84\xe5\x74\xe0\x24\x65\xe0\x25\x45"
        !          17281:             "\xe0\x35\x35\xe0\x54\x34\xe0\x65\x14\xe0\x84\x22\xe0"
        !          17282:             "\xa4" }  },
        !          17283:       /* --- pixel bitmap for cmmi450 char#22 \mu --- */
        !          17284:       {  22,85890,                      /* character number, location */
        !          17285:          28, 2,  -13, 2,      /* topleft row,col, and botleft row,col */
        !          17286:           { 34,   41, 3,147, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          17287:             "\xb2\xe0\xe0\x34\xd3\x40\xf3\x94\xd4\x40\xf3\x84\xd4"
        !          17288:             "\x50\xf3\x74\xd4\x60\xf3\x64\xd4\x70\x54\xd4\x71\xf2"
        !          17289:             "\x54\xd4\x62\xf1\x45\xc4\x62\x10\x45\xb1\x13\x61\x65"
        !          17290:             "\xa1\x23\x52\x57\x81\x33\x51\x64\x13\x52\x53\x31\x74"
        !          17291:             "\x36\x94\x84\xe0\xd0\xf3\x24\xe0\xe0\xf3\x14\xe0\xe0"
        !          17292:             "\x1f\x14\xe0\xe0\x20\x12\xe0\xe0\x35" }  },
        !          17293:       /* --- pixel bitmap for cmmi450 char#23 \nu --- */
        !          17294:       {  23,86797,                      /* character number, location */
        !          17295:          28, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          17296:           { 30,   28, 3,141, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          17297:             "\x65\xe0\x22\x39\xe0\x14\x19\xe0\x14\x10\xf1\x64\xe0"
        !          17298:             "\x14\x10\x64\xe4\x20\xf1\x54\xe0\x14\x20\xf1\x54\xe4"
        !          17299:             "\x30\x44\xe4\x84\xe3\x94\xd4\x94\xc4\x94\xd3\xa4\xc3"
        !          17300:             "\x80\xf1\x34\xb3\x90\x24\xb3\xc4\xa2\xe4\x92\xe0\x14"
        !          17301:             "\x73\xe0\x14\x73\xe0\x24\x62\xe0\x44\x42\xe0\x64\x23"
        !          17302:             "\xe0\x67\xe0\x94\xe0\xc2" }  },
        !          17303:       /* --- pixel bitmap for cmmi450 char#24 \xi --- */
        !          17304:       {  24,87987,                      /* character number, location */
        !          17305:          43, 1,  -13, 1,      /* topleft row,col, and botleft row,col */
        !          17306:           { 26,   56, 3,207, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          17307:             "\xe0\x22\x80\xf1\xe0\x12\x90\xe0\x21\xe0\xba\xd5\x62"
        !          17308:             "\xb5\x27\xb4\xe0\x74\xe0\x74\xe0\x75\xe0\xf1\x65\xe0"
        !          17309:             "\x10\xf4\x55\xe0\x20\xf1\x64\xe0\x20\x74\xe0\x94\x18"
        !          17310:             "\xe4\x72\xc3\x19\xc2\xe0\x92\xe0\x92\xe0\x92\xe0\x92"
        !          17311:             "\xe0\x93\xe0\x92\xe0\x80\xf1\x13\xe0\x8f\x23\xe0\x9f"
        !          17312:             "\x14\xe0\x85\xe0\x85\xe0\x77\xe0\x69\xe0\x4a\xe0\x4b"
        !          17313:             "\xe0\x3c\xe0\x3a\xe0\x49\xe0\x67\xe0\x75\x40\xf2\xe0"
        !          17314:             "\x53\x40\xe0\x52\xe0\x11\x82\xe0\x22\x52\xe0\x55\x80" }  },
        !          17315:       /* --- pixel bitmap for cmmi450 char#25 \pi --- */
        !          17316:       {  25,89009,                      /* character number, location */
        !          17317:          27, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          17318:           { 34,   28, 3,143, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          17319:             "\x7e\x0c\x6e\x0e\x01\x4e\x0e\x01\x44\x62\x72\xc3\x82"
        !          17320:             "\x72\xc2\x92\x62\xc2\x92\x72\xbf\x12\xa2\x72\xb0\xb3"
        !          17321:             "\x63\xb0\xf1\xb2\x73\xb0\xf1\xa3\x73\xb0\xa2\x83\xe0"
        !          17322:             "\x63\x83\xe0\x63\x74\xb0\xf2\x83\x84\xb0\x74\x84\xe0"
        !          17323:             "\x43\x94\xe0\x34\x95\xe0\x24\xa4\xe0\x14\xb4\xe0\x14"
        !          17324:             "\xb5\xe4\xb4\xe0\x13\xd2\xb7" }  },
        !          17325:       /* --- pixel bitmap for cmmi450 char#26 \rho --- */
        !          17326:       {  26,89925,                      /* character number, location */
        !          17327:          28, 2,  -13, 2,      /* topleft row,col, and botleft row,col */
        !          17328:           { 30,   41, 3,149, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          17329:             "\xe0\x46\xe0\x83\x43\xe0\x43\x73\xe0\x23\x93\xe3\xa3"
        !          17330:             "\xd3\xb4\xb3\xd3\xb3\xd4\x93\xd5\xf1\x84\xd5\xf2\x74"
        !          17331:             "\xe5\xf2\x64\xe5\x10\x64\xe4\x74\xe5\x74\xe4\x84\xd5"
        !          17332:             "\x84\xd4\x85\xd3\x95\xc3\xa5\xb4\xa6\x93\xb4\x22\x73"
        !          17333:             "\xc4\x32\x44\xd4\x55\xe0\x24\xe0\x90\xf3\x24\xe0\xa0"
        !          17334:             "\xf3\x14\xe0\xbf\x14\xe0\xc0\x12\xe0\xd0" }  },
        !          17335:       /* --- pixel bitmap for cmmi450 char#27 \sigma --- */
        !          17336:       {  27,90945,                      /* character number, location */
        !          17337:          27, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          17338:           { 32,   28, 3,127, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          17339:             "\xce\x05\xbe\x08\x8e\x09\x85\x55\xe0\x24\x93\xe0\x14"
        !          17340:             "\xa4\xd4\xc3\xc4\xd3\xc3\xe4\xa4\xe4\xa3\xe0\x14\x80"
        !          17341:             "\xf1\x14\xe0\x14\x8f\x24\xe0\x14\x94\xe0\x13\xaf\x13"
        !          17342:             "\xe0\x14\xa3\xe4\xb3\xe3\xc3\xd4\xc3\xd3\xe3\xb3\xe0"
        !          17343:             "\x22\xa3\xe0\x42\x82\xe0\x72\x53\xe0\x97\xe0\x60" }  },
        !          17344:       /* --- pixel bitmap for cmmi450 char#28 \tau --- */
        !          17345:       {  28,91800,                      /* character number, location */
        !          17346:          27, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          17347:           { 30,   28, 3,105, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          17348:             "\x7e\x08\x6e\x0b\x4e\x0b\x44\x82\xe0\x13\xa2\xe0\x12"
        !          17349:             "\xa3\xe2\xb2\xe2\xc2\xe2\xb3\xe0\xd3\xe0\xd2\xe0\x10"
        !          17350:             "\xf3\xc3\xe0\x10\xf2\xb3\xe0\x20\xf1\xa4\xe0\x20\xf1"
        !          17351:             "\xa3\xe0\x30\xf2\x94\xe0\x30\xf1\x84\xe0\x40\x92\xe0"
        !          17352:             "\x52" }  },
        !          17353:       /* --- pixel bitmap for cmmi450 char#29 \upsilon --- */
        !          17354:       {  29,92769,                      /* character number, location */
        !          17355:          28, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
        !          17356:           { 31,   29, 3,151, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          17357:             "\x75\xe0\x13\x71\x42\xd5\x42\x53\xc5\x41\x63\xc5\x32"
        !          17358:             "\x63\xd4\x22\x73\xd4\x22\x64\xe3\xf1\x12\x74\xe3\x12"
        !          17359:             "\x64\xe0\x13\xf1\x94\xe0\x12\x10\xf1\x84\xe0\x22\x10"
        !          17360:             "\xf2\x74\xe0\x22\x20\x74\xe0\x12\x94\xe0\x22\x30\xf1"
        !          17361:             "\x64\xe0\x12\x40\x64\xe2\xb4\xe1\xd3\xd2\xd3\xc2\xe0"
        !          17362:             "\x13\xa2\xe0\x23\x92\xe0\x53\x53\xe0\x87\xca" }  },
        !          17363:       /* --- pixel bitmap for cmmi450 char#30 \phi --- */
        !          17364:       {  30,93751,                      /* character number, location */
        !          17365:          43, 3,  -13, 3,      /* topleft row,col, and botleft row,col */
        !          17366:           { 33,   56, 3,225, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          17367:             "\xe0\x92\x80\xf3\xe0\x82\x90\xf3\xe0\x72\xa0\xf3\xe0"
        !          17368:             "\x62\xb0\xf1\xe0\x52\xc0\xe0\x28\xe0\x83\x32\x23\xe0"
        !          17369:             "\x34\x42\x53\xe3\x62\x72\xb3\x82\x73\x93\x92\x83\x73"
        !          17370:             "\x92\x94\x54\x92\xa3\x44\xa2\xa3\x43\xb2\xa4\x24\xa2"
        !          17371:             "\xb4\xf2\x14\xb2\xb4\x0f\x24\xb2\xb4\x14\xb2\xa4\x24"
        !          17372:             "\xa2\xb4\x24\xa2\xa4\x34\xa2\xa3\x53\xa2\x94\x53\x92"
        !          17373:             "\x94\x73\x82\x93\x92\x82\x73\xb3\x72\x63\xe2\x52\x53"
        !          17374:             "\xe0\x34\x22\x24\xe0\x88\xe0\xe2\xe0\x50\xf3\xb2\xe0"
        !          17375:             "\x60\xf3\xa2\xe0\x70\xf2\x92\xe0\x83" }  },
        !          17376:       /* --- pixel bitmap for cmmi450 char#31 \chi --- */
        !          17377:       {  31,94962,                      /* character number, location */
        !          17378:          28, 2,  -13, 2,      /* topleft row,col, and botleft row,col */
        !          17379:           { 35,   41, 3,249, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          17380:             "\x56\xe0\xe2\x34\xe0\x71\x32\x45\xe0\x52\x22\x65\xe0"
        !          17381:             "\x32\xb5\xe0\x22\xd4\xe0\x13\xd5\xd3\xe0\x14\xd2\xe0"
        !          17382:             "\x25\xb2\xe0\x35\xa2\xe0\x54\x92\xe0\x64\x82\xe0\x75"
        !          17383:             "\x62\xe0\x94\x52\xe0\xa4\x42\xe0\xb5\x22\xe0\xd4\x13"
        !          17384:             "\xe0\xd7\xe0\xe6\xe0\xe0\x15\xe0\x10\xf1\xe0\x24\xe0"
        !          17385:             "\x10\xe0\x16\xe0\xe2\x14\xe0\xd2\x24\xe0\xc2\x34\xe0"
        !          17386:             "\xb3\x35\xe0\x93\x54\xe0\x92\x64\xe0\x82\x75\xe0\x62"
        !          17387:             "\x94\xe0\x52\xa4\xe0\x42\xb5\xe0\x22\xd4\xe0\x12\xe5"
        !          17388:             "\xd2\xe0\x15\xc3\xe0\x24\xb3\xe0\x35\x62\x22\xe0\x54"
        !          17389:             "\x52\x22\xe0\x74\x32\xe0\xe6\x42" }  },
        !          17390:       /* --- pixel bitmap for cmmi450 char#32 \psi --- */
        !          17391:       {  32,96165,                      /* character number, location */
        !          17392:          43, 1,  -13, 1,      /* topleft row,col, and botleft row,col */
        !          17393:           { 38,   56, 3,253, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          17394:             "\xf3\xe0\xd2\x90\xf3\xe0\xc2\xa0\xf3\xe0\xb2\xb0\xf2"
        !          17395:             "\xe0\xa2\xc0\x75\xc2\x83\x71\x42\xa2\x85\x42\x53\x92"
        !          17396:             "\x85\x41\x63\x92\x85\x32\x63\x92\x94\x22\x73\x82\xa4"
        !          17397:             "\x22\x64\x82\xb3\xf1\x12\x74\x82\xb3\x12\x64\x82\xc3"
        !          17398:             "\xf1\x94\x82\xc2\x10\x84\x92\xc2\x94\x82\xd2\x10\xf1"
        !          17399:             "\x74\x92\xc2\x20\x74\x92\xb2\xa4\x82\xc2\x30\xf1\x64"
        !          17400:             "\x92\xb2\x40\x64\x92\xa2\xb4\x82\xa2\xd3\x82\xa1\xe4"
        !          17401:             "\x72\x91\xe0\x23\x72\x81\xe0\x34\x52\x72\xe0\x63\x42"
        !          17402:             "\x62\xe0\x84\x22\x33\xe0\xd9\xe0\x10\xf3\xe0\x22\xe0"
        !          17403:             "\x60\xf3\xe0\x12\xe0\x70\xf3\xe2\xe0\x80" }  },
        !          17404:       /* --- pixel bitmap for cmmi450 char#33 \omega --- */
        !          17405:       {  33,97426,                      /* character number, location */
        !          17406:          28, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
        !          17407:           { 36,   29, 3,141, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          17408:             "\xe0\xe0\x43\x73\xe0\x85\xf1\x53\xe0\x95\x43\xe0\xb4"
        !          17409:             "\x33\xe0\xc4\x33\xe0\xd3\x32\xe0\xe3\xf1\x22\xe0\xe0"
        !          17410:             "\x13\x13\xd2\xe2\x10\xf2\x12\xd4\xd2\x1f\x22\xd4\xd2"
        !          17411:             "\x2f\x12\xd3\xd2\x32\xd2\xd3\x32\xd2\xd2\x42\xc4\xb3"
        !          17412:             "\x43\xa5\xa3\x53\x97\x83\x64\x64\x24\x64\x7c\x3d\x8b"
        !          17413:             "\x5b\xa9\x79\xd5\xb5\xb2" }  },
        !          17414:       /* --- pixel bitmap for cmmi450 char#34 \varepsilon --- */
        !          17415:       {  34,98497,                      /* character number, location */
        !          17416:          28, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          17417:           { 24,   29, 3,97, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          17418:             "\xc8\xdd\x95\x75\x63\xd2\x52\xe0\x72\xe0\x73\xe0\x40"
        !          17419:             "\xf3\x32\xe0\x50\x42\x53\xe0\x16\x33\xcb\xc2\xe0\x72"
        !          17420:             "\xe0\x72\xe0\x60\xf1\x12\xe0\x7f\x32\xe0\x82\xe0\x41"
        !          17421:             "\x42\xe0\x21\x53\xe1\x74\x93\xad\xd8\xa2" }  },
        !          17422:       /* --- pixel bitmap for cmmi450 char#35 \vartheta --- */
        !          17423:       {  35,99572,                      /* character number, location */
        !          17424:          44, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
        !          17425:           { 33,   45, 3,231, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          17426:             "\xe0\x94\xe0\xd2\x42\xe0\xa1\x62\xe0\x91\x82\xe0\x72"
        !          17427:             "\x83\x20\xf1\xe0\x32\x93\x20\xe0\x22\xa3\x20\xf1\xe0"
        !          17428:             "\x22\xa4\x10\xf2\xe0\x12\xb4\x10\xf1\xe0\x22\x95\x10"
        !          17429:             "\xe0\x31\x95\x74\x72\x85\x52\x32\x72\x74\x61\x52\x72"
        !          17430:             "\x55\x52\x53\x82\x35\x42\x63\xa2\x15\x42\x63\xc6\x41"
        !          17431:             "\x64\xc8\xf2\x12\x64\xc5\x30\xf2\x84\xc5\x40\x84\xc4"
        !          17432:             "\xc4\xc5\x50\xf1\x74\xc4\x60\x74\xb4\xd4\xc4\x70\xf1"
        !          17433:             "\x64\xb4\x80\x64\xa4\xe0\x14\xa3\xa0\xf1\x64\x93\xb0"
        !          17434:             "\x73\x83\xe0\x54\x63\xe0\x83\x42\xe0\xb7\xe0\x22" }  },
        !          17435:       /* --- pixel bitmap for cmmi450 char#36 \varpi --- */
        !          17436:       {  36,100951,                     /* character number, location */
        !          17437:          27, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          17438:           { 49,   28, 3,237, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          17439:             "\x7e\x0e\x0d\x6e\x0e\x0e\x02\x4e\x0e\x0e\x02\x44\x52"
        !          17440:             "\xe0\xe0\x12\x63\x62\xe0\xe0\x22\x62\x72\xe0\xe0\x22"
        !          17441:             "\x52\x72\xe0\xe0\x32\x4f\x12\x72\xe0\xe0\x42\x40\xf1"
        !          17442:             "\x82\xe0\x12\xe0\x22\x40\x72\xe0\x22\xe0\x22\xb2\xe0"
        !          17443:             "\x13\xe0\x22\xa2\xe0\x23\xe0\x12\xb2\xe0\x22\xe0\x22"
        !          17444:             "\xb2\xe0\x13\xe0\x22\xb2\xe0\x13\xe0\x12\xc2\xe4\xe0"
        !          17445:             "\x12\xb2\xe5\xe2\xc2\xe2\x12\xd3\xc2\xd2\x22\xd2\xd3"
        !          17446:             "\xb3\x22\xc3\xd3\xa3\x33\xa3\xe0\x12\x84\x43\x93\xe0"
        !          17447:             "\x23\x55\x63\x64\xe0\x3c\x7c\xe0\x59\xa9\xe0\x86\xe5"
        !          17448:             "\xe0\x23" }  },
        !          17449:       /* --- pixel bitmap for cmmi450 char#37 \varrho --- */
        !          17450:       {  37,101966,                     /* character number, location */
        !          17451:          28, 5,  -12, 5,      /* topleft row,col, and botleft row,col */
        !          17452:           { 27,   40, 3,149, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          17453:             "\xe0\x16\xe0\x53\x43\xe0\x13\x73\xd3\x93\xb3\xa3\xa3"
        !          17454:             "\xb4\x83\xd3\x83\xd4\x63\xd5\xf1\x54\xd5\xf2\x44\xe5"
        !          17455:             "\xf2\x34\xe5\x10\x34\xe4\x45\xd5\x44\xe4\x54\xd5\x54"
        !          17456:             "\xd4\x55\xd3\x62\x13\xb3\x72\x13\xa4\x72\x22\x93\x92"
        !          17457:             "\x32\x73\x92\x52\x44\xa2\x66\xdf\x42\xe0\xb3\xe0\xa4"
        !          17458:             "\xe0\xae\x03\xbe\x03\xce\x01\xe0\xb2\x82" }  },
        !          17459:       /* --- pixel bitmap for cmmi450 char#38 \varsigma --- */
        !          17460:       {  38,102885,                     /* character number, location */
        !          17461:          28, 3,   -7, 3,      /* topleft row,col, and botleft row,col */
        !          17462:           { 22,   35, 3,119, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          17463:             "\xc9\xb3\x63\x82\xe0\x43\xe0\x42\xe0\x52\xe0\x52\xe0"
        !          17464:             "\x53\xe0\x52\xe0\x53\xe0\x52\xe0\x5f\x43\xe0\x54\xe0"
        !          17465:             "\x45\xe0\x36\xe0\x36\xe0\x37\xe0\x28\xe0\x19\xe0\x18"
        !          17466:             "\xe0\x28\xe0\x18\xe0\x26\xe0\x45\x40\xf1\xe4\x40\xf1"
        !          17467:             "\xe3\x50\xe2\xe1\x42\xe0\x25\x8f" }  },
        !          17468:       /* --- pixel bitmap for cmmi450 char#39 \varphi --- */
        !          17469:       {  39,103890,                     /* character number, location */
        !          17470:          28, 3,  -13, 3,      /* topleft row,col, and botleft row,col */
        !          17471:           { 35,   41, 3,219, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          17472:             "\xe0\xb6\xa2\xe0\x19\x82\xe0\x1b\x72\xe4\x54\x52\xe3"
        !          17473:             "\x93\x32\xe3\xa3\x32\xe2\xc2\x22\xe2\xd2\xf1\x22\xd2"
        !          17474:             "\xe2\xf1\x12\xd2\xe0\x12\x12\xd1\xe0\x22\x12\xc2\xe0"
        !          17475:             "\x24\xd1\xe0\x22\x12\xc2\xe0\x22\x12\xc2\xe0\x12\x23"
        !          17476:             "\xb2\xe0\x12\x32\xa2\xe0\x12\x42\xa2\xe3\x43\x92\xe2"
        !          17477:             "\x62\x83\xc3\x73\x73\xb3\x94\x52\xb3\xb4\x42\x94\xd9"
        !          17478:             "\x66\xe0\x1e\x04\xe0\x5e\xe0\x99\xe0\x20\xf2\xa3\xe0"
        !          17479:             "\x80\x94\xe0\x80\xf1\x93\xe0\x90\xf2\x84\xe0\x90\xf1"
        !          17480:             "\x74\xe0\xa0\x82\xe0\xbc" }  },
        !          17481:       /* --- pixel bitmap for cmmi450 char#40 \leftharpoonup --- */
        !          17482:       {  40,121078,                     /* character number, location */
        !          17483:          31, 3,   14, 3,      /* topleft row,col, and botleft row,col */
        !          17484:           { 56,   17, 2,37, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          17485:             "\x0d\x03\x28\x00\xff\x01\x0c\x03\x29\x00\x0b\x04\x34"
        !          17486:             "\x03\x34\x04\x34\x03\x34\x03\x34\x04\x33\x04\x33\x04"
        !          17487:             "\x33\x04\x33\x04\x33\x04\x32\x36\x01\x6f\x01" }  },
        !          17488:       /* --- pixel bitmap for cmmi450 char#41 \leftharpoondown --- */
        !          17489:       {  41,122126,                     /* character number, location */
        !          17490:          17, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          17491:           { 56,   17, 2,39, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          17492:             "\x00\x37\x01\x38\x01\x36\x04\x04\x35\x04\x35\x04\x35"
        !          17493:             "\x04\x35\x04\x35\x04\x35\x03\x36\x03\x35\x04\x35\x03"
        !          17494:             "\x35\x04\x29\x00\xff\x01\x0c\x03\x29\x00\x0d\x03\x28" }  },
        !          17495:       /* --- pixel bitmap for cmmi450 char#42 \rightharpoonup --- */
        !          17496:       {  42,123172,                     /* character number, location */
        !          17497:          31, 3,   14, 3,      /* topleft row,col, and botleft row,col */
        !          17498:           { 56,   17, 2,38, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          17499:             "\x28\x03\x0d\x00\xff\x01\x29\x03\x0c\x00\x29\x04\x35"
        !          17500:             "\x03\x35\x04\x35\x03\x36\x03\x35\x04\x35\x04\x35\x04"
        !          17501:             "\x35\x04\x35\x04\x35\x04\x04\x36\x01\x38\x01\x37" }  },
        !          17502:       /* --- pixel bitmap for cmmi450 char#43 \rightharpoondown --- */
        !          17503:       {  43,124221,                     /* character number, location */
        !          17504:          17, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          17505:           { 56,   17, 2,37, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          17506:             "\x01\x6f\x01\x36\x32\x04\x33\x04\x33\x04\x33\x04\x33"
        !          17507:             "\x04\x33\x04\x34\x03\x34\x03\x34\x04\x34\x03\x34\x04"
        !          17508:             "\x0b\x00\xff\x01\x29\x03\x0c\x00\x28\x03\x0d" }  },
        !          17509:       /* --- pixel bitmap for cmmi450 char#44 ` --- */
        !          17510:       {  44,124662,                     /* character number, location */
        !          17511:          31, 3,   14, 3,      /* topleft row,col, and botleft row,col */
        !          17512:           { 11,   17, 3,32, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          17513:             "\x65\x47\x38\x25\x54\x73\x74\x7f\x23\x84\x83\x84\x85"
        !          17514:             "\x78\x47\x65" }  },
        !          17515:       /* --- pixel bitmap for cmmi450 char#45 ' --- */
        !          17516:       {  45,125104,                     /* character number, location */
        !          17517:          31, 3,   14, 3,      /* topleft row,col, and botleft row,col */
        !          17518:           { 11,   17, 3,33, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          17519:             "\x05\x67\x48\x75\x84\x83\x84\xf2\x83\x74\x73\x74\x55"
        !          17520:             "\x28\x37\x45\x60" }  },
        !          17521:       /* --- pixel bitmap for cmmi450 char#46 \triangleright --- */
        !          17522:       {  46,125663,                     /* character number, location */
        !          17523:          32, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
        !          17524:           { 29,   33, 3,153, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          17525:             "\x12\xe0\xc5\xe0\xa6\xe0\x98\xe0\x73\x16\xe0\x53\x27"
        !          17526:             "\xe0\x33\x46\xe0\x23\x66\xe3\x86\xc3\x96\xb3\xb6\x93"
        !          17527:             "\xd6\x73\xe7\x53\xe0\x26\x43\xe0\x46\x23\xe0\x69\xe0"
        !          17528:             "\x78\xe0\x69\xe0\x46\x23\xe0\x26\x43\xe7\x53\xd6\x73"
        !          17529:             "\xb6\x93\x96\xb3\x86\xc3\x66\xe3\x46\xe0\x23\x27\xe0"
        !          17530:             "\x33\x16\xe0\x58\xe0\x76\xe0\x95\xe0\xb2\xe0\xc4" }  },
        !          17531:       /* --- pixel bitmap for cmmi450 char#47 \triangleleft --- */
        !          17532:       {  47,126303,                     /* character number, location */
        !          17533:          32, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
        !          17534:           { 29,   33, 3,156, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          17535:             "\xe0\xc3\xe0\xa5\xe0\x96\xe0\x78\xe0\x56\x13\xe0\x37"
        !          17536:             "\x23\xe0\x26\x43\xe6\x63\xc6\x83\xb6\x93\x96\xb3\x76"
        !          17537:             "\xd3\x57\xe3\x46\xe0\x23\x26\xe0\x43\x15\xe0\x68\xe0"
        !          17538:             "\x73\x15\xe0\x63\x26\xe0\x43\x46\xe0\x23\x57\xe3\x76"
        !          17539:             "\xd3\x96\xb3\xb6\x93\xc6\x83\xe6\x63\xe0\x26\x43\xe0"
        !          17540:             "\x37\x23\xe0\x56\x13\xe0\x78\xe0\x96\xe0\xa5\xe0\xc3" }  },
        !          17541:       /* --- pixel bitmap for cmmi450 char#48 \0 --- */
        !          17542:       {  48,110897,                     /* character number, location */
        !          17543:          28, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          17544:           { 27,   29, 3,95, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          17545:             "\x99\xe0\x14\x74\xb3\xb3\x93\xd3\x73\xe0\x13\x30\xf1"
        !          17546:             "\x24\xe0\x14\x20\xf2\x14\xe0\x34\x1f\x95\xe0\x35\xf1"
        !          17547:             "\x14\xe0\x34\x10\x15\xe0\x15\x34\xe0\x14\x53\xe0\x13"
        !          17548:             "\x73\xd3\x93\xb3\xb4\x74\xe0\x19\x93" }  },
        !          17549:       /* --- pixel bitmap for cmmi450 char#49 \1 --- */
        !          17550:       {  49,111736,                     /* character number, location */
        !          17551:          28, 6,    0, 6,      /* topleft row,col, and botleft row,col */
        !          17552:           { 20,   28, 3,36, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          17553:             "\xb1\xe0\x33\xc8\x8c\x84\x44\x80\xfe\x84\x80\xf4\x84"
        !          17554:             "\x80\x76\x7f\x1e\x06" }  },
        !          17555:       /* --- pixel bitmap for cmmi450 char#50 \2 --- */
        !          17556:       {  50,112740,                     /* character number, location */
        !          17557:          28, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          17558:           { 25,   28, 3,121, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          17559:             "\x7a\xce\x02\x84\x78\x52\xd6\x32\xe0\x16\x14\xe0\x15"
        !          17560:             "\x15\xe6\x0f\x15\xe0\x15\x13\xe0\x16\xe0\x56\xe0\x55"
        !          17561:             "\x10\xf1\xe0\x45\x20\xe0\x34\xe0\x55\xe0\x54\xe0\x63"
        !          17562:             "\xe0\x63\xe0\x73\xe0\x63\xc2\x72\xe2\x62\xe2\x52\xe0"
        !          17563:             "\x22\x4e\x07\x2e\x09\x1f\x1e\x09\x24" }  },
        !          17564:       /* --- pixel bitmap for cmmi450 char#51 \3 --- */
        !          17565:       {  51,113815,                     /* character number, location */
        !          17566:          28, 3,  -13, 3,      /* topleft row,col, and botleft row,col */
        !          17567:           { 25,   41, 3,161, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          17568:             "\x88\xe0\x1d\xa4\x75\x83\xb5\x52\xe5\x44\xc5\x36\xb6"
        !          17569:             "\x10\xf2\x16\xc5\x10\x24\xc6\x10\xf1\xe0\x45\x20\xe0"
        !          17570:             "\x35\xe0\x64\xe0\x64\xe0\x64\xe0\x54\xe0\x19\xe0\x94"
        !          17571:             "\xe0\x94\xe0\x84\xe0\x84\xe0\x75\xe0\x66\xe0\x65\x10"
        !          17572:             "\xf1\xe0\x56\x23\xe6\x15\xd6\x0f\x17\xc6\x07\xc5\x17"
        !          17573:             "\xb6\x25\xc5\x32\xe0\x15\x42\xd5\x63\xa5\x84\x75\xad"
        !          17574:             "\xe0\x18\x96" }  },
        !          17575:       /* --- pixel bitmap for cmmi450 char#52 \4 --- */
        !          17576:       {  52,114820,                     /* character number, location */
        !          17577:          29, 2,  -12, 2,      /* topleft row,col, and botleft row,col */
        !          17578:           { 27,   41, 3,150, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          17579:             "\xe0\x52\xe0\xa3\x60\xf1\xe0\x34\x60\xe0\x25\xe0\x76"
        !          17580:             "\xe0\x71\x14\xe0\x62\x14\xe0\x52\x24\x60\xf1\xc2\x34"
        !          17581:             "\x60\xb2\x44\xe0\x22\x54\xe0\x21\x64\xe0\x12\x64\xe2"
        !          17582:             "\x74\x60\xf1\x72\x84\x60\x62\x94\xb2\xa4\xb1\xb4\xa2"
        !          17583:             "\xb4\x92\xc4\x60\xf1\x22\xd4\x60\x12\xe4\x62\xe0\x14"
        !          17584:             "\x6f\x1e\x0d\xf9\xe0\x34\x60\xf1\xbe\x02" }  },
        !          17585:       /* --- pixel bitmap for cmmi450 char#53 \5 --- */
        !          17586:       {  53,115939,                     /* character number, location */
        !          17587:          28, 3,  -13, 3,      /* topleft row,col, and botleft row,col */
        !          17588:           { 25,   41, 3,143, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          17589:             "\x32\xe0\x12\x65\x94\x7e\x03\x8e\x02\x9e\x01\xad\xc2"
        !          17590:             "\x26\xc0\xf7\x32\xe0\x60\x32\x48\xb2\x22\x73\x92\x11"
        !          17591:             "\xa3\x83\xc3\x72\xe3\x30\xf1\xe0\x54\x20\xf1\xe0\x64"
        !          17592:             "\x10\xf2\xe0\x65\x14\xe0\x15\x0f\x26\xe5\x06\xe4\x15"
        !          17593:             "\xe0\x14\x22\xe0\x25\x22\xe0\x24\x42\xe4\x53\xd3\x73"
        !          17594:             "\xa4\x94\x65\xcc\xe0\x17\xa0" }  },
        !          17595:       /* --- pixel bitmap for cmmi450 char#54 \6 --- */
        !          17596:       {  54,116916,                     /* character number, location */
        !          17597:          41, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          17598:           { 25,   42, 3,161, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          17599:             "\xd6\xe0\x2b\xd4\x63\xa4\xa2\x84\x95\x64\x96\x63\xa6"
        !          17600:             "\x53\xb6\x44\xb6\x43\xd4\x20\xf1\x24\xe0\x50\x15\xe0"
        !          17601:             "\x50\xf1\x14\xe0\x60\x14\x56\x95\x41\x62\x75\x31\x83"
        !          17602:             "\x55\x21\xa3\x45\x11\xc3\x3f\x16\xd4\x26\xe4\x15\xe0"
        !          17603:             "\x14\x1f\x35\xe0\x15\xf3\x14\xe0\x15\xf1\x24\xe4\x10"
        !          17604:             "\x24\xd5\x43\xd4\x54\xc3\x73\xb4\x83\x94\xa4\x55\xcb"
        !          17605:             "\xe0\x27\x96" }  },
        !          17606:       /* --- pixel bitmap for cmmi450 char#55 \7 --- */
        !          17607:       {  55,117927,                     /* character number, location */
        !          17608:          29, 3,  -13, 3,      /* topleft row,col, and botleft row,col */
        !          17609:           { 27,   42, 3,135, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          17610:             "\x22\xe0\xb3\xe0\x80\xf1\x2e\x0b\x2e\x0a\x2e\x0b\x22"
        !          17611:             "\xe0\x62\x32\xe0\x52\x42\xe0\x42\x42\xe0\x52\x42\xe0"
        !          17612:             "\x42\x52\xe0\x32\x60\xf1\xe0\x42\x70\xe0\x32\xe0\xa2"
        !          17613:             "\x90\xf1\xe0\x12\xa0\xe2\xb0\xf1\xd3\xb0\xf1\xc3\xc0"
        !          17614:             "\xf2\xb4\xc0\xa5\xc0\xf1\xa4\xd0\xf3\x95\xd0\xf7\x86"
        !          17615:             "\xd0\x94\xe3" }  },
        !          17616:       /* --- pixel bitmap for cmmi450 char#56 \8 --- */
        !          17617:       {  56,118908,                     /* character number, location */
        !          17618:          41, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          17619:           { 25,   42, 3,171, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          17620:             "\x97\xe0\x2c\xb4\x74\x93\xb3\x72\xe3\x53\xe0\x13\x42"
        !          17621:             "\xe0\x24\x10\xf2\x13\xe0\x33\x10\xf1\x14\xe0\x23\x10"
        !          17622:             "\x15\xe3\x46\xc2\x57\xa3\x68\x73\x88\x52\xb9\x13\xe9"
        !          17623:             "\xe0\x39\xe0\x3a\xd2\x29\xa2\x68\x82\x88\x62\xb7\x43"
        !          17624:             "\xc7\x23\xe0\x15\x23\xe0\x25\x0f\x13\xe0\x44\x0f\x33"
        !          17625:             "\xe0\x53\x13\xe0\x42\x23\xe0\x33\x33\xe0\x22\x44\xe2"
        !          17626:             "\x64\xb3\x94\x74\xbd\xe0\x17\x92" }  },
        !          17627:       /* --- pixel bitmap for cmmi450 char#57 \9 --- */
        !          17628:       {  57,119913,                     /* character number, location */
        !          17629:          28, 3,  -13, 3,      /* topleft row,col, and botleft row,col */
        !          17630:           { 25,   41, 3,151, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          17631:             "\x97\xe0\x2b\xc5\x54\xa4\x93\x84\xb3\x73\xc4\x54\xd3"
        !          17632:             "\x30\xf1\x14\xe4\x2f\x35\xe0\x14\x1f\x35\xe0\x15\x14"
        !          17633:             "\xe0\x15\x14\xe6\xf1\x24\xd6\x33\xc1\x15\x43\xa1\x25"
        !          17634:             "\x53\x82\x25\x63\x61\x45\x96\x55\xf2\xe0\x64\x10\xf1"
        !          17635:             "\xe0\x54\x20\x24\xd4\x20\xf1\x16\xb4\x30\x16\xa4\x56"
        !          17636:             "\xa3\x65\xa3\x82\xb3\xa3\x74\xcb\xe0\x27\xc2" }  },
        !          17637:       /* --- pixel bitmap for cmmi450 char#58 . --- */
        !          17638:       {  58,126872,                     /* character number, location */
        !          17639:           7, 5,    0, 5,      /* topleft row,col, and botleft row,col */
        !          17640:           {  7,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          17641:             "\x1c\xdf\xff\xff\xf7\x71\x00" }  },
        !          17642:       /* --- pixel bitmap for cmmi450 char#59 , --- */
        !          17643:       {  59,127441,                     /* character number, location */
        !          17644:           7, 5,  -12, 5,      /* topleft row,col, and botleft row,col */
        !          17645:           {  8,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          17646:             "\x1c\x3e\x7f\xff\xff\xbe\x9c\x80\x80\x80\x40\x40\x40"
        !          17647:             "\x20\x20\x10\x08\x04\x02" }  },
        !          17648:       /* --- pixel bitmap for cmmi450 char#60 < --- */
        !          17649:       {  60,128129,                     /* character number, location */
        !          17650:          34, 5,   -3, 5,      /* topleft row,col, and botleft row,col */
        !          17651:           { 38,   37, 2,74, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          17652:             "\x23\x03\x21\x05\x1f\x07\x1d\x07\x1d\x07\x1d\x07\x1d"
        !          17653:             "\x07\x1d\x07\x1c\x08\x1c\x08\x1c\x08\x1c\x07\x1d\x07"
        !          17654:             "\x1d\x07\x1d\x07\x1d\x07\x1d\x07\x1d\x07\x1f\x05\x21"
        !          17655:             "\x07\x21\x07\x21\x07\x21\x07\x21\x07\x21\x07\x21\x07"
        !          17656:             "\x21\x08\x20\x08\x20\x08\x21\x07\x21\x07\x21\x07\x21"
        !          17657:             "\x07\x21\x07\x21\x07\x21\x05\x23\x03" }  },
        !          17658:       /* --- pixel bitmap for cmmi450 char#61 / --- */
        !          17659:       {  61,128705,                     /* character number, location */
        !          17660:          47, 3,  -16, 3,      /* topleft row,col, and botleft row,col */
        !          17661:           { 25,   63, 3,257, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          17662:             "\xe0\x92\xe0\x83\xe0\x74\xf1\xe0\x73\x10\xe0\x64\x10"
        !          17663:             "\xf1\xe0\x63\x20\xe0\x54\x20\xf1\xe0\x53\x30\xe0\x44"
        !          17664:             "\xe0\x73\xe0\x74\x40\xf1\xe0\x33\x50\xe0\x24\x50\xf1"
        !          17665:             "\xe0\x23\x60\xe0\x14\xe0\x73\xe0\x74\x70\xf1\xe3\x80"
        !          17666:             "\xd4\x80\xf1\xd3\x90\xc4\x90\xf1\xc3\xa0\xb4\xe0\x73"
        !          17667:             "\xe0\x74\xb0\xf1\xa3\xc0\x94\xc0\xf1\x93\xd0\x84\xd0"
        !          17668:             "\xf1\x83\xe0\x74\xe0\x73\xe0\x74\xe0\x10\xf1\x63\xe0"
        !          17669:             "\x20\x54\xe0\x20\xf1\x53\xe0\x30\x44\xe0\x73\xe0\x74"
        !          17670:             "\xe0\x40\xf1\x33\xe0\x50\x24\xe0\x50\xf1\x23\xe0\x60"
        !          17671:             "\x14\xe0\x60\xf1\x13\xe0\x74\xe0\x7f\x13\xe0\x88" }  },
        !          17672:       /* --- pixel bitmap for cmmi450 char#62 > --- */
        !          17673:       {  62,129480,                     /* character number, location */
        !          17674:          34, 5,   -3, 5,      /* topleft row,col, and botleft row,col */
        !          17675:           { 38,   37, 2,75, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          17676:             "\x00\x03\x23\x05\x21\x07\x21\x07\x21\x07\x21\x07\x21"
        !          17677:             "\x07\x21\x07\x21\x08\x20\x08\x20\x08\x21\x07\x21\x07"
        !          17678:             "\x21\x07\x21\x07\x21\x07\x21\x07\x21\x07\x21\x05\x1f"
        !          17679:             "\x07\x1d\x07\x1d\x07\x1d\x07\x1d\x07\x1d\x07\x1d\x07"
        !          17680:             "\x1c\x08\x1c\x08\x1c\x08\x1c\x07\x1d\x07\x1d\x07\x1d"
        !          17681:             "\x07\x1d\x07\x1d\x07\x1f\x05\x21\x03\x23" }  },
        !          17682:       /* --- pixel bitmap for cmmi450 char#63 \star --- */
        !          17683:       {  63,130231,                     /* character number, location */
        !          17684:          31,-1,    1,-1,      /* topleft row,col, and botleft row,col */
        !          17685:           { 32,   30, 3,115, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          17686:             "\xf4\xe0\x21\xe0\x10\xf6\xe0\x13\xe0\x16\x83\x86\x39"
        !          17687:             "\x25\x29\x7e\x09\xce\x03\xe0\x3d\xe0\x79\xe0\xa7\xe0"
        !          17688:             "\xa9\xe0\x94\x14\xe0\x85\x15\xe0\x74\x34\xe0\x64\x54"
        !          17689:             "\xe0\x53\x73\xe0\x43\x93\xe0\x23\xb3\xe0\x12\xd2\xe2"
        !          17690:             "\xe0\x12\xd1\xe0\x31\x67" }  },
        !          17691:       /* --- pixel bitmap for cmmi450 char#64 \partial --- */
        !          17692:       {  64,104990,                     /* character number, location */
        !          17693:          44, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          17694:           { 32,   45, 3,229, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          17695:             "\xe0\x17\xe0\x9c\xe0\x44\x74\xe0\x23\xb3\xe2\xe3\xc2"
        !          17696:             "\xe0\x23\xb4\xe4\x96\xe3\x20\xf1\x76\xe4\x10\x75\xe0"
        !          17697:             "\x24\x83\xe0\x34\xf3\xe0\xe4\xe7\x74\xb4\x62\x45\x94"
        !          17698:             "\xa1\x35\x83\xc1\x35\x73\xe1\x25\x63\xe0\x11\x25\x53"
        !          17699:             "\xe0\x36\x54\xe0\x36\x44\xe0\x46\x35\xe0\x46\x34\xe0"
        !          17700:             "\x55\x20\xf1\x15\xe0\x55\x20\x15\xe0\x45\x35\xe0\x55"
        !          17701:             "\x35\xe0\x54\x45\xe0\x45\x4f\x15\xe0\x44\x54\xe0\x44"
        !          17702:             "\x64\xe0\x43\x75\xe0\x24\x84\xe0\x14\x94\xe4\xb4\xc4"
        !          17703:             "\xd3\xb4\xe0\x14\x74\xe0\x4d\xe0\x78\xe0\x30" }  },
        !          17704:       /* --- pixel bitmap for cmmi450 char#65 A --- */
        !          17705:       {  65, 1092,                      /* character number, location */
        !          17706:          45, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          17707:           { 43,   45, 3,280, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          17708:             "\xf1\xe0\xe0\x33\x90\xf1\xe0\xe0\x24\x90\xe0\xe0\x15"
        !          17709:             "\x90\xf1\xe0\xe6\x90\xe0\xd8\xe0\xe0\x72\x15\xe0\xe0"
        !          17710:             "\x62\x25\xe0\xe0\x53\x25\xe0\xe0\x52\x35\x80\xf1\xe0"
        !          17711:             "\xa2\x45\x80\xe0\x92\x55\xe0\xe0\x23\x55\xe0\xe0\x22"
        !          17712:             "\x65\xe0\xe0\x12\x75\xe0\xe0\x12\x76\xe0\xd2\x95\xe0"
        !          17713:             "\xc3\x95\xe0\xc2\xa5\x70\xf1\xe0\x42\xb5\x70\xe0\x32"
        !          17714:             "\xc5\xe0\x93\xc5\xe0\x92\xd5\xe0\x82\xe5\xe0\x8e\x08"
        !          17715:             "\xe0\x6e\x09\xe0\x62\xe0\x25\xe0\x52\xe0\x35\x60\xf1"
        !          17716:             "\xc2\xe0\x45\x60\xf1\xb2\xe0\x55\x60\xa2\xe0\x65\xe0"
        !          17717:             "\x12\xe0\x75\xe0\x12\xe0\x76\xd2\xe0\x95\xc3\xe0\x95"
        !          17718:             "\xb4\xe0\x95\x97\xe0\x76\x5f\x1e\xde\x02" }  },
        !          17719:       /* --- pixel bitmap for cmmi450 char#66 B --- */
        !          17720:       {  66, 2618,                      /* character number, location */
        !          17721:          43, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          17722:           { 44,   43, 3,253, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          17723:             "\xae\x0d\xe0\x3e\x0e\x02\xe0\x65\xe6\xe0\x55\xe0\x25"
        !          17724:             "\xe0\x45\xe0\x26\x10\xf1\xe0\x15\xe0\x46\xf1\xe0\x15"
        !          17725:             "\xe0\x55\xe5\xe0\x65\xf1\xe5\xe0\x56\xe5\xe0\x55\xe5"
        !          17726:             "\xe0\x56\xe5\xe0\x55\xe0\x15\xe0\x45\xe0\x25\xe0\x35"
        !          17727:             "\xe0\x25\xe0\x35\xe0\x35\xe0\x16\xe0\x45\xd6\xe0\x6e"
        !          17728:             "\x08\xe0\x75\xe0\x15\xe0\x55\xe0\x35\xe0\x35\xe0\x45"
        !          17729:             "\xe0\x25\xe0\x46\xe5\xe0\x65\x40\xf2\xa5\xe0\x66\x30"
        !          17730:             "\xf3\x95\xe0\x76\x30\xf1\x85\xe0\x76\x40\x85\xe0\x66"
        !          17731:             "\xd5\xe0\x56\xd5\xe0\x56\xe5\xe0\x46\xe0\x15\xe0\x27"
        !          17732:             "\xe0\x16\xe7\xbe\x0e\x03\xde\x0e\xe0\x25" }  },
        !          17733:       /* --- pixel bitmap for cmmi450 char#67 C --- */
        !          17734:       {  67, 3691,                      /* character number, location */
        !          17735:          44, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          17736:           { 45,   45, 3,261, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          17737:             "\xe0\x99\xc1\xe0\x6e\x92\xe0\x38\x74\x62\xe0\x26\xd3"
        !          17738:             "\x43\xe0\x15\xe0\x32\x24\xd5\xe0\x67\xc5\xe0\x76\xc5"
        !          17739:             "\xe0\x95\xb5\xe0\xa5\xa5\xe0\xc4\x95\xe0\xd3\x95\xe0"
        !          17740:             "\xe3\x86\xe0\xe3\x85\xe0\xe0\x13\x75\xe0\xe0\x22\x76"
        !          17741:             "\xe0\xe0\x22\x75\xe0\xe0\x32\x40\xf1\x26\xe0\xe0\x90"
        !          17742:             "\xf2\x16\xe0\xe0\xaf\x46\xe0\xe0\xbf\x15\xe0\xe0\xc5"
        !          17743:             "\xe0\xe0\x32\x7f\x15\xe0\xe0\x22\x86\xe0\xe0\x12\x95"
        !          17744:             "\xe0\xe2\x90\xf1\x15\xe0\xd2\xa0\x25\xe0\xb2\xd5\xe0"
        !          17745:             "\xa2\xe0\x15\xe0\x82\xe0\x35\xe0\x62\xe0\x55\xe0\x33"
        !          17746:             "\xe0\x76\xd3\xe0\xb6\x85\xe0\xee\x01\xe0\xe0\x58\xe0"
        !          17747:             "\xa4" }  },
        !          17748:       /* --- pixel bitmap for cmmi450 char#68 D --- */
        !          17749:       {  68, 4997,                      /* character number, location */
        !          17750:          43, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          17751:           { 48,   43, 3,261, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          17752:             "\xae\x0d\xe0\x7e\x0e\x02\xe0\xa5\xe7\xe0\x85\xe0\x26"
        !          17753:             "\xe0\x75\xe0\x45\xe0\x55\xe0\x65\xe0\x45\xe0\x74\xe0"
        !          17754:             "\x45\xe0\x75\xe0\x35\xe0\x85\x10\xf1\xe5\xe0\x95\x10"
        !          17755:             "\xe5\xe0\x96\xe5\xe0\xa5\xf2\xd5\xe0\xb5\xd5\xe0\xa6"
        !          17756:             "\xf3\xc5\xe0\xb6\xb5\xe0\xc5\x10\xf1\xb5\xe0\xb6\x10"
        !          17757:             "\xb5\xe0\xb5\x20\xf1\xa5\xe0\xb6\x20\xa5\xe0\xb5\xd5"
        !          17758:             "\xe0\xa6\xc5\xe0\xb5\x40\xf1\x95\xe0\xa5\x50\x95\xe0"
        !          17759:             "\x95\xe5\xe0\x95\xe0\x15\xe0\x85\xe0\x25\xe0\x75\xe0"
        !          17760:             "\x35\xe0\x65\xe0\x35\xe0\x65\xe0\x45\xe0\x46\xe0\x55"
        !          17761:             "\xe0\x26\xe0\x66\xd7\xe0\x2e\x0e\x02\xe0\x4e\x0d\xe0"
        !          17762:             "\x74" }  },
        !          17763:       /* --- pixel bitmap for cmmi450 char#69 E --- */
        !          17764:       {  69, 6590,                      /* character number, location */
        !          17765:          43, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          17766:           { 45,   43, 3,269, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          17767:             "\xf1\xae\x0e\x07\xe0\x25\xe0\x27\xe0\x35\xe0\x54\xe0"
        !          17768:             "\x35\xe0\x63\x10\xf1\xe0\x15\xe0\x73\x10\xf1\xe0\x15"
        !          17769:             "\xe0\x82\x10\xf2\xe5\xe0\x92\x10\xe5\xe0\x82\xe0\x15"
        !          17770:             "\xc2\x92\x20\xf1\xd5\xc2\xd0\xd5\xb3\xe0\xb5\xc2\xe0"
        !          17771:             "\xc5\xb3\xe0\xc5\xa4\xe0\xce\x05\xe0\xbe\x05\xe0\xc5"
        !          17772:             "\xa4\xe0\x10\xf1\xb5\xb3\xe0\x10\xf1\xa5\xc2\xe0\x20"
        !          17773:             "\xa5\xc2\xa2\xe5\xc2\x92\xe5\xe0\xa2\xe5\xe0\x93\xe5"
        !          17774:             "\xe0\x92\xe0\x15\xe0\x83\xe5\xe0\x92\xe0\x15\xe0\x83"
        !          17775:             "\xe0\x15\xe0\x82\xe0\x25\xe0\x73\xe0\x15\xe0\x73\xe0"
        !          17776:             "\x25\xe0\x64\xe0\x25\xe0\x45\xe0\x26\xe0\x18\xae\x0e"
        !          17777:             "\x07\xae\x0e\x06\xb0" }  },
        !          17778:       /* --- pixel bitmap for cmmi450 char#70 F --- */
        !          17779:       {  70, 7991,                      /* character number, location */
        !          17780:          43, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          17781:           { 44,   43, 3,197, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          17782:             "\xf1\xae\x0e\x06\xe0\x25\xe0\x26\xe0\x35\xe0\x44\xe0"
        !          17783:             "\x35\xe0\x53\x10\xf1\xe0\x15\xe0\x63\x10\xf1\xe0\x15"
        !          17784:             "\xe0\x72\x10\xf2\xe5\xe0\x82\x10\xe5\xe0\x72\xe0\x15"
        !          17785:             "\xc2\x82\x20\xf1\xd5\xc2\xc0\xd5\xb3\xe0\xa5\xc2\xe0"
        !          17786:             "\xb5\xb3\xe0\xb5\xa4\xe0\xbe\x05\xe0\xae\x05\xe0\xb5"
        !          17787:             "\xa4\xe0\xf1\xb5\xb3\xe0\xf3\xa5\xc2\xe0\x10\xf3\x95"
        !          17788:             "\xe0\xe0\x20\xf3\x85\xe0\xe0\x30\xf2\x75\xe0\xe0\x40"
        !          17789:             "\x66\xe0\xe0\x4f\x1e\x05\xe0\xb0" }  },
        !          17790:       /* --- pixel bitmap for cmmi450 char#71 G --- */
        !          17791:       {  71, 9286,                      /* character number, location */
        !          17792:          44, 4,   -1, 4,      /* topleft row,col, and botleft row,col */
        !          17793:           { 44,   45, 3,263, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          17794:             "\xe0\x98\xc1\xe0\x6e\x82\xe0\x37\x83\x62\xe0\x26\xd2"
        !          17795:             "\x43\xe0\x15\xe0\x22\x24\xd5\xe0\x57\xc5\xe0\x66\xc5"
        !          17796:             "\xe0\x85\xb5\xe0\x95\xa5\xe0\xb4\x95\xe0\xc3\x95\xe0"
        !          17797:             "\xd3\x85\xe0\xe3\x76\xe0\xe3\x75\xe0\xe0\x12\x76\xe0"
        !          17798:             "\xe0\x12\x75\xe0\xe0\x22\x40\xf1\x26\xe0\xe0\x80\xf2"
        !          17799:             "\x16\xe0\xe0\x9f\x36\xe0\xe0\xa6\xe0\x4e\x04\x25\xe0"
        !          17800:             "\x5e\x04\x25\xe0\xc6\x75\xe0\xd5\x7f\x15\xe0\xc5\x8f"
        !          17801:             "\x16\xe0\xb5\x80\xf1\x15\xe0\xa5\x90\xf1\x25\xe0\x95"
        !          17802:             "\x90\x35\xe0\x75\xe5\xe0\x56\xe0\x15\xe0\x32\x14\xe0"
        !          17803:             "\x26\xd3\x33\xe0\x37\x85\x42\xe0\x6e\x02\x71\xe0\x9a"
        !          17804:             "\xe0\x8e" }  },
        !          17805:       /* --- pixel bitmap for cmmi450 char#72 H --- */
        !          17806:       {  72,10687,                      /* character number, location */
        !          17807:          43, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          17808:           { 52,   43, 3,163, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          17809:             "\xf1\xae\x04\x6e\x04\xe0\x26\xe0\x46\x60\xf1\xe0\x25"
        !          17810:             "\xe0\x55\x70\xf3\xe0\x15\xe0\x55\x80\xf3\xe5\xe0\x55"
        !          17811:             "\x90\xf3\xd5\xe0\x55\xa0\xf2\xc5\xe0\x55\xb0\xce\x0e"
        !          17812:             "\x01\xe0\x8e\x0e\x01\xc0\xf2\xb5\xe0\x55\xc0\xf3\xa5"
        !          17813:             "\xe0\x55\xd0\xf3\x95\xe0\x55\xe0\xf3\x85\xe0\x55\xe0"
        !          17814:             "\x10\xf2\x75\xe0\x55\xe0\x20\x66\xe0\x46\xe0\x2f\x1e"
        !          17815:             "\x04\x6e\x04\xa0" }  },
        !          17816:       /* --- pixel bitmap for cmmi450 char#73 I --- */
        !          17817:       {  73,11586,                      /* character number, location */
        !          17818:          43, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          17819:           { 28,   43, 3,91, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          17820:             "\xf1\xae\x04\xe0\x26\x60\xf1\xe0\x25\x70\xf3\xe0\x15"
        !          17821:             "\x80\xf3\xe5\x90\xf3\xd5\xa0\xf3\xc5\xb0\xf3\xb5\xc0"
        !          17822:             "\xf3\xa5\xd0\xf3\x95\xe0\xf3\x85\xe0\x10\xf2\x75\xe0"
        !          17823:             "\x20\x66\xe0\x2f\x1e\x04\xa2" }  },
        !          17824:       /* --- pixel bitmap for cmmi450 char#74 J --- */
        !          17825:       {  74,12492,                      /* character number, location */
        !          17826:          43, 4,   -1, 4,      /* topleft row,col, and botleft row,col */
        !          17827:           { 35,   44, 3,129, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          17828:             "\xf1\xe0\x3e\x04\xf2\xe0\xb5\x50\xf3\xe0\xa5\x60\xf3"
        !          17829:             "\xe0\x95\x70\xf3\xe0\x85\x80\xf3\xe0\x75\x90\xf3\xe0"
        !          17830:             "\x65\xa0\xf3\xe0\x55\xb0\xf2\xe0\x45\xc0\x32\xd5\xd5"
        !          17831:             "\xb5\xdf\x17\xa5\xd7\x95\xe6\xa5\xe5\xa5\xe0\x12\xd4"
        !          17832:             "\xe0\x31\xc4\xe0\x42\x94\xe0\x82\x64\xe0\xb7\xe0\x90" }  },
        !          17833:       /* --- pixel bitmap for cmmi450 char#75 K --- */
        !          17834:       {  75,13831,                      /* character number, location */
        !          17835:          43, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          17836:           { 52,   43, 3,339, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          17837:             "\xae\x04\xbd\xae\x04\xae\xe0\x26\xe0\x57\xe0\x65\xe0"
        !          17838:             "\x65\xe0\x85\xe0\x63\xe0\x95\xe0\x63\xe0\xa5\xe0\x52"
        !          17839:             "\xe0\xc5\xe0\x33\xe0\xd5\xe0\x23\xe0\xd5\xe0\x22\xe0"
        !          17840:             "\xe0\x15\xe0\x12\xe0\xe0\x25\xd3\xe0\xe0\x35\xc3\xe0"
        !          17841:             "\xe0\x35\xc2\xe0\xe0\x55\xb2\xe0\xe0\x65\x93\xe0\xe0"
        !          17842:             "\x75\x83\xe0\xe0\x75\x84\xe0\xe0\x75\x75\xe0\xe0\x75"
        !          17843:             "\x58\xe0\xe0\x65\x43\x15\xe0\xe0\x55\x42\x35\xe0\xe0"
        !          17844:             "\x55\x32\x55\xe0\xe0\x45\x13\x65\xe0\xe0\x48\x76\xe0"
        !          17845:             "\xe0\x27\xa5\xe0\xe0\x26\xb5\xe0\x60\xf1\xa5\xd5\xe0"
        !          17846:             "\x50\xf1\x95\xe0\x15\xe0\x40\x95\xe0\x16\xe0\xc5\xe0"
        !          17847:             "\x25\xe0\xb5\xe0\x35\xe0\x30\xf1\x85\xe0\x45\xe0\x20"
        !          17848:             "\x85\xe0\x46\xe0\x10\xf1\x75\xe0\x65\xe0\x10\x75\xe0"
        !          17849:             "\x66\xe0\x66\xe0\x58\xde\x04\xae\x01\x9e\x03\xbe\x01"
        !          17850:             "\x90" }  },
        !          17851:       /* --- pixel bitmap for cmmi450 char#76 L --- */
        !          17852:       {  76,14962,                      /* character number, location */
        !          17853:          43, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          17854:           { 37,   43, 3,169, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          17855:             "\xae\x06\xe0\x3e\x05\xe0\xa6\xe0\x10\xf1\xe0\x25\xe0"
        !          17856:             "\x20\xf3\xe0\x15\xe0\x30\xf3\xe5\xe0\x40\xf3\xd5\xe0"
        !          17857:             "\x50\xf3\xc5\xe0\x60\xf3\xb5\xe0\x70\xf1\xa5\xe0\x80"
        !          17858:             "\xa5\xe0\x62\xa5\xe0\x52\x10\xf1\x95\xe0\x62\x10\xf1"
        !          17859:             "\x95\xe0\x52\x20\x85\xe0\x53\xa5\xe0\x52\xb5\xe0\x43"
        !          17860:             "\xb5\xe0\x33\xb5\xe0\x34\xb5\xe0\x25\xb5\xe6\xb6\xc8"
        !          17861:             "\x5e\x0e\x04\x5e\x0e\x03\x60" }  },
        !          17862:       /* --- pixel bitmap for cmmi450 char#77 M --- */
        !          17863:       {  77,16402,                      /* character number, location */
        !          17864:          43, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          17865:           { 62,   43, 3,391, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          17866:             "\xf1\xac\xe0\xec\xe0\x26\xe0\xd7\xe0\x86\xe0\xd6\xe0"
        !          17867:             "\x96\xe0\xc2\x14\xe0\x82\x14\xe0\xb2\x14\xe0\x92\x24"
        !          17868:             "\xe0\xa2\x14\xe0\x92\x24\xe0\x92\x24\xe0\x92\x24\xe0"
        !          17869:             "\x82\x34\xe0\x82\x34\xe0\x82\x24\xe0\x92\x34\xe0\x72"
        !          17870:             "\x34\x90\xf1\xe2\x34\xe0\x62\x44\x90\xf1\xd2\x54\xe0"
        !          17871:             "\x42\x44\xa0\xd2\x54\xe0\x32\x54\xe0\x92\x54\xe0\x22"
        !          17872:             "\x64\xe0\x82\x64\xe0\x22\x54\xe0\x92\x64\xe0\x12\x64"
        !          17873:             "\xb0\xf1\xc2\x64\xe2\x74\xb0\xb2\x84\xc2\x74\xc0\xf1"
        !          17874:             "\xb2\x84\xb2\x84\xc0\xb2\x84\xa2\x94\xe0\x82\x94\xa2"
        !          17875:             "\x84\xe0\x92\x94\x92\x94\xe0\x92\x94\x82\xa4\xe0\x92"
        !          17876:             "\xa4\x72\xa4\xe0\x82\xb4\x62\xa4\xe0\xf1\x92\xb4\x52"
        !          17877:             "\xb4\xe0\x92\xb4\x42\xc4\xe0\x82\xc4\x42\xb4\xe0\x92"
        !          17878:             "\xc4\x32\xc4\xe0\x92\xc4\x22\xd4\xe0\x92\xd4\x12\xd4"
        !          17879:             "\xe0\x82\xe6\xd4\xe0\x92\xe5\xe4\xe0\x84\xd5\xe4\xe0"
        !          17880:             "\x67\xc4\xe5\xe0\x2e\x01\x83\x9e\x03\xae\x93\x9e\x02"
        !          17881:             "\xb0" }  },
        !          17882:       /* --- pixel bitmap for cmmi450 char#78 N --- */
        !          17883:       {  78,17838,                      /* character number, location */
        !          17884:          43, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          17885:           { 52,   43, 3,287, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          17886:             "\xf1\xac\xe0\x1e\x01\xe0\x27\xe0\x46\xe0\x77\xe0\x54"
        !          17887:             "\xe0\x87\xe0\x53\x70\xf1\xe0\x12\x25\xe0\x42\x80\xe0"
        !          17888:             "\x12\x26\xe0\x32\xe0\x92\x35\xe0\x32\xe0\x82\x45\xe0"
        !          17889:             "\x22\x90\xf2\xe2\x55\xe0\x12\x90\xf1\xd2\x75\xd2\xa0"
        !          17890:             "\xf1\xd2\x85\xc2\xa0\xc2\x95\xb2\xb0\xf1\xc2\xa5\xa2"
        !          17891:             "\xb0\xc2\xa6\x92\xb0\xf1\xb2\xc5\x82\xc0\xf1\xb2\xd5"
        !          17892:             "\x72\xc0\xa2\xe6\x52\xd0\xf1\xa2\xe0\x15\x52\xd0\xa2"
        !          17893:             "\xe0\x25\x42\xe0\x82\xe0\x35\x32\xe0\x92\xe0\x36\x22"
        !          17894:             "\xe0\xf1\x92\xe0\x45\x22\xe0\xf2\x82\xe0\x67\xe0\x10"
        !          17895:             "\x82\xe0\x76\xe0\x82\xe0\x85\xe0\x92\xe0\x94\xe0\x84"
        !          17896:             "\xe0\x84\xe0\x67\xe0\x74\xe0\x2f\x1e\x01\xe0\x42\xe0"
        !          17897:             "\x34" }  },
        !          17898:       /* --- pixel bitmap for cmmi450 char#79 O --- */
        !          17899:       {  79,18893,                      /* character number, location */
        !          17900:          44, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          17901:           { 43,   45, 3,263, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          17902:             "\xe0\x98\xe0\xe0\x34\x74\xe0\xc4\xb4\xe0\x84\xe0\x13"
        !          17903:             "\xe0\x54\xe0\x43\xe0\x34\xe0\x54\xe0\x14\xe0\x74\xd4"
        !          17904:             "\xe0\x85\xa5\xe0\xa4\xa4\xe0\xb5\x84\xe0\xc5\x75\xe0"
        !          17905:             "\xc5\x65\xe0\xe5\x46\xe0\xe5\x45\xe0\xe0\x15\x36\xe0"
        !          17906:             "\xe0\x15\x35\xe0\xe0\x25\xf1\x26\xe0\xe0\x16\xf2\x16"
        !          17907:             "\xe0\xe0\x26\x0f\x26\xe0\xe0\x26\x1f\x26\xe0\xe0\x16"
        !          17908:             "\x2f\x15\xe0\xe0\x16\x35\xe0\xe6\x45\xe0\xe5\x55\xe0"
        !          17909:             "\xd6\x56\xe0\xc5\x75\xe0\xb5\x85\xe0\xa5\x95\xe0\x95"
        !          17910:             "\xb5\xe0\x84\xd4\xe0\x74\xe5\xe0\x54\xe0\x24\xe0\x35"
        !          17911:             "\xe0\x44\xe0\x14\xe0\x84\xb4\xe0\xc4\x65\xe0\xe0\x29"
        !          17912:             "\xe0\x94" }  },
        !          17913:       /* --- pixel bitmap for cmmi450 char#80 P --- */
        !          17914:       {  80,20186,                      /* character number, location */
        !          17915:          43, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          17916:           { 44,   43, 3,191, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          17917:             "\xae\x0c\xe0\x4e\x0e\x01\xe0\x75\xd6\xe0\x65\xe0\x16"
        !          17918:             "\xe0\x45\xe0\x26\xe0\x25\xe0\x45\x10\xf2\xe0\x15\xe0"
        !          17919:             "\x46\xf3\xe5\xe0\x56\xf1\xd5\xe0\x56\x10\xd5\xe0\x46"
        !          17920:             "\xe0\x15\xe0\x45\xe0\x15\xe0\x45\xe0\x25\xe0\x35\xe0"
        !          17921:             "\x35\xe0\x15\xe0\x55\xc6\xe0\x6e\x08\xb0\xf2\xb5\xe0"
        !          17922:             "\xe0\xf3\xa5\xe0\xe0\x10\xf3\x95\xe0\xe0\x20\xf3\x85"
        !          17923:             "\xe0\xe0\x30\xf2\x75\xe0\xe0\x40\x66\xe0\xe0\x4e\x04"
        !          17924:             "\xe0\xce\x03\xe0\xd5" }  },
        !          17925:       /* --- pixel bitmap for cmmi450 char#81 Q --- */
        !          17926:       {  81,21325,                      /* character number, location */
        !          17927:          44, 3,  -12, 3,      /* topleft row,col, and botleft row,col */
        !          17928:           { 43,   56, 3,355, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          17929:             "\xe0\x98\xe0\xe0\x34\x74\xe0\xc4\xb4\xe0\x84\xe4\xe0"
        !          17930:             "\x54\xe0\x34\xe0\x34\xe0\x54\xe0\x14\xe0\x74\xd4\xe0"
        !          17931:             "\x85\xa5\xe0\xa4\xa4\xe0\xb5\x85\xe0\xb5\x75\xe0\xc5"
        !          17932:             "\x65\xe0\xd6\x46\xe0\xd6\x45\xe0\xe6\x36\xe0\xe6\x35"
        !          17933:             "\xe0\xe0\x16\xf1\x26\xe0\xe0\x16\xf2\x16\xe0\xe0\x26"
        !          17934:             "\x0f\x26\xe0\xe0\x26\x16\xe0\xe0\x25\x26\xe0\xe0\x16"
        !          17935:             "\x25\xe0\xe0\x26\x2f\x15\xe0\xe0\x16\x35\xe0\xe0\x15"
        !          17936:             "\x45\xe0\xe5\x55\xe0\xd6\x55\xe0\xd5\x75\xe0\xb5\x85"
        !          17937:             "\xa4\xa5\x95\x82\x42\x84\xb4\x71\x71\x74\xd4\x61\x81"
        !          17938:             "\x54\xe5\x41\x91\x44\xe0\x24\x41\x91\x25\xe0\x44\x31"
        !          17939:             "\x96\xe0\x84\x11\x94\xe0\xc5\x64\xc1\xe0\x39\x22\xc1"
        !          17940:             "\xe0\xe2\xb2\xe0\xe2\xb1\xe0\xe0\x13\x92\xe0\xe0\x13"
        !          17941:             "\x82\xe0\xe0\x24\x54\x80\xf1\xe0\x8c\x90\xe0\x8b\xe0"
        !          17942:             "\xe0\x4a\xe0\xe0\x68\xe0\xe0\x85\xe0" }  },
        !          17943:       /* --- pixel bitmap for cmmi450 char#82 R --- */
        !          17944:       {  82,22878,                      /* character number, location */
        !          17945:          43, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          17946:           { 44,   44, 3,233, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          17947:             "\xae\x0a\xe0\x6e\x0d\xe0\x95\xc6\xe0\x75\xe5\xe0\x65"
        !          17948:             "\xe0\x15\xe0\x45\xe0\x35\x20\xf2\xe0\x15\xe0\x36\x10"
        !          17949:             "\xf3\xe5\xe0\x46\x10\xd5\xe0\x46\xe0\x15\xe0\x45\xe0"
        !          17950:             "\x25\xe0\x36\xe0\x25\xe0\x35\xe0\x25\xe0\x34\xe0\x45"
        !          17951:             "\xe0\x15\xe0\x55\xe4\xe0\x75\xb5\xe0\x8e\x04\xe0\xc5"
        !          17952:             "\xb4\xe0\xa5\xd3\xe0\x95\xe3\xe0\x75\xe0\x14\xe0\x65"
        !          17953:             "\xe0\x15\x90\xf1\xa5\xe0\x24\x90\xf3\x95\xe0\x25\x90"
        !          17954:             "\xf3\x85\xe0\x26\x90\xf2\x75\xe0\x36\x72\x66\xe0\x36"
        !          17955:             "\x62\x1e\x04\xc5\x52\x2e\x04\xd5\x32\xe0\xe0\x87\x41" }  },
        !          17956:       /* --- pixel bitmap for cmmi450 char#83 S --- */
        !          17957:       {  83,24097,                      /* character number, location */
        !          17958:          44, 4,   -1, 4,      /* topleft row,col, and botleft row,col */
        !          17959:           { 37,   45, 3,229, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          17960:             "\xe0\x58\x91\xe0\x3c\x62\xe0\x14\x74\x42\xe0\x13\xb3"
        !          17961:             "\x23\xe3\xe6\xd3\xe0\x16\xc3\xe0\x34\xc4\xe0\x34\x20"
        !          17962:             "\xf1\x94\xe0\x53\x20\xf3\x84\xe0\x62\x30\xf1\x85\xe0"
        !          17963:             "\xa0\x86\xe0\xe0\x37\xe0\xe0\x39\xe0\xed\xe0\xbe\x01"
        !          17964:             "\xe0\x9e\x02\xe0\x8e\x02\xe0\xae\xe0\xda\xe0\xe0\x28"
        !          17965:             "\xe0\xe0\x36\x70\xf1\xe0\xb5\x70\xf1\xe0\xc4\x70\xf2"
        !          17966:             "\x32\xe0\x74\x70\xf1\x23\xe0\x64\x80\x23\xe0\x63\xb3"
        !          17967:             "\xe0\x54\xa4\xe0\x44\xb5\xe0\x33\xc6\xe0\x13\xd3\x13"
        !          17968:             "\xc4\xd3\x35\x75\xe2\x6d\xe0\x21\xa7\xe0\x50" }  },
        !          17969:       /* --- pixel bitmap for cmmi450 char#84 T --- */
        !          17970:       {  84,25271,                      /* character number, location */
        !          17971:          43, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          17972:           { 44,   43, 3,185, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          17973:             "\x5e\x0e\x0b\x4e\x0e\x0b\x56\xb5\xb6\x54\xd5\xd4\x43"
        !          17974:             "\xe0\x15\xe3\x43\xe5\xe0\x13\x42\xe0\x15\xe0\x13\x33"
        !          17975:             "\xe0\x15\xe0\x12\x42\xe0\x25\xe0\x12\x42\xe0\x15\xe0"
        !          17976:             "\x22\x20\xf2\x12\xe0\x25\xe0\x22\x22\xe0\x25\xe0\x22"
        !          17977:             "\x30\xf2\xe0\x45\xe0\x70\xf3\xe0\x35\xe0\x80\xf3\xe0"
        !          17978:             "\x25\xe0\x90\xf3\xe0\x15\xe0\xa0\xf3\xe5\xe0\xb0\xf3"
        !          17979:             "\xd5\xe0\xc0\xf2\xc5\xe0\xd0\xb6\xe0\xd0\xf1\x2e\x09"
        !          17980:             "\xe0\x54" }  },
        !          17981:       /* --- pixel bitmap for cmmi450 char#85 U --- */
        !          17982:       {  85,26381,                      /* character number, location */
        !          17983:          43, 4,   -1, 4,      /* topleft row,col, and botleft row,col */
        !          17984:           { 43,   44, 3,175, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          17985:             "\xf1\x1e\x04\x9e\x01\x76\xe0\x56\xc5\xe0\x74\xd5\xe0"
        !          17986:             "\x73\x70\xf3\x65\xe0\x82\x80\xf3\x55\xe0\x82\x90\xf3"
        !          17987:             "\x45\xe0\x82\xa0\xf3\x35\xe0\x82\xb0\xf3\x25\xe0\x82"
        !          17988:             "\xc0\xf3\x15\xe0\x82\xdf\x25\xe0\x82\xef\x15\xe0\x72"
        !          17989:             "\xe0\x15\xe0\x62\xe0\x20\xf1\x14\xe0\x52\xe0\x30\x14"
        !          17990:             "\xe0\x42\xe0\x64\xe0\x22\xe0\x83\xe3\xe0\x94\xc3\xe0"
        !          17991:             "\xc4\x74\xe0\xe0\x1c\xe0\xe0\x58\xe0\xd0" }  },
        !          17992:       /* --- pixel bitmap for cmmi450 char#86 V --- */
        !          17993:       {  86,27445,                      /* character number, location */
        !          17994:          43, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          17995:           { 46,   44, 3,297, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          17996:             "\x1e\x02\xe0\x1e\x0e\x03\xe0\x1d\x76\xe0\x97\xa5\xe0"
        !          17997:             "\xb3\xd5\xe0\xb2\xe5\xe0\xa3\xe5\xe0\xa2\xe0\x16\xe0"
        !          17998:             "\x82\xe0\x35\xe0\x82\xe0\x35\xe0\x72\xb0\xf1\x75\xe0"
        !          17999:             "\x62\xc0\x75\xe0\x52\xe0\x65\xe0\x43\xe0\x65\xe0\x42"
        !          18000:             "\xe0\x76\xe0\x22\xe0\x95\xe0\x22\xe0\x95\xe0\x12\xe0"
        !          18001:             "\x20\xf1\x85\xe2\xe0\x30\x85\xd2\xe0\xc5\xc3\xe0\xc6"
        !          18002:             "\xb2\xe0\xd6\xa2\xe0\xe0\x15\x93\xe0\xe0\x15\x92\xe0"
        !          18003:             "\x70\xf1\x95\x82\xe0\x80\x95\x72\xe0\xe0\x45\x62\xe0"
        !          18004:             "\xe0\x56\x52\xe0\xe0\x65\x42\xe0\xe0\x75\x33\xe0\xe0"
        !          18005:             "\x75\x32\xe0\xc0\xf1\xa5\x22\xe0\xd0\xa5\x12\xe0\xe0"
        !          18006:             "\xf1\xa7\xe0\xe0\x10\xf1\xb5\xe0\xe0\x20\xb4\xe0\xe0"
        !          18007:             "\x30\xf1\xb3\xe0\xe0\x41" }  },
        !          18008:       /* --- pixel bitmap for cmmi450 char#87 W --- */
        !          18009:       {  87,28940,                      /* character number, location */
        !          18010:          43, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          18011:           { 63,   44, 3,441, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          18012:             "\x1e\x02\x8e\x02\x8e\x0e\x02\x9e\x02\x8d\x67\xe0\x37"
        !          18013:             "\xe0\x27\x95\xe0\x65\xe0\x44\xb5\xe0\x65\xe0\x52\xc5"
        !          18014:             "\xe0\x56\xe0\x42\xd6\xe0\x37\xe0\x42\xd6\xe0\x37\xe0"
        !          18015:             "\x32\xe0\x15\xe0\x22\x15\xe0\x32\xe0\x15\xe0\x22\x15"
        !          18016:             "\xe0\x22\xe0\x25\xe0\x12\x25\xe0\x13\xe0\x25\xe0\x12"
        !          18017:             "\x25\xe0\x12\xb0\xf1\x65\xe2\x35\xe2\xc0\x65\xd2\x45"
        !          18018:             "\xd2\xe0\x55\xc3\x45\xd2\xe0\x55\xc2\x55\xc2\xe0\x65"
        !          18019:             "\xb2\x65\xc2\xe0\x65\xb2\x65\xb2\xe0\x75\xa2\x76\x93"
        !          18020:             "\xe0\x75\xa2\x76\x92\xe0\x20\xf1\x65\x92\x95\x82\xe0"
        !          18021:             "\x30\x65\x82\xa5\x72\xe0\xa6\x63\xa5\x72\xe0\xb5\x62"
        !          18022:             "\xb5\x62\xe0\xc5\x52\xc5\x62\xe0\xc5\x52\xc5\x52\xe0"
        !          18023:             "\xd5\x42\xd5\x43\xe0\xd5\x42\xd5\x42\xe0\x70\xf1\x75"
        !          18024:             "\x32\xe5\x32\xe0\x80\x75\x22\xe0\x15\x22\xe0\xe0\x25"
        !          18025:             "\x13\xe0\x15\x22\xe0\xe0\x25\x12\xe0\x25\x12\xe0\xe0"
        !          18026:             "\x37\xe0\x35\x12\xe0\xe0\x37\xe0\x37\xe0\xe0\x46\xe0"
        !          18027:             "\x47\xe0\xe0\x46\xe0\x55\xe0\xc0\xf1\x75\xe0\x64\xe0"
        !          18028:             "\xd0\xf1\x74\xe0\x73\xe0\xe0\x82\xe0\x82\xe0\xe0\x10" }  },
        !          18029:       /* --- pixel bitmap for cmmi450 char#88 X --- */
        !          18030:       {  88,30377,                      /* character number, location */
        !          18031:          43, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          18032:           { 53,   43, 2,165, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          18033:             "\x0c\x10\x0a\x0f\x0c\x10\x0a\x0e\x12\x08\x0f\x08\x17"
        !          18034:             "\x05\x12\x04\x1a\x06\x11\x03\x1c\x05\x10\x03\x1d\x06"
        !          18035:             "\x0e\x03\x1e\x06\x0d\x03\x20\x06\x0b\x03\x21\x06\x0b"
        !          18036:             "\x02\x23\x05\x0a\x02\x24\x06\x08\x02\x26\x05\x07\x02"
        !          18037:             "\x27\x06\x05\x02\x28\x06\x04\x02\x2a\x06\x02\x02\x2b"
        !          18038:             "\x06\x01\x02\x2d\x08\x2d\x07\x2f\x05\x17\x00\xff\x01"
        !          18039:             "\x19\x06\x16\x00\xff\x01\x18\x08\x15\x00\x17\x02\x02"
        !          18040:             "\x05\x2b\x02\x03\x06\x29\x02\x05\x05\x28\x02\x06\x06"
        !          18041:             "\x26\x02\x07\x06\x25\x02\x09\x06\x23\x02\x0a\x06\x22"
        !          18042:             "\x02\x0c\x05\x21\x03\x0c\x06\x1f\x03\x0e\x05\x1e\x03"
        !          18043:             "\x0f\x06\x1c\x03\x10\x06\x1b\x03\x12\x06\x19\x03\x13"
        !          18044:             "\x06\x18\x03\x15\x05\x17\x04\x15\x06\x13\x08\x13\x08"
        !          18045:             "\x0e\x0e\x0d\x11\x08\x0f\x0d\x11\x08" }  },
        !          18046:       /* --- pixel bitmap for cmmi450 char#89 Y --- */
        !          18047:       {  89,31585,                      /* character number, location */
        !          18048:          43, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          18049:           { 46,   43, 3,261, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          18050:             "\x0e\x03\xe0\x2e\x0e\x02\xe0\x1e\x57\xe0\x97\xa6\xe0"
        !          18051:             "\xa3\xd6\xe0\x93\xe0\x15\xe0\x92\xe0\x26\xe0\x72\xe0"
        !          18052:             "\x45\xe0\x62\xe0\x56\xe0\x42\xe0\x66\xe0\x32\xe0\x85"
        !          18053:             "\xe0\x23\xe0\x86\xe3\xe0\x96\xd3\xe0\xb5\xd2\xe0\xc6"
        !          18054:             "\xb2\xe0\xd6\xa2\xe0\xe0\x16\x82\xe0\xe0\x26\x72\xe0"
        !          18055:             "\xe0\x45\x63\xe0\xe0\x46\x43\xe0\xe0\x56\x33\xe0\xe0"
        !          18056:             "\x75\x32\xe0\xe0\x86\x12\xe0\xe0\x98\xe0\xe0\xb6\xe0"
        !          18057:             "\xc0\xf2\xe5\xe0\xd0\xe4\xe0\xe0\xf2\xd5\xe0\xe0\xd4"
        !          18058:             "\xe0\xe0\x10\xf2\xc5\xe0\xe0\x10\xc4\xe0\xe0\x20\xf2"
        !          18059:             "\xb5\xe0\xe0\x20\xa6\xe0\xe0\x6e\x04\xe0\xee\x03\xe0"
        !          18060:             "\xb3" }  },
        !          18061:       /* --- pixel bitmap for cmmi450 char#90 Z --- */
        !          18062:       {  90,32788,                      /* character number, location */
        !          18063:          43, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          18064:           { 43,   43, 2,141, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          18065:             "\x0d\x1e\x0c\x1e\x0d\x09\x0f\x05\x0e\x06\x11\x05\x0e"
        !          18066:             "\x05\x12\x06\x0e\x04\x12\x06\x0f\x03\x12\x06\x0f\x03"
        !          18067:             "\x12\x06\x10\x03\x12\x05\x11\x02\x12\x05\x11\x03\x11"
        !          18068:             "\x05\x12\x02\x11\x05\x13\x02\x10\x05\x13\x02\x10\x05"
        !          18069:             "\x25\x05\x25\x06\x24\x06\x24\x06\x24\x06\x25\x05\x25"
        !          18070:             "\x05\x25\x05\x25\x05\x25\x05\x25\x05\x25\x05\x25\x05"
        !          18071:             "\x0f\x02\x14\x06\x0f\x02\x13\x06\x0f\x02\x13\x06\x10"
        !          18072:             "\x02\x13\x05\x11\x02\x12\x05\x11\x03\x11\x05\x12\x02"
        !          18073:             "\x11\x05\x13\x02\x10\x05\x13\x03\x0f\x05\x13\x03\x0f"
        !          18074:             "\x05\x14\x03\x0e\x05\x14\x04\x0d\x06\x12\x05\x0d\x06"
        !          18075:             "\x12\x06\x0c\x06\x10\x09\x0b\xff\x01\x1f\x0c" }  },
        !          18076:       /* --- pixel bitmap for cmmi450 char#91 \flat --- */
        !          18077:       {  91,130976,                     /* character number, location */
        !          18078:          47, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          18079:           { 18,   48, 3,105, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          18080:             "\xfe\x02\xe0\x2f\x22\xe0\x22\x54\x72\x2a\x4e\x01\x35"
        !          18081:             "\x65\x23\x95\x12\xa5\x1f\x62\xb5\x0f\x12\xa5\x12\xa4"
        !          18082:             "\x22\x95\x22\x94\x32\x85\x32\x84\x42\x74\x52\x64\x62"
        !          18083:             "\x54\x72\x44\x82\x34\x92\x24\xa2\x14\xb5\xd4\xe2\xe0"
        !          18084:             "\x20" }  },
        !          18085:       /* --- pixel bitmap for cmmi450 char#92 \natural --- */
        !          18086:       {  92,131831,                     /* character number, location */
        !          18087:          45, 4,  -13, 4,      /* topleft row,col, and botleft row,col */
        !          18088:           { 16,   58, 3,68, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          18089:             "\xfc\x02\xe2\xc4\x97\x6a\x3b\x0f\x1e\x02\x0b\x3a\x67"
        !          18090:             "\x92\x0f\xe2\xc2\x0f\x32\xc2\x02\x97\x6a\x3b\x0f\x1e"
        !          18091:             "\x02\x0b\x3a\x67\x94\xc2\xf7\xe2" }  },
        !          18092:       /* --- pixel bitmap for cmmi450 char#93 \sharp --- */
        !          18093:       {  93,132812,                     /* character number, location */
        !          18094:          44, 3,  -13, 3,      /* topleft row,col, and botleft row,col */
        !          18095:           { 18,   57, 3,131, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          18096:             "\xf2\xd2\x30\xf8\x32\x82\x30\x32\x82\x12\x32\x76\x32"
        !          18097:             "\x49\x32\x1c\x2e\x0e\x04\x2c\x12\x39\x42\x36\x72\x32"
        !          18098:             "\x12\x82\x30\xfe\x32\x82\x30\xf1\x32\x82\x30\x32\x82"
        !          18099:             "\x12\x32\x76\x32\x49\x32\x1c\x2e\x0e\x04\x2c\x12\x39"
        !          18100:             "\x42\x36\x72\x32\x12\x82\x30\xf4\x32\x82\x30\xf2\x32"
        !          18101:             "\xd0" }  },
        !          18102:       /* --- pixel bitmap for cmmi450 char#94 \smile --- */
        !          18103:       {  94,133878,                     /* character number, location */
        !          18104:          23, 3,    9, 3,      /* topleft row,col, and botleft row,col */
        !          18105:           { 56,   14, 2,49, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          18106:             "\x00\x02\x34\x05\x32\x03\x01\x02\x32\x02\x03\x03\x2e"
        !          18107:             "\x03\x05\x03\x2c\x03\x07\x03\x2a\x03\x09\x04\x26\x04"
        !          18108:             "\x0c\x04\x22\x04\x0f\x05\x1e\x05\x12\x06\x18\x06\x16"
        !          18109:             "\x09\x0e\x09\x1a\x1c\x1f\x16\x27\x0c\x16" }  },
        !          18110:       /* --- pixel bitmap for cmmi450 char#95 \frown --- */
        !          18111:       {  95,134778,                     /* character number, location */
        !          18112:          24, 3,    8, 3,      /* topleft row,col, and botleft row,col */
        !          18113:           { 56,   16, 2,56, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          18114:             "\x16\x0c\x28\x14\x21\x1a\x1c\x09\x0c\x09\x18\x06\x16"
        !          18115:             "\x06\x14\x05\x1c\x05\x11\x04\x20\x04\x0f\x03\x24\x03"
        !          18116:             "\x0d\x03\x26\x03\x0a\x03\x2a\x03\x07\x03\x2c\x03\x06"
        !          18117:             "\x02\x2e\x02\x05\x02\x30\x02\x03\x02\x32\x02\x01\xff"
        !          18118:             "\x01\x02\x34\x02" }  },
        !          18119:       /* --- pixel bitmap for cmmi450 char#96 \ell --- */
        !          18120:       {  96,105902,                     /* character number, location */
        !          18121:          44, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
        !          18122:           { 25,   45, 3,207, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          18123:             "\xe0\x54\xe0\x62\x31\xe0\x42\x42\xe0\x22\x61\xe0\x13"
        !          18124:             "\x61\xe0\x12\x62\xe3\x62\xf1\xd3\x72\xc3\x82\xc3\x72"
        !          18125:             "\xc4\x72\xc3\x82\x10\xf1\xa4\x72\x20\xa3\x72\xc4\x72"
        !          18126:             "\xc4\x62\xc4\x72\xc4\x62\xd4\x52\xe4\x43\xd4\x52\xe4"
        !          18127:             "\x42\xe0\x14\x32\xe0\x24\x22\xe0\x33\x22\xe0\x34\x13"
        !          18128:             "\xe0\x37\xe0\x46\xe0\x55\xe0\x64\xe0\x73\xe0\x74\xe0"
        !          18129:             "\x65\xe0\x56\xe0\x43\x13\xe0\x33\x23\xe0\x32\x42\xd2"
        !          18130:             "\x83\xb2\x93\xa2\xb2\x92\xd1\x73\xe2\x43\xe0\x45\x94" }  },
        !          18131:       /* --- pixel bitmap for cmmi450 char#97 a --- */
        !          18132:       {  97,33842,                      /* character number, location */
        !          18133:          28, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          18134:           { 28,   29, 3,125, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          18135:             "\xc5\xe0\x73\x41\xe0\x43\x71\x22\xc3\x86\xa3\xa5\x94"
        !          18136:             "\xa5\x84\xb4\x85\xb4\x84\xc4\x75\xc4\x74\xc4\x60\xf2"
        !          18137:             "\x15\xc4\x6f\x35\xc4\x74\xc4\x71\x0f\x24\xc4\x62\x04"
        !          18138:             "\xb4\x62\x23\xa5\x62\x23\xa1\x13\x61\x43\x81\x23\x52"
        !          18139:             "\x43\x71\x33\x51\x63\x42\x53\x31\x95\x94\x50" }  },
        !          18140:       /* --- pixel bitmap for cmmi450 char#98 b --- */
        !          18141:       {  98,34802,                      /* character number, location */
        !          18142:          43, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          18143:           { 23,   44, 3,143, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          18144:             "\x75\xb0\xf1\x29\xc0\x65\xe0\x54\xc0\xf3\x64\xd0\xf3"
        !          18145:             "\x54\xe0\xf1\x44\xe0\x10\x44\x45\xa4\x22\x52\x74\x22"
        !          18146:             "\x72\x64\x11\x93\x55\xa4\x45\xb3\x35\xc3\x10\xf1\x24"
        !          18147:             "\xd4\x24\xc5\xf3\x14\xd5\x0f\x24\xd5\x14\xd4\x24\xc5"
        !          18148:             "\x2f\x13\xd4\x33\xc4\x43\xc3\x62\xb4\x63\x94\x82\x93"
        !          18149:             "\x93\x63\xc3\x43\xe0\x16\xc0" }  },
        !          18150:       /* --- pixel bitmap for cmmi450 char#99 c --- */
        !          18151:       {  99,35735,                      /* character number, location */
        !          18152:          28, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          18153:           { 23,   29, 3,101, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          18154:             "\xd7\xe3\x52\xb3\x91\x93\xa2\x73\x94\x54\x95\x53\x96"
        !          18155:             "\x44\x96\x34\xa5\x35\xb3\x45\xe0\x20\xf2\x15\xe0\x3f"
        !          18156:             "\x45\xe0\x44\xe0\x54\xe0\x45\xe0\x32\x13\xe0\x32\x14"
        !          18157:             "\xe0\x12\x33\xe2\x43\xc3\x63\xa2\x93\x63\xe7\x94" }  },
        !          18158:       /* --- pixel bitmap for cmmi450 char#100 d --- */
        !          18159:       { 100,36763,                      /* character number, location */
        !          18160:          43, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          18161:           { 29,   44, 3,171, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          18162:             "\xe0\xa5\xf1\xe0\x59\x10\xe0\x95\xe0\xb4\x10\xf3\xe0"
        !          18163:             "\x94\x20\xf3\xe0\x84\x30\xf1\xe0\x74\x40\xc5\x44\xe3"
        !          18164:             "\x41\x34\xc3\x71\x14\xc3\x86\xb3\xa5\xa4\xa5\x94\xb4"
        !          18165:             "\x95\xb4\x94\xc4\x85\xc4\x84\xc4\x70\xf2\x15\xc4\x7f"
        !          18166:             "\x35\xc4\x84\xc4\x71\x1f\x24\xc4\x62\x14\xb4\x62\x33"
        !          18167:             "\xa5\x62\x33\xa1\x13\x61\x53\x81\x23\x52\x53\x71\x33"
        !          18168:             "\x51\x73\x42\x53\x31\xa5\x94\x65" }  },
        !          18169:       /* --- pixel bitmap for cmmi450 char#101 e --- */
        !          18170:       { 101,37724,                      /* character number, location */
        !          18171:          28, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          18172:           { 23,   29, 3,99, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          18173:             "\xd7\xd4\x52\xb3\x91\x84\xa2\x64\xb2\x54\xc2\x44\xd2"
        !          18174:             "\x35\xd2\x34\xe2\x25\xd2\x34\xc3\x35\xa4\x4e\x02\x75"
        !          18175:             "\xe0\x3f\x55\xe0\x45\xe0\x31\xf1\x14\xe0\x22\x14\xe0"
        !          18176:             "\x12\x33\xe2\x53\xb3\x72\xa2\xa2\x63\xe7\x95" }  },
        !          18177:       /* --- pixel bitmap for cmmi450 char#102 f --- */
        !          18178:       { 102,38934,                      /* character number, location */
        !          18179:          44, 3,  -13, 3,      /* topleft row,col, and botleft row,col */
        !          18180:           { 31,   57, 3,175, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          18181:             "\xe0\x95\xe0\xa3\x32\xe0\x83\x52\xe0\x63\x44\xe0\x63"
        !          18182:             "\x36\xe0\x44\x36\xe0\x44\x26\xe0\x53\x45\xe0\x44\x44"
        !          18183:             "\x20\xf2\xe0\x34\xa0\xf4\xe0\x24\xb0\xf1\xae\x02\x50"
        !          18184:             "\xf3\xe0\x14\xc0\xf4\xe4\xd0\xf4\xd4\xe0\xf4\xc4\xe0"
        !          18185:             "\x10\xf4\xb4\xe0\x20\xf3\xa4\xe0\x30\xa3\xe0\x63\x44"
        !          18186:             "\xe0\x55\x34\xe0\x4f\x16\x33\xe0\x55\x33\xe0\x64\x42"
        !          18187:             "\xe0\x81\x53\xe0\x91\x42\xe0\xb4\xe0\xa0" }  },
        !          18188:       /* --- pixel bitmap for cmmi450 char#103 g --- */
        !          18189:       { 103,40015,                      /* character number, location */
        !          18190:          28, 1,  -13, 1,      /* topleft row,col, and botleft row,col */
        !          18191:           { 29,   41, 3,171, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          18192:             "\xe0\x25\xe0\x83\x42\xe0\x43\x72\x22\xc3\x96\xa3\xa6"
        !          18193:             "\x94\xb5\x84\xc4\x85\xc4\x84\xd4\x75\xd4\x74\xd4\x20"
        !          18194:             "\xf2\x55\xd4\x20\xf3\x45\xd4\x30\x45\xc4\x40\xf1\x44"
        !          18195:             "\xd4\x40\x44\xc5\x93\xc4\xa4\xa5\xb3\x91\x14\xc2\x81"
        !          18196:             "\x24\xd2\x52\x24\xe0\x25\x44\x60\xf1\xe0\x54\x60\xf2"
        !          18197:             "\xe0\x44\x70\x23\xd3\x95\xb4\x86\xa4\x96\xa3\xa5\xa3"
        !          18198:             "\xb4\xa3\xd4\x73\xe0\x49\xe0\x24" }  },
        !          18199:       /* --- pixel bitmap for cmmi450 char#104 h --- */
        !          18200:       { 104,41074,                      /* character number, location */
        !          18201:          43, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          18202:           { 31,   44, 3,183, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          18203:             "\xa5\xe0\x20\xf1\x59\xe0\x30\x95\xe0\xd4\xe0\x30\xf3"
        !          18204:             "\x94\xe0\x40\xf3\x84\xe0\x50\xf1\x74\xe0\x60\x74\x56"
        !          18205:             "\xe0\x24\x32\x53\xd4\x22\x83\xc4\x12\x93\xc6\xa4\xb5"
        !          18206:             "\xb4\x50\xf1\x55\xc4\x50\xf1\x54\xd4\x50\xf3\x44\xd4"
        !          18207:             "\x60\xf2\x34\xd4\x70\x34\xc4\xa4\xd4\x71\xf1\x24\xc4"
        !          18208:             "\x72\x24\xc4\x71\x24\xc4\x72\x24\xc4\x71\x34\xc4\x62"
        !          18209:             "\x34\xd3\x61\x34\xe3\x51\x44\xe0\x12\x32\x62\xe0\x35"
        !          18210:             "\x60" }  },
        !          18211:       /* --- pixel bitmap for cmmi450 char#105 i --- */
        !          18212:       { 105,42056,                      /* character number, location */
        !          18213:          42, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
        !          18214:           { 17,   43, 3,123, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          18215:             "\xd3\xd5\xf1\xb6\xb5\xd3\x20\xf7\xe0\x30\x74\xb2\x32"
        !          18216:             "\x92\x43\x72\x54\x61\x64\x30\xf1\x22\x64\x30\x12\x74"
        !          18217:             "\x30\xf1\x12\x64\x40\xf2\x84\x50\xf1\x74\x60\xf2\x64"
        !          18218:             "\x70\x54\x71\xf1\x54\x62\x44\x71\x10\xf1\x44\x62\x10"
        !          18219:             "\x43\x62\x63\x61\x82\x51\x93\x31\xc4\x61" }  },
        !          18220:       /* --- pixel bitmap for cmmi450 char#106 j --- */
        !          18221:       { 106,43075,                      /* character number, location */
        !          18222:          42,-1,  -13,-1,      /* topleft row,col, and botleft row,col */
        !          18223:           { 26,   55, 3,161, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          18224:             "\xe0\x83\xe0\x85\xe0\x66\xf1\xe0\x65\x10\xe0\x73\x20"
        !          18225:             "\xf7\xe0\xc0\xe0\x15\xe0\x62\x32\xe0\x32\x62\xe0\x12"
        !          18226:             "\x73\xe1\x83\xd2\x83\x30\xf1\x92\x84\x30\xf1\x82\x94"
        !          18227:             "\x30\xf3\xe0\x44\x40\xf3\xe0\x34\x50\xf3\xe0\x24\x60"
        !          18228:             "\xf3\xe0\x14\x70\xf3\xe4\x80\xf2\xd4\x90\x23\x74\xb5"
        !          18229:             "\x64\xa6\x63\xb6\x53\xc5\x53\xd4\x53\xe0\x12\x53\xe0"
        !          18230:             "\x45\xe0\x41" }  },
        !          18231:       /* --- pixel bitmap for cmmi450 char#107 k --- */
        !          18232:       { 107,44172,                      /* character number, location */
        !          18233:          43, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          18234:           { 29,   44, 3,203, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          18235:             "\xa5\xe0\xf1\x59\xe0\x10\x95\xe0\xb4\xe0\x10\xf3\x94"
        !          18236:             "\xe0\x20\xf3\x84\xe0\x30\xf1\x74\xe0\x40\x74\xb5\x94"
        !          18237:             "\x92\x42\x74\x91\x54\x64\x81\x55\x64\x71\x56\x64\x61"
        !          18238:             "\x66\x54\x61\x75\x64\x51\x93\x74\x41\xe0\x64\x31\xe0"
        !          18239:             "\x64\x31\xe0\x74\x12\xe0\x85\xe0\xaa\xe0\x44\x54\xe0"
        !          18240:             "\x24\x64\xe0\x14\x74\xe4\x84\xc4\x94\x81\x10\xf2\x24"
        !          18241:             "\x94\x72\x10\xf1\x14\xa3\x72\x20\x14\xa3\x71\x44\xa3"
        !          18242:             "\x62\x34\xc3\x51\x44\xd2\x41\x62\xe0\x15\x60" }  },
        !          18243:       /* --- pixel bitmap for cmmi450 char#108 l --- */
        !          18244:       { 108,45018,                      /* character number, location */
        !          18245:          43, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          18246:           { 14,   44, 3,95, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          18247:             "\x95\xf1\x49\x10\x85\xa4\x10\xf3\x84\x20\xf3\x74\x30"
        !          18248:             "\xf3\x64\x40\xf3\x54\x50\xf3\x44\x60\xf3\x34\x70\xf3"
        !          18249:             "\x24\x80\x14\x71\x10\xf2\x14\x62\x1f\x14\x62\x20\x13"
        !          18250:             "\x61\x43\x52\x43\x51\x63\x31\x94\x61" }  },
        !          18251:       /* --- pixel bitmap for cmmi450 char#109 m --- */
        !          18252:       { 109,46339,                      /* character number, location */
        !          18253:          28, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
        !          18254:           { 52,   29, 3,203, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          18255:             "\x64\xa6\xb6\xd2\x32\x72\x53\x72\x53\xb1\x52\x42\x83"
        !          18256:             "\x42\x83\x92\x53\x22\x93\x32\x93\x82\x63\x12\xa4\x12"
        !          18257:             "\xa4\x72\x65\xb6\xb4\x71\x65\xc5\xc4\x62\x65\xc5\xc4"
        !          18258:             "\x50\xf1\x12\x64\xd4\xd4\x50\xf3\x84\xd4\xd4\x60\xf2"
        !          18259:             "\x74\xd4\xd4\x70\x74\xd4\xc4\xe4\xd4\xd4\x71\xf1\x64"
        !          18260:             "\xd4\xc4\x72\x64\xd4\xc4\x71\x10\xf1\x54\xd4\xc4\x72"
        !          18261:             "\x10\x54\xd4\xc4\x62\x74\xd4\xd3\x61\x74\xd4\xe3\x51"
        !          18262:             "\x84\xd4\xe0\x12\x32\xa2\xe0\x12\xe0\x35\x60" }  },
        !          18263:       /* --- pixel bitmap for cmmi450 char#110 n --- */
        !          18264:       { 110,47530,                      /* character number, location */
        !          18265:          28, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
        !          18266:           { 35,   29, 3,151, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          18267:             "\x64\xa6\xd2\x32\x72\x53\xb1\x43\x42\x83\x92\x53\x22"
        !          18268:             "\x93\x82\x63\x12\xa4\x72\x65\xb4\x71\x65\xc4\x62\x65"
        !          18269:             "\xc4\x50\xf1\x12\x64\xd4\x50\xf3\x84\xd4\x60\xf2\x74"
        !          18270:             "\xd4\x70\x74\xc4\xe4\xd4\x71\xf1\x64\xc4\x72\x64\xc4"
        !          18271:             "\x71\x10\xf1\x54\xc4\x72\x10\x54\xc4\x62\x74\xd3\x61"
        !          18272:             "\x74\xe3\x51\x84\xe0\x12\x32\xa2\xe0\x35\x64" }  },
        !          18273:       /* --- pixel bitmap for cmmi450 char#111 o --- */
        !          18274:       { 111,48392,                      /* character number, location */
        !          18275:          28, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          18276:           { 26,   29, 3,111, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          18277:             "\xd6\xe0\x43\x52\xe3\x83\xb3\xa3\x84\xb3\x74\xc4\x63"
        !          18278:             "\xd4\x54\xd5\x34\xe5\xf1\x25\xe5\xf2\x15\xe0\x15\x0f"
        !          18279:             "\x25\xe0\x15\x15\xe0\x14\x25\xe5\x24\xe0\x14\x34\xe5"
        !          18280:             "\x34\xe4\x53\xd4\x64\xc3\x74\xb3\x93\xa3\xb3\x83\xd3"
        !          18281:             "\x53\xe0\x37\xd4" }  },
        !          18282:       /* --- pixel bitmap for cmmi450 char#112 p --- */
        !          18283:       { 112,49456,                      /* character number, location */
        !          18284:          28,-2,  -12,-2,      /* topleft row,col, and botleft row,col */
        !          18285:           { 32,   40, 3,171, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          18286:             "\x94\x95\xc2\x32\x62\x42\xb1\x52\x41\x72\x92\x53\x12"
        !          18287:             "\x83\x72\x63\x11\x94\x62\x64\xb3\x61\x65\xb4\xf1\x42"
        !          18288:             "\x64\xc4\x42\x64\xb5\xf3\xb4\xc5\xf2\xa4\xc5\x10\xa4"
        !          18289:             "\xc4\xb4\xc5\x20\xf1\x94\xc4\x30\x94\xb4\xc5\xb4\xc5"
        !          18290:             "\xa4\xd5\x94\xe6\x83\xe4\x21\x73\xe0\x14\x31\x43\xe0"
        !          18291:             "\x34\x45\xe0\x54\xe0\x70\xf3\x64\xe0\x80\xf2\x54\xe0"
        !          18292:             "\x90\x45\xe0\x9e\xe0\x4d\xe0\x53" }  },
        !          18293:       /* --- pixel bitmap for cmmi450 char#113 q --- */
        !          18294:       { 113,50497,                      /* character number, location */
        !          18295:          28, 3,  -12, 3,      /* topleft row,col, and botleft row,col */
        !          18296:           { 26,   40, 3,135, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          18297:             "\xc5\x81\xa3\x42\x52\x83\x72\x32\x83\x92\x13\x73\xa6"
        !          18298:             "\x64\xb5\x10\xf1\x44\xc4\x20\x34\xd4\x45\xd4\x44\xd4"
        !          18299:             "\x30\xf2\x15\xd4\x3f\x35\xd4\x4f\x34\xd4\x54\xc4\x73"
        !          18300:             "\xb5\x73\xa6\x83\x82\x14\x92\x72\x14\xb2\x43\x24\xc6"
        !          18301:             "\x44\xe0\x84\x70\xf3\xe4\x80\xf2\xd4\x90\xc5\xe0\x2e"
        !          18302:             "\x01\xbe\x50" }  },
        !          18303:       /* --- pixel bitmap for cmmi450 char#114 r --- */
        !          18304:       { 114,51488,                      /* character number, location */
        !          18305:          28, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
        !          18306:           { 26,   29, 3,107, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          18307:             "\x64\x85\x72\x32\x62\x42\x51\x52\x32\x54\x32\x53\x12"
        !          18308:             "\x55\x22\x63\x11\x56\x22\x65\x56\x21\x65\x65\x22\x64"
        !          18309:             "\x83\x20\xf1\x12\x64\xd0\xf3\x84\xe0\xf3\x74\xe0\x10"
        !          18310:             "\xf3\x64\xe0\x20\xf3\x54\xe0\x30\xf1\x44\xe0\x40\x52"
        !          18311:             "\xe0\x50" }  },
        !          18312:       /* --- pixel bitmap for cmmi450 char#115 s --- */
        !          18313:       { 115,52520,                      /* character number, location */
        !          18314:          28, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          18315:           { 23,   29, 3,103, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          18316:             "\xc7\xe3\x62\xa3\x92\x83\xb2\x72\xc2\x63\xa4\xf1\x53"
        !          18317:             "\xa5\x54\xa3\x64\xe0\x56\xe0\x3a\xec\xcc\xcc\xe0\x19"
        !          18318:             "\xe0\x36\xe0\x54\x52\xc4\x44\xc3\x20\xf1\x16\xb3\x26"
        !          18319:             "\xb3\x44\xc3\x42\xd3\x52\xd2\x72\xb2\x93\x63\xd8\xa2" }  },
        !          18320:       /* --- pixel bitmap for cmmi450 char#116 t --- */
        !          18321:       { 116,53330,                      /* character number, location */
        !          18322:          39, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
        !          18323:           { 20,   40, 3,99, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          18324:             "\xc3\x50\xf3\xb4\x50\xf3\xa4\x60\xf2\x94\x70\x1e\x0e"
        !          18325:             "\x0a\x10\xf2\x84\x80\xf3\x74\x90\xf3\x64\xa0\xf3\x54"
        !          18326:             "\xb0\x44\xa1\x10\xf1\x44\x92\x10\x44\x82\x54\x92\x54"
        !          18327:             "\x82\x73\x81\x83\x71\x93\x61\xb3\x32\xe5\x83" }  },
        !          18328:       /* --- pixel bitmap for cmmi450 char#117 u --- */
        !          18329:       { 117,54438,                      /* character number, location */
        !          18330:          28, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
        !          18331:           { 33,   29, 3,143, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          18332:             "\x75\xe0\xd1\x42\xd3\x82\x53\xb4\x81\x63\xb4\x72\x63"
        !          18333:             "\xb4\x62\x73\xb4\x62\x64\xa4\x50\xf1\x12\x74\xa4\x50"
        !          18334:             "\x12\x64\xb4\x50\xf1\x94\xa4\x60\xf1\x84\xb4\x60\xf3"
        !          18335:             "\x74\xb4\x70\x64\xb4\x71\xf2\x64\xb4\x62\xf1\x64\xa4"
        !          18336:             "\x62\x10\x64\x95\x61\x93\x91\x13\x52\xa3\x71\x23\x51"
        !          18337:             "\xc2\x52\x43\x31\xe6\x84\x53" }  },
        !          18338:       /* --- pixel bitmap for cmmi450 char#118 v --- */
        !          18339:       { 118,55437,                      /* character number, location */
        !          18340:          28, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
        !          18341:           { 28,   29, 3,133, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          18342:             "\x75\xc3\x71\x42\xa5\x42\x53\x95\x41\x63\x95\x32\x63"
        !          18343:             "\xa4\x22\x73\xa4\x22\x64\xb3\xf1\x12\x74\xb3\x12\x64"
        !          18344:             "\xc3\xf1\x94\xc2\x10\xf1\x84\xd2\x10\xf2\x74\xd2\x20"
        !          18345:             "\x74\xc2\x30\xf1\x64\xd2\x30\xf1\x64\xc2\x40\x64\xb2"
        !          18346:             "\xb4\xb1\xd3\xa2\xd3\x92\xe0\x13\x72\xe0\x33\x52\xe0"
        !          18347:             "\x66\xb2" }  },
        !          18348:       /* --- pixel bitmap for cmmi450 char#119 w --- */
        !          18349:       { 119,56731,                      /* character number, location */
        !          18350:          28, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
        !          18351:           { 42,   29, 3,183, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          18352:             "\x75\xe0\xc3\x71\x42\xd3\x85\x42\x53\xb4\x85\x41\x63"
        !          18353:             "\xb4\x85\x32\x63\xb4\x94\x22\x73\xb4\x94\x22\x64\xa4"
        !          18354:             "\xb3\xf1\x12\x74\xa4\xb3\x12\x64\xb4\xb3\xf1\x94\xa4"
        !          18355:             "\xc2\x10\xf1\x84\xb4\xc2\x10\xf2\x74\xb4\xc2\x20\x74"
        !          18356:             "\xb4\xc1\x30\xf1\x64\xb4\xc2\x30\x64\xb4\xc1\xa4\xb4"
        !          18357:             "\xb2\xa4\xb4\xb1\xb4\xa5\xa2\xc3\xa5\xa1\xd4\x82\x13"
        !          18358:             "\x92\xe3\x81\x33\x72\xe0\x24\x42\x53\x52\xe0\x66\x86"
        !          18359:             "\xa4" }  },
        !          18360:       /* --- pixel bitmap for cmmi450 char#120 x --- */
        !          18361:       { 120,58119,                      /* character number, location */
        !          18362:          28, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          18363:           { 31,   29, 3,141, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          18364:             "\x95\x95\xa2\x52\x52\x42\x82\x72\x32\x53\x62\x83\x12"
        !          18365:             "\x55\x42\x95\x56\x32\xa5\x56\x32\xa4\x65\x32\xb4\x73"
        !          18366:             "\x20\xf1\x22\xb4\xc0\xf3\xe4\xd0\xf3\xd4\xe0\xc4\xc1"
        !          18367:             "\x20\xf1\xc4\xb2\x20\x23\x74\xa2\x45\x55\xa2\x36\x55"
        !          18368:             "\x92\x46\x46\x92\x45\x52\x13\x82\x54\x52\x32\x72\x72"
        !          18369:             "\x52\x52\x42\xb5\x85\xa5" }  },
        !          18370:       /* --- pixel bitmap for cmmi450 char#121 y --- */
        !          18371:       { 121,59317,                      /* character number, location */
        !          18372:          28, 1,  -13, 1,      /* topleft row,col, and botleft row,col */
        !          18373:           { 29,   41, 3,181, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          18374:             "\x75\xe0\x91\x42\xd3\x51\x53\xb4\x41\x63\xb4\x32\x63"
        !          18375:             "\xb4\x22\x73\xb4\x22\x64\xa4\x10\xf1\x12\x74\xa4\x10"
        !          18376:             "\x12\x64\xb4\x10\xf1\x94\xa4\x20\xf1\x84\xb4\x20\xf3"
        !          18377:             "\x74\xb4\x30\xf3\x64\xb4\x40\xf1\x64\xa4\x50\x64\x95"
        !          18378:             "\xc3\x95\xd3\x75\xe0\x12\x52\x14\xe0\x26\x34\xe0\xb4"
        !          18379:             "\xe0\xa4\xa4\xb4\x95\xa4\xa6\x94\x96\x94\xa6\x93\xb5"
        !          18380:             "\x93\xd2\xa3\xe0\x11\x93\xe0\x32\x53\xe0\x67\xe0\x36" }  },
        !          18381:       /* --- pixel bitmap for cmmi450 char#122 z --- */
        !          18382:       { 122,60367,                      /* character number, location */
        !          18383:          28, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          18384:           { 27,   29, 3,129, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          18385:             "\xb4\xa2\x97\x82\x99\x72\x8b\x52\x84\x54\x32\x92\xa5"
        !          18386:             "\x93\xd2\x92\xd2\xe0\xa2\xe0\xa2\xe0\xa2\xe0\xa2\xe0"
        !          18387:             "\xa2\xe0\x93\xe0\x92\xe0\xa2\xe0\xa2\xe0\xa2\xe0\xa2"
        !          18388:             "\xe0\xa2\xe2\x82\xe0\x12\x72\xe0\x12\x72\xe0\x13\x68"
        !          18389:             "\x93\x72\x53\x55\x62\x7b\x62\x8a\x62\xa7\x82\xb5\x94" }  },
        !          18390:       /* --- pixel bitmap for cmmi450 char#123 \imath --- */
        !          18391:       { 123,106788,                     /* character number, location */
        !          18392:          28, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
        !          18393:           { 17,   29, 3,103, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          18394:             "\x74\xb2\x32\x92\x43\x72\x54\x61\x64\x30\xf1\x22\x64"
        !          18395:             "\x30\x12\x74\x30\xf1\x12\x64\x40\xf2\x84\x50\xf1\x74"
        !          18396:             "\x60\xf2\x64\x70\x54\x71\xf1\x54\x62\x44\x71\x10\xf1"
        !          18397:             "\x44\x62\x10\x43\x62\x63\x61\x82\x51\x93\x31\xc4\x64" }  },
        !          18398:       /* --- pixel bitmap for cmmi450 char#124 \jmath --- */
        !          18399:       { 124,107655,                     /* character number, location */
        !          18400:          28,-1,  -13,-1,      /* topleft row,col, and botleft row,col */
        !          18401:           { 23,   41, 3,113, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          18402:             "\xe0\x15\xe0\x22\x42\xe2\x62\xc2\x73\xf1\xa2\x83\xf1"
        !          18403:             "\x92\x84\xf1\x82\x94\xf3\xe0\x44\x10\xf3\xe0\x34\x20"
        !          18404:             "\xf3\xe0\x24\x30\xf3\xe0\x14\x40\xf3\xe4\x50\xf2\xd4"
        !          18405:             "\x60\x23\x83\x85\x64\x76\x63\x86\x53\x95\x54\x94\x62"
        !          18406:             "\xc3\x43\xe0\x16\xe0" }  },
        !          18407:       /* --- pixel bitmap for cmmi450 char#125 \wp --- */
        !          18408:       { 125,108880,                     /* character number, location */
        !          18409:          28, 5,  -13, 5,      /* topleft row,col, and botleft row,col */
        !          18410:           { 33,   41, 3,255, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          18411:             "\x92\xe0\xe0\x12\xe0\xe0\x21\xe0\xe0\x32\xe7\x92\xc3"
        !          18412:             "\x63\x71\xc2\xa2\x52\xa2\xc3\x41\xa1\xe0\x12\x32\x82"
        !          18413:             "\xe0\x23\x22\x72\xe0\x33\x12\x72\xe0\x43\x12\x62\xe0"
        !          18414:             "\x53\x12\x61\xe0\x63\x12\x52\xe0\x63\x12\x42\xe0\x64"
        !          18415:             "\x0f\x13\x32\xe0\x74\x12\x22\xe0\x84\x13\x12\xe0\x74"
        !          18416:             "\x25\xe0\x84\x25\x91\xc3\x44\x83\xa4\x54\x63\xb3\x55"
        !          18417:             "\x62\xb3\x66\x52\xa3\x72\x14\x52\x83\x72\x34\x42\x73"
        !          18418:             "\x82\x44\x42\x43\xa2\x53\x65\xc2\x54\xe0\x7f\x12\x73"
        !          18419:             "\xe0\x7f\x12\x82\xe0\x7f\x12\x72\xe0\x81\x81\xe0\x92"
        !          18420:             "\x62\xe0\x92\x52\xe0\xb1\x42\xe0\xd4\xe0\xd2" }  },
        !          18421:       /* --- pixel bitmap for cmmi450 char#126 \vec --- */
        !          18422:       { 126,109654,                     /* character number, location */
        !          18423:          45,12,   32,12,      /* topleft row,col, and botleft row,col */
        !          18424:           { 27,   13, 3,55, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          18425:             "\xe0\x71\x50\xf1\xe0\x63\x40\xe0\x64\xe0\xa4\x2e\x0c"
        !          18426:             "\x1e\x0e\x0e\x0b\xe0\x75\xe0\x74\xe0\x84\xe0\x84\xe0"
        !          18427:             "\xa2\x73" }  },
        !          18428:       /* --- pixel bitmap for cmmi450 char#127 (noname) --- */
        !          18429:       { 127,110210,                     /* character number, location */
        !          18430:          41,17,   34,17,      /* topleft row,col, and botleft row,col */
        !          18431:           { 24,    7, 3,30, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          18432:             "\x8a\xbe\x01\x75\x95\x43\xe0\x13\x22\xe0\x42\x1f\x12"
        !          18433:             "\xe0\x62" }  },
        !          18434:       /* --- trailer  --- */
        !          18435:       { -99, -999,  0,0,0,0, { 0,0,0,0, (pixbyte *)"\0" }  }
        !          18436:    } ;
        !          18437: 
        !          18438: 
        !          18439: /* --- size=10 for .600gf ---
        !          18440:  * mf '\mode=preview; mag=magstep(-8.04680493988053835544); input cmmi10'
        !          18441:  * --------------------------------------------------------------------- */
        !          18442: /* --- fontdef for cmmi600 --- */
        !          18443: static	chardef  cmmi600[] =
        !          18444:    {
        !          18445:       /* --- pixel bitmap for cmmi600 char#0 \Gamma --- */
        !          18446:       {   0,64212,                      /* character number, location */
        !          18447:          57, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          18448:           { 58,   57, 3,335, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          18449:             "\xf2\xde\x0e\x0e\x03\xe0\x78\xe0\x69\xe0\x77\xe0\xa6"
        !          18450:             "\xe0\x77\xe0\xb4\xe0\x78\xe0\xb4\xe0\x78\xe0\xc3\x10"
        !          18451:             "\xf1\xe0\x67\xe0\xd3\x10\xf1\xe0\x58\xe0\xd3\x10\xe0"
        !          18452:             "\x57\xe0\xe3\xe0\x67\xe0\xe2\x20\xf1\xe0\x48\xe0\xe2"
        !          18453:             "\x20\xf1\xe0\x47\xe0\xe0\x12\x20\xe0\x38\xe0\xe0\x12"
        !          18454:             "\xe0\x58\xe0\xe0\x50\xf1\xe0\x37\xe0\xe0\x60\xf1\xe0"
        !          18455:             "\x28\xe0\xe0\x60\xf1\xe0\x27\xe0\xe0\x70\xf1\xe0\x18"
        !          18456:             "\xe0\xe0\x70\xf1\xe0\x17\xe0\xe0\x80\xf1\xe8\xe0\xe0"
        !          18457:             "\x80\xf1\xe7\xe0\xe0\x90\xf1\xd8\xe0\xe0\x90\xf1\xd7"
        !          18458:             "\xe0\xe0\xa0\xf1\xc8\xe0\xe0\xa0\xf1\xc7\xe0\xe0\xb0"
        !          18459:             "\xf1\xb8\xe0\xe0\xb0\xf1\xb7\xe0\xe0\xc0\xf1\xa8\xe0"
        !          18460:             "\xe0\xc0\xf1\xa7\xe0\xe0\xd0\xf1\x98\xe0\xe0\xd0\x97"
        !          18461:             "\xe0\xe0\xe0\x89\xe0\xe0\xdf\x2e\x0c\xe0\xe0\x40" }  },
        !          18462:       /* --- pixel bitmap for cmmi600 char#1 \Delta --- */
        !          18463:       {   1,65225,                      /* character number, location */
        !          18464:          60, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          18465:           { 61,   60, 2,220, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          18466:             "\x2c\x03\x0e\x00\xff\x01\x2b\x04\x0e\x00\x2a\x05\x37"
        !          18467:             "\x07\x0d\x00\xff\x01\x28\x08\x0d\x00\x27\x09\x33\x02"
        !          18468:             "\x01\x08\x31\x03\x01\x08\x31\x02\x02\x08\x30\x02\x04"
        !          18469:             "\x07\x2f\x02\x05\x08\x2d\x03\x05\x08\x2d\x02\x06\x08"
        !          18470:             "\x2c\x02\x08\x07\x2b\x02\x09\x08\x29\x03\x09\x08\x29"
        !          18471:             "\x02\x0a\x08\x28\x02\x0c\x07\x27\x02\x0d\x08\x25\x03"
        !          18472:             "\x0d\x08\x25\x02\x0e\x08\x24\x02\x10\x07\x23\x02\x11"
        !          18473:             "\x08\x21\x03\x11\x08\x21\x02\x12\x08\x20\x02\x14\x07"
        !          18474:             "\x1f\x02\x15\x08\x1d\x03\x15\x08\x1d\x02\x16\x08\x1c"
        !          18475:             "\x02\x18\x07\x1b\x02\x19\x08\x19\x03\x19\x08\x19\x02"
        !          18476:             "\x1a\x08\x18\x02\x1c\x07\x17\x02\x1d\x08\x15\x03\x1d"
        !          18477:             "\x08\x15\x02\x1e\x08\x14\x02\x20\x07\x13\x02\x21\x08"
        !          18478:             "\x11\x03\x21\x08\x11\x02\x22\x08\x10\x02\x24\x07\x0f"
        !          18479:             "\x02\x25\x08\x0d\x03\x25\x08\x0d\x02\x26\x08\x0c\x02"
        !          18480:             "\x28\x07\x0b\x02\x29\x08\x09\x03\x29\x08\x09\x02\x2a"
        !          18481:             "\x08\x08\x02\x2c\x07\x07\x02\x2d\x08\x05\x03\x2d\x08"
        !          18482:             "\x05\x38\x04\x39\x03\x3b\xff\x01\x01\x3c\x00\x3d" }  },
        !          18483:       /* --- pixel bitmap for cmmi600 char#2 \Theta --- */
        !          18484:       {   2,66558,                      /* character number, location */
        !          18485:          59, 4,   -2, 4,      /* topleft row,col, and botleft row,col */
        !          18486:           { 57,   61, 3,477, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          18487:             "\xe0\xe0\x3a\xe0\xe0\xe0\x1e\x03\xe0\xe0\xa7\x77\xe0"
        !          18488:             "\xe0\x66\xd6\xe0\xe0\x26\xe0\x26\xe0\xd6\xe0\x66\xe0"
        !          18489:             "\xa6\xe0\x86\xe0\x76\xe0\xa6\xe0\x66\xe0\xc6\xe0\x46"
        !          18490:             "\xe0\xe6\xe0\x26\xe0\xe0\x16\xe0\x16\xe0\xe0\x27\xd7"
        !          18491:             "\xe0\xe0\x36\xc7\xe0\xe0\x47\xa7\xe0\xe0\x57\x97\xe0"
        !          18492:             "\xe0\x67\x97\xe0\xe0\x68\x77\xe0\xe0\x87\x68\xe0\xe0"
        !          18493:             "\x87\x67\xe0\xe0\x97\x58\xe0\xe0\x97\x57\xe0\xe0\xa7"
        !          18494:             "\x48\xe0\xe0\xa7\x47\xe0\xe0\xa8\x38\xe0\xe0\xa8\x38"
        !          18495:             "\x52\xe0\x92\x68\x28\x62\xe0\x92\x68\xf1\x28\x6e\x0d"
        !          18496:             "\x68\x18\x6e\x0e\x58\x10\xf2\x18\x6e\x0d\x68\x18\x6e"
        !          18497:             "\x0e\x58\x2f\x18\x62\xe0\x92\x68\x2f\x18\xe0\xe0\xa8"
        !          18498:             "\x38\xe0\xe0\xa7\x48\xe0\xe0\x98\x48\xe0\xe0\x97\x58"
        !          18499:             "\xe0\xe0\x88\x58\xe0\xe0\x87\x68\xe0\xe0\x77\x87\xe0"
        !          18500:             "\xe0\x77\x87\xe0\xe0\x67\x97\xe0\xe0\x57\xa7\xe0\xe0"
        !          18501:             "\x56\xc6\xe0\xe0\x46\xd7\xe0\xe0\x26\xe0\x16\xe0\xe0"
        !          18502:             "\x16\xe0\x27\xe0\xd6\xe0\x46\xe0\xc6\xe0\x66\xe0\xa6"
        !          18503:             "\xe0\x86\xe0\x86\xe0\xa6\xe0\x56\xe0\xd6\xe0\x36\xe0"
        !          18504:             "\xe0\x16\xd7\xe0\xe0\x57\x78\xe0\xe0\x9e\x03\xe0\xe0"
        !          18505:             "\xe0\x1a\xe0\xe0\x30" }  },
        !          18506:       /* --- pixel bitmap for cmmi600 char#3 \Lambda --- */
        !          18507:       {   3,67752,                      /* character number, location */
        !          18508:          60, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          18509:           { 53,   60, 3,384, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          18510:             "\xe0\xe0\xc2\xb0\xf1\xe0\xe0\xb3\xb0\xe0\xe0\xa4\xb0"
        !          18511:             "\xf1\xe0\xe0\x95\xb0\xf1\xe0\xe0\x87\xa0\xe0\xe0\x78"
        !          18512:             "\xa0\xf1\xe0\xe0\x69\xa0\xf1\xe0\xe0\x52\x17\xa0\xf1"
        !          18513:             "\xe0\xe0\x42\x27\xa0\xe0\xe0\x32\x37\xe0\xe0\xc3\x37"
        !          18514:             "\xe0\xe0\xc2\x47\xe0\xe0\xb2\x57\xe0\xe0\xb2\x58\x90"
        !          18515:             "\xf1\xe0\xe2\x68\x90\xe0\xd2\x78\xe0\xe0\x73\x78\xe0"
        !          18516:             "\xe0\x72\x97\x90\xf1\xe0\xb2\xa7\x90\xf1\xe0\xa2\xb7"
        !          18517:             "\x90\xe0\x92\xc7\x90\xf1\xe0\x82\xd7\x90\xf1\xe0\x72"
        !          18518:             "\xe8\x80\xe0\x62\xe0\x18\xe0\xd3\xe0\x18\xe0\xd2\xe0"
        !          18519:             "\x28\x80\xf1\xe0\x42\xe0\x47\x80\xf1\xe0\x32\xe0\x57"
        !          18520:             "\x80\xe0\x22\xe0\x67\xe0\x93\xe0\x67\xe0\x92\xe0\x77"
        !          18521:             "\xe0\x82\xe0\x87\xe0\x82\xe0\x88\x70\xf1\xd2\xe0\x98"
        !          18522:             "\x70\xc2\xe0\xa8\xe0\x43\xe0\xa8\xe0\x42\xe0\xc7\xe0"
        !          18523:             "\x32\xe0\xd7\x70\xf1\x93\xe0\xd7\x70\x83\xe0\xe7\xe5"
        !          18524:             "\xe0\xc8\xc8\xe0\xaa\x6f\x2e\x03\xee\x08" }  },
        !          18525:       /* --- pixel bitmap for cmmi600 char#4 \Xi --- */
        !          18526:       {   4,69369,                      /* character number, location */
        !          18527:          57, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          18528:           { 60,   57, 2,149, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          18529:             "\xff\x01\x0f\x2d\xff\x02\x0e\x2e\x0d\x2e\x0e\x03\x29"
        !          18530:             "\x02\x0e\x02\x2a\x02\x0d\x03\x2a\x02\x0d\x02\x2b\x02"
        !          18531:             "\x0d\x02\x2a\x03\x0c\x03\x2a\x02\x0d\x02\x2b\x02\x02"
        !          18532:             "\x00\xff\x06\x3c\x00\xff\x01\x10\x02\x1d\x02\x0b\x00"
        !          18533:             "\x0f\x03\x1c\x03\x1a\x03\x1c\x02\x0c\x00\xff\x01\x0f"
        !          18534:             "\x21\x0c\x00\xff\x01\x0e\x22\x0c\x00\xff\x01\x0e\x21"
        !          18535:             "\x0d\x00\x0d\x03\x1c\x03\x1a\x03\x1c\x02\x0e\x00\xff"
        !          18536:             "\x01\x0d\x02\x1d\x02\x0e\x00\xff\x08\x3c\x00\xff\x02"
        !          18537:             "\x02\x02\x2d\x02\x09\x00\x02\x02\x2c\x03\x0b\x02\x2c"
        !          18538:             "\x02\x0a\x00\xff\x01\x01\x03\x2b\x03\x0a\x00\x01\x03"
        !          18539:             "\x2a\x03\x0b\x00\xff\x01\x01\x30\x0b\x00\x01\x2f\x0c"
        !          18540:             "\xff\x01\x30\x0c\x2f\x0d" }  },
        !          18541:       /* --- pixel bitmap for cmmi600 char#5 \Pi --- */
        !          18542:       {   5,70736,                      /* character number, location */
        !          18543:          57, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          18544:           { 71,   57, 3,453, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          18545:             "\xf1\xde\x0e\x0e\x0e\x02\xde\x0e\x0e\x0e\x01\xe0\x88"
        !          18546:             "\xe0\xb8\x90\xf1\xe0\x77\xe0\xc7\xa0\xe0\x68\xe0\xb8"
        !          18547:             "\xe0\xe0\x28\xe0\xb7\xb0\xf1\xe0\x67\xe0\xc7\xb0\xe0"
        !          18548:             "\x58\xe0\xb8\xe0\xe0\x28\xe0\xb7\xc0\xf1\xe0\x57\xe0"
        !          18549:             "\xc7\xc0\xe0\x48\xe0\xb8\xe0\xe0\x28\xe0\xb7\xd0\xf1"
        !          18550:             "\xe0\x47\xe0\xc7\xd0\xe0\x38\xe0\xb8\xe0\xe0\x28\xe0"
        !          18551:             "\xb7\xe0\xf1\xe0\x37\xe0\xc7\xe0\xe0\x28\xe0\xb8\xe0"
        !          18552:             "\xe0\x28\xe0\xb7\xe0\x10\xf1\xe0\x27\xe0\xc7\xe0\x10"
        !          18553:             "\xe0\x18\xe0\xb8\xe0\xe0\x28\xe0\xb7\xe0\x20\xf1\xe0"
        !          18554:             "\x17\xe0\xc7\xe0\x20\xe8\xe0\xb8\xe0\xe0\x28\xe0\xb7"
        !          18555:             "\xe0\x30\xf1\xe7\xe0\xc7\xe0\x30\xd8\xe0\xb8\xe0\xe0"
        !          18556:             "\x28\xe0\xb7\xe0\x40\xf1\xd7\xe0\xc7\xe0\x40\xc8\xe0"
        !          18557:             "\xb8\xe0\xe0\x28\xe0\xb7\xe0\x50\xf1\xc7\xe0\xc7\xe0"
        !          18558:             "\x50\xb8\xe0\xb8\xe0\xe0\x28\xe0\xb7\xe0\x60\xf1\xb7"
        !          18559:             "\xe0\xc7\xe0\x60\xa8\xe0\xb8\xe0\xe0\x28\xe0\xb7\xe0"
        !          18560:             "\x70\xf1\xa7\xe0\xc7\xe0\x70\x98\xe0\xb8\xe0\xe0\x28"
        !          18561:             "\xe0\xb7\xe0\xe0\x37\xe0\xc7\xe0\xe0\x29\xe0\xa9\xe0"
        !          18562:             "\x7f\x2e\x0a\x9e\x0a\xe7" }  },
        !          18563:       /* --- pixel bitmap for cmmi600 char#6 \Sigma --- */
        !          18564:       {   6,72079,                      /* character number, location */
        !          18565:          57, 5,    0, 5,      /* topleft row,col, and botleft row,col */
        !          18566:           { 62,   57, 2,185, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          18567:             "\xff\x02\x0e\x30\x0e\x09\x1b\x0c\x0f\x08\x1f\x08\x0f"
        !          18568:             "\x09\x20\x05\x11\x08\x20\x05\x01\x00\xff\x01\x10\x09"
        !          18569:             "\x20\x04\x01\x00\x11\x08\x21\x03\x12\x09\x20\x03\x13"
        !          18570:             "\x08\x20\x03\x13\x09\x1f\x03\x14\x08\x1f\x02\x15\x09"
        !          18571:             "\x1e\x02\x16\x08\x1e\x02\x02\x00\xff\x01\x14\x09\x1d"
        !          18572:             "\x02\x02\x00\x15\x08\x1d\x02\x17\x09\x36\x08\x36\x09"
        !          18573:             "\x36\x08\x36\x09\x36\x08\x1e\x00\xff\x01\x18\x09\x1d"
        !          18574:             "\x00\x19\x08\x36\x09\x36\x07\x37\x06\x39\x04\x3a\x03"
        !          18575:             "\x39\x04\x39\x03\x3a\x03\x3a\x03\x3a\x03\x1d\x02\x1b"
        !          18576:             "\x03\x1d\x03\x1a\x03\x1e\x02\x19\x04\x1f\x02\x18\x03"
        !          18577:             "\x20\x03\x17\x03\x21\x02\x17\x03\x21\x03\x16\x03\x22"
        !          18578:             "\x03\x15\x03\x22\x03\x15\x03\x22\x04\x13\x04\x22\x04"
        !          18579:             "\x13\x03\x23\x05\x12\x03\x23\x06\x11\x03\x23\x06\x11"
        !          18580:             "\x03\x22\x08\x10\x03\x1e\x0d\x0e\x2f\x0e\x30\x0d\x31"
        !          18581:             "\x0d\x30\x0e" }  },
        !          18582:       /* --- pixel bitmap for cmmi600 char#7 \Upsilon --- */
        !          18583:       {   7,73269,                      /* character number, location */
        !          18584:          59, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          18585:           { 56,   59, 3,385, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          18586:             "\xb7\xe0\xc7\xeb\xe0\x8b\xae\x01\xe0\x4e\x8e\x03\xe0"
        !          18587:             "\x1e\x03\x6e\x04\xee\x04\x5e\x06\xce\x05\x55\x78\xb8"
        !          18588:             "\x76\x34\xb7\x97\xb4\x24\xd6\x86\xe3\x23\xe0\x15\x76"
        !          18589:             "\xe0\x13\x13\xe0\x26\x65\xe0\x23\x12\xe0\x45\x55\xe0"
        !          18590:             "\x42\x12\xe0\x45\x45\xe0\x54\xe0\x55\x44\xe0\x52\xe0"
        !          18591:             "\x85\x35\xe0\xe0\xe0\x24\x34\xe0\xe0\xe0\x34\x25\xe0"
        !          18592:             "\xe0\xe0\x34\x24\xe0\xa0\xf1\xe0\x84\x14\xe0\xb0\xe0"
        !          18593:             "\x89\xe0\xb0\xf1\xe0\x88\xe0\xc0\xf2\xe0\x78\xe0\xd0"
        !          18594:             "\xf2\xe0\x77\xe0\xe0\xf2\xe0\x67\xe0\xe0\x10\xf1\xe0"
        !          18595:             "\x58\xe0\xe0\x10\xf1\xe0\x57\xe0\xe0\x20\xf1\xe0\x48"
        !          18596:             "\xe0\xe0\x20\xf1\xe0\x47\xe0\xe0\x30\xf1\xe0\x38\xe0"
        !          18597:             "\xe0\x30\xf1\xe0\x37\xe0\xe0\x40\xf1\xe0\x28\xe0\xe0"
        !          18598:             "\x40\xf1\xe0\x27\xe0\xe0\x50\xf1\xe0\x18\xe0\xe0\x50"
        !          18599:             "\xf1\xe0\x17\xe0\xe0\x60\xf1\xe8\xe0\xe0\x60\xe7\xe0"
        !          18600:             "\xe0\xe0\x5a\xe0\xe0\x60\xf2\x3e\x0e\xe0\xb0" }  },
        !          18601:       /* --- pixel bitmap for cmmi600 char#8 \Phi --- */
        !          18602:       {   8,74463,                      /* character number, location */
        !          18603:          57, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          18604:           { 50,   57, 3,337, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          18605:             "\xf1\xe0\x4e\x0e\x01\x30\xe0\x4e\x0e\xe0\xe0\x3a\xe0"
        !          18606:             "\xe0\xd8\xe0\xe0\xe7\xe0\x10\xf1\xe0\xd8\xe0\x10\xf1"
        !          18607:             "\xe0\xd7\xe0\x20\xf1\xe0\xc8\xe0\x20\xe0\x9c\xe0\xe0"
        !          18608:             "\x5e\x07\xe0\xc8\x28\x18\xe0\x77\x58\x47\xe0\x36\x87"
        !          18609:             "\x76\xe7\x97\x87\xb6\xa8\x97\x87\xb8\xa6\x77\xc7\xb7"
        !          18610:             "\x57\xd7\xb8\x38\xc8\xc7\x37\xd8\xc7\x28\xd7\xd7\x18"
        !          18611:             "\xe7\xd7\x18\xd8\xde\x01\xe8\xc8\x0f\x18\xe7\xd8\x08"
        !          18612:             "\xd8\xd7\x18\xd8\xc8\x18\xd7\xd7\x28\xd7\xc8\x28\xc8"
        !          18613:             "\xc7\x47\xc8\xb7\x57\xc7\xb7\x76\xc7\xa7\x96\xa8\x97"
        !          18614:             "\xb6\x98\x86\xe6\x87\x76\xe0\x37\x67\x56\xe0\x78\x28"
        !          18615:             "\x18\xe0\xce\x07\xe0\xe0\x5c\xe0\xe0\xd7\xe0\xb0\xf1"
        !          18616:             "\xe0\x38\xe0\xb0\xf1\xe0\x37\xe0\xc0\xf1\xe0\x28\xe0"
        !          18617:             "\xc0\xe0\x27\xe0\xe0\xe9\xe0\xc0\xf2\x5e\x0e\xe0\x30" }  },
        !          18618:       /* --- pixel bitmap for cmmi600 char#9 \Psi --- */
        !          18619:       {   9,75718,                      /* character number, location */
        !          18620:          57, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          18621:           { 55,   57, 3,365, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          18622:             "\xf1\xe0\x2e\x0e\x01\xa0\xe0\x2e\x0e\xe0\xe0\x8a\xe0"
        !          18623:             "\xe0\xe0\x48\xe0\xe0\xe0\x57\xe0\x80\xf1\xe0\xb8\xe0"
        !          18624:             "\x80\xf1\xe0\xb7\xe0\x90\xe0\xa8\xe0\x98\xe0\x28\xe0"
        !          18625:             "\x1e\x04\xe7\xea\x37\xe7\xd8\x67\xd8\xd7\x78\xc8\xc8"
        !          18626:             "\x87\xc7\xc8\x88\xc7\xc7\x97\xc8\xc7\x97\xc8\xb8\x60"
        !          18627:             "\xf1\x37\xc7\xc7\x70\x37\xb8\xb8\x98\xb8\xb7\x80\xf1"
        !          18628:             "\x27\xc7\xc7\x80\x27\xb8\xb8\xa7\xb8\xb7\xb7\xb7\xc7"
        !          18629:             "\xb6\xc7\xb7\xc6\xb8\xb7\xc6\xb8\xa7\xd6\xb7\xb7\xd7"
        !          18630:             "\xa7\xa7\xc0\xf1\x27\x98\x97\xd0\x36\x97\x97\xe0\x37"
        !          18631:             "\x87\x87\xe0\x56\x78\x77\xe0\x76\x68\x66\xe0\xa6\x57"
        !          18632:             "\x57\xe0\xc6\x47\x37\xe0\xe0\x2e\x09\xe0\xe0\x6e\x04"
        !          18633:             "\xe0\xe0\xcb\xe0\xe0\xe0\x47\xe0\xe0\x40\xf1\xe0\x18"
        !          18634:             "\xe0\xe0\x40\xf1\xe0\x17\xe0\xe0\x50\xf1\xe8\xe0\xe0"
        !          18635:             "\x50\xe7\xe0\xe0\xe0\x4a\xe0\xe0\x50\xf2\x3e\x0e\xe0"
        !          18636:             "\xa0" }  },
        !          18637:       /* --- pixel bitmap for cmmi600 char#10 \Omega --- */
        !          18638:       {  10,77109,                      /* character number, location */
        !          18639:          59, 7,    0, 7,      /* topleft row,col, and botleft row,col */
        !          18640:           { 58,   59, 3,475, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          18641:             "\xe0\xe0\x4b\xe0\xe0\xe0\x1e\x04\xe0\xe0\x98\x97\xe0"
        !          18642:             "\xe0\x47\xe6\xe0\xe0\x17\xe0\x46\xe0\xb7\xe0\x76\xe0"
        !          18643:             "\x97\xe0\x96\xe0\x77\xe0\xa7\xe0\x48\xe0\xc7\xe0\x28"
        !          18644:             "\xe0\xd7\xe0\x18\xe0\xe0\x17\xd8\xe0\xe0\x27\xd7\xe0"
        !          18645:             "\xe0\x37\xc8\xe0\xe0\x38\xf1\xa8\xe0\xe0\x48\xf1\x98"
        !          18646:             "\xe0\xe0\x58\xf1\x88\xe0\xe0\x68\x88\xe0\xe0\x59\x79"
        !          18647:             "\xe0\xe0\x59\xf1\x78\xe0\xe0\x68\x10\x78\xe0\xe0\x59"
        !          18648:             "\x88\xe0\xe0\x58\x98\xe0\xe0\x49\x98\xe0\xe0\x48\x30"
        !          18649:             "\xf1\x78\xe0\xe0\x38\x40\x78\xe0\xe0\x28\xd7\xe0\xe0"
        !          18650:             "\x27\xe7\xe0\xe0\x18\xe7\xe0\xe0\x17\xe0\x17\xe0\xe7"
        !          18651:             "\xe0\x36\xe0\xe6\xe0\x46\xe0\xd6\xe0\x56\xe0\xc7\xe0"
        !          18652:             "\x65\xe0\xc6\xe0\x75\xe0\xb6\xe0\x95\xe0\x96\xe0\xa5"
        !          18653:             "\xe0\x95\xe0\xb5\xe0\x85\xe0\xd4\xe0\x84\xe0\xe4\xe0"
        !          18654:             "\x74\xe0\xe0\x14\xe0\x65\xe0\x32\xb3\xe0\x64\xa2\x62"
        !          18655:             "\xb3\xe0\x54\xa3\x62\xb3\xe0\x53\xb2\x72\xb3\xe0\x44"
        !          18656:             "\xa3\x72\xc2\xe0\x43\xb2\x82\xc2\xe0\x33\xb3\x82\xc2"
        !          18657:             "\xe0\x33\xb2\x93\xb2\xe0\x32\xb3\x9f\x1e\x02\xe0\x2e"
        !          18658:             "\x02\xae\x02\xe0\x2e\x01\xbe\x01\xe0\x2e\x02\xbe\x01"
        !          18659:             "\xe0\x2e\x01\xce" }  },
        !          18660:       /* --- pixel bitmap for cmmi600 char#11 \alpha --- */
        !          18661:       {  11,78371,                      /* character number, location */
        !          18662:          37, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          18663:           { 47,   38, 3,263, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          18664:             "\xe0\x58\xe0\xe0\x8d\xe0\xe0\x46\x65\xe0\xe5\xa5\xe0"
        !          18665:             "\xb6\xc5\xc2\x96\xe5\xb2\x86\xe0\x16\x93\x76\xe0\x35"
        !          18666:             "\x92\x76\xe0\x46\x82\x66\xe0\x56\x73\x57\xe0\x56\x72"
        !          18667:             "\x66\xe0\x76\x62\x57\xe0\x76\x53\x47\xe0\x86\x52\x57"
        !          18668:             "\xe0\x86\x43\x48\xe0\x86\x42\x57\xe0\x96\x33\x57\xe0"
        !          18669:             "\x96\x32\x67\xe0\x96\x23\x58\xe0\x96\x22\x67\xe0\xa6"
        !          18670:             "\x13\x67\xe0\xa9\x7f\x17\xe0\xa8\x87\xe0\xa7\x9f\x26"
        !          18671:             "\xe0\xb6\xa0\x15\xe0\xb6\xb6\xe0\x97\xb6\xe0\x88\xc5"
        !          18672:             "\xe0\x64\x15\x72\x36\xe0\x43\x36\x62\x46\xe0\x14\x46"
        !          18673:             "\x53\x55\xd4\x75\x52\x85\x85\xa5\x24\xae\xd8\xe9\xe0"
        !          18674:             "\x45\x56" }  },
        !          18675:       /* --- pixel bitmap for cmmi600 char#12 \beta --- */
        !          18676:       {  12,79572,                      /* character number, location */
        !          18677:          59, 2,  -16, 2,      /* topleft row,col, and botleft row,col */
        !          18678:           { 46,   75, 3,487, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          18679:             "\xe0\xe0\x27\xe0\xe0\x8d\xe0\xe0\x44\x65\xe0\xe0\x14"
        !          18680:             "\xa5\xe0\xc3\xd5\xe0\xa3\xe0\x14\xe0\x93\xe0\x25\xe0"
        !          18681:             "\x73\xe0\x35\xe0\x63\xe0\x54\xe0\x62\xe0\x65\xe0\x43"
        !          18682:             "\xe0\x65\xe0\x33\xe0\x66\xe0\x32\xe0\x76\xe0\x23\xe0"
        !          18683:             "\x75\xe0\x32\xe0\x85\xe0\x23\xe0\x76\xe0\x22\xe0\x86"
        !          18684:             "\xe0\x22\xe0\x85\xe0\x23\xe0\x76\xe0\x22\xe0\x85\xe0"
        !          18685:             "\x32\xe0\x75\xe0\x33\xe0\x65\xe0\x42\xe0\x65\xe0\x52"
        !          18686:             "\x79\x35\xe0\x53\x6e\x03\xe0\x62\x63\x76\xe0\x82\x6e"
        !          18687:             "\x03\xe0\x72\x89\x25\xe0\x53\xe0\x65\x70\xf1\xb2\xe0"
        !          18688:             "\x85\x60\xb2\xe0\x86\xe0\x13\xe0\x95\x50\xf2\xa2\xe0"
        !          18689:             "\xa5\x50\x93\xe0\xa6\x40\xf2\x92\xe0\xb6\x40\x83\xe0"
        !          18690:             "\xa7\x40\xf2\x82\xe0\xb6\x50\x73\xe0\xa7\xc3\xe0\xa6"
        !          18691:             "\xd2\xe0\xb6\xd2\xe0\xa7\xc3\xe0\xa6\x70\xf1\x64\xe0"
        !          18692:             "\x86\x80\x64\xe0\x76\xe5\xe0\x66\xe0\x12\x13\xe0\x46"
        !          18693:             "\xe0\x22\x23\xe0\x26\xe0\x32\x32\xe0\x15\xe0\x43\x34"
        !          18694:             "\xb6\xe0\x52\x63\x77\xe0\x72\x7e\xe0\x92\x98\xe0\xc3"
        !          18695:             "\xe0\xe0\xc0\xf2\x32\xe0\xe0\xd0\x23\xe0\xe0\xd0\xf2"
        !          18696:             "\x22\xe0\xe0\xe0\x13\xe0\xe0\xe0\xf2\x12\xe0\xe0\xe0"
        !          18697:             "\x13\xe0\xe0\xe0\x1f\x12\xe0\xe0\xe0\x2e" }  },
        !          18698:       /* --- pixel bitmap for cmmi600 char#13 \gamma --- */
        !          18699:       {  13,80727,                      /* character number, location */
        !          18700:          37, 1,  -18, 1,      /* topleft row,col, and botleft row,col */
        !          18701:           { 44,   55, 3,289, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          18702:             "\xd7\xe0\xe0\x7b\xe0\x62\x9e\x01\xe0\x33\x8e\x03\xe0"
        !          18703:             "\x22\x8e\x05\xe3\x7e\x06\xe2\x78\x68\xc3\x65\xd5\xc2"
        !          18704:             "\x65\xe0\x15\xb2\x63\xe0\x44\xa3\x53\xe0\x64\x92\x63"
        !          18705:             "\xe0\x73\x83\x53\xe0\x92\x82\x62\xe0\xa3\x63\x62\xe0"
        !          18706:             "\xa3\x62\x63\xe0\xb2\x62\xe0\xe0\x62\x53\xe0\xe0\x63"
        !          18707:             "\x42\xe0\xe0\x82\x33\x70\xf1\xe0\xe0\x12\x32\x80\xe0"
        !          18708:             "\xe0\x12\x23\xe0\xe0\x92\x22\xe0\xe0\xa2\x13\x90\xf1"
        !          18709:             "\xe0\xe0\x12\x12\xa0\xe0\xe0\x15\xa0\xf2\xe0\xe0\x14"
        !          18710:             "\xb0\xf2\xe0\xe0\x13\xc0\xf1\xe0\xe0\x12\xd0\xf2\xe0"
        !          18711:             "\xe3\xd0\xe0\xe2\xe0\xf3\xe0\xd3\xe0\xf3\xe0\xc3\xe0"
        !          18712:             "\x10\xf3\xe0\xb3\xe0\x20\xf2\xe0\xa3\xe0\x30\xe0\xa2"
        !          18713:             "\xe0\x40" }  },
        !          18714:       /* --- pixel bitmap for cmmi600 char#14 \delta --- */
        !          18715:       {  14,81816,                      /* character number, location */
        !          18716:          59, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          18717:           { 35,   60, 3,287, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          18718:             "\xe0\x5b\xe0\x8e\x03\xe0\x33\x4c\xe0\x13\x89\xe0\x12"
        !          18719:             "\xa8\xe3\xc5\x10\xf2\xe3\xe0\x40\xf1\xe4\xe0\x30\xf1"
        !          18720:             "\xe5\xe0\x20\xe0\x15\xe0\x10\xf1\xe0\x16\xe0\xe0\x26"
        !          18721:             "\xe0\xe0\x17\xc0\xf1\xe0\x37\xb0\xe0\x47\xe0\xe8\xe0"
        !          18722:             "\xe8\xe0\xab\xe0\x85\x18\xe0\x55\x38\xe0\x36\x58\xe0"
        !          18723:             "\x15\x78\xe5\x97\xd5\xa8\xb5\xc7\xa6\xc7\x50\xf1\x46"
        !          18724:             "\xd7\x50\x36\xe0\x16\x77\xe0\x16\x76\xe0\x26\x67\xe0"
        !          18725:             "\x26\x50\xf1\x16\xe0\x36\x57\xe0\x36\x57\xe0\x35\x6f"
        !          18726:             "\x26\xe0\x36\x6f\x16\xe0\x35\x76\xe0\x26\x7f\x16\xe0"
        !          18727:             "\x25\x86\xe0\x15\xa5\xe0\x15\xa5\xe5\xc5\xd5\xc5\xc5"
        !          18728:             "\xe5\xa5\xe0\x25\x85\xe0\x55\x55\xe0\x7c\xe0\xc7\xe0"
        !          18729:             "\x40" }  },
        !          18730:       /* --- pixel bitmap for cmmi600 char#15 \epsilon --- */
        !          18731:       {  15,82850,                      /* character number, location */
        !          18732:          36, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          18733:           { 29,   37, 3,133, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          18734:             "\xe0\x4a\xe0\x2e\xde\x01\xc8\xe0\x57\xe0\x77\xe0\x76"
        !          18735:             "\xe0\x86\xe0\x87\xe0\x77\xe0\x40\xf1\x37\xe0\x50\xf1"
        !          18736:             "\x27\xe0\x60\x1e\x09\x50\xf1\x1e\x0a\x40\x17\xe0\x78"
        !          18737:             "\xe0\x7f\x47\xe0\x80\xf3\x16\xe0\x80\xf1\x26\xe0\x70"
        !          18738:             "\x35\xe0\xb5\xe0\xb5\xe0\x12\x85\xc4\x96\x75\xde\xe0"
        !          18739:             "\x48\x98" }  },
        !          18740:       /* --- pixel bitmap for cmmi600 char#16 \zeta --- */
        !          18741:       {  16,83814,                      /* character number, location */
        !          18742:          58, 4,  -17, 4,      /* topleft row,col, and botleft row,col */
        !          18743:           { 36,   75, 3,335, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          18744:             "\xf5\xe0\x72\xd0\xe0\x73\x1a\xe0\x9e\xe0\x74\x92\xe0"
        !          18745:             "\x5e\x03\xe0\x44\x39\xe0\x54\xe0\xe0\x33\xe0\xe0\x43"
        !          18746:             "\xe0\xe0\x43\xe0\xe0\x43\xe0\xe0\x44\xe0\xe0\x34\xe0"
        !          18747:             "\xe0\x34\xe0\xe0\x34\xe0\xe0\x43\xe0\xe0\x44\xe0\xa0"
        !          18748:             "\xf1\x74\xe0\xb0\x64\xe0\xc0\xf1\x54\xe0\xd0\x45\xe0"
        !          18749:             "\xd0\xf1\x44\xe0\xe0\xf1\x34\xe0\xe0\x10\x25\xe0\xe0"
        !          18750:             "\x10\xf2\x24\xe0\xe0\x20\x15\xe0\xe0\x20\xf3\x14\xe0"
        !          18751:             "\xe0\x3f\x45\xe0\xe0\x36\xe0\xe0\x35\xe0\xe0\x20\xf1"
        !          18752:             "\x16\xe0\xe0\x10\x17\xe0\xe0\x27\xe0\xe0\x18\xe0\xe0"
        !          18753:             "\x19\xe0\xdc\xe0\xbe\xe0\x9e\x02\xe0\x8e\x03\xe0\x7e"
        !          18754:             "\x03\xe0\x7e\x02\xe0\x9e\xe0\xbb\xe0\xe8\xe0\xe0\x27"
        !          18755:             "\x70\xf1\xe0\x96\x70\xe0\xa5\x70\xf2\xe0\xa4\x80\xb2"
        !          18756:             "\xa4\xe0\x64\x74\xe0\x93\x54\xe0\xba\xe0\xe6\xe4" }  },
        !          18757:       /* --- pixel bitmap for cmmi600 char#17 \eta --- */
        !          18758:       {  17,84849,                      /* character number, location */
        !          18759:          37, 2,  -18, 2,      /* topleft row,col, and botleft row,col */
        !          18760:           { 39,   55, 3,301, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          18761:             "\x75\xe7\xb9\xac\x73\x35\x74\x65\x53\x55\x44\x95\x42"
        !          18762:             "\x65\x33\xb6\x23\x66\x13\xc6\x22\x79\xe5\x13\x78\xe0"
        !          18763:             "\x15\xf1\x12\x87\xe0\x25\x12\x86\xe0\x29\x77\xe0\x26"
        !          18764:             "\x0f\x12\x86\xe0\x36\xa6\xe0\x27\x97\xe0\x27\xf1\x96"
        !          18765:             "\xe0\x36\x10\x96\xe0\x27\x97\xe0\x27\x10\xf1\x86\xe0"
        !          18766:             "\x36\x20\x86\xe0\x27\x97\xe0\x27\x20\xf1\x76\xe0\x36"
        !          18767:             "\x30\x76\xe0\x27\x97\xe0\x27\x30\xf1\x66\xe0\x36\x40"
        !          18768:             "\x66\xe0\x27\x97\xe0\x27\x40\xf1\x56\xe0\x36\x50\x56"
        !          18769:             "\xe0\x27\x97\xe0\x27\x96\xe0\x36\xc3\xe0\x46\x60\xf1"
        !          18770:             "\xe0\xc7\x60\xf1\xe0\xc6\x70\xf1\xe0\xb7\x70\xf1\xe0"
        !          18771:             "\xb6\x80\xf1\xe0\xa7\x80\xf1\xe0\xa6\x90\xf1\xe0\x97"
        !          18772:             "\x90\xf1\xe0\x96\xa0\xe0\xa3\xc0" }  },
        !          18773:       /* --- pixel bitmap for cmmi600 char#18 \theta --- */
        !          18774:       {  18,85773,                      /* character number, location */
        !          18775:          59, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          18776:           { 35,   60, 3,289, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          18777:             "\xe0\x85\xe0\xda\xe0\x95\x45\xe0\x65\x64\xe0\x55\x84"
        !          18778:             "\xe0\x35\x95\xe0\x15\xa5\xe5\xc5\xc6\xc5\xb6\xd5\xb5"
        !          18779:             "\xe5\xa6\xe6\xf1\x86\xe0\x16\xf1\x76\xe0\x26\x67\xe0"
        !          18780:             "\x26\x66\xe0\x36\x57\xe0\x36\x56\xe0\x37\xf1\x47\xe0"
        !          18781:             "\x37\xf1\x37\xe0\x47\x37\xe0\x37\x38\xe0\x37\x10\xf1"
        !          18782:             "\x27\xe0\x47\x10\x2e\x0e\x04\x10\xf2\x1e\x0e\x04\x20"
        !          18783:             "\x17\xe0\x38\x28\xe0\x37\x3f\x17\xe0\x47\x3f\x17\xe0"
        !          18784:             "\x37\x46\xe0\x47\x4f\x16\xe0\x37\x56\xe0\x36\x66\xe0"
        !          18785:             "\x27\x6f\x16\xe0\x26\x7f\x15\xe0\x26\x8f\x15\xe0\x16"
        !          18786:             "\x95\xe6\xa6\xc6\xc5\xc5\xd5\xb6\xd5\xa6\xe0\x14\xa5"
        !          18787:             "\xe0\x25\x85\xe0\x44\x74\xe0\x74\x45\xe0\x9a\xe0\xd6"
        !          18788:             "\xe0\x81" }  },
        !          18789:       /* --- pixel bitmap for cmmi600 char#19 \iota --- */
        !          18790:       {  19,86610,                      /* character number, location */
        !          18791:          37, 5,   -1, 5,      /* topleft row,col, and botleft row,col */
        !          18792:           { 22,   38, 3,119, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          18793:             "\x93\xe0\x46\x80\xf1\x77\x80\xf1\x76\x90\x67\x90\xf2"
        !          18794:             "\x66\xa0\x57\xa0\xf2\x56\xb0\x47\xb0\xf1\x46\xc0\x37"
        !          18795:             "\xc0\xf2\x36\xd0\x27\xd0\xf1\x26\xe0\x17\xc2\x16\xd9"
        !          18796:             "\xc9\xd2\x16\xc3\x16\xc2\x25\xc3\x25\xb3\x35\xa3\x45"
        !          18797:             "\x93\x55\x74\x74\x54\xab\xd6\xc7" }  },
        !          18798:       /* --- pixel bitmap for cmmi600 char#20 \kappa --- */
        !          18799:       {  20,87616,                      /* character number, location */
        !          18800:          37, 4,   -1, 4,      /* topleft row,col, and botleft row,col */
        !          18801:           { 42,   38, 3,241, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          18802:             "\xa3\xe0\xe0\xa6\xe0\x45\xc7\xe0\x19\xb7\xea\xb6\xd4"
        !          18803:             "\x17\xb6\xb4\x37\xa7\xa3\x56\xb7\x93\x74\xc6\x93\xe0"
        !          18804:             "\xa6\x74\xe0\xa7\x63\xe0\xc7\x53\xe0\xd6\x53\xe0\xe6"
        !          18805:             "\x34\xe0\xe7\x23\xe0\xe0\x2b\xe0\xe0\x3e\x01\xe0\xde"
        !          18806:             "\x05\xe0\x87\x5b\xe0\x57\x98\xe0\x46\xc7\xe0\x36\xd7"
        !          18807:             "\xc0\xf1\x37\xe7\xb0\xf1\x36\xe0\x26\x92\x27\xe0\x26"
        !          18808:             "\x83\x27\xe0\x17\x82\x36\xe0\x26\x92\x36\xe0\x26\x83"
        !          18809:             "\x10\xf1\x17\xe0\x26\x82\x20\x16\xe0\x45\x73\x36\xe0"
        !          18810:             "\x45\x63\x37\xe0\x45\x62\x47\xe0\x55\x43\x46\xe0\x89"
        !          18811:             "\x73\xe0\xb5\x76" }  },
        !          18812:       /* --- pixel bitmap for cmmi600 char#21 \lambda --- */
        !          18813:       {  21,88605,                      /* character number, location */
        !          18814:          58, 4,   -1, 4,      /* topleft row,col, and botleft row,col */
        !          18815:           { 41,   59, 3,276, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          18816:             "\xa6\xe0\xe0\x78\xe0\xe0\x87\xe0\xe0\x77\xe0\x60\xf2"
        !          18817:             "\xe0\x17\xe0\x50\xf1\xe0\x27\xe0\x40\xf2\xe0\x37\xe0"
        !          18818:             "\x30\xf2\xe0\x47\xe0\x20\xf2\xe0\x57\xe0\x10\xf2\xe0"
        !          18819:             "\x67\xe0\xf1\xe0\x77\xd0\xf2\xe0\x87\xc0\xf2\xe0\x97"
        !          18820:             "\xb0\xf2\xe0\xa7\xa0\xe0\x99\xe0\xe0\x3a\xe0\xe0\x2b"
        !          18821:             "\xe0\xe0\x14\x27\xe0\xd4\x37\xe0\xc4\x48\xe0\xa5\x57"
        !          18822:             "\xe0\x95\x67\xe0\x85\x87\xe0\x65\x97\xe0\x55\xa7\xe0"
        !          18823:             "\x45\xc7\xe0\x26\xc7\xe0\x16\xd7\xe6\xe0\x17\xc6\xe0"
        !          18824:             "\x27\xb6\xe0\x37\xa6\xe0\x57\x87\xe0\x57\x77\xe0\x68"
        !          18825:             "\x57\xe0\x87\x47\xe0\x97\x37\xe0\xb7\x17\xe0\xc7\x17"
        !          18826:             "\xe0\xce\xe0\xe7\x14\xe0\xe0\x26" }  },
        !          18827:       /* --- pixel bitmap for cmmi600 char#22 \mu --- */
        !          18828:       {  22,89761,                      /* character number, location */
        !          18829:          37, 2,  -18, 2,      /* topleft row,col, and botleft row,col */
        !          18830:           { 46,   55, 3,313, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          18831:             "\xe3\xe0\xe0\xe6\xe0\x43\xe0\x47\xe0\x35\xe0\x37\xe0"
        !          18832:             "\x26\x50\xf1\xc6\xe0\x36\x50\xf1\xb7\xe0\x27\x50\xf1"
        !          18833:             "\xb6\xe0\x36\x60\xf1\xa7\xe0\x27\x60\xf1\xa6\xe0\x36"
        !          18834:             "\x70\xf1\x97\xe0\x27\x70\xf1\x96\xe0\x36\x80\xf1\x87"
        !          18835:             "\xe0\x27\x80\xf1\x86\xe0\x36\x90\xf1\x77\xe0\x27\x90"
        !          18836:             "\xf1\x76\xe0\x36\x82\x67\xe0\x27\x73\x67\xe0\x27\x72"
        !          18837:             "\x77\xe0\x26\x82\x77\xe0\x17\x82\x68\xe0\x17\x73\x68"
        !          18838:             "\xe8\x72\x78\xd9\x63\x79\xb3\x25\x62\x7b\x93\x35\x53"
        !          18839:             "\x7c\x64\x55\x33\x86\x2c\x89\x96\x48\xc5\x70\xf1\x37"
        !          18840:             "\xe0\xe0\x80\xf1\x36\xe0\xe0\x90\xf1\x27\xe0\xe0\x90"
        !          18841:             "\xf1\x26\xe0\xe0\xa0\xf1\x17\xe0\xe0\xa0\xf1\x16\xe0"
        !          18842:             "\xe0\xbf\x17\xe0\xe0\xbf\x16\xe0\xe0\xc0\x13\xe0\xe0"
        !          18843:             "\xe4" }  },
        !          18844:       /* --- pixel bitmap for cmmi600 char#23 \nu --- */
        !          18845:       {  23,90716,                      /* character number, location */
        !          18846:          37, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          18847:           { 40,   37, 3,213, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          18848:             "\x87\xe0\x63\x4d\xe0\x56\xf1\x2d\xe0\x47\x77\xe0\x56"
        !          18849:             "\x96\xe0\x56\x87\xe0\x47\x87\xe0\x46\x96\xe0\x56\x96"
        !          18850:             "\xe0\x46\x97\xe0\x46\x97\xe0\x37\x96\xe0\x46\xa6\xe0"
        !          18851:             "\x36\xa7\xe0\x36\xa7\xe0\x26\xb6\xe0\x36\xb6\xe0\x26"
        !          18852:             "\xb7\xe0\x16\xc7\xe6\xd6\xe0\x16\xd6\xe6\xd7\xd6\xe7"
        !          18853:             "\xc6\xe0\x16\xc6\xe0\x26\xb6\xe0\x27\xa6\xe0\x37\x95"
        !          18854:             "\xe0\x56\x95\xe0\x66\x85\xe0\x67\x65\xe0\x87\x45\xe0"
        !          18855:             "\xa6\x44\xe0\xc6\x15\xe0\xdb\xe0\xe0\x19\xe0\xe0\x35"
        !          18856:             "\xe0\xe0\x75" }  },
        !          18857:       /* --- pixel bitmap for cmmi600 char#24 \xi --- */
        !          18858:       {  24,91940,                      /* character number, location */
        !          18859:          58, 2,  -17, 2,      /* topleft row,col, and botleft row,col */
        !          18860:           { 35,   75, 3,327, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          18861:             "\xf5\xe0\x72\xc0\xe0\x7d\xe0\x7e\x01\xe0\x47\x82\xe0"
        !          18862:             "\x26\x1c\xe7\x48\xe0\x17\xe0\xd7\xe0\xd7\xe0\xd7\xe0"
        !          18863:             "\xd8\xe0\xd7\xe0\xd8\xe0\xd7\xe0\x60\xf1\x78\xe0\x60"
        !          18864:             "\xf4\x77\xe0\x70\x86\xe0\xe0\x17\xe0\xe0\x16\xe0\xe0"
        !          18865:             "\x26\x2a\xe0\x4e\x05\xe0\x36\x93\xe0\x2e\x04\xe0\x24"
        !          18866:             "\x3a\xe0\x24\xe0\xe0\x24\xe0\xe0\x24\xe0\xb0\xf1\x54"
        !          18867:             "\xe0\xc0\x44\xe0\xd0\xf1\x34\xe0\xe0\xf1\x24\xe0\xe0"
        !          18868:             "\x10\x15\xe0\xe0\x10\xf2\x14\xe0\xe0\x25\xe0\xe0\x2f"
        !          18869:             "\x16\xe0\xe0\x10\x16\xe0\xe0\x17\xe0\xe8\xe0\xea\xe0"
        !          18870:             "\xbc\xe0\xae\xe0\x8e\x01\xe0\x8e\x02\xe0\x7e\x03\xe0"
        !          18871:             "\x6e\x03\xe0\x6e\x02\xe0\x8e\xe0\xac\xe0\xba\xe0\xe7"
        !          18872:             "\xe0\xe0\x16\x50\xf2\xe0\xb5\x50\xc2\xb4\xe0\x44\x84"
        !          18873:             "\xe0\x74\x54\xe0\x9b\xe0\xd6\xb0" }  },
        !          18874:       /* --- pixel bitmap for cmmi600 char#25 \pi --- */
        !          18875:       {  25,93004,                      /* character number, location */
        !          18876:          36, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          18877:           { 45,   37, 3,213, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          18878:             "\xae\x0e\x06\x9e\x0e\x09\x7e\x0e\x0a\x6e\x0e\x0b\x5e"
        !          18879:             "\x0e\x0b\x55\x92\x92\xe0\x34\xa3\x92\xe0\x24\xb2\xa2"
        !          18880:             "\xe0\x23\xc2\x93\xe0\x13\xc3\x93\xe3\xd3\x93\xe2\xe2"
        !          18881:             "\xa2\xe0\x10\xf2\xe0\x13\x93\xe0\x10\xf1\xe3\xa3\xe0"
        !          18882:             "\x10\xd4\xa3\xe0\xe4\x94\xe0\xe3\xa4\xe0\x10\xf1\xc4"
        !          18883:             "\xa4\xe0\x10\xb5\xa4\xe0\xc4\xb4\xe0\x10\xf2\xa5\xb5"
        !          18884:             "\xe0\x95\xc5\xe0\x95\xc6\xe0\x76\xc6\xe0\x75\xd6\xd0"
        !          18885:             "\xf1\x76\xd7\xc0\x67\xd7\xc0\xf1\x66\xe0\x16\xc0\x73"
        !          18886:             "\xe0\x43\xe0" }  },
        !          18887:       /* --- pixel bitmap for cmmi600 char#26 \rho --- */
        !          18888:       {  26,93954,                      /* character number, location */
        !          18889:          37, 2,  -18, 2,      /* topleft row,col, and botleft row,col */
        !          18890:           { 40,   55, 3,301, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          18891:             "\xe0\xb7\xe0\xe0\x2c\xe0\xc6\x54\xe0\xa5\x85\xe0\x65"
        !          18892:             "\xa6\xe0\x45\xc5\xe0\x35\xd6\xe0\x16\xe5\xe6\xe0\x16"
        !          18893:             "\xd5\xe0\x26\xc6\xe0\x26\xf1\xb6\xe0\x36\xa6\xe0\x46"
        !          18894:             "\xa6\xe0\x37\x97\xe0\x37\xf1\x96\xe0\x47\x96\xe0\x38"
        !          18895:             "\x87\xe0\x38\xf1\x86\xe0\x47\x10\x77\xe0\x38\x87\xe0"
        !          18896:             "\x37\x96\xe0\x47\x96\xe0\x37\x97\xe0\x37\x97\xe0\x27"
        !          18897:             "\xa6\xe0\x36\xb6\xe0\x27\xa8\xe0\x16\xb8\xe6\xc9\xc6"
        !          18898:             "\xd6\x12\xb6\xd7\x13\x95\xe0\x17\x24\x55\xe0\x36\x4b"
        !          18899:             "\xe0\x56\x76\xe0\x30\xf1\x37\xe0\xe0\x20\xf1\x36\xe0"
        !          18900:             "\xe0\x30\xf1\x27\xe0\xe0\x30\xf1\x26\xe0\xe0\x40\xf1"
        !          18901:             "\x17\xe0\xe0\x40\xf1\x16\xe0\xe0\x5f\x17\xe0\xe0\x5f"
        !          18902:             "\x16\xe0\xe0\x60\x13\xe0\xe0\x80" }  },
        !          18903:       /* --- pixel bitmap for cmmi600 char#27 \sigma --- */
        !          18904:       {  27,94994,                      /* character number, location */
        !          18905:          36, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          18906:           { 44,   37, 3,229, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          18907:             "\xe0\x4e\x0b\xe0\x2e\x0e\x01\xde\x0e\x03\xbe\x0e\x05"
        !          18908:             "\xae\x0e\x05\x99\x78\xe0\x58\xa7\xe0\x47\xd7\xe0\x27"
        !          18909:             "\xe0\x16\xe0\x26\xe0\x26\xe0\x16\xe0\x46\xd7\xe0\x46"
        !          18910:             "\xd6\xe0\x56\xa0\xf1\x26\xe0\x66\xa0\x17\xe0\x66\xb6"
        !          18911:             "\xe0\x76\xb6\xe0\x67\xa7\xe0\x66\xbf\x16\xe0\x76\xb6"
        !          18912:             "\xe0\x67\xb6\xe0\x66\xc5\xe0\x76\xcf\x15\xe0\x66\xd5"
        !          18913:             "\xe0\x56\xe5\xe0\x55\xe0\x15\xe0\x46\xe0\x25\xe0\x26"
        !          18914:             "\xe0\x35\xe0\x16\xe0\x55\xd6\xe0\x65\xc6\xe0\x85\xa5"
        !          18915:             "\xe0\xc5\x65\xe0\xe0\x1d\xe0\xe0\x67\xe0\xe1" }  },
        !          18916:       /* --- pixel bitmap for cmmi600 char#28 \tau --- */
        !          18917:       {  28,95879,                      /* character number, location */
        !          18918:          36, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          18919:           { 41,   37, 3,171, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          18920:             "\xae\x0e\x02\x9e\x0e\x05\x7e\x0e\x06\x6e\x0e\x07\x5e"
        !          18921:             "\x0e\x06\x65\xb3\xe0\x74\xd3\xe0\x64\xe3\xe0\x63\xe3"
        !          18922:             "\xe0\x63\xe0\x13\xe0\x53\xe0\x23\xe0\x52\xe0\x24\xe0"
        !          18923:             "\xe0\x94\xe0\xe0\x93\xe0\x60\xf3\xe0\x34\xe0\x60\xf2"
        !          18924:             "\xe0\x24\xe0\x70\xf2\xe0\x15\xe0\x70\xf2\xe5\xe0\x80"
        !          18925:             "\xf1\xd6\xe0\x80\xd5\xe0\x90\xf2\xc6\xe0\x90\xf1\xb7"
        !          18926:             "\xe0\x90\xb6\xe0\xe0\x84\xe0\xb0" }  },
        !          18927:       /* --- pixel bitmap for cmmi600 char#29 \upsilon --- */
        !          18928:       {  29,96868,                      /* character number, location */
        !          18929:          37, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          18930:           { 42,   38, 3,257, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          18931:             "\x95\xe0\x83\xa9\xe0\x56\x64\x35\xe0\x37\x53\x65\xe0"
        !          18932:             "\x28\x42\x75\xe0\x28\x33\x75\xe0\x28\x23\x85\xe0\x37"
        !          18933:             "\x22\x95\xe0\x46\x13\x86\xe0\x55\x12\x96\xe0\x55\x12"
        !          18934:             "\x96\xe0\x67\x87\xe0\x63\x12\x96\xe0\x73\x12\x87\xe0"
        !          18935:             "\x73\xb6\xe0\x83\xb6\xe0\x82\xb7\xe0\x82\xb6\xe0\x92"
        !          18936:             "\xb6\xe0\x83\xa7\xe0\x82\xb6\xe0\x92\xb6\xe0\x83\xb6"
        !          18937:             "\xe0\x82\xb7\xe0\x73\xb6\xe0\x82\xc6\xe0\x73\xc6\xe0"
        !          18938:             "\x72\xd6\xe0\x63\xd6\xe0\x53\xe6\xe0\x52\xe0\x16\xe0"
        !          18939:             "\x43\xe0\x25\xe0\x33\xe0\x36\xe0\x13\xe0\x56\xd3\xe0"
        !          18940:             "\x75\xb4\xe0\x96\x74\xe0\xdd\xe0\xe0\x48\xe0\x40" }  },
        !          18941:       /* --- pixel bitmap for cmmi600 char#30 \phi --- */
        !          18942:       {  30,97890,                      /* character number, location */
        !          18943:          58, 4,  -17, 4,      /* topleft row,col, and botleft row,col */
        !          18944:           { 44,   75, 3,395, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          18945:             "\xe0\xe0\x32\xb0\xf1\xe0\xe0\x23\xb0\xf1\xe0\xe0\x22"
        !          18946:             "\xc0\xf1\xe0\xe0\x13\xc0\xf1\xe0\xe0\x12\xd0\xf1\xe0"
        !          18947:             "\xe3\xd0\xf1\xe0\xe2\xe0\xf1\xe0\xd3\xe0\xf1\xe0\xd2"
        !          18948:             "\xe0\x10\xf1\xe0\xc3\xe0\x10\xf1\xe0\xc2\xe0\x20\xe0"
        !          18949:             "\x89\xe0\xe0\x3e\x02\xe0\xb7\x32\x36\xe0\x76\x62\x65"
        !          18950:             "\xe0\x45\x73\x75\xe0\x16\x83\x85\xd5\xa2\xa5\xb5\xb2"
        !          18951:             "\xb5\x86\xb3\xb6\x75\xc3\xc5\x66\xc2\xd5\x56\xd2\xd6"
        !          18952:             "\xf1\x36\xd3\xd6\xf1\x26\xe2\xe6\xf1\x16\xe3\xe6\x16"
        !          18953:             "\xe2\xee\xe2\xe7\x0f\x16\xe3\xe6\x1f\x16\xe2\xe6\x2f"
        !          18954:             "\x16\xd3\xd6\x36\xd2\xd6\x55\xd2\xc6\x65\xc3\xc5\x76"
        !          18955:             "\xb3\xb6\x85\xb2\xb5\xb5\xa2\xa5\xd5\x83\x86\xe0\x15"
        !          18956:             "\x73\x75\xe0\x45\x62\x66\xe0\x76\x32\x37\xe0\xbe\x02"
        !          18957:             "\xe0\xe0\x39\xe0\x80\xf1\xe0\x22\xe0\xc0\xf1\xe0\x13"
        !          18958:             "\xe0\xc0\xf1\xe0\x12\xe0\xd0\xf1\xe3\xe0\xd0\xf1\xe2"
        !          18959:             "\xe0\xe0\xf1\xd3\xe0\xe0\xf1\xd2\xe0\xe0\x10\xf1\xc3"
        !          18960:             "\xe0\xe0\x12" }  },
        !          18961:       /* --- pixel bitmap for cmmi600 char#31 \chi --- */
        !          18962:       {  31,99167,                      /* character number, location */
        !          18963:          37, 3,  -17, 3,      /* topleft row,col, and botleft row,col */
        !          18964:           { 46,   54, 3,387, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          18965:             "\x67\xe0\xe0\x9b\xe0\xe0\x12\x33\x47\xe0\xd2\x32\x67"
        !          18966:             "\xe0\xb3\x23\x68\xe0\x93\x32\x87\xe0\x83\xe8\xe0\x63"
        !          18967:             "\xe0\x27\xe0\x53\xe0\x37\xe0\x43\xe0\x57\xe0\x23\xe0"
        !          18968:             "\x67\xe0\x13\xe0\x78\xd3\xe0\x97\xd2\xe0\xa7\xc3\xe0"
        !          18969:             "\xb7\xa3\xe0\xc7\x93\xe0\xd7\x83\xe0\xe0\x17\x63\xe0"
        !          18970:             "\xe0\x27\x53\xe0\xe0\x37\x43\xe0\xe0\x57\x23\xe0\xe0"
        !          18971:             "\x67\x13\xe0\xe0\x77\x12\xe0\xe0\x99\xe0\xe0\x98\xe0"
        !          18972:             "\x50\xf1\xe0\x57\xe0\x60\xf1\xe0\x67\xe0\x50\xe0\x58"
        !          18973:             "\xe0\xe0\x99\xe0\xe0\x92\x17\xe0\xe0\x73\x17\xe0\xe0"
        !          18974:             "\x63\x27\xe0\xe0\x53\x47\xe0\xe0\x33\x57\xe0\xe0\x23"
        !          18975:             "\x67\xe0\xe0\x13\x87\xe0\xd3\x97\xe0\xc3\xa7\xe0\xb3"
        !          18976:             "\xc7\xe0\xa2\xd7\xe0\x93\xd8\xe0\x73\xe0\x17\xe0\x63"
        !          18977:             "\xe0\x27\xe0\x53\xe0\x47\xe0\x33\xe0\x57\xe0\x23\xe0"
        !          18978:             "\x68\xe3\xe0\x87\x82\x33\xe0\x98\x63\x23\xe0\xb7\x62"
        !          18979:             "\x32\xe0\xd7\x43\x32\xe0\xe0\x1b\xe0\xe0\x97\x61" }  },
        !          18980:       /* --- pixel bitmap for cmmi600 char#32 \psi --- */
        !          18981:       {  32,100422,                     /* character number, location */
        !          18982:          58, 2,  -17, 2,      /* topleft row,col, and botleft row,col */
        !          18983:           { 51,   75, 3,503, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          18984:             "\xf2\xe0\xe0\x82\xd0\xe0\xe0\x73\xd0\xf2\xe0\xe0\x72"
        !          18985:             "\xe0\xe0\xe0\x63\xe0\xf2\xe0\xe0\x62\xe0\x10\xe0\xe0"
        !          18986:             "\x53\xe0\x10\xf2\xe0\xe0\x52\xe0\x20\xe0\xe0\x43\xe0"
        !          18987:             "\x20\xf2\xe0\xe0\x42\xe0\x30\xe0\xe0\x33\xe0\xe0\xe0"
        !          18988:             "\x62\xe0\xd5\xe0\x32\xc3\xa9\xe0\x12\xb6\x64\x44\xd3"
        !          18989:             "\xa7\x53\x65\xc2\xb8\x42\x75\xc2\xb8\x33\x75\xc2\xb8"
        !          18990:             "\x23\x85\xb3\xc7\x22\x95\xb2\xe6\x13\x86\xb2\xe0\x15"
        !          18991:             "\x12\x96\xb2\xe0\x15\x12\x96\xa3\xe0\x27\x87\xa2\xe0"
        !          18992:             "\x33\x12\x96\xb2\xe0\x33\x12\x87\xb2\xe0\x33\xb6\xb3"
        !          18993:             "\xe0\x33\xb6\xb2\xe0\x42\xb7\xb2\xe0\x42\xb6\xc2\xe0"
        !          18994:             "\x42\xb6\xb3\xe0\x33\xa7\xb2\xe0\x42\xb6\xc2\xe0\x42"
        !          18995:             "\xb6\xc2\xe0\x33\xb6\xb3\xe0\x23\xb7\xb2\xe0\x32\xc6"
        !          18996:             "\xc2\xe0\x23\xc6\xc2\xe0\x22\xd6\xb3\xe0\x13\xd6\xb2"
        !          18997:             "\xe0\x13\xe6\xb2\xe3\xe0\x25\xb2\xd3\xe0\x36\x93\xc3"
        !          18998:             "\xe0\x46\x92\xc3\xe0\x66\x82\xa4\xe0\x86\x72\x93\xe0"
        !          18999:             "\xb6\x53\x74\xe0\xe7\x22\x55\xe0\xe0\x4e\x03\xe0\xe0"
        !          19000:             "\xaa\xe0\xe0\xe0\x13\xe0\xd0\xf2\xe0\x72\xe0\xe0\xe0"
        !          19001:             "\x63\xe0\xe0\xf2\xe0\x62\xe0\xe0\x10\xe0\x53\xe0\xe0"
        !          19002:             "\x10\xf2\xe0\x52\xe0\xe0\x20\xe0\x43\xe0\xe0\x20\xf2"
        !          19003:             "\xe0\x42\xe0\xe0\x3e" }  },
        !          19004:       /* --- pixel bitmap for cmmi600 char#33 \omega --- */
        !          19005:       {  33,101759,                     /* character number, location */
        !          19006:          37, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
        !          19007:           { 50,   38, 3,319, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          19008:             "\x91\xe0\xe0\x63\xb3\xe0\xe0\x46\x84\xe0\xe0\x37\x74"
        !          19009:             "\xe0\xe0\x48\x63\xe0\xe0\x58\x54\xe0\xe0\x58\x53\xe0"
        !          19010:             "\xe0\x77\x43\xe0\xe0\x96\x43\xe0\xe0\xa5\x33\xe0\xe0"
        !          19011:             "\xb5\x33\xe0\xe0\xc4\xf1\x23\xe0\xe0\xd3\x10\x22\xe0"
        !          19012:             "\x72\xe0\x53\x32\xe0\x63\xe0\x53\x23\xe0\x54\xe0\x52"
        !          19013:             "\x20\xf1\x12\xe0\x64\xe0\x52\x20\x12\xe0\x64\xe0\x43"
        !          19014:             "\x23\xe0\x54\xe0\x52\x32\xe0\x64\xe0\x52\x32\xe0\x64"
        !          19015:             "\xe0\x43\x32\xe0\x63\xe0\x53\x32\xe0\x63\xe0\x43\x43"
        !          19016:             "\xe0\x44\xe0\x43\x43\xe0\x44\xe0\x33\x53\xe0\x35\xe0"
        !          19017:             "\x24\x53\xe0\x27\xe0\x14\x54\xe8\xe4\x65\xca\xc5\x66"
        !          19018:             "\x96\x16\x96\x77\x68\x27\x57\x9e\x05\x3e\x05\x9e\x04"
        !          19019:             "\x5e\x03\xbe\x02\x6e\x02\xdd\x9e\xe0\x1b\xbb\xe0\x56"
        !          19020:             "\xe0\x36\xe0\x16" }  },
        !          19021:       /* --- pixel bitmap for cmmi600 char#34 \varepsilon --- */
        !          19022:       {  34,102878,                     /* character number, location */
        !          19023:          38, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
        !          19024:           { 33,   40, 3,195, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          19025:             "\xe0\x49\xe0\x7e\xe0\x3e\x04\xde\x08\x98\x97\x85\xe0"
        !          19026:             "\x15\x74\xe0\x44\x63\xe0\xa0\xf1\x53\xe0\xb0\xf4\x52"
        !          19027:             "\xe0\xc0\x53\x83\xe0\x63\x2c\xe0\x39\x34\xe0\x3e\x02"
        !          19028:             "\xe0\x23\x2b\xe0\x23\xe0\xe0\x13\xe0\xe0\x13\xe0\xe0"
        !          19029:             "\x13\xe0\xe0\x22\xe0\xe0\x23\xe0\xe0\x10\xf1\x12\xe0"
        !          19030:             "\xe0\x2f\x13\xe0\xe0\x23\xe0\xb1\x52\xe0\xa3\x43\xe0"
        !          19031:             "\x92\x54\xe0\x73\x64\xe0\x44\x77\xc6\x9e\x08\xde\x05"
        !          19032:             "\xe0\x2e\x01\xe0\x69\xe0\x13" }  },
        !          19033:       /* --- pixel bitmap for cmmi600 char#35 \vartheta --- */
        !          19034:       {  35,103959,                     /* character number, location */
        !          19035:          59, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          19036:           { 45,   60, 3,381, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          19037:             "\xe0\xe0\x25\xe0\xe0\xa9\xe0\xe0\x64\x44\xe0\xe0\x43"
        !          19038:             "\x74\xe0\xe0\x23\x94\xe0\xe0\x12\xa4\xe0\xe3\xa5\xe0"
        !          19039:             "\xc3\xb5\xe0\xc2\xc5\xe0\xb3\xc5\x40\xf2\xe0\x72\xd6"
        !          19040:             "\x30\xe0\x63\xd6\x30\xf2\xe0\x62\xe6\x30\xe0\x63\xd6"
        !          19041:             "\x30\xf1\xe0\x72\xd6\x30\xe0\x73\xb7\xe0\xb3\xa7\xa5"
        !          19042:             "\xb2\xa7\x89\x94\x87\x73\x35\xa3\x67\x73\x55\xa3\x57"
        !          19043:             "\x72\x65\xb5\x27\x63\x66\xcc\x62\x76\xe0\x19\x53\x76"
        !          19044:             "\xe0\x29\x42\x86\xe0\x2c\x12\x86\xe0\x27\x23\x12\x77"
        !          19045:             "\xe0\x18\x53\x77\xe0\x17\x6f\x12\x86\xe0\x27\x60\xf1"
        !          19046:             "\x97\xe0\x17\x70\x96\xe0\x27\xe0\x26\xe0\x26\x80\xf1"
        !          19047:             "\x87\xe0\x17\x80\x86\xe0\x26\xe0\x36\xe0\x17\xe0\x36"
        !          19048:             "\xe0\x16\xe0\x37\xe7\xe0\x36\xe0\x16\xb0\xf1\x76\xe6"
        !          19049:             "\xc0\x76\xd6\xe0\x66\xd5\xe0\x75\xd6\xe0\x76\xc5\xe0"
        !          19050:             "\x86\xb5\xe0\x96\xa5\xe0\xb5\xa4\xe0\xc6\x84\xe0\xe6"
        !          19051:             "\x55\xe0\xe0\x3c\xe0\xe0\x87\xe0\xa0" }  },
        !          19052:       /* --- pixel bitmap for cmmi600 char#36 \varpi --- */
        !          19053:       {  36,105402,                     /* character number, location */
        !          19054:          36, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          19055:           { 66,   37, 3,411, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          19056:             "\xae\x0e\x0e\x0d\x9e\x0e\x0e\x0e\x02\x7e\x0e\x0e\x0e"
        !          19057:             "\x03\x6e\x0e\x0e\x0e\x04\x5e\x0e\x0e\x0e\x04\x55\x63"
        !          19058:             "\xe0\xe0\xc2\x94\x73\xe0\xe0\xd2\x84\x82\xe0\xe0\xe2"
        !          19059:             "\x83\x83\xe0\xe0\xe2\x73\x83\xe0\xe0\xe0\x13\x53\x92"
        !          19060:             "\xe0\xe0\xe0\x32\x52\x93\xe0\xe0\xe0\x32\xe0\x22\xe0"
        !          19061:             "\x82\xe0\x82\xe0\x13\xe0\x73\xe0\x73\xe0\x12\xe0\x83"
        !          19062:             "\xe0\x72\xe0\x13\xe0\x82\xe0\x82\xe0\x12\xe0\x83\xe0"
        !          19063:             "\x82\xe0\x12\xe0\x83\xe0\x73\xe3\xe0\x74\xe0\x72\xe0"
        !          19064:             "\x12\xe0\x84\xe0\x72\xe0\x12\xe0\x75\xe0\x63\xe0\x12"
        !          19065:             "\xe0\x74\xe0\x72\xe0\x13\xe0\x65\xe0\x63\xe0\x13\xe0"
        !          19066:             "\x56\xe0\x63\xe0\x12\xe0\x63\x13\xe0\x43\xe0\x23\xe0"
        !          19067:             "\x44\x13\xe0\x34\xe0\x23\xe0\x34\x23\xe0\x24\xe0\x33"
        !          19068:             "\xe0\x24\x33\xe0\x14\xe0\x43\xe0\x14\x44\xd5\xe0\x44"
        !          19069:             "\xc6\x44\xc5\xe0\x54\xb6\x55\xa5\xe0\x65\x78\x66\x67"
        !          19070:             "\xe0\x8e\x04\x8e\x03\xe0\x9e\x02\xae\x02\xe0\xbe\xce"
        !          19071:             "\xe0\xdb\xe0\x1b\xe0\xe0\x36\xe0\x67\xe0\x73" }  },
        !          19072:       /* --- pixel bitmap for cmmi600 char#37 \varrho --- */
        !          19073:       {  37,106463,                     /* character number, location */
        !          19074:          37, 6,  -16, 6,      /* topleft row,col, and botleft row,col */
        !          19075:           { 36,   53, 3,263, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          19076:             "\xe0\x77\xe0\xcc\xe0\x86\x54\xe0\x65\x85\xe0\x25\xa6"
        !          19077:             "\xe5\xc5\xd5\xd6\xb6\xe5\xa6\xe0\x16\x95\xe0\x26\x86"
        !          19078:             "\xe0\x26\xf1\x76\xe0\x36\x66\xe0\x46\x66\xe0\x37\x57"
        !          19079:             "\xe0\x37\xf1\x56\xe0\x47\x56\xe0\x38\x47\xe0\x38\xf1"
        !          19080:             "\x46\xe0\x47\x10\x46\xe0\x38\x47\xe0\x37\x56\xe0\x47"
        !          19081:             "\x20\xf1\x36\xe0\x37\x30\x27\xe0\x27\x67\xe0\x26\x77"
        !          19082:             "\xe0\x17\x72\x15\xe6\x73\x15\xd6\x83\x24\xc6\x92\x35"
        !          19083:             "\xa6\xa2\x45\x85\xc2\x55\x55\xe2\x7b\xe0\x13\x97\xe0"
        !          19084:             "\x3f\x53\xe0\xe0\x54\xe0\xe0\x46\xe0\xe0\x3e\x07\xe0"
        !          19085:             "\x1e\x0a\xde\x09\xe0\x1e\x08\xe0\x2e\x06\xa0\xf1\xe0"
        !          19086:             "\x92\xb0" }  },
        !          19087:       /* --- pixel bitmap for cmmi600 char#38 \varsigma --- */
        !          19088:       {  38,107426,                     /* character number, location */
        !          19089:          37, 3,   -9, 3,      /* topleft row,col, and botleft row,col */
        !          19090:           { 31,   46, 3,167, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          19091:             "\xe0\x49\xe0\x4e\x02\xd6\x76\xa5\xd2\x95\xe0\xb4\xe0"
        !          19092:             "\xc4\xe0\xc4\xe0\xc4\xe0\xc4\xe0\xa0\xf1\x24\xe0\xb0"
        !          19093:             "\xf2\x14\xe0\xc5\xe0\xc4\xe0\xdf\x35\xe0\xc6\xe0\xb7"
        !          19094:             "\xe0\xa8\xe0\xa8\xe0\x9a\xe0\x8b\xe0\x7c\xe0\x6d\xe0"
        !          19095:             "\x5d\xe0\x6d\xe0\x6d\xe0\x6c\xe0\x7b\xe0\x7a\xe0\x98"
        !          19096:             "\xe0\xb6\x70\xf3\xe0\x55\x70\xe0\x54\xe0\xc4\xe0\x53"
        !          19097:             "\x44\xe0\x6a\xe0\xa5\xd3" }  },
        !          19098:       /* --- pixel bitmap for cmmi600 char#39 \varphi --- */
        !          19099:       {  39,108455,                     /* character number, location */
        !          19100:          37, 3,  -18, 3,      /* topleft row,col, and botleft row,col */
        !          19101:           { 49,   55, 3,385, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          19102:             "\xe0\xe0\x86\xe0\x12\xe0\x9b\xc3\xe0\x8e\xa2\xe0\x7e"
        !          19103:             "\x02\x93\xe0\x6e\x04\x73\xe0\x67\x67\x62\xe0\x65\xb5"
        !          19104:             "\x53\xe0\x64\xd4\x52\xe0\x64\xe0\x13\x43\xe0\x54\xe0"
        !          19105:             "\x24\x32\xe0\x63\xe0\x43\x23\xe0\x53\xe0\x53\x22\xe0"
        !          19106:             "\x62\xe0\x63\x22\xe0\x53\xe0\x63\x22\xe0\x52\xe0\x73"
        !          19107:             "\x13\xe0\x42\xe0\x82\x22\xe0\x52\xe0\x82\x22\xe0\x42"
        !          19108:             "\xe0\x92\x22\xe0\x42\xe0\x83\x22\xe0\x42\xe0\x82\x2f"
        !          19109:             "\x13\xe0\x32\xe0\x83\x23\xe0\x32\xe0\x73\x42\xe0\x22"
        !          19110:             "\xe0\x83\x43\xe0\x12\xe0\x73\x53\xe0\x12\xe0\x63\x64"
        !          19111:             "\xd3\xe0\x54\x74\xc3\xe0\x44\x85\xb2\xe0\x35\xa5\x93"
        !          19112:             "\xe0\x25\xc6\x73\xe6\xd8\x53\xb8\xe0\x2e\x89\xe0\x5e"
        !          19113:             "\x0e\x01\xe0\x7e\x0c\xe0\xbe\x08\xe0\xe0\x2e\x03\xe0"
        !          19114:             "\xe0\x6b\xe0\x90\xf1\xe5\xe0\xe0\x20\xe4\xe0\xe0\x30"
        !          19115:             "\xf3\xd5\xe0\xe0\x30\xf2\xc5\xe0\xe0\x40\xf2\xb6\xe0"
        !          19116:             "\xe0\x40\xf2\xa6\xe0\xe0\x50\xb4\xe0\xe0\x60" }  },
        !          19117:       /* --- pixel bitmap for cmmi600 char#40 \leftharpoonup --- */
        !          19118:       {  40,126395,                     /* character number, location */
        !          19119:          43, 5,   19, 5,      /* topleft row,col, and botleft row,col */
        !          19120:           { 73,   24, 2,63, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          19121:             "\x12\x03\x34\x00\xff\x01\x11\x04\x34\x00\x10\x05\x44"
        !          19122:             "\x04\x35\x00\xff\x01\x0f\x05\x35\x00\xff\x01\x0e\x05"
        !          19123:             "\x36\x00\x0d\x05\x37\x00\xff\x01\x0c\x05\x38\x00\x0b"
        !          19124:             "\x05\x43\x05\x43\x06\x42\x06\x42\x06\x42\x06\x42\x06"
        !          19125:             "\x41\x07\x41\x46\x01\xff\x01\x49\x00\x48\x01" }  },
        !          19126:       /* --- pixel bitmap for cmmi600 char#41 \leftharpoondown --- */
        !          19127:       {  41,127461,                     /* character number, location */
        !          19128:          23, 5,   -1, 5,      /* topleft row,col, and botleft row,col */
        !          19129:           { 73,   24, 2,63, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          19130:             "\x00\x48\x01\xff\x01\x49\x02\x46\x04\x07\x44\x06\x44"
        !          19131:             "\x06\x44\x06\x44\x06\x44\x06\x44\x05\x45\x05\x39\x00"
        !          19132:             "\xff\x01\x0c\x05\x38\x00\x0d\x05\x37\x00\xff\x01\x0e"
        !          19133:             "\x05\x36\x00\xff\x01\x0f\x05\x35\x00\x10\x04\x45\x05"
        !          19134:             "\x34\x00\xff\x01\x11\x04\x34\x00\x12\x03\x34" }  },
        !          19135:       /* --- pixel bitmap for cmmi600 char#42 \rightharpoonup --- */
        !          19136:       {  42,128525,                     /* character number, location */
        !          19137:          43, 5,   19, 5,      /* topleft row,col, and botleft row,col */
        !          19138:           { 73,   24, 2,62, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          19139:             "\x34\x03\x12\x00\xff\x01\x34\x04\x11\x00\x34\x05\x45"
        !          19140:             "\x04\x10\x00\xff\x01\x35\x05\x0f\x00\xff\x01\x36\x05"
        !          19141:             "\x0e\x00\x37\x05\x0d\x00\xff\x01\x38\x05\x0c\x00\x39"
        !          19142:             "\x05\x45\x05\x44\x06\x44\x06\x44\x06\x44\x06\x44\x06"
        !          19143:             "\x44\x07\x04\x46\x02\xff\x01\x49\x01\x48" }  },
        !          19144:       /* --- pixel bitmap for cmmi600 char#43 \rightharpoondown --- */
        !          19145:       {  43,129592,                     /* character number, location */
        !          19146:          23, 5,   -1, 5,      /* topleft row,col, and botleft row,col */
        !          19147:           { 73,   24, 2,63, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          19148:             "\x01\x48\x00\xff\x01\x49\x01\x46\x41\x07\x41\x06\x42"
        !          19149:             "\x06\x42\x06\x42\x06\x42\x06\x43\x05\x43\x05\x0b\x00"
        !          19150:             "\xff\x01\x38\x05\x0c\x00\x37\x05\x0d\x00\xff\x01\x36"
        !          19151:             "\x05\x0e\x00\xff\x01\x35\x05\x0f\x00\x35\x04\x44\x05"
        !          19152:             "\x10\x00\xff\x01\x34\x04\x11\x00\x34\x03\x12" }  },
        !          19153:       /* --- pixel bitmap for cmmi600 char#44 ` --- */
        !          19154:       {  44,130051,                     /* character number, location */
        !          19155:          41, 5,   19, 5,      /* topleft row,col, and botleft row,col */
        !          19156:           { 13,   22, 3,43, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          19157:             "\x84\x77\x49\x39\x37\x56\x75\x7f\x15\x8f\x34\x9f\x15"
        !          19158:             "\x80\x15\x86\x87\x79\x59\x67\x84\x10" }  },
        !          19159:       /* --- pixel bitmap for cmmi600 char#45 ' --- */
        !          19160:       {  45,130503,                     /* character number, location */
        !          19161:          41, 5,   19, 5,      /* topleft row,col, and botleft row,col */
        !          19162:           { 13,   22, 3,43, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          19163:             "\x14\x87\x69\x59\x77\x86\x85\x10\xf1\x85\xf3\x94\xf1"
        !          19164:             "\x85\x75\x76\x57\x39\x39\x47\x74\x80" }  },
        !          19165:       /* --- pixel bitmap for cmmi600 char#46 \triangleright --- */
        !          19166:       {  46,131072,                     /* character number, location */
        !          19167:          42, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          19168:           { 36,   42, 3,225, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          19169:             "\x12\xe0\xe0\x55\xe0\xe0\x37\xe0\xe0\x18\xe0\xea\xe0"
        !          19170:             "\xcc\xe0\xa4\x27\xe0\x94\x38\xe0\x74\x58\xe0\x54\x77"
        !          19171:             "\xe0\x44\x88\xe0\x24\xa8\xe4\xc8\xc4\xd8\xb4\xe0\x18"
        !          19172:             "\x94\xe0\x38\x74\xe0\x57\x64\xe0\x68\x44\xe0\x88\x24"
        !          19173:             "\xe0\xa7\x1f\x14\xe0\xb7\x04\xe0\xa7\x14\xe0\x88\x24"
        !          19174:             "\xe0\x68\x44\xe0\x57\x64\xe0\x38\x74\xe0\x18\x94\xe7"
        !          19175:             "\xb4\xc8\xc4\xa8\xe4\x88\xe0\x24\x78\xe0\x34\x58\xe0"
        !          19176:             "\x54\x38\xe0\x74\x27\xe0\x9c\xe0\xaa\xe0\xc8\xe0\xe7"
        !          19177:             "\xe0\xe0\x15\xe0\xe0\x42\xe0\xe0\x56" }  },
        !          19178:       /* --- pixel bitmap for cmmi600 char#47 \triangleleft --- */
        !          19179:       {  47,131740,                     /* character number, location */
        !          19180:          42, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          19181:           { 36,   42, 3,225, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          19182:             "\xe0\xe0\x52\xe0\xe0\x45\xe0\xe0\x17\xe0\xe8\xe0\xca"
        !          19183:             "\xe0\xac\xe0\x97\x24\xe0\x78\x34\xe0\x58\x54\xe0\x47"
        !          19184:             "\x74\xe0\x28\x84\xe8\xa4\xc8\xc4\xb8\xd4\x98\xe0\x14"
        !          19185:             "\x78\xe0\x34\x67\xe0\x54\x48\xe0\x64\x28\xe0\x84\x17"
        !          19186:             "\xe0\xa4\x0f\x17\xe0\xb4\x17\xe0\xa4\x28\xe0\x84\x48"
        !          19187:             "\xe0\x64\x67\xe0\x54\x78\xe0\x34\x98\xe0\x14\xb7\xe4"
        !          19188:             "\xc8\xc4\xe8\xa4\xe0\x28\x84\xe0\x38\x74\xe0\x58\x54"
        !          19189:             "\xe0\x78\x34\xe0\x97\x24\xe0\xac\xe0\xca\xe0\xe8\xe0"
        !          19190:             "\xe0\x17\xe0\xe0\x35\xe0\xe0\x52\x16" }  },
        !          19191:       /* --- pixel bitmap for cmmi600 char#48 \0 --- */
        !          19192:       {  48,115808,                     /* character number, location */
        !          19193:          38, 3,   -2, 3,      /* topleft row,col, and botleft row,col */
        !          19194:           { 36,   40, 3,139, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          19195:             "\xda\xe0\x9e\x02\xe0\x46\x86\xe6\xc6\xb5\xe0\x25\x95"
        !          19196:             "\xe0\x45\x76\xe0\x46\x65\xe0\x65\x30\xf1\x26\xe0\x66"
        !          19197:             "\x20\xf3\x16\xe0\x86\x1f\xb7\xe0\x87\xf2\x16\xe0\x86"
        !          19198:             "\x10\x17\xe0\x67\x10\xf1\x26\xe0\x66\x20\x35\xe0\x65"
        !          19199:             "\x66\xe0\x46\x76\xe0\x26\x96\xe6\xb6\xc6\xe6\x86\xe0"
        !          19200:             "\x4e\x02\xe0\x9a\xd3" }  },
        !          19201:       /* --- pixel bitmap for cmmi600 char#49 \1 --- */
        !          19202:       {  49,116687,                     /* character number, location */
        !          19203:          38, 8,    0, 8,      /* topleft row,col, and botleft row,col */
        !          19204:           { 28,   38, 3,50, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          19205:             "\xe0\x12\xe0\xa4\xe0\x86\xe0\x2c\xbf\x1e\x03\xb0\x14"
        !          19206:             "\x66\xb0\xfe\xb6\xb0\xfb\xb6\xb0\xa8\xaf\x2e\x0e" }  },
        !          19207:       /* --- pixel bitmap for cmmi600 char#50 \2 --- */
        !          19208:       {  50,117711,                     /* character number, location */
        !          19209:          38, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          19210:           { 34,   38, 3,181, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          19211:             "\xbb\xe0\x6e\x03\xe0\x1e\x08\xb5\x9a\x93\xe0\x19\x63"
        !          19212:             "\xe0\x39\x43\xe0\x59\x32\xe0\x78\x25\xe0\x68\xf1\x16"
        !          19213:             "\xe0\x58\xf1\x16\xe0\x67\x24\xe0\x68\xe0\xc8\xe0\xc7"
        !          19214:             "\xe0\xc8\xe0\xc7\xe0\xc8\xe0\xb7\xe0\xc7\xe0\xc7\xe0"
        !          19215:             "\xb7\xe0\xc6\xe0\xc6\xe0\xd5\xe0\xd5\xe0\xe4\xe0\x22"
        !          19216:             "\xa5\xe0\x32\x94\xe0\x52\x74\xe0\x63\x64\xe0\x72\x5e"
        !          19217:             "\x0e\x01\x4e\x0e\x02\x2e\x0e\x04\x1f\x2e\x0e\x04\x20" }  },
        !          19218:       /* --- pixel bitmap for cmmi600 char#51 \3 --- */
        !          19219:       {  51,118814,                     /* character number, location */
        !          19220:          38, 4,  -18, 4,      /* topleft row,col, and botleft row,col */
        !          19221:           { 35,   56, 3,273, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          19222:             "\xd8\xe0\xae\xe0\x4e\x05\xe0\x16\x88\xc4\xd7\xa3\xe0"
        !          19223:             "\x27\x83\xe0\x38\x72\xe0\x57\x66\xe0\x28\x57\xe0\x18"
        !          19224:             "\x57\xe0\x27\x58\xe0\x17\x57\xe0\x27\x66\xe0\x18\x73"
        !          19225:             "\xe0\x38\xe0\xd8\x30\xf1\xe0\xa7\x40\xf1\xe0\x97\x50"
        !          19226:             "\xe0\x87\xe0\xd7\xe0\xe6\xe0\xd6\xe0\xd6\xe0\x8c\xe0"
        !          19227:             "\x9e\x01\xe0\xe0\x27\xe0\xe0\x27\xe0\xe0\x17\xe0\xe0"
        !          19228:             "\x17\xe0\xe0\x17\xe0\xe8\xe0\xe7\x20\xf1\xe0\xc8\x10"
        !          19229:             "\xf1\xe0\xd8\x32\xe0\x88\x16\xe0\x68\x0f\x38\xe0\x58"
        !          19230:             "\x08\xe0\x48\x17\xe0\x58\x22\xe0\x98\x23\xe0\x78\x43"
        !          19231:             "\xe0\x67\x54\xe0\x48\x64\xe0\x28\x85\xd8\xb6\x88\xee"
        !          19232:             "\x05\xe0\x4e\x01\xe0\x99\xe7" }  },
        !          19233:       /* --- pixel bitmap for cmmi600 char#52 \4 --- */
        !          19234:       {  52,119863,                     /* character number, location */
        !          19235:          39, 2,  -16, 2,      /* topleft row,col, and botleft row,col */
        !          19236:           { 38,   55, 3,241, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          19237:             "\xe0\xc3\x90\xf1\xe0\xb4\x90\xe0\xa5\xe0\xe0\x46\x90"
        !          19238:             "\xf1\xe0\x87\x90\xe0\x78\xe0\xe0\x19\xe0\xe0\x12\x16"
        !          19239:             "\xe0\xe2\x26\xe0\xd3\x26\xe0\xc3\x36\xe0\xc2\x46\xe0"
        !          19240:             "\xb2\x56\xe0\xa3\x56\xe0\x93\x66\xe0\x92\x76\xe0\x82"
        !          19241:             "\x86\xe0\x73\x86\xe0\x63\x96\xe0\x62\xa6\xe0\x52\xb6"
        !          19242:             "\xe0\x43\xb6\xe0\x33\xc6\xe0\x32\xd6\xe0\x22\xe6\xe0"
        !          19243:             "\x13\xe6\xe0\x12\xe0\x16\xe2\xe0\x26\xd3\xe0\x26\xc3"
        !          19244:             "\xe0\x36\xc2\xe0\x46\xb2\xe0\x56\xa3\xe0\x56\x93\xe0"
        !          19245:             "\x66\x9f\x2e\x0e\x0a\xfb\xe0\x96\x90\xe0\x88\x80\xf2"
        !          19246:             "\xe0\x1e\x08\x10" }  },
        !          19247:       /* --- pixel bitmap for cmmi600 char#53 \5 --- */
        !          19248:       {  53,121022,                     /* character number, location */
        !          19249:          38, 4,  -18, 4,      /* topleft row,col, and botleft row,col */
        !          19250:           { 34,   56, 3,227, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          19251:             "\x52\xe0\x82\x84\xe0\x44\x88\xa7\x9e\x0a\xae\x09\xbe"
        !          19252:             "\x08\xce\x07\xde\x05\xe0\x12\x2c\xe0\x42\x73\xe0\x30"
        !          19253:             "\xf9\x52\xe0\xd0\x52\x78\xe0\x32\x4d\xe0\x12\x25\x75"
        !          19254:             "\xd2\x13\xb6\xb5\xd6\xa3\xe0\x26\x93\xe0\x36\x82\xe0"
        !          19255:             "\x46\x30\xf1\xe0\xc6\x20\xe0\xc7\x10\xf1\xe0\xd6\x10"
        !          19256:             "\xf3\xe0\xd7\x24\xe0\x77\x0f\x37\xe0\x67\x07\xe0\x66"
        !          19257:             "\x16\xe0\x67\x13\xe0\x97\x22\xe0\x96\x33\xe0\x77\x42"
        !          19258:             "\xe0\x76\x53\xe0\x57\x63\xe0\x37\x83\xe0\x17\xa4\xc7"
        !          19259:             "\xc6\x77\xe0\x1e\x04\xe0\x4e\xe0\x98\xe0" }  },
        !          19260:       /* --- pixel bitmap for cmmi600 char#54 \6 --- */
        !          19261:       {  54,122047,                     /* character number, location */
        !          19262:          55, 4,   -2, 4,      /* topleft row,col, and botleft row,col */
        !          19263:           { 34,   57, 3,253, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          19264:             "\xe0\x47\xe0\xad\xe0\x5e\x02\xe0\x27\x84\xe6\xc3\xc6"
        !          19265:             "\xd3\xb5\xd6\x96\xc7\x86\xd7\x76\xe7\x75\xe0\x17\x66"
        !          19266:             "\xe0\x25\x75\xe0\xb0\xf1\x36\xe0\xb0\xf2\x26\xe0\xc0"
        !          19267:             "\xf1\x17\xe0\xc0\x16\x78\xd6\x5c\xa7\x43\x75\x87\x33"
        !          19268:             "\x95\x77\x23\xb5\x67\x13\xd5\x5a\xe0\x15\x49\xe0\x26"
        !          19269:             "\x39\xe0\x36\x28\xe0\x46\x28\xe0\x47\x1f\x18\xe0\x56"
        !          19270:             "\x1f\x47\xe0\x67\xf2\x16\xe0\x67\xf1\x17\xe0\x57\x26"
        !          19271:             "\xe0\x57\x26\xe0\x56\x36\xe0\x47\x46\xe0\x37\x46\xe0"
        !          19272:             "\x36\x65\xe0\x26\x76\xe0\x16\x86\xd6\xa5\xc6\xc5\xa6"
        !          19273:             "\xe6\x67\xe0\x2e\x03\xe0\x5d\xe0\xa7\xd8" }  },
        !          19274:       /* --- pixel bitmap for cmmi600 char#55 \7 --- */
        !          19275:       {  55,123108,                     /* character number, location */
        !          19276:          39, 5,  -18, 5,      /* topleft row,col, and botleft row,col */
        !          19277:           { 36,   57, 3,239, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          19278:             "\xf1\x23\xe0\xe0\x30\x24\xe0\xe0\x20\xf2\x2e\x0e\x06"
        !          19279:             "\x2e\x0e\x05\x10\xf1\x1e\x0e\x05\x20\x13\xe0\xc3\x42"
        !          19280:             "\xe0\xc3\x52\xe0\xc2\x62\xe0\xb3\x53\xe0\xa3\x62\xe0"
        !          19281:             "\xa3\x72\xe0\xa2\x82\xe0\x93\xe0\xe0\x43\xe0\xe0\x43"
        !          19282:             "\xe0\xe0\x52\xe0\xe0\x53\xe0\xe0\x43\xe0\xe0\x52\xe0"
        !          19283:             "\xe0\x53\xd0\xf1\xe0\x53\xe0\xe0\x43\xe0\xe0\x44\xe0"
        !          19284:             "\xe0\x43\xe0\x20\xf1\xe0\x24\xe0\x20\xf1\xe0\x14\xe0"
        !          19285:             "\x30\xe5\xe0\xe0\x34\xe0\x40\xf2\xd5\xe0\x40\xf2\xc6"
        !          19286:             "\xe0\x40\xc5\xe0\x50\xf3\xb6\xe0\x50\xf9\xa7\xe0\x50"
        !          19287:             "\xc3\xe0\x70" }  },
        !          19288:       /* --- pixel bitmap for cmmi600 char#56 \8 --- */
        !          19289:       {  56,124123,                     /* character number, location */
        !          19290:          55, 4,   -2, 4,      /* topleft row,col, and botleft row,col */
        !          19291:           { 34,   57, 3,267, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          19292:             "\xd8\xe0\x9e\xe0\x4e\x04\xe0\x16\x86\xd4\xd6\xa4\xe0"
        !          19293:             "\x16\x84\xe0\x35\x74\xe0\x55\x64\xe0\x64\x63\xe0\x75"
        !          19294:             "\x20\xf3\x24\xe0\x84\x20\x25\xe0\x74\x46\xe0\x55\x46"
        !          19295:             "\xe0\x54\x58\xe0\x34\x68\xe0\x14\x7a\xc5\x8a\xa5\x9c"
        !          19296:             "\x75\xbc\x54\xed\x24\xe0\x3e\x01\xe0\x6d\xe0\x9d\xe0"
        !          19297:             "\x8d\xe0\x5e\x03\xe0\x14\x3d\xd4\x6c\xa5\x9b\x85\xbb"
        !          19298:             "\x65\xea\x45\xe0\x29\x44\xe0\x58\x25\xe0\x67\x24\xe0"
        !          19299:             "\x8c\xe0\x96\x0f\x14\xe0\xb5\x0f\x34\xe0\xc4\x05\xe0"
        !          19300:             "\xb3\x10\xf1\x14\xe0\xa4\x10\x15\xe0\x84\x45\xe0\x74"
        !          19301:             "\x55\xe0\x54\x75\xe0\x34\x95\xe5\xb7\x87\xee\x04\xe0"
        !          19302:             "\x4e\xe0\x98\xd1" }  },
        !          19303:       /* --- pixel bitmap for cmmi600 char#57 \9 --- */
        !          19304:       {  57,125180,                     /* character number, location */
        !          19305:          38, 4,  -18, 4,      /* topleft row,col, and botleft row,col */
        !          19306:           { 34,   56, 3,251, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          19307:             "\xd8\xe0\x9d\xe0\x6e\x02\xe0\x27\x67\xd6\xa6\xb6\xc5"
        !          19308:             "\xa6\xe5\x86\xe0\x16\x67\xe0\x25\x66\xe0\x36\x47\xe0"
        !          19309:             "\x45\x47\xe0\x46\x36\xe0\x56\x27\xe0\x56\x27\xe0\x57"
        !          19310:             "\x1f\x37\xe0\x66\x1f\x37\xe0\x67\xf1\x16\xe0\x58\x17"
        !          19311:             "\xe0\x48\x26\xe0\x48\x26\xe0\x39\x36\xe0\x29\x45\xe0"
        !          19312:             "\x1a\x46\xd3\x17\x56\xb3\x27\x75\x93\x37\x85\x73\x47"
        !          19313:             "\xac\x57\xc8\x76\xe0\xe6\x10\xf1\xe0\xc7\x10\xf2\xe0"
        !          19314:             "\xc6\x20\xf1\xe0\xb6\x30\x35\xe0\x26\x67\xe0\x16\x67"
        !          19315:             "\xe6\x77\xe5\x87\xd6\x86\xd6\xa3\xe6\xb3\xd6\xd5\x86"
        !          19316:             "\xe0\x2e\x03\xe0\x5d\xe0\x98\xe0\x37" }  },
        !          19317:       /* --- pixel bitmap for cmmi600 char#58 . --- */
        !          19318:       {  58,132337,                     /* character number, location */
        !          19319:           9, 7,    0, 7,      /* topleft row,col, and botleft row,col */
        !          19320:           {  9,    9, 3,13, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          19321:             "\x33\x47\x1f\x49\x17\x43\x30" }  },
        !          19322:       /* --- pixel bitmap for cmmi600 char#59 , --- */
        !          19323:       {  59,132910,                     /* character number, location */
        !          19324:           9, 7,  -16, 7,      /* topleft row,col, and botleft row,col */
        !          19325:           { 10,   25, 3,49, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          19326:             "\x33\x57\x2f\x19\x1f\x2a\x19\x33\x22\xf3\x82\x73\xf1"
        !          19327:             "\x72\x10\x63\x72\x73\x72\x73\x63\x63\x63\x72\x70" }  },
        !          19328:       /* --- pixel bitmap for cmmi600 char#60 < --- */
        !          19329:       {  60,133608,                     /* character number, location */
        !          19330:          46, 7,   -4, 7,      /* topleft row,col, and botleft row,col */
        !          19331:           { 51,   50, 2,103, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          19332:             "\x2f\x03\x2e\x06\x2b\x08\x29\x09\x28\x09\x28\x09\x28"
        !          19333:             "\x09\x28\x09\x28\x09\x28\x09\x28\x09\x28\x09\x28\x09"
        !          19334:             "\x28\x09\x28\x09\x28\x09\x28\x09\x28\x09\x28\x09\x28"
        !          19335:             "\x09\x28\x09\x28\x09\x28\x09\x28\x09\x29\xff\x01\x08"
        !          19336:             "\x2b\x00\x01\x09\x2c\x09\x2c\x09\x2c\x09\x2c\x09\x2c"
        !          19337:             "\x09\x2c\x09\x2c\x09\x2c\x09\x2c\x09\x2c\x09\x2c\x09"
        !          19338:             "\x2c\x09\x2c\x09\x2c\x09\x2c\x09\x2c\x09\x2c\x09\x2c"
        !          19339:             "\x09\x2c\x09\x2c\x09\x2c\x08\x2d\x06\x2f\x03\x01" }  },
        !          19340:       /* --- pixel bitmap for cmmi600 char#61 / --- */
        !          19341:       {  61,134210,                     /* character number, location */
        !          19342:          62, 5,  -21, 5,      /* topleft row,col, and botleft row,col */
        !          19343:           { 32,   83, 3,375, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          19344:             "\xe0\xe0\x12\xe0\xe0\x14\xf1\xe0\xd5\xe0\xd4\x10\xf1"
        !          19345:             "\xe0\xc5\x10\xe0\xc4\x20\xf1\xe0\xb5\x20\xe0\xb4\x30"
        !          19346:             "\xf1\xe0\xa5\x30\xe0\xa4\x40\xf1\xe0\x95\x40\xe0\x94"
        !          19347:             "\x50\xf1\xe0\x85\x50\xf1\xe0\x75\x60\xe0\x74\x70\xf1"
        !          19348:             "\xe0\x65\x70\xe0\x64\x80\xf1\xe0\x55\x80\xe0\x54\x90"
        !          19349:             "\xf1\xe0\x45\x90\xe0\x44\xa0\xf1\xe0\x35\xa0\xf1\xe0"
        !          19350:             "\x25\xb0\xe0\x24\xc0\xf1\xe0\x15\xc0\xe0\x14\xd0\xf1"
        !          19351:             "\xe5\xd0\xe4\xe0\xf1\xd5\xe0\xd4\xe0\x10\xf1\xc5\xe0"
        !          19352:             "\x10\xc4\xe0\x20\xf1\xb5\xe0\x20\xf1\xa5\xe0\x30\xa4"
        !          19353:             "\xe0\x40\xf1\x95\xe0\x40\x94\xe0\x50\xf1\x85\xe0\x50"
        !          19354:             "\x84\xe0\x60\xf1\x75\xe0\x60\x74\xe0\x70\xf1\x65\xe0"
        !          19355:             "\x70\xf1\x55\xe0\x80\x54\xe0\x90\xf1\x45\xe0\x90\x44"
        !          19356:             "\xe0\xa0\xf1\x35\xe0\xa0\x34\xe0\xb0\xf1\x25\xe0\xb0"
        !          19357:             "\x24\xe0\xc0\xf1\x15\xe0\xc0\x14\xe0\xdf\x15\xe0\xd4"
        !          19358:             "\xe0\xe0\x12\xe0\xe0\x13" }  },
        !          19359:       /* --- pixel bitmap for cmmi600 char#62 > --- */
        !          19360:       {  62,135025,                     /* character number, location */
        !          19361:          46, 7,   -4, 7,      /* topleft row,col, and botleft row,col */
        !          19362:           { 51,   50, 2,103, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          19363:             "\x01\x03\x2f\x06\x2d\x08\x2c\x09\x2c\x09\x2c\x09\x2c"
        !          19364:             "\x09\x2c\x09\x2c\x09\x2c\x09\x2c\x09\x2c\x09\x2c\x09"
        !          19365:             "\x2c\x09\x2c\x09\x2c\x09\x2c\x09\x2c\x09\x2c\x09\x2c"
        !          19366:             "\x09\x2c\x09\x2c\x09\x2c\x09\x2c\x09\x01\x00\xff\x01"
        !          19367:             "\x2b\x08\x29\x09\x28\x09\x28\x09\x28\x09\x28\x09\x28"
        !          19368:             "\x09\x28\x09\x28\x09\x28\x09\x28\x09\x28\x09\x28\x09"
        !          19369:             "\x28\x09\x28\x09\x28\x09\x28\x09\x28\x09\x28\x09\x28"
        !          19370:             "\x09\x28\x09\x28\x09\x29\x08\x2b\x06\x2e\x03\x2f" }  },
        !          19371:       /* --- pixel bitmap for cmmi600 char#63 \star --- */
        !          19372:       {  63,135802,                     /* character number, location */
        !          19373:          41, 0,    1, 0,      /* topleft row,col, and botleft row,col */
        !          19374:           { 42,   40, 3,179, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          19375:             "\xf4\xe0\x62\xe0\x60\xf7\xe0\x54\xe0\x50\xf1\xe0\x46"
        !          19376:             "\xe0\x46\xc6\xc6\x1b\x66\x6b\x4e\x16\x1e\x9e\x0e\x02"
        !          19377:             "\xee\x0c\xe0\x4e\x08\xe0\x8e\x04\xe0\xce\xe0\xe0\x2a"
        !          19378:             "\xe0\x20\xf1\xe0\x1c\xe0\x10\xf1\xee\xe0\xd7\x27\xe0"
        !          19379:             "\xc6\x46\xe0\xb6\x66\xe0\xa5\x85\xe0\x95\xa5\xe0\x75"
        !          19380:             "\xc5\xe0\x64\xe4\xe0\x54\xe0\x24\xe0\x43\xe0\x43\xe0"
        !          19381:             "\x33\xe0\x63\xe0\x22\xe0\x82\xe0\x21\xe0\xa1\x80" }  },
        !          19382:       /* --- pixel bitmap for cmmi600 char#64 \partial --- */
        !          19383:       {  64,109633,                     /* character number, location */
        !          19384:          60, 3,   -2, 3,      /* topleft row,col, and botleft row,col */
        !          19385:           { 44,   62, 3,353, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          19386:             "\xe0\x88\xe0\xe0\x5e\xe0\xe0\x1e\x03\xe0\xb6\x87\xe0"
        !          19387:             "\x84\xd6\xe0\x63\xe0\x26\xe0\x43\xe0\x46\xe0\x32\xe0"
        !          19388:             "\x66\xe0\x13\xe0\x75\xe0\x16\xe0\x46\xd7\xe0\x55\x20"
        !          19389:             "\xf1\xb7\xe0\x56\x10\xb7\xe0\x65\xc6\xe0\x76\xf6\xe0"
        !          19390:             "\xe0\xa6\xe0\x68\xa6\xe0\x3e\x76\xe0\x16\x74\x66\xd5"
        !          19391:             "\xc3\x47\xb6\xe3\x37\xa6\xe0\x23\x27\x95\xe0\x52\x27"
        !          19392:             "\x85\xe0\x6b\x76\xe0\x79\x76\xe0\x89\x66\xe0\x99\x57"
        !          19393:             "\xe0\x99\x10\xf1\x37\xe0\xa8\x20\xf1\x27\xe0\xb8\x20"
        !          19394:             "\x18\xe0\xb7\x47\xe0\xc7\x47\xe0\xc6\x57\xe0\xb7\x48"
        !          19395:             "\xe0\xb7\x4f\x17\xe0\xb7\x57\xe0\xb6\x67\xe0\xa7\x66"
        !          19396:             "\xe0\xb6\x76\xe0\xa7\x76\xe0\xa6\x86\xe0\x96\x96\xe0"
        !          19397:             "\x95\xb6\xe0\x76\xb6\xe0\x66\xd6\xe0\x46\xe6\xe0\x36"
        !          19398:             "\xe0\x26\xe0\x16\xe0\x46\xc6\xe0\x77\x78\xe0\x9e\x05"
        !          19399:             "\xe0\xde\x01\xe0\xe0\x49\xe0\xa0" }  },
        !          19400:       /* --- pixel bitmap for cmmi600 char#65 A --- */
        !          19401:       {  65, 1092,                      /* character number, location */
        !          19402:          60, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          19403:           { 57,   60, 3,450, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          19404:             "\xe0\xe0\xe2\xe0\xe0\xe0\xc3\xd0\xf1\xe0\xe0\xc4\xd0"
        !          19405:             "\xe0\xe0\xb5\xe0\xe0\xe0\xa6\xe0\xe0\xe0\x87\xc0\xf1"
        !          19406:             "\xe0\xe0\x98\xc0\xf1\xe0\xe0\x89\xc0\xe0\xe0\x72\x17"
        !          19407:             "\xe0\xe0\xe0\x43\x17\xe0\xe0\xe0\x42\x27\xe0\xe0\xe0"
        !          19408:             "\x32\x37\xe0\xe0\xe0\x32\x38\xe0\xe0\xe0\x12\x48\xe0"
        !          19409:             "\xe0\xe3\x57\xe0\xe0\xe2\x67\xb0\xf1\xe0\xe0\x22\x77"
        !          19410:             "\xb0\xf1\xe0\xe0\x12\x87\xb0\xe0\xe2\x97\xe0\xe0\xa2"
        !          19411:             "\xa7\xe0\xe0\xa2\xa8\xe0\xe0\x82\xb8\xe0\xe0\x82\xc7"
        !          19412:             "\xe0\xe0\x72\xd7\xa0\xf1\xe0\xa2\xe7\xa0\xf1\xe0\x92"
        !          19413:             "\xe0\x17\xa0\xe0\x82\xe0\x27\xa0\xf1\xe0\x72\xe0\x37"
        !          19414:             "\xa0\xe0\x62\xe0\x48\xe0\xe0\x12\xe0\x57\xe0\xee\x0e"
        !          19415:             "\x01\x90\xf1\xe0\x4e\x0e\x02\x90\xf1\xe0\x32\xe0\x87"
        !          19416:             "\x90\xe0\x22\xe0\x97\xe0\xa3\xe0\x97\xe0\xa2\xe0\xa7"
        !          19417:             "\x90\xf1\xe2\xe0\xb8\x80\xd2\xe0\xd7\xe0\x63\xe0\xd7"
        !          19418:             "\xe0\x62\xe0\xe7\xe0\x52\xe0\xe0\x17\xe0\x43\xe0\xe0"
        !          19419:             "\x17\xe0\x42\xe0\xe0\x27\xe0\x33\xe0\xe0\x27\xe0\x16"
        !          19420:             "\xe0\xe0\x18\xc9\xe0\xca\x7f\x1e\x04\xe0\x2e\x09\x0e"
        !          19421:             "\x03\xe0\x3e\x09" }  },
        !          19422:       /* --- pixel bitmap for cmmi600 char#66 B --- */
        !          19423:       {  66, 2670,                      /* character number, location */
        !          19424:          57, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          19425:           { 60,   57, 2,211, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          19426:             "\x0d\x24\x18\x28\x14\x29\x1b\x08\x12\x09\x19\x07\x15"
        !          19427:             "\x08\x18\x07\x16\x08\x16\x08\x17\x08\x15\x08\x18\x07"
        !          19428:             "\x15\x07\x19\x07\x15\x07\x19\x08\xff\x01\x13\x08\x19"
        !          19429:             "\x08\xff\x01\x13\x07\x1a\x08\x12\x08\x1a\x08\x12\x08"
        !          19430:             "\x1a\x07\x13\x07\x1a\x08\x13\x07\x1a\x07\x13\x08\x19"
        !          19431:             "\x08\x13\x08\x19\x07\x14\x07\x19\x07\x15\x07\x18\x07"
        !          19432:             "\x15\x08\x17\x07\x16\x08\x15\x08\x17\x07\x14\x08\x19"
        !          19433:             "\x07\x12\x08\x1a\x20\x1c\x1f\x1d\x07\x12\x09\x1a\x07"
        !          19434:             "\x15\x07\x18\x08\x17\x07\x16\x08\x17\x08\x15\x07\x19"
        !          19435:             "\x07\x15\x07\x1a\x07\x13\x08\x1a\x07\x13\x08\x1a\x08"
        !          19436:             "\x12\x07\x1b\x08\x12\x07\x1c\x07\x11\x08\x1c\x07\x11"
        !          19437:             "\x08\x1b\x08\x05\x00\xff\x01\x0c\x07\x1c\x08\x05\x00"
        !          19438:             "\x0b\x08\x1c\x08\x10\x08\x1b\x08\x11\x07\x1c\x08\x11"
        !          19439:             "\x07\x1b\x08\x11\x08\x1b\x08\x11\x08\x1a\x08\x12\x07"
        !          19440:             "\x1a\x08\x13\x07\x19\x08\x13\x08\x18\x08\x14\x08\x16"
        !          19441:             "\x09\x15\x07\x16\x09\x15\x08\x13\x0a\x0f\x2b\x11\x29"
        !          19442:             "\x13\x25\x17" }  },
        !          19443:       /* --- pixel bitmap for cmmi600 char#67 C --- */
        !          19444:       {  67, 3819,                      /* character number, location */
        !          19445:          59, 4,   -2, 4,      /* topleft row,col, and botleft row,col */
        !          19446:           { 59,   61, 2,217, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          19447:             "\x20\x09\x0f\x03\x1c\x10\x0c\x03\x19\x15\x09\x03\x18"
        !          19448:             "\x0a\x09\x05\x07\x04\x16\x09\x0e\x04\x05\x05\x15\x07"
        !          19449:             "\x13\x03\x03\x06\x13\x08\x15\x03\x01\x06\x13\x07\x18"
        !          19450:             "\x09\x11\x08\x19\x09\x10\x07\x1c\x08\x0f\x07\x1e\x06"
        !          19451:             "\x0f\x07\x1f\x06\x0e\x07\x20\x06\x0d\x07\x22\x05\x0c"
        !          19452:             "\x08\x22\x04\x0c\x08\x23\x04\x0c\x07\x24\x04\x0b\x08"
        !          19453:             "\x24\x04\x0a\x08\x25\x03\x0b\x07\x26\x03\x0a\x08\x26"
        !          19454:             "\x03\x09\x08\x27\x03\x09\x08\x27\x02\x09\x09\x27\x02"
        !          19455:             "\x06\x00\xff\x01\x03\x08\x30\x00\xff\x02\x02\x08\x31"
        !          19456:             "\x00\x01\x09\x31\x00\xff\x02\x01\x08\x32\x09\x32\xff"
        !          19457:             "\x03\x08\x33\xff\x01\x08\x27\x02\x0a\x08\x26\x03\x0a"
        !          19458:             "\xff\x01\x08\x26\x02\x0b\x00\x01\x07\x25\x03\x0c\x07"
        !          19459:             "\x25\x02\x0d\x07\x24\x03\x0d\x07\x23\x03\x0f\x07\x22"
        !          19460:             "\x02\x10\x07\x21\x03\x11\x07\x1f\x03\x12\x07\x1e\x03"
        !          19461:             "\x14\x07\x1c\x03\x15\x07\x1b\x03\x17\x07\x19\x03\x19"
        !          19462:             "\x07\x16\x04\x1b\x08\x13\x04\x1e\x07\x0f\x05\x21\x09"
        !          19463:             "\x09\x07\x24\x15\x28\x10\x2f\x09\x20" }  },
        !          19464:       /* --- pixel bitmap for cmmi600 char#68 D --- */
        !          19465:       {  68, 5185,                      /* character number, location */
        !          19466:          57, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          19467:           { 63,   57, 2,217, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          19468:             "\x0e\x23\x1b\x27\x18\x29\x1e\x08\x11\x09\x1d\x07\x15"
        !          19469:             "\x08\x1b\x07\x16\x08\x19\x08\x18\x06\x19\x08\x19\x06"
        !          19470:             "\x18\x07\x1a\x07\x17\x07\x1b\x06\x16\x08\x1b\x07\x15"
        !          19471:             "\x08\x1c\x06\x02\x00\xff\x01\x13\x07\x1d\x07\x01\x00"
        !          19472:             "\x12\x08\x1e\x06\x13\x08\x1e\x07\xff\x01\x12\x07\x1f"
        !          19473:             "\x07\xff\x01\x11\x08\x1f\x07\xff\x01\x11\x07\x20\x07"
        !          19474:             "\x10\x08\x20\x07\x10\x08\x1f\x08\xff\x01\x10\x07\x20"
        !          19475:             "\x08\x0f\x08\x20\x08\x0f\x08\x20\x07\x01\x00\xff\x01"
        !          19476:             "\x0f\x07\x20\x08\x01\x00\x0e\x08\x20\x08\x0f\x08\x20"
        !          19477:             "\x07\x02\x00\xff\x01\x0e\x07\x20\x08\x02\x00\x0d\x08"
        !          19478:             "\x20\x07\x10\x08\x1f\x08\x10\x07\x20\x07\x11\x07\x1f"
        !          19479:             "\x08\x04\x00\xff\x01\x0c\x08\x1f\x07\x05\x00\x0c\x07"
        !          19480:             "\x1f\x07\x12\x07\x1e\x07\x12\x08\x1e\x07\x12\x08\x1d"
        !          19481:             "\x07\x13\x07\x1d\x07\x14\x07\x1d\x06\x14\x08\x1c\x06"
        !          19482:             "\x15\x08\x1b\x06\x16\x07\x1b\x06\x17\x07\x19\x07\x17"
        !          19483:             "\x08\x18\x07\x18\x08\x16\x07\x1a\x07\x15\x08\x1a\x08"
        !          19484:             "\x11\x0a\x14\x29\x16\x27\x18\x23\x1c" }  },
        !          19485:       /* --- pixel bitmap for cmmi600 char#69 E --- */
        !          19486:       {  69, 6830,                      /* character number, location */
        !          19487:          57, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          19488:           { 60,   57, 3,467, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          19489:             "\xee\x0e\x0e\x04\xf1\xde\x0e\x0e\x05\xe0\x78\xe0\x7a"
        !          19490:             "\xe0\x77\xe0\xb7\xe0\x77\xe0\xc5\xe0\x78\xe0\xd4\xe0"
        !          19491:             "\x78\xe0\xe3\x10\xf1\xe0\x67\xe0\xe0\x13\x10\xf1\xe0"
        !          19492:             "\x58\xe0\xe0\x13\x10\xe0\x57\xe0\xe0\x23\xe0\x67\xe0"
        !          19493:             "\xe0\x22\x20\xf1\xe0\x48\xe0\xe0\x22\x20\xf1\xe0\x47"
        !          19494:             "\xe0\x32\xc2\x20\xe0\x38\xe0\x23\xc2\xe0\x58\xe0\x23"
        !          19495:             "\xe0\xe0\x57\xe0\x32\xe0\xe0\x67\xe0\x23\xe0\xe0\x58"
        !          19496:             "\xe0\x23\xe0\xe0\x58\xe0\x14\xe0\xe0\x57\xe0\x14\xe0"
        !          19497:             "\xe0\x67\xd6\xe0\x40\xf1\xe0\x1e\x0d\xe0\x40\xe0\x1e"
        !          19498:             "\x0c\xe0\xe0\x67\xe5\xe0\x50\xf1\xe8\xe0\x14\xe0\x50"
        !          19499:             "\xf1\xe7\xe0\x32\xe0\x60\xd8\xe0\x23\xe0\xe0\x58\xe0"
        !          19500:             "\x23\xe2\xe0\x37\xe0\x32\xe0\x12\xe0\x37\xe0\x32\xe3"
        !          19501:             "\xe0\x28\xe0\x32\xe2\xe0\x38\xe0\xe0\x52\xe0\x37\xe0"
        !          19502:             "\xe0\x53\xe0\x37\xe0\xe0\x52\xe0\x38\xe0\xe0\x43\xe0"
        !          19503:             "\x38\xe0\xe0\x42\x70\xf1\xb7\xe0\xe0\x43\x70\xa8\xe0"
        !          19504:             "\xe0\x33\xe0\x48\xe0\xe0\x24\x80\xf1\xa7\xe0\xe0\x24"
        !          19505:             "\x90\x98\xe0\xe6\xe0\x48\xe0\xd6\xe0\x57\xe0\xc8\xe0"
        !          19506:             "\x48\xe0\x8b\xbf\x1e\x0e\x0e\x07\xbe\x0e\x0e\x06\xc7" }  },
        !          19507:       /* --- pixel bitmap for cmmi600 char#70 F --- */
        !          19508:       {  70, 8315,                      /* character number, location */
        !          19509:          57, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          19510:           { 60,   57, 3,393, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          19511:             "\xf2\xde\x0e\x0e\x05\xe0\x78\xe0\x7a\xe0\x77\xe0\xb7"
        !          19512:             "\xe0\x77\xe0\xc5\xe0\x78\xe0\xd4\xe0\x78\xe0\xe3\x10"
        !          19513:             "\xf1\xe0\x67\xe0\xe0\x13\x10\xf1\xe0\x58\xe0\xe0\x13"
        !          19514:             "\x10\xe0\x57\xe0\xe0\x23\xe0\x67\xe0\xe0\x22\x20\xf1"
        !          19515:             "\xe0\x48\xe0\xe0\x22\x20\xe0\x47\xe0\xe0\x32\xe0\x67"
        !          19516:             "\xe0\x32\xc2\xe0\x58\xe0\x23\xc2\xe0\x58\xe0\x23\xe0"
        !          19517:             "\x20\xf1\xe0\x37\xe0\x32\xe0\x30\xf1\xe0\x28\xe0\x23"
        !          19518:             "\xe0\x30\xe0\x27\xe0\x23\xe0\xe0\x67\xe0\x14\xe0\xe0"
        !          19519:             "\x58\xd6\xe0\xe0\x5e\x0d\xe0\x40\xf1\xe0\x1e\x0c\xe0"
        !          19520:             "\x50\xe8\xd6\xe0\xe0\x58\xe0\x14\xe0\x50\xf1\xe7\xe0"
        !          19521:             "\x23\xe0\x60\xf1\xd8\xe0\x23\xe0\x60\xf1\xd7\xe0\x32"
        !          19522:             "\xe0\x70\xf1\xc8\xe0\x23\xe0\x70\xf1\xc7\xe0\xe0\xd0"
        !          19523:             "\xf1\xb8\xe0\xe0\xd0\xf1\xb7\xe0\xe0\xe0\xf1\xa8\xe0"
        !          19524:             "\xe0\xe0\xf1\xa7\xe0\xe0\xe0\x10\xf1\x98\xe0\xe0\xe0"
        !          19525:             "\x10\x97\xe0\xe0\xe0\xa9\xe0\xe0\xe0\x1f\x2e\x0c\xe0"
        !          19526:             "\xe0\x63" }  },
        !          19527:       /* --- pixel bitmap for cmmi600 char#71 G --- */
        !          19528:       {  71, 9658,                      /* character number, location */
        !          19529:          59, 4,   -2, 4,      /* topleft row,col, and botleft row,col */
        !          19530:           { 59,   61, 3,467, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          19531:             "\xe0\xe0\x49\xe0\x13\xe0\xee\x02\xc3\xe0\xbe\x07\x93"
        !          19532:             "\xe0\xaa\x95\x74\xe0\x89\xe4\x55\xe0\x77\xe0\x53\x36"
        !          19533:             "\xe0\x58\xe0\x73\x16\xe0\x57\xe0\xa9\xe0\x38\xe0\xb9"
        !          19534:             "\xe0\x27\xe0\xe8\xe0\x17\xe0\xe0\x26\xe0\x17\xe0\xe0"
        !          19535:             "\x36\xe7\xe0\xe0\x46\xd7\xe0\xe0\x65\xc8\xe0\xe0\x64"
        !          19536:             "\xc8\xe0\xe0\x74\xc7\xe0\xe0\x84\xb8\xe0\xe0\x84\xa8"
        !          19537:             "\xe0\xe0\x93\xb7\xe0\xe0\xa3\xa8\xe0\xe0\xa3\x98\xe0"
        !          19538:             "\xe0\xb3\x98\xe0\xe0\xb2\x99\xe0\xe0\xb2\x60\xf1\x38"
        !          19539:             "\xe0\xe0\xe0\x60\xf2\x28\xe0\xe0\xe0\x70\x19\xe0\xe0"
        !          19540:             "\xe0\x70\xf2\x18\xe0\xe0\xe0\x89\xe0\xe0\xe0\x88\xe0"
        !          19541:             "\xe0\xe0\x9f\x28\xe0\xae\x09\x48\xe0\xe0\x59\x98\xe0"
        !          19542:             "\xe0\x67\xa8\xe0\xe0\x58\xaf\x18\xe0\xe0\x57\xb0\x17"
        !          19543:             "\xe0\xe0\x57\xb0\xf1\x17\xe0\xe0\x48\xb0\x18\xe0\xe0"
        !          19544:             "\x37\xe7\xe0\xe0\x37\xe7\xe0\xe0\x28\xe0\x17\xe0\xe0"
        !          19545:             "\x18\xe0\x17\xe0\xe0\x17\xe0\x37\xe0\xd8\xe0\x38\xe0"
        !          19546:             "\xb9\xe0\x47\xe0\xb9\xe0\x58\xe0\x74\x15\xe0\x78\xe0"
        !          19547:             "\x54\x25\xe0\x98\xe0\x14\x54\xe0\xaa\x96\x64\xe0\xce"
        !          19548:             "\x07\x92\xe0\xe0\x1e\x03\xe0\xe0\xe0\x49\xe0\xe0\x47" }  },
        !          19549:       /* --- pixel bitmap for cmmi600 char#72 H --- */
        !          19550:       {  72,11121,                      /* character number, location */
        !          19551:          57, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          19552:           { 71,   57, 3,451, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          19553:             "\xf1\xde\x0b\x8e\x0b\xde\x0a\x9e\x0a\xe0\x88\xe0\xb8"
        !          19554:             "\x90\xf1\xe0\x77\xe0\xc7\xa0\xe0\x68\xe0\xb8\xe0\xe0"
        !          19555:             "\x28\xe0\xb7\xb0\xf1\xe0\x67\xe0\xc7\xb0\xe0\x58\xe0"
        !          19556:             "\xb8\xe0\xe0\x28\xe0\xb7\xc0\xf1\xe0\x57\xe0\xc7\xc0"
        !          19557:             "\xe0\x48\xe0\xb8\xe0\xe0\x28\xe0\xb7\xd0\xf1\xe0\x47"
        !          19558:             "\xe0\xc7\xd0\xe0\x38\xe0\xb8\xe0\xe0\x28\xe0\xb7\xe0"
        !          19559:             "\xf1\xe0\x37\xe0\xc7\xe0\xe0\x28\xe0\xb8\xe0\xe0\x28"
        !          19560:             "\xe0\xb7\xe0\x10\xf1\xe0\x27\xe0\xc7\xe0\x10\xe0\x1e"
        !          19561:             "\x0e\x0d\xe0\x10\xf1\xe0\x1e\x0e\x0c\xe0\x20\xe0\x17"
        !          19562:             "\xe0\xc7\xe0\xe0\x28\xe0\xb8\xe0\xe0\x28\xe0\xb7\xe0"
        !          19563:             "\x30\xf1\xe7\xe0\xc7\xe0\x30\xd8\xe0\xb8\xe0\xe0\x28"
        !          19564:             "\xe0\xb7\xe0\x40\xf1\xd7\xe0\xc7\xe0\x40\xc8\xe0\xb8"
        !          19565:             "\xe0\xe0\x28\xe0\xb7\xe0\x50\xf1\xc7\xe0\xc7\xe0\x50"
        !          19566:             "\xb8\xe0\xb8\xe0\xe0\x28\xe0\xb7\xe0\x60\xf1\xb7\xe0"
        !          19567:             "\xc7\xe0\x60\xa8\xe0\xb8\xe0\xe0\x28\xe0\xb7\xe0\x70"
        !          19568:             "\xf1\xa7\xe0\xc7\xe0\x70\x98\xe0\xb8\xe0\xe0\x28\xe0"
        !          19569:             "\xb7\xe0\xe0\x37\xe0\xc7\xe0\xe0\x29\xe0\xa9\xe0\x7f"
        !          19570:             "\x2e\x0a\x9e\x0a\xee" }  },
        !          19571:       /* --- pixel bitmap for cmmi600 char#73 I --- */
        !          19572:       {  73,12074,                      /* character number, location */
        !          19573:          57, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          19574:           { 39,   57, 3,235, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          19575:             "\xf2\xee\x0b\xf1\xe0\x88\x90\xe0\x87\xa0\xf1\xe0\x78"
        !          19576:             "\xa0\xf1\xe0\x77\xb0\xf1\xe0\x68\xb0\xf1\xe0\x67\xc0"
        !          19577:             "\xf1\xe0\x58\xc0\xf1\xe0\x57\xd0\xf1\xe0\x48\xd0\xf1"
        !          19578:             "\xe0\x47\xe0\xf1\xe0\x38\xe0\xf1\xe0\x37\xe0\x10\xf1"
        !          19579:             "\xe0\x28\xe0\x10\xf1\xe0\x27\xe0\x20\xf1\xe0\x18\xe0"
        !          19580:             "\x20\xf1\xe0\x17\xe0\x30\xf1\xe8\xe0\x30\xf1\xe7\xe0"
        !          19581:             "\x40\xf1\xd8\xe0\x40\xf1\xd7\xe0\x50\xf1\xc8\xe0\x50"
        !          19582:             "\xf1\xc7\xe0\x60\xf1\xb8\xe0\x60\xf1\xb7\xe0\x70\xf1"
        !          19583:             "\xa8\xe0\x70\xa7\xe0\xe0\x39\xe0\x7f\x1e\x0c\xde\x0b"
        !          19584:             "\xe0" }  },
        !          19585:       /* --- pixel bitmap for cmmi600 char#74 J --- */
        !          19586:       {  74,13008,                      /* character number, location */
        !          19587:          57, 7,   -2, 7,      /* topleft row,col, and botleft row,col */
        !          19588:           { 46,   59, 3,275, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          19589:             "\xf2\xe0\x8e\x0a\xe0\xe0\x39\x60\xf1\xe0\xe0\x47\x70"
        !          19590:             "\xe0\xe0\x38\x70\xf2\xe0\xe0\x37\x80\xe0\xe0\x28\x80"
        !          19591:             "\xf2\xe0\xe0\x27\x90\xe0\xe0\x18\x90\xf2\xe0\xe0\x17"
        !          19592:             "\xa0\xe0\xe8\xa0\xf2\xe0\xe7\xb0\xe0\xd8\xb0\xf2\xe0"
        !          19593:             "\xd7\xc0\xe0\xc8\xc0\xf2\xe0\xc7\xd0\xe0\xb8\xd0\xf2"
        !          19594:             "\xe0\xb7\xe0\xe0\xa8\xe0\xf2\xe0\xa7\xe0\x10\xf1\xe0"
        !          19595:             "\x98\xe0\x10\xf1\xe0\x97\xe0\x20\xf1\xe0\x88\xe0\x20"
        !          19596:             "\x26\xe7\xe0\x47\xe7\xe0\x47\xd8\xe0\x3f\x18\xd7\xe0"
        !          19597:             "\x48\xc7\xe0\x56\xd8\xe0\x52\xe0\x37\xe0\x63\xe0\x17"
        !          19598:             "\xe0\x82\xe7\xe0\x93\xc7\xe0\xb3\xa6\xe0\xe4\x67\xe0"
        !          19599:             "\xe0\x3d\xe0\xe0\x78\xe0\xe0\x38" }  },
        !          19600:       /* --- pixel bitmap for cmmi600 char#75 K --- */
        !          19601:       {  75,14381,                      /* character number, location */
        !          19602:          57, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          19603:           { 70,   57, 2,243, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          19604:             "\x0d\x19\x0f\x11\x0d\x19\x0e\x12\x0d\x18\x0f\x12\x15"
        !          19605:             "\x08\x1a\x0a\x1a\x07\x1c\x06\x1d\x07\x1c\x04\x1e\x08"
        !          19606:             "\x1b\x04\x1f\x08\x1a\x03\x21\x07\x1a\x03\x22\x07\x19"
        !          19607:             "\x03\x22\x08\x17\x03\x24\x08\x16\x03\x25\x07\x16\x03"
        !          19608:             "\x26\x07\x14\x03\x27\x08\x13\x03\x28\x08\x12\x03\x29"
        !          19609:             "\x07\x11\x04\x2a\x07\x10\x03\x2b\x08\x0f\x03\x2c\x08"
        !          19610:             "\x0e\x03\x2d\x07\x0d\x03\x2f\x07\x0c\x03\x2f\x08\x0b"
        !          19611:             "\x03\x30\x08\x09\x06\x2f\x07\x09\x07\x2f\x07\x08\x09"
        !          19612:             "\x2d\x08\x07\x0a\x2d\x08\x05\x03\x02\x08\x2c\x07\x05"
        !          19613:             "\x03\x03\x08\x2c\x07\x04\x03\x05\x07\x2b\x08\x02\x03"
        !          19614:             "\x07\x08\x2a\x08\x01\x03\x08\x08\x2a\x07\x01\x03\x0a"
        !          19615:             "\x08\x29\x0a\x0b\x08\x28\x09\x0e\x08\x27\x08\x0f\x08"
        !          19616:             "\x27\x07\x11\x07\x27\x07\x11\x08\x25\x08\x11\x08\x25"
        !          19617:             "\x08\x12\x08\x24\x07\x13\x08\x24\x07\x14\x07\x18\x00"
        !          19618:             "\xff\x01\x0b\x08\x14\x08\x17\x00\xff\x01\x0b\x07\x16"
        !          19619:             "\x08\x16\x00\xff\x01\x0a\x08\x17\x08\x15\x00\x0a\x07"
        !          19620:             "\x19\x07\x1f\x07\x19\x08\x1d\x08\x19\x08\x1d\x08\x1a"
        !          19621:             "\x08\x1c\x07\x1a\x09\x1b\x09\x18\x0b\x12\x18\x0d\x15"
        !          19622:             "\x0c\x18\x0c\x16\x0c\x18\x0c\x15\x0d" }  },
        !          19623:       /* --- pixel bitmap for cmmi600 char#76 L --- */
        !          19624:       {  76,15572,                      /* character number, location */
        !          19625:          57, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          19626:           { 51,   57, 3,319, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          19627:             "\xf1\xde\x0d\xb0\xde\x0c\xe0\xe0\x59\xe0\xe0\xe8\xe0"
        !          19628:             "\xe0\xe0\x17\xe0\x90\xf1\xe0\x68\xe0\x90\xf1\xe0\x67"
        !          19629:             "\xe0\xa0\xf1\xe0\x58\xe0\xa0\xf1\xe0\x57\xe0\xb0\xf1"
        !          19630:             "\xe0\x48\xe0\xb0\xf1\xe0\x47\xe0\xc0\xf1\xe0\x38\xe0"
        !          19631:             "\xc0\xf1\xe0\x37\xe0\xd0\xf1\xe0\x28\xe0\xd0\xf1\xe0"
        !          19632:             "\x27\xe0\xe0\xf1\xe0\x18\xe0\xe0\xf1\xe0\x17\xe0\xe0"
        !          19633:             "\x10\xf1\xe8\xe0\xe0\x10\xf1\xe7\xe0\xe0\x20\xd8\xe0"
        !          19634:             "\xe0\xe0\x18\xe0\xe0\x11\xf1\xd7\xe0\xe0\x12\xc8\xe0"
        !          19635:             "\xe3\xc8\xe0\xe2\x10\xf1\xc7\xe0\xe3\x10\xb8\xe0\xe2"
        !          19636:             "\xd8\xe0\xd3\x20\xf1\xb7\xe0\xd3\x30\xa8\xe0\xc4\xd8"
        !          19637:             "\xe0\xb4\xe7\xe0\xc4\xe7\xe0\xb5\xd8\xe0\x96\xe8\xe0"
        !          19638:             "\x87\xe7\xe0\x79\xd8\xe0\x3c\x6f\x1e\x0e\x0e\x03\x6e"
        !          19639:             "\x0e\x0e\x02\x78" }  },
        !          19640:       /* --- pixel bitmap for cmmi600 char#77 M --- */
        !          19641:       {  77,17076,                      /* character number, location */
        !          19642:          57, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          19643:           { 83,   57, 3,727, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          19644:             "\xde\x02\xe0\xe0\xae\x02\xde\x02\xe0\xe0\x9e\x03\xde"
        !          19645:             "\x03\xe0\xe0\x8e\x02\xe0\x89\xe0\xe0\x79\x90\xf1\xe0"
        !          19646:             "\x72\x16\xe0\xe0\x62\x16\xa0\xe0\x63\x16\xe0\xe0\x52"
        !          19647:             "\x17\xe0\xe0\x23\x16\xe0\xe0\x42\x26\xe0\xe0\x32\x26"
        !          19648:             "\xe0\xe0\x42\x26\xe0\xe0\x32\x36\xe0\xe0\x22\x36\xe0"
        !          19649:             "\xe0\x23\x36\xe0\xe0\x22\x27\xe0\xe0\x23\x36\xe0\xe0"
        !          19650:             "\x12\x36\xc0\xf1\xe0\x52\x46\xe0\xe2\x46\xc0\xe0\x43"
        !          19651:             "\x46\xe0\xd2\x47\xe0\xe0\x23\x46\xe0\xc2\x56\xe0\xe0"
        !          19652:             "\x32\x56\xe0\xc2\x56\xe0\xe0\x32\x66\xe0\xa2\x66\xe0"
        !          19653:             "\xe0\x23\x66\xe0\x92\x67\xe0\xe0\x23\x66\xe0\x92\x66"
        !          19654:             "\xe0\xf1\xe0\x32\x76\xe0\x82\x76\xe0\xe0\x23\x76\xe0"
        !          19655:             "\x72\x77\xe0\xe0\x23\x76\xe0\x62\x86\xe0\xe0\x32\x96"
        !          19656:             "\xe0\x52\x86\xe0\xe0\x32\x96\xe0\x42\x96\xe0\xe0\x23"
        !          19657:             "\x96\xe0\x32\x97\xe0\xe0\x23\x96\xe0\x32\x96\xe0\xe0"
        !          19658:             "\x32\xa6\xe0\x22\xa6\xe0\xe0\x32\xa6\xe0\x12\xb6\xe0"
        !          19659:             "\xe0\x23\xa6\xe0\x12\xa7\xe0\xe0\x23\xb6\xd2\xb6\xe0"
        !          19660:             "\xe0\x32\xc6\xd2\xb6\xe0\xe0\x32\xc6\xc2\xc6\xe0\xe0"
        !          19661:             "\x23\xc6\xb2\xc7\xe0\xe0\x23\xc6\xb2\xc6\xe0\xe0\x32"
        !          19662:             "\xd6\xa2\xd6\xe0\xe0\x32\xd6\x92\xe6\xe0\xe0\x23\xd6"
        !          19663:             "\x92\xd7\xe0\xe0\x23\xe6\x72\xe6\xe0\x50\xf1\xc2\xe0"
        !          19664:             "\x16\x62\xe0\x16\xe0\x50\xb3\xe0\x16\x52\xe0\x17\xe0"
        !          19665:             "\xe0\x23\xe0\x16\x52\xe0\x16\xe0\xe0\x32\xe0\x26\x42"
        !          19666:             "\xe0\x26\xe0\xe0\x32\xe0\x26\x32\xe0\x36\xe0\xe0\x23"
        !          19667:             "\xe0\x36\x22\xe0\x27\xe0\xe0\x23\xe0\x36\x12\xe0\x36"
        !          19668:             "\xe0\x70\xf1\xa2\xe0\x48\xe0\x46\xe0\x70\x93\xe0\x47"
        !          19669:             "\xe0\x47\xe0\xe0\x23\xe0\x46\xe0\x56\xe0\xe0\x16\xe0"
        !          19670:             "\x36\xe0\x56\xe0\xd9\xe0\x34\xe0\x58\xe0\x7e\x05\xc4"
        !          19671:             "\xbe\x09\xee\x05\xc3\xce\x09\xee\x05\xc2\xde\x09\xe0" }  },
        !          19672:       /* --- pixel bitmap for cmmi600 char#78 N --- */
        !          19673:       {  78,18646,                      /* character number, location */
        !          19674:          57, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          19675:           { 71,   57, 3,615, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          19676:             "\xde\x02\xe0\x8e\x06\xde\x03\xe0\x7e\x06\xde\x03\xe0"
        !          19677:             "\x7e\x05\xe0\x8a\xe0\xb9\xe0\xda\xe0\xd5\xe0\xe0\x12"
        !          19678:             "\x17\xe0\xd4\xe0\xe0\x13\x18\xe0\xc3\xe0\xe0\x23\x27"
        !          19679:             "\xe0\xc3\xe0\xe0\x22\x38\xe0\xb2\xe0\xe0\x32\x47\xe0"
        !          19680:             "\xb2\xe0\xe0\x23\x48\xe0\x93\xe0\xe0\x23\x48\xe0\x92"
        !          19681:             "\xc0\xf1\xe0\x52\x68\xe0\x82\xc0\xe0\x43\x77\xe0\x73"
        !          19682:             "\xe0\xe0\x23\x78\xe0\x62\xe0\xe0\x32\x97\xe0\x62\xe0"
        !          19683:             "\xe0\x32\x98\xe0\x52\xe0\xe0\x23\x98\xe0\x43\xe0\xe0"
        !          19684:             "\x23\xa8\xe0\x32\xe0\xe0\x32\xb8\xe0\x32\xe0\xe0\x32"
        !          19685:             "\xc7\xe0\x32\xe0\xe0\x23\xc8\xe0\x13\xe0\xe0\x23\xd7"
        !          19686:             "\xe0\x12\xe0\xe0\x32\xe8\xe2\xe0\xe0\x32\xe0\x17\xe2"
        !          19687:             "\xe0\xe0\x23\xe0\x18\xc3\xe0\xe0\x23\xe0\x18\xc2\xe0"
        !          19688:             "\x20\xf1\xe0\x12\xe0\x38\xb2\xe0\x20\xe3\xe0\x47\xa3"
        !          19689:             "\xe0\xe0\x23\xe0\x48\x92\xe0\xe0\x32\xe0\x67\x92\xe0"
        !          19690:             "\xe0\x32\xe0\x68\x82\xe0\xe0\x23\xe0\x77\x73\xe0\xe0"
        !          19691:             "\x23\xe0\x78\x62\xe0\xe0\x32\xe0\x88\x62\xe0\xe0\x32"
        !          19692:             "\xe0\x98\x52\xe0\xe0\x23\xe0\x98\x43\xe0\xe0\x23\xe0"
        !          19693:             "\xa7\x42\xe0\xe0\x32\xe0\xb8\x32\xe0\xe0\x32\xe0\xc7"
        !          19694:             "\x32\xe0\xe0\x23\xe0\xc8\x13\xe0\xe0\x23\xe0\xd7\x12"
        !          19695:             "\xe0\x60\xf1\xb2\xe0\xea\xe0\x60\xa3\xe0\xe0\x19\xe0"
        !          19696:             "\xe0\x23\xe0\xe0\x18\xe0\x70\xf1\xa2\xe0\xe0\x37\xe0"
        !          19697:             "\x70\x93\xe0\xe0\x46\xe0\xe0\x23\xe0\xe0\x45\xe0\xe0"
        !          19698:             "\x16\xe0\xe0\x35\xe0\xd9\xe0\xe0\x34\xe0\x8e\x05\xe0"
        !          19699:             "\xc4\xe0\x8f\x1e\x05\xe0\xd2\xe0\x90" }  },
        !          19700:       /* --- pixel bitmap for cmmi600 char#79 O --- */
        !          19701:       {  79,19779,                      /* character number, location */
        !          19702:          59, 4,   -2, 4,      /* topleft row,col, and botleft row,col */
        !          19703:           { 57,   61, 2,209, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          19704:             "\x1f\x0a\x2b\x11\x26\x07\x08\x06\x22\x06\x0d\x06\x1e"
        !          19705:             "\x06\x11\x05\x1b\x06\x14\x06\x18\x05\x17\x06\x15\x06"
        !          19706:             "\x19\x05\x14\x06\x1a\x06\x12\x06\x1c\x06\x10\x06\x1d"
        !          19707:             "\x06\x0f\x06\x1f\x06\x0d\x06\x20\x06\x0c\x07\x20\x07"
        !          19708:             "\x0a\x07\x21\x07\x09\x07\x23\x06\x09\x07\x23\x07\x07"
        !          19709:             "\x07\x24\x07\xff\x01\x06\x07\x25\x07\xff\x01\x05\x07"
        !          19710:             "\x26\x07\x04\x08\x26\x07\x04\x07\x27\x07\xff\x01\x03"
        !          19711:             "\x08\x26\x08\xff\x02\x02\x08\x27\x08\xff\x03\x01\x08"
        !          19712:             "\x27\x08\x01\x09\x26\x08\x02\xff\x01\x08\x27\x08\x02"
        !          19713:             "\xff\x01\x08\x26\x08\x03\xff\x01\x08\x25\x08\x04\x08"
        !          19714:             "\x25\x07\x05\x08\x24\x08\x05\x08\x23\x08\x06\x08\x23"
        !          19715:             "\x07\x08\x07\x22\x08\x08\x07\x22\x07\x09\x07\x21\x07"
        !          19716:             "\x0a\x07\x20\x07\x0c\x07\x1f\x06\x0d\x07\x1e\x06\x0f"
        !          19717:             "\x06\x1d\x06\x10\x07\x1b\x06\x12\x06\x1a\x06\x14\x06"
        !          19718:             "\x18\x06\x16\x06\x15\x07\x18\x06\x13\x06\x1b\x06\x10"
        !          19719:             "\x07\x1d\x06\x0d\x07\x21\x07\x07\x08\x25\x11\x2b\x0a"
        !          19720:             "\x1f" }  },
        !          19721:       /* --- pixel bitmap for cmmi600 char#80 P --- */
        !          19722:       {  80,21132,                      /* character number, location */
        !          19723:          57, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          19724:           { 59,   57, 3,355, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          19725:             "\xee\x0e\x06\xe0\xae\x0e\x0a\xe0\x7e\x0e\x0c\xe0\xd8"
        !          19726:             "\xe0\x29\xe0\xc7\xe0\x67\xe0\xb7\xe0\x77\xe0\x98\xe0"
        !          19727:             "\x87\xe0\x88\xe0\x97\x10\xf1\xe0\x67\xe0\xa7\x10\xf1"
        !          19728:             "\xe0\x58\xe0\xa8\xf1\xe0\x57\xe0\xb8\xe0\x48\xe0\xb8"
        !          19729:             "\xe0\x48\xe0\xa8\x10\xf1\xe0\x47\xe0\xb8\x10\xf1\xe0"
        !          19730:             "\x38\xe0\xa8\x20\xe0\x37\xe0\xb7\xe0\x67\xe0\xa7\xe0"
        !          19731:             "\x68\xe0\x97\xe0\x78\xe0\x96\xe0\x87\xe0\x87\xe0\x97"
        !          19732:             "\xe0\x77\xe0\x98\xe0\x58\xe0\xa8\xe0\x29\xe0\xce\x0e"
        !          19733:             "\x03\xe0\xee\x0e\xe0\x20\xf1\xe8\xe0\xe0\x90\xf1\xe7"
        !          19734:             "\xe0\xe0\xa0\xf1\xd8\xe0\xe0\xa0\xf1\xd7\xe0\xe0\xb0"
        !          19735:             "\xf1\xc8\xe0\xe0\xb0\xf1\xc7\xe0\xe0\xc0\xf1\xb8\xe0"
        !          19736:             "\xe0\xc0\xf1\xb7\xe0\xe0\xd0\xf1\xa8\xe0\xe0\xd0\xf1"
        !          19737:             "\xa7\xe0\xe0\xe0\xf1\x98\xe0\xe0\xe0\x97\xe0\xe0\xe0"
        !          19738:             "\x99\xe0\xe0\xef\x2e\x0a\xe0\xe0\x76" }  },
        !          19739:       /* --- pixel bitmap for cmmi600 char#81 Q --- */
        !          19740:       {  81,22311,                      /* character number, location */
        !          19741:          59, 4,  -16, 4,      /* topleft row,col, and botleft row,col */
        !          19742:           { 57,   75, 3,555, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          19743:             "\xe0\xe0\x3a\xe0\xe0\xe0\x1e\x03\xe0\xe0\xa7\x77\xe0"
        !          19744:             "\xe0\x66\xd6\xe0\xe0\x26\xe0\x26\xe0\xd6\xe0\x66\xe0"
        !          19745:             "\xa6\xe0\x86\xe0\x76\xe0\xa6\xe0\x66\xe0\xc6\xe0\x46"
        !          19746:             "\xe0\xe6\xe0\x26\xe0\xe0\x16\xe0\x16\xe0\xe0\x27\xd7"
        !          19747:             "\xe0\xe0\x36\xc7\xe0\xe0\x47\xa7\xe0\xe0\x57\x97\xe0"
        !          19748:             "\xe0\x67\x97\xe0\xe0\x68\x77\xe0\xe0\x87\x68\xe0\xe0"
        !          19749:             "\x87\x67\xe0\xe0\x97\x58\xe0\xe0\x97\x57\xe0\xe0\xa7"
        !          19750:             "\x48\xe0\xe0\xa7\x47\xe0\xe0\xa8\xf1\x38\xe0\xe0\xa8"
        !          19751:             "\xf2\x28\xe0\xe0\xb8\xf3\x18\xe0\xe0\xb8\x1f\x28\xe0"
        !          19752:             "\xe0\xb8\x2f\x18\xe0\xe0\xa8\x38\xe0\xe0\xa7\x48\xe0"
        !          19753:             "\xe0\x98\x48\xe0\xe0\x97\x58\xe0\xe0\x88\x58\xe0\xe0"
        !          19754:             "\x87\x68\xe0\xe0\x77\x87\xe0\xe0\x77\x87\xe0\xe0\x67"
        !          19755:             "\x97\xe0\xe0\x57\xa7\xe5\xe6\xc6\xc9\xb6\xd7\xa3\x53"
        !          19756:             "\x96\xe0\x16\x93\x72\x86\xe0\x27\x73\x83\x66\xe0\x46"
        !          19757:             "\x72\xa2\x56\xe0\x66\x53\xa2\x46\xe0\x86\x42\xb2\x36"
        !          19758:             "\xe0\xa6\x32\xb9\xe0\xd6\x22\xb8\xe0\xe0\x16\x13\x97"
        !          19759:             "\xe0\xe0\x58\x68\xe2\xe0\x7e\x05\xe0\x12\xe0\xaa\x33"
        !          19760:             "\xe3\xe0\xe0\x93\xe2\xe0\xe0\xa4\xc3\xe0\xe0\xa4\xb4"
        !          19761:             "\xe0\xe0\xa4\xa4\xe0\xe0\xb5\x85\xe0\xe0\xb6\x56\xe0"
        !          19762:             "\xe0\xce\x03\xb0\xf1\xe0\xe0\x1e\x02\xc0\xe0\xe0\x1e"
        !          19763:             "\x01\xe0\xe0\xee\xe0\xe0\xe0\x2c\xe0\xe0\xe0\x49\xe0"
        !          19764:             "\xe0\xe0\x85\xe0\x56" }  },
        !          19765:       /* --- pixel bitmap for cmmi600 char#82 R --- */
        !          19766:       {  82,23942,                      /* character number, location */
        !          19767:          57, 3,   -2, 3,      /* topleft row,col, and botleft row,col */
        !          19768:           { 60,   59, 3,445, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          19769:             "\xde\x0e\x05\xe0\xde\x0e\x08\xe0\xae\x0e\x0b\xe0\xe0"
        !          19770:             "\x18\xe0\x19\xe0\xe7\xe0\x58\xe0\xc7\xe0\x68\x40\xf1"
        !          19771:             "\xe0\x68\xe0\x87\x30\xf1\xe0\x67\xe0\xa7\x20\xf1\xe0"
        !          19772:             "\x58\xe0\xa8\x10\xf1\xe0\x57\xe0\xb8\x10\xe0\x48\xe0"
        !          19773:             "\xb8\xe0\x58\xe0\xa8\x20\xf1\xe0\x47\xe0\xb8\x20\xe0"
        !          19774:             "\x38\xe0\xa8\xe0\x68\xe0\xa7\xe0\x77\xe0\xa7\xe0\x87"
        !          19775:             "\xe0\x97\xe0\x88\xe0\x87\xe0\x98\xe0\x77\xe0\xa7\xe0"
        !          19776:             "\x76\xe0\xc7\xe0\x47\xe0\xd8\xe0\x18\xe0\xe0\x1e\x0e"
        !          19777:             "\xe0\xe0\x4e\x0c\xe0\xe0\x67\xe7\xe0\xe0\x38\xe0\x27"
        !          19778:             "\xe0\xe0\x18\xe0\x46\xe0\xe7\xe0\x57\xe0\xd7\xe0\x67"
        !          19779:             "\xe0\xb8\xe0\x67\xe0\xb8\xe0\x76\xe0\xb7\xe0\x86\xe0"
        !          19780:             "\xb7\xe0\x87\xe0\x98\xe0\x78\xe0\x98\xe0\x77\xc0\xf1"
        !          19781:             "\xc7\xe0\x87\xc0\xf1\xb8\xe0\x78\xc0\xf1\xb7\xe0\x88"
        !          19782:             "\xc0\xa8\xe0\x88\xe0\x88\xe0\x79\xc0\xf1\xa7\xe0\x88"
        !          19783:             "\xb2\x98\xe0\x88\xa3\x98\xe0\x88\xa2\xa7\xe0\x98\x93"
        !          19784:             "\x99\xe0\x97\x92\x2e\x0a\xe0\x27\x83\x2e\x0a\xe0\x37"
        !          19785:             "\x63\x3e\x0a\xe0\x46\x53\xe0\xe0\xe0\x6b\xe0\xe0\xe0"
        !          19786:             "\x97\x70" }  },
        !          19787:       /* --- pixel bitmap for cmmi600 char#83 S --- */
        !          19788:       {  83,25221,                      /* character number, location */
        !          19789:          59, 5,   -2, 5,      /* topleft row,col, and botleft row,col */
        !          19790:           { 49,   61, 3,381, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          19791:             "\xe0\xc9\xb3\xe0\x9e\x92\xe0\x8e\x04\x63\xe0\x76\x86"
        !          19792:             "\x44\xe0\x56\xd4\x25\xe0\x45\xe0\x29\xe0\x45\xe0\x48"
        !          19793:             "\xe0\x35\xe0\x67\xe0\x25\xe0\x86\xe0\x24\xe0\x95\xe0"
        !          19794:             "\x25\xe0\xa4\x30\xf1\xc5\xe0\xb4\x30\xb6\xe0\xb3\x40"
        !          19795:             "\xf2\xb5\xe0\xc3\x40\xf1\xa6\xe0\xc2\x50\xa7\xe0\xb2"
        !          19796:             "\xe0\x17\xe0\xe0\x40\xf1\xa8\xe0\xe0\x30\xb9\xe0\xe0"
        !          19797:             "\xcc\xe0\xe0\x9e\x01\xe0\xe0\x7e\x04\xe0\xe0\x3e\x07"
        !          19798:             "\xe0\xe0\x1e\x08\xe0\xee\x09\xe0\xee\x08\xe0\xe0\x1e"
        !          19799:             "\x06\xe0\xe0\x5e\x03\xe0\xe0\x7e\xe0\xe0\xbb\xe0\xe0"
        !          19800:             "\xc9\xe0\xe0\xd8\xe0\xe0\xe7\x90\xf2\xe0\xe0\x66\x90"
        !          19801:             "\xf2\x42\xe0\xe0\x15\x90\x33\xe0\xe6\x90\xf2\x33\xe0"
        !          19802:             "\xe5\xa0\xf1\x24\xe0\xd5\xb0\x24\xe0\xc5\xe5\xe0\xa5"
        !          19803:             "\xe6\xe0\xa5\xe7\xe0\x85\xe0\x18\xe0\x65\xe0\x29\xe0"
        !          19804:             "\x45\xe0\x25\x25\xe6\xe0\x34\x47\x96\xe0\x53\x7e\x05"
        !          19805:             "\xe0\x63\x9e\x01\xe0\x82\xd9\xe0\xb2" }  },
        !          19806:       /* --- pixel bitmap for cmmi600 char#84 T --- */
        !          19807:       {  84,26451,                      /* character number, location */
        !          19808:          57, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          19809:           { 56,   57, 3,383, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          19810:             "\xf1\x6e\x0e\x0e\x08\x5e\x0e\x0e\x09\x58\xe8\xd8\x55"
        !          19811:             "\xe0\x37\xe0\x26\x45\xe0\x47\xe0\x34\x54\xe0\x48\xe0"
        !          19812:             "\x43\x44\xe0\x58\xe0\x43\x10\xf1\x33\xe0\x67\xe0\x53"
        !          19813:             "\x10\xf1\x23\xe0\x68\xe0\x53\x10\x22\xe0\x77\xe0\x63"
        !          19814:             "\x23\xe0\x77\xe0\x62\x32\xe0\x78\xe0\x62\x23\xe0\x78"
        !          19815:             "\xe0\x62\x2f\x12\xe0\x87\xe0\x72\x22\xe0\x78\xe0\x72"
        !          19816:             "\xe0\xb8\xe0\xb0\xf1\xe0\x97\xe0\xc0\xf1\xe0\x88\xe0"
        !          19817:             "\xc0\xf1\xe0\x87\xe0\xd0\xf1\xe0\x78\xe0\xd0\xf1\xe0"
        !          19818:             "\x77\xe0\xe0\xf1\xe0\x68\xe0\xe0\xf1\xe0\x67\xe0\xe0"
        !          19819:             "\x10\xf1\xe0\x58\xe0\xe0\x10\xf1\xe0\x57\xe0\xe0\x20"
        !          19820:             "\xf1\xe0\x48\xe0\xe0\x20\xf1\xe0\x47\xe0\xe0\x30\xf1"
        !          19821:             "\xe0\x38\xe0\xe0\x30\xf1\xe0\x37\xe0\xe0\x40\xf1\xe0"
        !          19822:             "\x28\xe0\xe0\x40\xf1\xe0\x27\xe0\xe0\x50\xf1\xe0\x18"
        !          19823:             "\xe0\xe0\x50\xe0\x17\xe0\xe0\xe0\x5a\xe0\xe0\x50\xf1"
        !          19824:             "\x2e\x0e\x04\xe0\x80\x2e\x0e\x03\xe0\x97" }  },
        !          19825:       /* --- pixel bitmap for cmmi600 char#85 U --- */
        !          19826:       {  85,27631,                      /* character number, location */
        !          19827:          57, 5,   -2, 5,      /* topleft row,col, and botleft row,col */
        !          19828:           { 59,   59, 2,245, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          19829:             "\xff\x01\x01\x19\x0d\x14\x01\x18\x0e\x13\x0a\x08\x1b"
        !          19830:             "\x09\x0f\x07\x1e\x05\x11\x07\x1e\x04\x09\x00\xff\x01"
        !          19831:             "\x08\x08\x1e\x03\x0a\x00\xff\x01\x08\x07\x1f\x02\x0b"
        !          19832:             "\x00\x07\x08\x1e\x03\x12\x08\x1e\x02\x0c\x00\xff\x01"
        !          19833:             "\x07\x07\x1f\x02\x0c\x00\x06\x08\x1e\x03\x12\x08\x1e"
        !          19834:             "\x02\x0d\x00\xff\x01\x06\x07\x1f\x02\x0d\x00\x05\x08"
        !          19835:             "\x1e\x03\x12\x08\x1e\x02\x0e\x00\xff\x01\x05\x07\x1f"
        !          19836:             "\x02\x0e\x00\x04\x08\x1e\x03\x12\x08\x1e\x02\x0f\x00"
        !          19837:             "\xff\x01\x04\x07\x1f\x02\x0f\x00\x03\x08\x1e\x03\x12"
        !          19838:             "\x08\x1e\x02\x10\x00\xff\x01\x03\x07\x1f\x02\x10\x00"
        !          19839:             "\x02\x08\x1e\x03\x12\x08\x1e\x02\x11\x00\xff\x01\x02"
        !          19840:             "\x07\x1f\x02\x11\x00\x01\x08\x1e\x03\x12\x08\x1e\x02"
        !          19841:             "\x12\x00\xff\x01\x01\x07\x1f\x02\x12\x00\x01\x07\x1e"
        !          19842:             "\x03\x12\x08\x1e\x02\x13\x07\x1f\x02\x13\x07\x1e\x03"
        !          19843:             "\x13\x07\x1e\x02\x14\x07\x1d\x03\x14\x07\x1d\x02\x15"
        !          19844:             "\x07\x1c\x03\x15\x07\x1b\x03\x17\x06\x1b\x03\x17\x06"
        !          19845:             "\x1a\x03\x18\x07\x18\x03\x1a\x06\x17\x03\x1b\x07\x15"
        !          19846:             "\x03\x1d\x06\x13\x04\x1f\x06\x11\x04\x21\x06\x0e\x05"
        !          19847:             "\x23\x08\x07\x07\x27\x12\x2b\x0e\x30\x08\x26" }  },
        !          19848:       /* --- pixel bitmap for cmmi600 char#86 V --- */
        !          19849:       {  86,28753,                      /* character number, location */
        !          19850:          57, 4,   -2, 4,      /* topleft row,col, and botleft row,col */
        !          19851:           { 59,   59, 3,467, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          19852:             "\x1e\x08\xe0\x5e\x0e\x0c\xe0\x5e\x0e\x0b\xe0\x6e\x03"
        !          19853:             "\x79\xe0\xe0\x28\xc8\xe0\xe0\x45\xe0\x17\xe0\xe0\x44"
        !          19854:             "\xe0\x27\xe0\xe0\x43\xe0\x37\xe0\xe0\x42\xa0\xf1\x87"
        !          19855:             "\xe0\xe0\x32\xb0\x87\xe0\xe0\x22\xc0\xf1\x88\xe0\xe2"
        !          19856:             "\xd0\x97\xe0\xd2\xe0\x97\xe0\xc3\xe0\x97\xe0\xc2\xe0"
        !          19857:             "\x10\xf1\x97\xe0\xb2\xe0\x20\x97\xe0\xa2\xe0\x30\xf1"
        !          19858:             "\x98\xe0\x82\xe0\x40\xa7\xe0\x72\xe0\xe0\x17\xe0\x63"
        !          19859:             "\xe0\xe0\x17\xe0\x62\xe0\x60\xf1\xa7\xe0\x52\xe0\x70"
        !          19860:             "\xa7\xe0\x42\xe0\x80\xf1\xa8\xe0\x22\xe0\x90\xb7\xe0"
        !          19861:             "\x12\xe0\xe0\x77\xe3\xe0\xe0\x77\xe2\xe0\xe0\x87\xd2"
        !          19862:             "\xe0\xe0\x97\xc3\xe0\xe0\x98\xb2\xe0\xe0\xa8\xa2\xe0"
        !          19863:             "\xe0\xc7\xa2\xe0\xe0\xc7\x92\xe0\xe0\x10\xf1\xc7\x82"
        !          19864:             "\xe0\xe0\x20\xc7\x72\xe0\xe0\xe0\x17\x63\xe0\xe0\xe0"
        !          19865:             "\x18\x52\xe0\xe0\xe0\x28\x42\xe0\xe0\xe0\x47\x42\xe0"
        !          19866:             "\xe0\xe0\x47\x32\xe0\xe0\x60\xf1\xd7\x22\xe0\xe0\x70"
        !          19867:             "\xd7\x12\xe0\xe0\xe0\x7a\xe0\xe0\xe0\x79\xe0\xe0\xe0"
        !          19868:             "\x88\xe0\xe0\xe0\xa7\xe0\xe0\xe0\xa6\xe0\xe0\xb0\xf1"
        !          19869:             "\xe5\xe0\xe0\xc0\xf1\xe4\xe0\xe0\xd0\xe3\xe0\xe0\xe8" }  },
        !          19870:       /* --- pixel bitmap for cmmi600 char#87 W --- */
        !          19871:       {  87,30317,                      /* character number, location */
        !          19872:          57, 4,   -2, 4,      /* topleft row,col, and botleft row,col */
        !          19873:           { 82,   59, 3,719, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          19874:             "\x1e\x07\xae\x08\xbe\x0e\x0b\xae\x08\xbe\x0e\x0b\xae"
        !          19875:             "\x07\xce\x03\x6a\xe0\x89\xe0\x89\xb7\xe0\xa8\xe0\xa6"
        !          19876:             "\xd7\xe0\xa7\xe0\xc4\xe7\xe0\xa8\xe0\xb3\xe0\x17\xe0"
        !          19877:             "\xb7\xe0\xb2\xe0\x27\xe0\xb7\xe0\xa2\xe0\x37\xe0\xa8"
        !          19878:             "\xe0\xa2\xa0\xf1\x77\xe0\x99\xe0\x92\xb0\x77\xe0\x82"
        !          19879:             "\x17\xe0\x82\xe0\x57\xe0\x82\x17\xe0\x73\xe0\x57\xe0"
        !          19880:             "\x72\x27\xe0\x72\xe0\x67\xe0\x72\x27\xe0\x62\xe0\x78"
        !          19881:             "\xe0\x52\x37\xe0\x62\xe0\x78\xe0\x52\x37\xe0\x52\xe0"
        !          19882:             "\x97\xe0\x42\x47\xe0\x52\xe0\x97\xe0\x32\x57\xe0\x42"
        !          19883:             "\xe0\xa7\xe0\x32\x57\xe0\x33\xe0\xa7\xe0\x22\x68\xe0"
        !          19884:             "\x22\xe0\xb7\xe0\x22\x68\xe0\x12\xe0\xc7\xe0\x12\x87"
        !          19885:             "\xe0\x12\xe0\xc7\xe0\x12\x87\xe2\xe0\xd7\xe2\x97\xe2"
        !          19886:             "\xe0\xd7\xd3\x97\xd2\xe0\xe7\xd2\xa7\xd2\xe0\xe7\xc2"
        !          19887:             "\xb7\xc2\xe0\xe0\x17\xc2\xb7\xb3\xe0\xe0\x17\xb2\xc7"
        !          19888:             "\xb2\xe0\xe0\x27\xb2\xc7\xa2\xe0\xe0\x38\x92\xd7\xa2"
        !          19889:             "\xe0\xe0\x47\x83\xd7\x92\xe0\xe0\x57\x82\xe7\x92\xe0"
        !          19890:             "\xe0\x57\x72\xe0\x17\x82\xe0\xe0\x67\x72\xe0\x17\x73"
        !          19891:             "\xe0\xe0\x67\x62\xe0\x28\x62\xe0\xe0\x77\x62\xe0\x28"
        !          19892:             "\x52\xe0\xe0\x87\x52\xe0\x47\x52\xe0\xe0\x87\x52\xe0"
        !          19893:             "\x47\x42\xe0\xe0\x97\x42\xe0\x57\x42\xe0\xe0\x97\x33"
        !          19894:             "\xe0\x57\x32\xe0\xe0\xa7\x32\xe0\x67\x32\xe0\xe0\xa7"
        !          19895:             "\x22\xe0\x77\x22\xe0\xe0\xb7\x22\xe0\x77\x12\xe0\xe0"
        !          19896:             "\xc7\x12\xe0\x87\x12\xe0\xe0\xca\xe0\x89\xe0\xe0\xd9"
        !          19897:             "\xe0\x99\xe0\xe0\xe8\xe0\x98\xe0\xe0\xe0\x17\xe0\xa8"
        !          19898:             "\xe0\xe0\x50\xf1\xa6\xe0\xb7\xe0\xe0\x60\xa5\xe0\xc6"
        !          19899:             "\xe0\xe0\xe0\x35\xe0\xc5\xe0\xe0\xe0\x44\xe0\xe4\xe0"
        !          19900:             "\xe0\xe0\x44\xe0\xe3\xe0\xe0\xe0\x53\xe0\xe0\x13\xe0"
        !          19901:             "\xe0\xe0\x52\xe0\xe0\x22\xe0\xe0\xa5" }  },
        !          19902:       /* --- pixel bitmap for cmmi600 char#88 X --- */
        !          19903:       {  88,31852,                      /* character number, location */
        !          19904:          57, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          19905:           { 68,   57, 2,213, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          19906:             "\xff\x01\x0f\x17\x0b\x13\x0f\x16\x0c\x13\x16\x0b\x13"
        !          19907:             "\x0b\x1c\x09\x15\x07\x1f\x08\x17\x04\x22\x08\x15\x04"
        !          19908:             "\x23\x08\x15\x02\x25\x08\x14\x02\x27\x08\x12\x02\x28"
        !          19909:             "\x08\x11\x02\x2a\x08\x0f\x02\x2b\x08\x0e\x02\x2d\x07"
        !          19910:             "\x0d\x03\x2d\x08\x0b\x03\x2e\x08\x0a\x03\x30\x08\x08"
        !          19911:             "\x03\x31\x08\x07\x03\x33\x07\x06\x03\x34\x08\x05\x02"
        !          19912:             "\x35\x08\x04\x02\x37\x08\x02\x02\x38\x08\x01\x02\x3a"
        !          19913:             "\x09\x3b\x08\x3d\x07\x1d\x00\xff\x01\x20\x08\x1c\x00"
        !          19914:             "\x21\x08\x3b\x09\x3a\x0a\x39\x03\x01\x08\x37\x03\x02"
        !          19915:             "\x08\x37\x02\x04\x08\x35\x02\x05\x08\x34\x02\x07\x08"
        !          19916:             "\x32\x02\x08\x08\x31\x02\x0a\x07\x30\x02\x0b\x08\x2e"
        !          19917:             "\x02\x0c\x08\x2d\x02\x0e\x08\x2b\x03\x0e\x08\x2a\x03"
        !          19918:             "\x10\x07\x29\x03\x11\x08\x27\x03\x12\x08\x26\x03\x14"
        !          19919:             "\x08\x24\x03\x15\x08\x24\x02\x17\x08\x21\x03\x18\x08"
        !          19920:             "\x20\x03\x19\x08\x1f\x04\x1a\x08\x1d\x04\x1b\x08\x1b"
        !          19921:             "\x07\x1a\x09\x17\x0a\x18\x0c\x11\x13\x10\x16\x0a\xff"
        !          19922:             "\x01\x14\x10\x16\x0a" }  },
        !          19923:       /* --- pixel bitmap for cmmi600 char#89 Y --- */
        !          19924:       {  89,33114,                      /* character number, location */
        !          19925:          57, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          19926:           { 60,   57, 2,187, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          19927:             "\xff\x01\x00\x17\x14\x11\x00\x16\x15\x11\x07\x0a\x1d"
        !          19928:             "\x09\x0c\x09\x1f\x05\x10\x08\x1f\x04\x11\x08\x1e\x04"
        !          19929:             "\x13\x08\x1d\x03\x14\x08\x1c\x03\x15\x08\x1b\x03\x17"
        !          19930:             "\x08\x19\x03\x18\x08\x18\x03\x1a\x08\x17\x02\x1b\x08"
        !          19931:             "\x16\x02\x1c\x08\x15\x02\x1e\x08\x13\x02\x1f\x08\x12"
        !          19932:             "\x03\x1f\x08\x11\x03\x21\x08\x0f\x03\x22\x08\x0f\x02"
        !          19933:             "\x24\x08\x0d\x02\x25\x08\x0c\x02\x26\x08\x0b\x02\x28"
        !          19934:             "\x08\x09\x03\x28\x08\x08\x03\x29\x08\x08\x02\x2b\x08"
        !          19935:             "\x06\x02\x2c\x08\x05\x02\x2e\x08\x03\x02\x2f\x08\x02"
        !          19936:             "\x02\x30\x08\x01\x03\x31\x0a\x32\x09\x33\x08\x35\x06"
        !          19937:             "\x23\x00\xff\x02\x12\x07\x23\x00\x12\x06\x24\x00\xff"
        !          19938:             "\x02\x11\x07\x24\x00\x11\x06\x25\x00\xff\x02\x10\x07"
        !          19939:             "\x25\x00\x10\x06\x26\x00\xff\x02\x0f\x07\x26\x00\x0f"
        !          19940:             "\x06\x27\x00\xff\x01\x0e\x07\x27\x00\x0d\x08\x27\x00"
        !          19941:             "\xff\x02\x05\x18\x1f" }  },
        !          19942:       /* --- pixel bitmap for cmmi600 char#90 Z --- */
        !          19943:       {  90,34361,                      /* character number, location */
        !          19944:          57, 5,    0, 5,      /* topleft row,col, and botleft row,col */
        !          19945:           { 55,   57, 2,187, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          19946:             "\xff\x01\x10\x27\x0f\x28\x0f\x0c\x13\x08\x10\x08\x16"
        !          19947:             "\x08\x10\x07\x17\x08\x11\x06\x17\x08\x12\x05\x17\x08"
        !          19948:             "\x13\x04\x17\x08\x13\x04\x17\x08\x14\x03\x18\x08\x14"
        !          19949:             "\x03\x17\x08\x14\x03\x17\x08\x15\x03\x16\x08\x16\x02"
        !          19950:             "\x16\x08\x16\x03\x15\x08\x17\x02\x15\x08\x18\x02\x14"
        !          19951:             "\x08\x19\x02\x13\x08\x2f\x08\x2e\x08\x2e\x08\x2e\x08"
        !          19952:             "\x2e\x08\x2e\x08\x2e\x08\x2e\x08\x2f\x07\x2f\x08\x2e"
        !          19953:             "\x08\x2e\x08\x2e\x08\x2e\x08\x2e\x08\x2e\x08\x1d\x00"
        !          19954:             "\xff\x01\x11\x08\x14\x02\x08\x00\x10\x08\x15\x02\x17"
        !          19955:             "\x08\x15\x03\x16\x08\x16\x02\x16\x08\x17\x02\x15\x08"
        !          19956:             "\x17\x03\x14\x08\x18\x02\x14\x08\x18\x03\x13\x08\x19"
        !          19957:             "\x03\x13\x08\x18\x04\x12\x08\x19\x03\x12\x08\x19\x04"
        !          19958:             "\x11\x08\x19\x05\x10\x08\x19\x05\x10\x08\x19\x06\x0f"
        !          19959:             "\x08\x19\x07\x0e\x08\x18\x08\x0f\x07\x15\x0c\x0e\x29"
        !          19960:             "\x0d\x2a\x0d\x29\x0e" }  },
        !          19961:       /* --- pixel bitmap for cmmi600 char#91 \flat --- */
        !          19962:       {  91,136575,                     /* character number, location */
        !          19963:          62, 5,   -2, 5,      /* topleft row,col, and botleft row,col */
        !          19964:           { 22,   64, 3,137, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          19965:             "\xfe\x02\xe0\x6f\x72\xe0\x62\x82\xa2\x4a\x62\x2d\x52"
        !          19966:             "\x1e\x02\x35\x87\x24\xa6\x23\xb7\x12\xc7\x1f\x82\xd7"
        !          19967:             "\x0f\x22\xc7\x1f\x22\xb7\x2f\x12\xa7\x32\x97\x42\x96"
        !          19968:             "\x52\x86\x62\x77\x62\x76\x72\x66\x82\x56\x92\x55\xa2"
        !          19969:             "\x45\xb2\x35\xc2\x25\xd2\x14\xe0\x16\xe0\x25\xe0\x33"
        !          19970:             "\xe0\x52\xe0\x64" }  },
        !          19971:       /* --- pixel bitmap for cmmi600 char#92 \natural --- */
        !          19972:       {  92,137484,                     /* character number, location */
        !          19973:          61, 7,  -18, 7,      /* topleft row,col, and botleft row,col */
        !          19974:           { 18,   79, 3,94, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          19975:             "\xfe\x02\xe0\x2f\x22\xe0\x22\xe4\xc6\x99\x7b\x5d\x2e"
        !          19976:             "\x0f\x1e\x04\x0e\x2d\x5b\x79\x96\xc2\x0f\xe2\xe2\x0f"
        !          19977:             "\x82\xe2\x02\xc6\x99\x7b\x5d\x2e\x0f\x1e\x04\x0e\x2d"
        !          19978:             "\x5b\x79\x96\xc4\xe2\xfa\xe0\x22" }  },
        !          19979:       /* --- pixel bitmap for cmmi600 char#93 \sharp --- */
        !          19980:       {  93,138533,                     /* character number, location */
        !          19981:          60, 5,  -18, 5,      /* topleft row,col, and botleft row,col */
        !          19982:           { 22,   78, 3,167, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          19983:             "\xf4\xe0\x32\x30\xfb\x32\xc2\x30\x32\xc2\x12\x32\xc5"
        !          19984:             "\x32\x98\x32\x6b\x32\x3e\x3e\x05\x2e\x0e\x0c\x2e\x05"
        !          19985:             "\x3e\x32\x3b\x62\x38\x92\x35\xc2\x32\x12\xc2\x30\xfe"
        !          19986:             "\x32\xc2\x30\xf6\x32\xc2\x30\x32\xc2\x12\x32\xc5\x32"
        !          19987:             "\x98\x32\x6b\x32\x3e\x3e\x05\x2e\x0e\x0c\x2e\x05\x3e"
        !          19988:             "\x32\x3b\x62\x38\x92\x35\xc2\x32\x12\xc2\x30\xf5\x32"
        !          19989:             "\xc2\x30\xf4\x32\xe0\x30" }  },
        !          19990:       /* --- pixel bitmap for cmmi600 char#94 \smile --- */
        !          19991:       {  94,139667,                     /* character number, location */
        !          19992:          31, 5,   11, 5,      /* topleft row,col, and botleft row,col */
        !          19993:           { 73,   20, 2,71, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          19994:             "\x00\x02\x45\x05\x43\x03\xff\x01\x01\x03\x41\x03\x01"
        !          19995:             "\x00\x02\x03\x3f\x03\x05\x03\x3d\x03\x07\x03\x3b\x03"
        !          19996:             "\x09\x04\x37\x04\x0b\x04\x35\x04\x0d\x04\x33\x04\x10"
        !          19997:             "\x04\x2f\x04\x13\x05\x2b\x05\x15\x06\x27\x06\x18\x07"
        !          19998:             "\x21\x07\x1c\x08\x1b\x08\x20\x0c\x0f\x0c\x24\x23\x29"
        !          19999:             "\x1d\x2f\x17\x37\x0d\x1e" }  },
        !          20000:       /* --- pixel bitmap for cmmi600 char#95 \frown --- */
        !          20001:       {  95,140593,                     /* character number, location */
        !          20002:          32, 5,   11, 5,      /* topleft row,col, and botleft row,col */
        !          20003:           { 73,   21, 2,74, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          20004:             "\x1e\x0d\x37\x17\x2f\x1d\x2a\x21\x25\x0c\x0f\x0c\x20"
        !          20005:             "\x09\x19\x09\x1d\x07\x1f\x07\x1a\x06\x25\x06\x17\x05"
        !          20006:             "\x29\x05\x14\x05\x2d\x05\x11\x04\x31\x04\x0f\x04\x33"
        !          20007:             "\x04\x0d\x03\x37\x03\x0b\x03\x39\x03\x09\x03\x3b\x03"
        !          20008:             "\x07\x03\x3d\x03\x05\x03\x3f\x03\x03\x03\x41\x03\x02"
        !          20009:             "\x02\x43\x02\x01\x03\x43\x05\x45\x02" }  },
        !          20010:       /* --- pixel bitmap for cmmi600 char#96 \ell --- */
        !          20011:       {  96,110603,                     /* character number, location */
        !          20012:          59, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
        !          20013:           { 32,   60, 3,309, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          20014:             "\xe0\xb5\xe0\xb8\xe0\x94\x33\xe0\x74\x52\xe0\x64\x62"
        !          20015:             "\xe0\x54\x72\xe0\x45\x72\xe0\x44\x82\xe0\x35\x82\xf1"
        !          20016:             "\xe0\x25\x92\xe0\x15\xa2\xe0\x15\x93\xf1\xe5\xa2\x10"
        !          20017:             "\xd6\xa2\xe5\xa3\xd6\xa2\xe6\x93\xd6\xa2\xe6\x93\xe6"
        !          20018:             "\x92\xe6\x93\xe6\x92\xe0\x16\x83\xe7\x73\xe0\x16\x82"
        !          20019:             "\xe0\x26\x73\xe0\x26\x63\xe0\x27\x62\xe0\x36\x63\xe0"
        !          20020:             "\x36\x53\xe0\x46\x43\xe0\x47\x33\xe0\x56\x33\xe0\x66"
        !          20021:             "\x32\xe0\x76\x23\xe0\x76\x13\xe0\x85\x13\xe0\x98\xe0"
        !          20022:             "\xa7\xe0\xa7\xe0\x50\xf1\x66\xe0\x60\x75\xe0\xc6\xe0"
        !          20023:             "\xb7\xe0\xa8\xe0\x93\x15\xe0\x83\x25\xe0\x73\x35\xe0"
        !          20024:             "\x63\x45\xe0\x32\x11\x74\xe0\x14\x94\xe3\xc4\xc3\xd4"
        !          20025:             "\xb3\xe0\x14\x84\xe0\x34\x54\xe0\x6a\xe0\xa6\xc0" }  },
        !          20026:       /* --- pixel bitmap for cmmi600 char#97 a --- */
        !          20027:       {  97,35459,                      /* character number, location */
        !          20028:          37, 4,   -1, 4,      /* topleft row,col, and botleft row,col */
        !          20029:           { 38,   38, 3,217, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          20030:             "\xe0\x26\xe0\xe0\x2a\xe0\xc5\x53\x43\xe0\x26\x73\x16"
        !          20031:             "\xe6\x99\xd6\xb8\xc6\xc8\xb6\xe6\xb7\xe6\xb6\xe0\x16"
        !          20032:             "\xa6\xe0\x17\x60\xf1\x37\xe0\x16\x70\x27\xe0\x26\x97"
        !          20033:             "\xe0\x17\x88\xe0\x16\x80\xf1\x17\xe0\x26\x80\x17\xe0"
        !          20034:             "\x17\x88\xe0\x16\x9f\x17\xe0\x26\x97\xe0\x17\x97\xe0"
        !          20035:             "\x16\xaf\x16\xe0\x26\x82\x06\xe0\x17\x73\x0f\x16\xe0"
        !          20036:             "\x16\x82\x16\xe7\x82\x25\xe7\x73\x25\xd8\x72\x36\xb9"
        !          20037:             "\x63\x45\xa3\x25\x62\x65\x74\x35\x53\x75\x53\x65\x33"
        !          20038:             "\xaa\x89\xd6\xc5\x77" }  },
        !          20039:       /* --- pixel bitmap for cmmi600 char#98 b --- */
        !          20040:       {  98,36457,                      /* character number, location */
        !          20041:          58, 4,   -1, 4,      /* topleft row,col, and botleft row,col */
        !          20042:           { 31,   59, 3,259, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          20043:             "\xa6\xe0\x10\xf2\x3d\xe0\x10\x97\xe0\x10\xf2\x96\xe0"
        !          20044:             "\x20\x87\xe0\x20\xf2\x86\xe0\x30\x77\xe0\x30\xf2\x76"
        !          20045:             "\xe0\x40\x67\xe0\x40\xf2\x66\xe0\x50\x57\xe0\xa6\x66"
        !          20046:             "\xd6\x4a\xb6\x24\x55\x87\x13\x85\x7a\xa5\x68\xc5\x67"
        !          20047:             "\xd6\x47\xe0\x15\x47\xe0\x16\xf1\x36\xe0\x26\x27\xe0"
        !          20048:             "\x26\xf1\x26\xe0\x36\x26\xe0\x27\x17\xe0\x27\xf1\x16"
        !          20049:             "\xe0\x37\x16\xe0\x2e\x01\xe0\x28\x0f\x16\xe0\x37\x16"
        !          20050:             "\xe0\x28\x16\xe0\x27\x25\xe0\x37\x2f\x15\xe0\x27\x35"
        !          20051:             "\xe0\x17\x45\xe0\x16\x55\xe7\x65\xd6\x75\xc6\x85\xb6"
        !          20052:             "\xa5\x96\xc4\x85\xe0\x15\x46\xe0\x4b\xe0\x86\xe0\x30" }  },
        !          20053:       /* --- pixel bitmap for cmmi600 char#99 c --- */
        !          20054:       {  99,37434,                      /* character number, location */
        !          20055:          37, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          20056:           { 33,   38, 3,155, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          20057:             "\xe0\x57\xe0\x9d\xe0\x46\x64\xe0\x15\xb3\xc6\xd3\xa6"
        !          20058:             "\xe3\x96\xc6\x86\xc7\x76\xd7\x66\xe7\x57\xe7\x56\xe0"
        !          20059:             "\x16\x57\xe0\x90\xf1\x27\xe0\xa0\x18\xe0\xa0\xf2\x17"
        !          20060:             "\xe0\xb8\xe0\xbf\x47\xe0\xcf\x16\xe0\xd6\xe0\xb8\xe0"
        !          20061:             "\xa3\x16\xe0\x92\x26\xe0\x83\x35\xe0\x64\x46\xe0\x43"
        !          20062:             "\x76\xe0\x14\x95\xd4\xd5\x85\xe0\x2e\x01\xe0\x79\xe6" }  },
        !          20063:       /* --- pixel bitmap for cmmi600 char#100 d --- */
        !          20064:       { 100,38484,                      /* character number, location */
        !          20065:          58, 4,   -1, 4,      /* topleft row,col, and botleft row,col */
        !          20066:           { 39,   59, 3,317, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          20067:             "\xe0\xe0\x56\xf2\xe0\xcd\xe0\xe0\x47\xf1\xe0\xe0\x46"
        !          20068:             "\x10\xf1\xe0\xe0\x37\x10\xf1\xe0\xe0\x36\x20\xf1\xe0"
        !          20069:             "\xe0\x27\x20\xf1\xe0\xe0\x26\x30\xf1\xe0\xe0\x17\x30"
        !          20070:             "\xf1\xe0\xe0\x16\x40\xf1\xe0\xe7\x40\xe0\x26\x66\xe0"
        !          20071:             "\x5a\x46\xe0\x35\x53\x27\xe0\x16\x73\x17\xe6\x99\xe6"
        !          20072:             "\xb8\xd6\xc8\xc6\xe7\xb7\xe6\xc6\xe0\x16\xb6\xe0\x17"
        !          20073:             "\xa7\xe0\x17\xa7\xe0\x16\xa7\xe0\x26\xa7\xe0\x17\x98"
        !          20074:             "\xe0\x17\x80\xf1\x17\xe0\x26\x90\x17\xe0\x17\x98\xe0"
        !          20075:             "\x17\x9f\x17\xe0\x26\xaf\x17\xe0\x17\xaf\x16\xe0\x26"
        !          20076:             "\x82\x16\xe0\x17\x73\x16\xe0\x17\x72\x26\xe0\x16\x82"
        !          20077:             "\x26\xe7\x82\x35\xe7\x73\x35\xd8\x72\x46\xb9\x63\x55"
        !          20078:             "\xa3\x25\x62\x75\x74\x35\x53\x85\x53\x65\x33\xba\x89"
        !          20079:             "\xe6\xc5\x80" }  },
        !          20080:       /* --- pixel bitmap for cmmi600 char#101 e --- */
        !          20081:       { 101,39521,                      /* character number, location */
        !          20082:          37, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          20083:           { 33,   38, 3,173, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          20084:             "\xe0\x48\xe0\x8e\xe0\x36\x74\xe6\xa4\xc6\xc4\x96\xe0"
        !          20085:             "\x13\x86\xe0\x23\x77\xe0\x23\x67\xe0\x33\x57\xe0\x43"
        !          20086:             "\x57\xe0\x34\x47\xe0\x43\x57\xe0\x34\x47\xe0\x25\x57"
        !          20087:             "\xe5\x68\xa7\x8e\x09\xae\x04\xe0\x17\xe0\xb8\xe0\xbf"
        !          20088:             "\x57\xe0\xc0\x16\xe0\xd6\xe0\xa2\x16\xe0\x93\x16\xe0"
        !          20089:             "\x92\x35\xe0\x83\x36\xe0\x54\x55\xe0\x43\x85\xe0\x14"
        !          20090:             "\xa5\xc4\xd5\x85\xe0\x3e\xe0\x79\xe6" }  },
        !          20091:       /* --- pixel bitmap for cmmi600 char#102 f --- */
        !          20092:       { 102,40757,                      /* character number, location */
        !          20093:          59, 4,  -17, 4,      /* topleft row,col, and botleft row,col */
        !          20094:           { 42,   76, 3,305, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          20095:             "\xe0\xe0\x46\xe0\xe0\x6a\xe0\xe0\x34\x53\xe0\xe0\x14"
        !          20096:             "\x64\xe0\xd4\x56\xf1\xe0\xc5\x47\xe0\xb6\x47\xe0\xb5"
        !          20097:             "\x56\xe0\xb6\x64\x20\xf2\xe0\xa6\xc0\xf4\xe0\x96\xd0"
        !          20098:             "\xe0\x87\xd0\xf3\xe0\x86\xe0\xf2\xde\x0a\x50\xf1\xe0"
        !          20099:             "\x76\xe0\x10\xe0\x67\xe0\x10\xf3\xe0\x66\xe0\x20\xf1"
        !          20100:             "\xe0\x57\xe0\x20\xf3\xe0\x56\xe0\x30\xe0\x47\xe0\x30"
        !          20101:             "\xf3\xe0\x46\xe0\x40\xe0\x37\xe0\x40\xf3\xe0\x36\xe0"
        !          20102:             "\x50\xe0\x27\xe0\x50\xf4\xe0\x26\xe0\x60\xf3\xe0\x16"
        !          20103:             "\xe0\x70\xe0\x15\xe0\x80\xf2\xe6\xe0\x80\xf1\xe5\xe0"
        !          20104:             "\x90\xd6\xe0\xc3\x75\xe0\xb6\x65\xe0\xb6\x64\xe0\xb7"
        !          20105:             "\x55\xe0\xb7\x54\xe0\xc7\x44\xe0\xe4\x54\xe0\xe0\x14"
        !          20106:             "\x44\xe0\xe0\x3a\xe0\xe0\x75\xe0\xe0\x45" }  },
        !          20107:       /* --- pixel bitmap for cmmi600 char#103 g --- */
        !          20108:       { 103,41876,                      /* character number, location */
        !          20109:          37, 2,  -17, 2,      /* topleft row,col, and botleft row,col */
        !          20110:           { 38,   54, 3,293, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          20111:             "\xe0\x76\xe0\xe0\x1b\xe0\xb6\x53\x43\xe0\x25\x83\x16"
        !          20112:             "\xd6\xa9\xc6\xc8\xb6\xd8\xa6\xe0\x17\x97\xe0\x16\xa6"
        !          20113:             "\xe0\x26\x96\xe0\x27\x87\xe0\x27\x87\xe0\x26\x87\xe0"
        !          20114:             "\x36\x87\xe0\x27\x78\xe0\x27\x20\xf1\x57\xe0\x36\x30"
        !          20115:             "\x57\xe0\x27\x78\xe0\x27\x30\xf1\x47\xe0\x36\x40\xf1"
        !          20116:             "\x47\xe0\x27\x40\xf1\x46\xe0\x36\x50\xf1\x46\xe0\x27"
        !          20117:             "\x50\x55\xe0\x26\xb5\xe0\x17\xb6\xd8\xc5\xc9\xc6\xa9"
        !          20118:             "\xe5\x84\x16\xe0\x15\x54\x27\xe0\x3b\x37\xe0\x56\x66"
        !          20119:             "\xe0\xe0\x46\x80\xf1\xe0\x97\x80\xf1\xe0\x96\x90\xe0"
        !          20120:             "\x87\xe0\xe0\x36\xd3\xe0\x26\xb6\xe7\xb6\xe6\xb7\xd6"
        !          20121:             "\xc7\xc6\xd7\xb6\xe0\x14\xb7\xe0\x25\x87\xe0\x6e\x02"
        !          20122:             "\xe0\xba\xe0\x8a" }  },
        !          20123:       /* --- pixel bitmap for cmmi600 char#104 h --- */
        !          20124:       { 104,42979,                      /* character number, location */
        !          20125:          58, 4,   -1, 4,      /* topleft row,col, and botleft row,col */
        !          20126:           { 42,   59, 3,333, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          20127:             "\xe6\xe0\x80\xf2\x7d\xe0\x80\xd7\xe0\x80\xf2\xd6\xe0"
        !          20128:             "\x90\xc7\xe0\x90\xf2\xc6\xe0\xa0\xb7\xe0\xa0\xf2\xb6"
        !          20129:             "\xe0\xb0\xa7\xe0\xb0\xf2\xa6\xe0\xc0\x97\xe0\xe0\x76"
        !          20130:             "\x77\xe0\x86\x5c\xe0\x56\x34\x65\xe0\x37\x14\x95\xe0"
        !          20131:             "\x26\x13\xb6\xe0\x19\xc6\xe0\x18\xe5\xe8\xe0\x15\x70"
        !          20132:             "\xf1\x77\xe0\x25\x70\x76\xe0\x26\xd7\xe0\x26\x70\xf1"
        !          20133:             "\x66\xe0\x36\x70\x66\xe0\x27\xc7\xe0\x26\x80\xf1\x56"
        !          20134:             "\xe0\x36\x80\x56\xe0\x27\xc7\xe0\x26\xd6\xe0\x36\xd6"
        !          20135:             "\xe0\x27\xd6\xe0\x26\xd7\xe0\x26\xd6\xe0\x27\x82\x36"
        !          20136:             "\xe0\x26\x92\x36\xe0\x17\x83\x27\xe0\x16\x92\x36\xe0"
        !          20137:             "\x26\x92\x36\xe0\x26\x83\x36\xe0\x25\x92\x37\xe0\x25"
        !          20138:             "\x83\x36\xe0\x35\x73\x46\xe0\x35\x72\x56\xe0\x35\x63"
        !          20139:             "\x47\xe0\x45\x34\x56\xe0\x69\x93\xe0\x95\x90" }  },
        !          20140:       /* --- pixel bitmap for cmmi600 char#105 i --- */
        !          20141:       { 105,44013,                      /* character number, location */
        !          20142:          56, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          20143:           { 22,   57, 3,175, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          20144:             "\xe0\x33\xe0\x36\x10\xf2\xe7\x10\xe6\xe0\x43\x30\xfb"
        !          20145:             "\xe0\x80\x86\xe9\xc3\x45\x93\x55\x83\x75\x72\x76\x63"
        !          20146:             "\x76\x62\x86\x53\x86\x52\x87\x52\x86\x53\x86\x52\x87"
        !          20147:             "\x52\x86\xe0\x26\xe0\x17\xe0\x16\xe0\x17\x70\xf1\x86"
        !          20148:             "\x80\x77\xe0\x16\xe0\x17\xe0\x16\xe0\x26\x82\x57\x82"
        !          20149:             "\x56\x83\x56\x82\x57\x82\x56\x83\x56\x82\x66\x73\x66"
        !          20150:             "\x72\x75\x73\x85\x53\x95\x43\xc9\xe6\x86" }  },
        !          20151:       /* --- pixel bitmap for cmmi600 char#106 j --- */
        !          20152:       { 106,45062,                      /* character number, location */
        !          20153:          56,-1,  -17,-1,      /* topleft row,col, and botleft row,col */
        !          20154:           { 34,   73, 3,281, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          20155:             "\xe0\xe0\x23\xe0\xe0\x16\xf2\xe0\xd7\xe0\xd6\xe0\xe0"
        !          20156:             "\x23\x20\xfb\xe0\xe0\x60\xe0\x66\xe0\xca\xe0\x93\x45"
        !          20157:             "\xe0\x73\x65\xe0\x53\x76\xe0\x33\x86\xe0\x23\x96\xe0"
        !          20158:             "\x13\xa6\xe0\x12\xb6\xe3\xb6\xe2\xb7\xd3\xb7\x30\xf1"
        !          20159:             "\xa2\xc6\x40\xf1\xe0\x97\x40\xf1\xe0\x96\x50\xf1\xe0"
        !          20160:             "\x87\x50\xf1\xe0\x86\x60\xf1\xe0\x77\x60\xf1\xe0\x76"
        !          20161:             "\x70\xf1\xe0\x67\x70\xf1\xe0\x66\x80\xf1\xe0\x57\x80"
        !          20162:             "\xf1\xe0\x56\x90\xf1\xe0\x47\x90\xf1\xe0\x46\xa0\xf1"
        !          20163:             "\xe0\x37\xa0\xf1\xe0\x36\xb0\xe0\x27\xe0\xd6\xe0\x13"
        !          20164:             "\xa6\xc0\xf1\x16\x86\xd7\x76\xe7\x66\xe0\x17\x56\xe0"
        !          20165:             "\x25\x66\xe0\x43\x65\xe0\x7b\xe0\xb7\xe0\x97" }  },
        !          20166:       /* --- pixel bitmap for cmmi600 char#107 k --- */
        !          20167:       { 107,46221,                      /* character number, location */
        !          20168:          58, 4,   -1, 4,      /* topleft row,col, and botleft row,col */
        !          20169:           { 39,   59, 3,297, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          20170:             "\xe6\xe0\x50\xf2\x7d\xe0\x50\xd7\xe0\x50\xf2\xd6\xe0"
        !          20171:             "\x60\xc7\xe0\x60\xf2\xc6\xe0\x70\xb7\xe0\x70\xf2\xb6"
        !          20172:             "\xe0\x80\xa7\xe0\x80\xf2\xa6\xe0\x90\x97\xe0\xe0\x46"
        !          20173:             "\xe0\x15\xd6\xd9\xb6\xb4\x53\x97\x94\x65\x86\x93\x67"
        !          20174:             "\x86\x83\x77\x86\x73\x87\x77\x63\x96\x86\x63\xa6\x86"
        !          20175:             "\x53\xc3\xa6\x43\xe0\xb7\x33\xe0\xc6\x33\xe0\xd6\x23"
        !          20176:             "\xe0\xe6\x13\xe0\x90\xf1\x5a\xe0\xa0\x5e\xe0\xb6\x28"
        !          20177:             "\xe0\x87\x57\xe0\x66\x77\xe0\x56\x87\xe0\x46\x96\xe0"
        !          20178:             "\x37\x97\xd0\xf1\x36\xb6\x92\x20\x36\xb6\x83\x47\xa7"
        !          20179:             "\x82\x56\xb6\x92\x56\xb6\x83\x56\xb6\x82\x57\xb6\x82"
        !          20180:             "\x56\xd5\x73\x56\xd5\x63\x66\xd5\x62\x67\xe5\x43\x66"
        !          20181:             "\xe0\x39\x93\xe0\x65\x96" }  },
        !          20182:       /* --- pixel bitmap for cmmi600 char#108 l --- */
        !          20183:       { 108,47119,                      /* character number, location */
        !          20184:          58, 4,   -1, 4,      /* topleft row,col, and botleft row,col */
        !          20185:           { 18,   59, 3,175, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          20186:             "\xc6\xf2\x5d\xb7\xf1\xb6\x10\xf1\xa7\x10\xf1\xa6\x20"
        !          20187:             "\xf1\x97\x20\xf1\x96\x30\xf1\x87\x30\xf1\x86\x40\xf1"
        !          20188:             "\x77\x40\xf1\x76\x50\xf1\x67\x50\xf1\x66\x60\xf1\x57"
        !          20189:             "\x60\xf1\x56\x70\xf1\x47\x70\xf1\x46\x80\xf1\x37\x80"
        !          20190:             "\xf1\x36\x90\xf1\x27\x90\xf1\x26\xa0\xf1\x17\xa0\xf1"
        !          20191:             "\x16\x72\x27\x72\x27\x63\x2f\x16\x72\x36\x63\x3f\x16"
        !          20192:             "\x62\x46\x53\x55\x43\x74\x33\x98\xc5\x8e" }  },
        !          20193:       /* --- pixel bitmap for cmmi600 char#109 m --- */
        !          20194:       { 109,48474,                      /* character number, location */
        !          20195:          37, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          20196:           { 68,   38, 3,413, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          20197:             "\x75\xe7\xe0\x27\xe0\x39\xac\xac\xe3\x35\x74\x65\x75"
        !          20198:             "\x55\xc3\x55\x44\x95\x53\x95\xb2\x66\x23\xb6\x33\xa6"
        !          20199:             "\x93\x66\x13\xc6\x23\xc5\x92\x79\xe5\x13\xd5\x83\x78"
        !          20200:             "\xe0\x18\xe5\x70\xf1\x12\x87\xe0\x27\xe0\x15\x70\x12"
        !          20201:             "\x86\xe0\x27\xe0\x16\x73\x77\xe0\x26\xe0\x26\x7f\x12"
        !          20202:             "\x86\xe0\x36\xe0\x26\x70\xa6\xe0\x27\xe0\x17\xe0\x27"
        !          20203:             "\xe0\x27\xe0\x16\x80\xf1\x96\xe0\x36\xe0\x26\x80\x96"
        !          20204:             "\xe0\x27\xe0\x17\xe0\x27\xe0\x27\xe0\x16\xe0\x36\xe0"
        !          20205:             "\x36\xe0\x26\xe0\x36\xe0\x36\xe0\x17\xe0\x36\xe0\x27"
        !          20206:             "\xe0\x16\xe0\x37\xe0\x27\xe0\x16\xe0\x36\xe0\x36\xe0"
        !          20207:             "\x17\x82\x76\xe0\x36\xe0\x16\x92\x76\xe0\x27\xe7\x83"
        !          20208:             "\x67\xe0\x27\xe6\x92\x76\xe0\x36\xe0\x16\x92\x76\xe0"
        !          20209:             "\x36\xe0\x16\x83\x76\xe0\x27\xe0\x15\x92\x77\xe0\x27"
        !          20210:             "\xe0\x15\x83\x76\xe0\x36\xe0\x25\x73\x86\xe0\x36\xe0"
        !          20211:             "\x25\x72\x96\xe0\x27\xe0\x25\x63\x87\xe0\x27\xe0\x34"
        !          20212:             "\x44\x96\xe0\x36\xe0\x59\xd3\xe0\x63\xe0\x85\x98" }  },
        !          20213:       /* --- pixel bitmap for cmmi600 char#110 n --- */
        !          20214:       { 110,49757,                      /* character number, location */
        !          20215:          37, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          20216:           { 45,   38, 3,275, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          20217:             "\x75\xe7\xe0\x39\x9c\xe3\x35\x65\x55\xc3\x55\x43\x95"
        !          20218:             "\xb2\x66\x23\xa6\x93\x66\x13\xc5\x92\x79\xd5\x83\x78"
        !          20219:             "\xe5\x70\xf1\x12\x87\xe0\x15\x70\x12\x86\xe0\x16\x73"
        !          20220:             "\x77\xe0\x16\x7f\x12\x86\xe0\x26\x70\xa6\xe0\x17\xe0"
        !          20221:             "\x27\xe0\x16\x80\xf1\x96\xe0\x26\x80\x96\xe0\x17\xe0"
        !          20222:             "\x27\xe0\x16\xe0\x36\xe0\x26\xe0\x36\xe0\x17\xe0\x36"
        !          20223:             "\xe0\x16\xe0\x37\xe0\x16\xe0\x36\xe0\x17\x82\x76\xe0"
        !          20224:             "\x16\x92\x76\xe7\x83\x67\xe6\x92\x76\xe0\x16\x92\x76"
        !          20225:             "\xe0\x16\x83\x76\xe0\x15\x92\x77\xe0\x15\x83\x76\xe0"
        !          20226:             "\x25\x73\x86\xe0\x25\x72\x96\xe0\x25\x63\x87\xe0\x34"
        !          20227:             "\x44\x96\xe0\x59\xd3\xe0\x85\x92" }  },
        !          20228:       /* --- pixel bitmap for cmmi600 char#111 o --- */
        !          20229:       { 111,50665,                      /* character number, location */
        !          20230:          37, 4,   -1, 4,      /* topleft row,col, and botleft row,col */
        !          20231:           { 35,   38, 3,193, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          20232:             "\xe0\x48\xe0\xad\xe0\x66\x65\xe0\x26\x95\xe6\xb5\xc6"
        !          20233:             "\xc6\xa6\xe5\x96\xe0\x16\x76\xe0\x35\x66\xe0\x46\x47"
        !          20234:             "\xe0\x46\xf1\x37\xe0\x56\x27\xe0\x66\x27\xe0\x57\x18"
        !          20235:             "\xe0\x57\xf1\x17\xe0\x67\x17\xe0\x5e\x02\xe0\x58\x0f"
        !          20236:             "\x17\xe0\x67\x17\xe0\x58\x17\xe0\x57\x26\xe0\x67\x2f"
        !          20237:             "\x16\xe0\x57\x36\xe0\x47\x46\xe0\x46\x65\xe0\x36\x76"
        !          20238:             "\xe0\x16\x95\xe6\xa6\xc6\xc5\xb6\xe5\x96\xe0\x25\x66"
        !          20239:             "\xe0\x6d\xe0\xa8\xe0\x47" }  },
        !          20240:       /* --- pixel bitmap for cmmi600 char#112 p --- */
        !          20241:       { 112,51761,                      /* character number, location */
        !          20242:          37,-2,  -16,-2,      /* topleft row,col, and botleft row,col */
        !          20243:           { 43,   53, 3,309, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          20244:             "\xc5\xc6\xe0\x49\x8a\xe0\x13\x35\x63\x55\xc3\x55\x34"
        !          20245:             "\x75\xb2\x65\x23\xa5\x93\x69\xb6\x82\x78\xd5\x73\x77"
        !          20246:             "\xe5\x72\x87\xe6\x62\x86\xe0\x16\x62\x77\xe0\x16\x53"
        !          20247:             "\x77\xe0\x16\xf1\x52\x86\xe0\x26\xf1\xe7\xe0\x17\xf1"
        !          20248:             "\xe6\xe0\x27\xf1\xd7\xe0\x18\xf1\xd6\xe0\x27\x10\xc7"
        !          20249:             "\xe0\x18\xd7\xe0\x17\xe6\xe0\x27\xe6\xe0\x17\xe7\xe0"
        !          20250:             "\x17\xe7\xe0\x16\xe0\x16\xe0\x16\xe0\x26\xe7\xe0\x17"
        !          20251:             "\xe6\xe0\x28\xc6\xe0\x38\xb6\xe0\x49\x96\xe0\x47\x13"
        !          20252:             "\x76\xe0\x57\x23\x55\xe0\x76\x4a\xe0\x96\x66\xe0\x20"
        !          20253:             "\xf1\x87\xe0\xe0\xf1\x86\xe0\xe0\x10\xf1\x77\xe0\xe0"
        !          20254:             "\x10\xf1\x76\xe0\xe0\x20\xf1\x67\xe0\xe0\x20\x66\xe0"
        !          20255:             "\xe0\x87\xe0\xe0\x3f\x1e\x05\xe0\xae\x04\xe0\xb6" }  },
        !          20256:       /* --- pixel bitmap for cmmi600 char#113 q --- */
        !          20257:       { 113,52850,                      /* character number, location */
        !          20258:          37, 3,  -16, 3,      /* topleft row,col, and botleft row,col */
        !          20259:           { 35,   53, 3,247, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          20260:             "\xe0\x36\xa2\xeb\x73\xc6\x53\x54\xb5\x83\x35\x96\xa3"
        !          20261:             "\x15\x96\xc8\x86\xd8\x76\xe0\x17\x67\xe0\x16\x76\xe0"
        !          20262:             "\x26\x67\xe0\x26\x57\xe0\x27\x57\xe0\x26\x30\xf1\x27"
        !          20263:             "\xe0\x36\x30\x18\xe0\x27\x30\xf2\x17\xe0\x36\x48\xe0"
        !          20264:             "\x27\x4f\x27\xe0\x36\x57\xe0\x27\x5f\x26\xe0\x36\x66"
        !          20265:             "\xe0\x27\x66\xe0\x26\x76\xe0\x17\x85\xe0\x17\x86\xd8"
        !          20266:             "\x95\xc8\xa5\xaa\xb5\x83\x26\xc5\x54\x27\xea\x46\xe0"
        !          20267:             "\x36\x66\xe0\xe0\x16\xe0\xe7\x90\xf2\xe0\x56\xa0\xe0"
        !          20268:             "\x47\xa0\xf2\xe0\x46\xb0\xe0\x37\xe0\xe6\xe0\xe7\xe0"
        !          20269:             "\x8e\x05\x60\xf1\x9e\x06\x60" }  },
        !          20270:       /* --- pixel bitmap for cmmi600 char#114 r --- */
        !          20271:       { 114,53883,                      /* character number, location */
        !          20272:          37, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          20273:           { 34,   38, 3,173, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          20274:             "\x65\xd6\x98\x8b\x63\x25\x64\x63\x43\x45\x34\x75\x23"
        !          20275:             "\x56\x13\x77\x22\x69\x87\x22\x68\x97\x13\x68\x96\x22"
        !          20276:             "\x77\xa6\x22\x76\xc3\x33\x76\xe0\x42\x77\xe0\x4f\x12"
        !          20277:             "\x76\xe0\x50\x96\xe0\xd7\xe0\x50\xf2\x86\xe0\x60\x77"
        !          20278:             "\xe0\x60\xf2\x76\xe0\x70\x67\xe0\x70\xf2\x66\xe0\x80"
        !          20279:             "\x57\xe0\x80\xf2\x56\xe0\x90\x47\xe0\x90\xf2\x46\xe0"
        !          20280:             "\xa0\x37\xe0\xd6\xe0\xe0\x23\xe0\xc4" }  },
        !          20281:       /* --- pixel bitmap for cmmi600 char#115 s --- */
        !          20282:       { 115,54941,                      /* character number, location */
        !          20283:          37, 4,   -1, 4,      /* topleft row,col, and botleft row,col */
        !          20284:           { 30,   38, 3,167, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          20285:             "\xe0\x37\xe0\x6d\xe0\x24\x74\xd4\xb3\xb4\xd3\xa4\xe2"
        !          20286:             "\x94\xd4\x85\xb6\xf1\x84\xc6\x84\xc5\x86\xc3\x96\xe0"
        !          20287:             "\xa8\xe0\x9b\xe0\x5e\x01\xe0\x1e\x03\xee\x03\xee\x03"
        !          20288:             "\xe0\x1e\x02\xe0\x2e\xe0\x7a\xe0\x97\x10\xf1\xe0\x96"
        !          20289:             "\x10\x25\xe0\x35\x26\xe0\x35\x1f\x27\xe0\x34\x26\xe0"
        !          20290:             "\x34\x32\xe0\x73\x43\xe0\x54\x53\xe0\x34\x73\xe5\x95"
        !          20291:             "\x95\xde\x01\xe0\x49\xd0" }  },
        !          20292:       /* --- pixel bitmap for cmmi600 char#116 t --- */
        !          20293:       { 116,55801,                      /* character number, location */
        !          20294:          52, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          20295:           { 26,   53, 3,165, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          20296:             "\xe0\x13\xe0\x85\x70\xf3\xd6\x70\xc7\x70\xf2\xc6\x80"
        !          20297:             "\xb7\x80\xf2\xb6\x90\xa7\xe0\x56\xa0\xf1\x1e\x0b\x0e"
        !          20298:             "\x0c\xf2\x96\xb0\x87\xb0\xf2\x86\xc0\x77\xc0\xf2\x76"
        !          20299:             "\xd0\x67\xd0\xf2\x66\xe0\x57\xe0\xf2\x56\xe0\x10\x47"
        !          20300:             "\xe0\x10\xf1\x46\xc2\x20\x46\xb3\x57\xb2\x66\xb3\x66"
        !          20301:             "\xb2\x76\xa3\x76\x93\x86\x83\x96\x73\xb5\x63\xd4\x53"
        !          20302:             "\xe0\x1a\xe0\x46\xc9" }  },
        !          20303:       /* --- pixel bitmap for cmmi600 char#117 u --- */
        !          20304:       { 117,56939,                      /* character number, location */
        !          20305:          37, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          20306:           { 43,   38, 3,227, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          20307:             "\x95\xe0\xe0\x89\xe0\x43\xb4\x44\xe0\x25\x93\x65\xe6"
        !          20308:             "\x92\x75\xe6\x83\x75\xe6\x73\x85\xd7\x72\x95\xd7\x63"
        !          20309:             "\x86\xd6\x72\x96\xd6\x72\x96\xc7\x63\x87\xc7\x62\x96"
        !          20310:             "\xd6\x72\x87\xd6\x70\xf1\xa6\xd7\x70\x97\xd6\xe0\x36"
        !          20311:             "\xe6\xe0\x36\xd7\xe0\x27\xd7\x80\xf1\x86\xe6\x90\x86"
        !          20312:             "\xd7\xe0\x27\xd7\x90\xf1\x76\xe6\x82\x76\xd7\x73\x76"
        !          20313:             "\xd7\x72\x10\xf1\x76\xd6\x82\x10\x76\xc7\x73\x86\xc7"
        !          20314:             "\x72\x96\xb8\x63\xa5\xa3\x15\x62\xc5\x83\x25\x53\xd5"
        !          20315:             "\x54\x45\x33\xe0\x1b\x79\xe0\x47\xb5\x76" }  },
        !          20316:       /* --- pixel bitmap for cmmi600 char#118 v --- */
        !          20317:       { 118,58010,                      /* character number, location */
        !          20318:          37, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          20319:           { 37,   38, 3,227, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          20320:             "\x95\xe0\x33\xa9\xe6\x64\x44\xc7\x53\x65\xb8\x42\x75"
        !          20321:             "\xb8\x33\x75\xb8\x23\x85\xc7\x22\x95\xd6\x13\x86\xe5"
        !          20322:             "\x12\x96\xe5\x12\x96\xe0\x17\x87\xe0\x13\x12\x96\xe0"
        !          20323:             "\x23\x12\x87\xe0\x23\xb6\xe0\x33\xb6\xe0\x32\xb7\xe0"
        !          20324:             "\x32\xb6\xe0\x42\xb6\xe0\x33\xa7\xe0\x32\xb6\xe0\x42"
        !          20325:             "\xb6\xe0\x33\xb6\xe0\x32\xb7\xe0\x32\xb6\xe0\x33\xb6"
        !          20326:             "\xe0\x32\xc6\xe0\x23\xc6\xe0\x22\xd6\xe0\x13\xd6\xe3"
        !          20327:             "\xe6\xe2\xe0\x16\xd3\xe0\x25\xc3\xe0\x36\xa3\xe0\x55"
        !          20328:             "\x93\xe0\x76\x54\xe0\xab\xe0\xe7\xe0\x26" }  },
        !          20329:       /* --- pixel bitmap for cmmi600 char#119 w --- */
        !          20330:       { 119,59344,                      /* character number, location */
        !          20331:          37, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          20332:           { 55,   38, 3,307, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          20333:             "\x85\xe0\xe0\x83\x99\xe0\x43\xc6\x63\x44\xe0\x25\xa7"
        !          20334:             "\x53\x55\xe6\xa8\x33\x65\xe6\xa8\x32\x75\xe6\xa8\x23"
        !          20335:             "\x75\xd7\xb7\x22\x85\xd6\xd6\x13\x76\xd6\xe5\x12\x86"
        !          20336:             "\xd6\xe5\x12\x86\xc7\xe0\x17\x77\xc7\xe0\x13\x12\x86"
        !          20337:             "\xd6\xe0\x23\x12\x77\xd6\xe0\x23\xa6\xd7\xe0\x23\xa6"
        !          20338:             "\xd7\xe0\x22\xa7\xd6\xe0\x32\xa6\xe6\xe0\x32\xa6\xd7"
        !          20339:             "\xe0\x23\x97\xd7\xe0\x22\x30\xf1\x76\xe6\xe0\x32\x30"
        !          20340:             "\x76\xe6\xe0\x23\x97\xd7\xe0\x22\xa6\xe6\xe0\x32\xa6"
        !          20341:             "\xe6\xe0\x23\xa6\xe6\xe0\x22\xb6\xe6\xe0\x13\xb6\xe6"
        !          20342:             "\xe0\x12\xc6\xe6\xe3\xc6\xd7\xe2\xe5\xd7\xd3\xe6\xb8"
        !          20343:             "\xc3\xe0\x25\xa3\x16\xa3\xe0\x36\x83\x36\x83\xe0\x65"
        !          20344:             "\x63\x56\x54\xe0\x8c\x8c\xe0\xc7\xc7\xe0\x10" }  },
        !          20345:       /* --- pixel bitmap for cmmi600 char#120 x --- */
        !          20346:       { 120,60790,                      /* character number, location */
        !          20347:          37, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          20348:           { 42,   38, 3,227, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          20349:             "\xd6\xc6\xe0\x2a\x8a\xc4\x55\x53\x64\x93\x85\x33\x74"
        !          20350:             "\x83\x95\x23\x67\x63\xb8\x77\x62\xc7\x87\x53\xc7\x86"
        !          20351:             "\x53\xd6\x96\x52\xe6\xa3\x72\xd7\xe0\x53\xd6\xe0\x30"
        !          20352:             "\xf1\x32\xe6\xe0\x30\xf1\xe0\x47\xe0\x30\xf1\xe0\x46"
        !          20353:             "\xe0\x40\xf1\xe0\x37\xe0\x40\xf1\xe0\x36\xe0\x50\xf1"
        !          20354:             "\xe0\x27\xe0\x50\xf1\xe0\x26\xe0\x12\x30\xe0\x17\xe3"
        !          20355:             "\xe0\x47\xe2\x73\x96\xe3\x56\x86\xe2\x66\x77\xd3\x57"
        !          20356:             "\x77\xd2\x67\x68\xc3\x67\x53\x25\xa3\x84\x63\x44\x84"
        !          20357:             "\x94\x53\x64\x54\xca\x8b\xe0\x25\xc6\xe0" }  },
        !          20358:       /* --- pixel bitmap for cmmi600 char#121 y --- */
        !          20359:       { 121,62024,                      /* character number, location */
        !          20360:          37, 2,  -17, 2,      /* topleft row,col, and botleft row,col */
        !          20361:           { 38,   54, 3,289, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          20362:             "\x85\xe0\xe0\x39\xe0\x53\x63\x44\xe0\x35\x43\x55\xe0"
        !          20363:             "\x16\x33\x65\xe0\x16\x32\x75\xe0\x16\x23\x75\xe7\x22"
        !          20364:             "\x85\xe6\x23\x76\xe6\x22\x86\xe6\x22\x86\xd7\x13\x77"
        !          20365:             "\xd6\x22\x86\xe6\x22\x77\xe6\xb6\xe7\xb6\xe6\xb7\xe6"
        !          20366:             "\xb6\xe0\x16\xb6\xe7\xa7\xe6\x40\xf1\x76\xe0\x16\x40"
        !          20367:             "\x76\xe7\xa7\xe6\x50\xf1\x66\xe0\x16\x50\x66\xe7\x50"
        !          20368:             "\xf2\x66\xe6\x60\x66\xd7\xc6\xc7\xe5\xc7\xe5\xb8\xe0"
        !          20369:             "\x15\x8a\xe0\x25\x63\x16\xe0\x4c\x26\xe0\x77\x46\xe0"
        !          20370:             "\xe0\x37\x80\xf1\xe0\x96\x90\xe0\x87\xc6\xd6\xa0\xf1"
        !          20371:             "\x27\xc6\xb0\x27\xb6\xe7\xa6\xe0\x16\xb5\xe0\x22\xe5"
        !          20372:             "\xe0\x33\xc5\xe0\x53\x96\xe0\x73\x75\xe0\xac\xe0\xe7"
        !          20373:             "\xe0\xa6" }  },
        !          20374:       /* --- pixel bitmap for cmmi600 char#122 z --- */
        !          20375:       { 122,63126,                      /* character number, location */
        !          20376:          37, 4,   -1, 4,      /* topleft row,col, and botleft row,col */
        !          20377:           { 35,   38, 3,209, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          20378:             "\xe5\xe2\xc8\xc3\xba\xb2\xbc\x93\xae\x73\xae\x02\x53"
        !          20379:             "\xb4\x7d\xa4\xb9\xb3\xe0\x33\xc2\xe0\x33\xd2\xe0\x23"
        !          20380:             "\xe0\xe0\x33\xe0\xe0\x33\xe0\xe0\x33\xe0\xe0\x33\xe0"
        !          20381:             "\xe0\x33\xe0\xe0\x33\xe0\xe0\x33\xe0\xe0\x24\xe0\xe0"
        !          20382:             "\x24\xe0\xe0\x23\xe0\xe0\x33\xe0\xe0\x33\xe0\xe0\x33"
        !          20383:             "\xe0\xe0\x33\xe0\x32\xc3\xe0\x42\xb3\xe0\x43\xa3\xe0"
        !          20384:             "\x52\xa3\xe0\x53\x93\xe0\x53\x99\xc5\x8e\x66\x93\x5e"
        !          20385:             "\x04\x83\x7e\x02\x83\x9e\x92\xbc\x93\xc9\xb2\xe0\x15"
        !          20386:             "\xd0" }  },
        !          20387:       /* --- pixel bitmap for cmmi600 char#123 \imath --- */
        !          20388:       { 123,111545,                     /* character number, location */
        !          20389:          37, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          20390:           { 22,   38, 3,145, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          20391:             "\x86\xe9\xc3\x45\x93\x55\x83\x75\x72\x76\x63\x76\x62"
        !          20392:             "\x86\x53\x86\x52\x87\x52\x86\x53\x86\x52\x87\x52\x86"
        !          20393:             "\xe0\x26\xe0\x17\xe0\x16\xe0\x17\x70\xf1\x86\x80\x77"
        !          20394:             "\xe0\x16\xe0\x17\xe0\x16\xe0\x26\x82\x57\x82\x56\x83"
        !          20395:             "\x56\x82\x57\x82\x56\x83\x56\x82\x66\x73\x66\x72\x75"
        !          20396:             "\x73\x85\x53\x95\x43\xc9\xe6\x87" }  },
        !          20397:       /* --- pixel bitmap for cmmi600 char#124 \jmath --- */
        !          20398:       { 124,112440,                     /* character number, location */
        !          20399:          37,-1,  -17,-1,      /* topleft row,col, and botleft row,col */
        !          20400:           { 31,   54, 3,227, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          20401:             "\xe0\x66\xe0\x9a\xe0\x63\x54\xe0\x43\x65\xe0\x23\x76"
        !          20402:             "\xe3\x86\xd3\x96\xc3\xa6\xc2\xb6\xb3\xb6\xb2\xb7\xa3"
        !          20403:             "\xb7\xf1\xa2\xc6\x10\xf1\xe0\x97\x10\xf1\xe0\x96\x20"
        !          20404:             "\xf1\xe0\x87\x20\xf1\xe0\x86\x30\xf1\xe0\x77\x30\xf1"
        !          20405:             "\xe0\x76\x40\xf1\xe0\x67\x40\xf1\xe0\x66\x50\xf1\xe0"
        !          20406:             "\x57\x50\xf1\xe0\x56\x60\xf1\xe0\x47\x60\xf1\xe0\x46"
        !          20407:             "\x70\xf1\xe0\x37\x70\xf1\xe0\x36\x80\xe0\x27\xe0\xa6"
        !          20408:             "\xc3\xa6\x90\xf1\x16\x86\xa7\x76\xb7\x66\xc7\x65\xe4"
        !          20409:             "\x75\xe0\x14\x56\xe0\x3c\xe0\x86\xe0\x65" }  },
        !          20410:       /* --- pixel bitmap for cmmi600 char#125 \wp --- */
        !          20411:       { 125,113699,                     /* character number, location */
        !          20412:          38, 6,  -18, 6,      /* topleft row,col, and botleft row,col */
        !          20413:           { 46,   56, 3,395, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          20414:             "\xc4\xe0\xe0\xc6\xe0\xe0\xb4\xe0\xe0\xd4\xe0\xe0\xd4"
        !          20415:             "\xe0\x58\xe4\xe0\x3d\xb4\xe0\x25\x75\x94\xe4\xb5\x74"
        !          20416:             "\xd4\xe5\x64\xb4\xe0\x25\x54\xb4\xe0\x45\x44\xa3\xe0"
        !          20417:             "\x65\x35\x93\xe0\x75\x34\x93\xe0\x86\x24\x83\xe0\x96"
        !          20418:             "\x24\x73\xe0\xa6\x15\x63\xe0\xb6\x14\x63\xe0\xc6\x14"
        !          20419:             "\x62\xe0\xd6\x14\x53\xe0\xc7\x14\x43\xe0\xd6\x24\x42"
        !          20420:             "\xe0\xe6\x24\x33\xe0\xe6\x25\x22\xe0\xe7\x25\x13\xe0"
        !          20421:             "\xe6\x38\xe0\xe0\x16\x37\xe0\xe0\x16\x56\xe0\xe0\x16"
        !          20422:             "\x57\xb1\xe0\x25\x77\x94\xd6\x78\x83\xd6\x97\x82\xe5"
        !          20423:             "\xa8\x72\xd5\xaa\x62\xc5\xb2\x27\x53\xa5\xc2\x27\x62"
        !          20424:             "\x95\xc3\x37\x54\x55\xe2\x57\x6a\xe0\x22\x66\x86\xe0"
        !          20425:             "\x42\x67\xe0\xe0\x23\x76\xe0\xe0\x10\xf2\x12\x95\xe0"
        !          20426:             "\xe0\x13\x94\xe0\xe0\x2f\x12\xa4\xe0\xe0\x22\x95\xe0"
        !          20427:             "\xe0\x2f\x12\x94\xe0\xe0\x32\x84\xe0\xe0\x43\x64\xe0"
        !          20428:             "\xe0\x62\x64\xe0\xe0\x63\x44\xe0\xe0\x88\xe0\xe0\xc4"
        !          20429:             "\xe0\xe0\xa0" }  },
        !          20430:       /* --- pixel bitmap for cmmi600 char#126 \vec --- */
        !          20431:       { 126,114541,                     /* character number, location */
        !          20432:          60,15,   42,15,      /* topleft row,col, and botleft row,col */
        !          20433:           { 38,   18, 2,41, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          20434:             "\x1e\x01\x23\x04\x06\x00\xff\x01\x1c\x05\x05\x00\x1d"
        !          20435:             "\x05\x21\x06\x21\x06\x03\x24\x01\xff\x01\x26\x01\x24"
        !          20436:             "\x1d\x07\x1e\x06\x1f\x06\x1f\x06\x20\x05\x21\x04\x23"
        !          20437:             "\x02\x0a" }  },
        !          20438:       /* --- pixel bitmap for cmmi600 char#127 (noname) --- */
        !          20439:       { 127,115107,                     /* character number, location */
        !          20440:          56,22,   45,22,      /* topleft row,col, and botleft row,col */
        !          20441:           { 32,   11, 3,55, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          20442:             "\xda\xe0\x5e\x02\xee\x06\xa7\xa6\x75\xe0\x34\x54\xe0"
        !          20443:             "\x64\x34\xe0\x83\x10\xf1\x13\xe0\xb3\x12\xe0\xc6\xe0"
        !          20444:             "\xc2\x1e" }  },
        !          20445:       /* --- trailer  --- */
        !          20446:       { -99, -999,  0,0,0,0, { 0,0,0,0, (pixbyte *)"\0" }  }
        !          20447:    } ;
        !          20448: 
        !          20449: 
1.2       albertel 20450: /* ------------------------------------------------------------------------
1.5     ! raeburn  20451: font sizes 0-10 for cmmib10
1.2       albertel 20452: ------------------------------------------------------------------------ */
                   20453: 
                   20454: /* --- size=0 for .83gf ---
                   20455:  * mf '\mode=eighthre;  input cmmib10'
                   20456:  * --------------------------------------------------------------------- */
                   20457: /* --- fontdef for cmmib83 --- */
                   20458: static	chardef  cmmib83[] =
                   20459:    {
                   20460:       /* --- pixel bitmap for cmmib83 char#0 \Gamma --- */
                   20461:       {   0, 1593,                      /* character number, location */
                   20462:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   20463:           {  9,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   20464:             "\xfc\x31\x33\x62\xc0\x80\x81\x81\x0f" }  },
                   20465:       /* --- pixel bitmap for cmmib83 char#1 \Delta --- */
                   20466:       {   1, 1620,                      /* character number, location */
                   20467:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   20468:           {  9,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   20469:             "\xc0\xc0\x81\x83\x86\x9c\x30\x7f\xff" }  },
                   20470:       /* --- pixel bitmap for cmmib83 char#2 \Theta --- */
                   20471:       {   2, 1649,                      /* character number, location */
                   20472:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   20473:           {  7,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   20474:             "\x38\xb3\xf8\xff\x1f\xcd\x1c" }  },
                   20475:       /* --- pixel bitmap for cmmib83 char#3 \Lambda --- */
                   20476:       {   3, 1680,                      /* character number, location */
                   20477:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   20478:           {  8,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   20479:             "\x60\x60\x70\x70\x68\x6c\x64\xf7" }  },
                   20480:       /* --- pixel bitmap for cmmib83 char#4 \Xi --- */
                   20481:       {   4, 1711,                      /* character number, location */
                   20482:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   20483:           {  9,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   20484:             "\xf8\xf1\x13\xc2\x83\x47\xe0\xbf\x7f" }  },
                   20485:       /* --- pixel bitmap for cmmib83 char#5 \Pi --- */
                   20486:       {   5, 1738,                      /* character number, location */
                   20487:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   20488:           { 11,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   20489:             "\xfc\xc7\x18\x63\x18\xc3\x18\xc6\x18\xe3\x3d" }  },
                   20490:       /* --- pixel bitmap for cmmib83 char#6 \Sigma --- */
                   20491:       {   6, 1775,                      /* character number, location */
                   20492:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   20493:           {  9,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   20494:             "\xfc\x39\x63\xc2\x01\x03\x13\x11\x3f" }  },
                   20495:       /* --- pixel bitmap for cmmib83 char#7 \Upsilon --- */
                   20496:       {   7, 1806,                      /* character number, location */
                   20497:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   20498:           {  7,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   20499:             "\xb7\x3b\x83\xc1\x60\x18\x1e" }  },
                   20500:       /* --- pixel bitmap for cmmib83 char#8 \Phi --- */
                   20501:       {   8, 1833,                      /* character number, location */
                   20502:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   20503:           {  7,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   20504:             "\x7c\x98\x6f\xbf\xf7\x31\x7c" }  },
                   20505:       /* --- pixel bitmap for cmmib83 char#9 \Psi --- */
                   20506:       {   9, 1860,                      /* character number, location */
                   20507:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   20508:           {  7,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   20509:             "\x78\xd8\x7e\xbf\xf7\x31\x3c" }  },
                   20510:       /* --- pixel bitmap for cmmib83 char#10 \Omega --- */
                   20511:       {  10, 1889,                      /* character number, location */
                   20512:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   20513:           {  8,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   20514:             "\xf8\xcc\xc6\xc6\x46\xe6\x67\x77" }  },
                   20515:       /* --- pixel bitmap for cmmib83 char#11 \alpha --- */
                   20516:       {  11, 1926,                      /* character number, location */
                   20517:           5, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   20518:           {  6,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   20519:             "\x6e\x1c\x65\x27" }  },
                   20520:       /* --- pixel bitmap for cmmib83 char#12 \beta --- */
                   20521:       {  12, 1953,                      /* character number, location */
                   20522:           8, 0,   -2, 0,      /* topleft row,col, and botleft row,col */
                   20523:           {  7,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   20524:             "\x38\xa2\xc8\x23\x12\x4d\x1e\x81\x00" }  },
                   20525:       /* --- pixel bitmap for cmmib83 char#13 \gamma --- */
                   20526:       {  13, 1990,                      /* character number, location */
                   20527:           5, 0,   -2, 0,      /* topleft row,col, and botleft row,col */
                   20528:           {  5,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   20529:             "\x36\x63\x84\x10\x02" }  },
                   20530:       /* --- pixel bitmap for cmmib83 char#14 \delta --- */
                   20531:       {  14, 2015,                      /* character number, location */
                   20532:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   20533:           {  5,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   20534:             "\x9c\x10\x93\x52\x39" }  },
                   20535:       /* --- pixel bitmap for cmmib83 char#15 \epsilon --- */
                   20536:       {  15, 2044,                      /* character number, location */
                   20537:           5, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   20538:           {  4,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   20539:             "\x1e\x17\x0e" }  },
                   20540:       /* --- pixel bitmap for cmmib83 char#16 \zeta --- */
                   20541:       {  16, 2061,                      /* character number, location */
                   20542:           8, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   20543:           {  5,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   20544:             "\x84\x8b\x10\x42\x18\xc4\x00" }  },
                   20545:       /* --- pixel bitmap for cmmib83 char#17 \eta --- */
                   20546:       {  17, 2088,                      /* character number, location */
                   20547:           5, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   20548:           {  6,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   20549:             "\xdb\x29\x46\x11\x04\x01" }  },
                   20550:       /* --- pixel bitmap for cmmib83 char#18 \theta --- */
                   20551:       {  18, 2119,                      /* character number, location */
                   20552:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   20553:           {  5,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   20554:             "\x4c\xca\xff\x53\x32" }  },
                   20555:       /* --- pixel bitmap for cmmib83 char#19 \iota --- */
                   20556:       {  19, 2150,                      /* character number, location */
                   20557:           5, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   20558:           {  3,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   20559:             "\x92\x7a" }  },
                   20560:       /* --- pixel bitmap for cmmib83 char#20 \kappa --- */
                   20561:       {  20, 2169,                      /* character number, location */
                   20562:           5, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   20563:           {  6,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   20564:             "\xb2\xe3\xc5\x21" }  },
                   20565:       /* --- pixel bitmap for cmmib83 char#21 \lambda --- */
                   20566:       {  21, 2192,                      /* character number, location */
                   20567:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   20568:           {  5,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   20569:             "\x86\x20\x84\xa8\x8c" }  },
                   20570:       /* --- pixel bitmap for cmmib83 char#22 \mu --- */
                   20571:       {  22, 2221,                      /* character number, location */
                   20572:           5, 0,   -2, 0,      /* topleft row,col, and botleft row,col */
                   20573:           {  6,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   20574:             "\xa2\x28\xc6\x6f\x10\x00" }  },
                   20575:       /* --- pixel bitmap for cmmib83 char#23 \nu --- */
                   20576:       {  23, 2252,                      /* character number, location */
                   20577:           5, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   20578:           {  6,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   20579:             "\xa3\x28\x35\x03" }  },
                   20580:       /* --- pixel bitmap for cmmib83 char#24 \xi --- */
                   20581:       {  24, 2277,                      /* character number, location */
                   20582:           8, 0,   -2, 0,      /* topleft row,col, and botleft row,col */
                   20583:           {  5,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   20584:             "\x88\x0b\xc1\x44\x10\xcc\x01" }  },
                   20585:       /* --- pixel bitmap for cmmib83 char#25 \pi --- */
                   20586:       {  25, 2304,                      /* character number, location */
                   20587:           5, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   20588:           {  6,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   20589:             "\xfe\xa2\x28\x09" }  },
                   20590:       /* --- pixel bitmap for cmmib83 char#26 \rho --- */
                   20591:       {  26, 2329,                      /* character number, location */
                   20592:           5, 0,   -2, 0,      /* topleft row,col, and botleft row,col */
                   20593:           {  6,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   20594:             "\x9c\x28\x4e\x4f\x10\x00" }  },
                   20595:       /* --- pixel bitmap for cmmib83 char#27 \sigma --- */
                   20596:       {  27, 2356,                      /* character number, location */
                   20597:           5, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   20598:           {  6,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   20599:             "\x7e\x92\x14\x03" }  },
                   20600:       /* --- pixel bitmap for cmmib83 char#28 \tau --- */
                   20601:       {  28, 2379,                      /* character number, location */
                   20602:           5, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   20603:           {  6,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   20604:             "\x7e\x41\x08\x02" }  },
                   20605:       /* --- pixel bitmap for cmmib83 char#29 \upsilon --- */
                   20606:       {  29, 2398,                      /* character number, location */
                   20607:           5, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   20608:           {  6,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   20609:             "\xd3\x28\x46\x0e" }  },
                   20610:       /* --- pixel bitmap for cmmib83 char#30 \phi --- */
                   20611:       {  30, 2423,                      /* character number, location */
                   20612:           8, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   20613:           {  7,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   20614:             "\x10\x08\xc2\x97\x4c\x96\x3c\x04\x02" }  },
                   20615:       /* --- pixel bitmap for cmmib83 char#31 \chi --- */
                   20616:       {  31, 2462,                      /* character number, location */
                   20617:           5, 0,   -2, 0,      /* topleft row,col, and botleft row,col */
                   20618:           {  7,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   20619:             "\x42\x13\x06\x41\x11\x85\x01" }  },
                   20620:       /* --- pixel bitmap for cmmib83 char#32 \psi --- */
                   20621:       {  32, 2493,                      /* character number, location */
                   20622:           8, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   20623:           {  7,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   20624:             "\x10\x08\x64\xb5\x54\xaa\x3c\x04\x02" }  },
                   20625:       /* --- pixel bitmap for cmmib83 char#33 \omega --- */
                   20626:       {  33, 2536,                      /* character number, location */
                   20627:           5, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   20628:           {  7,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   20629:             "\xa2\x64\xb2\xb5\x01" }  },
                   20630:       /* --- pixel bitmap for cmmib83 char#34 \varepsilon --- */
                   20631:       {  34, 2569,                      /* character number, location */
                   20632:           5, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   20633:           {  4,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   20634:             "\x2c\x12\x0e" }  },
                   20635:       /* --- pixel bitmap for cmmib83 char#35 \vartheta --- */
                   20636:       {  35, 2586,                      /* character number, location */
                   20637:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   20638:           {  6,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   20639:             "\x18\x8a\xee\xa3\x14\x39" }  },
                   20640:       /* --- pixel bitmap for cmmib83 char#36 \varpi --- */
                   20641:       {  36, 2621,                      /* character number, location */
                   20642:           5, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   20643:           { 10,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   20644:             "\xfe\x8f\x24\x52\x2c\x6e\x00" }  },
                   20645:       /* --- pixel bitmap for cmmib83 char#37 \varrho --- */
                   20646:       {  37, 2652,                      /* character number, location */
                   20647:           5, 0,   -2, 0,      /* topleft row,col, and botleft row,col */
                   20648:           {  6,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   20649:             "\x9c\x28\x4e\x4f\xe0\x00" }  },
                   20650:       /* --- pixel bitmap for cmmib83 char#38 \varsigma --- */
                   20651:       {  38, 2679,                      /* character number, location */
                   20652:           5, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   20653:           {  3,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   20654:             "\x4e\x46\x01" }  },
                   20655:       /* --- pixel bitmap for cmmib83 char#39 \varphi --- */
                   20656:       {  39, 2698,                      /* character number, location */
                   20657:           5, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   20658:           {  7,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   20659:             "\xb2\x64\xb2\xe4\x21\x10\x00" }  },
                   20660:       /* --- pixel bitmap for cmmib83 char#40 \bfleftharpoonup --- */
                   20661:       {  40, 3124,                      /* character number, location */
                   20662:           5, 1,    2, 1,      /* topleft row,col, and botleft row,col */
                   20663:           { 10,    3, 3, 6, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   20664:             "\x21\x82\x7a" }  },
                   20665:       /* --- pixel bitmap for cmmib83 char#41 \bfleftharpoondown --- */
                   20666:       {  41, 3137,                      /* character number, location */
                   20667:           3, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   20668:           { 10,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   20669:             "\xff\x1b\x40\x00" }  },
                   20670:       /* --- pixel bitmap for cmmib83 char#42 \bfrightharpoonup --- */
                   20671:       {  42, 3150,                      /* character number, location */
                   20672:           5, 1,    2, 1,      /* topleft row,col, and botleft row,col */
                   20673:           { 10,    3, 3, 6, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   20674:             "\x71\x92\x1a" }  },
                   20675:       /* --- pixel bitmap for cmmib83 char#43 \bfrightharpoondown --- */
                   20676:       {  43, 3163,                      /* character number, location */
                   20677:           3, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   20678:           { 10,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   20679:             "\xff\x03\x06\x08" }  },
                   20680:       /* --- pixel bitmap for cmmib83 char#44 ` --- */
                   20681:       {  44, 3176,                      /* character number, location */
                   20682:           7, 1,    2, 1,      /* topleft row,col, and botleft row,col */
                   20683:           {  1,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   20684:             "\x1f" }  },
                   20685:       /* --- pixel bitmap for cmmib83 char#45 ' --- */
                   20686:       {  45, 3193,                      /* character number, location */
                   20687:           7, 1,    2, 1,      /* topleft row,col, and botleft row,col */
                   20688:           {  1,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   20689:             "\x1f" }  },
                   20690:       /* --- pixel bitmap for cmmib83 char#46 \triangleright --- */
                   20691:       {  46, 3210,                      /* character number, location */
                   20692:           5, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   20693:           {  4,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   20694:             "\x71\x79\x01" }  },
                   20695:       /* --- pixel bitmap for cmmib83 char#47 \triangleleft --- */
                   20696:       {  47, 3229,                      /* character number, location */
                   20697:           5, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   20698:           {  4,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   20699:             "\xe8\xe9\x08" }  },
                   20700:       /* --- pixel bitmap for cmmib83 char#48 \0 --- */
                   20701:       {  48, 2892,                      /* character number, location */
                   20702:           5, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   20703:           {  6,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   20704:             "\x5e\x18\x86\x1e" }  },
                   20705:       /* --- pixel bitmap for cmmib83 char#49 \1 --- */
                   20706:       {  49, 2915,                      /* character number, location */
                   20707:           5, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   20708:           {  3,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   20709:             "\x93\x74" }  },
                   20710:       /* --- pixel bitmap for cmmib83 char#50 \2 --- */
                   20711:       {  50, 2932,                      /* character number, location */
                   20712:           5, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   20713:           {  4,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   20714:             "\x97\xe8\x0f" }  },
                   20715:       /* --- pixel bitmap for cmmib83 char#51 \3 --- */
                   20716:       {  51, 2951,                      /* character number, location */
                   20717:           5, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   20718:           {  5,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   20719:             "\xa6\x31\x87\xb7\x03" }  },
                   20720:       /* --- pixel bitmap for cmmib83 char#52 \4 --- */
                   20721:       {  52, 2976,                      /* character number, location */
                   20722:           5, 0,   -2, 0,      /* topleft row,col, and botleft row,col */
                   20723:           {  6,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   20724:             "\x18\x67\x4d\x3f\x84\x03" }  },
                   20725:       /* --- pixel bitmap for cmmib83 char#53 \5 --- */
                   20726:       {  53, 3001,                      /* character number, location */
                   20727:           5, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   20728:           {  4,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   20729:             "\x7f\x71\xdc\x06" }  },
                   20730:       /* --- pixel bitmap for cmmib83 char#54 \6 --- */
                   20731:       {  54, 3024,                      /* character number, location */
                   20732:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   20733:           {  4,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   20734:             "\x1e\x71\x99\x06" }  },
                   20735:       /* --- pixel bitmap for cmmib83 char#55 \7 --- */
                   20736:       {  55, 3049,                      /* character number, location */
                   20737:           5, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   20738:           {  5,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   20739:             "\x3f\x22\x22\x84\x00" }  },
                   20740:       /* --- pixel bitmap for cmmib83 char#56 \8 --- */
                   20741:       {  56, 3072,                      /* character number, location */
                   20742:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   20743:           {  4,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   20744:             "\x96\xef\x9d\x06" }  },
                   20745:       /* --- pixel bitmap for cmmib83 char#57 \9 --- */
                   20746:       {  57, 3099,                      /* character number, location */
                   20747:           5, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   20748:           {  4,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   20749:             "\x96\xe9\x88\x07" }  },
                   20750:       /* --- pixel bitmap for cmmib83 char#58 . --- */
                   20751:       {  58, 3248,                      /* character number, location */
                   20752:           2, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   20753:           {  2,    2, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   20754:             "\x0f" }  },
                   20755:       /* --- pixel bitmap for cmmib83 char#59 , --- */
                   20756:       {  59, 3259,                      /* character number, location */
                   20757:           2, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   20758:           {  2,    4, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   20759:             "\x6f" }  },
                   20760:       /* --- pixel bitmap for cmmib83 char#60 < --- */
                   20761:       {  60, 3274,                      /* character number, location */
                   20762:           7, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   20763:           {  7,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   20764:             "\x40\x18\xc2\x10\x30\x20\x60\x40" }  },
                   20765:       /* --- pixel bitmap for cmmib83 char#61 / --- */
                   20766:       {  61, 3299,                      /* character number, location */
                   20767:           9, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   20768:           {  4,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   20769:             "\x88\x44\x44\x22\x22\x11" }  },
                   20770:       /* --- pixel bitmap for cmmib83 char#62 > --- */
                   20771:       {  62, 3330,                      /* character number, location */
                   20772:           7, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   20773:           {  7,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   20774:             "\x01\x03\x02\x06\x84\x21\x0c\x01" }  },
                   20775:       /* --- pixel bitmap for cmmib83 char#63 \star --- */
                   20776:       {  63, 3355,                      /* character number, location */
                   20777:           3,-1,    1,-1,      /* topleft row,col, and botleft row,col */
                   20778:           {  6,    2, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   20779:             "\x3c\x06" }  },
                   20780:       /* --- pixel bitmap for cmmib83 char#64 \partial --- */
                   20781:       {  64, 2733,                      /* character number, location */
                   20782:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   20783:           {  6,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   20784:             "\x1c\x09\xfa\x61\x14\x3d" }  },
                   20785:       /* --- pixel bitmap for cmmib83 char#65 A --- */
                   20786:       {  65,   35,                      /* character number, location */
                   20787:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   20788:           {  9,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   20789:             "\x40\xc0\x80\x81\x83\x06\x1f\xb1\xf3" }  },
                   20790:       /* --- pixel bitmap for cmmib83 char#66 B --- */
                   20791:       {  66,   64,                      /* character number, location */
                   20792:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   20793:           {  9,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   20794:             "\xfc\x30\x33\xe3\xc7\x8c\x99\x99\x1f" }  },
                   20795:       /* --- pixel bitmap for cmmib83 char#67 C --- */
                   20796:       {  67,   97,                      /* character number, location */
                   20797:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   20798:           {  8,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   20799:             "\xf8\xc4\x46\x03\x03\x43\x23\x1e" }  },
                   20800:       /* --- pixel bitmap for cmmib83 char#68 D --- */
                   20801:       {  68,  128,                      /* character number, location */
                   20802:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   20803:           {  9,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   20804:             "\xfc\x30\x33\x66\xcc\x98\x91\xb1\x3f" }  },
                   20805:       /* --- pixel bitmap for cmmib83 char#69 E --- */
                   20806:       {  69,  163,                      /* character number, location */
                   20807:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   20808:           {  9,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   20809:             "\xfc\x31\xb3\xe2\xc1\x92\xa1\xa1\x7f" }  },
                   20810:       /* --- pixel bitmap for cmmib83 char#70 F --- */
                   20811:       {  70,  200,                      /* character number, location */
                   20812:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   20813:           {  9,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   20814:             "\xfc\x31\xb3\xe2\xc1\x82\x81\x81\x07" }  },
                   20815:       /* --- pixel bitmap for cmmib83 char#71 G --- */
                   20816:       {  71,  231,                      /* character number, location */
                   20817:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   20818:           {  8,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   20819:             "\xf8\xc4\x46\x03\xfb\x63\x33\x3e" }  },
                   20820:       /* --- pixel bitmap for cmmib83 char#72 H --- */
                   20821:       {  72,  264,                      /* character number, location */
                   20822:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   20823:           { 11,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   20824:             "\xbc\xc7\x18\x63\xf8\xc3\x18\xc6\x18\xe3\x3d" }  },
                   20825:       /* --- pixel bitmap for cmmib83 char#73 I --- */
                   20826:       {  73,  301,                      /* character number, location */
                   20827:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   20828:           {  6,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   20829:             "\x3c\xc6\x30\x0c\x63\x3c" }  },
                   20830:       /* --- pixel bitmap for cmmib83 char#74 J --- */
                   20831:       {  74,  324,                      /* character number, location */
                   20832:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   20833:           {  8,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   20834:             "\xf8\x60\x30\x30\x30\x30\x1b\x0e" }  },
                   20835:       /* --- pixel bitmap for cmmib83 char#75 K --- */
                   20836:       {  75,  349,                      /* character number, location */
                   20837:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   20838:           { 11,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   20839:             "\xbc\xc7\x04\x1b\x78\xc0\x06\x36\x98\xe1\x39" }  },
                   20840:       /* --- pixel bitmap for cmmib83 char#76 L --- */
                   20841:       {  76,  386,                      /* character number, location */
                   20842:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   20843:           {  8,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   20844:             "\x3c\x18\x0c\x0c\x8c\x8c\x46\x7f" }  },
                   20845:       /* --- pixel bitmap for cmmib83 char#77 M --- */
                   20846:       {  77,  415,                      /* character number, location */
                   20847:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   20848:           { 14,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   20849:             "\x3c\x3c\x8e\x46\xe3\xd0\x34\xb4\x0c\x39\x23\x66\x9c"
                   20850:             "\x3c" }  },
                   20851:       /* --- pixel bitmap for cmmib83 char#78 N --- */
                   20852:       {  78,  472,                      /* character number, location */
                   20853:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   20854:           { 11,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   20855:             "\x3c\xc7\x11\x5d\xc8\x42\x1e\xe2\x08\xe3\x10" }  },
                   20856:       /* --- pixel bitmap for cmmib83 char#79 O --- */
                   20857:       {  79,  515,                      /* character number, location */
                   20858:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   20859:           {  7,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   20860:             "\x38\xb3\x78\x3c\x1e\xcd\x1c" }  },
                   20861:       /* --- pixel bitmap for cmmib83 char#80 P --- */
                   20862:       {  80,  550,                      /* character number, location */
                   20863:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   20864:           {  8,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   20865:             "\xfc\x98\xcc\xcc\x7c\x0c\x06\x0f" }  },
                   20866:       /* --- pixel bitmap for cmmib83 char#81 Q --- */
                   20867:       {  81,  579,                      /* character number, location */
                   20868:           8, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   20869:           {  7,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   20870:             "\x38\xb3\x78\x3c\x1e\xfd\x1c\x30\x08" }  },
                   20871:       /* --- pixel bitmap for cmmib83 char#82 R --- */
                   20872:       {  82,  616,                      /* character number, location */
                   20873:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   20874:           {  9,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   20875:             "\xfc\x30\x33\xe3\xc3\x8c\x99\x99\xe7" }  },
                   20876:       /* --- pixel bitmap for cmmib83 char#83 S --- */
                   20877:       {  83,  651,                      /* character number, location */
                   20878:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   20879:           {  6,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   20880:             "\x38\x6b\x38\x1c\xd6\x1c" }  },
                   20881:       /* --- pixel bitmap for cmmib83 char#84 T --- */
                   20882:       {  84,  678,                      /* character number, location */
                   20883:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   20884:           {  9,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   20885:             "\xfe\x65\x67\xc2\x80\x01\x03\x03\x1f" }  },
                   20886:       /* --- pixel bitmap for cmmib83 char#85 U --- */
                   20887:       {  85,  709,                      /* character number, location */
                   20888:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   20889:           {  9,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   20890:             "\xcf\x0d\x0d\x19\x32\x64\xc8\x08\x0f" }  },
                   20891:       /* --- pixel bitmap for cmmib83 char#86 V --- */
                   20892:       {  86,  746,                      /* character number, location */
                   20893:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   20894:           {  9,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   20895:             "\xcf\x8d\x98\x70\xc1\x81\x03\x03\x02" }  },
                   20896:       /* --- pixel bitmap for cmmib83 char#87 W --- */
                   20897:       {  87,  777,                      /* character number, location */
                   20898:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   20899:           { 13,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   20900:             "\xef\xdd\x9c\x98\x1b\x6b\x61\x1d\x9c\x83\x31\x20\x06" }  },
                   20901:       /* --- pixel bitmap for cmmib83 char#88 X --- */
                   20902:       {  88,  828,                      /* character number, location */
                   20903:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   20904:           { 10,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   20905:             "\xbc\xc3\x02\x07\x1c\x70\xe0\x81\xc6\x7b" }  },
                   20906:       /* --- pixel bitmap for cmmib83 char#89 Y --- */
                   20907:       {  89,  859,                      /* character number, location */
                   20908:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   20909:           {  9,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   20910:             "\xcf\x99\xb0\xe0\x81\x01\x03\x03\x0f" }  },
                   20911:       /* --- pixel bitmap for cmmib83 char#90 Z --- */
                   20912:       {  90,  888,                      /* character number, location */
                   20913:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   20914:           {  7,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   20915:             "\x7c\x9a\x0e\xc3\x72\x59\x3e" }  },
                   20916:       /* --- pixel bitmap for cmmib83 char#91 \flat --- */
                   20917:       {  91, 3366,                      /* character number, location */
                   20918:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   20919:           {  2,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   20920:             "\x55\xff\x01" }  },
                   20921:       /* --- pixel bitmap for cmmib83 char#92 \natural --- */
                   20922:       {  92, 3391,                      /* character number, location */
                   20923:           8, 0,   -2, 0,      /* topleft row,col, and botleft row,col */
                   20924:           {  4,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   20925:             "\x11\xbd\x99\xd9\x8b" }  },
                   20926:       /* --- pixel bitmap for cmmib83 char#93 \sharp --- */
                   20927:       {  93, 3432,                      /* character number, location */
                   20928:           8, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   20929:           {  2,   10, 3, 4, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   20930:             "\xf9\x02" }  },
                   20931:       /* --- pixel bitmap for cmmib83 char#94 \smile --- */
                   20932:       {  94, 3459,                      /* character number, location */
                   20933:           5, 1,    2, 1,      /* topleft row,col, and botleft row,col */
                   20934:           { 10,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   20935:             "\x01\x0a\xc4\x0f" }  },
                   20936:       /* --- pixel bitmap for cmmib83 char#95 \frown --- */
                   20937:       {  95, 3476,                      /* character number, location */
                   20938:           5, 1,    2, 1,      /* topleft row,col, and botleft row,col */
                   20939:           { 10,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   20940:             "\xfc\x08\x14\x20" }  },
                   20941:       /* --- pixel bitmap for cmmib83 char#96 \ell --- */
                   20942:       {  96, 2764,                      /* character number, location */
                   20943:           8,-1,    0,-1,      /* topleft row,col, and botleft row,col */
                   20944:           {  6,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   20945:             "\x30\x4a\x51\x0c\x61\xe0" }  },
                   20946:       /* --- pixel bitmap for cmmib83 char#97 a --- */
                   20947:       {  97,  921,                      /* character number, location */
                   20948:           5, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   20949:           {  5,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   20950:             "\x3e\xc6\x7c\x01" }  },
                   20951:       /* --- pixel bitmap for cmmib83 char#98 b --- */
                   20952:       {  98,  946,                      /* character number, location */
                   20953:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   20954:           {  5,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   20955:             "\x43\x84\x17\x63\x3a" }  },
                   20956:       /* --- pixel bitmap for cmmib83 char#99 c --- */
                   20957:       {  99,  975,                      /* character number, location */
                   20958:           5, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   20959:           {  4,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   20960:             "\x9e\x11\x0f" }  },
                   20961:       /* --- pixel bitmap for cmmib83 char#100 d --- */
                   20962:       { 100,  994,                      /* character number, location */
                   20963:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   20964:           {  6,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   20965:             "\x30\x08\x79\x51\x94\x5d" }  },
                   20966:       /* --- pixel bitmap for cmmib83 char#101 e --- */
                   20967:       { 101, 1025,                      /* character number, location */
                   20968:           5, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   20969:           {  5,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   20970:             "\x2e\xbe\xf0\x00" }  },
                   20971:       /* --- pixel bitmap for cmmib83 char#102 f --- */
                   20972:       { 102, 1044,                      /* character number, location */
                   20973:           8, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   20974:           {  5,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   20975:             "\x98\x10\x47\x88\x10\x22\x00" }  },
                   20976:       /* --- pixel bitmap for cmmib83 char#103 g --- */
                   20977:       { 103, 1071,                      /* character number, location */
                   20978:           5, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   20979:           {  5,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   20980:             "\x3e\xc6\xf4\xd0\x01" }  },
                   20981:       /* --- pixel bitmap for cmmib83 char#104 h --- */
                   20982:       { 104, 1098,                      /* character number, location */
                   20983:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   20984:           {  6,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   20985:             "\x06\x21\x68\xa6\x18\xc7" }  },
                   20986:       /* --- pixel bitmap for cmmib83 char#105 i --- */
                   20987:       { 105, 1131,                      /* character number, location */
                   20988:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   20989:           {  3,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   20990:             "\x04\xb0\x69\x03" }  },
                   20991:       /* --- pixel bitmap for cmmib83 char#106 j --- */
                   20992:       { 106, 1152,                      /* character number, location */
                   20993:           9, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   20994:           {  5,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   20995:             "\x10\x00\xc0\x14\x22\x84\x0c" }  },
                   20996:       /* --- pixel bitmap for cmmib83 char#107 k --- */
                   20997:       { 107, 1179,                      /* character number, location */
                   20998:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   20999:           {  6,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21000:             "\x06\x21\xc8\xae\x93\x45" }  },
                   21001:       /* --- pixel bitmap for cmmib83 char#108 l --- */
                   21002:       { 108, 1210,                      /* character number, location */
                   21003:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   21004:           {  3,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21005:             "\xa6\x24\x4d" }  },
                   21006:       /* --- pixel bitmap for cmmib83 char#109 m --- */
                   21007:       { 109, 1233,                      /* character number, location */
                   21008:           5, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   21009:           {  9,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21010:             "\xdb\x4e\x8a\x8c\x1c\x19" }  },
                   21011:       /* --- pixel bitmap for cmmib83 char#110 n --- */
                   21012:       { 110, 1270,                      /* character number, location */
                   21013:           5, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   21014:           {  5,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21015:             "\x6f\xca\x9c\x01" }  },
                   21016:       /* --- pixel bitmap for cmmib83 char#111 o --- */
                   21017:       { 111, 1295,                      /* character number, location */
                   21018:           5, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   21019:           {  6,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21020:             "\x5e\x18\x46\x0f" }  },
                   21021:       /* --- pixel bitmap for cmmib83 char#112 p --- */
                   21022:       { 112, 1318,                      /* character number, location */
                   21023:           5, 0,   -2, 0,      /* topleft row,col, and botleft row,col */
                   21024:           {  7,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21025:             "\x3e\x23\xd1\xe4\x11\x0c\x00" }  },
                   21026:       /* --- pixel bitmap for cmmib83 char#113 q --- */
                   21027:       { 113, 1345,                      /* character number, location */
                   21028:           5, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   21029:           {  5,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21030:             "\x3e\xc6\xf4\x10\x03" }  },
                   21031:       /* --- pixel bitmap for cmmib83 char#114 r --- */
                   21032:       { 114, 1372,                      /* character number, location */
                   21033:           5, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   21034:           {  4,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21035:             "\xbf\x12\x01" }  },
                   21036:       /* --- pixel bitmap for cmmib83 char#115 s --- */
                   21037:       { 115, 1391,                      /* character number, location */
                   21038:           5, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   21039:           {  4,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21040:             "\xcc\x8c\x0e" }  },
                   21041:       /* --- pixel bitmap for cmmib83 char#116 t --- */
                   21042:       { 116, 1408,                      /* character number, location */
                   21043:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   21044:           {  3,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21045:             "\xd4\xa5\x09" }  },
                   21046:       /* --- pixel bitmap for cmmib83 char#117 u --- */
                   21047:       { 117, 1429,                      /* character number, location */
                   21048:           5, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   21049:           {  5,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21050:             "\x73\xca\x6c\x01" }  },
                   21051:       /* --- pixel bitmap for cmmib83 char#118 v --- */
                   21052:       { 118, 1456,                      /* character number, location */
                   21053:           5, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   21054:           {  5,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21055:             "\x73\xca\x64\x00" }  },
                   21056:       /* --- pixel bitmap for cmmib83 char#119 w --- */
                   21057:       { 119, 1481,                      /* character number, location */
                   21058:           5, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   21059:           {  8,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21060:             "\x53\x93\x92\x49\x36" }  },
                   21061:       /* --- pixel bitmap for cmmib83 char#120 x --- */
                   21062:       { 120, 1516,                      /* character number, location */
                   21063:           5, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   21064:           {  6,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21065:             "\x94\x8a\x54\x1e" }  },
                   21066:       /* --- pixel bitmap for cmmib83 char#121 y --- */
                   21067:       { 121, 1543,                      /* character number, location */
                   21068:           5, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   21069:           {  5,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21070:             "\x73\xca\xe4\xd0\x01" }  },
                   21071:       /* --- pixel bitmap for cmmib83 char#122 z --- */
                   21072:       { 122, 1572,                      /* character number, location */
                   21073:           5, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   21074:           {  5,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21075:             "\x5c\x11\xf5\x00" }  },
                   21076:       /* --- pixel bitmap for cmmib83 char#123 \imath --- */
                   21077:       { 123, 2793,                      /* character number, location */
                   21078:           5, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   21079:           {  2,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21080:             "\xef\x03" }  },
                   21081:       /* --- pixel bitmap for cmmib83 char#124 \jmath --- */
                   21082:       { 124, 2810,                      /* character number, location */
                   21083:           5, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   21084:           {  3,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21085:             "\x36\x25\x05" }  },
                   21086:       /* --- pixel bitmap for cmmib83 char#125 \wp --- */
                   21087:       { 125, 2831,                      /* character number, location */
                   21088:           5, 0,   -2, 0,      /* topleft row,col, and botleft row,col */
                   21089:           {  8,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21090:             "\x74\x8e\x82\x42\x35\x05\x02" }  },
                   21091:       /* --- pixel bitmap for cmmib83 char#126 \bfvec --- */
                   21092:       { 126, 2866,                      /* character number, location */
                   21093:           9, 2,    6, 2,      /* topleft row,col, and botleft row,col */
                   21094:           {  6,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21095:             "\xd0\x0f\x01" }  },
                   21096:       /* --- pixel bitmap for cmmib83 char#127 (noname) --- */
                   21097:       { 127, 2879,                      /* character number, location */
                   21098:           8, 3,    6, 3,      /* topleft row,col, and botleft row,col */
                   21099:           {  5,    2, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21100:             "\x2e\x02" }  },
                   21101:       /* --- trailer  --- */
                   21102:       { -99, -999,  0,0,0,0, { 0,0,0,0, (pixbyte *)"\0" }  }
                   21103:    } ;
                   21104: 
                   21105: 
                   21106: /* --- size=1 for .100gf ---
                   21107:  * mf '\mode=preview; mag=magstep(-17.87427405946994351363); input cmmib10'
                   21108:  * --------------------------------------------------------------------- */
                   21109: /* --- fontdef for cmmib100 --- */
                   21110: static	chardef  cmmib100[] =
                   21111:    {
                   21112:       /* --- pixel bitmap for cmmib100 char#0 \Gamma --- */
                   21113:       {   0,52539,                      /* character number, location */
                   21114:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   21115:           { 10,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21116:             "\xfc\x63\x8c\x21\x43\x0c\x30\xc0\x80\x01\x1f\x00" }  },
                   21117:       /* --- pixel bitmap for cmmib100 char#1 \Delta --- */
                   21118:       {   1,53404,                      /* character number, location */
                   21119:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   21120:           { 11,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21121:             "\x80\x00\x0e\x68\x20\x87\x31\x84\x11\xdc\xff\xff\x07" }  },
                   21122:       /* --- pixel bitmap for cmmib100 char#2 \Theta --- */
                   21123:       {   2,54527,                      /* character number, location */
                   21124:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   21125:           { 10,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21126:             "\xf0\x31\x6c\xf0\xcc\x33\x0f\x3c\xd8\x31\x7c\x00" }  },
                   21127:       /* --- pixel bitmap for cmmib100 char#3 \Lambda --- */
                   21128:       {   3,55425,                      /* character number, location */
                   21129:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   21130:           { 10,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21131:             "\x40\x80\x01\x0e\x34\xc8\x20\x43\x8c\x31\xe7\x03" }  },
                   21132:       /* --- pixel bitmap for cmmib100 char#4 \Xi --- */
                   21133:       {   4,56802,                      /* character number, location */
                   21134:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   21135:           { 11,    9, 3,23, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21136:             "\xf1\x29\x21\x71\xf1\x27\x20\xc1\x71\x1f\x19\x22" }  },
                   21137:       /* --- pixel bitmap for cmmib100 char#5 \Pi --- */
                   21138:       {   5,58019,                      /* character number, location */
                   21139:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   21140:           { 13,    9, 3,27, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21141:             "\x2b\xf1\x32\x42\x20\xf3\x22\x42\x30\x12\x42\x44\x25"
                   21142:             "\x22" }  },
                   21143:       /* --- pixel bitmap for cmmib100 char#6 \Sigma --- */
                   21144:       {   6,59174,                      /* character number, location */
                   21145:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   21146:           { 11,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21147:             "\xfc\xe7\x30\x8e\xe1\x04\x06\x10\x61\x8c\x20\xfe\x01" }  },
                   21148:       /* --- pixel bitmap for cmmib100 char#7 \Upsilon --- */
                   21149:       {   7,60190,                      /* character number, location */
                   21150:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   21151:           { 10,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21152:             "\xce\xbd\x8f\x03\x06\x18\x60\x80\x01\x03\x3f\x00" }  },
                   21153:       /* --- pixel bitmap for cmmib100 char#8 \Phi --- */
                   21154:       {   8,61216,                      /* character number, location */
                   21155:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   21156:           {  9,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21157:             "\xf8\xc1\xf0\xb3\x3d\x7b\xb6\x1f\x0c\x7e\x00" }  },
                   21158:       /* --- pixel bitmap for cmmib100 char#9 \Psi --- */
                   21159:       {   9,62271,                      /* character number, location */
                   21160:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   21161:           { 10,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21162:             "\xfc\xc0\x30\xfb\x36\xdb\xec\xe1\x03\x03\x3f\x00" }  },
                   21163:       /* --- pixel bitmap for cmmib100 char#10 \Omega --- */
                   21164:       {  10,63456,                      /* character number, location */
                   21165:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   21166:           { 11,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21167:             "\xf0\x61\x18\x83\x0d\x66\x30\x82\x18\xea\x30\xc7\x01" }  },
                   21168:       /* --- pixel bitmap for cmmib100 char#11 \alpha --- */
                   21169:       {  11,64424,                      /* character number, location */
                   21170:           6, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   21171:           {  9,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21172:             "\x3c\xcc\x0f\x1f\x36\xce\x33" }  },
                   21173:       /* --- pixel bitmap for cmmib100 char#12 \beta --- */
                   21174:       {  12,65445,                      /* character number, location */
                   21175:          10, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   21176:           {  9,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21177:             "\xe0\x20\x23\x46\x4c\x8f\x1e\x31\x62\x66\x74\x08\x10"
                   21178:             "\x10\x00" }  },
                   21179:       /* --- pixel bitmap for cmmib100 char#13 \gamma --- */
                   21180:       {  13,66310,                      /* character number, location */
                   21181:           6, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   21182:           {  8,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21183:             "\x8e\x9f\x71\x60\x60\x20\x20\x20\x10" }  },
                   21184:       /* --- pixel bitmap for cmmib100 char#14 \delta --- */
                   21185:       {  14,67177,                      /* character number, location */
                   21186:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   21187:           {  6,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21188:             "\x10\x4e\x32\x18\x67\xcf\xf3\xe6\x00" }  },
                   21189:       /* --- pixel bitmap for cmmib100 char#15 \epsilon --- */
                   21190:       {  15,67981,                      /* character number, location */
                   21191:           6, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   21192:           {  6,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21193:             "\xbc\xf0\x0d\xa3\x07" }  },
                   21194:       /* --- pixel bitmap for cmmib100 char#16 \zeta --- */
                   21195:       {  16,68853,                      /* character number, location */
                   21196:          10, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   21197:           {  6,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21198:             "\x08\xce\x1b\xc2\x30\x0c\xc3\xe3\x41\x1c" }  },
                   21199:       /* --- pixel bitmap for cmmib100 char#17 \eta --- */
                   21200:       {  17,69686,                      /* character number, location */
                   21201:           6, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   21202:           {  8,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21203:             "\x77\xcf\xc6\xc6\x63\x63\x60\x60\x20" }  },
                   21204:       /* --- pixel bitmap for cmmib100 char#18 \theta --- */
                   21205:       {  18,70422,                      /* character number, location */
                   21206:          10, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   21207:           {  7,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21208:             "\x38\xa6\xd1\xf8\xff\x8f\x67\x13\x07" }  },
                   21209:       /* --- pixel bitmap for cmmib100 char#19 \iota --- */
                   21210:       {  19,71067,                      /* character number, location */
                   21211:           6, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   21212:           {  4,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21213:             "\x64\x66\x6b" }  },
                   21214:       /* --- pixel bitmap for cmmib100 char#20 \kappa --- */
                   21215:       {  20,71961,                      /* character number, location */
                   21216:           6, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   21217:           {  8,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21218:             "\xc4\xf6\x3e\x66\xe3\xc3" }  },
                   21219:       /* --- pixel bitmap for cmmib100 char#21 \lambda --- */
                   21220:       {  21,72770,                      /* character number, location */
                   21221:          10, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   21222:           {  9,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21223:             "\x1c\x70\xc0\x80\x01\x06\x0c\x1c\x66\xc6\x84\x03" }  },
                   21224:       /* --- pixel bitmap for cmmib100 char#22 \mu --- */
                   21225:       {  22,73786,                      /* character number, location */
                   21226:           6, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   21227:           {  9,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21228:             "\x08\x19\x33\x66\xec\xdc\xb7\x01\x03\x02\x00" }  },
                   21229:       /* --- pixel bitmap for cmmib100 char#23 \nu --- */
                   21230:       {  23,74527,                      /* character number, location */
                   21231:           6, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   21232:           {  9,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21233:             "\x07\x0d\x1b\x36\xb7\xe3\x00" }  },
                   21234:       /* --- pixel bitmap for cmmib100 char#24 \xi --- */
                   21235:       {  24,75605,                      /* character number, location */
                   21236:          10, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   21237:           {  7,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21238:             "\x10\x38\x9b\x61\xe0\xf1\x0c\x83\x87\x0f\x86\x03" }  },
                   21239:       /* --- pixel bitmap for cmmib100 char#25 \pi --- */
                   21240:       {  25,76463,                      /* character number, location */
                   21241:           6, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   21242:           {  9,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21243:             "\xfe\xff\xb3\x20\x61\xc6\x0c" }  },
                   21244:       /* --- pixel bitmap for cmmib100 char#26 \rho --- */
                   21245:       {  26,77281,                      /* character number, location */
                   21246:           6, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   21247:           {  9,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21248:             "\xf0\x10\x33\x66\x6c\xcc\x8f\x01\x03\x02\x00" }  },
                   21249:       /* --- pixel bitmap for cmmib100 char#27 \sigma --- */
                   21250:       {  27,78119,                      /* character number, location */
                   21251:           6, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   21252:           {  9,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21253:             "\xfc\xfd\x8f\x19\x33\xc3\x03" }  },
                   21254:       /* --- pixel bitmap for cmmib100 char#28 \tau --- */
                   21255:       {  28,78822,                      /* character number, location */
                   21256:           6, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   21257:           {  8,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21258:             "\xfe\xff\x18\x08\x0c\x0c" }  },
                   21259:       /* --- pixel bitmap for cmmib100 char#29 \upsilon --- */
                   21260:       {  29,79695,                      /* character number, location */
                   21261:           6, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   21262:           {  8,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21263:             "\x46\xc7\x86\x46\x46\x3c" }  },
                   21264:       /* --- pixel bitmap for cmmib100 char#30 \phi --- */
                   21265:       {  30,80501,                      /* character number, location */
                   21266:          10, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   21267:           { 10,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21268:             "\x40\x00\x01\x02\x08\xfc\x98\x34\xf1\xc4\x93\xf9\x81"
                   21269:             "\x00\x02\x08\x00" }  },
                   21270:       /* --- pixel bitmap for cmmib100 char#31 \chi --- */
                   21271:       {  31,81468,                      /* character number, location */
                   21272:           6, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   21273:           {  9,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21274:             "\x06\x1b\x61\xc1\x81\x01\x07\x0d\x31\xe1\x00" }  },
                   21275:       /* --- pixel bitmap for cmmib100 char#32 \psi --- */
                   21276:       {  32,82451,                      /* character number, location */
                   21277:          10, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   21278:           { 10,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21279:             "\x40\x00\x01\x04\x10\x26\x9d\x6c\xa2\x49\x96\xf1\x01"
                   21280:             "\x01\x04\x08\x00" }  },
                   21281:       /* --- pixel bitmap for cmmib100 char#33 \omega --- */
                   21282:       {  33,83490,                      /* character number, location */
                   21283:           6, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   21284:           { 10,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21285:             "\x02\x05\x1c\x63\xcc\xff\xb9\x03" }  },
                   21286:       /* --- pixel bitmap for cmmib100 char#34 \varepsilon --- */
                   21287:       {  34,84415,                      /* character number, location */
                   21288:           6, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   21289:           {  5,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21290:             "\xfe\xbf\xf3\x1f" }  },
                   21291:       /* --- pixel bitmap for cmmib100 char#35 \vartheta --- */
                   21292:       {  35,85388,                      /* character number, location */
                   21293:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   21294:           {  8,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21295:             "\x70\x88\x88\x88\xf7\xc7\xc6\x66\x22\x1e" }  },
                   21296:       /* --- pixel bitmap for cmmib100 char#36 \varpi --- */
                   21297:       {  36,86533,                      /* character number, location */
                   21298:           6, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   21299:           { 13,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21300:             "\xfe\xff\xff\x13\x21\x32\xc6\x7f\x38\x07" }  },
                   21301:       /* --- pixel bitmap for cmmib100 char#37 \varrho --- */
                   21302:       {  37,87408,                      /* character number, location */
                   21303:           6, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   21304:           {  8,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21305:             "\x78\xc4\xc6\xc6\x67\x3d\x01\x1f\x1e" }  },
                   21306:       /* --- pixel bitmap for cmmib100 char#38 \varsigma --- */
                   21307:       {  38,88183,                      /* character number, location */
                   21308:           6, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   21309:           {  5,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21310:             "\x5c\x8c\xe3\x38\x03" }  },
                   21311:       /* --- pixel bitmap for cmmib100 char#39 \varphi --- */
                   21312:       {  39,89036,                      /* character number, location */
                   21313:           6, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   21314:           { 10,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21315:             "\xc2\x85\x1f\x62\x44\xff\xf1\x81\x01\x06\x08\x00" }  },
                   21316:       /* --- pixel bitmap for cmmib100 char#40 \bfleftharpoonup --- */
                   21317:       {  40,103938,                     /* character number, location */
                   21318:           7, 1,    3, 1,      /* topleft row,col, and botleft row,col */
                   21319:           { 14,    4, 3, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21320:             "\x31\xc1\xc2\xbe" }  },
                   21321:       /* --- pixel bitmap for cmmib100 char#41 \bfleftharpoondown --- */
                   21322:       {  41,104934,                     /* character number, location */
                   21323:           4, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   21324:           { 14,    4, 3, 9, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21325:             "\x0e\x12\xd1\xe1\xa2" }  },
                   21326:       /* --- pixel bitmap for cmmib100 char#42 \bfrightharpoonup --- */
                   21327:       {  42,105928,                     /* character number, location */
                   21328:           7, 1,    3, 1,      /* topleft row,col, and botleft row,col */
                   21329:           { 14,    4, 3, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21330:             "\xa1\xe1\xd2\x1e" }  },
                   21331:       /* --- pixel bitmap for cmmib100 char#43 \bfrightharpoondown --- */
                   21332:       {  43,106925,                     /* character number, location */
                   21333:           4, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   21334:           { 14,    4, 3, 9, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21335:             "\x0e\xb2\xc1\xc1\x32" }  },
                   21336:       /* --- pixel bitmap for cmmib100 char#44 ` --- */
                   21337:       {  44,107314,                     /* character number, location */
                   21338:           8, 1,    3, 1,      /* topleft row,col, and botleft row,col */
                   21339:           {  2,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21340:             "\x56\x02" }  },
                   21341:       /* --- pixel bitmap for cmmib100 char#45 ' --- */
                   21342:       {  45,107706,                     /* character number, location */
                   21343:           8, 1,    3, 1,      /* topleft row,col, and botleft row,col */
                   21344:           {  2,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21345:             "\xa9\x01" }  },
                   21346:       /* --- pixel bitmap for cmmib100 char#46 \triangleright --- */
                   21347:       {  46,108215,                     /* character number, location */
                   21348:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   21349:           {  6,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21350:             "\xc1\x91\x85\xd9\x11\x00" }  },
                   21351:       /* --- pixel bitmap for cmmib100 char#47 \triangleleft --- */
                   21352:       {  47,108733,                     /* character number, location */
                   21353:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   21354:           {  6,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21355:             "\x20\x6e\x86\x26\x0e\x02" }  },
                   21356:       /* --- pixel bitmap for cmmib100 char#48 \0 --- */
                   21357:       {  48,94975,                      /* character number, location */
                   21358:           6, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   21359:           {  6,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21360:             "\xde\x3c\xcf\xb3\x07" }  },
                   21361:       /* --- pixel bitmap for cmmib100 char#49 \1 --- */
                   21362:       {  49,95696,                      /* character number, location */
                   21363:           6, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   21364:           {  6,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21365:             "\xcc\xc3\x30\xcc\x0f" }  },
                   21366:       /* --- pixel bitmap for cmmib100 char#50 \2 --- */
                   21367:       {  50,96628,                      /* character number, location */
                   21368:           6, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   21369:           {  6,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21370:             "\xdf\x0c\xe3\xfe\x0f" }  },
                   21371:       /* --- pixel bitmap for cmmib100 char#51 \3 --- */
                   21372:       {  51,97611,                      /* character number, location */
                   21373:           6, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   21374:           {  6,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21375:             "\xde\x3c\xc3\x1c\x3c\xcf\x1e" }  },
                   21376:       /* --- pixel bitmap for cmmib100 char#52 \4 --- */
                   21377:       {  52,98494,                      /* character number, location */
                   21378:           6, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   21379:           {  8,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21380:             "\x30\x38\x3c\x36\x33\xff\x30\x30\xfc" }  },
                   21381:       /* --- pixel bitmap for cmmib100 char#53 \5 --- */
                   21382:       {  53,99485,                      /* character number, location */
                   21383:           6, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   21384:           {  6,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21385:             "\xff\x13\x7c\x33\x3c\x4f\x0e" }  },
                   21386:       /* --- pixel bitmap for cmmib100 char#54 \6 --- */
                   21387:       {  54,100334,                     /* character number, location */
                   21388:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   21389:           {  6,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21390:             "\x9c\x3d\x7f\xf3\x3c\xcb\x1c" }  },
                   21391:       /* --- pixel bitmap for cmmib100 char#55 \7 --- */
                   21392:       {  55,101191,                     /* character number, location */
                   21393:           6, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   21394:           {  7,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21395:             "\xff\x7f\x08\x82\x60\x30\x18\x0c" }  },
                   21396:       /* --- pixel bitmap for cmmib100 char#56 \8 --- */
                   21397:       {  56,102070,                     /* character number, location */
                   21398:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   21399:           {  6,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21400:             "\xde\x3c\x7b\xde\x3c\xcf\x1e" }  },
                   21401:       /* --- pixel bitmap for cmmib100 char#57 \9 --- */
                   21402:       {  57,102923,                     /* character number, location */
                   21403:           6, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   21404:           {  6,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21405:             "\xce\x34\xcf\xb3\x3f\x6f\x0e" }  },
                   21406:       /* --- pixel bitmap for cmmib100 char#58 . --- */
                   21407:       {  58,109180,                     /* character number, location */
                   21408:           2, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   21409:           {  2,    2, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21410:             "\x0f" }  },
                   21411:       /* --- pixel bitmap for cmmib100 char#59 , --- */
                   21412:       {  59,109713,                     /* character number, location */
                   21413:           2, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   21414:           {  2,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21415:             "\xaf\x01" }  },
                   21416:       /* --- pixel bitmap for cmmib100 char#60 < --- */
                   21417:       {  60,110343,                     /* character number, location */
                   21418:           9, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   21419:           { 10,   11, 3,22, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21420:             "\x91\x72\x62\x62\x62\x71\xa2\xa2\xa2\xa2\xa1" }  },
                   21421:       /* --- pixel bitmap for cmmib100 char#61 / --- */
                   21422:       {  61,110841,                     /* character number, location */
                   21423:          10, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   21424:           {  6,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21425:             "\x20\x08\x41\x08\x42\x10\x84\x20\x04\x01" }  },
                   21426:       /* --- pixel bitmap for cmmib100 char#62 > --- */
                   21427:       {  62,111490,                     /* character number, location */
                   21428:           9, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   21429:           { 10,   11, 3,23, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21430:             "\x01\xa2\xa2\xa2\xa2\xa1\x72\x62\x62\x62\x71\x91" }  },
                   21431:       /* --- pixel bitmap for cmmib100 char#63 \star --- */
                   21432:       {  63,112163,                     /* character number, location */
                   21433:           5, 0,    1, 0,      /* topleft row,col, and botleft row,col */
                   21434:           {  6,    4, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21435:             "\x18\x8f\x91" }  },
                   21436:       /* --- pixel bitmap for cmmib100 char#64 \partial --- */
                   21437:       {  64,89950,                      /* character number, location */
                   21438:          10, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   21439:           {  7,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21440:             "\x3c\xb3\x11\xc8\x17\x8f\x67\x33\x07" }  },
                   21441:       /* --- pixel bitmap for cmmib100 char#65 A --- */
                   21442:       {  65, 1000,                      /* character number, location */
                   21443:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   21444:           { 11,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21445:             "\xc0\x00\x06\x38\xa0\x01\x1d\xc4\xf0\x87\x30\xc7\x07" }  },
                   21446:       /* --- pixel bitmap for cmmib100 char#66 B --- */
                   21447:       {  66, 2328,                      /* character number, location */
                   21448:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   21449:           { 11,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21450:             "\xfc\xc3\x30\x86\x19\xc6\x1f\x86\x31\xcc\x30\xff\x00" }  },
                   21451:       /* --- pixel bitmap for cmmib100 char#67 C --- */
                   21452:       {  67, 3269,                      /* character number, location */
                   21453:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   21454:           { 10,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21455:             "\xf0\x32\x6c\xe0\x00\x03\x0c\x30\x90\x20\x7c\x00" }  },
                   21456:       /* --- pixel bitmap for cmmib100 char#68 D --- */
                   21457:       {  68, 4379,                      /* character number, location */
                   21458:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   21459:           { 12,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21460:             "\xf8\x07\xc3\x30\x8c\xc1\x18\x8c\xc1\x18\xc6\x30\xfe"
                   21461:             "\x01" }  },
                   21462:       /* --- pixel bitmap for cmmib100 char#69 E --- */
                   21463:       {  69, 5774,                      /* character number, location */
                   21464:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   21465:           { 10,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21466:             "\xfc\x63\x8c\x29\x53\x7c\x30\xc9\x94\x61\xff\x00" }  },
                   21467:       /* --- pixel bitmap for cmmib100 char#70 F --- */
                   21468:       {  70, 6981,                      /* character number, location */
                   21469:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   21470:           { 10,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21471:             "\xfc\x63\x8c\x29\x53\x7c\x30\xc1\x84\x01\x1f\x00" }  },
                   21472:       /* --- pixel bitmap for cmmib100 char#71 G --- */
                   21473:       {  71, 8092,                      /* character number, location */
                   21474:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   21475:           { 11,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21476:             "\xf0\x65\xb0\x01\x05\x30\xfc\x81\x0d\xcc\x30\xfc\x01" }  },
                   21477:       /* --- pixel bitmap for cmmib100 char#72 H --- */
                   21478:       {  72, 9313,                      /* character number, location */
                   21479:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   21480:           { 13,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21481:             "\x3c\x1f\xc3\x60\x18\x86\xc1\x3f\x18\x06\xc3\x30\x0c"
                   21482:             "\xcf\x07" }  },
                   21483:       /* --- pixel bitmap for cmmib100 char#73 I --- */
                   21484:       {  73,10012,                      /* character number, location */
                   21485:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   21486:           {  8,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21487:             "\xfc\x30\x30\x18\x18\x18\x18\x0c\x3f" }  },
                   21488:       /* --- pixel bitmap for cmmib100 char#74 J --- */
                   21489:       {  74,10850,                      /* character number, location */
                   21490:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   21491:           {  9,    9, 3,19, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21492:             "\x45\xf1\x62\x10\xf3\x52\x22\x22\x44\x40" }  },
                   21493:       /* --- pixel bitmap for cmmib100 char#75 K --- */
                   21494:       {  75,12033,                      /* character number, location */
                   21495:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   21496:           { 12,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21497:             "\x7c\x8f\x11\x98\xc0\x06\x7c\xc0\x0e\xcc\x60\x0c\xdf"
                   21498:             "\x03" }  },
                   21499:       /* --- pixel bitmap for cmmib100 char#76 L --- */
                   21500:       {  76,12926,                      /* character number, location */
                   21501:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   21502:           { 10,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21503:             "\xf8\xc0\x00\x03\x06\x18\x60\x88\x31\x43\xfe\x01" }  },
                   21504:       /* --- pixel bitmap for cmmib100 char#77 M --- */
                   21505:       {  77,14236,                      /* character number, location */
                   21506:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   21507:           { 16,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21508:             "\x3c\xf8\x38\x38\x38\x34\x34\x1a\x64\x1a\x64\x19\xe4"
                   21509:             "\x18\xe2\x0c\x6f\x3e" }  },
                   21510:       /* --- pixel bitmap for cmmib100 char#78 N --- */
                   21511:       {  78,15374,                      /* character number, location */
                   21512:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   21513:           { 13,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21514:             "\x3c\x1e\x87\xa0\x11\x32\x41\x2c\x88\x05\xe1\x10\x0c"
                   21515:             "\x0f\x01" }  },
                   21516:       /* --- pixel bitmap for cmmib100 char#79 O --- */
                   21517:       {  79,16219,                      /* character number, location */
                   21518:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   21519:           { 10,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21520:             "\xf0\x31\x6c\xf0\xc0\x03\x0f\x3c\xd8\x31\x7c\x00" }  },
                   21521:       /* --- pixel bitmap for cmmib100 char#80 P --- */
                   21522:       {  80,17276,                      /* character number, location */
                   21523:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   21524:           { 11,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21525:             "\xfc\xc3\x30\x86\x19\xc6\x1f\x06\x30\xc0\x00\x1f\x00" }  },
                   21526:       /* --- pixel bitmap for cmmib100 char#81 Q --- */
                   21527:       {  81,18263,                      /* character number, location */
                   21528:           9, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   21529:           { 10,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21530:             "\xf0\x31\x6c\xf0\xc0\x03\x0f\x3c\xd8\x37\x7c\x80\x00"
                   21531:             "\x0e\x30" }  },
                   21532:       /* --- pixel bitmap for cmmib100 char#82 R --- */
                   21533:       {  82,19548,                      /* character number, location */
                   21534:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   21535:           { 11,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21536:             "\xfc\xc3\x30\x86\x19\xc6\x1f\xc6\x30\xc6\x18\x9f\x07" }  },
                   21537:       /* --- pixel bitmap for cmmib100 char#83 S --- */
                   21538:       {  83,20593,                      /* character number, location */
                   21539:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   21540:           {  9,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21541:             "\xf8\x19\x32\xe0\xc1\x07\x1c\xb0\x30\x3f\x00" }  },
                   21542:       /* --- pixel bitmap for cmmib100 char#84 T --- */
                   21543:       {  84,21609,                      /* character number, location */
                   21544:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   21545:           { 10,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21546:             "\xfe\x8b\x2d\x66\x4c\x30\xc0\x00\x03\x06\x7e\x00" }  },
                   21547:       /* --- pixel bitmap for cmmib100 char#85 U --- */
                   21548:       {  85,22589,                      /* character number, location */
                   21549:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   21550:           { 11,    9, 3,23, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21551:             "\x05\x24\xf1\x12\x51\x2f\x32\x51\x32\x41\x55\x52" }  },
                   21552:       /* --- pixel bitmap for cmmib100 char#86 V --- */
                   21553:       {  86,23463,                      /* character number, location */
                   21554:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   21555:           { 12,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21556:             "\x1f\xcf\x20\x0c\xc1\x08\x98\x80\x05\x38\x80\x03\x18"
                   21557:             "\x00" }  },
                   21558:       /* --- pixel bitmap for cmmib100 char#87 W --- */
                   21559:       {  87,24826,                      /* character number, location */
                   21560:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   21561:           { 16,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21562:             "\x9f\xf7\x8c\x23\x4c\x33\x6c\x13\x2c\x0b\x1c\x0b\x1c"
                   21563:             "\x07\x0c\x06\x0c\x02" }  },
                   21564:       /* --- pixel bitmap for cmmib100 char#88 X --- */
                   21565:       {  88,25923,                      /* character number, location */
                   21566:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   21567:           { 13,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21568:             "\x78\x1e\x4c\x80\x05\x60\x00\x0c\x40\x03\x64\x40\x18"
                   21569:             "\x9f\x0f" }  },
                   21570:       /* --- pixel bitmap for cmmib100 char#89 Y --- */
                   21571:       {  89,26953,                      /* character number, location */
                   21572:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   21573:           { 12,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21574:             "\x1f\xcf\x30\x98\x81\x0d\x78\x00\x03\x30\x80\x01\x7c"
                   21575:             "\x00" }  },
                   21576:       /* --- pixel bitmap for cmmib100 char#90 Z --- */
                   21577:       {  90,28024,                      /* character number, location */
                   21578:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   21579:           { 10,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21580:             "\xfc\x33\x46\x8c\x18\x30\x60\xc4\x98\x21\xff\x00" }  },
                   21581:       /* --- pixel bitmap for cmmib100 char#91 \flat --- */
                   21582:       {  91,112804,                     /* character number, location */
                   21583:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   21584:           {  4,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21585:             "\x11\x51\xdf\x7d\x37" }  },
                   21586:       /* --- pixel bitmap for cmmib100 char#92 \natural --- */
                   21587:       {  92,113511,                     /* character number, location */
                   21588:          10, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   21589:           {  4,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21590:             "\x11\xf9\x9f\x99\xf9\x9f\x08" }  },
                   21591:       /* --- pixel bitmap for cmmib100 char#93 \sharp --- */
                   21592:       {  93,114322,                     /* character number, location */
                   21593:          10, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   21594:           {  4,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21595:             "\x98\xf9\x9f\x99\xf9\x9f\x01" }  },
                   21596:       /* --- pixel bitmap for cmmib100 char#94 \smile --- */
                   21597:       {  94,115186,                     /* character number, location */
                   21598:           6, 1,    2, 1,      /* topleft row,col, and botleft row,col */
                   21599:           { 14,    4, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21600:             "\x01\xa0\x01\xc6\xff\xc0\x0f" }  },
                   21601:       /* --- pixel bitmap for cmmib100 char#95 \frown --- */
                   21602:       {  95,116022,                     /* character number, location */
                   21603:           6, 1,    2, 1,      /* topleft row,col, and botleft row,col */
                   21604:           { 14,    4, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21605:             "\x38\x5a\x31\xa1\x11\xc1" }  },
                   21606:       /* --- pixel bitmap for cmmib100 char#96 \ell --- */
                   21607:       {  96,90694,                      /* character number, location */
                   21608:          10,-1,    0,-1,      /* topleft row,col, and botleft row,col */
                   21609:           {  8,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21610:             "\x60\xb0\x98\x58\x2c\x1c\x0c\x0c\x8e\x78" }  },
                   21611:       /* --- pixel bitmap for cmmib100 char#97 a --- */
                   21612:       {  97,28928,                      /* character number, location */
                   21613:           6, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   21614:           {  7,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21615:             "\x5c\xf1\x78\x3c\x77\x03" }  },
                   21616:       /* --- pixel bitmap for cmmib100 char#98 b --- */
                   21617:       {  98,29702,                      /* character number, location */
                   21618:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   21619:           {  7,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21620:             "\x07\x83\xc1\xf0\x1b\x8f\xc7\x33\x0f" }  },
                   21621:       /* --- pixel bitmap for cmmib100 char#99 c --- */
                   21622:       {  99,30447,                      /* character number, location */
                   21623:           6, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   21624:           {  6,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21625:             "\xbc\x3d\x0c\xa3\x07" }  },
                   21626:       /* --- pixel bitmap for cmmib100 char#100 d --- */
                   21627:       { 100,31333,                      /* character number, location */
                   21628:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   21629:           {  8,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21630:             "\xe0\xc0\xc0\xc0\x7c\x62\x63\x63\x73\x6e" }  },
                   21631:       /* --- pixel bitmap for cmmib100 char#101 e --- */
                   21632:       { 101,32132,                      /* character number, location */
                   21633:           6, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   21634:           {  6,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21635:             "\xbc\xf8\x0d\xa3\x07" }  },
                   21636:       /* --- pixel bitmap for cmmib100 char#102 f --- */
                   21637:       { 102,33262,                      /* character number, location */
                   21638:          10, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   21639:           {  8,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21640:             "\xe0\xf0\x30\x30\xfc\x30\x18\x18\x18\x18\x18\x0a\x06" }  },
                   21641:       /* --- pixel bitmap for cmmib100 char#103 g --- */
                   21642:       { 103,34211,                      /* character number, location */
                   21643:           6, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   21644:           {  8,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21645:             "\xb8\xc4\xc6\xc6\x66\x7c\x60\x62\x1e" }  },
                   21646:       /* --- pixel bitmap for cmmib100 char#104 h --- */
                   21647:       { 104,35116,                      /* character number, location */
                   21648:          10, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   21649:           {  8,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21650:             "\x0e\x0c\x0c\x0c\x76\xce\xc6\xc6\xe3\xc3" }  },
                   21651:       /* --- pixel bitmap for cmmib100 char#105 i --- */
                   21652:       { 105,35944,                      /* character number, location */
                   21653:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   21654:           {  4,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21655:             "\xcc\x00\x60\x67\x76\x06" }  },
                   21656:       /* --- pixel bitmap for cmmib100 char#106 j --- */
                   21657:       { 106,36897,                      /* character number, location */
                   21658:          11, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   21659:           {  7,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21660:             "\x60\x30\x00\x00\xc0\xd1\x60\x30\x0c\x06\xe3\x30\x00" }  },
                   21661:       /* --- pixel bitmap for cmmib100 char#107 k --- */
                   21662:       { 107,37892,                      /* character number, location */
                   21663:          10, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   21664:           {  8,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21665:             "\x0e\x0c\x0c\x0c\xe6\xd6\xde\x36\x73\x63" }  },
                   21666:       /* --- pixel bitmap for cmmib100 char#108 l --- */
                   21667:       { 108,38556,                      /* character number, location */
                   21668:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   21669:           {  4,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21670:             "\xce\xcc\x66\x66\x67" }  },
                   21671:       /* --- pixel bitmap for cmmib100 char#109 m --- */
                   21672:       { 109,39723,                      /* character number, location */
                   21673:           6, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   21674:           { 12,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21675:             "\x77\xf7\xcc\xc6\x6c\xcc\x63\x3e\xc6" }  },
                   21676:       /* --- pixel bitmap for cmmib100 char#110 n --- */
                   21677:       { 110,40682,                      /* character number, location */
                   21678:           6, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   21679:           {  8,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21680:             "\x77\xcf\xc6\xc6\xe3\xc3" }  },
                   21681:       /* --- pixel bitmap for cmmib100 char#111 o --- */
                   21682:       { 111,41340,                      /* character number, location */
                   21683:           6, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   21684:           {  8,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21685:             "\x7c\xc6\xc3\xc3\x63\x3e" }  },
                   21686:       /* --- pixel bitmap for cmmib100 char#112 p --- */
                   21687:       { 112,42246,                      /* character number, location */
                   21688:           6, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   21689:           {  9,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21690:             "\xfe\x1c\x33\x66\x6c\xcc\x8f\x01\x03\x07\x00" }  },
                   21691:       /* --- pixel bitmap for cmmib100 char#113 q --- */
                   21692:       { 113,43131,                      /* character number, location */
                   21693:           6, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   21694:           {  7,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21695:             "\x5c\xf1\x78\x3c\xf3\xc1\x60\x3c" }  },
                   21696:       /* --- pixel bitmap for cmmib100 char#114 r --- */
                   21697:       { 114,43960,                      /* character number, location */
                   21698:           6, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   21699:           {  6,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21700:             "\xde\x6d\x1b\xc3\x00" }  },
                   21701:       /* --- pixel bitmap for cmmib100 char#115 s --- */
                   21702:       { 115,44882,                      /* character number, location */
                   21703:           6, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   21704:           {  7,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21705:             "\x38\x1a\x4f\x3f\xf2\x00" }  },
                   21706:       /* --- pixel bitmap for cmmib100 char#116 t --- */
                   21707:       { 116,45576,                      /* character number, location */
                   21708:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   21709:           {  5,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21710:             "\x18\xe3\xcf\x18\xb3\x0c" }  },
                   21711:       /* --- pixel bitmap for cmmib100 char#117 u --- */
                   21712:       { 117,46564,                      /* character number, location */
                   21713:           6, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   21714:           {  7,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21715:             "\xc6\xb3\xd9\x6c\x77\x03" }  },
                   21716:       /* --- pixel bitmap for cmmib100 char#118 v --- */
                   21717:       { 118,47415,                      /* character number, location */
                   21718:           6, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   21719:           {  7,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21720:             "\xa6\xb3\xd1\x68\xf2\x00" }  },
                   21721:       /* --- pixel bitmap for cmmib100 char#119 w --- */
                   21722:       { 119,48533,                      /* character number, location */
                   21723:           6, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   21724:           { 11,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21725:             "\x46\x3a\xb3\x19\xcd\x68\x26\xee\x00" }  },
                   21726:       /* --- pixel bitmap for cmmib100 char#120 x --- */
                   21727:       { 120,49735,                      /* character number, location */
                   21728:           6, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   21729:           {  8,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21730:             "\x6c\xda\xd8\x1a\x4f\x3e" }  },
                   21731:       /* --- pixel bitmap for cmmib100 char#121 y --- */
                   21732:       { 121,50751,                      /* character number, location */
                   21733:           6, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   21734:           {  8,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21735:             "\x86\xc7\xc6\xc6\x66\x7c\x60\x36\x1e" }  },
                   21736:       /* --- pixel bitmap for cmmib100 char#122 z --- */
                   21737:       { 122,51655,                      /* character number, location */
                   21738:           6, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   21739:           {  7,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21740:             "\x5c\x1f\x84\xe1\xdb\x00" }  },
                   21741:       /* --- pixel bitmap for cmmib100 char#123 \imath --- */
                   21742:       { 123,91382,                      /* character number, location */
                   21743:           6, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   21744:           {  3,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21745:             "\xbe\x7d\x03" }  },
                   21746:       /* --- pixel bitmap for cmmib100 char#124 \jmath --- */
                   21747:       { 124,92165,                      /* character number, location */
                   21748:           6, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   21749:           {  6,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21750:             "\x38\x0d\xc3\x18\x86\x29\x06" }  },
                   21751:       /* --- pixel bitmap for cmmib100 char#125 \wp --- */
                   21752:       { 125,93246,                      /* character number, location */
                   21753:           6, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   21754:           { 10,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21755:             "\x06\xcc\xf7\xf0\xc0\xb3\x9d\xd3\x40\x03\x06\x00" }  },
                   21756:       /* --- pixel bitmap for cmmib100 char#126 \bfvec --- */
                   21757:       { 126,93818,                      /* character number, location */
                   21758:          10, 2,    7, 2,      /* topleft row,col, and botleft row,col */
                   21759:           {  8,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21760:             "\x40\xff\x40" }  },
                   21761:       /* --- pixel bitmap for cmmib100 char#127 (noname) --- */
                   21762:       { 127,94328,                      /* character number, location */
                   21763:          10, 4,    7, 4,      /* topleft row,col, and botleft row,col */
                   21764:           {  6,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21765:             "\x5e\x18\x02" }  },
                   21766:       /* --- trailer  --- */
                   21767:       { -99, -999,  0,0,0,0, { 0,0,0,0, (pixbyte *)"\0" }  }
                   21768:    } ;
                   21769: 
                   21770: 
                   21771: /* --- size=2 for .118gf ---
                   21772:  * mf '\mode=preview; mag=magstep(-16.96645799324018499600); input cmmib10'
                   21773:  * --------------------------------------------------------------------- */
                   21774: /* --- fontdef for cmmib118 --- */
                   21775: static	chardef  cmmib118[] =
                   21776:    {
                   21777:       /* --- pixel bitmap for cmmib118 char#0 \Gamma --- */
                   21778:       {   0,53816,                      /* character number, location */
                   21779:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   21780:           { 12,   11, 3,27, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21781:             "\x39\x42\x42\xf1\x42\x51\x42\x60\xf3\x32\x70\x22\x86"
                   21782:             "\x62" }  },
                   21783:       /* --- pixel bitmap for cmmib118 char#1 \Delta --- */
                   21784:       {   1,54711,                      /* character number, location */
                   21785:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   21786:           { 14,   11, 3,36, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21787:             "\x92\xb3\xa1\x12\x91\x23\x72\x32\x62\x42\x61\x53\x41"
                   21788:             "\x72\x31\x82\x2e\x0d" }  },
                   21789:       /* --- pixel bitmap for cmmib118 char#2 \Theta --- */
                   21790:       {   2,55868,                      /* character number, location */
                   21791:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   21792:           { 14,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21793:             "\xe0\x07\x06\xc7\x80\x19\x40\xe6\xf3\x7c\x36\x9f\x4d"
                   21794:             "\x64\x03\x8c\xc1\x81\x1f\x00" }  },
                   21795:       /* --- pixel bitmap for cmmib118 char#3 \Lambda --- */
                   21796:       {   3,56806,                      /* character number, location */
                   21797:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   21798:           { 11,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21799:             "\x80\x01\x0c\x70\x80\x03\x1a\xc8\x40\x0e\x61\x04\x23"
                   21800:             "\xd8\xf3\x01" }  },
                   21801:       /* --- pixel bitmap for cmmib118 char#4 \Xi --- */
                   21802:       {   4,58215,                      /* character number, location */
                   21803:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   21804:           { 14,   11, 3,29, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21805:             "\x3b\x2b\x31\x91\xe0\x57\x67\xe0\x40\xf1\x11\x91\x2f"
                   21806:             "\x1b\x30" }  },
                   21807:       /* --- pixel bitmap for cmmib118 char#5 \Pi --- */
                   21808:       {   5,59412,                      /* character number, location */
                   21809:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   21810:           { 18,   11, 3,29, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21811:             "\x3e\x01\xf3\x42\x72\x30\xf3\x32\x72\x40\x22\x72\x56"
                   21812:             "\x36\x30" }  },
                   21813:       /* --- pixel bitmap for cmmib118 char#6 \Sigma --- */
                   21814:       {   6,60549,                      /* character number, location */
                   21815:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   21816:           { 14,   11, 3,35, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21817:             "\x3b\x33\x62\x42\x71\x43\x61\x52\xd2\xb2\xb1\x71\x41"
                   21818:             "\x71\x32\x72\x2b\x32" }  },
                   21819:       /* --- pixel bitmap for cmmib118 char#7 \Upsilon --- */
                   21820:       {   7,61595,                      /* character number, location */
                   21821:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   21822:           { 13,   11, 3,31, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21823:             "\x23\x44\x15\x22\x13\x44\x31\x53\xb2\x50\xf3\x52\x60"
                   21824:             "\x42\x96\x52" }  },
                   21825:       /* --- pixel bitmap for cmmib118 char#8 \Phi --- */
                   21826:       {   8,62605,                      /* character number, location */
                   21827:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   21828:           { 12,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21829:             "\xf0\x07\x0c\xc0\x80\x7f\xc6\x3c\xc6\x66\xcc\x3f\x60"
                   21830:             "\x00\x03\xfc\x00" }  },
                   21831:       /* --- pixel bitmap for cmmib118 char#9 \Psi --- */
                   21832:       {   9,63690,                      /* character number, location */
                   21833:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   21834:           { 13,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21835:             "\xf0\x07\x18\x0c\x63\x63\x66\xcc\xcc\x8c\xd9\xe0\x0f"
                   21836:             "\x60\x00\x06\xf0\x03" }  },
                   21837:       /* --- pixel bitmap for cmmib118 char#10 \Omega --- */
                   21838:       {  10,64859,                      /* character number, location */
                   21839:          11, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   21840:           { 13,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21841:             "\xf0\x87\x83\x19\x60\x03\x6c\x80\x0d\x98\x81\x29\x50"
                   21842:             "\x05\xe5\xf0\x1c\x0e" }  },
                   21843:       /* --- pixel bitmap for cmmib118 char#11 \alpha --- */
                   21844:       {  11,65855,                      /* character number, location */
                   21845:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   21846:           {  9,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21847:             "\x3c\xcc\x0e\x1f\x36\x6c\x9c\x67" }  },
                   21848:       /* --- pixel bitmap for cmmib118 char#12 \beta --- */
                   21849:       {  12,66882,                      /* character number, location */
                   21850:          11, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   21851:           { 10,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21852:             "\xc0\xc1\x8c\x30\xc2\xe8\x91\x47\x30\xc1\x04\x1b\xa6"
                   21853:             "\x87\x00\x02\x04\x00" }  },
                   21854:       /* --- pixel bitmap for cmmib118 char#13 \gamma --- */
                   21855:       {  13,67803,                      /* character number, location */
                   21856:           7, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   21857:           { 10,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21858:             "\x1c\xfa\x14\x12\x30\xc0\x00\x03\x04\x10\x40\x80\x00" }  },
                   21859:       /* --- pixel bitmap for cmmib118 char#14 \delta --- */
                   21860:       {  14,68740,                      /* character number, location */
                   21861:          12, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   21862:           {  7,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21863:             "\x10\x3c\x12\x83\xc1\x99\xc7\xe3\xf1\xcc\x03" }  },
                   21864:       /* --- pixel bitmap for cmmib118 char#15 \epsilon --- */
                   21865:       {  15,69588,                      /* character number, location */
                   21866:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   21867:           {  6,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21868:             "\xbc\x31\x7c\xc3\xe8\x01" }  },
                   21869:       /* --- pixel bitmap for cmmib118 char#16 \zeta --- */
                   21870:       {  16,70488,                      /* character number, location */
                   21871:          11, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   21872:           {  7,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21873:             "\x20\x38\x9e\x61\x10\x0c\x06\x83\x81\x87\x07\xe3\x00" }  },
                   21874:       /* --- pixel bitmap for cmmib118 char#17 \eta --- */
                   21875:       {  17,71375,                      /* character number, location */
                   21876:           7, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   21877:           {  9,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21878:             "\xee\x3a\x37\x66\xcc\xd8\x98\x31\x60\xc0\x80\x00" }  },
                   21879:       /* --- pixel bitmap for cmmib118 char#18 \theta --- */
                   21880:       {  18,72119,                      /* character number, location */
                   21881:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   21882:           {  8,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21883:             "\x30\x4c\xc4\xc6\xc6\x7f\x63\x63\x33\x13\x0e" }  },
                   21884:       /* --- pixel bitmap for cmmib118 char#19 \iota --- */
                   21885:       {  19,72770,                      /* character number, location */
                   21886:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   21887:           {  4,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21888:             "\x64\x66\xb3\x06" }  },
                   21889:       /* --- pixel bitmap for cmmib118 char#20 \kappa --- */
                   21890:       {  20,73692,                      /* character number, location */
                   21891:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   21892:           {  8,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21893:             "\xc4\xa6\x1e\x3e\x66\xb3\xe3" }  },
                   21894:       /* --- pixel bitmap for cmmib118 char#21 \lambda --- */
                   21895:       {  21,74507,                      /* character number, location */
                   21896:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   21897:           {  9,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21898:             "\x1c\x30\xc0\x80\x01\x07\x0c\x3c\x6c\xce\x06\x07\x06" }  },
                   21899:       /* --- pixel bitmap for cmmib118 char#22 \mu --- */
                   21900:       {  22,75527,                      /* character number, location */
                   21901:           7, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   21902:           {  9,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21903:             "\x08\x19\x33\x66\xcc\xd8\xb9\x6f\x03\x06\x04\x00" }  },
                   21904:       /* --- pixel bitmap for cmmib118 char#23 \nu --- */
                   21905:       {  23,76272,                      /* character number, location */
                   21906:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   21907:           {  8,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21908:             "\x8f\xc6\xc6\x66\x36\x1b\x07" }  },
                   21909:       /* --- pixel bitmap for cmmib118 char#24 \xi --- */
                   21910:       {  24,77380,                      /* character number, location */
                   21911:          11, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   21912:           {  8,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21913:             "\x20\xf0\xf8\x0c\x0c\x7c\x7c\x06\x06\x07\x1e\x7c\x70"
                   21914:             "\x38" }  },
                   21915:       /* --- pixel bitmap for cmmib118 char#25 \pi --- */
                   21916:       {  25,78290,                      /* character number, location */
                   21917:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   21918:           { 10,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21919:             "\xfc\xfb\x9f\x04\x1a\x6c\x90\x63\x04" }  },
                   21920:       /* --- pixel bitmap for cmmib118 char#26 \rho --- */
                   21921:       {  26,79088,                      /* character number, location */
                   21922:           7, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   21923:           {  9,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21924:             "\xf0\x30\x33\x66\xcc\xc8\x98\x1f\x03\x06\x04\x00" }  },
                   21925:       /* --- pixel bitmap for cmmib118 char#27 \sigma --- */
                   21926:       {  27,79970,                      /* character number, location */
                   21927:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   21928:           { 10,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21929:             "\xfc\xfb\x3f\xc6\x18\x63\xcc\xe0\x01" }  },
                   21930:       /* --- pixel bitmap for cmmib118 char#28 \tau --- */
                   21931:       {  28,80729,                      /* character number, location */
                   21932:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   21933:           {  9,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21934:             "\xfc\xfd\x67\xc0\x80\x80\x01\x03" }  },
                   21935:       /* --- pixel bitmap for cmmib118 char#29 \upsilon --- */
                   21936:       {  29,81606,                      /* character number, location */
                   21937:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   21938:           {  9,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21939:             "\x8e\x34\x37\x64\xc8\x88\x09\x0e" }  },
                   21940:       /* --- pixel bitmap for cmmib118 char#30 \phi --- */
                   21941:       {  30,82486,                      /* character number, location */
                   21942:          11, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   21943:           {  9,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21944:             "\x40\x40\x80\x00\x81\xc7\xf2\xe4\xc9\x93\x96\xf9\x40"
                   21945:             "\x80\x80\x00" }  },
                   21946:       /* --- pixel bitmap for cmmib118 char#31 \chi --- */
                   21947:       {  31,83511,                      /* character number, location */
                   21948:           7, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   21949:           { 10,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21950:             "\x0e\x72\x84\x09\x1e\x30\xc0\x80\x07\x19\xe2\x04\x07" }  },
                   21951:       /* --- pixel bitmap for cmmib118 char#32 \psi --- */
                   21952:       {  32,84546,                      /* character number, location */
                   21953:          11, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   21954:           { 11,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21955:             "\x80\x00\x04\x20\x80\xe0\x24\x2d\x37\x91\x85\x2c\x62"
                   21956:             "\x09\x3e\x20\x00\x01\x08\x00" }  },
                   21957:       /* --- pixel bitmap for cmmib118 char#33 \omega --- */
                   21958:       {  33,85621,                      /* character number, location */
                   21959:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   21960:           { 10,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21961:             "\x02\x09\x1c\x63\x8c\x11\xfd\xe7\x0e" }  },
                   21962:       /* --- pixel bitmap for cmmib118 char#34 \varepsilon --- */
                   21963:       {  34,86578,                      /* character number, location */
                   21964:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   21965:           {  6,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21966:             "\xbc\xff\x7d\xc1\xef\x01" }  },
                   21967:       /* --- pixel bitmap for cmmib118 char#35 \vartheta --- */
                   21968:       {  35,87553,                      /* character number, location */
                   21969:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   21970:           { 10,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21971:             "\xe0\x40\x04\x31\xc4\x6e\x37\xd6\x18\x63\xcc\x30\xc1"
                   21972:             "\x03" }  },
                   21973:       /* --- pixel bitmap for cmmib118 char#36 \varpi --- */
                   21974:       {  36,88734,                      /* character number, location */
                   21975:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   21976:           { 15,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21977:             "\xfc\x7f\xff\x7f\x21\x84\x10\x42\x8c\xe0\x7d\x60\x1c"
                   21978:             "\x00" }  },
                   21979:       /* --- pixel bitmap for cmmib118 char#37 \varrho --- */
                   21980:       {  37,89593,                      /* character number, location */
                   21981:           7, 2,   -3, 2,      /* topleft row,col, and botleft row,col */
                   21982:           {  8,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21983:             "\x78\xcc\xc6\xc6\x46\x67\x3d\x01\x3f\x3e" }  },
                   21984:       /* --- pixel bitmap for cmmib118 char#38 \varsigma --- */
                   21985:       {  38,90398,                      /* character number, location */
                   21986:           7, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   21987:           {  6,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21988:             "\xbc\x31\x0c\x87\xc7\xc3\x1c" }  },
                   21989:       /* --- pixel bitmap for cmmib118 char#39 \varphi --- */
                   21990:       {  39,91321,                      /* character number, location */
                   21991:           7, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   21992:           { 10,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21993:             "\xc2\x89\x1f\x61\x80\x09\xf9\xc3\x07\x03\x0c\x10\x00" }  },
                   21994:       /* --- pixel bitmap for cmmib118 char#40 \bfleftharpoonup --- */
                   21995:       {  40,106721,                     /* character number, location */
                   21996:           9, 1,    4, 1,      /* topleft row,col, and botleft row,col */
                   21997:           { 17,    5, 3,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   21998:             "\xf1\x41\xc0\x31\xe2\xee\x03" }  },
                   21999:       /* --- pixel bitmap for cmmib118 char#41 \bfleftharpoondown --- */
                   22000:       {  41,107745,                     /* character number, location */
                   22001:           5, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   22002:           { 17,    5, 3,17, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22003:             "\x0e\x03\x12\xe0\x31\xd0\xf1\x41\xc1" }  },
                   22004:       /* --- pixel bitmap for cmmib118 char#42 \bfrightharpoonup --- */
                   22005:       {  42,108767,                     /* character number, location */
                   22006:           9, 1,    4, 1,      /* topleft row,col, and botleft row,col */
                   22007:           { 17,    5, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22008:             "\xf1\xc1\x40\xd1\xe0\x32\x1e\x03" }  },
                   22009:       /* --- pixel bitmap for cmmib118 char#43 \bfrightharpoondown --- */
                   22010:       {  43,109792,                     /* character number, location */
                   22011:           5, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   22012:           { 17,    5, 3,15, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22013:             "\x0e\x03\xe2\xe1\x30\xf1\xc1\x43" }  },
                   22014:       /* --- pixel bitmap for cmmib118 char#44 ` --- */
                   22015:       {  44,110209,                     /* character number, location */
                   22016:           9, 1,    4, 1,      /* topleft row,col, and botleft row,col */
                   22017:           {  3,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22018:             "\x4e\x62" }  },
                   22019:       /* --- pixel bitmap for cmmib118 char#45 ' --- */
                   22020:       {  45,110627,                     /* character number, location */
                   22021:           9, 1,    4, 1,      /* topleft row,col, and botleft row,col */
                   22022:           {  3,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22023:             "\x23\x39" }  },
                   22024:       /* --- pixel bitmap for cmmib118 char#46 \triangleright --- */
                   22025:       {  46,111162,                     /* character number, location */
                   22026:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   22027:           {  7,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22028:             "\x81\x43\x22\x16\x8c\x25\x0e\x01" }  },
                   22029:       /* --- pixel bitmap for cmmib118 char#47 \triangleleft --- */
                   22030:       {  47,111714,                     /* character number, location */
                   22031:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   22032:           {  7,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22033:             "\x40\x38\xd2\x18\x34\x22\xe1\x40" }  },
                   22034:       /* --- pixel bitmap for cmmib118 char#48 \0 --- */
                   22035:       {  48,97456,                      /* character number, location */
                   22036:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   22037:           {  7,    7, 3,11, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22038:             "\x15\x1f\x42\x32\x15\x12" }  },
                   22039:       /* --- pixel bitmap for cmmib118 char#49 \1 --- */
                   22040:       {  49,98207,                      /* character number, location */
                   22041:           7, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   22042:           {  6,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22043:             "\xcc\xc3\x30\x0c\xf3\x03" }  },
                   22044:       /* --- pixel bitmap for cmmib118 char#50 \2 --- */
                   22045:       {  50,99167,                      /* character number, location */
                   22046:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   22047:           {  7,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22048:             "\xbe\x31\x18\x84\xf5\xff\x01" }  },
                   22049:       /* --- pixel bitmap for cmmib118 char#51 \3 --- */
                   22050:       {  51,100180,                     /* character number, location */
                   22051:           7, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   22052:           {  7,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22053:             "\xbe\xf1\x18\xc4\x01\x81\xc7\x23\x0f" }  },
                   22054:       /* --- pixel bitmap for cmmib118 char#52 \4 --- */
                   22055:       {  52,101091,                     /* character number, location */
                   22056:           7, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   22057:           {  8,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22058:             "\x30\x30\x38\x34\x32\x33\xff\x30\x30\xfc" }  },
                   22059:       /* --- pixel bitmap for cmmib118 char#53 \5 --- */
                   22060:       {  53,102112,                     /* character number, location */
                   22061:           7, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   22062:           {  7,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22063:             "\x22\x8f\x43\xe0\x11\x83\xc7\x21\x0f" }  },
                   22064:       /* --- pixel bitmap for cmmib118 char#54 \6 --- */
                   22065:       {  54,102991,                     /* character number, location */
                   22066:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   22067:           {  7,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22068:             "\x38\xb3\x78\xf0\x19\x8d\xc7\x63\x11\x07" }  },
                   22069:       /* --- pixel bitmap for cmmib118 char#55 \7 --- */
                   22070:       {  55,103880,                     /* character number, location */
                   22071:           8, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   22072:           {  8,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22073:             "\x01\xff\x7f\x21\x11\x18\x08\x0c\x0c\x0c\x0c" }  },
                   22074:       /* --- pixel bitmap for cmmib118 char#56 \8 --- */
                   22075:       {  56,104791,                     /* character number, location */
                   22076:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   22077:           {  7,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22078:             "\xbe\xf1\xf8\xec\xe3\xc9\xc7\xe3\x11\x07" }  },
                   22079:       /* --- pixel bitmap for cmmib118 char#57 \9 --- */
                   22080:       {  57,105678,                     /* character number, location */
                   22081:           7, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   22082:           {  7,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22083:             "\x1c\xd1\x78\x3c\xe6\x83\x47\x33\x0f" }  },
                   22084:       /* --- pixel bitmap for cmmib118 char#58 . --- */
                   22085:       {  58,112195,                     /* character number, location */
                   22086:           3, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   22087:           {  3,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22088:             "\xba\x00" }  },
                   22089:       /* --- pixel bitmap for cmmib118 char#59 , --- */
                   22090:       {  59,112756,                     /* character number, location */
                   22091:           3, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   22092:           {  3,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22093:             "\xba\x29\x01" }  },
                   22094:       /* --- pixel bitmap for cmmib118 char#60 < --- */
                   22095:       {  60,113414,                     /* character number, location */
                   22096:          10, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   22097:           { 11,   11, 3,22, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22098:             "\x92\x72\x72\x72\x72\x81\xb2\xb2\xb2\xb2\xb2" }  },
                   22099:       /* --- pixel bitmap for cmmib118 char#61 / --- */
                   22100:       {  61,113938,                     /* character number, location */
                   22101:          12, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   22102:           {  7,   16, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22103:             "\x40\x20\x08\x04\x81\x40\x10\x08\x02\x81\x20\x10\x04"
                   22104:             "\x02" }  },
                   22105:       /* --- pixel bitmap for cmmib118 char#62 > --- */
                   22106:       {  62,114619,                     /* character number, location */
                   22107:          10, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   22108:           { 11,   11, 3,23, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22109:             "\x02\xb2\xb2\xb2\xb2\xb1\x82\x72\x72\x72\x72\x92" }  },
                   22110:       /* --- pixel bitmap for cmmib118 char#63 \star --- */
                   22111:       {  63,115318,                     /* character number, location */
                   22112:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   22113:           {  9,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22114:             "\x10\x20\x40\x98\xec\x0f\x07\x0a\x22\x82\x00" }  },
                   22115:       /* --- pixel bitmap for cmmib118 char#64 \partial --- */
                   22116:       {  64,92279,                      /* character number, location */
                   22117:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   22118:           {  9,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22119:             "\x78\x88\x19\x32\xcc\xdb\xd8\xb0\x61\x63\x46\x78\x00" }  },
                   22120:       /* --- pixel bitmap for cmmib118 char#65 A --- */
                   22121:       {  65, 1026,                      /* character number, location */
                   22122:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   22123:           { 12,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22124:             "\x00\x01\x38\x80\x03\x34\x20\x03\x32\x10\x83\x3f\x08"
                   22125:             "\x46\x60\x8f\x0f" }  },
                   22126:       /* --- pixel bitmap for cmmib118 char#66 B --- */
                   22127:       {  66, 2362,                      /* character number, location */
                   22128:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   22129:           { 13,   11, 3,31, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22130:             "\x39\x10\xf2\x42\x52\x42\x42\x49\x10\xf2\x32\x62\x22"
                   22131:             "\x62\x1a\x31" }  },
                   22132:       /* --- pixel bitmap for cmmib118 char#67 C --- */
                   22133:       {  67, 3311,                      /* character number, location */
                   22134:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   22135:           { 14,   11, 3,37, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22136:             "\x56\x12\x33\x52\x32\x81\x22\x91\x22\xbf\x12\xc2\x91"
                   22137:             "\x31\x81\x51\x61\x76\x52" }  },
                   22138:       /* --- pixel bitmap for cmmib118 char#68 D --- */
                   22139:       {  68, 4429,                      /* character number, location */
                   22140:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   22141:           { 15,   11, 3,37, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22142:             "\x39\x30\xf1\x42\x62\x10\xf1\x42\x72\xf2\x32\x72\x10"
                   22143:             "\x32\x62\x42\x62\x3a\x52" }  },
                   22144:       /* --- pixel bitmap for cmmib118 char#69 E --- */
                   22145:       {  69, 5832,                      /* character number, location */
                   22146:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   22147:           { 14,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22148:             "\xf8\x3f\x0c\x04\x03\xc1\x48\x30\x02\x7e\x80\x91\x60"
                   22149:             "\x24\x18\x04\x83\xf1\x3f\x00" }  },
                   22150:       /* --- pixel bitmap for cmmib118 char#70 F --- */
                   22151:       {  70, 7045,                      /* character number, location */
                   22152:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   22153:           { 13,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22154:             "\xf8\x1f\x06\xc3\x40\x18\x09\x23\xf0\x03\x46\xc0\x08"
                   22155:             "\x18\x80\x01\xfc\x00" }  },
                   22156:       /* --- pixel bitmap for cmmib118 char#71 G --- */
                   22157:       {  71, 8212,                      /* character number, location */
                   22158:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   22159:           { 14,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22160:             "\xe0\x37\x0e\xc6\x00\x19\x40\x06\xc0\xc0\x3f\xc0\x0c"
                   22161:             "\x30\x02\x0c\x81\x81\x5f\x00" }  },
                   22162:       /* --- pixel bitmap for cmmib118 char#72 H --- */
                   22163:       {  72, 9417,                      /* character number, location */
                   22164:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   22165:           { 18,   11, 3,33, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22166:             "\x36\x36\xf3\x42\x72\x30\x3b\x40\xf2\x32\x72\x40\x22"
                   22167:             "\x72\x56\x36\x32" }  },
                   22168:       /* --- pixel bitmap for cmmib118 char#73 I --- */
                   22169:       {  73,10124,                      /* character number, location */
                   22170:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   22171:           {  9,   11, 3,19, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22172:             "\x36\xf3\x42\x30\xf3\x32\x40\x22\x56\x32" }  },
                   22173:       /* --- pixel bitmap for cmmib118 char#74 J --- */
                   22174:       {  74,10940,                      /* character number, location */
                   22175:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   22176:           { 11,   11, 3,25, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22177:             "\x56\xf3\x72\x20\xf2\x62\x30\x11\x42\x32\x32\x55\x52" }  },
                   22178:       /* --- pixel bitmap for cmmib118 char#75 K --- */
                   22179:       {  75,12129,                      /* character number, location */
                   22180:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   22181:           { 17,   11, 3,45, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22182:             "\x36\x35\x42\x71\x72\x52\x82\x41\xa2\x21\xb2\x14\xa3"
                   22183:             "\x32\x92\x42\x92\x52\x72\x62\x56\x35\x30" }  },
                   22184:       /* --- pixel bitmap for cmmib118 char#76 L --- */
                   22185:       {  76,13058,                      /* character number, location */
                   22186:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   22187:           { 11,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22188:             "\xf8\x81\x01\x0c\x60\x00\x03\x0c\x60\x10\x83\x18\x62"
                   22189:             "\xd8\x7f\x00" }  },
                   22190:       /* --- pixel bitmap for cmmib118 char#77 M --- */
                   22191:       {  77,14374,                      /* character number, location */
                   22192:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   22193:           { 20,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22194:             "\x78\x00\x0f\x0d\x38\xd0\x40\x03\x0d\x34\xd0\x20\x83"
                   22195:             "\x18\x19\x88\x89\x81\x98\x18\x88\x85\x41\x30\x0c\x1f"
                   22196:             "\xf1\x03" }  },
                   22197:       /* --- pixel bitmap for cmmib118 char#78 N --- */
                   22198:       {  78,15534,                      /* character number, location */
                   22199:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   22200:           { 18,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22201:             "\x78\xe0\xc3\x01\x01\x0d\x04\x64\x10\x10\x43\x20\x8c"
                   22202:             "\x80\x60\x02\x02\x0b\x08\x38\x10\x60\xf0\x01\x01" }  },
                   22203:       /* --- pixel bitmap for cmmib118 char#79 O --- */
                   22204:       {  79,16417,                      /* character number, location */
                   22205:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   22206:           { 13,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22207:             "\xe0\x03\x83\x31\x30\x03\x6c\x80\x07\xd8\x00\x1b\x60"
                   22208:             "\x03\xc6\x70\xf0\x03" }  },
                   22209:       /* --- pixel bitmap for cmmib118 char#80 P --- */
                   22210:       {  80,17508,                      /* character number, location */
                   22211:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   22212:           { 14,   11, 3,29, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22213:             "\x3a\x10\xf2\x42\x62\x42\x52\x49\x20\xf2\x32\x90\x22"
                   22214:             "\xa6\x82" }  },
                   22215:       /* --- pixel bitmap for cmmib118 char#81 Q --- */
                   22216:       {  81,18527,                      /* character number, location */
                   22217:          11, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   22218:           { 13,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22219:             "\xe0\x03\xc3\x31\x30\x03\x6c\x80\x07\xd8\x00\x1b\x60"
                   22220:             "\x73\xc6\x69\xf0\x13\x60\x02\x3c\x00\x03" }  },
                   22221:       /* --- pixel bitmap for cmmib118 char#82 R --- */
                   22222:       {  82,19828,                      /* character number, location */
                   22223:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   22224:           { 14,   11, 3,35, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22225:             "\x39\x20\xf2\x42\x62\x42\x52\x48\x30\xf2\x32\x52\x20"
                   22226:             "\x22\x61\x27\x43\x12" }  },
                   22227:       /* --- pixel bitmap for cmmib118 char#83 S --- */
                   22228:       {  83,20909,                      /* character number, location */
                   22229:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   22230:           { 11,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22231:             "\xf0\xc7\x10\x83\x18\xc0\x07\x7c\x00\x07\x30\x82\x19"
                   22232:             "\x46\x1f\x00" }  },
                   22233:       /* --- pixel bitmap for cmmib118 char#84 T --- */
                   22234:       {  84,21935,                      /* character number, location */
                   22235:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   22236:           { 12,   11, 3,31, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22237:             "\x1d\x32\x31\x1f\x11\x42\x31\x10\x52\x50\xf3\x42\x60"
                   22238:             "\x32\x87\x45" }  },
                   22239:       /* --- pixel bitmap for cmmib118 char#85 U --- */
                   22240:       {  85,22945,                      /* character number, location */
                   22241:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   22242:           { 13,   11, 3,27, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22243:             "\x05\x44\xf3\x12\x71\x2f\x22\x71\x32\x61\x42\x51\x75"
                   22244:             "\x62" }  },
                   22245:       /* --- pixel bitmap for cmmib118 char#86 V --- */
                   22246:       {  86,23879,                      /* character number, location */
                   22247:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   22248:           { 13,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22249:             "\x1f\x9e\x81\x30\x08\x06\xc1\x10\x38\x01\x26\xc0\x02"
                   22250:             "\x38\x00\x07\x60\x00" }  },
                   22251:       /* --- pixel bitmap for cmmib118 char#87 W --- */
                   22252:       {  87,25265,                      /* character number, location */
                   22253:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   22254:           { 18,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22255:             "\x9f\xcf\x1b\x0c\xc2\x30\x08\xa3\x11\x8c\x26\x30\x99"
                   22256:             "\xc0\x62\x01\x8b\x05\x1c\x0e\x70\x18\xc0\x60\x00" }  },
                   22257:       /* --- pixel bitmap for cmmib118 char#88 X --- */
                   22258:       {  88,26378,                      /* character number, location */
                   22259:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   22260:           { 14,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22261:             "\xf8\x3e\x1c\x03\x66\x80\x0f\xc0\x01\x70\x00\x1e\xc0"
                   22262:             "\x0e\x18\x03\xc3\xf1\xf8\x00" }  },
                   22263:       /* --- pixel bitmap for cmmib118 char#89 Y --- */
                   22264:       {  89,27464,                      /* character number, location */
                   22265:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   22266:           { 13,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22267:             "\x1f\x9e\x81\x70\x08\x8c\x80\x09\xe0\x00\x0c\x80\x01"
                   22268:             "\x30\x00\x03\xf8\x01" }  },
                   22269:       /* --- pixel bitmap for cmmib118 char#90 Z --- */
                   22270:       {  90,28567,                      /* character number, location */
                   22271:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   22272:           { 12,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22273:             "\xf8\xcf\x60\x04\x43\x18\xc0\x00\x06\x30\x82\x21\x0c"
                   22274:             "\x63\x18\xff\x01" }  },
                   22275:       /* --- pixel bitmap for cmmib118 char#91 \flat --- */
                   22276:       {  91,116003,                     /* character number, location */
                   22277:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   22278:           {  5,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22279:             "\x21\x84\x10\x5e\xce\xb9\x9d\x00" }  },
                   22280:       /* --- pixel bitmap for cmmib118 char#92 \natural --- */
                   22281:       {  92,116742,                     /* character number, location */
                   22282:          12, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   22283:           {  5,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22284:             "\x21\x84\xfc\xff\x8c\x31\xe6\xff\x27\x04" }  },
                   22285:       /* --- pixel bitmap for cmmib118 char#93 \sharp --- */
                   22286:       {  93,117585,                     /* character number, location */
                   22287:          11, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   22288:           {  5,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22289:             "\x48\x69\xff\x96\x52\x4a\xfb\xb7\x04" }  },
                   22290:       /* --- pixel bitmap for cmmib118 char#94 \smile --- */
                   22291:       {  94,118479,                     /* character number, location */
                   22292:           7, 1,    2, 1,      /* topleft row,col, and botleft row,col */
                   22293:           { 17,    5, 3,19, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22294:             "\x01\xe0\x11\x11\xd1\x32\x92\x5b\x87\x52" }  },
                   22295:       /* --- pixel bitmap for cmmib118 char#95 \frown --- */
                   22296:       {  95,119345,                     /* character number, location */
                   22297:           8, 1,    2, 1,      /* topleft row,col, and botleft row,col */
                   22298:           { 17,    6, 3,20, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22299:             "\x81\xc9\x7b\x51\xb1\x31\xd1\x11\xe0\x11" }  },
                   22300:       /* --- pixel bitmap for cmmib118 char#96 \ell --- */
                   22301:       {  96,93031,                      /* character number, location */
                   22302:          11,-1,    0,-1,      /* topleft row,col, and botleft row,col */
                   22303:           {  9,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22304:             "\xc0\xc0\xc1\x82\x05\x07\x07\x06\x0c\x1c\x36\xc2\x03" }  },
                   22305:       /* --- pixel bitmap for cmmib118 char#97 a --- */
                   22306:       {  97,29491,                      /* character number, location */
                   22307:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   22308:           {  7,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22309:             "\x5c\xf3\x78\x3c\x9e\xbb\x01" }  },
                   22310:       /* --- pixel bitmap for cmmib118 char#98 b --- */
                   22311:       {  98,30335,                      /* character number, location */
                   22312:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   22313:           {  7,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22314:             "\x0f\x83\xc1\xe0\x3b\x8f\xc7\xa3\x99\x07" }  },
                   22315:       /* --- pixel bitmap for cmmib118 char#99 c --- */
                   22316:       {  99,31124,                      /* character number, location */
                   22317:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   22318:           {  6,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22319:             "\xbc\x3d\x0e\xc3\xe8\x01" }  },
                   22320:       /* --- pixel bitmap for cmmib118 char#100 d --- */
                   22321:       { 100,32080,                      /* character number, location */
                   22322:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   22323:           {  9,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22324:             "\xe0\x81\x01\x03\xc6\xcd\xcc\x98\x31\x63\xe6\xb8\x01" }  },
                   22325:       /* --- pixel bitmap for cmmib118 char#101 e --- */
                   22326:       { 101,32899,                      /* character number, location */
                   22327:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   22328:           {  6,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22329:             "\xbc\x39\x3f\xc3\xe8\x01" }  },
                   22330:       /* --- pixel bitmap for cmmib118 char#102 f --- */
                   22331:       { 102,34007,                      /* character number, location */
                   22332:          11, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   22333:           {  9,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22334:             "\xc0\xc1\x82\x01\xc3\x1f\x06\x0c\x18\x30\x60\x60\xc0"
                   22335:             "\xa0\xc1\x01" }  },
                   22336:       /* --- pixel bitmap for cmmib118 char#103 g --- */
                   22337:       { 103,34974,                      /* character number, location */
                   22338:           7,-1,   -3,-1,      /* topleft row,col, and botleft row,col */
                   22339:           {  9,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22340:             "\x70\x31\x33\x66\xcc\x98\x19\x3e\x60\xc2\x7c\x00" }  },
                   22341:       /* --- pixel bitmap for cmmib118 char#104 h --- */
                   22342:       { 104,35909,                      /* character number, location */
                   22343:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   22344:           {  8,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22345:             "\x1e\x0c\x0c\x0c\x7c\xce\xc6\xc6\x66\xe3\xc3" }  },
                   22346:       /* --- pixel bitmap for cmmib118 char#105 i --- */
                   22347:       { 105,36739,                      /* character number, location */
                   22348:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   22349:           {  5,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22350:             "\x18\x01\x00\x5c\x6b\xc6\x38\x07" }  },
                   22351:       /* --- pixel bitmap for cmmib118 char#106 j --- */
                   22352:       { 106,37672,                      /* character number, location */
                   22353:          12, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   22354:           {  8,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22355:             "\x80\xc0\x00\x00\x00\x70\x68\x64\x60\x60\x30\x30\x30"
                   22356:             "\x1a\x0e" }  },
                   22357:       /* --- pixel bitmap for cmmib118 char#107 k --- */
                   22358:       { 107,38699,                      /* character number, location */
                   22359:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   22360:           {  8,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22361:             "\x1e\x0c\x0c\x0c\xec\x96\xce\x1e\x36\x5b\x73" }  },
                   22362:       /* --- pixel bitmap for cmmib118 char#108 l --- */
                   22363:       { 108,39407,                      /* character number, location */
                   22364:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   22365:           {  5,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22366:             "\x9e\x31\xc6\x8c\x31\xe6\x18" }  },
                   22367:       /* --- pixel bitmap for cmmib118 char#109 m --- */
                   22368:       { 109,40602,                      /* character number, location */
                   22369:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   22370:           { 15,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22371:             "\xee\x9c\xce\x59\x63\x8c\x31\xc6\x98\x31\xc6\x1a\xc3"
                   22372:             "\x00" }  },
                   22373:       /* --- pixel bitmap for cmmib118 char#110 n --- */
                   22374:       { 110,41625,                      /* character number, location */
                   22375:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   22376:           {  9,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22377:             "\xee\x3a\x37\x66\xcc\xcc\xb8\x61" }  },
                   22378:       /* --- pixel bitmap for cmmib118 char#111 o --- */
                   22379:       { 111,42357,                      /* character number, location */
                   22380:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   22381:           {  7,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22382:             "\x3c\xf3\x78\x3c\x9a\x79\x00" }  },
                   22383:       /* --- pixel bitmap for cmmib118 char#112 p --- */
                   22384:       { 112,43319,                      /* character number, location */
                   22385:           7, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   22386:           { 10,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22387:             "\xdc\xe9\xac\x31\xc6\x18\x31\xc6\x0f\x03\x0c\x7c\x00" }  },
                   22388:       /* --- pixel bitmap for cmmib118 char#113 q --- */
                   22389:       { 113,44228,                      /* character number, location */
                   22390:           7, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   22391:           {  8,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22392:             "\xdc\x66\x63\x63\x63\x33\x3e\x30\x30\x7c" }  },
                   22393:       /* --- pixel bitmap for cmmib118 char#114 r --- */
                   22394:       { 114,45061,                      /* character number, location */
                   22395:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   22396:           {  7,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22397:             "\xee\x6e\x9b\xc1\x30\x18\x00" }  },
                   22398:       /* --- pixel bitmap for cmmib118 char#115 s --- */
                   22399:       { 115,46017,                      /* character number, location */
                   22400:           7, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   22401:           {  8,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22402:             "\x78\x64\x1c\x78\xc2\x43\x3e" }  },
                   22403:       /* --- pixel bitmap for cmmib118 char#116 t --- */
                   22404:       { 116,46753,                      /* character number, location */
                   22405:          10, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   22406:           {  6,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22407:             "\x08\xc3\xfc\x86\x61\x18\x93\x03" }  },
                   22408:       /* --- pixel bitmap for cmmib118 char#117 u --- */
                   22409:       { 117,47743,                      /* character number, location */
                   22410:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   22411:           {  9,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22412:             "\x8e\xb4\x35\x63\xc6\x8c\x2d\x76" }  },
                   22413:       /* --- pixel bitmap for cmmib118 char#118 v --- */
                   22414:       { 118,48604,                      /* character number, location */
                   22415:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   22416:           {  8,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22417:             "\x4e\xda\x8d\x8c\x4c\x4c\x38" }  },
                   22418:       /* --- pixel bitmap for cmmib118 char#119 w --- */
                   22419:       { 119,49756,                      /* character number, location */
                   22420:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   22421:           { 12,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22422:             "\x8e\xa8\x8d\xcd\xc8\x8c\xcc\xc8\x4c\xb8\x03" }  },
                   22423:       /* --- pixel bitmap for cmmib118 char#120 x --- */
                   22424:       { 120,50968,                      /* character number, location */
                   22425:           7, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   22426:           { 10,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22427:             "\xd8\xd1\x28\x33\x0c\x32\x6c\xe4\x0f" }  },
                   22428:       /* --- pixel bitmap for cmmib118 char#121 y --- */
                   22429:       { 121,52016,                      /* character number, location */
                   22430:           7, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   22431:           {  8,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22432:             "\x8e\xda\xcd\xcc\xcc\x6c\x78\x60\x36\x1e" }  },
                   22433:       /* --- pixel bitmap for cmmib118 char#122 z --- */
                   22434:       { 122,52902,                      /* character number, location */
                   22435:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   22436:           {  8,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22437:             "\x9c\x7e\x20\x18\x84\x7e\x39" }  },
                   22438:       /* --- pixel bitmap for cmmib118 char#123 \imath --- */
                   22439:       { 123,93745,                      /* character number, location */
                   22440:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   22441:           {  4,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22442:             "\xde\x6d\xe6\x0e" }  },
                   22443:       /* --- pixel bitmap for cmmib118 char#124 \jmath --- */
                   22444:       { 124,94508,                      /* character number, location */
                   22445:           7,-1,   -3,-1,      /* topleft row,col, and botleft row,col */
                   22446:           {  8,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22447:             "\xe0\xd0\xc8\xc0\xc0\x60\x60\x60\x32\x1e" }  },
                   22448:       /* --- pixel bitmap for cmmib118 char#125 \wp --- */
                   22449:       { 125,95645,                      /* character number, location */
                   22450:           7, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   22451:           { 11,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22452:             "\x0c\x20\x9f\x87\x0d\x2c\x60\x8b\xbd\xa7\x01\x0d\x30"
                   22453:             "\x00" }  },
                   22454:       /* --- pixel bitmap for cmmib118 char#126 \bfvec --- */
                   22455:       { 126,96247,                      /* character number, location */
                   22456:          11, 3,    8, 3,      /* topleft row,col, and botleft row,col */
                   22457:           {  7,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22458:             "\xc0\x3f\x08" }  },
                   22459:       /* --- pixel bitmap for cmmib118 char#127 (noname) --- */
                   22460:       { 127,96783,                      /* character number, location */
                   22461:          11, 4,    8, 4,      /* topleft row,col, and botleft row,col */
                   22462:           {  8,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22463:             "\x7c\x82\x81" }  },
                   22464:       /* --- trailer  --- */
                   22465:       { -99, -999,  0,0,0,0, { 0,0,0,0, (pixbyte *)"\0" }  }
                   22466:    } ;
                   22467: 
                   22468: 
                   22469: /* --- size=3 for .131gf ---
                   22470:  * mf '\mode=preview; mag=magstep(-16.39322518098640003469); input cmmib10'
                   22471:  * --------------------------------------------------------------------- */
                   22472: /* --- fontdef for cmmib131 --- */
                   22473: static	chardef  cmmib131[] =
                   22474:    {
                   22475:       /* --- pixel bitmap for cmmib131 char#0 \Gamma --- */
                   22476:       {   0,53849,                      /* character number, location */
                   22477:          12, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   22478:           { 14,   12, 3,27, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22479:             "\x3b\x53\x42\xf2\x43\x61\x43\x70\xf3\x33\x80\x23\x98"
                   22480:             "\x62" }  },
                   22481:       /* --- pixel bitmap for cmmib131 char#1 \Delta --- */
                   22482:       {   1,54748,                      /* character number, location */
                   22483:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   22484:           { 15,   12, 3,38, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22485:             "\x92\xd3\xb4\xa1\x13\x91\x24\x71\x34\x62\x43\x61\x54"
                   22486:             "\x41\x64\x3c\x2e\x0e\x01" }  },
                   22487:       /* --- pixel bitmap for cmmib131 char#2 \Theta --- */
                   22488:       {   2,55905,                      /* character number, location */
                   22489:          12, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   22490:           { 15,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22491:             "\xc0\x0f\x38\x1c\x06\x8c\x49\xee\x3c\x77\x9e\x9f\xe7"
                   22492:             "\xce\x73\x27\x19\x03\x8e\xc3\x01\x3f\x00" }  },
                   22493:       /* --- pixel bitmap for cmmib131 char#3 \Lambda --- */
                   22494:       {   3,56853,                      /* character number, location */
                   22495:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   22496:           { 13,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22497:             "\x00\x02\x60\x00\x0e\xc0\x03\x7c\x40\x0e\xc8\x81\x38"
                   22498:             "\x08\x07\xe1\x11\xbc\xef\x0f" }  },
                   22499:       /* --- pixel bitmap for cmmib131 char#4 \Xi --- */
                   22500:       {   4,58264,                      /* character number, location */
                   22501:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   22502:           { 15,   12, 3,33, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22503:             "\xf1\x3c\xf1\x21\xa1\x10\xe0\x58\x68\xe0\x50\xf1\x11"
                   22504:             "\xa1\x2f\x1c\x31" }  },
                   22505:       /* --- pixel bitmap for cmmib131 char#5 \Pi --- */
                   22506:       {   5,59491,                      /* character number, location */
                   22507:          12, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   22508:           { 19,   12, 3,35, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22509:             "\x3e\x02\x53\x63\x20\xf3\x43\x63\x30\xf3\x33\x63\x40"
                   22510:             "\x23\x63\x57\x27\x34" }  },
                   22511:       /* --- pixel bitmap for cmmib131 char#6 \Sigma --- */
                   22512:       {   6,60632,                      /* character number, location */
                   22513:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   22514:           { 15,   12, 3,41, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22515:             "\x3c\x34\x62\x44\x61\x53\x61\x54\x51\x63\xc3\x41\x72"
                   22516:             "\x51\x61\x61\x52\x62\x3c\x2c\x32" }  },
                   22517:       /* --- pixel bitmap for cmmib131 char#7 \Upsilon --- */
                   22518:       {   7,61684,                      /* character number, location */
                   22519:          12, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   22520:           { 14,   12, 3,37, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22521:             "\x24\x44\x16\x26\x33\x13\x21\x52\x12\x40\xf1\x63\x50"
                   22522:             "\xf3\x53\x60\x43\x98\x4c" }  },
                   22523:       /* --- pixel bitmap for cmmib131 char#8 \Phi --- */
                   22524:       {   8,62698,                      /* character number, location */
                   22525:          12, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   22526:           { 14,   12, 3,39, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22527:             "\x48\x93\xa3\x98\x42\x23\x13\x23\x23\x26\x23\x23\x23"
                   22528:             "\x13\x22\x48\x93\xa3\x98\x4c" }  },
                   22529:       /* --- pixel bitmap for cmmib131 char#9 \Psi --- */
                   22530:       {   9,63789,                      /* character number, location */
                   22531:          12, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   22532:           { 14,   12, 3,39, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22533:             "\x48\x93\x44\x23\x23\xf2\x13\x23\x13\x10\x13\x13\x13"
                   22534:             "\x42\x16\x67\x93\xa3\x98\x4c" }  },
                   22535:       /* --- pixel bitmap for cmmib131 char#10 \Omega --- */
                   22536:       {  10,64962,                      /* character number, location */
                   22537:          12, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   22538:           { 14,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22539:             "\xe0\x0f\x0e\xc6\x81\x3b\xe0\x0e\xb8\x03\xe7\xc0\x34"
                   22540:             "\x58\x09\xd2\xc3\xf3\xf8\x3c\x1e" }  },
                   22541:       /* --- pixel bitmap for cmmib131 char#11 \alpha --- */
                   22542:       {  11,65962,                      /* character number, location */
                   22543:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   22544:           { 12,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22545:             "\x78\x40\x88\x86\x35\x58\x83\x33\x18\xc3\xe3\x63" }  },
                   22546:       /* --- pixel bitmap for cmmib131 char#12 \beta --- */
                   22547:       {  12,66997,                      /* character number, location */
                   22548:          13, 0,   -4, 0,      /* topleft row,col, and botleft row,col */
                   22549:           { 11,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22550:             "\xc0\x03\x21\x04\x21\x88\x60\xf4\xa1\x8f\xc0\x04\x26"
                   22551:             "\x30\xc1\x0c\xa3\x0f\x01\x08\x20\x00\x01\x00" }  },
                   22552:       /* --- pixel bitmap for cmmib131 char#13 \gamma --- */
                   22553:       {  13,67928,                      /* character number, location */
                   22554:           8, 0,   -4, 0,      /* topleft row,col, and botleft row,col */
                   22555:           { 12,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22556:             "\x3c\xe8\x47\xc3\x04\x48\x00\x03\x30\x00\x03\x10\x00"
                   22557:             "\x01\x10\x80\x00\x08" }  },
                   22558:       /* --- pixel bitmap for cmmib131 char#14 \delta --- */
                   22559:       {  14,68871,                      /* character number, location */
                   22560:          14, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   22561:           {  8,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22562:             "\x10\xf8\x48\x08\x18\x18\x38\x74\x66\x63\x63\x23\x33"
                   22563:             "\x1e" }  },
                   22564:       /* --- pixel bitmap for cmmib131 char#15 \epsilon --- */
                   22565:       {  15,69751,                      /* character number, location */
                   22566:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   22567:           {  7,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22568:             "\x78\x83\xe0\x37\x18\x08\x78" }  },
                   22569:       /* --- pixel bitmap for cmmib131 char#16 \zeta --- */
                   22570:       {  16,70677,                      /* character number, location */
                   22571:          13, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   22572:           {  8,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22573:             "\x20\x20\xe0\xf0\x08\x04\x06\x03\x03\x03\x03\x07\x3e"
                   22574:             "\x7c\x60\x60\x38" }  },
                   22575:       /* --- pixel bitmap for cmmib131 char#17 \eta --- */
                   22576:       {  17,71544,                      /* character number, location */
                   22577:           8, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   22578:           {  9,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22579:             "\xee\x35\x37\x66\xcc\x98\xb1\x31\x63\xc0\x80\x81\x01"
                   22580:             "\x03" }  },
                   22581:       /* --- pixel bitmap for cmmib131 char#18 \theta --- */
                   22582:       {  18,72294,                      /* character number, location */
                   22583:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   22584:           {  9,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22585:             "\xf0\x30\x31\x66\x6c\xd8\xb0\xff\x61\xc3\x86\x8d\x91"
                   22586:             "\xc1\x01" }  },
                   22587:       /* --- pixel bitmap for cmmib131 char#19 \iota --- */
                   22588:       {  19,72901,                      /* character number, location */
                   22589:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   22590:           {  6,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22591:             "\x0c\x63\x18\xc6\x38\x39" }  },
                   22592:       /* --- pixel bitmap for cmmib131 char#20 \kappa --- */
                   22593:       {  20,73801,                      /* character number, location */
                   22594:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   22595:           { 10,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22596:             "\xcc\xb1\x62\x81\x0f\x66\x18\x3b\xd4\x70" }  },
                   22597:       /* --- pixel bitmap for cmmib131 char#21 \lambda --- */
                   22598:       {  21,74624,                      /* character number, location */
                   22599:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   22600:           { 10,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22601:             "\x1c\xc0\x00\x03\x1c\x60\x80\x01\x0c\x38\xf0\x61\xc6"
                   22602:             "\xd8\xc1\x03\x03" }  },
                   22603:       /* --- pixel bitmap for cmmib131 char#22 \mu --- */
                   22604:       {  22,75622,                      /* character number, location */
                   22605:           8, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   22606:           { 11,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22607:             "\x18\xc3\x18\x63\x18\xc3\x18\xc6\x3a\xcb\x77\x06\x30"
                   22608:             "\xc0\x00\x06\x00" }  },
                   22609:       /* --- pixel bitmap for cmmib131 char#23 \nu --- */
                   22610:       {  23,76377,                      /* character number, location */
                   22611:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   22612:           { 10,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22613:             "\x0f\x33\x6c\x98\x61\xc6\x98\xb1\xc1\x01" }  },
                   22614:       /* --- pixel bitmap for cmmib131 char#24 \xi --- */
                   22615:       {  24,77515,                      /* character number, location */
                   22616:          13, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   22617:           {  7,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22618:             "\x10\x08\x9e\x6f\x30\xf8\x78\x82\xc1\x60\xf0\xf0\xe1"
                   22619:             "\xc1\x38" }  },
                   22620:       /* --- pixel bitmap for cmmib131 char#25 \pi --- */
                   22621:       {  25,78405,                      /* character number, location */
                   22622:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   22623:           { 12,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22624:             "\xfc\xef\xff\x91\x00\x09\x98\x80\x18\x8c\x41\x18" }  },
                   22625:       /* --- pixel bitmap for cmmib131 char#26 \rho --- */
                   22626:       {  26,79207,                      /* character number, location */
                   22627:           8, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   22628:           { 10,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22629:             "\xe0\x41\x8c\x31\xc3\x0c\x33\xe6\x88\x1d\x06\x18\x30"
                   22630:             "\xc0\x00" }  },
                   22631:       /* --- pixel bitmap for cmmib131 char#27 \sigma --- */
                   22632:       {  27,80097,                      /* character number, location */
                   22633:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   22634:           { 11,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22635:             "\xf8\xe7\xbf\x31\x86\x31\x8c\x21\x8c\xc1\x03" }  },
                   22636:       /* --- pixel bitmap for cmmib131 char#28 \tau --- */
                   22637:       {  28,80834,                      /* character number, location */
                   22638:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   22639:           { 10,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22640:             "\xfc\xfb\x1f\x01\x06\x18\x60\xc0\x00\x03" }  },
                   22641:       /* --- pixel bitmap for cmmib131 char#29 \upsilon --- */
                   22642:       {  29,81687,                      /* character number, location */
                   22643:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   22644:           { 10,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22645:             "\x0c\x69\x9c\x11\x43\x0c\x31\xc2\x08\x1e" }  },
                   22646:       /* --- pixel bitmap for cmmib131 char#30 \phi --- */
                   22647:       {  30,82571,                      /* character number, location */
                   22648:          13, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   22649:           { 11,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22650:             "\x80\x00\x04\x20\x80\x00\x04\xfc\x30\xc9\xc4\x23\x1e"
                   22651:             "\xf1\xc8\x24\xc3\x0f\x08\x40\x00\x01\x08\x00" }  },
                   22652:       /* --- pixel bitmap for cmmib131 char#31 \chi --- */
                   22653:       {  31,83580,                      /* character number, location */
                   22654:           8, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   22655:           { 12,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22656:             "\x0e\xa8\x41\x38\x02\x13\xf0\x00\x06\x60\x00\x0f\xc8"
                   22657:             "\x40\x1c\x82\x15\x70" }  },
                   22658:       /* --- pixel bitmap for cmmib131 char#32 \psi --- */
                   22659:       {  32,84627,                      /* character number, location */
                   22660:          13, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   22661:           { 13,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22662:             "\x00\x02\x20\x00\x04\x80\x00\x10\x18\x91\x26\xce\x44"
                   22663:             "\x8c\x88\x09\x31\x11\x26\x01\x1f\x40\x00\x08\x00\x01"
                   22664:             "\x20\x00" }  },
                   22665:       /* --- pixel bitmap for cmmib131 char#33 \omega --- */
                   22666:       {  33,85712,                      /* character number, location */
                   22667:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   22668:           { 12,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22669:             "\x04\x24\xc0\x43\x14\x46\x61\x34\x27\xff\xe3\x1c" }  },
                   22670:       /* --- pixel bitmap for cmmib131 char#34 \varepsilon --- */
                   22671:       {  34,86675,                      /* character number, location */
                   22672:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   22673:           {  8,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22674:             "\x7c\xfe\x41\x1e\x0d\x01\x3f\x1e" }  },
                   22675:       /* --- pixel bitmap for cmmib131 char#35 \vartheta --- */
                   22676:       {  35,87656,                      /* character number, location */
                   22677:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   22678:           { 10,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22679:             "\xc0\x81\x0c\x32\xc8\x20\x3b\xad\x79\x63\x8c\x31\xc6"
                   22680:             "\x0c\x13\x38\x00" }  },
                   22681:       /* --- pixel bitmap for cmmib131 char#36 \varpi --- */
                   22682:       {  36,88845,                      /* character number, location */
                   22683:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   22684:           { 17,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22685:             "\xfc\xff\xfd\xff\x27\x00\x21\x08\x42\x10\x84\x78\x04"
                   22686:             "\x9f\x0f\x1c\x07" }  },
                   22687:       /* --- pixel bitmap for cmmib131 char#37 \varrho --- */
                   22688:       {  37,89708,                      /* character number, location */
                   22689:           8, 2,   -4, 2,      /* topleft row,col, and botleft row,col */
                   22690:           {  9,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22691:             "\xf0\x10\x33\x36\x6c\xd8\xd8\x91\x1e\x01\x02\xfc\xf1"
                   22692:             "\x03" }  },
                   22693:       /* --- pixel bitmap for cmmib131 char#38 \varsigma --- */
                   22694:       {  38,90545,                      /* character number, location */
                   22695:           8, 0,   -2, 0,      /* topleft row,col, and botleft row,col */
                   22696:           {  8,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22697:             "\xf8\x0c\x02\x03\x03\x0e\x3c\x70\x20\x18" }  },
                   22698:       /* --- pixel bitmap for cmmib131 char#39 \varphi --- */
                   22699:       {  39,91470,                      /* character number, location */
                   22700:           8, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   22701:           { 11,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22702:             "\x84\x13\x7e\x18\x43\x18\xc1\x89\xf9\x87\x1f\x18\x40"
                   22703:             "\x00\x03\x18\x00" }  },
                   22704:       /* --- pixel bitmap for cmmib131 char#40 \bfleftharpoonup --- */
                   22705:       {  40,106960,                     /* character number, location */
                   22706:          10, 1,    4, 1,      /* topleft row,col, and botleft row,col */
                   22707:           { 19,    6, 3,20, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22708:             "\xf1\x42\xd0\x32\xe0\x22\xe0\x2e\x0e\x09" }  },
                   22709:       /* --- pixel bitmap for cmmib131 char#41 \bfleftharpoondown --- */
                   22710:       {  41,107986,                     /* character number, location */
                   22711:           6, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   22712:           { 19,    6, 3,21, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22713:             "\x0e\x05\x1e\x04\x22\xe0\x42\xe0\xf1\x42\xd3" }  },
                   22714:       /* --- pixel bitmap for cmmib131 char#42 \bfrightharpoonup --- */
                   22715:       {  42,109010,                     /* character number, location */
                   22716:          10, 1,    4, 1,      /* topleft row,col, and botleft row,col */
                   22717:           { 19,    6, 3,18, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22718:             "\xf1\xd2\x40\xe2\xe0\x42\x2f\x1e\x05" }  },
                   22719:       /* --- pixel bitmap for cmmib131 char#43 \bfrightharpoondown --- */
                   22720:       {  43,110037,                     /* character number, location */
                   22721:           6, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   22722:           { 19,    6, 3,21, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22723:             "\xf1\x0e\x05\xe0\x12\xe0\x22\x30\xf1\xd2\x43" }  },
                   22724:       /* --- pixel bitmap for cmmib131 char#44 ` --- */
                   22725:       {  44,110456,                     /* character number, location */
                   22726:          12, 1,    4, 1,      /* topleft row,col, and botleft row,col */
                   22727:           {  4,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22728:             "\xfe\x33\x33\xef" }  },
                   22729:       /* --- pixel bitmap for cmmib131 char#45 ' --- */
                   22730:       {  45,110880,                     /* character number, location */
                   22731:          12, 1,    4, 1,      /* topleft row,col, and botleft row,col */
                   22732:           {  4,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22733:             "\xf7\xcc\xcc\x7f" }  },
                   22734:       /* --- pixel bitmap for cmmib131 char#46 \triangleright --- */
                   22735:       {  46,111421,                     /* character number, location */
                   22736:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   22737:           {  8,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22738:             "\x03\x07\x1f\x3b\xf3\xf3\x3b\x1f\x07\x03" }  },
                   22739:       /* --- pixel bitmap for cmmib131 char#47 \triangleleft --- */
                   22740:       {  47,111973,                     /* character number, location */
                   22741:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   22742:           {  8,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22743:             "\xc0\xf0\xf8\xde\xc7\xc7\xde\xf8\xf0\xc0" }  },
                   22744:       /* --- pixel bitmap for cmmib131 char#48 \0 --- */
                   22745:       {  48,97647,                      /* character number, location */
                   22746:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   22747:           {  8,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22748:             "\x3c\x42\xc3\xc3\xc3\xc3\x42\x3c" }  },
                   22749:       /* --- pixel bitmap for cmmib131 char#49 \1 --- */
                   22750:       {  49,98402,                      /* character number, location */
                   22751:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   22752:           {  8,    8, 3,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22753:             "\x32\x44\x30\xf4\x32\x30\x17" }  },
                   22754:       /* --- pixel bitmap for cmmib131 char#50 \2 --- */
                   22755:       {  50,99364,                      /* character number, location */
                   22756:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   22757:           {  8,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22758:             "\x7e\xe3\xc0\xc0\xb0\xf8\x7e\x7f" }  },
                   22759:       /* --- pixel bitmap for cmmib131 char#51 \3 --- */
                   22760:       {  51,100379,                     /* character number, location */
                   22761:           8, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   22762:           {  8,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22763:             "\x3e\xe3\xe3\xe2\x60\x3c\x60\xe0\xe7\xe7\x63\x3c" }  },
                   22764:       /* --- pixel bitmap for cmmib131 char#52 \4 --- */
                   22765:       {  52,101298,                     /* character number, location */
                   22766:           8, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   22767:           {  8,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22768:             "\x60\x70\x70\x68\x64\x66\x63\xff\x60\x60\x60\xf8" }  },
                   22769:       /* --- pixel bitmap for cmmib131 char#53 \5 --- */
                   22770:       {  53,102325,                     /* character number, location */
                   22771:           8, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   22772:           {  8,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22773:             "\x42\x3e\x3e\x02\x02\x3e\x62\xe0\xe3\xe3\x63\x3c" }  },
                   22774:       /* --- pixel bitmap for cmmib131 char#54 \6 --- */
                   22775:       {  54,103210,                     /* character number, location */
                   22776:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   22777:           {  8,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22778:             "\x78\xc4\xc6\x03\x3b\x47\xc3\xc3\xc3\xc2\x66\x3c" }  },
                   22779:       /* --- pixel bitmap for cmmib131 char#55 \7 --- */
                   22780:       {  55,104105,                     /* character number, location */
                   22781:           9, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   22782:           {  9,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22783:             "\x02\xfc\xfb\x0b\x12\x04\x04\x04\x0c\x08\x18\x30\x60"
                   22784:             "\xc0\x00" }  },
                   22785:       /* --- pixel bitmap for cmmib131 char#56 \8 --- */
                   22786:       {  56,105020,                     /* character number, location */
                   22787:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   22788:           {  8,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22789:             "\x7c\xc2\xc3\xc7\x7f\x7e\x7e\xe3\xc3\xc3\x42\x3c" }  },
                   22790:       /* --- pixel bitmap for cmmib131 char#57 \9 --- */
                   22791:       {  57,105909,                     /* character number, location */
                   22792:           8, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   22793:           {  8,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22794:             "\x3c\x62\x43\xc3\xc3\xe2\xdc\xc0\xc0\x63\x23\x1e" }  },
                   22795:       /* --- pixel bitmap for cmmib131 char#58 . --- */
                   22796:       {  58,112454,                     /* character number, location */
                   22797:           3, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   22798:           {  3,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22799:             "\xba\x00" }  },
                   22800:       /* --- pixel bitmap for cmmib131 char#59 , --- */
                   22801:       {  59,113015,                     /* character number, location */
                   22802:           3, 2,   -4, 2,      /* topleft row,col, and botleft row,col */
                   22803:           {  3,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22804:             "\xba\x49\x05" }  },
                   22805:       /* --- pixel bitmap for cmmib131 char#60 < --- */
                   22806:       {  60,113675,                     /* character number, location */
                   22807:          12, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
                   22808:           { 12,   14, 3,30, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22809:             "\xa2\x84\x73\x74\x64\x73\x7f\x14\x80\x23\xa4\xa4\xa3"
                   22810:             "\xa4\xa2" }  },
                   22811:       /* --- pixel bitmap for cmmib131 char#61 / --- */
                   22812:       {  61,114205,                     /* character number, location */
                   22813:          14, 1,   -5, 1,      /* topleft row,col, and botleft row,col */
                   22814:           {  8,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22815:             "\xc0\xc0\xe0\x60\x60\x70\x30\x30\x38\x18\x1c\x0c\x0c"
                   22816:             "\x0e\x06\x06\x07\x03\x03" }  },
                   22817:       /* --- pixel bitmap for cmmib131 char#62 > --- */
                   22818:       {  62,114892,                     /* character number, location */
                   22819:          12, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
                   22820:           { 12,   14, 3,31, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22821:             "\x02\xa4\xa3\xa4\xa4\xa3\x20\xf1\x84\x73\x74\x64\x73"
                   22822:             "\x74\x82\xa1" }  },
                   22823:       /* --- pixel bitmap for cmmib131 char#63 \star --- */
                   22824:       {  63,115597,                     /* character number, location */
                   22825:          10, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   22826:           { 10,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22827:             "\x20\x80\x00\x02\x08\xfe\xe3\x03\x07\x36\x88\x10\x04" }  },
                   22828:       /* --- pixel bitmap for cmmib131 char#64 \partial --- */
                   22829:       {  64,92438,                      /* character number, location */
                   22830:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   22831:           { 11,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22832:             "\xf0\x60\x18\x81\x08\x0c\x60\x7c\x33\xdc\x60\x03\x1b"
                   22833:             "\xc8\x60\x84\xc1\x03" }  },
                   22834:       /* --- pixel bitmap for cmmib131 char#65 A --- */
                   22835:       {  65, 1026,                      /* character number, location */
                   22836:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   22837:           { 14,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22838:             "\x00\x06\xc0\x01\x70\x00\x1e\x40\x07\xd0\x03\xe2\x40"
                   22839:             "\x38\xf0\x0f\x82\x43\xe0\x7c\xfe" }  },
                   22840:       /* --- pixel bitmap for cmmib131 char#66 B --- */
                   22841:       {  66, 2364,                      /* character number, location */
                   22842:          12, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   22843:           { 15,   12, 3,41, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22844:             "\x3b\x63\x43\x43\x62\xf1\x43\x53\x49\x53\x53\x10\xf1"
                   22845:             "\x33\x63\x33\x62\x33\x63\x1c\x37" }  },
                   22846:       /* --- pixel bitmap for cmmib131 char#67 C --- */
                   22847:       {  67, 3317,                      /* character number, location */
                   22848:          12, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   22849:           { 15,   12, 3,43, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22850:             "\x66\x12\x43\x53\x32\x81\x32\x91\x10\xf1\x13\xbf\x13"
                   22851:             "\xc0\x12\x91\x32\x81\x52\x61\x86\x50" }  },
                   22852:       /* --- pixel bitmap for cmmib131 char#68 D --- */
                   22853:       {  68, 4437,                      /* character number, location */
                   22854:          12, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   22855:           { 17,   12, 3,41, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22856:             "\x3b\x83\x53\x53\x72\x10\xf2\x43\x73\xf1\x33\x73\x10"
                   22857:             "\x33\x72\x53\x63\x43\x62\x4b\x66" }  },
                   22858:       /* --- pixel bitmap for cmmib131 char#69 E --- */
                   22859:       {  69, 5844,                      /* character number, location */
                   22860:          12, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   22861:           { 15,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22862:             "\xf8\x7f\x70\x30\x1c\x10\x8e\x08\x47\x84\x3f\xe0\x08"
                   22863:             "\x70\x44\x38\x20\x1c\x08\x07\xe6\xff\x01" }  },
                   22864:       /* --- pixel bitmap for cmmib131 char#70 F --- */
                   22865:       {  70, 7061,                      /* character number, location */
                   22866:          12, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   22867:           { 14,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22868:             "\xf8\x3f\x38\x0c\x07\xc2\x91\x70\x24\xfc\x81\x23\xe0"
                   22869:             "\x08\x38\x00\x0e\xc0\x01\xfc\x03" }  },
                   22870:       /* --- pixel bitmap for cmmib131 char#71 G --- */
                   22871:       {  71, 8232,                      /* character number, location */
                   22872:          12, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   22873:           { 15,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22874:             "\xc0\x6f\x38\x38\x06\x88\x01\xe4\x00\x70\x00\x1c\xfc"
                   22875:             "\x0f\x38\x06\x1c\x03\x0e\x83\x03\x3e\x01" }  },
                   22876:       /* --- pixel bitmap for cmmib131 char#72 H --- */
                   22877:       {  72, 9465,                      /* character number, location */
                   22878:          12, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   22879:           { 19,   12, 3,39, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22880:             "\x37\x27\x53\x63\x20\xf2\x43\x63\x30\x4c\x30\xf3\x33"
                   22881:             "\x63\x40\x23\x63\x57\x27\x32" }  },
                   22882:       /* --- pixel bitmap for cmmib131 char#73 I --- */
                   22883:       {  73,10176,                      /* character number, location */
                   22884:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   22885:           { 10,   12, 3,23, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22886:             "\x37\x53\x20\xf3\x43\x30\xf3\x33\x40\x23\x57\x33" }  },
                   22887:       /* --- pixel bitmap for cmmib131 char#74 J --- */
                   22888:       {  74,10994,                      /* character number, location */
                   22889:          12, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   22890:           { 13,   12, 3,29, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22891:             "\x67\x93\x10\xf3\x83\x20\xf2\x73\x30\x13\x33\x33\x33"
                   22892:             "\x56\x60" }  },
                   22893:       /* --- pixel bitmap for cmmib131 char#75 K --- */
                   22894:       {  75,12211,                      /* character number, location */
                   22895:          12, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   22896:           { 18,   12, 3,49, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22897:             "\x37\x35\x53\x62\x63\x61\x83\x41\xa3\x22\xb3\x13\xa8"
                   22898:             "\x70\xf1\x33\x33\x60\x33\x43\x73\x54\x47\x26\x30" }  },
                   22899:       /* --- pixel bitmap for cmmib131 char#76 L --- */
                   22900:       {  76,13142,                      /* character number, location */
                   22901:          12, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   22902:           { 13,   12, 3,33, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22903:             "\x37\x83\x50\xf3\x43\x60\x33\x70\xf1\x33\x61\x33\x51"
                   22904:             "\x33\x43\x1b\x23" }  },
                   22905:       /* --- pixel bitmap for cmmib131 char#77 M --- */
                   22906:       {  77,14460,                      /* character number, location */
                   22907:          12, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   22908:           { 23,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22909:             "\xf8\x01\x7e\xf0\x80\x0e\x74\xc0\x03\x3a\xd0\x01\x39"
                   22910:             "\xe4\x80\x1c\x71\x20\x8e\x1c\x10\x27\x0e\x08\x0f\x07"
                   22911:             "\x84\x83\x03\xc1\xe1\xe0\x63\xfc\x01" }  },
                   22912:       /* --- pixel bitmap for cmmib131 char#78 N --- */
                   22913:       {  78,15622,                      /* character number, location */
                   22914:          12, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   22915:           { 19,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22916:             "\xf8\xc0\x07\x0f\x08\xf4\x20\x20\x0f\x01\x71\x08\x08"
                   22917:             "\x47\x20\x78\x01\x81\x0f\x08\x78\x40\x80\x03\x01\x0c"
                   22918:             "\x3e\x40\x00" }  },
                   22919:       /* --- pixel bitmap for cmmib131 char#79 O --- */
                   22920:       {  79,16481,                      /* character number, location */
                   22921:          12, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   22922:           { 15,   12, 3,41, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22923:             "\x66\x73\x43\x42\x72\x32\x83\xf1\x13\x83\x0f\x13\x83"
                   22924:             "\x13\x82\x32\x73\x33\x43\x76\x65" }  },
                   22925:       /* --- pixel bitmap for cmmib131 char#80 P --- */
                   22926:       {  80,17576,                      /* character number, location */
                   22927:          12, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   22928:           { 15,   12, 3,31, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22929:             "\x3b\x63\x43\xf2\x43\x53\x43\x43\x49\x30\xf2\x33\x90"
                   22930:             "\x23\xa7\x82" }  },
                   22931:       /* --- pixel bitmap for cmmib131 char#81 Q --- */
                   22932:       {  81,18599,                      /* character number, location */
                   22933:          12, 0,   -4, 0,      /* topleft row,col, and botleft row,col */
                   22934:           { 15,   16, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22935:             "\xc0\x0f\x38\x1c\x06\x8c\x01\xee\x00\x77\x80\x1f\xe0"
                   22936:             "\x0e\x70\x07\x18\x73\x8e\xe7\x01\x3f\x02\x10\x01\x78"
                   22937:             "\x00\x3c\x00\x0e" }  },
                   22938:       /* --- pixel bitmap for cmmib131 char#82 R --- */
                   22939:       {  82,19904,                      /* character number, location */
                   22940:          12, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   22941:           { 16,   12, 3,41, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22942:             "\x3b\x73\x43\x10\xf1\x43\x53\x10\x43\x43\x68\x40\xf3"
                   22943:             "\x33\x43\x30\x23\x53\x28\x44\x16" }  },
                   22944:       /* --- pixel bitmap for cmmib131 char#83 S --- */
                   22945:       {  83,20963,                      /* character number, location */
                   22946:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   22947:           { 12,   12, 3,33, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22948:             "\x57\x32\x52\x31\x61\x32\xa6\x77\x67\x84\xa2\x21\x71"
                   22949:             "\x22\x61\x38\x43" }  },
                   22950:       /* --- pixel bitmap for cmmib131 char#84 T --- */
                   22951:       {  84,22015,                      /* character number, location */
                   22952:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   22953:           { 13,   12, 3,33, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22954:             "\x1c\x11\x43\x22\x0f\x21\x43\x31\x10\x53\x50\xf3\x43"
                   22955:             "\x60\x33\x79\x43" }  },
                   22956:       /* --- pixel bitmap for cmmib131 char#85 U --- */
                   22957:       {  85,23031,                      /* character number, location */
                   22958:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   22959:           { 16,   12, 3,33, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22960:             "\x07\x45\x23\x81\x20\xf3\x13\x81\x3f\x23\x81\x43\x71"
                   22961:             "\x62\x61\x87\x73" }  },
                   22962:       /* --- pixel bitmap for cmmib131 char#86 V --- */
                   22963:       {  86,23943,                      /* character number, location */
                   22964:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   22965:           { 15,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22966:             "\x7f\x78\x0e\x08\x0f\x02\x07\x81\x43\xc0\x11\xe0\x04"
                   22967:             "\xf0\x02\xf0\x00\x38\x00\x1c\x00\x06\x00" }  },
                   22968:       /* --- pixel bitmap for cmmib131 char#87 W --- */
                   22969:       {  87,25316,                      /* character number, location */
                   22970:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   22971:           { 21,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22972:             "\x7f\x7e\x9e\x83\x83\x70\xf8\x10\x0e\x1d\xc1\x91\x13"
                   22973:             "\x78\x71\x02\x2e\x2e\xc0\xc3\x07\x78\x78\x00\x07\x07"
                   22974:             "\x60\xe0\x00\x0c\x08\x00" }  },
                   22975:       /* --- pixel bitmap for cmmib131 char#88 X --- */
                   22976:       {  88,26455,                      /* character number, location */
                   22977:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   22978:           { 16,   12, 3,43, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22979:             "\x36\x25\x53\x41\x84\x21\xa3\x11\xb4\xd3\xd4\xb1\x13"
                   22980:             "\xa1\x24\x81\x43\x71\x53\x45\x27\x23" }  },
                   22981:       /* --- pixel bitmap for cmmib131 char#89 Y --- */
                   22982:       {  89,27521,                      /* character number, location */
                   22983:          12, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   22984:           { 15,   12, 3,37, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22985:             "\x07\x44\x24\x61\x53\x51\x64\x31\x83\x21\x96\xa4\x60"
                   22986:             "\xf2\x53\x70\x43\xa7\x63" }  },
                   22987:       /* --- pixel bitmap for cmmib131 char#90 Z --- */
                   22988:       {  90,28600,                      /* character number, location */
                   22989:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   22990:           { 14,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22991:             "\xf8\x3f\x06\xc7\xe0\x10\x1c\x84\x03\x70\x00\x0e\xc0"
                   22992:             "\x21\x38\x08\x07\xe3\x60\xfc\x1f" }  },
                   22993:       /* --- pixel bitmap for cmmib131 char#91 \flat --- */
                   22994:       {  91,116280,                     /* character number, location */
                   22995:          14, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   22996:           {  6,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   22997:             "\x41\x10\x04\x41\xf0\xc5\x71\x9c\x35\x47\x00" }  },
                   22998:       /* --- pixel bitmap for cmmib131 char#92 \natural --- */
                   22999:       {  92,117025,                     /* character number, location */
                   23000:          14, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   23001:           {  6,   18, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23002:             "\x41\x10\x04\x71\xff\x8e\x61\x18\x86\x71\xff\x8e\x20"
                   23003:             "\x08" }  },
                   23004:       /* --- pixel bitmap for cmmib131 char#93 \sharp --- */
                   23005:       {  93,117884,                     /* character number, location */
                   23006:          13, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   23007:           {  6,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23008:             "\x90\x24\xc9\xfe\x37\x49\x92\x24\xc9\xfe\x37\x49\x02" }  },
                   23009:       /* --- pixel bitmap for cmmib131 char#94 \smile --- */
                   23010:       {  94,118790,                     /* character number, location */
                   23011:           8, 1,    3, 1,      /* topleft row,col, and botleft row,col */
                   23012:           { 19,    5, 3,21, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23013:             "\x01\xe0\x31\x11\xe0\x11\x33\x93\x6b\xa7\x61" }  },
                   23014:       /* --- pixel bitmap for cmmib131 char#95 \frown --- */
                   23015:       {  95,119656,                     /* character number, location */
                   23016:           9, 1,    3, 1,      /* topleft row,col, and botleft row,col */
                   23017:           { 19,    6, 3,22, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23018:             "\x91\xe9\x8d\x52\xb2\x31\xe0\x11\x11\xe0\x31" }  },
                   23019:       /* --- pixel bitmap for cmmib131 char#96 \ell --- */
                   23020:       {  96,93222,                      /* character number, location */
                   23021:          13,-1,    0,-1,      /* topleft row,col, and botleft row,col */
                   23022:           {  9,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23023:             "\x80\x80\x82\x05\x05\x0b\x0e\x0c\x0c\x18\x38\x68\x80"
                   23024:             "\x08\x0f" }  },
                   23025:       /* --- pixel bitmap for cmmib131 char#97 a --- */
                   23026:       {  97,29528,                      /* character number, location */
                   23027:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   23028:           {  9,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23029:             "\xf8\xcc\x89\x19\x33\x66\xec\x2c\x77" }  },
                   23030:       /* --- pixel bitmap for cmmib131 char#98 b --- */
                   23031:       {  98,30378,                      /* character number, location */
                   23032:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   23033:           {  7,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23034:             "\x0e\x06\xc3\x60\xf0\x99\xc7\xe3\xf1\x68\xe6\x00" }  },
                   23035:       /* --- pixel bitmap for cmmib131 char#99 c --- */
                   23036:       {  99,31199,                      /* character number, location */
                   23037:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   23038:           {  8,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23039:             "\x78\xc4\x46\x03\x03\x03\x43\x3e" }  },
                   23040:       /* --- pixel bitmap for cmmib131 char#100 d --- */
                   23041:       { 100,32157,                      /* character number, location */
                   23042:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   23043:           {  9,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23044:             "\xc0\x01\x03\x06\x06\x0c\x9f\x39\x31\x63\xc6\x8c\x9d"
                   23045:             "\xe5\x0e" }  },
                   23046:       /* --- pixel bitmap for cmmib131 char#101 e --- */
                   23047:       { 101,32984,                      /* character number, location */
                   23048:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   23049:           {  7,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23050:             "\x78\xa3\xf0\x37\x18\x0c\x7d" }  },
                   23051:       /* --- pixel bitmap for cmmib131 char#102 f --- */
                   23052:       { 102,34120,                      /* character number, location */
                   23053:          13, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   23054:           { 10,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23055:             "\x80\x01\x0d\x16\x18\x60\xf0\x07\x03\x0c\x30\xc0\x00"
                   23056:             "\x03\x0c\x18\x60\xa0\xc1\x02\x06\x00" }  },
                   23057:       /* --- pixel bitmap for cmmib131 char#103 g --- */
                   23058:       { 103,35097,                      /* character number, location */
                   23059:           8,-1,   -4,-1,      /* topleft row,col, and botleft row,col */
                   23060:           { 10,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23061:             "\xe0\x63\x8e\x18\x63\x8c\x31\xc6\x0c\x3e\xc0\x00\x23"
                   23062:             "\x86\x0f" }  },
                   23063:       /* --- pixel bitmap for cmmib131 char#104 h --- */
                   23064:       { 104,36010,                      /* character number, location */
                   23065:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   23066:           { 10,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23067:             "\x1c\x60\x80\x01\x03\x0c\xf0\xc3\x8c\x31\xc6\x18\x63"
                   23068:             "\xe6\x58\xc3\x00" }  },
                   23069:       /* --- pixel bitmap for cmmib131 char#105 i --- */
                   23070:       { 105,36798,                      /* character number, location */
                   23071:          14, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   23072:           {  6,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23073:             "\x30\x04\x00\x00\xc0\x68\x19\xc3\x98\x16\x03" }  },
                   23074:       /* --- pixel bitmap for cmmib131 char#106 j --- */
                   23075:       { 106,37711,                      /* character number, location */
                   23076:          14,-1,   -4,-1,      /* topleft row,col, and botleft row,col */
                   23077:           {  9,   18, 3,39, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23078:             "\xf1\x81\xf3\x90\x53\x51\x22\x31\x22\x10\xf2\x62\x10"
                   23079:             "\xf3\x52\x20\x11\x22\x44\x42" }  },
                   23080:       /* --- pixel bitmap for cmmib131 char#107 k --- */
                   23081:       { 107,38716,                      /* character number, location */
                   23082:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   23083:           {  9,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23084:             "\x1c\x30\x60\x60\xc0\x80\x19\x6b\x4b\x1e\x6c\x98\x1d"
                   23085:             "\x35\x0e" }  },
                   23086:       /* --- pixel bitmap for cmmib131 char#108 l --- */
                   23087:       { 108,39408,                      /* character number, location */
                   23088:          13, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   23089:           {  5,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23090:             "\x1c\x63\xc6\x18\x33\xc6\xd8\xe5\x00" }  },
                   23091:       /* --- pixel bitmap for cmmib131 char#109 m --- */
                   23092:       { 109,40611,                      /* character number, location */
                   23093:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   23094:           { 17,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23095:             "\xce\x79\x74\xce\x74\x8c\x61\x18\xc3\x30\x86\x61\xa6"
                   23096:             "\x61\x2c\xc3\x30" }  },
                   23097:       /* --- pixel bitmap for cmmib131 char#110 n --- */
                   23098:       { 110,41590,                      /* character number, location */
                   23099:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   23100:           { 12,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23101:             "\xce\xa1\x33\x1d\xc3\x30\x0c\xc3\x98\x86\x65\x30" }  },
                   23102:       /* --- pixel bitmap for cmmib131 char#111 o --- */
                   23103:       { 111,42330,                      /* character number, location */
                   23104:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   23105:           {  8,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23106:             "\x78\xc4\xc6\xc3\xc3\x63\x23\x1e" }  },
                   23107:       /* --- pixel bitmap for cmmib131 char#112 p --- */
                   23108:       { 112,43270,                      /* character number, location */
                   23109:           8, 0,   -4, 0,      /* topleft row,col, and botleft row,col */
                   23110:           { 10,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23111:             "\xdc\xd1\xac\x31\xc6\x18\x63\xc4\x19\x1f\x0c\x30\x60"
                   23112:             "\xc0\x03" }  },
                   23113:       /* --- pixel bitmap for cmmib131 char#113 q --- */
                   23114:       { 113,44185,                      /* character number, location */
                   23115:           8, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   23116:           {  8,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23117:             "\xb8\xe6\x62\x63\x63\x63\x33\x3e\x30\x30\x18\x3c" }  },
                   23118:       /* --- pixel bitmap for cmmib131 char#114 r --- */
                   23119:       { 114,45050,                      /* character number, location */
                   23120:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   23121:           {  8,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23122:             "\x6e\xda\x4d\x0c\x0c\x0c\x06\x06" }  },
                   23123:       /* --- pixel bitmap for cmmib131 char#115 s --- */
                   23124:       { 115,45982,                      /* character number, location */
                   23125:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   23126:           {  8,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23127:             "\x78\xc4\x46\x3c\x78\x42\x23\x1e" }  },
                   23128:       /* --- pixel bitmap for cmmib131 char#116 t --- */
                   23129:       { 116,46748,                      /* character number, location */
                   23130:          12, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   23131:           {  6,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23132:             "\x18\xc6\x30\x3f\x63\x18\x86\x39\x39" }  },
                   23133:       /* --- pixel bitmap for cmmib131 char#117 u --- */
                   23134:       { 117,47744,                      /* character number, location */
                   23135:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   23136:           { 11,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23137:             "\x0c\xd3\x58\x66\x18\xc3\x18\xc6\x32\x0b\x77" }  },
                   23138:       /* --- pixel bitmap for cmmib131 char#118 v --- */
                   23139:       { 118,48611,                      /* character number, location */
                   23140:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   23141:           {  9,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23142:             "\x8c\x34\x67\x62\xc4\x88\x09\x13\x1c" }  },
                   23143:       /* --- pixel bitmap for cmmib131 char#119 w --- */
                   23144:       { 119,49767,                      /* character number, location */
                   23145:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   23146:           { 14,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23147:             "\x0c\x93\xc6\x9c\x19\x31\x46\x8c\x11\x63\xc4\x9c\xe0"
                   23148:             "\x1c" }  },
                   23149:       /* --- pixel bitmap for cmmib131 char#120 x --- */
                   23150:       { 120,50985,                      /* character number, location */
                   23151:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   23152:           { 12,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23153:             "\x38\x47\xce\x62\x04\x06\x60\x20\x46\x73\xe2\x1c" }  },
                   23154:       /* --- pixel bitmap for cmmib131 char#121 y --- */
                   23155:       { 121,52039,                      /* character number, location */
                   23156:           8, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   23157:           { 10,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23158:             "\x0c\x6b\x9c\x19\x63\x8c\x31\xc6\x0c\x3e\xc0\x88\x31"
                   23159:             "\x82\x07" }  },
                   23160:       /* --- pixel bitmap for cmmib131 char#122 z --- */
                   23161:       { 122,52959,                      /* character number, location */
                   23162:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   23163:           {  8,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23164:             "\x98\x7c\x20\x10\x08\x84\x7e\x39" }  },
                   23165:       /* --- pixel bitmap for cmmib131 char#123 \imath --- */
                   23166:       { 123,93918,                      /* character number, location */
                   23167:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   23168:           {  6,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23169:             "\x8c\x96\x31\x8c\x69\x31" }  },
                   23170:       /* --- pixel bitmap for cmmib131 char#124 \jmath --- */
                   23171:       { 124,94713,                      /* character number, location */
                   23172:           8,-1,   -4,-1,      /* topleft row,col, and botleft row,col */
                   23173:           {  9,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23174:             "\xe0\x20\x23\x03\x06\x0c\x18\x18\x30\x60\xc0\xc8\xf0"
                   23175:             "\x00" }  },
                   23176:       /* --- pixel bitmap for cmmib131 char#125 \wp --- */
                   23177:       { 125,95828,                      /* character number, location */
                   23178:           8, 2,   -4, 2,      /* topleft row,col, and botleft row,col */
                   23179:           { 11,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23180:             "\x04\x30\xde\x8c\x17\x7c\xe0\x01\x4d\xec\x1c\x0d\x68"
                   23181:             "\xc0\x01\x06\x00" }  },
                   23182:       /* --- pixel bitmap for cmmib131 char#126 \bfvec --- */
                   23183:       { 126,96440,                      /* character number, location */
                   23184:          13, 4,    9, 4,      /* topleft row,col, and botleft row,col */
                   23185:           {  8,    4, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23186:             "\x30\xff\xff\x38" }  },
                   23187:       /* --- pixel bitmap for cmmib131 char#127 (noname) --- */
                   23188:       { 127,96978,                      /* character number, location */
                   23189:          12, 6,   10, 6,      /* topleft row,col, and botleft row,col */
                   23190:           {  8,    2, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23191:             "\x7e\x81" }  },
                   23192:       /* --- trailer  --- */
                   23193:       { -99, -999,  0,0,0,0, { 0,0,0,0, (pixbyte *)"\0" }  }
                   23194:    } ;
                   23195: 
                   23196: 
                   23197: /* --- size=4 for .160gf ---
                   23198:  * mf '\mode=preview; mag=magstep(-15.29639112828755784636); input cmmib10'
                   23199:  * --------------------------------------------------------------------- */
                   23200: /* --- fontdef for cmmib160 --- */
                   23201: static	chardef  cmmib160[] =
                   23202:    {
                   23203:       /* --- pixel bitmap for cmmib160 char#0 \Gamma --- */
                   23204:       {   0,54473,                      /* character number, location */
                   23205:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   23206:           { 16,   15, 3,31, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23207:             "\x3d\xf1\x53\x62\xf1\x53\x71\xf3\x43\x90\xf3\x33\xa0"
                   23208:             "\x23\xb8\x86" }  },
                   23209:       /* --- pixel bitmap for cmmib160 char#1 \Delta --- */
                   23210:       {   1,55378,                      /* character number, location */
                   23211:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   23212:           { 19,   15, 3,58, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23213:             "\xc2\xe0\x23\xe0\x24\xe1\x13\xd1\x23\xc1\x34\xa1\x53"
                   23214:             "\x92\x53\x91\x64\x71\x83\x61\x93\x51\xa4\x3e\x02\x2e"
                   23215:             "\x03\x1e\x05" }  },
                   23216:       /* --- pixel bitmap for cmmib160 char#2 \Theta --- */
                   23217:       {   2,56521,                      /* character number, location */
                   23218:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   23219:           { 18,   15, 3,61, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23220:             "\x77\x93\x53\x53\x83\x33\xa3\x13\xb3\x13\x11\x61\x23"
                   23221:             "\x0f\x23\x28\x23\x03\x11\x61\x23\x13\xb3\x13\xa3\x32"
                   23222:             "\x93\x53\x53\x88\x72" }  },
                   23223:       /* --- pixel bitmap for cmmib160 char#3 \Lambda --- */
                   23224:       {   3,57479,                      /* character number, location */
                   23225:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   23226:           { 16,   15, 3,58, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23227:             "\xb1\x40\xf1\xa3\x30\x94\x30\xf1\x81\x13\x30\x71\x23"
                   23228:             "\x91\x33\x91\x34\x71\x44\x62\x53\x61\x63\x51\x73\x42"
                   23229:             "\x73\x25\x47" }  },
                   23230:       /* --- pixel bitmap for cmmib160 char#4 \Xi --- */
                   23231:       {   4,58904,                      /* character number, location */
                   23232:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   23233:           { 19,   15, 3,57, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23234:             "\x4e\x01\x3e\x01\x10\xf1\x31\xd1\x10\xe0\xa1\x71\x50"
                   23235:             "\xf1\x59\x50\x51\x71\x50\xf1\xe0\x50\xf1\x11\xd1\x3f"
                   23236:             "\x1e\x01\x47" }  },
                   23237:       /* --- pixel bitmap for cmmib160 char#5 \Pi --- */
                   23238:       {   5,60139,                      /* character number, location */
                   23239:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   23240:           { 22,   15, 3,37, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23241:             "\x3e\x05\xf3\x53\x83\x30\xf3\x43\x83\x40\xf3\x33\x83"
                   23242:             "\x50\x23\x83\x68\x38\x30" }  },
                   23243:       /* --- pixel bitmap for cmmib160 char#6 \Sigma --- */
                   23244:       {   6,61318,                      /* character number, location */
                   23245:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   23246:           { 19,   15, 3,61, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23247:             "\x4e\x01\x44\x83\x53\x92\x54\x91\x63\x91\x64\xe0\x23"
                   23248:             "\xe0\x24\xe0\x22\xe0\x21\x81\x81\x91\x62\x91\x61\x93"
                   23249:             "\x4e\x01\x3e\x01\x42" }  },
                   23250:       /* --- pixel bitmap for cmmib160 char#7 \Upsilon --- */
                   23251:       {   7,62376,                      /* character number, location */
                   23252:          15, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   23253:           { 18,   15, 3,43, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23254:             "\x25\x64\x27\x38\x43\x32\x41\x63\x12\x60\xf1\x74\x70"
                   23255:             "\xf2\x73\x80\xf3\x63\x90\x53\xc9\x71" }  },
                   23256:       /* --- pixel bitmap for cmmib160 char#8 \Phi --- */
                   23257:       {   8,63396,                      /* character number, location */
                   23258:          15, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   23259:           { 16,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23260:             "\xc0\x7f\x00\x07\x00\x07\xe0\x1f\x1c\x77\x8e\xe3\x87"
                   23261:             "\xe3\x87\xe3\x87\x63\xc7\x71\xce\x1d\xf8\x07\xc0\x01"
                   23262:             "\xe0\x00\xfc\x07" }  },
                   23263:       /* --- pixel bitmap for cmmib160 char#9 \Psi --- */
                   23264:       {   9,64505,                      /* character number, location */
                   23265:          15, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   23266:           { 18,   15, 3,57, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23267:             "\x69\x30\xf1\x83\x73\x53\x34\x13\x43\x23\x20\xf2\x13"
                   23268:             "\x33\x23\x30\x13\x33\x13\x62\x23\x22\x73\x16\xa7\xd3"
                   23269:             "\xe3\xc9\x79" }  },
                   23270:       /* --- pixel bitmap for cmmib160 char#10 \Omega --- */
                   23271:       {  10,65718,                      /* character number, location */
                   23272:          15, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   23273:           { 18,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23274:             "\x80\x3f\xc0\x83\x83\x03\x1c\x07\xe0\x1c\x80\x3b\x00"
                   23275:             "\xe7\x00\x1c\x03\x38\x1c\x60\x60\xc0\x90\x81\x49\x04"
                   23276:             "\x22\x1f\x7c\x7c\xf8\xf1\xe1\x03" }  },
                   23277:       /* --- pixel bitmap for cmmib160 char#11 \alpha --- */
                   23278:       {  11,66730,                      /* character number, location */
                   23279:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   23280:           { 15,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23281:             "\xf0\x01\x0c\x21\x81\xd1\x80\x35\xc0\x1a\xe0\x0c\x30"
                   23282:             "\x06\x18\x06\x0f\x7e\x1c" }  },
                   23283:       /* --- pixel bitmap for cmmib160 char#12 \beta --- */
                   23284:       {  12,67801,                      /* character number, location */
                   23285:          15, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   23286:           { 13,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23287:             "\x80\x07\x08\x81\x60\x08\x0c\x81\x90\x1f\xf2\x41\x60"
                   23288:             "\x08\x8c\x80\x11\x30\x02\x46\x60\x14\x86\x3c\x10\x00"
                   23289:             "\x02\x20\x00\x04\x00" }  },
                   23290:       /* --- pixel bitmap for cmmib160 char#13 \gamma --- */
                   23291:       {  13,68742,                      /* character number, location */
                   23292:          10, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   23293:           { 13,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23294:             "\x3c\xd0\x0f\x0e\xa3\xc0\x04\x50\x00\x0a\xc0\x00\x18"
                   23295:             "\x00\x03\x20\x00\x04\x80\x00\x08\x00\x01" }  },
                   23296:       /* --- pixel bitmap for cmmib160 char#14 \delta --- */
                   23297:       {  14,69695,                      /* character number, location */
                   23298:          16, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   23299:           { 10,   16, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23300:             "\x60\xc0\x0f\x11\x04\x30\x80\x01\x0f\x76\x84\x19\x36"
                   23301:             "\xd8\x60\x83\x0d\x62\x04\x0f" }  },
                   23302:       /* --- pixel bitmap for cmmib160 char#15 \epsilon --- */
                   23303:       {  15,70557,                      /* character number, location */
                   23304:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   23305:           {  8,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23306:             "\xf0\x0c\x06\x06\x7f\x03\x03\x03\x86\x7c" }  },
                   23307:       /* --- pixel bitmap for cmmib160 char#16 \zeta --- */
                   23308:       {  16,71463,                      /* character number, location */
                   23309:          15, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   23310:           { 11,   19, 3,39, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23311:             "\x71\x91\xb4\x56\x41\x91\x92\x70\xf1\x12\x8f\x22\x93"
                   23312:             "\x93\x96\x75\x92\xa1\x73\x32" }  },
                   23313:       /* --- pixel bitmap for cmmib160 char#17 \eta --- */
                   23314:       {  17,72334,                      /* character number, location */
                   23315:          10, 2,   -4, 2,      /* topleft row,col, and botleft row,col */
                   23316:           { 12,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23317:             "\x8e\x97\xc7\x19\x9c\xc1\x0c\xc6\x60\x0c\xc6\x60\x06"
                   23318:             "\x63\x30\x00\x03\x30\x80\x01\x18" }  },
                   23319:       /* --- pixel bitmap for cmmib160 char#18 \theta --- */
                   23320:       {  18,73094,                      /* character number, location */
                   23321:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   23322:           { 11,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23323:             "\xc0\x81\x11\x86\x11\xcc\x60\x02\x1b\xd8\xff\x06\x16"
                   23324:             "\xd8\xc0\x04\x23\x08\x23\xf0\x00" }  },
                   23325:       /* --- pixel bitmap for cmmib160 char#19 \iota --- */
                   23326:       {  19,73735,                      /* character number, location */
                   23327:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   23328:           {  7,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23329:             "\x08\x06\x83\x61\x30\x18\x47\x33\x07" }  },
                   23330:       /* --- pixel bitmap for cmmib160 char#20 \kappa --- */
                   23331:       {  20,74641,                      /* character number, location */
                   23332:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   23333:           { 13,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23334:             "\x08\x8e\xa1\x31\x03\x16\xe0\x07\x8c\x83\xc1\x34\x98"
                   23335:             "\x03\x6b\xc0\x00" }  },
                   23336:       /* --- pixel bitmap for cmmib160 char#21 \lambda --- */
                   23337:       {  21,75474,                      /* character number, location */
                   23338:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   23339:           { 13,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23340:             "\x38\x00\x0c\x80\x01\x60\x00\x0c\x80\x03\x60\x00\x1c"
                   23341:             "\x80\x03\x6c\xc0\x18\x0c\xc3\xc0\x0c\x98\x00\x06" }  },
                   23342:       /* --- pixel bitmap for cmmib160 char#22 \mu --- */
                   23343:       {  22,76480,                      /* character number, location */
                   23344:          10, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   23345:           { 14,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23346:             "\x10\x08\x06\x83\xc1\x60\x30\x0c\x06\x83\xc1\x60\x32"
                   23347:             "\x9c\x8e\x97\x1f\x63\x00\x18\x00\x03\xc0\x00\x00" }  },
                   23348:       /* --- pixel bitmap for cmmib160 char#23 \nu --- */
                   23349:       {  23,77271,                      /* character number, location */
                   23350:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   23351:           { 12,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23352:             "\x0e\xc8\xc0\x0c\xcc\x60\x06\x62\x30\x86\x61\x06\x3b"
                   23353:             "\x70\x00" }  },
                   23354:       /* --- pixel bitmap for cmmib160 char#24 \xi --- */
                   23355:       {  24,78391,                      /* character number, location */
                   23356:          15, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   23357:           { 10,   19, 3,45, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23358:             "\x61\x81\x95\x32\x14\x22\x60\xf1\x12\x70\xf1\x26\x20"
                   23359:             "\x12\x7f\x22\x83\x85\x76\x73\x91\x54\x20" }  },
                   23360:       /* --- pixel bitmap for cmmib160 char#25 \pi --- */
                   23361:       {  25,79287,                      /* character number, location */
                   23362:          10, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   23363:           { 13,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23364:             "\xfc\xdf\xff\x47\x04\x88\x00\x19\x30\x03\x62\x60\x0c"
                   23365:             "\x8c\x83\x20\x00" }  },
                   23366:       /* --- pixel bitmap for cmmib160 char#26 \rho --- */
                   23367:       {  26,80123,                      /* character number, location */
                   23368:          10, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   23369:           { 12,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23370:             "\xc0\x07\xc3\x10\x8c\x81\x0c\xcc\xc0\x0c\xcc\x60\x0e"
                   23371:             "\x63\x1f\x06\x60\x00\x03\x30\x00" }  },
                   23372:       /* --- pixel bitmap for cmmib160 char#27 \sigma --- */
                   23373:       {  27,81021,                      /* character number, location */
                   23374:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   23375:           { 13,   10, 3,29, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23376:             "\x49\x3a\x22\x42\x42\x52\x3f\x22\x62\x32\x52\x51\x42"
                   23377:             "\x75\x62" }  },
                   23378:       /* --- pixel bitmap for cmmib160 char#28 \tau --- */
                   23379:       {  28,81766,                      /* character number, location */
                   23380:          10, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   23381:           { 12,   10, 3,25, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23382:             "\x2a\x1c\x41\x60\xf1\x51\x60\xf2\x42\x60\xf1\x32\x72" }  },
                   23383:       /* --- pixel bitmap for cmmib160 char#29 \upsilon --- */
                   23384:       {  29,82649,                      /* character number, location */
                   23385:          10, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   23386:           { 12,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23387:             "\x0c\xac\xc1\x19\x9c\x81\x0c\xc4\x40\x0c\xc4\x20\x0c"
                   23388:             "\x01\x0f" }  },
                   23389:       /* --- pixel bitmap for cmmib160 char#30 \phi --- */
                   23390:       {  30,83543,                      /* character number, location */
                   23391:          15, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   23392:           { 14,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23393:             "\x00\x02\x80\x00\x20\x00\x04\x00\x01\xf8\x83\x91\x31"
                   23394:             "\xc2\x86\xf0\x20\x3c\x08\x0f\xc1\x42\x98\x91\x83\x3f"
                   23395:             "\x80\x00\x20\x00\x08\x00\x02\x00" }  },
                   23396:       /* --- pixel bitmap for cmmib160 char#31 \chi --- */
                   23397:       {  31,84604,                      /* character number, location */
                   23398:          10, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   23399:           { 14,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23400:             "\x0e\x60\x06\x84\x83\xc0\x10\x70\x02\x58\x00\x0e\x00"
                   23401:             "\x03\xe0\x01\x64\x80\x38\x10\x0c\x02\x57\x00\x07" }  },
                   23402:       /* --- pixel bitmap for cmmib160 char#32 \psi --- */
                   23403:       {  32,85661,                      /* character number, location */
                   23404:          15, 2,   -4, 2,      /* topleft row,col, and botleft row,col */
                   23405:           { 15,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23406:             "\x00\x04\x00\x02\x80\x00\x40\x00\x20\x60\x10\x6b\x84"
                   23407:             "\x33\xc2\x19\x41\x86\x10\x23\x88\x11\xc2\x88\xc0\x24"
                   23408:             "\xc0\x0f\x80\x00\x40\x00\x20\x00\x08\x00" }  },
                   23409:       /* --- pixel bitmap for cmmib160 char#33 \omega --- */
                   23410:       {  33,86760,                      /* character number, location */
                   23411:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   23412:           { 15,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23413:             "\x0c\x60\x02\xb0\x00\x58\x10\x1c\x0c\x0a\x06\x05\xc3"
                   23414:             "\xc6\x33\xbe\x0f\x8e\x03" }  },
                   23415:       /* --- pixel bitmap for cmmib160 char#34 \varepsilon --- */
                   23416:       {  34,87735,                      /* character number, location */
                   23417:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   23418:           { 10,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23419:             "\xf8\xf1\x6f\x90\x00\x7e\xe8\x11\x40\x40\xff\xf0\x01" }  },
                   23420:       /* --- pixel bitmap for cmmib160 char#35 \vartheta --- */
                   23421:       {  35,88696,                      /* character number, location */
                   23422:          15, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   23423:           { 13,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23424:             "\x80\x07\x88\x81\x30\x10\x04\xc2\x9c\x58\xe6\xcb\xe0"
                   23425:             "\x19\x8c\xc1\x30\x18\x06\xc1\x30\x18\x03\x1e\x00" }  },
                   23426:       /* --- pixel bitmap for cmmib160 char#36 \varpi --- */
                   23427:       {  36,89895,                      /* character number, location */
                   23428:          10, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   23429:           { 20,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23430:             "\xfc\xff\xef\xff\xff\x11\x00\x82\x00\x20\x08\x02\x42"
                   23431:             "\x20\x20\x04\x07\x43\x58\x18\xfc\xfc\x80\x83\x07" }  },
                   23432:       /* --- pixel bitmap for cmmib160 char#37 \varrho --- */
                   23433:       {  37,90796,                      /* character number, location */
                   23434:          10, 2,   -4, 2,      /* topleft row,col, and botleft row,col */
                   23435:           { 11,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23436:             "\xe0\xc3\x30\x82\x19\x68\x60\x03\x1b\xd8\x60\x85\xc9"
                   23437:             "\x47\x00\x02\xf0\x1f\xff\x00" }  },
                   23438:       /* --- pixel bitmap for cmmib160 char#38 \varsigma --- */
                   23439:       {  38,91617,                      /* character number, location */
                   23440:          10, 0,   -2, 0,      /* topleft row,col, and botleft row,col */
                   23441:           { 10,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23442:             "\xf0\x73\x68\x80\x01\x07\x18\xe0\x01\x1f\xf0\x00\x03"
                   23443:             "\x0c\x1c" }  },
                   23444:       /* --- pixel bitmap for cmmib160 char#39 \varphi --- */
                   23445:       {  39,92548,                      /* character number, location */
                   23446:          10, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   23447:           { 14,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23448:             "\x04\x1c\xc1\x2f\x18\x0a\x82\x41\x60\x10\x18\x02\x99"
                   23449:             "\x70\xfc\x07\xfc\x00\x03\xc0\x00\x18\x00\x06\x00" }  },
                   23450:       /* --- pixel bitmap for cmmib160 char#40 \bfleftharpoonup --- */
                   23451:       {  40,108166,                     /* character number, location */
                   23452:          12, 1,    5, 1,      /* topleft row,col, and botleft row,col */
                   23453:           { 23,    7, 3,28, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23454:             "\xf1\x52\xe0\x20\x42\xe0\x63\xe0\x53\xe0\x5e\x0e\x0e"
                   23455:             "\x03" }  },
                   23456:       /* --- pixel bitmap for cmmib160 char#41 \bfleftharpoondown --- */
                   23457:       {  41,109194,                     /* character number, location */
                   23458:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   23459:           { 23,    7, 3,29, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23460:             "\x0e\x09\x1e\x08\x23\xe0\x73\xe0\x72\xe0\x30\xf1\x52"
                   23461:             "\xe0\x22" }  },
                   23462:       /* --- pixel bitmap for cmmib160 char#42 \bfrightharpoonup --- */
                   23463:       {  42,110220,                     /* character number, location */
                   23464:          12, 1,    5, 1,      /* topleft row,col, and botleft row,col */
                   23465:           { 23,    7, 3,26, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23466:             "\xf1\xe0\x22\x50\xe0\x32\xe0\x73\xe0\x73\x2f\x1e\x09" }  },
                   23467:       /* --- pixel bitmap for cmmib160 char#43 \bfrightharpoondown --- */
                   23468:       {  43,111249,                     /* character number, location */
                   23469:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   23470:           { 23,    7, 3,27, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23471:             "\xf1\x0e\x09\xe0\x43\xe0\x53\xe0\x62\x40\xf1\xe0\x22"
                   23472:             "\x50" }  },
                   23473:       /* --- pixel bitmap for cmmib160 char#44 ` --- */
                   23474:       {  44,111670,                     /* character number, location */
                   23475:          13, 1,    5, 1,      /* topleft row,col, and botleft row,col */
                   23476:           {  5,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23477:             "\xd8\x9f\x31\x8e\xc7" }  },
                   23478:       /* --- pixel bitmap for cmmib160 char#45 ' --- */
                   23479:       {  45,112094,                     /* character number, location */
                   23480:          13, 1,    5, 1,      /* topleft row,col, and botleft row,col */
                   23481:           {  5,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23482:             "\xe3\x71\x8c\xf9\x1b" }  },
                   23483:       /* --- pixel bitmap for cmmib160 char#46 \triangleright --- */
                   23484:       {  46,112635,                     /* character number, location */
                   23485:          13, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
                   23486:           { 13,   14, 3,43, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23487:             "\x02\xb4\x96\x72\x23\x62\x34\x42\x54\x2f\x12\x74\x02"
                   23488:             "\x54\x22\x34\x42\x23\x66\x74\x92\xb6" }  },
                   23489:       /* --- pixel bitmap for cmmib160 char#47 \triangleleft --- */
                   23490:       {  47,113203,                     /* character number, location */
                   23491:          13, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
                   23492:           { 13,   14, 3,42, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23493:             "\xb2\x94\x76\x54\x22\x43\x42\x24\x52\x0f\x14\x72\x24"
                   23494:             "\x52\x43\x42\x54\x22\x76\x94\xb2" }  },
                   23495:       /* --- pixel bitmap for cmmib160 char#48 \0 --- */
                   23496:       {  48,98787,                      /* character number, location */
                   23497:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   23498:           { 11,   10, 3,19, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23499:             "\x27\x32\x52\x1f\x52\x72\x12\x52\x37\x21" }  },
                   23500:       /* --- pixel bitmap for cmmib160 char#49 \1 --- */
                   23501:       {  49,99550,                      /* character number, location */
                   23502:          10, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   23503:           {  8,   10, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23504:             "\x41\x35\x30\xf6\x32\x38" }  },
                   23505:       /* --- pixel bitmap for cmmib160 char#50 \2 --- */
                   23506:       {  50,100516,                     /* character number, location */
                   23507:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   23508:           { 11,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23509:             "\xfe\x09\xd8\x80\x01\x0c\x30\xc0\x80\x11\xff\xfe\xfb"
                   23510:             "\x1f" }  },
                   23511:       /* --- pixel bitmap for cmmib160 char#51 \3 --- */
                   23512:       {  51,101537,                     /* character number, location */
                   23513:          10, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   23514:           { 11,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23515:             "\xf8\x30\x8c\xe1\x08\x07\x38\xe0\xe0\x03\x70\x00\x07"
                   23516:             "\xf8\xc1\x0f\x2e\x38\x7e\x00" }  },
                   23517:       /* --- pixel bitmap for cmmib160 char#52 \4 --- */
                   23518:       {  52,102460,                     /* character number, location */
                   23519:          10, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   23520:           { 11,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23521:             "\x80\x01\x0e\x70\x40\x03\x19\xc4\x10\xc6\x30\x83\xf9"
                   23522:             "\x3f\x60\x00\x03\x18\xf8\x03" }  },
                   23523:       /* --- pixel bitmap for cmmib160 char#53 \5 --- */
                   23524:       {  53,103495,                     /* character number, location */
                   23525:          10, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   23526:           { 11,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23527:             "\x04\xe3\x0f\x3f\x28\x40\x00\x7a\x30\x8e\x60\x00\x07"
                   23528:             "\xf8\xc0\x07\x26\x18\x7e\x00" }  },
                   23529:       /* --- pixel bitmap for cmmib160 char#54 \6 --- */
                   23530:       {  54,104390,                     /* character number, location */
                   23531:          14, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   23532:           { 11,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23533:             "\xf0\xc1\x18\xc1\x0c\x30\x80\x79\x3c\x6c\x40\x03\x1e"
                   23534:             "\xb0\x80\x0d\xc4\x30\x7c\x00" }  },
                   23535:       /* --- pixel bitmap for cmmib160 char#55 \7 --- */
                   23536:       {  55,105291,                     /* character number, location */
                   23537:          11, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   23538:           { 12,   15, 3,31, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23539:             "\x11\xbb\x1a\x11\x81\x21\x71\xa1\xa2\xa1\xa2\xa1\x60"
                   23540:             "\xf4\x42\x62" }  },
                   23541:       /* --- pixel bitmap for cmmib160 char#56 \8 --- */
                   23542:       {  56,106210,                     /* character number, location */
                   23543:          14, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   23544:           { 11,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23545:             "\xf8\x20\x8c\xc1\x0c\xe6\x31\xfe\xe0\x87\x7f\xc6\x1f"
                   23546:             "\xf8\x80\x07\x6c\x30\x7e\x00" }  },
                   23547:       /* --- pixel bitmap for cmmib160 char#57 \9 --- */
                   23548:       {  57,107107,                     /* character number, location */
                   23549:          10, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   23550:           { 11,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23551:             "\xf8\x30\x88\xc0\x06\x3c\xe0\x01\x0b\xd8\xf0\x78\x06"
                   23552:             "\x30\xc0\x0c\x66\x18\x3e\x00" }  },
                   23553:       /* --- pixel bitmap for cmmib160 char#58 . --- */
                   23554:       {  58,113700,                     /* character number, location */
                   23555:           3, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   23556:           {  3,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23557:             "\xba\x00" }  },
                   23558:       /* --- pixel bitmap for cmmib160 char#59 , --- */
                   23559:       {  59,114261,                     /* character number, location */
                   23560:           3, 2,   -4, 2,      /* topleft row,col, and botleft row,col */
                   23561:           {  3,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23562:             "\xba\x49\x05" }  },
                   23563:       /* --- pixel bitmap for cmmib160 char#60 < --- */
                   23564:       {  60,114921,                     /* character number, location */
                   23565:          14, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
                   23566:           { 16,   16, 3,34, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23567:             "\xe2\xc4\xa4\xa4\xa4\xa4\xa4\xaf\x14\xc0\x24\xe4\xe4"
                   23568:             "\xe4\xe4\xe4\xe2" }  },
                   23569:       /* --- pixel bitmap for cmmib160 char#61 / --- */
                   23570:       {  61,115455,                     /* character number, location */
                   23571:          17, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   23572:           { 11,   23, 3,55, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23573:             "\xf1\x92\x83\x82\x83\x82\x83\x20\xf1\x62\x30\x53\x82"
                   23574:             "\x83\x82\x83\x50\xf1\x32\x60\x23\x82\x83\x82\x83\x8f"
                   23575:             "\x12\x92" }  },
                   23576:       /* --- pixel bitmap for cmmib160 char#62 > --- */
                   23577:       {  62,116150,                     /* character number, location */
                   23578:          14, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
                   23579:           { 16,   16, 3,35, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23580:             "\x02\xe4\xe4\xe4\xe4\xe4\xe4\x20\xf1\xc4\xa4\xa4\xa4"
                   23581:             "\xa4\xa4\xa4\xc2\xe1" }  },
                   23582:       /* --- pixel bitmap for cmmib160 char#63 \star --- */
                   23583:       {  63,116859,                     /* character number, location */
                   23584:          12, 0,    1, 0,      /* topleft row,col, and botleft row,col */
                   23585:           { 13,   11, 3,29, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23586:             "\xf3\x61\x62\x41\x42\x29\x65\x93\x92\x12\x81\x31\x71"
                   23587:             "\x51\x34" }  },
                   23588:       /* --- pixel bitmap for cmmib160 char#64 \partial --- */
                   23589:       {  64,93528,                      /* character number, location */
                   23590:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   23591:           { 13,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23592:             "\xe0\x03\x82\x60\x20\x0c\x0c\x80\x01\x30\x7c\x66\xd0"
                   23593:             "\x06\x7c\x80\x0d\xb0\x01\x33\x20\x0c\x03\x3f\x00" }  },
                   23594:       /* --- pixel bitmap for cmmib160 char#65 A --- */
                   23595:       {  65, 1026,                      /* character number, location */
                   23596:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   23597:           { 17,   15, 3,52, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23598:             "\xf1\xb2\x40\xa3\xd4\xd5\xb1\x23\x30\xf1\x71\x33\x30"
                   23599:             "\x61\x43\x81\x53\x8a\x61\x73\x20\xf1\x31\x83\x26\x47" }  },
                   23600:       /* --- pixel bitmap for cmmib160 char#66 B --- */
                   23601:       {  66, 2374,                      /* character number, location */
                   23602:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   23603:           { 18,   15, 3,49, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23604:             "\x3d\x73\x63\x10\xf2\x53\x73\x43\x73\x53\x54\x6c\x63"
                   23605:             "\x73\x10\xf2\x33\x83\x10\x33\x73\x43\x73\x3d\x56" }  },
                   23606:       /* --- pixel bitmap for cmmib160 char#67 C --- */
                   23607:       {  67, 3339,                      /* character number, location */
                   23608:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   23609:           { 18,   15, 3,47, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23610:             "\x77\x22\x53\x63\x43\x92\x33\xb1\x23\xc1\x23\xef\x33"
                   23611:             "\xe0\x1f\x13\xb1\x30\x12\xa1\x63\x62\x97\x7d" }  },
                   23612:       /* --- pixel bitmap for cmmib160 char#68 D --- */
                   23613:       {  68, 4469,                      /* character number, location */
                   23614:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   23615:           { 20,   15, 3,47, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23616:             "\x3d\x93\x73\x73\x92\x10\xf1\x53\x93\xf3\x43\xa3\xf1"
                   23617:             "\x33\xa3\x10\x33\x93\x53\x83\x53\x73\x5d\x7d" }  },
                   23618:       /* --- pixel bitmap for cmmib160 char#69 E --- */
                   23619:       {  69, 5888,                      /* character number, location */
                   23620:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   23621:           { 18,   15, 3,61, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23622:             "\x3e\x01\xf1\x53\x82\x53\x91\x53\x41\x41\xf1\x43\x41"
                   23623:             "\x60\x48\xa3\x32\x60\xf1\x33\x41\x41\x20\xf1\x33\x81"
                   23624:             "\x30\x23\x73\x3e\x40" }  },
                   23625:       /* --- pixel bitmap for cmmib160 char#70 F --- */
                   23626:       {  70, 7117,                      /* character number, location */
                   23627:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   23628:           { 17,   15, 3,53, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23629:             "\x3e\xf1\x53\x72\x53\x81\x53\x41\x31\xf1\x43\x41\x50"
                   23630:             "\x48\x93\x32\x50\xf1\x33\x41\x60\xf1\x33\xb0\x23\xc8"
                   23631:             "\x90" }  },
                   23632:       /* --- pixel bitmap for cmmib160 char#71 G --- */
                   23633:       {  71, 8298,                      /* character number, location */
                   23634:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   23635:           { 18,   15, 3,53, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23636:             "\x77\x22\x53\x63\x43\x92\x33\xb1\x23\xc1\x23\xef\x13"
                   23637:             "\xe0\x13\x68\x1f\x23\x93\x30\x12\x93\x53\x63\x87\x21"
                   23638:             "\x40" }  },
                   23639:       /* --- pixel bitmap for cmmib160 char#72 H --- */
                   23640:       {  72, 9541,                      /* character number, location */
                   23641:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   23642:           { 22,   15, 3,45, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23643:             "\x38\x38\xf3\x53\x83\x30\xf1\x43\x83\x40\x4e\x83\x83"
                   23644:             "\x40\xf3\x33\x83\x50\x23\x83\x68\x38\x33" }  },
                   23645:       /* --- pixel bitmap for cmmib160 char#73 I --- */
                   23646:       {  73,10264,                      /* character number, location */
                   23647:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   23648:           { 13,   15, 3,25, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23649:             "\x49\xf3\x63\x40\xf3\x53\x50\xf3\x43\x60\x33\x79\x43" }  },
                   23650:       /* --- pixel bitmap for cmmib160 char#74 J --- */
                   23651:       {  74,11114,                      /* character number, location */
                   23652:          15, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   23653:           { 13,   15, 3,33, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23654:             "\x58\xf3\x83\x20\xf3\x73\x30\xf1\x63\x42\x43\x43\x33"
                   23655:             "\x42\x33\x65\x73" }  },
                   23656:       /* --- pixel bitmap for cmmib160 char#75 K --- */
                   23657:       {  75,12313,                      /* character number, location */
                   23658:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   23659:           { 21,   15, 3,61, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23660:             "\x38\x55\x53\x91\x83\x72\x93\x61\xb3\x42\xb3\x41\xd3"
                   23661:             "\x23\xd3\x14\xd4\x23\xb3\x43\xb3\x53\xa3\x54\x93\x63"
                   23662:             "\x83\x83\x58\x37\x30" }  },
                   23663:       /* --- pixel bitmap for cmmib160 char#76 L --- */
                   23664:       {  76,13284,                      /* character number, location */
                   23665:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   23666:           { 14,   15, 3,37, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23667:             "\x39\x20\xf3\x53\x60\xf3\x43\x70\xf1\x33\x71\xf1\x33"
                   23668:             "\x61\x10\x23\x53\x1c\x23" }  },
                   23669:       /* --- pixel bitmap for cmmib160 char#77 M --- */
                   23670:       {  77,14610,                      /* character number, location */
                   23671:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   23672:           { 26,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23673:             "\xf8\x01\xf0\x83\x0e\xe0\x01\x3a\x40\x07\xe8\x00\x1d"
                   23674:             "\xa0\x03\x72\x40\x0e\xe4\x00\x71\x90\x03\xc4\x21\x0e"
                   23675:             "\x10\x47\x38\x20\x9c\x70\x80\xe0\xc2\x01\x82\x07\x07"
                   23676:             "\x08\x0e\x1c\x10\x38\x38\xf0\x63\xf8\x07" }  },
                   23677:       /* --- pixel bitmap for cmmib160 char#78 N --- */
                   23678:       {  78,15798,                      /* character number, location */
                   23679:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   23680:           { 22,   15, 3,77, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23681:             "\x36\x76\x55\x81\x81\x13\x81\x81\x23\x71\x81\x24\x61"
                   23682:             "\x71\x43\x51\x81\x53\x41\x81\x54\x31\x81\x63\x31\x71"
                   23683:             "\x83\x11\x81\x85\x81\x94\x81\xa3\x71\xb2\x66\x91\x61" }  },
                   23684:       /* --- pixel bitmap for cmmib160 char#79 O --- */
                   23685:       {  79,16701,                      /* character number, location */
                   23686:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   23687:           { 17,   15, 3,49, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23688:             "\x77\x73\x53\x53\x82\x33\x93\x13\xa3\x12\xb3\x0f\x23"
                   23689:             "\xb3\x0f\x13\xa3\x13\x93\x23\x83\x43\x53\x87\x71" }  },
                   23690:       /* --- pixel bitmap for cmmib160 char#80 P --- */
                   23691:       {  80,17808,                      /* character number, location */
                   23692:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   23693:           { 18,   15, 3,39, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23694:             "\x3d\x73\x63\x10\xf2\x53\x73\x43\x73\x53\x63\x6a\x83"
                   23695:             "\xb0\xf3\x33\xc0\x23\xd8\xa3" }  },
                   23696:       /* --- pixel bitmap for cmmib160 char#81 Q --- */
                   23697:       {  81,18839,                      /* character number, location */
                   23698:          15, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   23699:           { 17,   19, 3,65, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23700:             "\x77\x73\x53\x53\x82\x33\x93\xf1\x13\xa3\x0f\x23\xb3"
                   23701:             "\x0f\x13\xa3\x13\x93\x23\x23\x33\x44\x34\x87\x41\xb1"
                   23702:             "\x41\x20\xf1\x95\x30\xa2\x51" }  },
                   23703:       /* --- pixel bitmap for cmmib160 char#82 R --- */
                   23704:       {  82,20156,                      /* character number, location */
                   23705:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   23706:           { 18,   15, 3,47, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23707:             "\x3c\x83\x63\x10\xf2\x53\x73\x43\x73\x53\x63\x6a\x83"
                   23708:             "\x53\x30\xf3\x33\x63\x30\x23\x73\x29\x54\x17" }  },
                   23709:       /* --- pixel bitmap for cmmib160 char#83 S --- */
                   23710:       {  83,21227,                      /* character number, location */
                   23711:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   23712:           { 15,   15, 3,47, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23713:             "\x66\x12\x51\x62\x51\x81\x42\x81\x42\xd5\xa8\x88\xa6"
                   23714:             "\xc3\xd2\x31\x92\x31\x82\x32\x72\x41\x17\x67" }  },
                   23715:       /* --- pixel bitmap for cmmib160 char#84 T --- */
                   23716:       {  84,22267,                      /* character number, location */
                   23717:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   23718:           { 17,   15, 3,35, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23719:             "\x1e\x04\x53\x51\x1f\x21\x63\x51\x10\xf3\x63\x80\xf3"
                   23720:             "\x53\x90\x43\xba\x61" }  },
                   23721:       /* --- pixel bitmap for cmmib160 char#85 U --- */
                   23722:       {  85,23289,                      /* character number, location */
                   23723:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   23724:           { 19,   15, 3,37, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23725:             "\x08\x56\xf3\x23\xa1\x30\xf3\x13\xa1\x4f\x23\xa1\x50"
                   23726:             "\x12\x91\x82\x62\xa7\x92" }  },
                   23727:       /* --- pixel bitmap for cmmib160 char#86 V --- */
                   23728:       {  86,24213,                      /* character number, location */
                   23729:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   23730:           { 18,   15, 3,61, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23731:             "\x08\x55\x23\x91\x54\x81\x63\x71\x40\xf1\x33\x61\x50"
                   23732:             "\x33\x51\x94\x31\xb3\x22\xb3\x21\xc3\x11\x90\xf1\x44"
                   23733:             "\xa0\x52\xe0\x21\xc0" }  },
                   23734:       /* --- pixel bitmap for cmmib160 char#87 W --- */
                   23735:       {  87,25598,                      /* character number, location */
                   23736:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   23737:           { 25,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23738:             "\x7f\xfc\xf1\x39\xe0\x80\x70\xe0\x81\xe0\xc0\x83\xc1"
                   23739:             "\x41\x07\x81\xc7\x0e\x01\x8e\x1c\x02\x9c\x78\x02\x38"
                   23740:             "\xe1\x02\x70\xc1\x05\xe0\x81\x07\xc0\x03\x0f\x80\x03"
                   23741:             "\x0e\x00\x07\x0c\x00\x04\x18\x00" }  },
                   23742:       /* --- pixel bitmap for cmmib160 char#88 X --- */
                   23743:       {  88,26759,                      /* character number, location */
                   23744:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   23745:           { 20,   15, 3,59, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23746:             "\x47\x27\x63\x62\xa3\x41\xc3\x31\xd4\x11\x70\xf1\x84"
                   23747:             "\x80\x93\xe0\x25\xe1\x23\xd1\x34\xb1\x53\xa1\x64\x81"
                   23748:             "\x83\x56\x47\x31" }  },
                   23749:       /* --- pixel bitmap for cmmib160 char#89 Y --- */
                   23750:       {  89,27835,                      /* character number, location */
                   23751:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   23752:           { 18,   15, 3,47, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23753:             "\x08\x55\x24\x81\x63\x71\x74\x52\x83\x42\x93\x32\xa4"
                   23754:             "\x21\xc3\x11\xd4\x90\xf3\x53\xa0\x43\xd7\x91" }  },
                   23755:       /* --- pixel bitmap for cmmib160 char#90 Z --- */
                   23756:       {  90,28926,                      /* character number, location */
                   23757:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   23758:           { 18,   15, 3,49, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23759:             "\x5d\x43\x64\x52\x64\x61\x64\x71\x54\xd4\xd4\xd4\xd3"
                   23760:             "\xe3\x61\x73\x71\x63\x81\x53\x82\x43\x82\x4e\x44" }  },
                   23761:       /* --- pixel bitmap for cmmib160 char#91 \flat --- */
                   23762:       {  91,117548,                     /* character number, location */
                   23763:          17, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   23764:           {  8,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23765:             "\x01\x01\x01\x01\x01\x01\x01\x7f\xc3\xc1\xc1\xc1\x61"
                   23766:             "\x31\x19\x07\x01" }  },
                   23767:       /* --- pixel bitmap for cmmib160 char#92 \natural --- */
                   23768:       {  92,118303,                     /* character number, location */
                   23769:          16, 2,   -4, 2,      /* topleft row,col, and botleft row,col */
                   23770:           {  6,   20, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23771:             "\x41\x10\x04\x71\xff\x8e\x61\x18\x86\x61\x18\xf7\xef"
                   23772:             "\x08\x82" }  },
                   23773:       /* --- pixel bitmap for cmmib160 char#93 \sharp --- */
                   23774:       {  93,119170,                     /* character number, location */
                   23775:          15, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   23776:           {  8,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23777:             "\x40\x42\x42\xc2\xfe\x7f\x43\x42\x42\x42\x42\x42\x42"
                   23778:             "\xc2\xfe\x7f\x43\x42\x02" }  },
                   23779:       /* --- pixel bitmap for cmmib160 char#94 \smile --- */
                   23780:       {  94,120084,                     /* character number, location */
                   23781:           9, 1,    3, 1,      /* topleft row,col, and botleft row,col */
                   23782:           { 23,    6, 3,27, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23783:             "\x01\xe0\x71\x11\xe0\x51\x32\xe0\x12\x54\x94\x8d\xd7"
                   23784:             "\x81" }  },
                   23785:       /* --- pixel bitmap for cmmib160 char#95 \frown --- */
                   23786:       {  95,120954,                     /* character number, location */
                   23787:          10, 1,    3, 1,      /* topleft row,col, and botleft row,col */
                   23788:           { 23,    7, 3,32, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23789:             "\xb1\xe0\x3b\xae\x01\x72\xd2\x51\xe0\x31\x31\xe0\x51"
                   23790:             "\x11\xe0\x71" }  },
                   23791:       /* --- pixel bitmap for cmmib160 char#96 \ell --- */
                   23792:       {  96,94294,                      /* character number, location */
                   23793:          15,-1,    0,-1,      /* topleft row,col, and botleft row,col */
                   23794:           { 11,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23795:             "\x00\x03\x24\x30\xc1\x08\x26\x18\xc1\x04\x16\x70\xc0"
                   23796:             "\x01\x06\x38\x20\x01\x18\x83\x07" }  },
                   23797:       /* --- pixel bitmap for cmmib160 char#97 a --- */
                   23798:       {  97,29862,                      /* character number, location */
                   23799:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   23800:           { 12,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23801:             "\x70\xc2\x38\x06\x63\x30\x83\x31\x18\x83\x39\x98\xe2"
                   23802:             "\xc5\x31" }  },
                   23803:       /* --- pixel bitmap for cmmib160 char#98 b --- */
                   23804:       {  98,30724,                      /* character number, location */
                   23805:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   23806:           {  9,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23807:             "\x1e\x18\x30\x60\xc0\xc0\x9e\x63\x83\x06\x07\x0f\x1e"
                   23808:             "\x3c\x4c\x0c\x0f" }  },
                   23809:       /* --- pixel bitmap for cmmib160 char#99 c --- */
                   23810:       {  99,31529,                      /* character number, location */
                   23811:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   23812:           { 10,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23813:             "\xf0\x61\x48\xb0\x01\x03\x0c\x30\xc0\x80\x86\xf1\x01" }  },
                   23814:       /* --- pixel bitmap for cmmib160 char#100 d --- */
                   23815:       { 100,32493,                      /* character number, location */
                   23816:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   23817:           { 12,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23818:             "\x00\x0f\x60\x00\x06\x60\x00\x06\x37\x8c\x63\x30\x06"
                   23819:             "\x33\x18\x83\x31\x98\x83\x29\x5e\x1c\x03" }  },
                   23820:       /* --- pixel bitmap for cmmib160 char#101 e --- */
                   23821:       { 101,33332,                      /* character number, location */
                   23822:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   23823:           { 10,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23824:             "\xf0\x30\x64\x90\x21\x7f\x0c\x30\xc0\x80\x86\xf1\x01" }  },
                   23825:       /* --- pixel bitmap for cmmib160 char#102 f --- */
                   23826:       { 102,34476,                      /* character number, location */
                   23827:          15, 0,   -4, 0,      /* topleft row,col, and botleft row,col */
                   23828:           { 13,   19, 3,49, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23829:             "\x93\x92\x21\x82\x12\xf1\x72\x40\x48\x10\xf2\x72\x40"
                   23830:             "\xf4\x62\x50\xf1\x52\x60\x11\x32\x62\x31\x84\x84" }  },
                   23831:       /* --- pixel bitmap for cmmib160 char#103 g --- */
                   23832:       { 103,35457,                      /* character number, location */
                   23833:          10, 0,   -4, 0,      /* topleft row,col, and botleft row,col */
                   23834:           { 11,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23835:             "\xe0\xc4\x38\x83\x19\x6c\x30\x83\x19\xcc\x60\xc4\xc1"
                   23836:             "\x0d\x60\x00\x23\x0c\x3f\x00" }  },
                   23837:       /* --- pixel bitmap for cmmib160 char#104 h --- */
                   23838:       { 104,36382,                      /* character number, location */
                   23839:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   23840:           { 13,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23841:             "\x3c\x00\x03\x60\x00\x0c\x80\x01\x98\x07\x8f\x61\x30"
                   23842:             "\x0c\xc6\x60\x18\x0c\x83\x69\x18\x07\xd3\xc0\x01" }  },
                   23843:       /* --- pixel bitmap for cmmib160 char#105 i --- */
                   23844:       { 105,37208,                      /* character number, location */
                   23845:          16, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   23846:           {  6,   16, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23847:             "\x30\x04\x00\x00\xe0\x64\x59\xc3\x30\xa6\x69\x31" }  },
                   23848:       /* --- pixel bitmap for cmmib160 char#106 j --- */
                   23849:       { 106,38129,                      /* character number, location */
                   23850:          16,-1,   -4,-1,      /* topleft row,col, and botleft row,col */
                   23851:           { 11,   20, 3,43, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23852:             "\xf1\x92\xf3\xb0\x63\x71\x22\x10\xf1\x41\x32\x10\xf3"
                   23853:             "\x72\x20\xf3\x62\x30\x11\x32\x54\x62" }  },
                   23854:       /* --- pixel bitmap for cmmib160 char#107 k --- */
                   23855:       { 107,39140,                      /* character number, location */
                   23856:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   23857:           { 11,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23858:             "\x3c\xc0\x00\x06\x30\x80\x01\x86\x33\x9a\xc9\x3c\xf0"
                   23859:             "\x80\x1d\x8c\x69\xcc\x61\x0d\x06" }  },
                   23860:       /* --- pixel bitmap for cmmib160 char#108 l --- */
                   23861:       { 108,39866,                      /* character number, location */
                   23862:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   23863:           {  5,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23864:             "\x9e\x31\xc6\x8c\x31\x66\x8c\x39\x97\x01" }  },
                   23865:       /* --- pixel bitmap for cmmib160 char#109 m --- */
                   23866:       { 109,41075,                      /* character number, location */
                   23867:          10, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   23868:           { 20,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23869:             "\x8e\xe7\x91\xc7\x31\x19\x0c\x93\xc1\x30\x0c\x86\xc1"
                   23870:             "\x60\x18\x0c\x86\xc9\x60\x8c\x06\xc3\x64\x30\x38" }  },
                   23871:       /* --- pixel bitmap for cmmib160 char#110 n --- */
                   23872:       { 110,42096,                      /* character number, location */
                   23873:          10, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   23874:           { 13,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23875:             "\xce\x23\xc7\x64\x98\x0c\xc3\x30\x18\x06\xc3\x64\x8c"
                   23876:             "\x86\xc9\xe0\x00" }  },
                   23877:       /* --- pixel bitmap for cmmib160 char#111 o --- */
                   23878:       { 111,42848,                      /* character number, location */
                   23879:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   23880:           { 11,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23881:             "\xf0\xc1\x10\x81\x0d\x3c\xe0\x01\x0f\x78\x60\x86\xe1"
                   23882:             "\x03" }  },
                   23883:       /* --- pixel bitmap for cmmib160 char#112 p --- */
                   23884:       { 112,43796,                      /* character number, location */
                   23885:          10, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   23886:           { 12,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23887:             "\x9c\x27\xc7\x32\x28\x83\x18\x8c\xc1\x18\x8c\x61\x1c"
                   23888:             "\xc3\x1e\x0c\xc0\x00\x06\xf0\x01" }  },
                   23889:       /* --- pixel bitmap for cmmib160 char#113 q --- */
                   23890:       { 113,44723,                      /* character number, location */
                   23891:          10, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   23892:           { 10,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23893:             "\x70\x32\x6e\xb0\xc1\x83\x0d\x36\xd8\x60\xe2\x70\x03"
                   23894:             "\x0c\x30\x60\xc0\x07" }  },
                   23895:       /* --- pixel bitmap for cmmib160 char#114 r --- */
                   23896:       { 114,45598,                      /* character number, location */
                   23897:          10, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   23898:           {  9,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23899:             "\xe6\x3a\x37\x6e\x60\xc0\x80\x01\x03\x03\x06\x00" }  },
                   23900:       /* --- pixel bitmap for cmmib160 char#115 s --- */
                   23901:       { 115,46536,                      /* character number, location */
                   23902:          10, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   23903:           {  9,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23904:             "\xf8\x08\x0a\x36\xc0\x07\x1e\xa0\x41\x41\x7c\x00" }  },
                   23905:       /* --- pixel bitmap for cmmib160 char#116 t --- */
                   23906:       { 116,47280,                      /* character number, location */
                   23907:          14, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   23908:           {  8,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23909:             "\x20\x30\x30\x30\xff\x18\x18\x18\x0c\x0c\x8c\x4c\x4c"
                   23910:             "\x38" }  },
                   23911:       /* --- pixel bitmap for cmmib160 char#117 u --- */
                   23912:       { 117,48308,                      /* character number, location */
                   23913:          10, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   23914:           { 12,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23915:             "\x06\xd4\x60\x0d\xd6\x60\x06\x63\x30\x06\x6b\xb8\xc6"
                   23916:             "\xc7\x63" }  },
                   23917:       /* --- pixel bitmap for cmmib160 char#118 v --- */
                   23918:       { 118,49185,                      /* character number, location */
                   23919:          10, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   23920:           { 10,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23921:             "\x06\x37\xdc\x70\x83\x06\x19\x64\x90\x21\x46\xf0\x00" }  },
                   23922:       /* --- pixel bitmap for cmmib160 char#119 w --- */
                   23923:       { 119,50351,                      /* character number, location */
                   23924:          10, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   23925:           { 16,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23926:             "\x0c\xc4\x1a\xc6\x19\xc6\x19\x86\x0c\x43\x0c\x43\x0c"
                   23927:             "\x43\x0c\x23\x8c\x23\x78\x1e" }  },
                   23928:       /* --- pixel bitmap for cmmib160 char#120 x --- */
                   23929:       { 120,51583,                      /* character number, location */
                   23930:          10, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   23931:           { 14,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23932:             "\x70\x1c\xe2\x4c\x18\x13\x06\xc0\x00\x30\x00\x0c\x09"
                   23933:             "\x43\xe3\x88\xe7\x01" }  },
                   23934:       /* --- pixel bitmap for cmmib160 char#121 y --- */
                   23935:       { 121,52645,                      /* character number, location */
                   23936:          10, 2,   -4, 2,      /* topleft row,col, and botleft row,col */
                   23937:           { 11,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23938:             "\x0c\xd4\x70\x86\x33\xcc\x30\x86\x31\x8c\x61\x8c\xc1"
                   23939:             "\x0f\x60\x84\x31\x06\x1f\x00" }  },
                   23940:       /* --- pixel bitmap for cmmib160 char#122 z --- */
                   23941:       { 122,53549,                      /* character number, location */
                   23942:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   23943:           { 10,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23944:             "\x38\xf2\x4f\x10\x20\x60\x40\x80\x20\x41\xfe\x85\x03" }  },
                   23945:       /* --- pixel bitmap for cmmib160 char#123 \imath --- */
                   23946:       { 123,95026,                      /* character number, location */
                   23947:          10, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   23948:           {  6,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23949:             "\x4e\x96\x35\x0c\x63\x9a\x16\x03" }  },
                   23950:       /* --- pixel bitmap for cmmib160 char#124 \jmath --- */
                   23951:       { 124,95829,                      /* character number, location */
                   23952:          10,-1,   -4,-1,      /* topleft row,col, and botleft row,col */
                   23953:           { 10,   14, 3,31, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23954:             "\x63\x61\x22\xf1\x41\x32\xf3\x72\x10\xf3\x62\x20\x11"
                   23955:             "\x32\x44\x52" }  },
                   23956:       /* --- pixel bitmap for cmmib160 char#125 \wp --- */
                   23957:       { 125,96950,                      /* character number, location */
                   23958:          10, 2,   -4, 2,      /* topleft row,col, and botleft row,col */
                   23959:           { 14,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23960:             "\x18\x00\xc1\x63\x0c\xdb\xc0\x0b\xf0\x01\x7c\x00\x1b"
                   23961:             "\x61\x4d\x4c\xe6\x91\x03\xc4\x00\x19\x80\x03\x00" }  },
                   23962:       /* --- pixel bitmap for cmmib160 char#126 \bfvec --- */
                   23963:       { 126,97580,                      /* character number, location */
                   23964:          15, 4,   11, 4,      /* topleft row,col, and botleft row,col */
                   23965:           { 11,    4, 3, 9, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23966:             "\x82\x1f\x1b\x72\x22" }  },
                   23967:       /* --- pixel bitmap for cmmib160 char#127 (noname) --- */
                   23968:       { 127,98118,                      /* character number, location */
                   23969:          14, 6,   12, 6,      /* topleft row,col, and botleft row,col */
                   23970:           { 10,    2, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23971:             "\xfe\x05\x08" }  },
                   23972:       /* --- trailer  --- */
                   23973:       { -99, -999,  0,0,0,0, { 0,0,0,0, (pixbyte *)"\0" }  }
                   23974:    } ;
                   23975: 
                   23976: 
                   23977: /* --- size=5 for .180gf ---
                   23978:  * mf '\mode=preview; mag=magstep(-14.65037297372839890542); input cmmib10'
                   23979:  * --------------------------------------------------------------------- */
                   23980: /* --- fontdef for cmmib180 --- */
                   23981: static	chardef  cmmib180[] =
                   23982:    {
                   23983:       /* --- pixel bitmap for cmmib180 char#0 \Gamma --- */
                   23984:       {   0,55047,                      /* character number, location */
                   23985:          17, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   23986:           { 19,   17, 3,39, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23987:             "\x4e\x01\x73\x72\x73\x81\xf2\x63\x91\x63\xa0\xf3\x53"
                   23988:             "\xb0\xf3\x43\xc0\x33\xda\x92" }  },
                   23989:       /* --- pixel bitmap for cmmib180 char#1 \Delta --- */
                   23990:       {   1,55958,                      /* character number, location */
                   23991:          17, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   23992:           { 21,   17, 3,70, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   23993:             "\xd2\xe0\x43\xe0\x44\xe0\x21\x13\xe0\x11\x23\xe1\x34"
                   23994:             "\xc1\x53\xb1\x63\xa2\x64\x91\x83\x81\x94\x61\xa4\x51"
                   23995:             "\xc3\x41\xd4\x2e\x05\x1e\x06\x1e\x07" }  },
                   23996:       /* --- pixel bitmap for cmmib180 char#2 \Theta --- */
                   23997:       {   2,57135,                      /* character number, location */
                   23998:          17, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   23999:           { 18,   17, 3,69, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24000:             "\x86\x93\x53\x63\x82\x43\x93\x23\xa3\x13\xc2\x13\x31"
                   24001:             "\x41\x23\x0f\x23\x36\x33\x03\x31\x41\x32\x13\xb3\x13"
                   24002:             "\xb2\x23\xa2\x43\x82\x63\x53\x97\x77" }  },
                   24003:       /* --- pixel bitmap for cmmib180 char#3 \Lambda --- */
                   24004:       {   3,58101,                      /* character number, location */
                   24005:          17, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   24006:           { 18,   17, 3,66, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24007:             "\xf1\xc2\x40\xb3\x40\xf1\xa4\x40\xf1\x91\x14\x30\x81"
                   24008:             "\x33\x30\xf1\x71\x43\x30\x61\x53\x81\x63\x81\x64\x61"
                   24009:             "\x74\x20\xf1\x31\x93\x26\x48" }  },
                   24010:       /* --- pixel bitmap for cmmib180 char#4 \Xi --- */
                   24011:       {   4,59532,                      /* character number, location */
                   24012:          17, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   24013:           { 21,   17, 3,65, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24014:             "\xf1\x4e\x03\x41\xe0\x11\x31\xe0\x11\x10\xf1\xe0\x70"
                   24015:             "\x61\x91\x40\xf1\x5b\x50\x51\x91\x50\xf2\xe0\x70\xf1"
                   24016:             "\x11\xe0\x11\x3f\x1e\x03\x48" }  },
                   24017:       /* --- pixel bitmap for cmmib180 char#5 \Pi --- */
                   24018:       {   5,60767,                      /* character number, location */
                   24019:          17, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   24020:           { 26,   17, 3,45, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24021:             "\x4e\x08\xf1\x73\xa3\x30\xf3\x63\xa3\x40\xf3\x53\xa3"
                   24022:             "\x50\xf3\x43\xa3\x60\x33\xa3\x79\x49\x42" }  },
                   24023:       /* --- pixel bitmap for cmmib180 char#6 \Sigma --- */
                   24024:       {   6,61954,                      /* character number, location */
                   24025:          17, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   24026:           { 20,   17, 3,69, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24027:             "\x4e\x02\x53\x93\x54\x92\x63\xa1\x64\x91\x73\x91\x74"
                   24028:             "\xe0\x34\xe0\x33\xe0\x32\xe0\x32\x81\x81\x91\x72\xa1"
                   24029:             "\x61\xb1\x61\xa3\x4e\x02\x3e\x02\x47" }  },
                   24030:       /* --- pixel bitmap for cmmib180 char#7 \Upsilon --- */
                   24031:       {   7,63020,                      /* character number, location */
                   24032:          17, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   24033:           { 18,   17, 3,51, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24034:             "\x34\x64\x27\x46\x11\x43\x23\x32\x62\x12\x51\x72\x12"
                   24035:             "\x60\xf1\x74\x70\xf3\x73\x80\xf3\x63\x90\x53\xc9\x71" }  },
                   24036:       /* --- pixel bitmap for cmmib180 char#8 \Phi --- */
                   24037:       {   8,64076,                      /* character number, location */
                   24038:          17, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   24039:           { 17,   17, 3,67, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24040:             "\x6a\x10\xf1\x93\x50\x83\xb9\x63\x23\x23\x23\x43\x33"
                   24041:             "\x12\x43\x43\x0f\x13\x43\x43\x03\x43\x33\x23\x23\x24"
                   24042:             "\x59\x50\xf1\x63\x80\x53\xba\x52" }  },
                   24043:       /* --- pixel bitmap for cmmib180 char#9 \Psi --- */
                   24044:       {   9,65189,                      /* character number, location */
                   24045:          17, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   24046:           { 18,   17, 3,65, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24047:             "\x69\x30\xf1\x93\x64\x43\x43\xf2\x13\x43\x33\x1f\x13"
                   24048:             "\x43\x33\x20\x12\x43\x23\x43\x33\x22\x63\x13\x13\x97"
                   24049:             "\x70\xf1\x63\x90\x53\xc9\x7a" }  },
                   24050:       /* --- pixel bitmap for cmmib180 char#10 \Omega --- */
                   24051:       {  10,66412,                      /* character number, location */
                   24052:          17, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   24053:           { 20,   17, 3,69, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24054:             "\x97\xa4\x53\x73\x92\x53\xa3\xf2\x33\xb3\x33\xa3\x43"
                   24055:             "\xa2\x53\x93\x62\x83\x72\x82\x41\x41\x72\x31\x11\x41"
                   24056:             "\x62\x41\x16\x66\x26\x57\x26\x56\x37" }  },
                   24057:       /* --- pixel bitmap for cmmib180 char#11 \alpha --- */
                   24058:       {  11,67458,                      /* character number, location */
                   24059:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   24060:           { 15,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24061:             "\xe0\x03\x1c\x27\x07\xd3\x81\xeb\xc0\x3b\xe0\x1d\x70"
                   24062:             "\x0e\x38\x06\x1c\x83\x2d\x3e\x1c" }  },
                   24063:       /* --- pixel bitmap for cmmib180 char#12 \beta --- */
                   24064:       {  12,68509,                      /* character number, location */
                   24065:          17, 1,   -5, 1,      /* topleft row,col, and botleft row,col */
                   24066:           { 14,   22, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24067:             "\x00\x0f\x20\x0c\x04\x83\xc0\x10\x30\x04\x0e\xf9\x21"
                   24068:             "\x31\x88\x1f\x02\x86\x80\x11\x70\x04\x1c\x01\x47\xe0"
                   24069:             "\x28\x1c\xf2\x81\x00\x20\x00\x04\x00\x01\x40\x00\x00" }  },
                   24070:       /* --- pixel bitmap for cmmib180 char#13 \gamma --- */
                   24071:       {  13,69436,                      /* character number, location */
                   24072:          11, 0,   -5, 0,      /* topleft row,col, and botleft row,col */
                   24073:           { 15,   16, 3,47, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24074:             "\x34\x71\x26\x51\x28\x41\x12\x53\x21\xb1\x21\x20\xf1"
                   24075:             "\xa2\x30\xf2\xa1\x40\xf2\x92\x40\xf2\x82\x52" }  },
                   24076:       /* --- pixel bitmap for cmmib180 char#14 \delta --- */
                   24077:       {  14,70389,                      /* character number, location */
                   24078:          18, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   24079:           { 12,   18, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24080:             "\xc0\x00\x7e\x30\x0e\x03\x60\x00\x0e\xc0\x01\x3e\xb8"
                   24081:             "\xc3\x79\x8e\xe7\x70\x07\x73\x38\x87\x63\x18\xce\x80"
                   24082:             "\x07" }  },
                   24083:       /* --- pixel bitmap for cmmib180 char#15 \epsilon --- */
                   24084:       {  15,71257,                      /* character number, location */
                   24085:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   24086:           { 10,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24087:             "\xe0\xe3\xc0\x81\x03\x0e\xfc\x77\xc0\x01\x06\x30\x88"
                   24088:             "\x1f" }  },
                   24089:       /* --- pixel bitmap for cmmib180 char#16 \zeta --- */
                   24090:       {  16,72165,                      /* character number, location */
                   24091:          17, 1,   -5, 1,      /* topleft row,col, and botleft row,col */
                   24092:           { 11,   22, 3,55, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24093:             "\xf1\x61\x40\x65\x52\x31\x42\x14\x32\x91\x92\x70\xf2"
                   24094:             "\x12\x8f\x12\x9f\x13\x80\x15\x67\x57\x75\x83\x51\x22"
                   24095:             "\x73\x34" }  },
                   24096:       /* --- pixel bitmap for cmmib180 char#17 \eta --- */
                   24097:       {  17,73048,                      /* character number, location */
                   24098:          11, 2,   -5, 2,      /* topleft row,col, and botleft row,col */
                   24099:           { 13,   16, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24100:             "\x8e\xa7\x8b\xf5\xf0\x0e\xce\xc1\x1d\x9c\x83\x73\x70"
                   24101:             "\x0e\xee\xe0\x18\x1c\x80\x03\x70\x00\x07\xe0\x00\x0c" }  },
                   24102:       /* --- pixel bitmap for cmmib180 char#18 \theta --- */
                   24103:       {  18,73816,                      /* character number, location */
                   24104:          17, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   24105:           { 12,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24106:             "\xc0\x01\x23\x18\xc6\x61\x0c\xee\xe0\x0e\x7e\x70\xff"
                   24107:             "\x77\x70\x07\x37\x38\x83\x33\x1c\xc3\x60\x06\x3c\x00" }  },
                   24108:       /* --- pixel bitmap for cmmib180 char#19 \iota --- */
                   24109:       {  19,74465,                      /* character number, location */
                   24110:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   24111:           {  8,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24112:             "\x18\x1c\x1c\x1c\x1c\x0e\x0e\x8e\x47\x67\x1e" }  },
                   24113:       /* --- pixel bitmap for cmmib180 char#20 \kappa --- */
                   24114:       {  20,75399,                      /* character number, location */
                   24115:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   24116:           { 14,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24117:             "\x18\x1c\x87\xc7\x99\x71\x01\x3c\x80\xff\xe0\x70\x38"
                   24118:             "\x9c\x0e\xe7\xc1\x65\xe0\x00" }  },
                   24119:       /* --- pixel bitmap for cmmib180 char#21 \lambda --- */
                   24120:       {  21,76234,                      /* character number, location */
                   24121:          17, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   24122:           { 15,   17, 3,52, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24123:             "\x34\xd3\xc4\xc3\xc4\x50\xf1\x73\x50\x74\xc3\xc4\x92"
                   24124:             "\x13\x82\x24\x62\x43\x43\x54\x23\x73\x14\x74\x12\x93" }  },
                   24125:       /* --- pixel bitmap for cmmib180 char#22 \mu --- */
                   24126:       {  22,77272,                      /* character number, location */
                   24127:          11, 1,   -5, 1,      /* topleft row,col, and botleft row,col */
                   24128:           { 15,   16, 3,51, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24129:             "\x42\x62\x10\xf3\x33\x53\x10\xf1\x23\x53\x20\xf1\x23"
                   24130:             "\x53\x11\x14\x36\x27\x33\x10\xf1\x13\xbf\x13\xc2\xd3" }  },
                   24131:       /* --- pixel bitmap for cmmib180 char#23 \nu --- */
                   24132:       {  23,78041,                      /* character number, location */
                   24133:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   24134:           { 14,   11, 3,37, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24135:             "\x15\x62\xf2\x23\x63\x23\x53\x23\x53\x33\x52\x43\x33"
                   24136:             "\x53\x23\x53\x13\x74\xa3" }  },
                   24137:       /* --- pixel bitmap for cmmib180 char#24 \xi --- */
                   24138:       {  24,79165,                      /* character number, location */
                   24139:          17, 1,   -5, 1,      /* topleft row,col, and botleft row,col */
                   24140:           { 10,   22, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24141:             "\x40\x00\x01\x3c\x9c\xb8\x73\xc0\x01\x03\xfc\x60\x44"
                   24142:             "\x8f\x01\x03\x0c\x30\xc0\x03\x3f\xf8\x87\x3f\xf0\x80"
                   24143:             "\xc1\x03" }  },
                   24144:       /* --- pixel bitmap for cmmib180 char#25 \pi --- */
                   24145:       {  25,80113,                      /* character number, location */
                   24146:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   24147:           { 15,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24148:             "\xfc\x7f\xff\xbf\xff\x3f\x44\x00\x23\x80\x11\xe0\x1c"
                   24149:             "\x30\x0e\x1c\x0f\x0e\x07\x83\x01" }  },
                   24150:       /* --- pixel bitmap for cmmib180 char#26 \rho --- */
                   24151:       {  26,80951,                      /* character number, location */
                   24152:          11, 1,   -5, 1,      /* topleft row,col, and botleft row,col */
                   24153:           { 14,   16, 3,51, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24154:             "\x74\x82\x33\x52\x52\x10\xf1\x33\x53\xf2\x23\x53\x10"
                   24155:             "\x23\x43\x34\x33\x43\x14\x50\xf1\x13\xaf\x13\xb2\xc2" }  },
                   24156:       /* --- pixel bitmap for cmmib180 char#27 \sigma --- */
                   24157:       {  27,81855,                      /* character number, location */
                   24158:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   24159:           { 16,   11, 3,31, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24160:             "\x5a\x4d\x2d\x23\x43\x63\x52\x5f\x23\x53\x53\x43\x72"
                   24161:             "\x33\x95\x94" }  },
                   24162:       /* --- pixel bitmap for cmmib180 char#28 \tau --- */
                   24163:       {  28,82642,                      /* character number, location */
                   24164:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   24165:           { 14,   11, 3,29, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24166:             "\x2b\x2d\x1c\x11\x51\x70\xf1\x52\x70\xf2\x43\x70\x33"
                   24167:             "\xc2\x85" }  },
                   24168:       /* --- pixel bitmap for cmmib180 char#29 \upsilon --- */
                   24169:       {  29,83527,                      /* character number, location */
                   24170:          11, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   24171:           { 13,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24172:             "\x0e\x48\x83\xe7\xf0\x0e\xcc\x01\x1d\x90\x03\x72\x20"
                   24173:             "\x0e\x84\x61\xe0\x03" }  },
                   24174:       /* --- pixel bitmap for cmmib180 char#30 \phi --- */
                   24175:       {  30,84425,                      /* character number, location */
                   24176:          17, 1,   -5, 1,      /* topleft row,col, and botleft row,col */
                   24177:           { 16,   22, 3,79, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24178:             "\xf2\xa1\x50\xf2\x91\x60\x66\x73\x21\x32\x43\x31\x33"
                   24179:             "\x23\x41\x42\x23\x41\x43\x0f\x13\x41\x43\x13\x41\x42"
                   24180:             "\x32\x41\x32\x52\x21\x23\x77\x60\xf1\x61\x90\xf2\x51"
                   24181:             "\xa2" }  },
                   24182:       /* --- pixel bitmap for cmmib180 char#31 \chi --- */
                   24183:       {  31,85496,                      /* character number, location */
                   24184:          11, 0,   -5, 0,      /* topleft row,col, and botleft row,col */
                   24185:           { 16,   16, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24186:             "\x3c\x80\xf2\x40\xe0\x20\xe0\x11\xc0\x09\xc0\x05\xc0"
                   24187:             "\x03\x80\x03\x80\x03\xc0\x03\xa0\x07\x10\x07\x08\x07"
                   24188:             "\x04\x0f\x02\x5e\x01\x3c" }  },
                   24189:       /* --- pixel bitmap for cmmib180 char#32 \psi --- */
                   24190:       {  32,86559,                      /* character number, location */
                   24191:          17, 2,   -5, 2,      /* topleft row,col, and botleft row,col */
                   24192:           { 16,   22, 3,83, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24193:             "\xf1\xb1\x40\xf3\xa1\x50\x13\x51\x41\x21\x12\x41\x34"
                   24194:             "\x23\x31\x34\x13\x41\x42\x23\x31\x61\xf1\x13\x41\x51"
                   24195:             "\x10\x13\x41\x41\x33\x31\x41\x53\x21\x22\x86\xd1\x80"
                   24196:             "\xf3\x61\x91" }  },
                   24197:       /* --- pixel bitmap for cmmib180 char#33 \omega --- */
                   24198:       {  33,87668,                      /* character number, location */
                   24199:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   24200:           { 16,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24201:             "\x08\x40\x04\xe0\x06\xe0\x02\xc0\x82\x81\x81\x41\x83"
                   24202:             "\x41\xe7\x73\xff\x3f\x3e\x1f\x1c\x0e" }  },
                   24203:       /* --- pixel bitmap for cmmib180 char#34 \varepsilon --- */
                   24204:       {  34,88617,                      /* character number, location */
                   24205:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   24206:           { 10,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24207:             "\xf0\xf1\x6f\xa0\x00\x7e\x18\x91\x43\x00\x01\xfb\xc7"
                   24208:             "\x07" }  },
                   24209:       /* --- pixel bitmap for cmmib180 char#35 \vartheta --- */
                   24210:       {  35,89608,                      /* character number, location */
                   24211:          17, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   24212:           { 14,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24213:             "\x00\x07\x20\x02\x88\x01\x61\x40\x38\x20\xee\x90\x77"
                   24214:             "\x78\x1d\x7c\x07\xc7\xc1\x39\x38\x0e\x8e\xc3\xe1\x30"
                   24215:             "\x38\x06\xf8\x00" }  },
                   24216:       /* --- pixel bitmap for cmmib180 char#36 \varpi --- */
                   24217:       {  36,90855,                      /* character number, location */
                   24218:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   24219:           { 22,   11, 3,55, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24220:             "\x2e\x06\xf1\x1e\x07\x01\x21\xe0\x21\x41\x71\x81\x31"
                   24221:             "\x72\x71\x41\x63\x71\x41\x55\x42\x57\x28\x56\x37\x74"
                   24222:             "\x54\x60" }  },
                   24223:       /* --- pixel bitmap for cmmib180 char#37 \varrho --- */
                   24224:       {  37,91756,                      /* character number, location */
                   24225:          11, 2,   -5, 2,      /* topleft row,col, and botleft row,col */
                   24226:           { 13,   16, 3,49, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24227:             "\x64\x72\x33\x42\x52\x10\xf1\x23\x53\xf2\x13\x53\x10"
                   24228:             "\x13\x43\x24\x33\x31\x25\x51\xc8\x59\x58\xc1\x47" }  },
                   24229:       /* --- pixel bitmap for cmmib180 char#38 \varsigma --- */
                   24230:       {  38,92581,                      /* character number, location */
                   24231:          11, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   24232:           { 10,   13, 3,31, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24233:             "\x55\x32\x41\x21\x70\xf1\x12\x73\x84\x66\x57\x55\x73"
                   24234:             "\x82\x63\x24" }  },
                   24235:       /* --- pixel bitmap for cmmib180 char#39 \varphi --- */
                   24236:       {  39,93540,                      /* character number, location */
                   24237:          11, 1,   -5, 1,      /* topleft row,col, and botleft row,col */
                   24238:           { 16,   16, 3,59, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24239:             "\x31\x64\x41\x66\x21\x67\x21\x62\x42\x11\x51\x72\x61"
                   24240:             "\x61\x11\x51\x71\x22\x31\x52\x3c\x5a\x86\x60\xf2\x42"
                   24241:             "\xa0\xf1\x33\xa3" }  },
                   24242:       /* --- pixel bitmap for cmmib180 char#40 \bfleftharpoonup --- */
                   24243:       {  40,109260,                     /* character number, location */
                   24244:          13, 2,    5, 2,      /* topleft row,col, and botleft row,col */
                   24245:           { 25,    8, 3,32, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24246:             "\xf1\x62\xe0\x30\x52\xe0\x83\xe0\x73\xe0\x73\xe0\x7e"
                   24247:             "\x0e\x0e\x07" }  },
                   24248:       /* --- pixel bitmap for cmmib180 char#41 \bfleftharpoondown --- */
                   24249:       {  41,110290,                     /* character number, location */
                   24250:           7, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   24251:           { 25,    8, 3,33, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24252:             "\x0e\x0b\x1e\x0a\x23\xe0\x93\xe0\x93\xe0\x92\xe0\x40"
                   24253:             "\xf1\x62\xe0\x33" }  },
                   24254:       /* --- pixel bitmap for cmmib180 char#42 \bfrightharpoonup --- */
                   24255:       {  42,111318,                     /* character number, location */
                   24256:          13, 2,    5, 2,      /* topleft row,col, and botleft row,col */
                   24257:           { 25,    8, 3,30, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24258:             "\xf1\xe0\x32\x60\xe0\x42\xe0\x93\xe0\x93\xe0\x93\x2f"
                   24259:             "\x1e\x0b" }  },
                   24260:       /* --- pixel bitmap for cmmib180 char#43 \bfrightharpoondown --- */
                   24261:       {  43,112349,                     /* character number, location */
                   24262:           7, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   24263:           { 25,    8, 3,31, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24264:             "\xf1\x0e\x0b\xe0\x63\xe0\x73\xe0\x73\xe0\x82\x50\xf1"
                   24265:             "\xe0\x32\x60" }  },
                   24266:       /* --- pixel bitmap for cmmib180 char#44 ` --- */
                   24267:       {  44,112772,                     /* character number, location */
                   24268:          13, 2,    5, 2,      /* topleft row,col, and botleft row,col */
                   24269:           {  4,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24270:             "\xfe\x33\x33\xef" }  },
                   24271:       /* --- pixel bitmap for cmmib180 char#45 ' --- */
                   24272:       {  45,113196,                     /* character number, location */
                   24273:          13, 2,    5, 2,      /* topleft row,col, and botleft row,col */
                   24274:           {  4,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24275:             "\xf7\xcc\xcc\x7f" }  },
                   24276:       /* --- pixel bitmap for cmmib180 char#46 \triangleright --- */
                   24277:       {  46,113737,                     /* character number, location */
                   24278:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   24279:           { 12,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24280:             "\x03\xf0\x00\x3f\x30\x0f\xc3\x33\xf0\x03\x3f\x3c\xf3"
                   24281:             "\xf0\x03\x0f\x30\x00" }  },
                   24282:       /* --- pixel bitmap for cmmib180 char#47 \triangleleft --- */
                   24283:       {  47,114297,                     /* character number, location */
                   24284:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   24285:           { 12,   12, 3,34, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24286:             "\xa2\x84\x66\x44\x22\x24\x42\x0f\x14\x62\x24\x42\x44"
                   24287:             "\x22\x66\x84\xa2" }  },
                   24288:       /* --- pixel bitmap for cmmib180 char#48 \0 --- */
                   24289:       {  48,99821,                      /* character number, location */
                   24290:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   24291:           { 12,   11, 3,27, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24292:             "\x36\x43\x43\x22\x62\x1f\x43\x63\x12\x62\x23\x43\x46"
                   24293:             "\x36" }  },
                   24294:       /* --- pixel bitmap for cmmib180 char#49 \1 --- */
                   24295:       {  49,100588,                     /* character number, location */
                   24296:          11, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   24297:           { 10,   11, 3,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24298:             "\x52\x37\x30\xf7\x43\x30\x19" }  },
                   24299:       /* --- pixel bitmap for cmmib180 char#50 \2 --- */
                   24300:       {  50,101556,                     /* character number, location */
                   24301:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   24302:           { 12,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24303:             "\xfc\xe3\x70\x0e\x4e\xe0\x00\x0e\x70\xc0\x09\x86\xf8"
                   24304:             "\xe7\x7f\xff\x07" }  },
                   24305:       /* --- pixel bitmap for cmmib180 char#51 \3 --- */
                   24306:       {  51,102583,                     /* character number, location */
                   24307:          11, 1,   -5, 1,      /* topleft row,col, and botleft row,col */
                   24308:           { 12,   16, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24309:             "\xf8\x41\x30\x0e\xe7\x70\x04\x07\x30\x80\x01\x1f\x00"
                   24310:             "\x03\x60\x00\x2e\xe0\x07\x7e\x60\x02\xc3\x1f" }  },
                   24311:       /* --- pixel bitmap for cmmib180 char#52 \4 --- */
                   24312:       {  52,103514,                     /* character number, location */
                   24313:          11, 1,   -5, 1,      /* topleft row,col, and botleft row,col */
                   24314:           { 12,   16, 3,46, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24315:             "\x82\x20\xf1\x73\x20\x64\x71\x13\x61\x23\x51\x33\x41"
                   24316:             "\x43\x32\x43\x22\x53\x2c\xf3\x73\x20\x48" }  },
                   24317:       /* --- pixel bitmap for cmmib180 char#53 \5 --- */
                   24318:       {  53,104553,                     /* character number, location */
                   24319:          11, 1,   -5, 1,      /* topleft row,col, and botleft row,col */
                   24320:           { 12,   16, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24321:             "\x04\xc6\x3f\xfc\x41\x02\x04\x40\x00\xf4\xc1\x30\x04"
                   24322:             "\x06\xe0\x00\x7e\xe0\x07\x3e\x60\x06\x83\x1f" }  },
                   24323:       /* --- pixel bitmap for cmmib180 char#54 \6 --- */
                   24324:       {  54,105454,                     /* character number, location */
                   24325:          16, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   24326:           { 12,   16, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24327:             "\xe0\x81\x61\x0c\xe7\x70\x06\x70\x00\xf7\xf1\x30\x0f"
                   24328:             "\x76\xe0\x07\x7e\xe0\x06\xee\x60\x0c\x03\x1f" }  },
                   24329:       /* --- pixel bitmap for cmmib180 char#55 \7 --- */
                   24330:       {  55,106363,                     /* character number, location */
                   24331:          12, 2,   -5, 2,      /* topleft row,col, and botleft row,col */
                   24332:           { 12,   17, 3,41, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24333:             "\x11\xbb\x1a\x29\x21\x71\x31\x61\xb1\xa1\xa2\xa1\x60"
                   24334:             "\xf1\x42\x60\xf3\x33\x60\x41\x73" }  },
                   24335:       /* --- pixel bitmap for cmmib180 char#56 \8 --- */
                   24336:       {  56,107286,                     /* character number, location */
                   24337:          16, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   24338:           { 12,   16, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24339:             "\xf8\xc1\x30\x06\x66\x60\x0e\xe6\x33\xfc\x81\x1f\xec"
                   24340:             "\x63\x78\x03\x3e\xc0\x03\x3c\x40\x06\x86\x1f" }  },
                   24341:       /* --- pixel bitmap for cmmib180 char#57 \9 --- */
                   24342:       {  57,108193,                     /* character number, location */
                   24343:          11, 1,   -5, 1,      /* topleft row,col, and botleft row,col */
                   24344:           { 12,   16, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24345:             "\xf8\xc0\x30\x06\x77\x60\x07\x7e\xe0\x07\x6e\xf0\x0c"
                   24346:             "\x8f\xef\x00\x0e\x60\x0e\xe7\x30\x84\x81\x07" }  },
                   24347:       /* --- pixel bitmap for cmmib180 char#58 . --- */
                   24348:       {  58,114786,                     /* character number, location */
                   24349:           4, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   24350:           {  4,    4, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24351:             "\xf6\x6f" }  },
                   24352:       /* --- pixel bitmap for cmmib180 char#59 , --- */
                   24353:       {  59,115349,                     /* character number, location */
                   24354:           4, 2,   -5, 2,      /* topleft row,col, and botleft row,col */
                   24355:           {  4,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24356:             "\xf6\xef\x88\x44\x02" }  },
                   24357:       /* --- pixel bitmap for cmmib180 char#60 < --- */
                   24358:       {  60,116013,                     /* character number, location */
                   24359:          15, 2,   -3, 2,      /* topleft row,col, and botleft row,col */
                   24360:           { 18,   18, 3,54, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24361:             "\xe0\x22\xe4\xc4\xc4\xc4\xc4\xc4\xc4\xcf\x14\xe0\x24"
                   24362:             "\xe0\x24\xe0\x24\xe0\x24\xe0\x24\xe0\x24\xe0\x24\xe0"
                   24363:             "\x22" }  },
                   24364:       /* --- pixel bitmap for cmmib180 char#61 / --- */
                   24365:       {  61,116551,                     /* character number, location */
                   24366:          19, 2,   -6, 2,      /* topleft row,col, and botleft row,col */
                   24367:           { 10,   25, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24368:             "\x00\x03\x0c\x38\x60\x80\x01\x07\x0c\x30\xe0\x80\x01"
                   24369:             "\x06\x1c\x30\xe0\x80\x01\x06\x1c\x30\xc0\x80\x03\x06"
                   24370:             "\x18\x70\xc0\x00\x03\x00" }  },
                   24371:       /* --- pixel bitmap for cmmib180 char#62 > --- */
                   24372:       {  62,117250,                     /* character number, location */
                   24373:          15, 2,   -3, 2,      /* topleft row,col, and botleft row,col */
                   24374:           { 18,   18, 3,55, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24375:             "\x02\xe0\x24\xe0\x24\xe0\x24\xe0\x24\xe0\x24\xe0\x24"
                   24376:             "\xe0\x24\x20\xf1\xe4\xc4\xc4\xc4\xc4\xc4\xc4\xc4\xe2"
                   24377:             "\xe0\x20" }  },
                   24378:       /* --- pixel bitmap for cmmib180 char#63 \star --- */
                   24379:       {  63,117963,                     /* character number, location */
                   24380:          13, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
                   24381:           { 15,   14, 3,43, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24382:             "\xf3\x71\x70\x63\x64\x23\x24\x2b\x67\x40\xf1\x55\x50"
                   24383:             "\x43\x13\x82\x32\x72\x52\x61\x71\x34" }  },
                   24384:       /* --- pixel bitmap for cmmib180 char#64 \partial --- */
                   24385:       {  64,94522,                      /* character number, location */
                   24386:          17, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   24387:           { 15,   17, 3,59, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24388:             "\x66\x81\x52\x61\x72\x10\xf1\x33\x72\xd2\x55\x32\x33"
                   24389:             "\x45\x23\x64\xf1\x13\x83\x0f\x13\x83\x13\x73\x32\x72"
                   24390:             "\x52\x43\x76\x63" }  },
                   24391:       /* --- pixel bitmap for cmmib180 char#65 A --- */
                   24392:       {  65, 1026,                      /* character number, location */
                   24393:          17, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   24394:           { 20,   17, 3,66, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24395:             "\xf1\xd2\x50\xc3\xe0\x24\xe0\x25\xe1\x23\x40\xf1\x91"
                   24396:             "\x33\x40\x81\x43\xb1\x54\xa1\x63\x9b\x30\xf1\x51\x83"
                   24397:             "\x30\x41\x93\x61\xa4\x26\x68" }  },
                   24398:       /* --- pixel bitmap for cmmib180 char#66 B --- */
                   24399:       {  66, 2408,                      /* character number, location */
                   24400:          17, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   24401:           { 21,   17, 3,63, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24402:             "\x4e\x01\x93\x73\x83\x83\x63\xa2\xf1\x63\x93\x63\x83"
                   24403:             "\x63\x65\x7d\x30\xf1\x53\x83\x20\xf2\x43\x93\x20\x43"
                   24404:             "\x83\x63\x83\x4e\x01\x66" }  },
                   24405:       /* --- pixel bitmap for cmmib180 char#67 C --- */
                   24406:       {  67, 3381,                      /* character number, location */
                   24407:          17, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   24408:           { 19,   17, 3,59, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24409:             "\x87\x31\x63\x61\x12\x43\x93\x33\xb1\x33\xc1\x23\xd1"
                   24410:             "\x23\xe0\x1f\x33\xe0\x2f\x13\xc1\x30\x12\xb1\x53\x91"
                   24411:             "\x73\x62\xa7\x8e" }  },
                   24412:       /* --- pixel bitmap for cmmib180 char#68 D --- */
                   24413:       {  68, 4521,                      /* character number, location */
                   24414:          17, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   24415:           { 22,   17, 3,57, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24416:             "\x4e\x01\xa3\x73\x93\x92\x73\xa3\xf2\x63\xb2\xf2\x53"
                   24417:             "\xb3\x53\xb2\x53\xb3\x53\xb2\x63\xa3\x63\x93\x63\x83"
                   24418:             "\x5e\x01\x77" }  },
                   24419:       /* --- pixel bitmap for cmmib180 char#69 E --- */
                   24420:       {  69, 5948,                      /* character number, location */
                   24421:          17, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   24422:           { 20,   17, 3,71, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24423:             "\x4e\x02\x73\x82\x73\x91\xf1\x63\xa1\x63\x51\x41\x63"
                   24424:             "\x51\xa3\x51\xb9\xb3\x42\xb3\x51\x51\x43\x51\x51\x53"
                   24425:             "\xb1\x53\xa1\x63\x92\x53\x93\x2e\x03\x30" }  },
                   24426:       /* --- pixel bitmap for cmmib180 char#70 F --- */
                   24427:       {  70, 7185,                      /* character number, location */
                   24428:          17, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   24429:           { 20,   17, 3,59, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24430:             "\x4e\x02\x73\x82\x73\x91\xf1\x63\xa1\x63\x51\x41\x63"
                   24431:             "\x51\xa3\x51\xb9\xb3\x42\xb3\x51\xa3\x51\x70\xf2\x43"
                   24432:             "\xd0\x33\xea\xa3" }  },
                   24433:       /* --- pixel bitmap for cmmib180 char#71 G --- */
                   24434:       {  71, 8372,                      /* character number, location */
                   24435:          17, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   24436:           { 20,   17, 3,67, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24437:             "\x87\x41\x63\x62\x12\x43\xa3\x33\xc1\x33\xd1\x23\xe1"
                   24438:             "\x23\xe0\x2f\x13\xe0\x33\x8c\xc3\x2f\x13\xb3\x30\x12"
                   24439:             "\xb3\x52\xa3\x62\x74\x97\x31\x4e" }  },
                   24440:       /* --- pixel bitmap for cmmib180 char#72 H --- */
                   24441:       {  72, 9625,                      /* character number, location */
                   24442:          17, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   24443:           { 26,   17, 3,55, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24444:             "\x49\x49\xf1\x73\xa3\x30\xf3\x63\xa3\x40\x53\xa3\xae"
                   24445:             "\x02\x50\xf1\x53\xa3\x50\xf3\x43\xa3\x60\x33\xa3\x79"
                   24446:             "\x49\x42" }  },
                   24447:       /* --- pixel bitmap for cmmib180 char#73 I --- */
                   24448:       {  73,10356,                      /* character number, location */
                   24449:          17, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   24450:           { 13,   17, 3,31, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24451:             "\x49\xf1\x73\x30\xf3\x63\x40\xf3\x53\x50\xf3\x43\x60"
                   24452:             "\x33\x79\x41" }  },
                   24453:       /* --- pixel bitmap for cmmib180 char#74 J --- */
                   24454:       {  74,11210,                      /* character number, location */
                   24455:          17, 3,    0, 3,      /* topleft row,col, and botleft row,col */
                   24456:           { 15,   17, 3,39, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24457:             "\x69\xf1\xa3\x20\xf3\x93\x30\xf3\x83\x40\xf1\x73\x53"
                   24458:             "\x43\x53\x33\x62\x42\x86\x83" }  },
                   24459:       /* --- pixel bitmap for cmmib180 char#75 K --- */
                   24460:       {  75,12439,                      /* character number, location */
                   24461:          17, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   24462:           { 25,   17, 3,83, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24463:             "\x49\x66\x73\xa2\xa3\x91\xb3\x82\xc3\x71\xe3\x52\xe0"
                   24464:             "\x13\x41\xe0\x23\x33\xe0\x23\x21\x13\xe0\x14\x33\xe0"
                   24465:             "\x13\x53\xd3\x63\x90\xf1\x43\x73\x80\x43\x83\xa3\xa3"
                   24466:             "\x69\x48\x40" }  },
                   24467:       /* --- pixel bitmap for cmmib180 char#76 L --- */
                   24468:       {  76,13420,                      /* character number, location */
                   24469:          17, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   24470:           { 17,   17, 3,45, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24471:             "\x4a\x30\xf1\x73\x70\xf3\x63\x80\xf3\x53\x90\xf1\x43"
                   24472:             "\x91\x43\x81\x53\x72\x43\x64\x1e\x01\x20" }  },
                   24473:       /* --- pixel bitmap for cmmib180 char#77 M --- */
                   24474:       {  77,14750,                      /* character number, location */
                   24475:          17, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   24476:           { 31,   17, 3,117, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   24477:             "\x46\xe7\x73\xe4\xa3\xd1\x13\x91\x22\xb1\x13\x40\xf1"
                   24478:             "\x61\x22\xa1\x23\x40\x61\x22\x91\x33\x91\x42\x71\x33"
                   24479:             "\x50\xf1\x51\x42\x61\x43\x50\x51\x42\x51\x53\x91\x62"
                   24480:             "\x31\x53\x60\xf1\x41\x62\x21\x63\x60\x41\x62\x11\x73"
                   24481:             "\x91\x82\x73\x77\x51\x59\x40" }  },
                   24482:       /* --- pixel bitmap for cmmib180 char#78 N --- */
                   24483:       {  78,15980,                      /* character number, location */
                   24484:          17, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   24485:           { 26,   17, 3,87, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24486:             "\x46\x97\x74\xb1\xa5\xa1\x91\x23\x91\xa1\x33\x81\x40"
                   24487:             "\xf1\x61\x43\x71\x40\x51\x63\x51\x50\xf1\x51\x73\x41"
                   24488:             "\x50\x51\x83\x31\x91\xa3\x11\xa1\xa5\xa1\xb4\xa1\xc3"
                   24489:             "\x91\xd2\x77\xb1\x71" }  },
                   24490:       /* --- pixel bitmap for cmmib180 char#79 O --- */
                   24491:       {  79,16867,                      /* character number, location */
                   24492:          17, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   24493:           { 18,   17, 3,55, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24494:             "\x86\x93\x53\x63\x82\x42\xa3\x23\xb2\xf1\x13\xc2\x0f"
                   24495:             "\x23\xc3\x0f\x13\xb3\x13\xa3\x23\xa2\x43\x82\x63\x53"
                   24496:             "\x97\x71" }  },
                   24497:       /* --- pixel bitmap for cmmib180 char#80 P --- */
                   24498:       {  80,17982,                      /* character number, location */
                   24499:          17, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   24500:           { 21,   17, 3,49, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24501:             "\x4e\x01\x93\x73\x83\x83\xf2\x63\x93\x63\x83\x63\x83"
                   24502:             "\x7c\x40\xf1\x53\xd0\xf3\x43\xe0\x33\xe0\x19\xc3" }  },
                   24503:       /* --- pixel bitmap for cmmib180 char#81 Q --- */
                   24504:       {  81,19019,                      /* character number, location */
                   24505:          17, 2,   -5, 2,      /* topleft row,col, and botleft row,col */
                   24506:           { 18,   22, 3,81, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24507:             "\x86\x93\x53\x63\x82\x43\x93\x23\xa3\x13\xc2\x13\xb3"
                   24508:             "\x0f\x23\xc3\x03\xc2\x13\xb3\x13\xb2\x23\x33\x42\x43"
                   24509:             "\x11\x31\x22\x63\x44\x97\x41\xb2\x41\xb2\x31\xc6\xc5"
                   24510:             "\xe3\x52" }  },
                   24511:       /* --- pixel bitmap for cmmib180 char#82 R --- */
                   24512:       {  82,20378,                      /* character number, location */
                   24513:          17, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   24514:           { 22,   17, 3,65, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24515:             "\x4e\xb3\x63\xa3\x73\x20\xf2\x63\x83\x20\x63\x73\x83"
                   24516:             "\x73\x9b\x60\xf1\x53\x63\x50\xf2\x43\x73\x50\x43\x73"
                   24517:             "\x41\x33\x83\x31\x19\x65\x21" }  },
                   24518:       /* --- pixel bitmap for cmmib180 char#83 S --- */
                   24519:       {  83,21459,                      /* character number, location */
                   24520:          17, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   24521:           { 16,   17, 3,59, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24522:             "\x76\x21\x52\x63\x42\x82\x41\x91\x42\x91\x43\xd5\xc7"
                   24523:             "\xa8\xa6\x30\xf1\xb2\x30\xf1\x11\x92\x30\x11\x82\x43"
                   24524:             "\x62\x51\x26\x71" }  },
                   24525:       /* --- pixel bitmap for cmmib180 char#84 T --- */
                   24526:       {  84,22533,                      /* character number, location */
                   24527:          17, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   24528:           { 18,   17, 3,51, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24529:             "\x2e\x02\x22\x53\x42\x11\x73\x51\x11\x63\x61\x0f\x11"
                   24530:             "\x73\x61\x83\x70\xf3\x73\x80\xf3\x63\x90\x53\xbb\x63" }  },
                   24531:       /* --- pixel bitmap for cmmib180 char#85 U --- */
                   24532:       {  85,23563,                      /* character number, location */
                   24533:          17, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   24534:           { 22,   17, 3,47, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24535:             "\x09\x67\xf1\x33\xc1\x30\xf3\x23\xc1\x40\xf3\x13\xc1"
                   24536:             "\x5f\x13\xc1\x63\xb1\x83\x91\xa3\x62\xd7\xb3" }  },
                   24537:       /* --- pixel bitmap for cmmib180 char#86 V --- */
                   24538:       {  86,24521,                      /* character number, location */
                   24539:          17, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   24540:           { 20,   17, 3,69, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24541:             "\x08\x66\x23\xc1\x44\xa1\x63\x91\x40\xf1\x33\x81\x50"
                   24542:             "\x33\x71\x94\x51\xb3\x51\xb3\x41\xc3\x31\xd3\x21\xe4"
                   24543:             "\x11\xe0\x14\xb0\xf1\x53\xc0\x52\xd1" }  },
                   24544:       /* --- pixel bitmap for cmmib180 char#87 W --- */
                   24545:       {  87,25914,                      /* character number, location */
                   24546:          17, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   24547:           { 28,   17, 3,109, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   24548:             "\x08\x38\x36\x23\x83\x91\x43\x83\x81\x53\x74\x81\x53"
                   24549:             "\x74\x71\x63\x61\x23\x51\x83\x51\x23\x51\x83\x41\x33"
                   24550:             "\x41\x60\xf1\x33\x31\x43\x31\x70\x33\x21\x53\x21\xb3"
                   24551:             "\x11\x63\x21\xb3\x11\x65\xc4\x83\xe3\x83\xe2\x92\xe0"
                   24552:             "\x11\xa1\xc3" }  },
                   24553:       /* --- pixel bitmap for cmmib180 char#88 X --- */
                   24554:       {  88,27091,                      /* character number, location */
                   24555:          17, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   24556:           { 23,   17, 3,75, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24557:             "\x49\x37\x73\x82\xb3\x61\xd3\x51\xe0\x13\x31\xe0\x24"
                   24558:             "\x11\x80\xf1\xa4\x90\xb3\xe0\x55\xe0\x31\x23\xe0\x21"
                   24559:             "\x34\xe1\x53\xd1\x64\xb1\x83\x92\x94\x57\x58\x31" }  },
                   24560:       /* --- pixel bitmap for cmmib180 char#89 Y --- */
                   24561:       {  89,28201,                      /* character number, location */
                   24562:          17, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   24563:           { 21,   17, 3,65, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24564:             "\x08\x76\x24\xa2\x63\x92\x74\x81\x93\x71\xa4\x51\xc3"
                   24565:             "\x41\xd4\x21\xe0\x13\x11\xe0\x24\xe0\x42\xc0\xf2\x63"
                   24566:             "\xc0\x62\xe0\x43\xe0\x19\xa3" }  },
                   24567:       /* --- pixel bitmap for cmmib180 char#90 Z --- */
                   24568:       {  90,29298,                      /* character number, location */
                   24569:          17, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   24570:           { 17,   17, 3,57, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24571:             "\x4d\x43\x63\x51\x73\x52\x64\x51\x73\x61\x63\xd3\xd3"
                   24572:             "\xd3\xd3\xd3\x71\x54\x61\x63\x71\x53\x81\x43\x82\x33"
                   24573:             "\x73\x3e\x30" }  },
                   24574:       /* --- pixel bitmap for cmmib180 char#91 \flat --- */
                   24575:       {  91,118660,                     /* character number, location */
                   24576:          19, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   24577:           {  7,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24578:             "\x81\x40\x20\x10\x08\x04\x02\xbf\x79\x3c\x1e\xcf\xe5"
                   24579:             "\x3a\x8d\x43\x00" }  },
                   24580:       /* --- pixel bitmap for cmmib180 char#92 \natural --- */
                   24581:       {  92,119421,                     /* character number, location */
                   24582:          18, 2,   -5, 2,      /* topleft row,col, and botleft row,col */
                   24583:           {  7,   23, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24584:             "\x81\x40\x20\x10\xce\xff\xff\xcf\x61\x30\x18\x0c\x06"
                   24585:             "\xc3\xf9\xff\xff\x39\x04\x02\x01" }  },
                   24586:       /* --- pixel bitmap for cmmib180 char#93 \sharp --- */
                   24587:       {  93,120292,                     /* character number, location */
                   24588:          17, 2,   -5, 2,      /* topleft row,col, and botleft row,col */
                   24589:           {  7,   22, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24590:             "\x20\x90\x48\xac\xf7\xff\x5e\x23\x91\x48\x24\x12\x89"
                   24591:             "\xf5\xfe\xdf\x6b\x24\x10\x00" }  },
                   24592:       /* --- pixel bitmap for cmmib180 char#94 \smile --- */
                   24593:       {  94,121214,                     /* character number, location */
                   24594:          10, 2,    3, 2,      /* topleft row,col, and botleft row,col */
                   24595:           { 25,    7, 3,35, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24596:             "\x01\xe0\x91\x11\xe0\x71\x31\xe0\x51\x52\xe0\x12\x74"
                   24597:             "\x94\xad\xe0\x17\x91" }  },
                   24598:       /* --- pixel bitmap for cmmib180 char#95 \frown --- */
                   24599:       {  95,122088,                     /* character number, location */
                   24600:          11, 2,    3, 2,      /* topleft row,col, and botleft row,col */
                   24601:           { 25,    8, 3,38, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24602:             "\xc1\xe0\x5b\xce\x01\x92\xd2\x71\xe0\x31\x51\xe0\x51"
                   24603:             "\x31\xe0\x71\x11\xe0\x91" }  },
                   24604:       /* --- pixel bitmap for cmmib180 char#96 \ell --- */
                   24605:       {  96,95296,                      /* character number, location */
                   24606:          17, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   24607:           { 12,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24608:             "\x00\x03\x48\xc0\x08\x46\x70\x04\x27\x70\x82\x13\xb8"
                   24609:             "\x80\x07\x38\x80\x01\x1c\xa0\x01\x19\x00\x61\xe0\x01" }  },
                   24610:       /* --- pixel bitmap for cmmib180 char#97 a --- */
                   24611:       {  97,30268,                      /* character number, location */
                   24612:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   24613:           { 13,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24614:             "\xe0\x0d\xc3\x31\x38\x07\xe7\xe0\x0e\xce\xc1\x39\xb8"
                   24615:             "\x07\xd7\xf0\xf1\x39" }  },
                   24616:       /* --- pixel bitmap for cmmib180 char#98 b --- */
                   24617:       {  98,31132,                      /* character number, location */
                   24618:          17, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   24619:           { 12,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24620:             "\x3e\x80\x03\x38\xc0\x01\x1c\xc0\x01\xfc\xe1\x71\x0e"
                   24621:             "\xe6\xe0\x0e\x7e\x70\x07\x77\x70\x87\x63\x1c\x7c\x00" }  },
                   24622:       /* --- pixel bitmap for cmmib180 char#99 c --- */
                   24623:       {  99,31967,                      /* character number, location */
                   24624:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   24625:           { 12,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24626:             "\xe0\x83\x63\x1c\xe7\x30\x0e\x70\x00\x07\x70\x00\x06"
                   24627:             "\xe8\x60\xf8\x01" }  },
                   24628:       /* --- pixel bitmap for cmmib180 char#100 d --- */
                   24629:       { 100,32935,                      /* character number, location */
                   24630:          17, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   24631:           { 14,   17, 3,57, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24632:             "\x95\xf1\xb3\xf2\xa3\x10\x54\x13\x42\x43\x42\x53\x20"
                   24633:             "\xf1\x13\x53\x2f\x13\x53\x3f\x13\x53\x11\x10\x12\x45"
                   24634:             "\x45\x23\x20" }  },
                   24635:       /* --- pixel bitmap for cmmib180 char#101 e --- */
                   24636:       { 101,33778,                      /* character number, location */
                   24637:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   24638:           { 12,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24639:             "\xe0\x83\x43\x1c\xe4\x40\x8e\xf3\x07\x07\x70\x00\x06"
                   24640:             "\xc8\x60\xf8\x01" }  },
                   24641:       /* --- pixel bitmap for cmmib180 char#102 f --- */
                   24642:       { 102,34900,                      /* character number, location */
                   24643:          17, 1,   -5, 1,      /* topleft row,col, and botleft row,col */
                   24644:           { 15,   22, 3,53, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24645:             "\xa4\xa2\x13\x83\x13\x83\x12\x93\xb3\x9a\x10\xf3\x73"
                   24646:             "\x50\xf4\x63\x60\x62\xc3\x82\x23\x73\x22\x83\x21\xa4"
                   24647:             "\xa5" }  },
                   24648:       /* --- pixel bitmap for cmmib180 char#103 g --- */
                   24649:       { 103,35891,                      /* character number, location */
                   24650:          11, 0,   -5, 0,      /* topleft row,col, and botleft row,col */
                   24651:           { 13,   16, 3,49, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24652:             "\x64\x12\x42\x43\x32\x53\xf1\x23\x53\xf3\x13\x53\x10"
                   24653:             "\x22\x43\x58\xa3\x32\x53\x23\x43\x33\x33\x66\x51" }  },
                   24654:       /* --- pixel bitmap for cmmib180 char#104 h --- */
                   24655:       { 104,36850,                      /* character number, location */
                   24656:          17, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   24657:           { 14,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24658:             "\x7c\x00\x1c\x00\x07\xe0\x00\x38\x00\x0e\x80\x7b\x70"
                   24659:             "\x31\x3c\x1c\x07\xc7\xc1\x39\x38\x0e\x8e\x83\xeb\x70"
                   24660:             "\x1e\x5c\x06\x0e" }  },
                   24661:       /* --- pixel bitmap for cmmib180 char#105 i --- */
                   24662:       { 105,37684,                      /* character number, location */
                   24663:          18, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   24664:           {  7,   18, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24665:             "\x60\x38\x0c\x00\x00\x00\x38\xba\x5c\x8e\xc3\x71\x38"
                   24666:             "\x9d\x26\x0e" }  },
                   24667:       /* --- pixel bitmap for cmmib180 char#106 j --- */
                   24668:       { 106,38635,                      /* character number, location */
                   24669:          18,-1,   -5,-1,      /* topleft row,col, and botleft row,col */
                   24670:           { 12,   23, 3,59, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24671:             "\xa2\x93\xa1\x10\xf3\xc0\x64\x71\x23\x10\xf1\x41\x33"
                   24672:             "\x10\x83\x10\xf3\x73\x20\xf2\x63\x30\x12\x33\x33\x23"
                   24673:             "\x43\x13\x64\x74" }  },
                   24674:       /* --- pixel bitmap for cmmib180 char#107 k --- */
                   24675:       { 107,39656,                      /* character number, location */
                   24676:          17, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   24677:           { 13,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24678:             "\x7c\x00\x0e\xc0\x01\x1c\x80\x03\x70\x00\x0e\xe3\xd8"
                   24679:             "\x9c\x9c\x8b\xf1\x00\xff\xe0\x38\x1c\xa7\xe3\x3c\x5c"
                   24680:             "\x06\x07" }  },
                   24681:       /* --- pixel bitmap for cmmib180 char#108 l --- */
                   24682:       { 108,40390,                      /* character number, location */
                   24683:          17, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   24684:           {  6,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24685:             "\x3e\x8e\x73\x1c\xc7\x39\x8e\xe3\x1c\xc7\x75\x3d\x0e" }  },
                   24686:       /* --- pixel bitmap for cmmib180 char#109 m --- */
                   24687:       { 109,41601,                      /* character number, location */
                   24688:          11, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   24689:           { 23,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24690:             "\x1c\x8f\x0f\x5d\x2c\x4e\x1e\x0e\x27\x07\x87\x83\x83"
                   24691:             "\xc3\xe1\xe0\x70\x70\x70\x38\x38\x38\x9c\x1c\x1c\x27"
                   24692:             "\x07\x87\x13\x03\x83\x07" }  },
                   24693:       /* --- pixel bitmap for cmmib180 char#110 n --- */
                   24694:       { 110,42632,                      /* character number, location */
                   24695:          11, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   24696:           { 15,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24697:             "\x9c\x0f\x3d\x4e\x0e\x27\x87\x83\xc3\xe1\x70\x70\x38"
                   24698:             "\x38\x9c\x1c\x27\x87\x13\x83\x07" }  },
                   24699:       /* --- pixel bitmap for cmmib180 char#111 o --- */
                   24700:       { 111,43388,                      /* character number, location */
                   24701:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   24702:           { 13,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24703:             "\xe0\x03\xc7\x70\x30\x07\xe6\xc0\x0f\xdc\x81\x3b\x30"
                   24704:             "\x06\xc7\x70\xe0\x03" }  },
                   24705:       /* --- pixel bitmap for cmmib180 char#112 p --- */
                   24706:       { 112,44340,                      /* character number, location */
                   24707:          11, 0,   -5, 0,      /* topleft row,col, and botleft row,col */
                   24708:           { 15,   16, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24709:             "\x38\x0f\x7a\x1c\x1d\x8c\x0e\x0e\x07\xc7\xc1\xe1\xe0"
                   24710:             "\x70\x70\x38\x1c\x1e\x07\xf7\x80\x03\xc0\x01\x70\x00"
                   24711:             "\x38\x00\x7e\x00" }  },
                   24712:       /* --- pixel bitmap for cmmib180 char#113 q --- */
                   24713:       { 113,45273,                      /* character number, location */
                   24714:          11, 1,   -5, 1,      /* topleft row,col, and botleft row,col */
                   24715:           { 13,   16, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24716:             "\xe0\x19\xc3\x31\x38\x07\xe7\xe0\x0e\xce\xc1\x39\x38"
                   24717:             "\x07\xc7\x70\xf0\x0f\xc0\x01\x38\x80\x03\x70\x80\x3f" }  },
                   24718:       /* --- pixel bitmap for cmmib180 char#114 r --- */
                   24719:       { 114,46126,                      /* character number, location */
                   24720:          11, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   24721:           { 11,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24722:             "\x9c\xd3\x73\xce\x73\x86\x03\x0e\x70\x80\x03\x1c\x70"
                   24723:             "\x00\x03\x00" }  },
                   24724:       /* --- pixel bitmap for cmmib180 char#115 s --- */
                   24725:       { 115,47068,                      /* character number, location */
                   24726:          11, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   24727:           {  9,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24728:             "\xf0\x30\x33\x67\xc4\x07\x3f\xf8\xc3\x87\x86\xf9\x00" }  },
                   24729:       /* --- pixel bitmap for cmmib180 char#116 t --- */
                   24730:       { 116,47818,                      /* character number, location */
                   24731:          16, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   24732:           {  9,   16, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24733:             "\x30\xe0\xe0\xc0\x81\xe3\x3f\x07\x0e\x1c\x38\x38\x70"
                   24734:             "\xe0\xc8\x89\x13\x1e" }  },
                   24735:       /* --- pixel bitmap for cmmib180 char#117 u --- */
                   24736:       { 117,48850,                      /* character number, location */
                   24737:          11, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   24738:           { 14,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24739:             "\x0e\x98\x06\x97\xc3\x75\x70\x1c\x9c\x83\xe3\xe0\x38"
                   24740:             "\xb8\x0e\x2e\xe3\x87\xc7\x01" }  },
                   24741:       /* --- pixel bitmap for cmmib180 char#118 v --- */
                   24742:       { 118,49731,                      /* character number, location */
                   24743:          11, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   24744:           { 12,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24745:             "\x1c\x26\xe3\x71\x9e\xc3\x38\xc8\x41\x1c\xc4\x21\x1c"
                   24746:             "\x82\x11\xf0\x00" }  },
                   24747:       /* --- pixel bitmap for cmmib180 char#119 w --- */
                   24748:       { 119,50901,                      /* character number, location */
                   24749:          11, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   24750:           { 18,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24751:             "\x0e\x0c\x69\x38\x9e\xe3\x78\x87\xc3\x1c\x0e\x3a\x1c"
                   24752:             "\xe4\x70\x90\xc3\x41\x0e\x87\x30\x1e\x81\xc7\x03" }  },
                   24753:       /* --- pixel bitmap for cmmib180 char#120 x --- */
                   24754:       { 120,52139,                      /* character number, location */
                   24755:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   24756:           { 14,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24757:             "\x78\x1c\xb1\x2c\x9c\x0b\x67\xc0\x01\x38\x00\x0e\x8c"
                   24758:             "\x43\xe7\xc8\x3c\xe3\x3c\x00" }  },
                   24759:       /* --- pixel bitmap for cmmib180 char#121 y --- */
                   24760:       { 121,53209,                      /* character number, location */
                   24761:          11, 2,   -5, 2,      /* topleft row,col, and botleft row,col */
                   24762:           { 13,   16, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24763:             "\x1c\x58\x86\xc7\xf1\x1c\x8e\xc3\x39\x1c\x87\xe3\x70"
                   24764:             "\x1c\x0e\xe3\xc0\x1f\x80\x63\x38\x0e\xc3\x31\xf0\x03" }  },
                   24765:       /* --- pixel bitmap for cmmib180 char#122 z --- */
                   24766:       { 122,54121,                      /* character number, location */
                   24767:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   24768:           { 13,   11, 3,33, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24769:             "\x43\x51\x39\x37\x11\xb1\xa2\xa1\xa2\xa1\x71\x31\x26"
                   24770:             "\x3a\x21\x53\x43" }  },
                   24771:       /* --- pixel bitmap for cmmib180 char#123 \imath --- */
                   24772:       { 123,96036,                      /* character number, location */
                   24773:          11, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   24774:           {  7,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24775:             "\x1c\x5d\x2e\xc7\xe1\x38\x9c\x4e\x13\x07" }  },
                   24776:       /* --- pixel bitmap for cmmib180 char#124 \jmath --- */
                   24777:       { 124,96841,                      /* character number, location */
                   24778:          11,-1,   -5,-1,      /* topleft row,col, and botleft row,col */
                   24779:           { 11,   16, 3,41, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24780:             "\x64\x61\x23\xf1\x41\x33\x83\xf3\x73\x10\xf2\x63\x20"
                   24781:             "\x12\x33\x23\x23\x33\x22\x55\x52" }  },
                   24782:       /* --- pixel bitmap for cmmib180 char#125 \wp --- */
                   24783:       { 125,97970,                      /* character number, location */
                   24784:          11, 2,   -5, 2,      /* topleft row,col, and botleft row,col */
                   24785:           { 15,   16, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24786:             "\x18\x00\x86\x8f\x31\xdc\x04\x6c\x01\x5e\x80\x1f\xc0"
                   24787:             "\x0f\xe1\x8f\xb8\x4f\x4c\xcf\x21\x07\x90\x03\xc8\x00"
                   24788:             "\x64\x00\x1c\x00" }  },
                   24789:       /* --- pixel bitmap for cmmib180 char#126 \bfvec --- */
                   24790:       { 126,98610,                      /* character number, location */
                   24791:          18, 5,   12, 5,      /* topleft row,col, and botleft row,col */
                   24792:           { 12,    6, 3,13, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24793:             "\x81\xa3\x2f\x1c\x63\xa1\x42" }  },
                   24794:       /* --- pixel bitmap for cmmib180 char#127 (noname) --- */
                   24795:       { 127,99152,                      /* character number, location */
                   24796:          16, 7,   14, 7,      /* topleft row,col, and botleft row,col */
                   24797:           { 11,    2, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24798:             "\xf8\x33\x20" }  },
                   24799:       /* --- trailer  --- */
                   24800:       { -99, -999,  0,0,0,0, { 0,0,0,0, (pixbyte *)"\0" }  }
                   24801:    } ;
                   24802: 
                   24803: 
                   24804: /* --- size=6 for .210gf ---
                   24805:  * mf '\mode=preview; mag=magstep(-13.80488502080647873125); input cmmib10'
                   24806:  * --------------------------------------------------------------------- */
                   24807: /* --- fontdef for cmmib210 --- */
                   24808: static	chardef  cmmib210[] =
                   24809:    {
                   24810:       /* --- pixel bitmap for cmmib210 char#0 \Gamma --- */
                   24811:       {   0,56674,                      /* character number, location */
                   24812:          20, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   24813:           { 21,   20, 3,47, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24814:             "\x5e\x02\x84\x63\xf2\x74\x82\x74\x81\x74\x91\x10\xf2"
                   24815:             "\x64\xb0\xf3\x54\xc0\xf3\x44\xd0\x34\xeb\xa2" }  },
                   24816:       /* --- pixel bitmap for cmmib210 char#1 \Delta --- */
                   24817:       {   1,57593,                      /* character number, location */
                   24818:          20, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   24819:           { 24,   20, 3,84, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24820:             "\xe0\x22\xe0\x73\xe0\x64\x60\xf1\xd6\x50\xc1\x25\xe0"
                   24821:             "\x11\x35\xe1\x54\xd1\x65\xb2\x65\xa2\x84\xa1\x95\x81"
                   24822:             "\xa5\x71\xc4\x61\xd5\x41\xe5\x32\xe0\x14\x3e\x08\x1e"
                   24823:             "\x0e\x0e\x05" }  },
                   24824:       /* --- pixel bitmap for cmmib210 char#2 \Theta --- */
                   24825:       {   2,58752,                      /* character number, location */
                   24826:          20, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   24827:           { 23,   20, 3,85, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24828:             "\xa8\xc4\x54\x93\x93\x64\xa4\x44\xc3\x43\xd4\x24\xd4"
                   24829:             "\x14\x31\x61\x34\xf1\x14\x38\x34\x0f\x14\x38\x34\x14"
                   24830:             "\x31\x61\x34\x14\xd4\x24\xd3\x43\xc4\x44\xa4\x63\x93"
                   24831:             "\x94\x54\xc8\xa3" }  },
                   24832:       /* --- pixel bitmap for cmmib210 char#3 \Lambda --- */
                   24833:       {   3,59798,                      /* character number, location */
                   24834:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   24835:           { 21,   20, 3,86, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24836:             "\xe0\x11\xe0\x52\xe0\x43\xe0\x44\xe0\x25\x40\xf1\xb1"
                   24837:             "\x14\x40\xa1\x24\xd2\x24\xd1\x34\xc1\x45\xa2\x45\xa1"
                   24838:             "\x64\x30\xf1\x61\x74\x30\x51\x84\x30\xf1\x41\x95\x20"
                   24839:             "\x31\xb4\x26\x69" }  },
                   24840:       /* --- pixel bitmap for cmmib210 char#4 \Xi --- */
                   24841:       {   4,61241,                      /* character number, location */
                   24842:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   24843:           { 24,   20, 3,73, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24844:             "\xf1\x6e\x04\x5e\x04\x10\xf2\x51\xe0\x21\x10\xe0\xe0"
                   24845:             "\x31\xa1\x50\xf1\x7c\x50\x6c\xc1\xa1\x60\xf1\xe0\xa0"
                   24846:             "\xf2\x11\xe0\x41\x30\x1e\x06\x3f\x1e\x06\x41" }  },
                   24847:       /* --- pixel bitmap for cmmib210 char#5 \Pi --- */
                   24848:       {   5,62556,                      /* character number, location */
                   24849:          20, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   24850:           { 27,   20, 3,51, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24851:             "\x5e\x08\x84\x84\x30\xf3\x74\x84\x40\xf3\x64\x84\x50"
                   24852:             "\xf3\x54\x84\x60\xf3\x44\x84\x70\x34\x84\x8a\x2a\x50" }  },
                   24853:       /* --- pixel bitmap for cmmib210 char#6 \Sigma --- */
                   24854:       {   6,63755,                      /* character number, location */
                   24855:          20, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   24856:           { 24,   20, 3,77, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24857:             "\x5e\x05\x55\xa4\xf1\x65\xb2\x75\xa2\x84\xa1\x95\x91"
                   24858:             "\xa4\xe0\x65\xa0\xf1\xa4\xa0\xb2\xe0\x71\xa1\xa2\xa1"
                   24859:             "\xa1\xc1\x91\xc2\x72\xc2\x71\xc4\x5e\x05\x4e\x05\x50" }  },
                   24860:       /* --- pixel bitmap for cmmib210 char#7 \Upsilon --- */
                   24861:       {   7,64831,                      /* character number, location */
                   24862:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   24863:           { 22,   20, 3,57, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24864:             "\x34\x95\x37\x67\x18\x4a\x54\x24\x51\x73\x23\xe0\x12"
                   24865:             "\x13\xe0\x25\x90\xf2\x84\xa0\xf3\x74\xb0\xf3\x64\xc0"
                   24866:             "\x54\xec\x91" }  },
                   24867:       /* --- pixel bitmap for cmmib210 char#8 \Phi --- */
                   24868:       {   8,65865,                      /* character number, location */
                   24869:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   24870:           { 21,   20, 3,85, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24871:             "\x7c\xd4\x60\xf1\xa4\x70\x79\xa3\x24\x14\x53\x34\x34"
                   24872:             "\x34\x34\x43\x10\xf1\x14\x44\x44\x0f\x14\x44\x44\x10"
                   24873:             "\x13\x44\x34\x34\x34\x33\x54\x14\x23\xa9\x70\xf1\x74"
                   24874:             "\xa0\x64\xdc\x79" }  },
                   24875:       /* --- pixel bitmap for cmmib210 char#9 \Psi --- */
                   24876:       {   9,66996,                      /* character number, location */
                   24877:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   24878:           { 22,   20, 3,83, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24879:             "\x6c\xe4\x80\xf1\x94\x94\x54\x45\x14\x44\x34\x34\x34"
                   24880:             "\x44\x20\xf2\x14\x34\x34\x30\x14\x24\x34\x54\x24\x33"
                   24881:             "\x64\x24\x24\x73\x24\x14\x97\x13\xc8\xa0\xf1\x64\xc0"
                   24882:             "\x54\xec\x9c" }  },
                   24883:       /* --- pixel bitmap for cmmib210 char#10 \Omega --- */
                   24884:       {  10,68231,                      /* character number, location */
                   24885:          20, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   24886:           { 23,   20, 3,83, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24887:             "\xb8\xc4\x63\x84\x93\x64\xa4\xf1\x44\xc3\xf2\x34\xc4"
                   24888:             "\x34\xb4\x53\xb3\x63\xa3\x73\xa2\x92\x92\x51\x42\x82"
                   24889:             "\x41\x11\x51\x81\x51\x11\x51\x72\x41\x27\x77\x27\x68"
                   24890:             "\x27\x67\x3c" }  },
                   24891:       /* --- pixel bitmap for cmmib210 char#11 \alpha --- */
                   24892:       {  11,69293,                      /* character number, location */
                   24893:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   24894:           { 19,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24895:             "\xc0\x0f\x80\xc3\x20\x0e\x0c\x79\xe0\xe4\x01\x27\x0f"
                   24896:             "\xb8\x78\xc0\xe5\x01\x1e\x0f\xf0\x70\x00\x87\x03\x3e"
                   24897:             "\x38\xcc\x85\x1f\x18" }  },
                   24898:       /* --- pixel bitmap for cmmib210 char#12 \beta --- */
                   24899:       {  12,70358,                      /* character number, location */
                   24900:          20, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   24901:           { 18,   26, 3,97, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24902:             "\xa5\xb2\x52\x81\x73\x61\x83\xf1\x51\x93\x41\xa2\x51"
                   24903:             "\x44\x12\x61\x31\x42\x71\x35\x12\x51\xa2\x20\xf2\x31"
                   24904:             "\xa3\x10\xf1\x21\xa3\x20\x21\xa2\x52\x82\x51\x21\x53"
                   24905:             "\x61\x36\x70\xf1\x11\xe0\x2f\x31\xe0\x33" }  },
                   24906:       /* --- pixel bitmap for cmmib210 char#13 \gamma --- */
                   24907:       {  13,71303,                      /* character number, location */
                   24908:          13, 0,   -6, 0,      /* topleft row,col, and botleft row,col */
                   24909:           { 18,   19, 3,63, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24910:             "\x45\x81\x37\x71\x1a\x51\x23\x44\x31\x21\xa1\x31\xd1"
                   24911:             "\x21\xe0\x11\x11\x30\xf1\xc2\x40\xf2\xc1\x50\xf2\xb2"
                   24912:             "\x50\xf2\xa2\x60\xa1\x70" }  },
                   24913:       /* --- pixel bitmap for cmmib210 char#14 \delta --- */
                   24914:       {  14,72242,                      /* character number, location */
                   24915:          21, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   24916:           { 14,   21, 3,63, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24917:             "\x83\x98\x61\x43\x61\xd2\xc3\xc3\xb4\x96\x63\x14\x53"
                   24918:             "\x34\x33\x44\x10\xf2\x13\x63\x13\x72\x23\x63\x32\x63"
                   24919:             "\x33\x52\x52\x42\x84\x60" }  },
                   24920:       /* --- pixel bitmap for cmmib210 char#15 \epsilon --- */
                   24921:       {  15,73120,                      /* character number, location */
                   24922:          13, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   24923:           { 11,   13, 3,27, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24924:             "\x56\x33\x73\x74\x6f\x14\x79\x2f\x33\x80\x13\x52\x36"
                   24925:             "\x24" }  },
                   24926:       /* --- pixel bitmap for cmmib210 char#16 \zeta --- */
                   24927:       {  16,74032,                      /* character number, location */
                   24928:          20, 2,   -6, 2,      /* topleft row,col, and botleft row,col */
                   24929:           { 13,   26, 3,57, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24930:             "\xf1\x81\x40\x85\x72\x31\x52\x23\x52\xa2\xa2\xb1\xb2"
                   24931:             "\xb1\xbf\x52\xb4\xa5\x88\x78\x85\x20\xf1\x92\x20\x42"
                   24932:             "\x31\x93\x42" }  },
                   24933:       /* --- pixel bitmap for cmmib210 char#17 \eta --- */
                   24934:       {  17,74963,                      /* character number, location */
                   24935:          13, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   24936:           { 16,   19, 3,65, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24937:             "\x23\x45\x31\x13\x21\x43\x11\x24\x54\x24\x64\x23\x73"
                   24938:             "\xf1\x33\x73\xf3\x23\x73\x10\x13\x73\x42\x73\x20\xf1"
                   24939:             "\xb3\x20\xf2\xa3\x30\xa2\x41" }  },
                   24940:       /* --- pixel bitmap for cmmib210 char#18 \theta --- */
                   24941:       {  18,75743,                      /* character number, location */
                   24942:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   24943:           { 14,   20, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24944:             "\x80\x07\x30\x07\x87\xc1\xe1\x38\x38\x0f\xcf\xc1\x7b"
                   24945:             "\xf0\x1e\xbc\xff\xff\xff\x3d\x78\x0f\xde\x83\xf3\xf0"
                   24946:             "\x1c\x1c\x87\x83\xe1\xe0\x0c\xe0\x01" }  },
                   24947:       /* --- pixel bitmap for cmmib210 char#19 \iota --- */
                   24948:       {  19,76428,                      /* character number, location */
                   24949:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   24950:           {  9,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24951:             "\x30\x70\xe0\xe0\xc0\x81\x83\x03\x07\x0e\x0f\x1e\x32"
                   24952:             "\xc2\x03" }  },
                   24953:       /* --- pixel bitmap for cmmib210 char#20 \kappa --- */
                   24954:       {  20,77342,                      /* character number, location */
                   24955:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   24956:           { 17,   13, 3,53, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24957:             "\x42\x64\x43\x51\x13\x43\x32\x22\x43\x31\xa3\x21\xb5"
                   24958:             "\xc9\x73\x53\x50\xf2\x13\x63\x31\x03\x73\x21\x22\x93"
                   24959:             "\x23" }  },
                   24960:       /* --- pixel bitmap for cmmib210 char#21 \lambda --- */
                   24961:       {  21,78189,                      /* character number, location */
                   24962:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   24963:           { 17,   20, 3,60, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24964:             "\x44\x90\xf1\x63\x80\x64\xe3\xe4\xe3\xe4\xe3\xe4\xe3"
                   24965:             "\xd4\xb2\x14\x92\x33\x82\x44\x63\x53\x53\x64\x24\x83"
                   24966:             "\x23\x93\x22\xb3" }  },
                   24967:       /* --- pixel bitmap for cmmib210 char#22 \mu --- */
                   24968:       {  22,79235,                      /* character number, location */
                   24969:          13, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   24970:           { 18,   19, 3,73, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24971:             "\x52\x82\x10\xf1\x43\x73\x10\xf3\x33\x73\x20\x23\x73"
                   24972:             "\x30\xf1\x23\x73\x21\x23\x64\x21\x15\x41\x13\x11\x23"
                   24973:             "\x15\x33\x20\xf1\x13\xef\x23\xe0\x12\xe0\x21" }  },
                   24974:       /* --- pixel bitmap for cmmib210 char#23 \nu --- */
                   24975:       {  23,80048,                      /* character number, location */
                   24976:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   24977:           { 17,   13, 3,49, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24978:             "\x15\x92\xf1\x33\x83\xf1\x23\x83\x10\x23\x73\x43\x63"
                   24979:             "\x43\x63\x53\x53\x63\x43\x73\x23\x83\x13\xa4\xd1" }  },
                   24980:       /* --- pixel bitmap for cmmib210 char#24 \xi --- */
                   24981:       {  24,81180,                      /* character number, location */
                   24982:          20, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   24983:           { 13,   26, 3,65, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24984:             "\xf1\x81\x40\x76\x54\x31\x44\x13\x44\x60\xf3\x24\x70"
                   24985:             "\x38\x62\x41\x42\x15\x42\xb1\xbf\x12\xb3\xa5\x97\x79"
                   24986:             "\x68\x85\xb2\x61\x41\x84\x33" }  },
                   24987:       /* --- pixel bitmap for cmmib210 char#25 \pi --- */
                   24988:       {  25,82138,                      /* character number, location */
                   24989:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   24990:           { 19,   13, 3,59, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24991:             "\x3e\x01\x3e\x03\x1e\x03\x21\x42\x31\x70\xf1\x61\x41"
                   24992:             "\x70\x52\x41\xc2\x42\xa3\x33\xa2\x43\x60\xf1\x33\x53"
                   24993:             "\x50\x32\x71\x61" }  },
                   24994:       /* --- pixel bitmap for cmmib210 char#26 \rho --- */
                   24995:       {  26,82984,                      /* character number, location */
                   24996:          13, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   24997:           { 16,   19, 3,57, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   24998:             "\x85\x92\x42\x72\x53\x53\x54\xf2\x33\x64\xf1\x23\x64"
                   24999:             "\x10\x23\x63\x43\x53\x44\x43\x53\x15\x60\xf1\x13\xcf"
                   25000:             "\x23\xd2\xe1" }  },
                   25001:       /* --- pixel bitmap for cmmib210 char#27 \sigma --- */
                   25002:       {  27,83898,                      /* character number, location */
                   25003:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   25004:           { 19,   13, 3,43, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25005:             "\x6c\x5e\x01\x3e\x01\x34\x44\x50\xf2\x13\x73\x5f\x13"
                   25006:             "\x73\x63\x72\x82\x62\xa2\x42\xc6\xa5" }  },
                   25007:       /* --- pixel bitmap for cmmib210 char#28 \tau --- */
                   25008:       {  28,84667,                      /* character number, location */
                   25009:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   25010:           { 17,   13, 3,39, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25011:             "\x3d\x3e\x01\x1e\x01\x21\x52\xe0\x11\x90\xf2\x62\x90"
                   25012:             "\xf2\x53\x90\x43\xe0\x12\xa2" }  },
                   25013:       /* --- pixel bitmap for cmmib210 char#29 \upsilon --- */
                   25014:       {  29,85570,                      /* character number, location */
                   25015:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   25016:           { 16,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25017:             "\x3c\x60\x72\xf0\x72\xf0\x71\xf0\x39\xc0\x38\x80\x38"
                   25018:             "\x80\x1c\x40\x1c\x40\x1c\x20\x18\x10\x38\x08\xe0\x07" }  },
                   25019:       /* --- pixel bitmap for cmmib210 char#30 \phi --- */
                   25020:       {  30,86478,                      /* character number, location */
                   25021:          20, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   25022:           { 19,   26, 3,91, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25023:             "\xf3\xc1\x60\xf2\xb1\x70\x78\x93\x21\x33\x53\x41\x43"
                   25024:             "\x33\x51\x52\x32\x61\x53\xf1\x13\x51\x63\x03\x61\x53"
                   25025:             "\x22\x61\x53\x22\x51\x53\x33\x41\x43\x62\x31\x23\x98"
                   25026:             "\x70\xf3\x71\xb0\xf1\x61\xcf" }  },
                   25027:       /* --- pixel bitmap for cmmib210 char#31 \chi --- */
                   25028:       {  31,87565,                      /* character number, location */
                   25029:          13, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   25030:           { 18,   19, 3,81, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25031:             "\x24\xb1\x11\x23\x91\x54\x71\x74\x51\x93\x41\xa3\x31"
                   25032:             "\xb4\x11\xd4\x70\xf1\x73\x80\x74\x70\xf1\x61\x13\x70"
                   25033:             "\x51\x24\xa1\x43\x91\x54\x71\x73\x31\x21\x84\x21\x11"
                   25034:             "\xb4\x23" }  },
                   25035:       /* --- pixel bitmap for cmmib210 char#32 \psi --- */
                   25036:       {  32,88682,                      /* character number, location */
                   25037:          20, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   25038:           { 19,   26, 3,97, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25039:             "\xf3\xd1\x50\xf2\xc1\x60\x24\x61\x32\x10\xf1\x11\x23"
                   25040:             "\x41\x34\x01\x33\x41\x44\x23\x51\x52\xf1\x33\x41\x71"
                   25041:             "\x23\x51\x61\x33\x51\x51\x43\x41\x61\x52\x41\x42\x73"
                   25042:             "\x21\x22\xb6\x70\xf3\x81\xa0\xf1\x71\xb3" }  },
                   25043:       /* --- pixel bitmap for cmmib210 char#33 \omega --- */
                   25044:       {  33,89809,                      /* character number, location */
                   25045:          13, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   25046:           { 19,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25047:             "\x18\x00\x43\x00\x3c\x01\xe0\x09\x00\x2e\x40\x60\x01"
                   25048:             "\x03\x0a\x18\x70\xc0\x40\x03\x06\x73\x7e\x8e\xff\x7f"
                   25049:             "\xfc\xf9\x81\x83\x07" }  },
                   25050:       /* --- pixel bitmap for cmmib210 char#34 \varepsilon --- */
                   25051:       {  34,90770,                      /* character number, location */
                   25052:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   25053:           { 13,   13, 3,41, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25054:             "\x56\x5a\x22\x71\x10\xf1\x11\xb0\x11\x16\x53\x32\x51"
                   25055:             "\x23\x6f\x11\xc2\x81\x39\x57\x42" }  },
                   25056:       /* --- pixel bitmap for cmmib210 char#35 \vartheta --- */
                   25057:       {  35,91781,                      /* character number, location */
                   25058:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   25059:           { 17,   20, 3,83, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25060:             "\xa4\xc1\x32\xb1\x42\x10\xf1\x81\x53\xf1\x81\x44\x23"
                   25061:             "\x41\x34\x11\x13\x47\x11\x22\x74\x0f\x11\x23\x64\x10"
                   25062:             "\x33\x64\x43\x63\x43\x64\x43\x63\x53\x53\x63\x52\x82"
                   25063:             "\x42\xa6\x76" }  },
                   25064:       /* --- pixel bitmap for cmmib210 char#36 \varpi --- */
                   25065:       {  36,93042,                      /* character number, location */
                   25066:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   25067:           { 27,   13, 3,71, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25068:             "\x3e\x09\x3e\x0b\x1e\x0b\x21\x31\xe0\x31\x81\x71\x91"
                   25069:             "\x71\x81\x91\x71\x72\x91\x61\x82\x81\x71\x73\x72\x72"
                   25070:             "\x43\x12\x52\x88\x28\xa6\x46\xc3\x74\x83" }  },
                   25071:       /* --- pixel bitmap for cmmib210 char#37 \varrho --- */
                   25072:       {  37,93957,                      /* character number, location */
                   25073:          13, 2,   -6, 2,      /* topleft row,col, and botleft row,col */
                   25074:           { 15,   19, 3,59, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25075:             "\x75\x82\x42\x62\x53\x43\x54\xf2\x23\x64\xf1\x13\x64"
                   25076:             "\x10\x13\x63\x33\x53\x32\x12\x33\x41\x35\x61\xe2\xda"
                   25077:             "\x5b\x69\xe1\x48" }  },
                   25078:       /* --- pixel bitmap for cmmib210 char#38 \varsigma --- */
                   25079:       {  38,94794,                      /* character number, location */
                   25080:          13, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   25081:           { 12,   16, 3,33, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25082:             "\x57\x32\x52\x22\x92\x9f\x22\xa3\x95\x86\x77\x76\x84"
                   25083:             "\x93\x92\x83\x43" }  },
                   25084:       /* --- pixel bitmap for cmmib210 char#39 \varphi --- */
                   25085:       {  39,95759,                      /* character number, location */
                   25086:          13, 2,   -6, 2,      /* topleft row,col, and botleft row,col */
                   25087:           { 18,   19, 3,71, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25088:             "\x21\x94\x41\x86\x21\x88\x11\x73\x43\x81\x71\x0f\x11"
                   25089:             "\x71\x81\x01\xe0\x11\x11\x61\x72\x13\x41\x53\x3e\x5b"
                   25090:             "\x97\x70\xf2\x52\xb0\xf1\x43\xb0\x42\xc3" }  },
                   25091:       /* --- pixel bitmap for cmmib210 char#40 \bfleftharpoonup --- */
                   25092:       {  40,111727,                     /* character number, location */
                   25093:          15, 2,    6, 2,      /* topleft row,col, and botleft row,col */
                   25094:           { 29,    9, 2,18, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25095:             "\xff\x01\x07\x02\x14\x00\x06\x02\x1a\x03\x1a\x02\x1a"
                   25096:             "\x02\x19\x03\x19\x39" }  },
                   25097:       /* --- pixel bitmap for cmmib210 char#41 \bfleftharpoondown --- */
                   25098:       {  41,112759,                     /* character number, location */
                   25099:           8, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   25100:           { 29,    9, 3,39, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25101:             "\x0e\x0e\x01\x1e\x0e\x23\xe0\xe2\xe0\xe2\xe0\xd3\xe0"
                   25102:             "\xd2\xe0\x70\xf1\x72\xe0\x65" }  },
                   25103:       /* --- pixel bitmap for cmmib210 char#42 \bfrightharpoonup --- */
                   25104:       {  42,113789,                     /* character number, location */
                   25105:          15, 2,    6, 2,      /* topleft row,col, and botleft row,col */
                   25106:           { 29,    9, 3,36, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25107:             "\xf1\xe0\x62\x70\xe0\x72\xe0\xd3\xe0\xd2\xe0\xe2\xe0"
                   25108:             "\xe3\x2f\x1e\x0e\x01" }  },
                   25109:       /* --- pixel bitmap for cmmib210 char#43 \bfrightharpoondown --- */
                   25110:       {  43,114822,                     /* character number, location */
                   25111:           8, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   25112:           { 29,    9, 2,19, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25113:             "\x00\x39\x19\x03\x19\x02\x1a\x02\x1a\x03\x1a\x02\x06"
                   25114:             "\x00\xff\x01\x14\x02\x07" }  },
                   25115:       /* --- pixel bitmap for cmmib210 char#44 ` --- */
                   25116:       {  44,115247,                     /* character number, location */
                   25117:          16, 2,    6, 2,      /* topleft row,col, and botleft row,col */
                   25118:           {  5,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25119:             "\xdc\x9f\x31\xc6\x38\x9e\x03" }  },
                   25120:       /* --- pixel bitmap for cmmib210 char#45 ' --- */
                   25121:       {  45,115675,                     /* character number, location */
                   25122:          16, 2,    6, 2,      /* topleft row,col, and botleft row,col */
                   25123:           {  5,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25124:             "\xe7\x71\x8c\x31\xe6\xef\x00" }  },
                   25125:       /* --- pixel bitmap for cmmib210 char#46 \triangleright --- */
                   25126:       {  46,116220,                     /* character number, location */
                   25127:          15, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   25128:           { 15,   16, 3,51, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25129:             "\x02\xd4\xb6\x92\x24\x72\x43\x62\x54\x42\x74\x2f\x12"
                   25130:             "\x94\x02\x74\x22\x54\x42\x43\x62\x24\x76\x94\xb2\xd3" }  },
                   25131:       /* --- pixel bitmap for cmmib210 char#47 \triangleleft --- */
                   25132:       {  47,116796,                     /* character number, location */
                   25133:          15, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   25134:           { 15,   16, 3,50, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25135:             "\xd2\xb4\x96\x74\x22\x63\x42\x44\x52\x24\x72\x0f\x14"
                   25136:             "\x92\x24\x72\x44\x52\x63\x42\x74\x22\x96\xb4\xd2" }  },
                   25137:       /* --- pixel bitmap for cmmib210 char#48 \0 --- */
                   25138:       {  48,102206,                     /* character number, location */
                   25139:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   25140:           { 15,   13, 3,31, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25141:             "\x47\x63\x53\x20\xf1\x13\x73\x1f\x54\x74\x13\x73\x33"
                   25142:             "\x53\x67\x43" }  },
                   25143:       /* --- pixel bitmap for cmmib210 char#49 \1 --- */
                   25144:       {  49,102981,                     /* character number, location */
                   25145:          13, 3,    0, 3,      /* topleft row,col, and botleft row,col */
                   25146:           { 11,   13, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25147:             "\x61\x47\x40\xf9\x43\x4b" }  },
                   25148:       /* --- pixel bitmap for cmmib210 char#50 \2 --- */
                   25149:       {  50,103953,                     /* character number, location */
                   25150:          13, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   25151:           { 13,   13, 3,35, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25152:             "\x28\x41\x64\x1f\x13\x64\x94\x93\x93\x93\x82\x51\x42"
                   25153:             "\x61\x39\x2b\x1c\x11" }  },
                   25154:       /* --- pixel bitmap for cmmib210 char#51 \3 --- */
                   25155:       {  51,104984,                     /* character number, location */
                   25156:          13, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   25157:           { 15,   19, 3,55, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25158:             "\x47\x62\x54\x20\xf2\x13\x64\x10\xa4\xa4\xb3\x86\xd4"
                   25159:             "\xc4\x10\xf1\xb4\x12\x84\x0f\x14\x74\x03\x74\x22\x64"
                   25160:             "\x58\x41" }  },
                   25161:       /* --- pixel bitmap for cmmib210 char#52 \4 --- */
                   25162:       {  52,105923,                     /* character number, location */
                   25163:          13, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   25164:           { 15,   19, 3,56, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25165:             "\xa2\xc3\x30\xf1\x84\x30\x71\x13\x91\x23\x81\x33\x71"
                   25166:             "\x43\x61\x53\x52\x53\x42\x63\x32\x73\x3e\x01\xf4\x93"
                   25167:             "\x30\x69" }  },
                   25168:       /* --- pixel bitmap for cmmib210 char#53 \5 --- */
                   25169:       {  53,106972,                     /* character number, location */
                   25170:          13, 2,   -6, 2,      /* topleft row,col, and botleft row,col */
                   25171:           { 13,   19, 3,59, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25172:             "\x12\x72\x2a\x39\x48\x40\xf2\x11\xb0\x11\x25\x53\x43"
                   25173:             "\x31\x73\xa3\x10\xf1\x94\x0f\x13\x64\x03\x63\x21\x64"
                   25174:             "\x31\x53\x56\x45" }  },
                   25175:       /* --- pixel bitmap for cmmib210 char#54 \6 --- */
                   25176:       {  54,107879,                     /* character number, location */
                   25177:          19, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   25178:           { 15,   19, 3,65, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25179:             "\x66\x73\x51\x53\x53\x33\x63\x10\xf1\x13\xb4\xb4\x25"
                   25180:             "\x44\x11\x43\x25\x63\x14\x73\x1f\x24\x74\x13\x74\x13"
                   25181:             "\x73\x33\x63\x43\x43\x76\x41" }  },
                   25182:       /* --- pixel bitmap for cmmib210 char#55 \7 --- */
                   25183:       {  55,108800,                     /* character number, location */
                   25184:          14, 2,   -6, 2,      /* topleft row,col, and botleft row,col */
                   25185:           { 15,   20, 3,49, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25186:             "\x11\xee\x1d\x2c\x22\x91\x3f\x11\x91\x40\x91\xd1\xd1"
                   25187:             "\x70\xf1\x62\x70\xf2\x52\x80\xf3\x43\x80\x51\x94" }  },
                   25188:       /* --- pixel bitmap for cmmib210 char#56 \8 --- */
                   25189:       {  56,109731,                     /* character number, location */
                   25190:          19, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   25191:           { 15,   19, 3,63, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25192:             "\x47\x71\x63\x41\x92\x22\x92\x23\x82\x25\x62\x26\x42"
                   25193:             "\x4a\x68\x89\x42\x37\x22\x56\x12\x87\xa3\x0f\x12\xb2"
                   25194:             "\x12\xa1\x32\x72\x58\x46" }  },
                   25195:       /* --- pixel bitmap for cmmib210 char#57 \9 --- */
                   25196:       {  57,110648,                     /* character number, location */
                   25197:          13, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   25198:           { 15,   19, 3,65, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25199:             "\x46\x73\x43\x43\x63\x33\x73\x14\x73\x1f\x24\x74\x13"
                   25200:             "\x74\x13\x65\x23\x41\x14\x45\x24\xb4\xf1\xb3\x10\x13"
                   25201:             "\x63\x33\x62\x51\x53\x76\x61" }  },
                   25202:       /* --- pixel bitmap for cmmib210 char#58 . --- */
                   25203:       {  58,117301,                     /* character number, location */
                   25204:           5, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   25205:           {  5,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25206:             "\xee\xff\xef\x00" }  },
                   25207:       /* --- pixel bitmap for cmmib210 char#59 , --- */
                   25208:       {  59,117866,                     /* character number, location */
                   25209:           5, 2,   -6, 2,      /* topleft row,col, and botleft row,col */
                   25210:           {  5,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25211:             "\xee\xff\xef\x21\x44\x88\x08" }  },
                   25212:       /* --- pixel bitmap for cmmib210 char#60 < --- */
                   25213:       {  60,118534,                     /* character number, location */
                   25214:          17, 3,   -3, 3,      /* topleft row,col, and botleft row,col */
                   25215:           { 20,   20, 3,64, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25216:             "\xe0\x42\xe0\x24\xe4\xe4\xe4\xe4\xe4\xe4\xe4\xef\x14"
                   25217:             "\xe0\x20\x24\xe0\x44\xe0\x44\xe0\x44\xe0\x44\xe0\x44"
                   25218:             "\xe0\x44\xe0\x44\xe0\x42" }  },
                   25219:       /* --- pixel bitmap for cmmib210 char#61 / --- */
                   25220:       {  61,119076,                     /* character number, location */
                   25221:          22, 2,   -7, 2,      /* topleft row,col, and botleft row,col */
                   25222:           { 13,   29, 3,75, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25223:             "\xf1\xb2\xa3\xa2\xa3\x10\xf1\x92\x20\x83\xa2\xa3\x30"
                   25224:             "\xf1\x72\x40\x63\xa2\xa3\xa2\xa3\x60\xf1\x42\x70\x33"
                   25225:             "\xa2\xa3\x80\xf1\x22\x90\x13\xa2\xa3\xaf\x12\xb1" }  },
                   25226:       /* --- pixel bitmap for cmmib210 char#62 > --- */
                   25227:       {  62,119783,                     /* character number, location */
                   25228:          17, 3,   -3, 3,      /* topleft row,col, and botleft row,col */
                   25229:           { 20,   20, 3,65, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25230:             "\x02\xe0\x44\xe0\x44\xe0\x44\xe0\x44\xe0\x44\xe0\x44"
                   25231:             "\xe0\x44\xe0\x44\x20\xf1\xe0\x24\xe4\xe4\xe4\xe4\xe4"
                   25232:             "\xe4\xe4\xe4\xe0\x22\xe0\x43" }  },
                   25233:       /* --- pixel bitmap for cmmib210 char#63 \star --- */
                   25234:       {  63,120500,                     /* character number, location */
                   25235:          15, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
                   25236:           { 17,   16, 3,47, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25237:             "\xf2\x81\x80\xf2\x73\x7e\x03\x2d\x69\x40\xf1\x65\x60"
                   25238:             "\x53\x13\xa2\x32\x92\x52\x81\x71\x71\x91\x34" }  },
                   25239:       /* --- pixel bitmap for cmmib210 char#64 \partial --- */
                   25240:       {  64,96753,                      /* character number, location */
                   25241:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   25242:           { 19,   20, 3,83, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25243:             "\x77\xb1\x63\x81\x83\x20\xf1\x43\x83\x10\xf1\xe0\x14"
                   25244:             "\x75\x34\x53\x42\x14\x33\x71\x14\x24\x84\x10\xf1\x14"
                   25245:             "\x94\x10\x14\x93\x24\x94\x24\x93\x43\x83\x53\x82\x73"
                   25246:             "\x53\xa7\x86" }  },
                   25247:       /* --- pixel bitmap for cmmib210 char#65 A --- */
                   25248:       {  65, 1066,                      /* character number, location */
                   25249:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   25250:           { 23,   20, 3,82, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25251:             "\xe0\x21\xe0\x72\x60\xf1\xe4\x50\xd5\x50\xf1\xc1\x14"
                   25252:             "\x50\xb1\x24\xe0\x11\x35\xd2\x44\xd1\x54\xc1\x64\xb2"
                   25253:             "\x64\xbd\x91\x94\x30\xf1\x51\xa4\x30\x41\xb4\x61\xc4"
                   25254:             "\x37\x6a" }  },
                   25255:       /* --- pixel bitmap for cmmib210 char#66 B --- */
                   25256:       {  66, 2474,                      /* character number, location */
                   25257:          20, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   25258:           { 23,   20, 3,71, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25259:             "\x5e\x01\xb4\x64\x10\xf3\x74\x84\x64\x84\x74\x83\x84"
                   25260:             "\x64\x9d\x94\x83\x84\x84\x74\x93\x74\x94\x54\xa3\x64"
                   25261:             "\x94\x64\x93\x74\x84\x64\x83\x5e\x02\x71" }  },
                   25262:       /* --- pixel bitmap for cmmib210 char#67 C --- */
                   25263:       {  67, 3459,                      /* character number, location */
                   25264:          20, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   25265:           { 23,   20, 3,73, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25266:             "\xa7\x51\x83\x62\x13\x63\xa3\x63\xc2\x53\xd2\x43\xe2"
                   25267:             "\x34\xe1\x20\xf2\x14\xe0\x4f\x24\xe0\x54\xe0\x11\x34"
                   25268:             "\xe1\x53\xe1\x53\xd1\x73\xa2\xa3\x62\xe7\xa4" }  },
                   25269:       /* --- pixel bitmap for cmmib210 char#68 D --- */
                   25270:       {  68, 4649,                      /* character number, location */
                   25271:          20, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   25272:           { 25,   20, 3,75, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25273:             "\x5e\x01\xd4\x73\xa4\x93\x20\xf1\x74\xa3\x10\x74\xa4"
                   25274:             "\xf3\x64\xb4\x54\xc3\x10\xf1\x54\xb4\x10\x54\xb3\x64"
                   25275:             "\xb4\x64\xa4\x74\xa3\x84\x84\x84\x74\x7e\x02\x91" }  },
                   25276:       /* --- pixel bitmap for cmmib210 char#69 E --- */
                   25277:       {  69, 6154,                      /* character number, location */
                   25278:          20, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   25279:           { 22,   20, 3,81, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25280:             "\x5e\x03\x84\x73\xf2\x74\x92\x74\x91\x74\x41\x51\x74"
                   25281:             "\x41\xd4\x32\xd9\x70\xf1\x54\x41\x80\x54\x41\x61\x64"
                   25282:             "\xa1\x20\xf1\x44\xb1\x20\x44\xa1\x74\x92\x64\x84\x3e"
                   25283:             "\x04\x4a" }  },
                   25284:       /* --- pixel bitmap for cmmib210 char#70 F --- */
                   25285:       {  70, 7441,                      /* character number, location */
                   25286:          20, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   25287:           { 22,   20, 3,61, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25288:             "\x5e\x03\x84\x73\xf2\x74\x92\x74\x91\x74\x41\x51\x74"
                   25289:             "\x41\xd4\x32\xd9\x70\xf2\x54\x41\x80\x54\xd0\xf3\x44"
                   25290:             "\xe0\x34\xe0\x1b\xb1" }  },
                   25291:       /* --- pixel bitmap for cmmib210 char#71 G --- */
                   25292:       {  71, 8636,                      /* character number, location */
                   25293:          20, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   25294:           { 23,   20, 3,81, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25295:             "\xa7\x51\x83\x62\x13\x63\xa3\x63\xc2\x53\xd2\x43\xe2"
                   25296:             "\x34\xe1\x20\xf2\x14\xe0\x44\xe0\x54\x8a\x1f\x14\xc4"
                   25297:             "\x34\xb4\x40\xf1\x13\xb4\x40\x23\x95\x83\x62\x12\xb7"
                   25298:             "\x41\x5a" }  },
                   25299:       /* --- pixel bitmap for cmmib210 char#72 H --- */
                   25300:       {  72, 9967,                      /* character number, location */
                   25301:          20, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   25302:           { 27,   20, 3,57, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25303:             "\x5a\x2a\x84\x84\x30\xf3\x74\x84\x40\xf2\x64\x84\x50"
                   25304:             "\x6e\x02\x50\xf3\x54\x84\x60\xf3\x44\x84\x70\x34\x84"
                   25305:             "\x8a\x2a\x50" }  },
                   25306:       /* --- pixel bitmap for cmmib210 char#73 I --- */
                   25307:       {  73,10776,                      /* character number, location */
                   25308:          20, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   25309:           { 15,   20, 3,35, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25310:             "\x5a\x84\x30\xf3\x74\x40\xf3\x64\x50\xf3\x54\x60\xf3"
                   25311:             "\x44\x70\x34\x8a\x54" }  },
                   25312:       /* --- pixel bitmap for cmmib210 char#74 J --- */
                   25313:       {  74,11636,                      /* character number, location */
                   25314:          20, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   25315:           { 17,   20, 3,45, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25316:             "\x7a\xb4\x20\xf3\xa4\x30\xf3\x94\x40\xf3\x84\x50\x74"
                   25317:             "\x73\x34\x64\x34\x63\x34\x72\x34\x96\xa4" }  },
                   25318:       /* --- pixel bitmap for cmmib210 char#75 K --- */
                   25319:       {  75,12913,                      /* character number, location */
                   25320:          20, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   25321:           { 27,   20, 3,99, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25322:             "\x5a\x57\x84\xa2\xa4\xa1\xc4\x91\xd4\x71\xe0\x14\x61"
                   25323:             "\xe0\x14\x61\xe0\x24\x41\xe0\x44\x33\xe0\x34\x15\xe0"
                   25324:             "\x24\x11\x24\xe0\x15\x34\xa0\xf1\x54\x54\x90\xf1\x44"
                   25325:             "\x74\x80\xf1\x44\x84\x70\x34\x95\x6a\x49\x40" }  },
                   25326:       /* --- pixel bitmap for cmmib210 char#76 L --- */
                   25327:       {  76,13946,                      /* character number, location */
                   25328:          20, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   25329:           { 19,   20, 3,53, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25330:             "\x5b\xb4\x70\xf3\x74\x80\xf3\x64\x90\xf2\x54\xa0\x54"
                   25331:             "\x91\xf1\x44\x91\x10\x44\x81\x64\x72\x54\x64\x2e\x02"
                   25332:             "\x34" }  },
                   25333:       /* --- pixel bitmap for cmmib210 char#77 M --- */
                   25334:       {  77,15350,                      /* character number, location */
                   25335:          20, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   25336:           { 33,   20, 3,141, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   25337:             "\x57\xd8\x84\xc1\x14\xa1\x13\xc5\xb1\x13\xb1\x14\x40"
                   25338:             "\xf1\x71\x13\xa1\x24\x40\x61\x33\x81\x24\x50\xf1\x61"
                   25339:             "\x33\x71\x34\x50\x61\x33\x61\x44\xa1\x43\x51\x44\xb1"
                   25340:             "\x53\x41\x44\xb1\x53\x31\x54\xb1\x53\x21\x64\xa1\x63"
                   25341:             "\x21\x54\xb1\x63\x11\x64\xb1\x64\x74\xb1\x73\x74\xa1"
                   25342:             "\x82\x74\x87\x51\x5a\x50" }  },
                   25343:       /* --- pixel bitmap for cmmib210 char#78 N --- */
                   25344:       {  78,16642,                      /* character number, location */
                   25345:          20, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   25346:           { 27,   20, 3,107, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   25347:             "\x57\x87\x85\xa1\xa1\x14\x91\xb1\x15\x81\xb1\x24\x81"
                   25348:             "\xb1\x34\x71\xa1\x44\x61\x50\xf1\x61\x54\x51\x50\x61"
                   25349:             "\x64\x41\xa1\x74\x31\xb1\x84\x21\xb1\x85\x11\xb1\x94"
                   25350:             "\x11\xa1\xa5\xb1\xb4\x70\xf1\x41\xc3\x70\x31\xe1\x87"
                   25351:             "\xb1\x84" }  },
                   25352:       /* --- pixel bitmap for cmmib210 char#79 O --- */
                   25353:       {  79,17547,                      /* character number, location */
                   25354:          20, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   25355:           { 22,   20, 3,65, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25356:             "\xa7\xc4\x53\x93\x83\x64\xa3\x44\xb3\x43\xc4\x24\xc4"
                   25357:             "\xf2\x14\xd4\x0f\x24\xd4\x14\xc4\x24\xc3\x43\xb4\x43"
                   25358:             "\xa4\x63\x84\x83\x54\xc7\xa4" }  },
                   25359:       /* --- pixel bitmap for cmmib210 char#80 P --- */
                   25360:       {  80,18714,                      /* character number, location */
                   25361:          20, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   25362:           { 23,   20, 3,61, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25363:             "\x5e\x01\xb4\x64\x84\x83\x10\xf2\x74\x84\xf1\x64\x84"
                   25364:             "\x10\x64\x74\x84\x64\x8c\x60\xf2\x54\xe0\xf3\x44\xe0"
                   25365:             "\x10\x34\xe0\x2a\xd4" }  },
                   25366:       /* --- pixel bitmap for cmmib210 char#81 Q --- */
                   25367:       {  81,19761,                      /* character number, location */
                   25368:          20, 2,   -6, 2,      /* topleft row,col, and botleft row,col */
                   25369:           { 22,   26, 3,93, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25370:             "\xa7\xc4\x53\x93\x83\x64\xa3\x44\xb3\x43\xc4\x24\xc4"
                   25371:             "\xf2\x14\xd4\x0f\x24\xd4\x14\xc4\x24\xc3\x43\xb4\x43"
                   25372:             "\x43\x34\x63\x21\x31\x14\x84\x44\xc8\x51\xe2\x51\xe2"
                   25373:             "\x42\xe7\x40\xf1\xb6\x50\xc3\x71" }  },
                   25374:       /* --- pixel bitmap for cmmib210 char#82 R --- */
                   25375:       {  82,21148,                      /* character number, location */
                   25376:          20, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   25377:           { 24,   20, 3,77, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25378:             "\x5e\xd4\x63\xa4\x83\x20\xf2\x74\x84\x10\x64\x84\x84"
                   25379:             "\x83\x94\x64\xab\xc4\x64\xa4\x73\x50\xf1\x54\x74\x40"
                   25380:             "\xf2\x44\x74\x50\x44\x74\x41\x34\x84\x31\x1a\x75\x22" }  },
                   25381:       /* --- pixel bitmap for cmmib210 char#83 S --- */
                   25382:       {  83,22267,                      /* character number, location */
                   25383:          20, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   25384:           { 19,   20, 3,73, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25385:             "\x87\x31\x72\x64\x53\x82\x62\xa1\x10\xf1\x43\xa1\x10"
                   25386:             "\x34\xe0\x26\xda\xaa\xaa\xc8\xe5\xe0\x14\x20\xf1\x11"
                   25387:             "\xb3\x30\x11\xb2\x52\x92\x54\x72\x61\x37\x8a" }  },
                   25388:       /* --- pixel bitmap for cmmib210 char#84 T --- */
                   25389:       {  84,23325,                      /* character number, location */
                   25390:          20, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   25391:           { 22,   20, 3,65, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25392:             "\x3e\x05\x23\x64\x52\x22\x64\x62\x21\x74\x62\x11\x84"
                   25393:             "\x62\x11\x84\x61\x11\x84\x71\x10\xf2\x94\x90\xf3\x84"
                   25394:             "\xa0\xf3\x74\xb0\x64\xed\x74" }  },
                   25395:       /* --- pixel bitmap for cmmib210 char#85 U --- */
                   25396:       {  85,24365,                      /* character number, location */
                   25397:          20, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   25398:           { 23,   20, 3,55, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25399:             "\x1a\x57\x44\xb1\x30\xf3\x34\xb1\x40\xf3\x24\xb1\x50"
                   25400:             "\xf3\x14\xb1\x64\xb1\x83\xb1\x83\xa1\x94\x81\xc3\x52"
                   25401:             "\xe7\xc3" }  },
                   25402:       /* --- pixel bitmap for cmmib210 char#86 V --- */
                   25403:       {  86,25361,                      /* character number, location */
                   25404:          20, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   25405:           { 23,   20, 3,87, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25406:             "\x09\x86\x24\xd1\x54\xc2\x55\xb1\x74\xa1\x50\xf1\x34"
                   25407:             "\x91\x60\x35\x71\xb4\x61\xc4\x52\xc4\x51\xd4\x41\xe5"
                   25408:             "\x21\xe0\x24\x21\xe0\x24\x11\xc0\xf1\x55\xd0\x54\xe0"
                   25409:             "\x62\xe0\x71\xe0\x26" }  },
                   25410:       /* --- pixel bitmap for cmmib210 char#87 W --- */
                   25411:       {  87,26805,                      /* character number, location */
                   25412:          20, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   25413:           { 33,   20, 3,133, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   25414:             "\x09\x3a\x56\xf1\x24\x94\xa1\x30\x24\x94\x91\x64\x94"
                   25415:             "\x81\x75\x75\x81\x84\x61\x14\x71\x94\x61\x15\x51\xa4"
                   25416:             "\x51\x34\x51\xa4\x42\x34\x41\xb4\x41\x44\x32\xb5\x21"
                   25417:             "\x54\x31\xd4\x21\x54\x21\xe4\x11\x64\x21\xe5\x76\xe0"
                   25418:             "\x15\x84\xe0\x24\x94\xe0\x23\xa3\xe0\x33\xa2\xe0\x51"
                   25419:             "\xb2\xe4" }  },
                   25420:       /* --- pixel bitmap for cmmib210 char#88 X --- */
                   25421:       {  88,28064,                      /* character number, location */
                   25422:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   25423:           { 27,   20, 3,97, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25424:             "\x5a\x48\x84\x92\xc5\x72\xe4\x62\xe0\x15\x42\xe0\x34"
                   25425:             "\x32\xe0\x45\x12\xe0\x66\xe0\x75\xe0\x94\xe0\x95\xe0"
                   25426:             "\x71\x14\xe0\x61\x25\xe0\x41\x44\xe0\x31\x55\xe0\x11"
                   25427:             "\x74\xe1\x85\xc1\xa4\xb1\xb5\x68\x69\x41" }  },
                   25428:       /* --- pixel bitmap for cmmib210 char#89 Y --- */
                   25429:       {  89,29212,                      /* character number, location */
                   25430:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   25431:           { 24,   20, 3,75, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25432:             "\x0a\x86\x35\xc1\x74\xb1\x85\x92\x85\x82\xa5\x62\xb5"
                   25433:             "\x61\xd5\x41\xe5\x31\xe0\x25\x11\xe0\x36\xb0\xf1\x84"
                   25434:             "\xc0\x83\xd0\xf2\x74\xd0\x73\xe0\x64\xe0\x3a\xb0" }  },
                   25435:       /* --- pixel bitmap for cmmib210 char#90 Z --- */
                   25436:       {  90,30317,                      /* character number, location */
                   25437:          20, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   25438:           { 21,   20, 3,83, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25439:             "\x5e\x02\x53\x84\x53\x84\x62\x84\x71\x84\x81\x75\x71"
                   25440:             "\x75\xe0\x24\xe0\x24\xe0\x24\xe0\x24\xe0\x24\xe0\x24"
                   25441:             "\x71\x85\x61\x85\x71\x84\x72\x74\x81\x74\x82\x64\x74"
                   25442:             "\x5e\x01\x65" }  },
                   25443:       /* --- pixel bitmap for cmmib210 char#91 \flat --- */
                   25444:       {  91,121199,                     /* character number, location */
                   25445:          22, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   25446:           {  9,   22, 3,43, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25447:             "\xf8\x01\x81\x15\x23\x23\x1f\x31\x44\x01\x34\x11\x33"
                   25448:             "\x21\x24\x21\x23\x31\x12\x53\x61\x81" }  },
                   25449:       /* --- pixel bitmap for cmmib210 char#92 \natural --- */
                   25450:       {  92,121972,                     /* character number, location */
                   25451:          21, 2,   -6, 2,      /* topleft row,col, and botleft row,col */
                   25452:           {  9,   27, 3,54, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25453:             "\xf3\x01\x81\x63\x45\x26\x0f\x19\x06\x25\x43\x61\x0f"
                   25454:             "\x41\x71\x01\x63\x45\x26\x0f\x19\x06\x25\x43\x61\xf1"
                   25455:             "\x81" }  },
                   25456:       /* --- pixel bitmap for cmmib210 char#93 \sharp --- */
                   25457:       {  93,122859,                     /* character number, location */
                   25458:          20, 2,   -6, 2,      /* topleft row,col, and botleft row,col */
                   25459:           {  9,   26, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25460:             "\x80\x00\x01\x12\x2c\x5e\xbf\xff\x7f\xbf\x1e\x0d\x12"
                   25461:             "\x24\x48\x90\x20\x41\x82\xc5\xeb\xf7\xff\xef\xd7\xa3"
                   25462:             "\x01\x02\x04\x00" }  },
                   25463:       /* --- pixel bitmap for cmmib210 char#94 \smile --- */
                   25464:       {  94,123793,                     /* character number, location */
                   25465:          11, 2,    4, 2,      /* topleft row,col, and botleft row,col */
                   25466:           { 29,    7, 3,37, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25467:             "\x01\xe0\xd1\x11\xe0\xb1\x31\xe0\x91\x52\xe0\x52\x84"
                   25468:             "\xb4\xce\x01\xe0\x39\xa4" }  },
                   25469:       /* --- pixel bitmap for cmmib210 char#95 \frown --- */
                   25470:       {  95,124667,                     /* character number, location */
                   25471:          12, 2,    4, 2,      /* topleft row,col, and botleft row,col */
                   25472:           { 29,    8, 3,40, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25473:             "\xe1\xe0\x8d\xee\x03\xa3\xe0\x13\x72\xe0\x52\x51\xe0"
                   25474:             "\x91\x31\xe0\xb1\x11\xe0\xd1" }  },
                   25475:       /* --- pixel bitmap for cmmib210 char#96 \ell --- */
                   25476:       {  96,97541,                      /* character number, location */
                   25477:          20, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   25478:           { 14,   20, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25479:             "\x00\x0e\xc0\x04\x18\x01\x47\xc0\x10\x38\x02\x86\xc0"
                   25480:             "\x11\x70\x02\x5c\x80\x13\xe0\x02\x78\x00\x0e\x80\x03"
                   25481:             "\xf0\x00\x3a\x40\x0c\x0c\xc3\x00\x0f" }  },
                   25482:       /* --- pixel bitmap for cmmib210 char#97 a --- */
                   25483:       {  97,31271,                      /* character number, location */
                   25484:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   25485:           { 16,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25486:             "\xc0\x67\x70\x78\x38\x70\x3c\x38\x1e\x38\x1e\x38\x1e"
                   25487:             "\x38\x0f\x1c\x0f\x9c\x0e\x9c\x0e\x9c\x0c\x5f\xf8\x38" }  },
                   25488:       /* --- pixel bitmap for cmmib210 char#98 b --- */
                   25489:       {  98,32121,                      /* character number, location */
                   25490:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   25491:           { 14,   20, 3,57, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25492:             "\x25\xb3\x70\xf3\x33\x80\x23\xb3\x15\x54\x42\x43\x53"
                   25493:             "\x10\xf3\x13\x64\x0f\x13\x64\x10\x12\x63\x32\x53\x52"
                   25494:             "\x33\x75\x61" }  },
                   25495:       /* --- pixel bitmap for cmmib210 char#99 c --- */
                   25496:       {  99,32942,                      /* character number, location */
                   25497:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   25498:           { 14,   13, 3,43, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25499:             "\x66\x64\x41\x43\x53\x24\x43\x24\x61\x20\xf1\x14\x9f"
                   25500:             "\x14\xa0\x13\xb3\x91\x23\x62\x57\x32" }  },
                   25501:       /* --- pixel bitmap for cmmib210 char#100 d --- */
                   25502:       { 100,33916,                      /* character number, location */
                   25503:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   25504:           { 17,   20, 3,69, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25505:             "\xc5\xe3\xf3\xd3\x10\xc3\x85\x13\x63\x44\x53\x63\x44"
                   25506:             "\x53\x30\xf2\x14\x63\x34\x63\x44\x63\x21\x10\xf1\x13"
                   25507:             "\x63\x21\x10\x22\x45\x11\x55\x33\x31" }  },
                   25508:       /* --- pixel bitmap for cmmib210 char#101 e --- */
                   25509:       { 101,34773,                      /* character number, location */
                   25510:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   25511:           { 14,   13, 3,43, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25512:             "\x66\x63\x51\x43\x61\x34\x61\x24\x71\x24\x43\x38\x50"
                   25513:             "\xf2\x13\xa0\x13\x91\x23\x62\x57\x33" }  },
                   25514:       /* --- pixel bitmap for cmmib210 char#102 f --- */
                   25515:       { 102,35953,                      /* character number, location */
                   25516:          20, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   25517:           { 16,   26, 3,61, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25518:             "\xb4\xb2\x22\x93\x13\x93\x22\xf1\x93\x40\x83\xaa\x10"
                   25519:             "\xf3\x83\x50\xf4\x73\x60\xf3\x63\x70\x62\x92\x32\x83"
                   25520:             "\x22\x92\x31\xb4\xb5" }  },
                   25521:       /* --- pixel bitmap for cmmib210 char#103 g --- */
                   25522:       { 103,36952,                      /* character number, location */
                   25523:          13, 0,   -6, 0,      /* topleft row,col, and botleft row,col */
                   25524:           { 16,   19, 3,73, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25525:             "\x75\x22\x53\x44\x43\x63\x34\x53\x10\xf2\x24\x63\x10"
                   25526:             "\xf1\x14\x63\x20\xf1\x23\x63\x20\x32\x44\x75\x13\x30"
                   25527:             "\xf1\xa3\x30\x12\x63\x43\x63\x42\x54\x68\x72" }  },
                   25528:       /* --- pixel bitmap for cmmib210 char#104 h --- */
                   25529:       { 104,37897,                      /* character number, location */
                   25530:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   25531:           { 17,   20, 3,75, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25532:             "\x35\xe3\x90\xf3\x43\xa0\x33\xe3\x25\x73\x11\x43\x54"
                   25533:             "\x53\x44\x63\x20\xf2\x23\x73\x20\x13\x73\x43\x73\x21"
                   25534:             "\x13\x63\x31\x13\x63\x21\x13\x82\x21\x22\x93\x24" }  },
                   25535:       /* --- pixel bitmap for cmmib210 char#105 i --- */
                   25536:       { 105,38783,                      /* character number, location */
                   25537:          21, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   25538:           {  8,   21, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25539:             "\xc0\xe0\x40\x00\x00\x00\x00\x00\x3c\x72\x72\x71\x39"
                   25540:             "\x38\x38\x1c\x9c\x8e\x4e\x4c\x38" }  },
                   25541:       /* --- pixel bitmap for cmmib210 char#106 j --- */
                   25542:       { 106,39742,                      /* character number, location */
                   25543:          21,-1,   -6,-1,      /* topleft row,col, and botleft row,col */
                   25544:           { 14,   27, 3,65, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25545:             "\xc1\xc3\xb2\x10\xf4\xe0\x74\x91\x32\x71\x43\x61\x33"
                   25546:             "\x61\x43\x20\xf1\x93\x20\xf3\x83\x30\xf3\x73\x40\x12"
                   25547:             "\x33\x53\x32\x62\x32\x85\x83" }  },
                   25548:       /* --- pixel bitmap for cmmib210 char#107 k --- */
                   25549:       { 107,40797,                      /* character number, location */
                   25550:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   25551:           { 16,   20, 3,69, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25552:             "\x35\xd3\x80\xf3\x43\x90\x33\xd3\x54\x43\x41\x23\x33"
                   25553:             "\x31\x33\x23\x31\x42\x33\x12\xa4\xc7\x83\x33\x60\xf2"
                   25554:             "\x13\x43\x31\x13\x53\x21\x32\x73\x31" }  },
                   25555:       /* --- pixel bitmap for cmmib210 char#108 l --- */
                   25556:       { 108,41543,                      /* character number, location */
                   25557:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   25558:           {  7,   20, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25559:             "\x7c\x38\x0e\x87\xc3\x71\x38\x1c\x8e\xc3\xe1\x70\x1c"
                   25560:             "\x4e\xa7\xd3\xc5\x01" }  },
                   25561:       /* --- pixel bitmap for cmmib210 char#109 m --- */
                   25562:       { 109,42804,                      /* character number, location */
                   25563:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   25564:           { 27,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25565:             "\x1c\x3e\xf8\x90\x09\x37\x8e\x3c\x78\x70\xf2\xc0\x83"
                   25566:             "\x93\x03\x0e\x1c\x1c\x70\xe0\xe0\x80\x03\x87\x03\x0e"
                   25567:             "\x1c\x1c\x70\xe0\xe4\x80\x83\x23\x07\x1c\x9c\x1c\x70"
                   25568:             "\xc0\xc4\x00\x03\x1c" }  },
                   25569:       /* --- pixel bitmap for cmmib210 char#110 n --- */
                   25570:       { 110,43891,                      /* character number, location */
                   25571:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   25572:           { 18,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25573:             "\x1c\x3e\xe8\x84\x23\x0b\x4e\x1e\x38\x39\xe0\xe0\x80"
                   25574:             "\x83\x03\x0e\x07\x1c\x1c\x70\x72\xe0\xc8\x81\x93\x03"
                   25575:             "\x4c\x0c\xe0\x00" }  },
                   25576:       /* --- pixel bitmap for cmmib210 char#111 o --- */
                   25577:       { 111,44663,                      /* character number, location */
                   25578:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   25579:           { 16,   13, 3,43, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25580:             "\x67\x74\x33\x53\x63\x34\x64\xf2\x14\x74\x0f\x14\x74"
                   25581:             "\x10\x13\x73\x33\x63\x53\x43\x86\x63" }  },
                   25582:       /* --- pixel bitmap for cmmib210 char#112 p --- */
                   25583:       { 112,45663,                      /* character number, location */
                   25584:          13,-1,   -6,-1,      /* topleft row,col, and botleft row,col */
                   25585:           { 18,   19, 3,73, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25586:             "\x43\x35\x61\x13\x11\x42\x51\x23\x53\x10\xf1\x21\x23"
                   25587:             "\x64\xf1\x53\x64\xf1\x43\x64\x10\x43\x63\x63\x53\x64"
                   25588:             "\x43\x73\x15\x60\xf1\x33\xc0\xf2\x23\xd7\xb3" }  },
                   25589:       /* --- pixel bitmap for cmmib210 char#113 q --- */
                   25590:       { 113,46610,                      /* character number, location */
                   25591:          13, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   25592:           { 15,   19, 3,65, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25593:             "\x65\x31\x43\x44\x33\x63\x24\x53\x10\xf2\x14\x63\x1f"
                   25594:             "\x14\x63\x20\xf1\x13\x63\x20\x22\x44\x65\x13\x30\xf1"
                   25595:             "\x93\x30\xf2\x83\x40\x58\x20" }  },
                   25596:       /* --- pixel bitmap for cmmib210 char#114 r --- */
                   25597:       { 114,47489,                      /* character number, location */
                   25598:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   25599:           { 14,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25600:             "\x1c\x9e\x6e\x2e\x87\xe7\x61\x39\x00\x0e\x80\x03\x70"
                   25601:             "\x00\x1c\x00\x07\xc0\x01\x38\x00\x0c\x00" }  },
                   25602:       /* --- pixel bitmap for cmmib210 char#115 s --- */
                   25603:       { 115,48439,                      /* character number, location */
                   25604:          13, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   25605:           { 12,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25606:             "\xe0\x03\x41\x18\xce\x61\x3c\x80\x1f\xf0\x03\x78\x02"
                   25607:             "\x76\x60\x03\x32\x18\xfc\x00" }  },
                   25608:       /* --- pixel bitmap for cmmib210 char#116 t --- */
                   25609:       { 116,49195,                      /* character number, location */
                   25610:          18, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   25611:           { 10,   18, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25612:             "\x60\xc0\x01\x07\x1c\x38\xfc\x8f\x03\x0e\x1c\x70\xc0"
                   25613:             "\x01\x07\x0e\x38\xe4\x90\x23\x4e\xf0\x00" }  },
                   25614:       /* --- pixel bitmap for cmmib210 char#117 u --- */
                   25615:       { 117,50247,                      /* character number, location */
                   25616:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   25617:           { 17,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25618:             "\x3c\xc0\xe4\xc0\xc9\x81\x8b\x83\x93\x03\x07\x07\x0e"
                   25619:             "\x0e\x1c\x0e\x1c\x1c\x38\x39\x70\x72\xf0\xc4\xd0\x05"
                   25620:             "\x1f\x07" }  },
                   25621:       /* --- pixel bitmap for cmmib210 char#118 v --- */
                   25622:       { 118,51158,                      /* character number, location */
                   25623:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   25624:           { 14,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25625:             "\x3c\x98\x1c\x2f\xc7\xc7\xf1\x39\x30\x0e\x88\x03\x72"
                   25626:             "\x40\x1c\x10\x07\xc2\x41\xe0\x18\xf0\x01" }  },
                   25627:       /* --- pixel bitmap for cmmib210 char#119 w --- */
                   25628:       { 119,52378,                      /* character number, location */
                   25629:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   25630:           { 21,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25631:             "\x3c\x60\x4c\x0e\xce\xcb\xc1\xf9\x38\x1c\x9f\x83\x83"
                   25632:             "\x71\x70\x20\x0e\x0e\xe4\xe0\x40\x1c\x1c\x88\x83\x83"
                   25633:             "\x70\x70\x10\x1c\x0d\x01\x1f\x1f\x00" }  },
                   25634:       /* --- pixel bitmap for cmmib210 char#120 x --- */
                   25635:       { 120,53632,                      /* character number, location */
                   25636:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   25637:           { 17,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25638:             "\xf0\xf0\x10\x9f\x13\x1c\x17\x1c\x26\x38\x00\x70\x00"
                   25639:             "\xe0\x00\xe0\x00\xc0\x41\x86\x83\x1c\x87\x18\x8d\xe0"
                   25640:             "\xf1\x00" }  },
                   25641:       /* --- pixel bitmap for cmmib210 char#121 y --- */
                   25642:       { 121,54750,                      /* character number, location */
                   25643:          13, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   25644:           { 16,   19, 3,73, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25645:             "\x24\x82\xf1\x11\x23\x63\x01\x33\x53\x11\x23\x63\x10"
                   25646:             "\xf1\x33\x63\x10\xf2\x23\x63\x20\x23\x54\x52\x44\x75"
                   25647:             "\x13\xd3\xc3\x53\x53\x53\x43\x71\x42\xa4\x93" }  },
                   25648:       /* --- pixel bitmap for cmmib210 char#122 z --- */
                   25649:       { 122,55702,                      /* character number, location */
                   25650:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   25651:           { 14,   13, 3,39, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25652:             "\x53\x51\x46\x21\x4a\xb2\xb1\xc1\xb2\xb1\xc1\x71\x41"
                   25653:             "\x72\x3a\x32\x26\x31\x63\x43" }  },
                   25654:       /* --- pixel bitmap for cmmib210 char#123 \imath --- */
                   25655:       { 123,98335,                      /* character number, location */
                   25656:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   25657:           {  8,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25658:             "\x3c\x72\x72\x71\x39\x38\x38\x1c\x9c\x8e\x4e\x4c\x38" }  },
                   25659:       /* --- pixel bitmap for cmmib210 char#124 \jmath --- */
                   25660:       { 124,99174,                      /* character number, location */
                   25661:          13,-1,   -6,-1,      /* topleft row,col, and botleft row,col */
                   25662:           { 13,   19, 3,53, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25663:             "\x74\x81\x32\x61\x43\x51\x33\x51\x43\x10\xf1\x93\x10"
                   25664:             "\xf3\x83\x20\xf3\x73\x30\x12\x33\x43\x33\x42\x32\x75"
                   25665:             "\x73" }  },
                   25666:       /* --- pixel bitmap for cmmib210 char#125 \wp --- */
                   25667:       { 125,100337,                     /* character number, location */
                   25668:          13, 2,   -6, 2,      /* topleft row,col, and botleft row,col */
                   25669:           { 19,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25670:             "\x30\x00\xc0\xc0\x07\x83\x61\x08\x03\x66\x04\x70\x13"
                   25671:             "\x80\x5b\x00\xfc\x01\x70\x0f\x80\x73\x08\x8c\x47\x70"
                   25672:             "\x7c\xc2\xa0\xe7\x03\x39\x00\x88\x03\x40\x0c\x00\x62"
                   25673:             "\x00\x10\x01\x00\x07\x00\x00" }  },
                   25674:       /* --- pixel bitmap for cmmib210 char#126 \bfvec --- */
                   25675:       { 126,100991,                     /* character number, location */
                   25676:          21, 6,   15, 6,      /* topleft row,col, and botleft row,col */
                   25677:           { 15,    6, 3,15, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25678:             "\xa2\xd3\x2f\x1e\x01\x93\xc2\x41" }  },
                   25679:       /* --- pixel bitmap for cmmib210 char#127 (noname) --- */
                   25680:       { 127,101533,                     /* character number, location */
                   25681:          19, 8,   16, 8,      /* topleft row,col, and botleft row,col */
                   25682:           { 13,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25683:             "\xf8\xc7\x00\x05\x40" }  },
                   25684:       /* --- trailer  --- */
                   25685:       { -99, -999,  0,0,0,0, { 0,0,0,0, (pixbyte *)"\0" }  }
                   25686:    } ;
                   25687: 
                   25688: 
                   25689: /* --- size=7 for .250gf ---
                   25690:  * mf '\mode=preview; mag=magstep(-12.84858895680446863032); input cmmib10'
                   25691:  * --------------------------------------------------------------------- */
                   25692: /* --- fontdef for cmmib250 --- */
                   25693: static	chardef  cmmib250[] =
                   25694:    {
                   25695:       /* --- pixel bitmap for cmmib250 char#0 \Gamma --- */
                   25696:       {   0,57268,                      /* character number, location */
                   25697:          24, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   25698:           { 26,   24, 3,57, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25699:             "\xf1\x6e\x06\x95\x84\xf2\x95\x92\x10\xf2\x85\xa2\x10"
                   25700:             "\x85\xd0\xf3\x75\xe0\xf3\x65\xe0\x10\xf3\x55\xe0\x20"
                   25701:             "\x1d\xce\xc4" }  },
                   25702:       /* --- pixel bitmap for cmmib250 char#1 \Delta --- */
                   25703:       {   1,58197,                      /* character number, location */
                   25704:          25, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   25705:           { 29,   25, 3,120, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   25706:             "\xe0\x53\xe0\xb4\xe0\xb5\xe0\x96\xe0\x87\xe0\x72\x16"
                   25707:             "\xe0\x53\x16\xe0\x52\x26\xe0\x42\x45\xe0\x32\x56\xe0"
                   25708:             "\x13\x56\xe3\x75\xe2\x86\xc2\x96\xb2\xb5\xa3\xb6\x83"
                   25709:             "\xc6\x82\xd6\x72\xe0\x15\x62\xe0\x26\x43\xe0\x26\x3e"
                   25710:             "\x0c\x3e\x0d\x1e\x0e\x0e\x0e\x01" }  },
                   25711:       /* --- pixel bitmap for cmmib250 char#2 \Theta --- */
                   25712:       {   2,59400,                      /* character number, location */
                   25713:          25, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   25714:           { 28,   26, 3,125, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   25715:             "\xd9\xe0\x34\x54\xd3\xa4\x94\xc4\x74\xd4\x64\xe0\x14"
                   25716:             "\x45\xe0\x14\x35\xe0\x24\x34\xe0\x34\x25\xe0\x34\x25"
                   25717:             "\x32\x72\x34\xf3\x15\x3b\x35\x14\x32\x72\x35\x15\xe0"
                   25718:             "\x35\x24\xe0\x34\x34\xe0\x25\x34\xe0\x15\x44\xe0\x14"
                   25719:             "\x64\xd4\x74\xc4\x94\xa3\xd4\x55\xe0\x29\xc2" }  },
                   25720:       /* --- pixel bitmap for cmmib250 char#3 \Lambda --- */
                   25721:       {   3,60444,                      /* character number, location */
                   25722:          25, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   25723:           { 26,   25, 3,108, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   25724:             "\xe0\x42\xe0\x93\xe0\x94\xe0\x75\x50\xf1\xe0\x16\x50"
                   25725:             "\xf1\xe7\x50\xd2\x15\xe0\x32\x25\xe0\x32\x26\xe0\x12"
                   25726:             "\x36\xe3\x36\xe2\x55\x40\xf1\x92\x65\x40\x82\x75\xb2"
                   25727:             "\x85\xb2\x86\x92\x96\x83\x96\x82\xb5\x72\xc5\x48\x6e"
                   25728:             "\x06\x5c" }  },
                   25729:       /* --- pixel bitmap for cmmib250 char#4 \Xi --- */
                   25730:       {   4,61901,                      /* character number, location */
                   25731:          24, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   25732:           { 29,   24, 3,95, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25733:             "\xf1\x6e\x09\xf1\x5e\x09\x10\xf1\x52\xe0\x52\x10\x42"
                   25734:             "\xe0\x52\xe0\xe0\x30\xf1\x82\xb2\x60\xf3\x7e\x01\x70"
                   25735:             "\xf1\x62\xb2\x80\xe0\xe0\x32\xe0\x52\x40\xf1\x12\xe0"
                   25736:             "\x52\x50\xf1\x1e\x09\x5f\x1e\x09\x65" }  },
                   25737:       /* --- pixel bitmap for cmmib250 char#5 \Pi --- */
                   25738:       {   5,63204,                      /* character number, location */
                   25739:          24, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   25740:           { 35,   24, 3,61, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25741:             "\x6e\x0e\x01\x6e\x0e\x10\xf3\x95\xb5\x50\xf3\x85\xb5"
                   25742:             "\x60\xf3\x75\xb5\x70\xf3\x65\xb5\x80\xf3\x55\xb5\x90"
                   25743:             "\x1c\x4c\x6d\x3d\x60" }  },
                   25744:       /* --- pixel bitmap for cmmib250 char#6 \Sigma --- */
                   25745:       {   6,64417,                      /* character number, location */
                   25746:          24, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   25747:           { 30,   24, 3,95, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25748:             "\xf1\x6e\x0a\x66\xc6\x76\xd3\x87\xd2\x96\xd2\x10\xf1"
                   25749:             "\x96\xc2\x10\xa6\xb2\xb7\xe0\xa6\xd0\xf1\xc6\xc0\xd3"
                   25750:             "\xe0\xc3\xa2\xe3\xb2\xc3\xd2\xb3\xd2\xb3\xd3\x93\xe4"
                   25751:             "\x83\xd5\x8e\x08\x6e\x09\x6e\x0a\x65" }  },
                   25752:       /* --- pixel bitmap for cmmib250 char#7 \Upsilon --- */
                   25753:       {   7,65505,                      /* character number, location */
                   25754:          25, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   25755:           { 27,   25, 3,77, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25756:             "\x45\xb5\x58\x78\x39\x6a\x1b\x4e\x54\x34\x55\x73\x24"
                   25757:             "\x72\x94\x13\xe0\x57\xe0\x76\xe0\x75\xe0\x76\xc0\xf3"
                   25758:             "\x95\xd0\xf3\x85\xe0\xf3\x75\xe0\x10\x2e\xce\x01\xb4" }  },
                   25759:       /* --- pixel bitmap for cmmib250 char#8 \Phi --- */
                   25760:       {   8,66581,                      /* character number, location */
                   25761:          24, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   25762:           { 25,   24, 3,89, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25763:             "\x8e\x01\xae\x30\xf3\xc5\x80\x8c\xa4\x25\x24\x64\x45"
                   25764:             "\x44\x34\x55\x45\x15\x45\x55\x0f\x15\x55\x55\x05\x55"
                   25765:             "\x45\x15\x45\x54\x34\x45\x44\x64\x25\x24\xac\x80\xf3"
                   25766:             "\x85\xc0\x3e\xae\x01\x89" }  },
                   25767:       /* --- pixel bitmap for cmmib250 char#9 \Psi --- */
                   25768:       {   9,67720,                      /* character number, location */
                   25769:          24, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   25770:           { 27,   24, 3,89, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25771:             "\x7e\x01\xce\x60\xf2\xb5\xb5\x65\x56\x15\x45\x55\x20"
                   25772:             "\xf2\x15\x45\x45\x3f\x15\x45\x45\x45\x45\x44\x64\x45"
                   25773:             "\x35\x64\x35\x35\x84\x25\x25\xa4\x1a\xea\xc0\xf3\x75"
                   25774:             "\xe0\x10\x2e\xce\x01\xb9" }  },
                   25775:       /* --- pixel bitmap for cmmib250 char#10 \Omega --- */
                   25776:       {  10,68967,                      /* character number, location */
                   25777:          25, 3,    0, 3,      /* topleft row,col, and botleft row,col */
                   25778:           { 28,   25, 3,117, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   25779:             "\xd9\xe0\x24\x74\xb4\xa4\x94\xc4\x74\xd5\x54\xe5\x45"
                   25780:             "\xe5\x44\xe0\x15\xf1\x35\xe0\x15\x35\xe0\x14\x45\xe5"
                   25781:             "\x45\xe4\x55\xd4\x74\xc4\x84\xc3\xa3\xb3\xc2\xb2\x82"
                   25782:             "\x32\xa2\x42\x32\x41\x92\x42\x33\x41\x91\x52\x39\x78"
                   25783:             "\x48\x88\x48\x79\x48\x78\x54" }  },
                   25784:       /* --- pixel bitmap for cmmib250 char#11 \alpha --- */
                   25785:       {  11,70023,                      /* character number, location */
                   25786:          15, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   25787:           { 22,   15, 3,71, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25788:             "\x77\xd3\x43\x52\x33\x73\x42\x23\x84\x32\x14\x94\x12"
                   25789:             "\x23\xa4\x12\x1f\x14\xa6\x24\xa5\x3f\x23\xb4\x40\x13"
                   25790:             "\x82\x13\x31\x23\x53\x24\x12\x46\x74\x13" }  },
                   25791:       /* --- pixel bitmap for cmmib250 char#12 \beta --- */
                   25792:       {  12,71098,                      /* character number, location */
                   25793:          24,-1,   -7,-1,      /* topleft row,col, and botleft row,col */
                   25794:           { 23,   31, 3,117, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   25795:             "\xe6\xe0\x12\x52\xc2\x73\xa2\x84\x82\x94\x72\xa4\x72"
                   25796:             "\xa3\x72\xa4\x72\xa3\x82\x39\x82\x32\x44\x82\x46\x13"
                   25797:             "\x72\xb3\x72\xb4\x10\xf3\x42\xc4\x10\xf1\x33\xb4\x20"
                   25798:             "\x33\xa4\x64\x93\x62\x22\x63\x82\x47\x80\xf1\x22\xe0"
                   25799:             "\x50\xf3\x12\xe0\x62\xe0\x74" }  },
                   25800:       /* --- pixel bitmap for cmmib250 char#13 \gamma --- */
                   25801:       {  13,72085,                      /* character number, location */
                   25802:          15, 0,   -8, 0,      /* topleft row,col, and botleft row,col */
                   25803:           { 22,   23, 3,75, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25804:             "\x65\x92\x48\x72\x3b\x52\x36\x16\x42\x32\x93\x22\x32"
                   25805:             "\xb2\x22\xe0\x22\x12\x40\xf1\xe4\x40\xf1\xe3\x50\xf2"
                   25806:             "\xe2\x60\xf2\xd3\x60\xf3\xc3\x70\xc2\xe0\x61\x94" }  },
                   25807:       /* --- pixel bitmap for cmmib250 char#14 \delta --- */
                   25808:       {  14,73060,                      /* character number, location */
                   25809:          25, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   25810:           { 16,   25, 3,75, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25811:             "\x93\xb9\x71\x44\x62\x52\x72\xe3\xd4\xd4\xc5\xc5\xa7"
                   25812:             "\x73\x15\x53\x36\x33\x55\x24\x55\x23\x74\x1f\x24\x74"
                   25813:             "\x13\x83\x23\x74\x23\x73\x43\x62\x63\x42\x96\x64" }  },
                   25814:       /* --- pixel bitmap for cmmib250 char#15 \epsilon --- */
                   25815:       {  15,73952,                      /* character number, location */
                   25816:          15, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   25817:           { 14,   15, 3,35, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25818:             "\x77\x4a\x34\x94\x94\xa3\xaf\x1c\x2f\x24\xa0\x13\xb3"
                   25819:             "\x81\x43\x43\x66\x33" }  },
                   25820:       /* --- pixel bitmap for cmmib250 char#16 \zeta --- */
                   25821:       {  16,74896,                      /* character number, location */
                   25822:          24, 2,   -7, 2,      /* topleft row,col, and botleft row,col */
                   25823:           { 17,   31, 3,69, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25824:             "\xf2\xa2\x50\xa6\xa3\x32\x72\x25\x72\xe2\xe2\xe3\xe2"
                   25825:             "\xe2\xd0\xf1\x13\xdf\x43\xe4\xd5\xc7\xb9\x9b\x7b\x98"
                   25826:             "\xc5\x30\xf1\xb3\x30\x62\x32\xc4\x53" }  },
                   25827:       /* --- pixel bitmap for cmmib250 char#17 \eta --- */
                   25828:       {  17,75837,                      /* character number, location */
                   25829:          15, 0,   -8, 0,      /* topleft row,col, and botleft row,col */
                   25830:           { 21,   23, 3,73, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25831:             "\x44\x55\x61\x23\x22\x43\x31\x35\x63\x10\xf1\x12\x34"
                   25832:             "\x74\xf3\x54\x74\x10\xf3\x44\x74\x20\x34\x74\x72\x84"
                   25833:             "\x30\xf1\xe4\x30\xf3\xd4\x40\xc4\xe0\x42\x66" }  },
                   25834:       /* --- pixel bitmap for cmmib250 char#18 \theta --- */
                   25835:       {  18,76655,                      /* character number, location */
                   25836:          24, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   25837:           { 18,   24, 3,91, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25838:             "\x95\xb3\x33\x83\x52\x73\x63\x54\x63\x53\x74\x34\x74"
                   25839:             "\x33\x84\xf1\x24\x84\x14\x84\x10\xf1\x1e\x02\x10\x14"
                   25840:             "\x84\x1f\x14\x84\x24\x83\x34\x74\x34\x73\x53\x64\x53"
                   25841:             "\x63\x72\x53\x83\x33\xb5\x93" }  },
                   25842:       /* --- pixel bitmap for cmmib250 char#19 \iota --- */
                   25843:       {  19,77330,                      /* character number, location */
                   25844:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   25845:           { 12,   15, 3,37, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25846:             "\x43\x50\xf3\x34\x50\xf2\x24\x60\x14\x84\x61\x14\x56"
                   25847:             "\x66\x52\x23\x33\x45\x54" }  },
                   25848:       /* --- pixel bitmap for cmmib250 char#20 \kappa --- */
                   25849:       {  20,78250,                      /* character number, location */
                   25850:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   25851:           { 21,   15, 3,69, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25852:             "\x43\x84\x54\x66\x54\x51\x24\x54\x32\x42\x64\x21\xd4"
                   25853:             "\x12\xe8\xd4\x26\x94\x63\x74\x74\x41\xf1\x14\x74\x32"
                   25854:             "\x14\x74\x22\x14\x93\x21\x32\xb4\x34" }  },
                   25855:       /* --- pixel bitmap for cmmib250 char#21 \lambda --- */
                   25856:       {  21,79135,                      /* character number, location */
                   25857:          24, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   25858:           { 20,   24, 3,88, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25859:             "\x45\xe0\x25\xe0\x24\xe0\x25\xe0\x24\xe0\x25\xe0\x24"
                   25860:             "\x80\xf1\x85\x70\xf1\x95\x60\xa4\x60\xf1\xa5\x50\x97"
                   25861:             "\xb4\x14\xa4\x25\x84\x44\x65\x55\x45\x65\x35\x85\x15"
                   25862:             "\x95\x14\xb4\x13\xc5" }  },
                   25863:       /* --- pixel bitmap for cmmib250 char#22 \mu --- */
                   25864:       {  22,80165,                      /* character number, location */
                   25865:          15, 0,   -8, 0,      /* topleft row,col, and botleft row,col */
                   25866:           { 23,   23, 3,79, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25867:             "\x63\x83\x30\xf3\x54\x74\x30\xf3\x44\x74\x40\x34\x74"
                   25868:             "\x41\xf1\x34\x74\x32\x34\x65\x22\x36\x42\x13\x21\x4a"
                   25869:             "\x44\x30\xf1\x24\xe0\x30\xf3\x14\xe0\x44\xe0\x62\xe0"
                   25870:             "\x65" }  },
                   25871:       /* --- pixel bitmap for cmmib250 char#23 \nu --- */
                   25872:       {  23,80990,                      /* character number, location */
                   25873:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   25874:           { 20,   15, 3,57, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25875:             "\x17\x93\x16\x94\xf1\x34\x94\x34\x84\x34\x94\x34\x84"
                   25876:             "\x44\x74\x54\x73\x54\x73\x64\x54\x74\x43\x94\x23\xa8"
                   25877:             "\xc4\xe0\x21" }  },
                   25878:       /* --- pixel bitmap for cmmib250 char#24 \xi --- */
                   25879:       {  24,82154,                      /* character number, location */
                   25880:          24, 1,   -7, 1,      /* topleft row,col, and botleft row,col */
                   25881:           { 16,   31, 3,73, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25882:             "\xf1\xa2\x40\xa1\xe6\x84\x32\x54\x24\x54\x80\xf4\x34"
                   25883:             "\x90\x49\x83\x42\x62\x16\x62\xd2\xd3\xcf\x13\xd4\xc5"
                   25884:             "\xb8\x9a\x7c\x6b\x88\xb5\xd3\x81\x42\xa5\x30" }  },
                   25885:       /* --- pixel bitmap for cmmib250 char#25 \pi --- */
                   25886:       {  25,83122,                      /* character number, location */
                   25887:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   25888:           { 22,   15, 3,67, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25889:             "\x4e\x03\x3e\x06\x1e\x06\x22\x43\x32\x72\x52\x42\xe2"
                   25890:             "\x42\x70\xf1\x63\x33\x70\x53\x43\xc3\x44\xa4\x44\xa4"
                   25891:             "\x45\x84\x55\x84\x64\x92\x82\x61" }  },
                   25892:       /* --- pixel bitmap for cmmib250 char#26 \rho --- */
                   25893:       {  26,83978,                      /* character number, location */
                   25894:          15, 0,   -8, 0,      /* topleft row,col, and botleft row,col */
                   25895:           { 20,   23, 3,75, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25896:             "\xa7\xb3\x52\x93\x63\x73\x74\x54\x74\x53\x84\xf2\x44"
                   25897:             "\x84\xf1\x34\x84\x10\x34\x74\x54\x73\x56\x43\x74\x25"
                   25898:             "\x70\xf1\x24\xe0\xf3\x14\xe0\x14\xe0\x32\xe0\x32" }  },
                   25899:       /* --- pixel bitmap for cmmib250 char#27 \sigma --- */
                   25900:       {  27,84904,                      /* character number, location */
                   25901:          15, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   25902:           { 22,   15, 3,49, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25903:             "\x7e\x5e\x04\x3e\x04\x34\x64\x60\xf1\x14\x74\x6f\x24"
                   25904:             "\x84\x6f\x13\x84\x73\x83\x83\x73\xa3\x44\xd6\xd4" }  },
                   25905:       /* --- pixel bitmap for cmmib250 char#28 \tau --- */
                   25906:       {  28,85707,                      /* character number, location */
                   25907:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   25908:           { 20,   15, 3,47, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25909:             "\x4e\x01\x4e\x03\x1e\x04\x22\x62\x92\x63\x90\xf1\x83"
                   25910:             "\x90\xf2\x73\xa0\xf2\x64\xa0\x54\xe0\x33\xb6" }  },
                   25911:       /* --- pixel bitmap for cmmib250 char#29 \upsilon --- */
                   25912:       {  29,86616,                      /* character number, location */
                   25913:          15, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   25914:           { 21,   15, 3,69, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25915:             "\x45\x82\x52\x23\x64\x32\x34\x55\x12\x34\x74\x12\x34"
                   25916:             "\x83\x64\x82\x10\xf1\x54\x92\x10\x54\x82\x64\x92\x64"
                   25917:             "\x82\x74\x81\x93\x71\xb3\x42\xe6\x70" }  },
                   25918:       /* --- pixel bitmap for cmmib250 char#30 \phi --- */
                   25919:       {  30,87532,                      /* character number, location */
                   25920:          24, 2,   -7, 2,      /* topleft row,col, and botleft row,col */
                   25921:           { 22,   31, 3,107, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   25922:             "\xf1\xe2\x60\xf3\xd2\x70\xf2\xc2\x80\x89\xa4\x22\x33"
                   25923:             "\x73\x42\x43\x44\x52\x53\x24\x62\x54\x14\x52\x64\x0f"
                   25924:             "\x24\x62\x64\x04\x52\x64\x14\x52\x63\x24\x52\x53\x43"
                   25925:             "\x52\x43\x73\x22\x33\xb9\x80\xf1\x82\xc0\xf3\x72\xd0"
                   25926:             "\x62\xe3" }  },
                   25927:       /* --- pixel bitmap for cmmib250 char#31 \chi --- */
                   25928:       {  31,88637,                      /* character number, location */
                   25929:          15, 1,   -7, 1,      /* topleft row,col, and botleft row,col */
                   25930:           { 22,   22, 3,89, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25931:             "\x26\xd1\x12\x25\x95\x44\x83\x75\x63\x94\x53\xa5\x33"
                   25932:             "\xc4\x23\xd4\x13\xe7\xe0\x25\x80\xf1\x94\x90\x85\xe0"
                   25933:             "\x27\xe3\x14\xd3\x24\xc3\x35\xa3\x54\x93\x65\x73\x84"
                   25934:             "\x45\x95\x22\x11\xd6\x29" }  },
                   25935:       /* --- pixel bitmap for cmmib250 char#32 \psi --- */
                   25936:       {  32,89738,                      /* character number, location */
                   25937:          24, 0,   -7, 0,      /* topleft row,col, and botleft row,col */
                   25938:           { 25,   31, 3,137, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   25939:             "\xf1\xe0\x32\x60\xf3\xe0\x22\x70\xf2\xe0\x12\x80\x44"
                   25940:             "\x72\x43\x41\x23\x52\x44\x31\x34\x42\x45\x12\x24\x52"
                   25941:             "\x54\x12\x24\x52\x63\x54\x42\x72\x10\xf1\x44\x52\x72"
                   25942:             "\x10\x44\x52\x62\x54\x52\x72\x54\x52\x62\x73\x52\x52"
                   25943:             "\x84\x42\x42\xb4\x12\x32\xe0\x18\x90\xf1\xb2\xc0\xf3"
                   25944:             "\xa2\xd0\x92\xe7" }  },
                   25945:       /* --- pixel bitmap for cmmib250 char#33 \omega --- */
                   25946:       {  33,90883,                      /* character number, location */
                   25947:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   25948:           { 23,   15, 3,73, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25949:             "\x32\xe3\x33\xd4\x32\xe5\x13\xe0\x14\x12\xe0\x35\x82"
                   25950:             "\x82\x1f\x12\x74\x72\x12\x73\x73\x12\x73\x72\x23\x54"
                   25951:             "\x63\x25\x18\x15\x4e\x04\x58\x27\x84\x54\x74" }  },
                   25952:       /* --- pixel bitmap for cmmib250 char#34 \varepsilon --- */
                   25953:       {  34,91880,                      /* character number, location */
                   25954:          16, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   25955:           { 16,   17, 3,47, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25956:             "\x77\x7b\x34\x63\x23\xb0\xf1\x22\xc0\x22\x24\x94\x22"
                   25957:             "\x79\x62\xdf\x22\xe2\xc1\x23\x82\x4b\x68\x52" }  },
                   25958:       /* --- pixel bitmap for cmmib250 char#35 \vartheta --- */
                   25959:       {  35,92899,                      /* character number, location */
                   25960:          24, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   25961:           { 22,   24, 3,107, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   25962:             "\xe4\xe0\x22\x42\xd2\x53\x10\xf1\xa2\x63\x10\xf2\xa2"
                   25963:             "\x64\xb2\x54\x44\x33\x44\x31\x23\x43\x14\x31\x34\x56"
                   25964:             "\x22\x34\x75\x12\x34\x74\x10\xf1\x54\x74\x20\x54\x73"
                   25965:             "\x84\x64\x30\xf1\x44\x73\x40\x44\x63\xa3\x53\xb4\x33"
                   25966:             "\xe6\x92" }  },
                   25967:       /* --- pixel bitmap for cmmib250 char#36 \varpi --- */
                   25968:       {  36,94178,                      /* character number, location */
                   25969:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   25970:           { 32,   15, 3,89, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25971:             "\x4e\x0d\x3e\x0e\x02\x1e\x0e\x02\x22\x32\xe0\x52\x32"
                   25972:             "\x32\xe0\x62\x82\x92\x92\x30\xf1\x42\xa2\x92\x30\x42"
                   25973:             "\x93\x82\x73\x84\x82\x73\x75\x72\x92\x54\x13\x44\x9a"
                   25974:             "\x2a\xb7\x57\xe4\x85\x93" }  },
                   25975:       /* --- pixel bitmap for cmmib250 char#37 \varrho --- */
                   25976:       {  37,95105,                      /* character number, location */
                   25977:          15, 2,   -7, 2,      /* topleft row,col, and botleft row,col */
                   25978:           { 18,   22, 3,75, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25979:             "\x87\x93\x52\x73\x63\x53\x74\x34\x74\x33\x84\xf2\x24"
                   25980:             "\x84\xf1\x14\x84\x10\x14\x74\x35\x63\x33\x12\x43\x52"
                   25981:             "\x36\x7f\x12\xe0\x23\xe0\x1d\x6d\x6c\xe0\x12\x54" }  },
                   25982:       /* --- pixel bitmap for cmmib250 char#38 \varsigma --- */
                   25983:       {  38,95952,                      /* character number, location */
                   25984:          15, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   25985:           { 15,   18, 3,43, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25986:             "\x78\x53\x52\x32\xc2\xc3\xbf\x13\xc4\xb5\xa8\x89\x7a"
                   25987:             "\x79\x87\xa5\x20\xf1\xa2\x30\x74\x43" }  },
                   25988:       /* --- pixel bitmap for cmmib250 char#39 \varphi --- */
                   25989:       {  39,96895,                      /* character number, location */
                   25990:          15, 2,   -8, 2,      /* topleft row,col, and botleft row,col */
                   25991:           { 22,   23, 3,89, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   25992:             "\x32\xa4\x52\xa7\x32\x8a\x12\x93\x43\x12\x82\x72\x0f"
                   25993:             "\x12\x82\x82\x02\x72\x94\x72\x82\x12\x62\x83\x13\x52"
                   25994:             "\x73\x35\x22\x45\x5e\x02\x7d\xc8\x80\xf2\x63\xd0\xf2"
                   25995:             "\x54\xd0\x44\xe0\x53\xe3" }  },
                   25996:       /* --- pixel bitmap for cmmib250 char#40 \bfleftharpoonup --- */
                   25997:       {  40,113069,                     /* character number, location */
                   25998:          18, 2,    7, 2,      /* topleft row,col, and botleft row,col */
                   25999:           { 36,   11, 2,25, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   26000:             "\xff\x01\x08\x03\x19\x00\xff\x01\x07\x03\x1a\x00\x06"
                   26001:             "\x03\x20\x04\x1f\x04\x1f\x04\x1e\x22\x01\x47\x01" }  },
                   26002:       /* --- pixel bitmap for cmmib250 char#41 \bfleftharpoondown --- */
                   26003:       {  41,114105,                     /* character number, location */
                   26004:          10, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   26005:           { 36,   11, 2,27, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   26006:             "\x00\x23\x01\x24\x01\x22\x04\x04\x21\x04\x21\x04\x21"
                   26007:             "\x03\x1b\x00\xff\x01\x07\x03\x1a\x00\xff\x01\x08\x03"
                   26008:             "\x19" }  },
                   26009:       /* --- pixel bitmap for cmmib250 char#42 \bfrightharpoonup --- */
                   26010:       {  42,115139,                     /* character number, location */
                   26011:          18, 2,    7, 2,      /* topleft row,col, and botleft row,col */
                   26012:           { 36,   11, 2,26, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   26013:             "\xff\x01\x19\x03\x08\x00\xff\x01\x1a\x03\x07\x00\x1b"
                   26014:             "\x03\x21\x04\x21\x04\x21\x04\x04\x22\x01\x24\x01\x23" }  },
                   26015:       /* --- pixel bitmap for cmmib250 char#43 \bfrightharpoondown --- */
                   26016:       {  43,116176,                     /* character number, location */
                   26017:          10, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   26018:           { 36,   11, 2,25, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   26019:             "\x01\x47\x01\x22\x1e\x04\x1f\x04\x1f\x04\x20\x03\x06"
                   26020:             "\x00\xff\x01\x1a\x03\x07\x00\xff\x01\x19\x03\x08" }  },
                   26021:       /* --- pixel bitmap for cmmib250 char#44 ` --- */
                   26022:       {  44,116605,                     /* character number, location */
                   26023:          18, 2,    7, 2,      /* topleft row,col, and botleft row,col */
                   26024:           {  7,   11, 3,18, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   26025:             "\x34\x25\x1a\x3f\x23\x44\x46\x25\x34" }  },
                   26026:       /* --- pixel bitmap for cmmib250 char#45 ' --- */
                   26027:       {  45,117035,                     /* character number, location */
                   26028:          18, 2,    7, 2,      /* topleft row,col, and botleft row,col */
                   26029:           {  7,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   26030:             "\x8f\xcf\x0f\x0f\x87\xc3\xf1\xbf\xcf\x03" }  },
                   26031:       /* --- pixel bitmap for cmmib250 char#46 \triangleright --- */
                   26032:       {  46,117582,                     /* character number, location */
                   26033:          19, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   26034:           { 18,   21, 3,67, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   26035:             "\x12\xe0\x15\xd6\xc8\xa3\x16\x83\x26\x73\x46\x53\x66"
                   26036:             "\x33\x76\x23\x99\xb7\x99\x76\x23\x66\x33\x46\x53\x26"
                   26037:             "\x73\x16\x88\xa6\xc5\xe2\xe0\x13" }  },
                   26038:       /* --- pixel bitmap for cmmib250 char#47 \triangleleft --- */
                   26039:       {  47,118174,                     /* character number, location */
                   26040:          19, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   26041:           { 18,   21, 3,66, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   26042:             "\xe0\x13\xe4\xc6\xa8\x99\x76\x23\x56\x43\x46\x53\x26"
                   26043:             "\x73\x15\x98\xa3\x15\x93\x26\x73\x46\x53\x56\x43\x76"
                   26044:             "\x23\x99\xa8\xc6\xe4\xe0\x13" }  },
                   26045:       /* --- pixel bitmap for cmmib250 char#48 \0 --- */
                   26046:       {  48,103418,                     /* character number, location */
                   26047:          16, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   26048:           { 16,   17, 3,43, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   26049:             "\x48\x73\x43\x53\x63\x20\xf1\x13\x83\x1f\x64\x84\xf1"
                   26050:             "\x13\x83\x10\x23\x63\x53\x43\x78\x44" }  },
                   26051:       /* --- pixel bitmap for cmmib250 char#49 \1 --- */
                   26052:       {  49,104209,                     /* character number, location */
                   26053:          16, 3,    0, 3,      /* topleft row,col, and botleft row,col */
                   26054:           { 14,   16, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   26055:             "\x72\x5f\x19\x50\xfa\x54\x5f\x1e" }  },
                   26056:       /* --- pixel bitmap for cmmib250 char#50 \2 --- */
                   26057:       {  50,105187,                     /* character number, location */
                   26058:          16, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   26059:           { 16,   16, 3,45, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   26060:             "\x39\x5d\x23\x66\x14\x79\x84\x12\x94\xb5\xb4\xb4\xa4"
                   26061:             "\xb2\x52\x52\x72\x3d\x1e\x1f\x1e\x01\x12" }  },
                   26062:       /* --- pixel bitmap for cmmib250 char#51 \3 --- */
                   26063:       {  51,106226,                     /* character number, location */
                   26064:          16, 2,   -8, 2,      /* topleft row,col, and botleft row,col */
                   26065:           { 16,   24, 3,69, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   26066:             "\x56\x8a\x53\x54\x33\x64\x20\xf2\x14\x64\x10\x22\x65"
                   26067:             "\xb4\xc3\xc3\x96\xe4\xd4\xd4\xc5\x13\x75\x0f\x15\x65"
                   26068:             "\x05\x64\x23\x65\x24\x45\x4b\x77\x52" }  },
                   26069:       /* --- pixel bitmap for cmmib250 char#52 \4 --- */
                   26070:       {  52,107181,                     /* character number, location */
                   26071:          16, 1,   -7, 1,      /* topleft row,col, and botleft row,col */
                   26072:           { 18,   23, 3,64, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   26073:             "\xc2\xe0\x13\xe4\xd5\xc6\xb2\x14\xb1\x24\xa1\x34\x92"
                   26074:             "\x34\x82\x44\x72\x54\x62\x64\x52\x74\x42\x84\x4f\x1e"
                   26075:             "\x04\xf4\xa4\x40\xf1\x6c" }  },
                   26076:       /* --- pixel bitmap for cmmib250 char#53 \5 --- */
                   26077:       {  53,108240,                     /* character number, location */
                   26078:          16, 2,   -8, 2,      /* topleft row,col, and botleft row,col */
                   26079:           { 16,   24, 3,71, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   26080:             "\x22\x82\x4b\x5a\x69\x77\x70\xf2\x22\xc0\x22\x16\x73"
                   26081:             "\x53\x52\x64\x41\x84\xc4\x10\xf1\xb5\x12\x85\x0f\x24"
                   26082:             "\x75\x03\x84\x22\x74\x43\x45\x59\x86\x64" }  },
                   26083:       /* --- pixel bitmap for cmmib250 char#54 \6 --- */
                   26084:       {  54,109163,                     /* character number, location */
                   26085:          23, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   26086:           { 16,   24, 3,77, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   26087:             "\x76\x89\x64\x43\x43\x54\x33\x64\x24\x72\x20\xf1\x13"
                   26088:             "\xc4\x25\x54\x11\x43\x35\x63\x25\x73\x14\x83\x1f\x34"
                   26089:             "\x84\xf1\x13\x84\x14\x73\x33\x64\x43\x44\x69\x86\x53" }  },
                   26090:       /* --- pixel bitmap for cmmib250 char#55 \7 --- */
                   26091:       {  55,110102,                     /* character number, location */
                   26092:          16, 2,   -8, 2,      /* topleft row,col, and botleft row,col */
                   26093:           { 17,   24, 3,61, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   26094:             "\x12\xe0\xf1\x1e\x02\x1e\x01\x2e\x2f\x12\xa2\x32\x92"
                   26095:             "\xe2\x50\xf1\x92\x60\x82\x70\xf1\x73\x70\xf3\x63\x80"
                   26096:             "\xf4\x54\x80\x62\x94" }  },
                   26097:       /* --- pixel bitmap for cmmib250 char#56 \8 --- */
                   26098:       {  56,111041,                     /* character number, location */
                   26099:          23, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   26100:           { 16,   24, 3,77, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   26101:             "\x56\x8a\x53\x54\x42\x74\x10\xf1\x13\x83\x10\x14\x73"
                   26102:             "\x25\x63\x27\x33\x4b\x69\x89\x6b\x43\x28\x23\x5a\x88"
                   26103:             "\x94\x0f\x13\xa3\x03\xa2\x23\x83\x33\x63\x5a\x86\x53" }  },
                   26104:       /* --- pixel bitmap for cmmib250 char#57 \9 --- */
                   26105:       {  57,111972,                     /* character number, location */
                   26106:          16, 2,   -8, 2,      /* topleft row,col, and botleft row,col */
                   26107:           { 16,   24, 3,77, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   26108:             "\x56\x89\x64\x43\x44\x63\x33\x83\x1f\x14\x83\x1f\x34"
                   26109:             "\x84\x13\x84\x13\x75\x23\x65\x33\x41\x14\x55\x24\xf1"
                   26110:             "\xc3\x10\x22\x74\x24\x63\x34\x53\x43\x53\x69\x86\x73" }  },
                   26111:       /* --- pixel bitmap for cmmib250 char#58 . --- */
                   26112:       {  58,118691,                     /* character number, location */
                   26113:           5, 3,    0, 3,      /* topleft row,col, and botleft row,col */
                   26114:           {  5,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   26115:             "\xee\xff\xef\x00" }  },
                   26116:       /* --- pixel bitmap for cmmib250 char#59 , --- */
                   26117:       {  59,119256,                     /* character number, location */
                   26118:           5, 3,   -7, 3,      /* topleft row,col, and botleft row,col */
                   26119:           {  5,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   26120:             "\xee\xfd\xef\x21\x44\x88\x10\x01" }  },
                   26121:       /* --- pixel bitmap for cmmib250 char#60 < --- */
                   26122:       {  60,119926,                     /* character number, location */
                   26123:          21, 3,   -4, 3,      /* topleft row,col, and botleft row,col */
                   26124:           { 25,   25, 3,100, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   26125:             "\xe0\x83\xe0\x65\xe0\x47\xe0\x27\xe0\x27\xe0\x27\xe0"
                   26126:             "\x27\xe0\x27\xe0\x27\xe0\x27\xe0\x27\xe0\x27\xe0\x45"
                   26127:             "\xe0\x67\xe0\x67\xe0\x67\xe0\x67\xe0\x67\xe0\x67\xe0"
                   26128:             "\x67\xe0\x67\xe0\x67\xe0\x67\xe0\x65\xe0\x83" }  },
                   26129:       /* --- pixel bitmap for cmmib250 char#61 / --- */
                   26130:       {  61,120478,                     /* character number, location */
                   26131:          26, 2,   -9, 2,      /* topleft row,col, and botleft row,col */
                   26132:           { 16,   35, 3,91, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   26133:             "\xe2\xd3\xc4\xf1\xc3\x10\xb4\xc3\xc4\x20\xf1\xa3\x30"
                   26134:             "\x94\xc3\xc4\x40\xf1\x83\x50\x74\xc3\xc4\xc3\xc4\x70"
                   26135:             "\xf1\x53\x80\x44\xc3\xc4\x90\xf1\x33\xa0\x24\xc3\xc4"
                   26136:             "\xb0\xf1\x13\xc4\xcf\x13\xd7" }  },
                   26137:       /* --- pixel bitmap for cmmib250 char#62 > --- */
                   26138:       {  62,121197,                     /* character number, location */
                   26139:          21, 3,   -4, 3,      /* topleft row,col, and botleft row,col */
                   26140:           { 25,   25, 3,101, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   26141:             "\x03\xe0\x85\xe0\x67\xe0\x67\xe0\x67\xe0\x67\xe0\x67"
                   26142:             "\xe0\x67\xe0\x67\xe0\x67\xe0\x67\xe0\x67\xe0\x65\xe0"
                   26143:             "\x47\xe0\x27\xe0\x27\xe0\x27\xe0\x27\xe0\x27\xe0\x27"
                   26144:             "\xe0\x27\xe0\x27\xe0\x27\xe0\x45\xe0\x63\xe0\x80" }  },
                   26145:       /* --- pixel bitmap for cmmib250 char#63 \star --- */
                   26146:       {  63,121924,                     /* character number, location */
                   26147:          18, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   26148:           { 19,   19, 3,53, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   26149:             "\xf3\x91\x90\xf2\x83\x84\x43\x44\x2e\x01\x6b\xa7\xd5"
                   26150:             "\xd7\xc3\x13\xb3\x33\xa2\x52\x92\x72\x81\x91\x71\xb1"
                   26151:             "\x37" }  },
                   26152:       /* --- pixel bitmap for cmmib250 char#64 \partial --- */
                   26153:       {  64,97907,                      /* character number, location */
                   26154:          25, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
                   26155:           { 20,   26, 3,99, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   26156:             "\x86\xd9\xa2\x54\x82\x83\x63\x84\x10\xf1\x44\x83\x10"
                   26157:             "\x43\x94\xe0\x24\x76\x34\x53\x51\x23\x53\x75\x43\x85"
                   26158:             "\x33\x95\x24\x95\x23\xa4\x2f\x14\xa4\x24\x94\x33\xa4"
                   26159:             "\x33\xa3\x43\x93\x54\x73\x73\x54\x9a\xc6\xa3" }  },
                   26160:       /* --- pixel bitmap for cmmib250 char#65 A --- */
                   26161:       {  65, 1066,                      /* character number, location */
                   26162:          25, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   26163:           { 28,   25, 3,122, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   26164:             "\xe0\x52\x70\xf1\xe0\x44\x60\xe0\x35\x60\xf1\xe0\x26"
                   26165:             "\x60\xe0\x17\xe0\x62\x15\xe0\x62\x16\xe0\x42\x35\xe0"
                   26166:             "\x33\x35\xe0\x32\x45\xe0\x22\x55\xe0\x13\x55\xe0\x12"
                   26167:             "\x65\xe2\x76\x40\xf1\x8e\x02\x40\xf1\x72\xa5\x40\x62"
                   26168:             "\xb5\x92\xc5\x92\xc6\x48\x7e\x07\x7c" }  },
                   26169:       /* --- pixel bitmap for cmmib250 char#66 B --- */
                   26170:       {  66, 2488,                      /* character number, location */
                   26171:          24, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   26172:           { 29,   24, 3,91, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   26173:             "\x6e\x05\xae\x07\xb5\x95\xa5\xa4\x10\xf1\x95\xa5\x85"
                   26174:             "\xb4\x95\xa5\x95\xa4\xa5\x94\xa5\x85\xbe\x02\xd5\x94"
                   26175:             "\xb5\xa4\x30\xf3\x65\xb5\x20\xf1\x55\xb5\x30\x55\xa5"
                   26176:             "\x95\x86\x6e\x07\x7e\x06\x92" }  },
                   26177:       /* --- pixel bitmap for cmmib250 char#67 C --- */
                   26178:       {  67, 3485,                      /* character number, location */
                   26179:          25, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   26180:           { 28,   26, 3,105, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   26181:             "\xd8\x61\xac\x33\x86\x77\x66\xa5\x65\xd4\x55\xe0\x13"
                   26182:             "\x45\xe0\x23\x44\xe0\x32\x45\xe0\x32\x35\xe0\x42\x35"
                   26183:             "\xe0\x8f\x45\xe0\x9f\x14\xe0\x42\x44\xe0\x32\x55\xe0"
                   26184:             "\x22\x55\xe0\x12\x74\xe2\x95\xb2\xb6\x64\xdd\xe0\x48"
                   26185:             "\xd5" }  },
                   26186:       /* --- pixel bitmap for cmmib250 char#68 D --- */
                   26187:       {  68, 4695,                      /* character number, location */
                   26188:          24, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   26189:           { 31,   24, 3,83, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   26190:             "\x6e\x05\xce\x08\xc5\x96\xb5\xb5\xa5\xc5\x95\xd4\xf3"
                   26191:             "\x85\xe4\x75\xe0\x14\xf2\x75\xe5\xf1\x65\xe5\x10\x65"
                   26192:             "\xe4\x85\xd5\x75\xd5\x85\xc5\x95\xb5\xa5\x95\x8e\x08"
                   26193:             "\x8e\x06\xb0" }  },
                   26194:       /* --- pixel bitmap for cmmib250 char#69 E --- */
                   26195:       {  69, 6186,                      /* character number, location */
                   26196:          24, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   26197:           { 28,   24, 3,103, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   26198:             "\xf1\x6e\x08\x95\x95\xf2\x95\xb2\x10\x85\xc2\x10\xf1"
                   26199:             "\x85\x52\x52\x10\x85\x43\xe0\x15\x52\x90\xf1\x7c\x90"
                   26200:             "\x75\x43\x90\xf1\x65\x52\x62\x20\x65\x52\x52\x95\xc2"
                   26201:             "\x85\xc2\x95\xb3\x95\xa4\x95\x85\x6e\x08\x5e\x08\x68" }  },
                   26202:       /* --- pixel bitmap for cmmib250 char#70 F --- */
                   26203:       {  70, 7515,                      /* character number, location */
                   26204:          24, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   26205:           { 27,   24, 3,83, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   26206:             "\xf1\x6e\x07\x95\x85\xf2\x95\xa2\x10\x85\xb2\x10\xf1"
                   26207:             "\x85\x52\x42\x10\x85\x43\xe5\x52\x80\xf1\x7c\x80\x75"
                   26208:             "\x43\x80\xf2\x65\x52\x90\x65\xe0\x20\xf3\x55\xe0\x30"
                   26209:             "\x1d\xde\xd5" }  },
                   26210:       /* --- pixel bitmap for cmmib250 char#71 G --- */
                   26211:       {  71, 8724,                      /* character number, location */
                   26212:          25, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   26213:           { 28,   26, 3,105, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   26214:             "\xd8\x61\xac\x33\x86\x77\x66\xa5\x65\xd4\x55\xe0\x13"
                   26215:             "\x45\xe0\x23\x44\xe0\x32\x45\xe0\x32\x35\xe0\x42\x35"
                   26216:             "\xe0\x8f\x35\xe0\x95\x9d\x14\xad\x1f\x14\xe0\x15\x4f"
                   26217:             "\x15\xd5\x50\x14\xd5\x75\xa6\x86\x63\x13\xad\x41\xd8"
                   26218:             "\xd5" }  },
                   26219:       /* --- pixel bitmap for cmmib250 char#72 H --- */
                   26220:       {  72,10047,                      /* character number, location */
                   26221:          24, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   26222:           { 35,   24, 3,71, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   26223:             "\x6d\x3d\x6c\x4c\x10\xf3\x95\xb5\x50\xf3\x85\xb5\x60"
                   26224:             "\x75\xb5\x70\xf1\x7e\x07\x70\x75\xb5\x70\xf3\x65\xb5"
                   26225:             "\x80\xf3\x55\xb5\x90\x1c\x4c\x6d\x3d\x64" }  },
                   26226:       /* --- pixel bitmap for cmmib250 char#73 I --- */
                   26227:       {  73,10870,                      /* character number, location */
                   26228:          24, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   26229:           { 19,   24, 3,41, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   26230:             "\x6d\x6c\x10\xf3\x95\x50\xf3\x85\x60\xf3\x75\x70\xf3"
                   26231:             "\x65\x80\xf3\x55\x90\x1c\x6d\x65" }  },
                   26232:       /* --- pixel bitmap for cmmib250 char#74 J --- */
                   26233:       {  74,11738,                      /* character number, location */
                   26234:          24, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   26235:           { 23,   25, 3,55, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   26236:             "\xad\xac\x10\xf3\xe5\x40\xf3\xd5\x50\xf3\xc5\x60\xf3"
                   26237:             "\xb5\x70\x14\x55\x8f\x15\x55\x84\x55\x92\x74\xb2\x45"
                   26238:             "\xe6\xe3" }  },
                   26239:       /* --- pixel bitmap for cmmib250 char#75 K --- */
                   26240:       {  75,13029,                      /* character number, location */
                   26241:          24, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   26242:           { 34,   24, 3,131, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   26243:             "\x6d\x69\x6c\x79\x95\xc3\xe5\xb3\xe0\x15\xa2\xe0\x35"
                   26244:             "\x83\xe0\x35\x82\xe0\x55\x63\xe0\x65\x53\xe0\x75\x33"
                   26245:             "\xe0\x85\x35\xe0\x75\x26\xe0\x78\x15\xe0\x66\x35\xe0"
                   26246:             "\x56\x55\xe0\x45\x65\xe0\x45\x66\xe0\x35\x75\xe0\x25"
                   26247:             "\x86\xe0\x15\x95\xe0\x15\x96\xe5\xa5\xac\x4c\x5d\x4b"
                   26248:             "\x60" }  },
                   26249:       /* --- pixel bitmap for cmmib250 char#76 L --- */
                   26250:       {  76,14050,                      /* character number, location */
                   26251:          24, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   26252:           { 23,   24, 3,59, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   26253:             "\x6e\x9d\x40\xf3\x95\x90\xf3\x85\xa0\xf3\x75\xb0\xf2"
                   26254:             "\x65\xa2\x65\x92\x65\xa2\x65\x93\x65\x83\x75\x65\x3e"
                   26255:             "\x05\x3e\x06\x30" }  },
                   26256:       /* --- pixel bitmap for cmmib250 char#77 M --- */
                   26257:       {  77,15440,                      /* character number, location */
                   26258:          24, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   26259:           { 40,   24, 3,171, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   26260:             "\x69\xe0\x29\x69\xe0\x19\xa6\xe6\xe2\x14\xd6\xe2\x14"
                   26261:             "\xc2\x14\xe2\x14\xb2\x24\xd2\x24\xb2\x14\xe2\x24\xa2"
                   26262:             "\x24\xe2\x24\x92\x34\xe2\x34\x82\x34\xd2\x44\x72\x34"
                   26263:             "\x70\xf1\x72\x44\x62\x44\x70\x72\x44\x52\x54\xd2\x54"
                   26264:             "\x42\x54\xe2\x64\x32\x54\xe2\x64\x22\x64\xe2\x64\x12"
                   26265:             "\x74\xd2\x74\x12\x64\xe2\x76\x74\xe2\x75\x84\xe2\x84"
                   26266:             "\x84\xa9\x53\x5b\x6a\x52\x5c\x60" }  },
                   26267:       /* --- pixel bitmap for cmmib250 char#78 N --- */
                   26268:       {  78,16756,                      /* character number, location */
                   26269:          24, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   26270:           { 35,   24, 3,127, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   26271:             "\x69\xaa\x6a\x99\xa7\xc2\xe2\x15\xb2\xe2\x16\xa2\xe2"
                   26272:             "\x25\xa2\xd2\x36\x82\xe2\x45\x82\xe2\x46\x72\xe2\x56"
                   26273:             "\x62\xd2\x75\x52\xe2\x76\x42\xe2\x85\x42\xe2\x86\x32"
                   26274:             "\xd2\xa5\x22\xe2\xb5\x12\xe2\xb8\xe2\xc7\xd2\xd6\x90"
                   26275:             "\xf1\x52\xe5\x90\x52\xe0\x14\xa9\xd2\xaa\xd2\xa4" }  },
                   26276:       /* --- pixel bitmap for cmmib250 char#79 O --- */
                   26277:       {  79,17679,                      /* character number, location */
                   26278:          25, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   26279:           { 27,   26, 3,111, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   26280:             "\xd8\xe0\x24\x63\xc4\x94\x94\xb4\x74\xc4\x64\xe4\x44"
                   26281:             "\xe0\x14\x35\xe0\x14\x34\xe0\x24\xf1\x25\xe0\x24\xf3"
                   26282:             "\x15\xe0\x25\x14\xe0\x25\x15\xe0\x25\x15\xe0\x24\x34"
                   26283:             "\xe0\x15\x34\xe5\x44\xe4\x64\xc4\x74\xb4\x94\x94\xb5"
                   26284:             "\x54\xe0\x28\xc0" }  },
                   26285:       /* --- pixel bitmap for cmmib250 char#80 P --- */
                   26286:       {  80,18870,                      /* character number, location */
                   26287:          24, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   26288:           { 28,   24, 3,75, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   26289:             "\x6e\x04\xae\x06\xb5\x86\x95\x95\xf1\x95\xa4\xf2\x85"
                   26290:             "\xa5\x85\x95\x85\xa4\x95\x85\xae\x02\xc5\xe0\x20\xf3"
                   26291:             "\x65\xe0\x30\xf3\x55\xe0\x40\x1c\xe0\x1d\xe0\x14" }  },
                   26292:       /* --- pixel bitmap for cmmib250 char#81 Q --- */
                   26293:       {  81,19927,                      /* character number, location */
                   26294:          25, 1,   -7, 1,      /* topleft row,col, and botleft row,col */
                   26295:           { 27,   32, 3,155, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   26296:             "\xd8\xe0\x24\x63\xc4\x94\x94\xb4\x74\xc4\x64\xe4\x44"
                   26297:             "\xe0\x14\x35\xe0\x14\x34\xe0\x24\xf1\x25\xe0\x24\xf3"
                   26298:             "\x15\xe0\x25\x14\xe0\x25\x15\xe0\x25\x15\xe0\x24\x34"
                   26299:             "\xe0\x15\x34\xe0\x14\x44\x54\x54\x64\x32\x31\x34\x74"
                   26300:             "\x31\x41\x24\x94\x11\x56\xb4\x11\x44\x51\xaa\x61\xe0"
                   26301:             "\x33\x52\x30\xf1\xe9\x40\xe0\x17\xe0\x66\xe0\x84\x74" }  },
                   26302:       /* --- pixel bitmap for cmmib250 char#82 R --- */
                   26303:       {  82,21346,                      /* character number, location */
                   26304:          24, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   26305:           { 30,   25, 3,103, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   26306:             "\x6e\x04\xce\x06\xd5\x85\xc5\x95\xb5\xa4\xb5\xa5\x10"
                   26307:             "\xf1\x85\xa5\x20\x85\xa4\xb5\x94\xb5\x84\xde\x01\xe0"
                   26308:             "\x15\x74\xe5\x84\x60\xf3\x65\x95\x50\xf1\x55\x95\x60"
                   26309:             "\xf1\x55\x95\x42\x1c\x65\x32\x1d\x74\x31\xe0\xa5\x34" }  },
                   26310:       /* --- pixel bitmap for cmmib250 char#83 S --- */
                   26311:       {  83,22485,                      /* character number, location */
                   26312:          25, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   26313:           { 23,   26, 3,101, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   26314:             "\xb6\x51\x9a\x22\x74\x66\x64\x93\x73\xa3\x10\xf1\x54"
                   26315:             "\xa3\x10\x45\xa2\x65\xe0\x47\xe0\x2b\xdc\xcc\xcc\xdb"
                   26316:             "\xe0\x27\x30\xf1\xe0\x15\x30\x22\xb5\x30\xf1\x12\xc4"
                   26317:             "\x40\x13\xb3\x63\xa3\x66\x64\x72\x2b\x81\x57\xa5" }  },
                   26318:       /* --- pixel bitmap for cmmib250 char#84 T --- */
                   26319:       {  84,23589,                      /* character number, location */
                   26320:          24, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   26321:           { 27,   24, 3,77, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   26322:             "\xf1\x3e\x0a\x24\x65\x64\x22\x85\x72\x23\x85\x72\x22"
                   26323:             "\x95\x72\x22\x85\x82\x1f\x12\x95\x82\x10\xb5\xb0\xf3"
                   26324:             "\xa5\xc0\xf3\x95\xd0\xf3\x85\xe0\x2e\x02\xbe\x01\xa4" }  },
                   26325:       /* --- pixel bitmap for cmmib250 char#85 U --- */
                   26326:       {  85,24667,                      /* character number, location */
                   26327:          24, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   26328:           { 29,   25, 3,69, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   26329:             "\x0d\x6e\x08\x79\x10\xf3\x35\xe2\x50\xf3\x25\xe2\x60"
                   26330:             "\xf3\x15\xe2\x7f\x35\xe2\x85\xd2\x9f\x15\xc2\xa0\x14"
                   26331:             "\xa3\xd4\x74\xe0\x1c\xe0\x58\xe0\x2e" }  },
                   26332:       /* --- pixel bitmap for cmmib250 char#86 V --- */
                   26333:       {  86,25655,                      /* character number, location */
                   26334:          24, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   26335:           { 29,   25, 3,119, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   26336:             "\x1b\x9e\x06\x89\x45\xe2\x40\xf1\x45\xd2\x50\x45\xc2"
                   26337:             "\xa6\xa2\xc5\x93\xc5\x92\xd5\x82\xe5\x73\xe6\x62\xe0"
                   26338:             "\x16\x52\xe0\x35\x43\xe0\x35\x42\xe0\x45\x32\xe0\x55"
                   26339:             "\x23\xe0\x56\x12\xe0\xf1\x77\xe0\x10\x76\xe0\x20\xf1"
                   26340:             "\x75\xe0\x30\x74\xe0\xc2\xe0\x51" }  },
                   26341:       /* --- pixel bitmap for cmmib250 char#87 W --- */
                   26342:       {  87,27115,                      /* character number, location */
                   26343:          24, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   26344:           { 40,   25, 3,177, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   26345:             "\x1b\x3c\x4e\x07\x3b\x59\xf1\x36\x95\xb2\x40\x45\x95"
                   26346:             "\xa2\x95\x95\x93\x95\x87\x82\xa5\x87\x72\xb5\x72\x15"
                   26347:             "\x72\xb5\x62\x25\x62\xc5\x62\x25\x52\xd5\x52\x35\x52"
                   26348:             "\xd6\x33\x35\x42\xe0\x15\x32\x45\x42\xe0\x15\x22\x55"
                   26349:             "\x32\xe0\x25\x22\x56\x12\xe0\x35\x12\x75\x12\xe0\x38"
                   26350:             "\x77\xe0\x47\x87\xe0\x46\x96\xe0\x56\x95\xe0\x65\xa5"
                   26351:             "\xe0\x74\xa4\xe0\x83\xb4\xe0\x82\xc3\xe0\x30" }  },
                   26352:       /* --- pixel bitmap for cmmib250 char#88 X --- */
                   26353:       {  88,28402,                      /* character number, location */
                   26354:          24, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   26355:           { 32,   24, 3,115, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   26356:             "\xf1\x6c\x4a\xa6\x83\xe0\x16\x73\xe0\x36\x53\xe0\x46"
                   26357:             "\x43\xe0\x66\x23\xe0\x76\x13\xe0\x98\xe0\xa7\xe0\xc5"
                   26358:             "\xd0\xf1\xe6\xc0\xd8\xe0\x93\x15\xe0\x83\x26\xe0\x63"
                   26359:             "\x45\xe0\x53\x56\xe0\x33\x66\xe0\x23\x86\xe3\x96\xd3"
                   26360:             "\xb6\x7a\x7b\x4a\x6c\x42" }  },
                   26361:       /* --- pixel bitmap for cmmib250 char#89 Y --- */
                   26362:       {  89,29562,                      /* character number, location */
                   26363:          24, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   26364:           { 29,   24, 3,97, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   26365:             "\x0c\x9e\x06\x89\x46\xc3\x86\xc2\xa6\xa2\xb6\x92\xd6"
                   26366:             "\x72\xe6\x62\xe0\x26\x43\xe0\x26\x33\xe0\x46\x13\xe0"
                   26367:             "\x59\xe0\x77\xe0\x86\xe0\xf2\x95\xe0\x10\x94\xe0\x20"
                   26368:             "\xf2\x85\xe0\x20\x84\xe0\x7c\xe0\x2d\xd6" }  },
                   26369:       /* --- pixel bitmap for cmmib250 char#90 Z --- */
                   26370:       {  90,30677,                      /* character number, location */
                   26371:          24, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   26372:           { 26,   24, 3,95, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   26373:             "\xf1\x7e\x05\x66\x76\x74\x86\x83\x86\x92\x86\x93\x76"
                   26374:             "\xa2\x85\xb2\x75\xe0\x65\xe0\x65\xe0\x65\xe0\x65\xe0"
                   26375:             "\x65\xe0\x65\x72\xb5\x82\xa5\x92\x96\x82\x96\x92\x86"
                   26376:             "\x93\x76\x93\x76\x76\x6f\x1e\x05\x7d" }  },
                   26377:       /* --- pixel bitmap for cmmib250 char#91 \flat --- */
                   26378:       {  91,122635,                     /* character number, location */
                   26379:          26, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   26380:           { 11,   27, 3,51, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   26381:             "\xf8\x02\x92\x23\x49\x2a\x12\x53\x1f\x42\x54\x0f\x12"
                   26382:             "\x44\x12\x34\x22\x33\x32\x23\x42\x13\x55\x64\x72\x91" }  },
                   26383:       /* --- pixel bitmap for cmmib250 char#92 \natural --- */
                   26384:       {  92,123422,                     /* character number, location */
                   26385:          26, 2,   -8, 2,      /* topleft row,col, and botleft row,col */
                   26386:           { 11,   34, 3,50, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   26387:             "\xf6\x02\x92\x74\x56\x27\x0f\x1b\x07\x26\x52\x0f\x82"
                   26388:             "\x72\x02\x56\x27\x0f\x1b\x07\x26\x54\x72\xf3\x92" }  },
                   26389:       /* --- pixel bitmap for cmmib250 char#93 \sharp --- */
                   26390:       {  93,124327,                     /* character number, location */
                   26391:          25, 2,   -8, 2,      /* topleft row,col, and botleft row,col */
                   26392:           { 11,   33, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   26393:             "\x00\x03\x18\xc1\x0c\x66\x30\x83\x19\xdc\xf0\xf6\xf7"
                   26394:             "\xff\xff\xfe\xf6\xb0\x83\x19\xcc\x60\x06\x33\x98\xc1"
                   26395:             "\x0c\x66\x30\x83\x1b\xde\xfe\xfe\xff\xdf\xdf\x1e\x76"
                   26396:             "\x30\x83\x19\xc4\x00\x06\x00" }  },
                   26397:       /* --- pixel bitmap for cmmib250 char#94 \smile --- */
                   26398:       {  94,125293,                     /* character number, location */
                   26399:          13, 2,    5, 2,      /* topleft row,col, and botleft row,col */
                   26400:           { 36,    8, 3,43, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   26401:             "\x02\xe0\xe0\x45\xe0\xe0\x23\x14\xe0\xc4\x44\xe0\x84"
                   26402:             "\x77\xe7\xae\x0a\xee\x06\xe0\x6c\xc2" }  },
                   26403:       /* --- pixel bitmap for cmmib250 char#95 \frown --- */
                   26404:       {  95,126169,                     /* character number, location */
                   26405:          14, 2,    4, 2,      /* topleft row,col, and botleft row,col */
                   26406:           { 36,   10, 3,56, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   26407:             "\xda\xe0\x9e\x02\xe0\x3e\x08\xd6\xc6\xa5\xe0\x45\x74"
                   26408:             "\xe0\x84\x53\xe0\xc3\x33\xe0\xe3\x13\xe0\xe0\x25\xe0"
                   26409:             "\xe0\x42" }  },
                   26410:       /* --- pixel bitmap for cmmib250 char#96 \ell --- */
                   26411:       {  96,98715,                      /* character number, location */
                   26412:          24, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   26413:           { 16,   24, 3,85, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   26414:             "\xb3\xc2\x21\xa2\x32\x83\x32\x73\x42\x64\x42\x63\x42"
                   26415:             "\x64\x42\x64\x32\x74\x22\x74\x32\x74\x22\x84\x12\x96"
                   26416:             "\x96\xa5\x80\xf1\x34\x90\x25\xa6\x92\x23\x81\x43\x63"
                   26417:             "\x52\x44\x86\x33" }  },
                   26418:       /* --- pixel bitmap for cmmib250 char#97 a --- */
                   26419:       {  97,31643,                      /* character number, location */
                   26420:          15, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   26421:           { 19,   15, 3,63, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   26422:             "\x65\x23\x73\x45\x63\x64\x53\x74\x44\x74\x43\x74\x4f"
                   26423:             "\x24\x74\x43\x74\x41\x0f\x13\x74\x32\x03\x65\x22\x23"
                   26424:             "\x42\x13\x21\x55\x44\x32" }  },
                   26425:       /* --- pixel bitmap for cmmib250 char#98 b --- */
                   26426:       {  98,32531,                      /* character number, location */
                   26427:          24, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   26428:           { 16,   24, 3,65, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   26429:             "\xf1\x17\x80\xf3\x34\x90\xf2\x24\xa0\x24\x16\x46\x52"
                   26430:             "\x35\x63\x10\xf1\x14\x74\x0f\x34\x84\x0f\x13\x84\x13"
                   26431:             "\x74\x33\x63\x52\x43\x86\x75" }  },
                   26432:       /* --- pixel bitmap for cmmib250 char#99 c --- */
                   26433:       {  99,33390,                      /* character number, location */
                   26434:          15, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   26435:           { 16,   15, 3,43, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   26436:             "\x77\x73\x52\x43\x64\x23\x74\x14\x73\x23\xcf\x24\xcf"
                   26437:             "\x13\xd3\xb1\x23\x92\x33\x63\x68\x44" }  },
                   26438:       /* --- pixel bitmap for cmmib250 char#100 d --- */
                   26439:       { 100,34370,                      /* character number, location */
                   26440:          24, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   26441:           { 19,   24, 3,79, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   26442:             "\xf1\xc7\xf3\xe4\x10\xf2\xd4\x20\x65\x24\x63\x45\x63"
                   26443:             "\x64\x53\x74\x44\x74\x43\x74\x4f\x24\x74\x43\x74\x41"
                   26444:             "\x0f\x13\x74\x32\x03\x65\x22\x23\x42\x13\x21\x55\x44"
                   26445:             "\x33" }  },
                   26446:       /* --- pixel bitmap for cmmib250 char#101 e --- */
                   26447:       { 101,35243,                      /* character number, location */
                   26448:          15, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   26449:           { 16,   15, 3,45, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   26450:             "\x77\x64\x52\x43\x82\x23\x92\x14\x82\x23\x83\x1d\x3f"
                   26451:             "\x24\xc3\xd4\xa1\x23\x92\x33\x63\x68\x44" }  },
                   26452:       /* --- pixel bitmap for cmmib250 char#102 f --- */
                   26453:       { 102,36403,                      /* character number, location */
                   26454:          24, 2,   -7, 2,      /* topleft row,col, and botleft row,col */
                   26455:           { 20,   31, 3,77, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   26456:             "\xd6\xd3\x23\xf1\xb3\x24\xa4\x32\x10\xf2\xa4\x60\x94"
                   26457:             "\x70\xf1\x5d\x20\xf1\x94\x70\xf5\x84\x80\xf4\x74\x90"
                   26458:             "\xf1\x64\xa0\x12\x34\xa4\x23\xb4\x22\xc3\x22\xe5\xe4" }  },
                   26459:       /* --- pixel bitmap for cmmib250 char#103 g --- */
                   26460:       { 103,37416,                      /* character number, location */
                   26461:          15, 1,   -7, 1,      /* topleft row,col, and botleft row,col */
                   26462:           { 18,   22, 3,81, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   26463:             "\x76\x23\x53\x55\x43\x74\x33\x84\x24\x84\x23\x84\x10"
                   26464:             "\xf2\x14\x84\x10\xf2\x13\x84\x20\x23\x65\x52\x46\x76"
                   26465:             "\x14\x30\xf1\xb4\x30\x12\x74\x44\x64\x44\x54\x53\x54"
                   26466:             "\x88\x86" }  },
                   26467:       /* --- pixel bitmap for cmmib250 char#104 h --- */
                   26468:       { 104,38373,                      /* character number, location */
                   26469:          24, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   26470:           { 21,   24, 3,89, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   26471:             "\xf1\x37\xb0\xf3\x54\xc0\xf2\x44\xd0\x44\x25\x94\x12"
                   26472:             "\x43\x75\x63\x40\xf1\x34\x74\x30\xf2\x24\x74\x40\x24"
                   26473:             "\x64\x64\x74\x41\x14\x74\x32\x14\x64\x42\x14\x64\x32"
                   26474:             "\x14\x83\x22\x32\xa4\x4f" }  },
                   26475:       /* --- pixel bitmap for cmmib250 char#105 i --- */
                   26476:       { 105,39273,                      /* character number, location */
                   26477:          25, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   26478:           { 12,   25, 3,69, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   26479:             "\xf1\x83\x10\x74\x92\x20\xf5\xc0\x44\x71\x23\x52\x24"
                   26480:             "\x20\xf1\x12\x34\x20\xf1\x54\x30\xf1\x44\x40\x44\x31"
                   26481:             "\xf1\x34\x32\x33\x32\x43\x22\x74\x34" }  },
                   26482:       /* --- pixel bitmap for cmmib250 char#106 j --- */
                   26483:       { 106,40214,                      /* character number, location */
                   26484:          25, 0,   -7, 0,      /* topleft row,col, and botleft row,col */
                   26485:           { 16,   32, 3,73, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   26486:             "\xe2\xd3\xc4\xd2\x10\xf5\xe0\x20\x85\x92\x33\x72\x44"
                   26487:             "\x10\xf1\x42\x54\x10\xf3\xa4\x20\xf3\x94\x30\xf3\x84"
                   26488:             "\x40\x12\x44\x54\x34\x54\x24\x63\x24\x85\xa4" }  },
                   26489:       /* --- pixel bitmap for cmmib250 char#107 k --- */
                   26490:       { 107,41253,                      /* character number, location */
                   26491:          24, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   26492:           { 19,   24, 3,89, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   26493:             "\xf1\x37\x90\xf3\x54\xa0\xf2\x44\xb0\x44\x64\x44\x52"
                   26494:             "\x23\x34\x41\x34\x34\x31\x44\x34\x12\x62\x34\x11\xd7"
                   26495:             "\xcb\x84\x35\x64\x54\x41\xf1\x14\x54\x32\x14\x54\x22"
                   26496:             "\x14\x73\x21\x32\x94\x3f" }  },
                   26497:       /* --- pixel bitmap for cmmib250 char#108 l --- */
                   26498:       { 108,42015,                      /* character number, location */
                   26499:          24, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   26500:           {  9,   24, 3,47, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   26501:             "\xf1\x27\xf3\x44\x10\xf3\x34\x20\xf3\x24\x30\xf3\x14"
                   26502:             "\x44\x41\x0f\x14\x32\x04\x22\x23\x21\x44\x34" }  },
                   26503:       /* --- pixel bitmap for cmmib250 char#109 m --- */
                   26504:       { 109,43286,                      /* character number, location */
                   26505:          15, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   26506:           { 34,   15, 3,105, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   26507:             "\x44\x55\x55\x91\x23\x22\x43\x21\x43\x61\x35\x63\x11"
                   26508:             "\x53\x40\xf1\x12\x34\x74\x64\x30\xf2\x54\x74\x64\x40"
                   26509:             "\x54\x74\x54\x94\x74\x64\x41\x44\x74\x64\x32\x44\x74"
                   26510:             "\x54\x42\x44\x74\x54\x32\x44\x74\x73\x22\x62\x92\x94"
                   26511:             "\x46" }  },
                   26512:       /* --- pixel bitmap for cmmib250 char#110 n --- */
                   26513:       { 110,44389,                      /* character number, location */
                   26514:          15, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   26515:           { 23,   15, 3,77, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   26516:             "\x44\x45\x91\x23\x21\x43\x61\x35\x53\x40\xf1\x12\x34"
                   26517:             "\x64\x30\xf2\x54\x64\x40\x54\x54\x94\x64\x41\x44\x64"
                   26518:             "\x32\x44\x54\x42\x44\x54\x32\x44\x73\x22\x62\x94\x44" }  },
                   26519:       /* --- pixel bitmap for cmmib250 char#111 o --- */
                   26520:       { 111,45143,                      /* character number, location */
                   26521:          15, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   26522:           { 18,   15, 3,51, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   26523:             "\x77\x93\x53\x53\x83\x33\x94\x14\x94\x13\xa4\x0f\x24"
                   26524:             "\xa4\x03\xa4\x13\xa3\x23\x94\x33\x74\x53\x53\x97\x74" }  },
                   26525:       /* --- pixel bitmap for cmmib250 char#112 p --- */
                   26526:       { 112,46151,                      /* character number, location */
                   26527:          15,-1,   -7,-1,      /* topleft row,col, and botleft row,col */
                   26528:           { 21,   22, 3,79, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   26529:             "\x54\x45\x71\x23\x12\x42\x51\x34\x63\x32\x34\x73\x22"
                   26530:             "\x34\x64\xf3\x64\x74\xf1\x54\x74\x10\x54\x73\x74\x63"
                   26531:             "\x76\x43\x84\x16\x60\xf1\x44\xd0\xf2\x34\xe0\x18\xc9"
                   26532:             "\xc4" }  },
                   26533:       /* --- pixel bitmap for cmmib250 char#113 q --- */
                   26534:       { 113,47108,                      /* character number, location */
                   26535:          15, 2,   -7, 2,      /* topleft row,col, and botleft row,col */
                   26536:           { 18,   22, 3,69, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   26537:             "\x66\x33\x43\x55\x43\x74\x33\x84\x24\x84\x23\x84\x2f"
                   26538:             "\x24\x84\x2f\x23\x84\x30\x13\x65\x52\x46\x76\x14\x40"
                   26539:             "\xf1\xa4\x40\xf2\x94\x50\xf1\x69\x32" }  },
                   26540:       /* --- pixel bitmap for cmmib250 char#114 r --- */
                   26541:       { 114,48023,                      /* character number, location */
                   26542:          15, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   26543:           { 17,   15, 3,49, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   26544:             "\x34\x45\x32\x13\x21\x33\x12\x25\x34\x12\x24\x44\x12"
                   26545:             "\x24\x52\x10\xf3\x44\x90\xf3\x34\xa0\x24\xe2\xc4" }  },
                   26546:       /* --- pixel bitmap for cmmib250 char#115 s --- */
                   26547:       { 115,48979,                      /* character number, location */
                   26548:          15, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   26549:           { 15,   15, 3,47, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   26550:             "\x67\x71\x62\x51\x64\x32\x64\x33\x53\x47\x8a\x6a\x78"
                   26551:             "\x22\x83\x1f\x14\x82\x13\x82\x32\x72\x58\x52" }  },
                   26552:       /* --- pixel bitmap for cmmib250 char#116 t --- */
                   26553:       { 116,49743,                      /* character number, location */
                   26554:          22, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   26555:           { 13,   22, 3,57, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   26556:             "\x72\x40\xf2\x64\x30\xf2\x54\x40\x1e\x0a\x10\xf2\x44"
                   26557:             "\x50\xf3\x34\x60\x24\x61\x24\x52\xf1\x24\x42\x10\x33"
                   26558:             "\x22\x75\x40" }  },
                   26559:       /* --- pixel bitmap for cmmib250 char#117 u --- */
                   26560:       { 117,50805,                      /* character number, location */
                   26561:          15, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   26562:           { 22,   15, 3,75, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   26563:             "\x45\x73\x62\x23\x54\x52\x34\x44\x30\xf1\x12\x34\x54"
                   26564:             "\x30\x64\x44\x40\xf2\x54\x54\x40\x44\x54\x41\xf1\x44"
                   26565:             "\x54\x32\x53\x54\x22\x63\x32\x13\x21\x95\x34\x38" }  },
                   26566:       /* --- pixel bitmap for cmmib250 char#118 v --- */
                   26567:       { 118,51726,                      /* character number, location */
                   26568:          15, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   26569:           { 19,   15, 3,69, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   26570:             "\x45\x62\x52\x23\x44\x32\x34\x35\x12\x34\x54\x12\x34"
                   26571:             "\x63\x64\x62\x10\xf1\x54\x72\x10\x54\x71\x64\x72\x64"
                   26572:             "\x71\x74\x62\x83\x52\xa3\x32\xc5\x71" }  },
                   26573:       /* --- pixel bitmap for cmmib250 char#119 w --- */
                   26574:       { 119,52928,                      /* character number, location */
                   26575:          15, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   26576:           { 28,   15, 3,91, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   26577:             "\x45\x73\x52\x52\x23\x54\x44\x32\x34\x44\x45\x12\x34"
                   26578:             "\x54\x54\x12\x34\x54\x63\x64\x44\x72\x10\xf2\x54\x54"
                   26579:             "\x72\x10\xf1\x44\x54\x72\x20\x44\x54\x62\x83\x54\x61"
                   26580:             "\xa3\x32\x13\x41\xc6\x36\x64" }  },
                   26581:       /* --- pixel bitmap for cmmib250 char#120 x --- */
                   26582:       { 120,54220,                      /* character number, location */
                   26583:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   26584:           { 19,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   26585:             "\xe0\xe3\xc3\xb0\x39\x83\xe7\x0d\x3c\x6f\xe0\x31\x80"
                   26586:             "\x07\x00\x3c\x00\xe0\x01\x00\x0f\x00\x3c\x20\xe3\x81"
                   26587:             "\x3d\x0f\xec\x7d\x30\xe7\xc3\xf0\xf0\x01" }  },
                   26588:       /* --- pixel bitmap for cmmib250 char#121 y --- */
                   26589:       { 121,55322,                      /* character number, location */
                   26590:          15, 0,   -7, 0,      /* topleft row,col, and botleft row,col */
                   26591:           { 20,   22, 3,85, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   26592:             "\x45\x83\x32\x23\x64\x22\x34\x54\xf1\x12\x34\x64\x64"
                   26593:             "\x54\x10\xf2\x54\x64\x10\xf2\x44\x64\x20\x53\x55\x83"
                   26594:             "\x35\xa5\x14\xe0\x24\x71\x74\x73\x64\x64\x54\x74\x53"
                   26595:             "\x92\x43\xc6\xa1" }  },
                   26596:       /* --- pixel bitmap for cmmib250 char#122 z --- */
                   26597:       { 122,56288,                      /* character number, location */
                   26598:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   26599:           { 18,   15, 3,51, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   26600:             "\x64\x62\x48\x32\x4d\x58\x22\xe0\x12\xe3\xe2\xe0\x12"
                   26601:             "\xe3\xe2\x91\x52\x92\x42\x39\x3e\x32\x48\x32\x74\x53" }  },
                   26602:       /* --- pixel bitmap for cmmib250 char#123 \imath --- */
                   26603:       { 123,99519,                      /* character number, location */
                   26604:          15, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   26605:           { 12,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   26606:             "\xf0\x80\x1c\xcc\x63\x3c\xc6\x03\x1e\xe0\x01\x0f\xf0"
                   26607:             "\x00\x8f\x78\x8c\xc7\x38\x86\x33\xe0\x01" }  },
                   26608:       /* --- pixel bitmap for cmmib250 char#124 \jmath --- */
                   26609:       { 124,100338,                     /* character number, location */
                   26610:          15, 0,   -7, 0,      /* topleft row,col, and botleft row,col */
                   26611:           { 15,   22, 3,53, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   26612:             "\x85\x82\x33\x62\x44\xf1\x42\x54\xf3\xa4\x10\xf3\x94"
                   26613:             "\x20\xf3\x84\x30\x12\x44\x44\x34\x44\x24\x53\x24\x76"
                   26614:             "\x86" }  },
                   26615:       /* --- pixel bitmap for cmmib250 char#125 \wp --- */
                   26616:       { 125,101509,                     /* character number, location */
                   26617:          16, 2,   -8, 2,      /* topleft row,col, and botleft row,col */
                   26618:           { 23,   24, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   26619:             "\xc0\x00\x00\x18\xe0\x07\x06\x0e\x06\x81\x01\xc7\x30"
                   26620:             "\x80\x67\x0c\xc0\x1b\x03\xe0\xcd\x00\xf0\x26\x00\x78"
                   26621:             "\x1b\x00\xbc\x07\x00\xcf\x83\x81\xe7\xc1\xe0\xe1\x61"
                   26622:             "\x70\xf8\x31\x1e\xec\xe1\x01\xe6\x00\x00\x63\x00\x80"
                   26623:             "\x30\x00\x60\x18\x00\x20\x0c\x00\x10\x02\x00\x88\x00"
                   26624:             "\x00\x38\x00\x00" }  },
                   26625:       /* --- pixel bitmap for cmmib250 char#126 \bfvec --- */
                   26626:       { 126,102191,                     /* character number, location */
                   26627:          26, 6,   17, 6,      /* topleft row,col, and botleft row,col */
                   26628:           { 18,    9, 3,29, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   26629:             "\xd1\xe0\x23\xe0\x14\x3e\x0e\x07\x1e\x03\xb5\xd3\xe0"
                   26630:             "\x12\x52" }  },
                   26631:       /* --- pixel bitmap for cmmib250 char#127 (noname) --- */
                   26632:       { 127,102739,                     /* character number, location */
                   26633:          23,10,   18,10,      /* topleft row,col, and botleft row,col */
                   26634:           { 16,    5, 3,13, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   26635:             "\x49\x5d\x23\x86\xc3\xd1\x1e" }  },
                   26636:       /* --- trailer  --- */
                   26637:       { -99, -999,  0,0,0,0, { 0,0,0,0, (pixbyte *)"\0" }  }
                   26638:    } ;
                   26639: 
                   26640: 
1.5     ! raeburn  26641: /* --- size=8 for .325gf ---
        !          26642:  * mf '\mode=preview; mag=magstep(-11.40956951729850636869); input cmmib10'
        !          26643:  * --------------------------------------------------------------------- */
        !          26644: /* --- fontdef for cmmib325 --- */
        !          26645: static	chardef  cmmib325[] =
        !          26646:    {
        !          26647:       /* --- pixel bitmap for cmmib325 char#0 \Gamma --- */
        !          26648:       {   0,58723,                      /* character number, location */
        !          26649:          31, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          26650:           { 34,   31, 3,127, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          26651:             "\xf1\x8e\x0c\xc6\xb4\xd6\xc3\x10\xf1\xb7\xc3\x10\xf1"
        !          26652:             "\xb6\xe2\x10\xa7\xd3\xb7\xd2\xc6\xe2\xc6\xe0\x40\xf1"
        !          26653:             "\x97\xe0\x40\xf1\x96\xe0\x50\xf1\x87\xe0\x50\xf1\x86"
        !          26654:             "\xe0\x60\xf1\x77\xe0\x60\xf1\x76\xe0\x70\xf1\x67\xe0"
        !          26655:             "\x70\xf1\x66\xe0\x80\x57\xe0\x8f\x1e\x03\xe0\x34" }  },
        !          26656:       /* --- pixel bitmap for cmmib325 char#1 \Delta --- */
        !          26657:       {   1,59670,                      /* character number, location */
        !          26658:          32, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          26659:           { 37,   32, 3,180, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          26660:             "\xe0\xb3\xe0\xe0\x54\xe0\xe0\x45\x90\xf1\xe0\x87\x80"
        !          26661:             "\xe0\x78\xe0\xe2\x17\xe0\xc3\x17\xe0\xb3\x27\xe0\xb2"
        !          26662:             "\x47\xe0\x92\x57\xe0\x82\x67\xe0\x72\x87\xe0\x53\x87"
        !          26663:             "\xe0\x43\x97\xe0\x42\xb7\xe0\x22\xc7\xe0\x12\xd7\xe3"
        !          26664:             "\xe7\xc3\xe0\x17\xc2\xe0\x27\xb2\xe0\x47\x92\xe0\x57"
        !          26665:             "\x82\xe0\x67\x73\xe0\x76\x63\xe0\x87\x52\xe0\x97\x4e"
        !          26666:             "\x0e\x05\x3e\x0e\x07\x1e\x0e\x08\x0f\x1e\x0e\x09" }  },
        !          26667:       /* --- pixel bitmap for cmmib325 char#2 \Theta --- */
        !          26668:       {   2,60897,                      /* character number, location */
        !          26669:          32, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          26670:           { 35,   33, 3,181, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          26671:             "\xe0\x3a\xe0\x8e\x01\xe0\x46\x67\xe6\xa6\xc5\xd6\x96"
        !          26672:             "\xe0\x16\x76\xe0\x26\x67\xe0\x36\x56\xe0\x46\x46\xe0"
        !          26673:             "\x56\x37\xe0\x56\x36\xe0\x66\x27\x42\x82\x46\x27\x42"
        !          26674:             "\x73\x46\x17\x4d\x37\xf1\x17\x4c\x47\x17\x3d\x4e\x4d"
        !          26675:             "\x37\x1f\x17\x42\x82\x47\x17\xe0\x57\x27\xe0\x56\x37"
        !          26676:             "\xe0\x47\x46\xe0\x46\x56\xe0\x36\x66\xe0\x26\x86\xe6"
        !          26677:             "\x96\xd6\xb6\xb6\xe6\x67\xe0\x3e\x02\xe0\x8a\xe0\x2c" }  },
        !          26678:       /* --- pixel bitmap for cmmib325 char#3 \Lambda --- */
        !          26679:       {   3,61975,                      /* character number, location */
        !          26680:          32, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          26681:           { 32,   32, 3,156, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          26682:             "\xe0\x92\xe0\xe0\x13\xe0\xe4\xe0\xe5\xe0\xc6\x60\xf1"
        !          26683:             "\xe0\x57\x60\xf1\xe0\x48\x60\xe0\x32\x16\xe0\x82\x26"
        !          26684:             "\xe0\x82\x27\xe0\x62\x37\xe0\x53\x37\xe0\x52\x56\x50"
        !          26685:             "\xf1\xd2\x66\x50\xc2\x76\xe0\x22\x86\xe0\x22\x87\xe2"
        !          26686:             "\x97\xd3\x97\xd2\xb6\x40\xf1\x82\xc6\x40\x72\xd6\x40"
        !          26687:             "\xf1\x62\xe7\x30\x52\xe0\x17\x73\xe0\x17\x3f\x1a\x8e" }  },
        !          26688:       /* --- pixel bitmap for cmmib325 char#4 \Xi --- */
        !          26689:       {   4,63484,                      /* character number, location */
        !          26690:          31, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          26691:           { 38,   31, 3,151, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          26692:             "\x8e\x0e\x02\x7e\x0e\x03\xf2\x7e\x0e\x02\x10\x63\xe0"
        !          26693:             "\xb3\x10\xf2\x62\xe0\xc2\x20\xe0\xe0\xa0\xf1\xa2\xe0"
        !          26694:             "\x22\x80\xae\x06\xe0\x3e\x07\x80\xf1\x9e\x06\x90\x8e"
        !          26695:             "\x07\xe0\x33\xe0\x12\xe0\x42\xe0\x22\xa0\xf2\xe0\xe0"
        !          26696:             "\xa0\xf1\x22\xe0\xc2\x60\x22\xe0\xb3\x73\xe0\xb3\x60"
        !          26697:             "\xf2\x1e\x0e\x02\x7e\x0e\x03\x7e\x0e\x02\x8f" }  },
        !          26698:       /* --- pixel bitmap for cmmib325 char#5 \Pi --- */
        !          26699:       {   5,64801,                      /* character number, location */
        !          26700:          31, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          26701:           { 43,   31, 3,151, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          26702:             "\xf1\x8e\x0e\x07\xf1\xc6\xe6\x50\xb7\xd7\xe0\x27\xd6"
        !          26703:             "\x60\xf1\xb6\xe6\x60\xa7\xd7\xe0\x27\xd6\x70\xf1\xa6"
        !          26704:             "\xe6\x70\x97\xd7\xe0\x27\xd6\x80\xf1\x96\xe6\x80\x87"
        !          26705:             "\xd7\xe0\x27\xd6\x90\xf1\x86\xe6\x90\x77\xd7\xe0\x27"
        !          26706:             "\xd6\xa0\xf1\x76\xe6\xa0\x67\xd7\xe0\x27\xd6\xb0\xf1"
        !          26707:             "\x66\xe6\xb0\x57\xd7\xbf\x1e\x02\x4e\x02\x7f" }  },
        !          26708:       /* --- pixel bitmap for cmmib325 char#6 \Sigma --- */
        !          26709:       {   6,66042,                      /* character number, location */
        !          26710:          31, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          26711:           { 38,   31, 3,191, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          26712:             "\x8e\x0e\x02\x7e\x0e\x03\x88\xe0\x16\xa7\xe0\x34\xa8"
        !          26713:             "\xe0\x33\xb7\xe0\x33\xb8\xe0\x23\xc7\xe0\x23\xc8\xe0"
        !          26714:             "\x13\xd7\xe0\x12\xe8\xe2\xe0\x17\xe0\xe0\x38\xe0\x30"
        !          26715:             "\xf1\xe8\xe0\x20\xe0\x17\xe0\xe0\x46\xe0\xe0\x44\xe0"
        !          26716:             "\xe0\x54\xe0\xe0\x53\xe0\x12\xe0\x33\xe0\x13\xe0\x14"
        !          26717:             "\xe0\x22\xe0\x13\xe0\x33\xe3\xe0\x43\xc4\xe0\x43\xc3"
        !          26718:             "\xe0\x54\xa4\xe0\x55\x93\xe0\x47\x8e\x0e\x02\x7e\x0e"
        !          26719:             "\x03\x7e\x0e\x02\x80" }  },
        !          26720:       /* --- pixel bitmap for cmmib325 char#7 \Upsilon --- */
        !          26721:       {   7,67152,                      /* character number, location */
        !          26722:          32, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          26723:           { 34,   32, 3,137, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          26724:             "\x65\xe0\x16\x69\xb9\x4b\x9b\x2d\x6d\x1e\x5e\x13\x57"
        !          26725:             "\x46\x56\x85\x35\x84\x95\x25\x92\xc4\x24\xe0\xa4\x14"
        !          26726:             "\xd0\xf1\xc8\xe0\xf1\xc7\xe0\x10\xf2\xc6\xe0\x20\xf1"
        !          26727:             "\xb7\xe0\x20\xf1\xb6\xe0\x30\xf1\xa7\xe0\x30\xf1\xa6"
        !          26728:             "\xe0\x40\xf1\x97\xe0\x40\xf1\x96\xe0\x50\x87\xe0\x50"
        !          26729:             "\xf1\x2e\x04\xe3" }  },
        !          26730:       /* --- pixel bitmap for cmmib325 char#8 \Phi --- */
        !          26731:       {   8,68252,                      /* character number, location */
        !          26732:          31, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          26733:           { 31,   31, 3,145, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          26734:             "\xf1\xae\x05\x20\xf1\xe0\x26\x90\xf1\xe0\x17\x90\xe0"
        !          26735:             "\x16\xe0\x7c\xe0\x2e\x05\x97\x27\x16\x76\x46\x37\x37"
        !          26736:             "\x56\x46\x10\xf1\x17\x57\x47\x0f\x17\x66\x57\x07\x57"
        !          26737:             "\x5e\x57\x47\x17\x56\x56\x27\x56\x46\x46\x47\x36\x67"
        !          26738:             "\x27\x16\xae\x05\xe0\x1c\xc0\xf1\xa7\xe0\xf1\xa6\xe0"
        !          26739:             "\x10\x97\xe0\x10\xf1\x3e\x04\xa0" }  },
        !          26740:       /* --- pixel bitmap for cmmib325 char#9 \Psi --- */
        !          26741:       {   9,69417,                      /* character number, location */
        !          26742:          31, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          26743:           { 34,   31, 3,157, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          26744:             "\xf1\x9e\x05\x60\xf1\xe0\x16\xd0\xf1\xe7\xd7\x76\x7e"
        !          26745:             "\x01\x66\x68\x26\x57\x57\x46\x57\x47\x30\xf1\x26\x56"
        !          26746:             "\x56\x40\x26\x47\x47\x57\x47\x46\x66\x56\x56\x66\x56"
        !          26747:             "\x47\x66\x47\x46\x76\x47\x37\x85\x46\x46\x96\x36\x36"
        !          26748:             "\xb5\x27\x26\xde\x05\xe0\x2e\x02\xe0\x7a\xe0\x20\xf1"
        !          26749:             "\x97\xe0\x40\xf1\x96\xe0\x50\x87\xe0\x50\xf1\x2e\x04"
        !          26750:             "\xe0" }  },
        !          26751:       /* --- pixel bitmap for cmmib325 char#10 \Omega --- */
        !          26752:       {  10,70692,                      /* character number, location */
        !          26753:          32, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          26754:           { 35,   32, 3,165, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          26755:             "\xe0\x3a\xe0\x8e\x02\xe0\x37\x76\xd6\xb6\xa7\xd6\x87"
        !          26756:             "\xe7\xf1\x67\xe0\x26\x57\xe0\x36\x57\xe0\x27\x48\xe0"
        !          26757:             "\x27\xf1\x47\xe0\x37\x47\xe0\x28\x47\xe0\x27\x57\xe0"
        !          26758:             "\x18\x57\xe0\x17\x67\xe7\x86\xe6\x96\xd6\xb5\xd5\xc5"
        !          26759:             "\xc5\xe4\xc4\xe0\x14\xb4\x92\x63\xb3\x62\x22\x63\xa4"
        !          26760:             "\x53\x22\x63\xa3\x62\x32\x63\x93\x63\x3b\x9b\x4b\x9a"
        !          26761:             "\x5a\x9b\x5a\x9a\x65" }  },
        !          26762:       /* --- pixel bitmap for cmmib325 char#11 \alpha --- */
        !          26763:       {  11,71804,                      /* character number, location */
        !          26764:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          26765:           { 31,   20, 3,101, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          26766:             "\xb7\xe0\x7d\xe0\x26\x55\x62\x65\x85\x52\x55\xa5\x42"
        !          26767:             "\x45\xb5\x32\x46\xb6\x22\x20\xf1\x16\xd5\x12\x30\x16"
        !          26768:             "\xd7\x46\xe7\x46\xe6\x5f\x16\xe5\x60\x15\xe5\x75\xd6"
        !          26769:             "\x84\xb3\x15\x85\x65\x25\x32\x4d\x58\x78\xa5\x25" }  },
        !          26770:       /* --- pixel bitmap for cmmib325 char#12 \beta --- */
        !          26771:       {  12,72925,                      /* character number, location */
        !          26772:          31, 0,   -9, 0,      /* topleft row,col, and botleft row,col */
        !          26773:           { 28,   40, 3,157, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          26774:             "\xe0\x37\xe0\x5b\xe0\x14\x64\xd3\x94\xb2\xb4\xa2\xc4"
        !          26775:             "\x92\xd4\x83\xc5\x82\xd5\x72\xe4\x82\xd4\x92\x57\x14"
        !          26776:             "\x92\x4c\x92\x4c\xa2\x5c\x30\xf1\x62\xe4\x20\x52\xe0"
        !          26777:             "\x14\x20\xf2\x52\xe0\x15\x10\xf2\x42\xe0\x15\x20\x42"
        !          26778:             "\xe0\x14\x63\xe5\x64\xd4\x74\xc4\x82\x13\x85\x82\x3e"
        !          26779:             "\x92\x4a\xa0\xf1\x22\xe0\xa0\xf3\x12\xe0\xbf\x22\xe0"
        !          26780:             "\xca" }  },
        !          26781:       /* --- pixel bitmap for cmmib325 char#13 \gamma --- */
        !          26782:       {  13,73914,                      /* character number, location */
        !          26783:          20, 0,  -10, 0,      /* topleft row,col, and botleft row,col */
        !          26784:           { 28,   30, 3,113, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          26785:             "\x76\xd2\x5a\xa2\x5c\x92\x4e\x72\x4e\x02\x62\x33\xa4"
        !          26786:             "\x52\x42\xd3\x42\x32\xe0\x12\x32\xe0\x72\x32\x40\xf1"
        !          26787:             "\xe0\x42\x12\x50\xf1\xe0\x44\x60\xf2\xe0\x43\x70\xf2"
        !          26788:             "\xe0\x42\x80\xf2\xe0\x33\x80\xf3\xe0\x23\x90\xf2\xe0"
        !          26789:             "\x13\xa0\xe0\x12\xb4" }  },
        !          26790:       /* --- pixel bitmap for cmmib325 char#14 \delta --- */
        !          26791:       {  14,74911,                      /* character number, location */
        !          26792:          32, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          26793:           { 21,   32, 3,107, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          26794:             "\xa7\xdb\x92\x38\x82\x55\x83\x73\x92\xe0\x53\xe0\x44"
        !          26795:             "\xe0\x35\xe0\x35\xe0\x26\xe0\x26\xe0\x17\xbb\x9c\x84"
        !          26796:             "\x36\x74\x56\x54\x66\x45\x66\x20\xf2\x15\x85\x2f\x15"
        !          26797:             "\x94\x35\x85\x3f\x15\x84\x45\x74\x64\x74\x74\x54\x9b"
        !          26798:             "\xb8\x90" }  },
        !          26799:       /* --- pixel bitmap for cmmib325 char#15 \epsilon --- */
        !          26800:       {  15,75849,                      /* character number, location */
        !          26801:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          26802:           { 19,   20, 3,49, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          26803:             "\xa8\x9a\x76\xb6\xc6\xd5\xd6\xc6\xc0\xf1\x1e\x01\x3f"
        !          26804:             "\x26\xd0\xf2\x15\xd0\x25\xa1\x46\x64\x5c\x98\x4c" }  },
        !          26805:       /* --- pixel bitmap for cmmib325 char#16 \zeta --- */
        !          26806:       {  16,76777,                      /* character number, location */
        !          26807:          31, 2,   -9, 2,      /* topleft row,col, and botleft row,col */
        !          26808:           { 22,   40, 3,119, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          26809:             "\xd2\x70\xf1\xc2\x80\xc9\xda\xba\xb3\x16\xb3\xe0\x34"
        !          26810:             "\xe0\x43\xe0\x43\xe0\x43\xe0\x44\xe0\xf1\x34\xe0\x10"
        !          26811:             "\xf1\x24\xe0\x20\xf3\x14\xe0\x3f\x35\xe0\x36\xe0\x35"
        !          26812:             "\xe0\x37\xe0\x1a\xdd\xae\x9e\xac\xe8\xe0\x35\x40\xf1"
        !          26813:             "\xe4\x40\x82\x43\xd8\xe0\x25\x74" }  },
        !          26814:       /* --- pixel bitmap for cmmib325 char#17 \eta --- */
        !          26815:       {  17,77734,                      /* character number, location */
        !          26816:          20, 1,  -10, 1,      /* topleft row,col, and botleft row,col */
        !          26817:           { 25,   30, 3,99, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          26818:             "\x45\x76\x67\x4a\x32\x34\x23\x45\x22\x37\x74\x12\x46"
        !          26819:             "\x84\x12\x45\x96\x45\x95\xf2\x65\x95\xf3\x55\x95\x10"
        !          26820:             "\xf3\x45\x95\x20\x44\x95\x73\xa5\x30\xf1\xe0\x35\x30"
        !          26821:             "\xf3\xe0\x25\x40\xf2\xe0\x15\x50\xe0\x23\x65" }  },
        !          26822:       /* --- pixel bitmap for cmmib325 char#18 \theta --- */
        !          26823:       {  18,78552,                      /* character number, location */
        !          26824:          31, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          26825:           { 24,   31, 3,111, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          26826:             "\xd5\xe0\x2a\xd4\x44\xb4\x64\x94\x75\x74\x85\x65\x85"
        !          26827:             "\x10\xf1\x45\x96\x36\x96\x35\xa6\x26\xa6\x26\xa5\x26"
        !          26828:             "\xa6\x10\xf2\x1e\x08\x1f\x26\xa6\x26\xa5\x36\x96\x35"
        !          26829:             "\xa5\x45\x96\x45\x95\x64\x85\x74\x84\x94\x64\xa5\x35"
        !          26830:             "\xd9\xe0\x26\xd3" }  },
        !          26831:       /* --- pixel bitmap for cmmib325 char#19 \iota --- */
        !          26832:       {  19,79275,                      /* character number, location */
        !          26833:          20, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          26834:           { 15,   20, 3,51, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          26835:             "\x63\xb4\x60\xf3\x45\x60\xf2\x35\x70\xf2\x25\x80\x15"
        !          26836:             "\xa5\x72\x15\x62\x15\x72\x15\x53\x34\x34\x4a\x75\x76" }  },
        !          26837:       /* --- pixel bitmap for cmmib325 char#20 \kappa --- */
        !          26838:       {  20,80231,                      /* character number, location */
        !          26839:          20, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          26840:           { 26,   20, 3,95, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          26841:             "\x53\xb4\x74\x96\x65\x78\x65\x62\x25\x65\x43\x43\x75"
        !          26842:             "\x32\xe0\x15\x32\xe0\x25\x13\xe0\x38\xe0\x4e\xb5\x39"
        !          26843:             "\x95\x76\x85\x85\x85\x85\x52\x0f\x15\x95\x42\x15\x95"
        !          26844:             "\x32\x25\xa4\x23\x24\xc7\x33\xe4\x54" }  },
        !          26845:       /* --- pixel bitmap for cmmib325 char#21 \lambda --- */
        !          26846:       {  21,81134,                      /* character number, location */
        !          26847:          31, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          26848:           { 27,   31, 3,116, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          26849:             "\x57\xe0\x68\xe0\x77\xe0\x76\xd0\xf1\x96\xc0\xf1\xa6"
        !          26850:             "\xb0\xb5\xb0\xf1\xb6\xa0\xf1\xc6\x90\xf1\xd6\x80\xf1"
        !          26851:             "\xe6\x70\xd8\xe0\x49\xe0\x33\x26\xe4\x36\xd4\x55\xc4"
        !          26852:             "\x66\xa5\x66\x86\x86\x66\x96\x56\xb6\x36\xc6\x26\xe6"
        !          26853:             "\x15\xe0\x16\x23\xe0\x36" }  },
        !          26854:       /* --- pixel bitmap for cmmib325 char#22 \mu --- */
        !          26855:       {  22,82210,                      /* character number, location */
        !          26856:          20, 2,  -10, 2,      /* topleft row,col, and botleft row,col */
        !          26857:           { 29,   30, 3,103, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          26858:             "\x83\xb3\xb4\xa4\x40\xf3\x65\x95\x40\xf3\x55\x95\x50"
        !          26859:             "\xf2\x45\x95\x60\x45\x95\x42\xf1\x36\x85\x42\x10\x36"
        !          26860:             "\x76\x32\x57\x43\x14\x32\x4e\x37\x55\x16\x65\x40\xf1"
        !          26861:             "\x25\xe0\x80\xf3\x15\xe0\x9f\x25\xe0\xa0\x13\xe0\xb6" }  },
        !          26862:       /* --- pixel bitmap for cmmib325 char#23 \nu --- */
        !          26863:       {  23,83061,                      /* character number, location */
        !          26864:          20, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          26865:           { 24,   20, 3,77, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          26866:             "\x19\xb3\x19\xa4\x46\x95\xf1\x45\xa5\xf1\x36\x95\x10"
        !          26867:             "\xf1\x35\x95\x20\x26\x85\x56\x75\x65\x75\x75\x65\x76"
        !          26868:             "\x55\x86\x45\x95\x35\xb5\x24\xca\xe8\xe0\x25\xe0\x51" }  },
        !          26869:       /* --- pixel bitmap for cmmib325 char#24 \xi --- */
        !          26870:       {  24,84217,                      /* character number, location */
        !          26871:          31, 1,   -9, 1,      /* topleft row,col, and botleft row,col */
        !          26872:           { 22,   40, 3,113, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          26873:             "\xd2\x70\xf1\xc2\x80\xc9\xbc\x8d\x86\x16\x86\xa0\xf1"
        !          26874:             "\x56\xb0\xf4\x46\xc0\x5d\xad\x9c\x9c\x93\xe0\x43\xe0"
        !          26875:             "\x44\xe0\x43\xe0\x30\xf1\x14\xe0\x3f\x15\xe0\x36\xe0"
        !          26876:             "\x37\xe0\x1a\xdc\xbe\x9e\xbc\xd9\xe0\x26\xe0\x44\xb3"
        !          26877:             "\x43\xc9\xe0\x25\x60" }  },
        !          26878:       /* --- pixel bitmap for cmmib325 char#25 \pi --- */
        !          26879:       {  25,85197,                      /* character number, location */
        !          26880:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          26881:           { 29,   20, 3,97, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          26882:             "\x6e\x09\x5e\x0a\x4e\x0b\x3e\x0b\x33\x62\x52\xa2\x82"
        !          26883:             "\x52\xa1\x83\x52\xe0\x52\x62\x90\xf1\x93\x53\x90\x84"
        !          26884:             "\x54\xe0\x23\x64\x80\xf1\x74\x64\x80\x65\x65\xd4\x75"
        !          26885:             "\x70\xf1\x55\x76\x60\x54\x94\xd2\xb2\x86" }  },
        !          26886:       /* --- pixel bitmap for cmmib325 char#26 \rho --- */
        !          26887:       {  26,86073,                      /* character number, location */
        !          26888:          20, 2,  -10, 2,      /* topleft row,col, and botleft row,col */
        !          26889:           { 26,   30, 3,99, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          26890:             "\xe7\xe0\x2c\xd4\x55\xa5\x75\x85\x85\x84\x96\x65\x96"
        !          26891:             "\xf2\x55\xa6\xf2\x45\xa6\x10\x45\x96\x20\xf1\x35\xa5"
        !          26892:             "\x30\x35\x95\x77\x55\x85\x1b\x95\x36\xa0\xf1\x25\xe0"
        !          26893:             "\x50\xf3\x15\xe0\x6f\x25\xe0\x70\x13\xe0\x80" }  },
        !          26894:       /* --- pixel bitmap for cmmib325 char#27 \sigma --- */
        !          26895:       {  27,87047,                      /* character number, location */
        !          26896:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          26897:           { 28,   20, 3,71, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          26898:             "\xae\x04\x7e\x07\x6e\x08\x5e\x08\x55\x75\xa5\x95\x85"
        !          26899:             "\xa5\x60\xf2\x15\xb5\x6f\x25\xb5\x7f\x15\xa5\x80\x14"
        !          26900:             "\x95\xa4\x85\xc4\x65\xec\xe0\x47\xe0\x20" }  },
        !          26901:       /* --- pixel bitmap for cmmib325 char#28 \tau --- */
        !          26902:       {  28,87840,                      /* character number, location */
        !          26903:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          26904:           { 26,   20, 3,63, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          26905:             "\x6e\x06\x5e\x07\x4e\x08\x3e\x08\x33\x73\xc2\x92\xd1"
        !          26906:             "\x93\xc0\xf1\xb3\xc0\xf2\xa4\xc0\xf2\x94\xd0\xf2\x85"
        !          26907:             "\xd0\x75\xe0\x83\xe0\x1c" }  },
        !          26908:       /* --- pixel bitmap for cmmib325 char#29 \upsilon --- */
        !          26909:       {  29,88761,                      /* character number, location */
        !          26910:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          26911:           { 26,   20, 3,81, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          26912:             "\x55\xb3\x68\x86\x32\x34\x86\x22\x45\x67\x12\x55\x67"
        !          26913:             "\x12\x45\x88\x55\xb3\xf2\x65\xd2\xf1\x55\xd2\x10\xf1"
        !          26914:             "\x55\xc2\x20\x55\xb2\x85\xa2\x95\x92\xb5\x63\xdc\xe0"
        !          26915:             "\x28\x93" }  },
        !          26916:       /* --- pixel bitmap for cmmib325 char#30 \phi --- */
        !          26917:       {  30,89697,                      /* character number, location */
        !          26918:          31, 2,   -9, 2,      /* topleft row,col, and botleft row,col */
        !          26919:           { 29,   40, 3,143, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          26920:             "\xe0\x52\x80\xf3\xe0\x42\x90\xf3\xe0\x32\xa0\xf1\xe0"
        !          26921:             "\x22\xb0\xad\xee\x03\xa5\x42\x54\x84\x62\x64\x64\x72"
        !          26922:             "\x74\x44\x82\x74\x35\x72\x85\xf2\x15\x82\x85\x0f\x25"
        !          26923:             "\x82\x85\x15\x82\x75\x34\x72\x84\x44\x72\x74\x64\x62"
        !          26924:             "\x64\x84\x52\x45\xae\x03\xed\xa0\xf1\xb2\xe0\x20\xf3"
        !          26925:             "\xa2\xe0\x30\xf2\x92\xe0\x40" }  },
        !          26926:       /* --- pixel bitmap for cmmib325 char#31 \chi --- */
        !          26927:       {  31,90832,                      /* character number, location */
        !          26928:          20, 2,   -9, 2,      /* topleft row,col, and botleft row,col */
        !          26929:           { 29,   29, 3,147, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          26930:             "\x36\xe0\x42\x29\xe0\x13\x12\x36\xd3\x12\x56\xb3\x97"
        !          26931:             "\x93\xb6\x83\xd6\x63\xe6\x53\xe0\x25\x43\xe0\x36\x23"
        !          26932:             "\xe0\x46\x13\xe0\x68\xe0\x77\xe0\x86\xc0\xf1\xc5\xc0"
        !          26933:             "\xb7\xe0\x72\x15\xe0\x62\x25\xe0\x52\x36\xe0\x32\x46"
        !          26934:             "\xe0\x22\x66\xe2\x76\xd2\x96\xb2\xa6\xa2\xc6\x52\x12"
        !          26935:             "\xd7\x32\x12\xe0\x1a\x21\xe0\x47\x32" }  },
        !          26936:       /* --- pixel bitmap for cmmib325 char#32 \psi --- */
        !          26937:       {  32,91961,                      /* character number, location */
        !          26938:          31, 1,   -9, 1,      /* topleft row,col, and botleft row,col */
        !          26939:           { 32,   40, 3,167, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          26940:             "\xf2\xe0\x82\x80\xf3\xe0\x72\x90\xf3\xe0\x62\xa0\x55"
        !          26941:             "\x92\x63\x68\x72\x55\x42\x34\x72\x56\x22\x45\x62\x47"
        !          26942:             "\x12\x55\x52\x57\x12\x45\x62\x68\x55\x62\x93\x66\x62"
        !          26943:             "\xa2\xf1\x65\x62\xb2\xf1\x55\x72\xa2\x10\x55\x62\xa2"
        !          26944:             "\x75\x62\x92\x85\x62\x82\x95\x62\x72\xb5\x42\x63\xd6"
        !          26945:             "\x22\x44\xe0\x1e\x01\xe0\x69\xc0\xf3\xe2\xe0\x20\xf3"
        !          26946:             "\xd2\xe0\x30\xc2\xe0\x43" }  },
        !          26947:       /* --- pixel bitmap for cmmib325 char#33 \omega --- */
        !          26948:       {  33,93116,                      /* character number, location */
        !          26949:          20, 0,    0, 0,      /* topleft row,col, and botleft row,col */
        !          26950:           { 31,   20, 3,109, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          26951:             "\x52\xe0\x53\x63\xe0\x45\x52\xe0\x56\x33\xe0\x47\x23"
        !          26952:             "\xe0\x57\x22\xe0\x76\x22\xe0\x94\x12\xc3\xa3\x12\xc3"
        !          26953:             "\xb2\x12\xb4\xb4\xc4\xa2\x13\xb3\xb2\x13\xb3\xa3\x13"
        !          26954:             "\xa4\x93\x24\x86\x73\x4e\x0d\x4d\x1c\x6b\x2b\x89\x49"
        !          26955:             "\xa6\x85\x82" }  },
        !          26956:       /* --- pixel bitmap for cmmib325 char#34 \varepsilon --- */
        !          26957:       {  34,94135,                      /* character number, location */
        !          26958:          21, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
        !          26959:           { 20,   22, 3,75, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          26960:             "\xa7\xac\x6e\x01\x45\x74\x42\xc1\x10\xf2\x32\xe0\x10"
        !          26961:             "\x32\x44\xab\xab\x8b\x82\xe0\x20\xf1\x12\xe0\x32\xe0"
        !          26962:             "\x42\xe0\x12\x22\xe2\x24\xa3\x4e\x01\x6d\x98\x73" }  },
        !          26963:       /* --- pixel bitmap for cmmib325 char#35 \vartheta --- */
        !          26964:       {  35,95166,                      /* character number, location */
        !          26965:          31, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          26966:           { 28,   31, 3,147, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          26967:             "\xe0\x36\xe0\x6a\xe0\x33\x54\xe0\x13\x64\xe0\x12\x84"
        !          26968:             "\xd2\x94\x10\xf1\xc2\x95\xc2\x86\xc3\x76\xd2\x76\x45"
        !          26969:             "\x52\x66\x37\x53\x45\x32\x34\x5b\x32\x35\x69\x10\xf1"
        !          26970:             "\x12\x45\x97\x02\x45\x96\x20\xf1\x65\x96\x20\x65\x95"
        !          26971:             "\x85\x96\x30\xf1\x55\x95\x40\x55\x85\xa5\x84\xb5\x74"
        !          26972:             "\xc5\x64\xd6\x44\xe0\x1c\xe0\x48\xc3" }  },
        !          26973:       /* --- pixel bitmap for cmmib325 char#36 \varpi --- */
        !          26974:       {  36,96471,                      /* character number, location */
        !          26975:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          26976:           { 42,   20, 3,129, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          26977:             "\x6e\x0e\x08\x5e\x0e\x09\x4e\x0e\x0a\x3e\x0e\x0a\x33"
        !          26978:             "\x52\xe0\xb2\x42\x62\xe0\xc2\x41\x62\xe0\xd2\xb2\xc2"
        !          26979:             "\xd2\xa2\xd2\xd2\xa2\xc3\xd2\x92\xd3\xc2\xa2\xc4\xc2"
        !          26980:             "\xa2\xb5\xb2\xb2\xa6\xa3\xb2\x94\x13\x83\xc4\x55\x24"
        !          26981:             "\x54\xdd\x3c\xe0\x1b\x5a\xe0\x38\x88\xe0\x55\xb5\xc4" }  },
        !          26982:       /* --- pixel bitmap for cmmib325 char#37 \varrho --- */
        !          26983:       {  37,97424,                      /* character number, location */
        !          26984:          20, 4,   -9, 4,      /* topleft row,col, and botleft row,col */
        !          26985:           { 24,   29, 3,99, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          26986:             "\xc7\xec\xb4\x55\x85\x75\x65\x85\x64\x96\x45\x96\xf2"
        !          26987:             "\x35\xa6\xf2\x25\xa6\x10\x25\x96\x20\xf1\x16\x95\x30"
        !          26988:             "\x16\x85\x52\x14\x55\x72\x2c\x72\x57\xaf\x22\xe0\x84"
        !          26989:             "\xe0\x6e\x02\x8e\x03\x8e\x02\xae\xe0\x82\x74" }  },
        !          26990:       /* --- pixel bitmap for cmmib325 char#38 \varsigma --- */
        !          26991:       {  38,98293,                      /* character number, location */
        !          26992:          20, 2,   -4, 2,      /* topleft row,col, and botleft row,col */
        !          26993:           { 18,   24, 3,53, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          26994:             "\x97\x8c\x55\x53\x34\xd4\xd4\xe3\xef\x24\xe5\xd6\xc9"
        !          26995:             "\xaa\x9b\x8b\x9a\xa9\xb7\xd5\x20\xf1\xb4\x30\x77\xc4"
        !          26996:             "\x66" }  },
        !          26997:       /* --- pixel bitmap for cmmib325 char#39 \varphi --- */
        !          26998:       {  39,99248,                      /* character number, location */
        !          26999:          20, 2,  -10, 2,      /* topleft row,col, and botleft row,col */
        !          27000:           { 31,   30, 3,141, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          27001:             "\x52\xe0\x15\x82\xe9\x52\xea\x52\xdc\x32\xd4\x55\x22"
        !          27002:             "\xc3\x93\x22\xb3\xb2\x12\xc2\xc2\x12\xb2\xd2\x12\xb1"
        !          27003:             "\xe2\x0f\x12\xb2\xd2\x13\x92\xd2\x32\x92\xc3\x34\x72"
        !          27004:             "\xa4\x56\x33\x67\x7e\x08\xae\x06\xde\x02\xe0\x4a\xe0"
        !          27005:             "\x83\xe0\x40\xf2\x94\xe0\x40\x85\xe0\xc4\xe0\x50\xf2"
        !          27006:             "\x75\xe0\x50\x83\xe0\x6c" }  },
        !          27007:       /* --- pixel bitmap for cmmib325 char#40 \bfleftharpoonup --- */
        !          27008:       {  40,115758,                     /* character number, location */
        !          27009:          24, 3,   10, 3,      /* topleft row,col, and botleft row,col */
        !          27010:           { 46,   14, 2,28, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          27011:             "\x0c\x01\x2c\x03\x2a\x04\x2a\x03\x2a\x04\x29\x04\x29"
        !          27012:             "\x04\x29\x05\x28\x05\x28\x05\x28\x05\x27\x2d\x00\xff"
        !          27013:             "\x01\x2e" }  },
        !          27014:       /* --- pixel bitmap for cmmib325 char#41 \bfleftharpoondown --- */
        !          27015:       {  41,116800,                     /* character number, location */
        !          27016:          13, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          27017:           { 46,   14, 2,29, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          27018:             "\xff\x01\x00\x2e\x01\x2d\x03\x05\x2a\x05\x2a\x05\x2a"
        !          27019:             "\x05\x2a\x04\x2b\x04\x2b\x04\x2b\x03\x2b\x04\x2b\x03"
        !          27020:             "\x2c\x01\x21" }  },
        !          27021:       /* --- pixel bitmap for cmmib325 char#42 \bfrightharpoonup --- */
        !          27022:       {  42,117840,                     /* character number, location */
        !          27023:          24, 3,   10, 3,      /* topleft row,col, and botleft row,col */
        !          27024:           { 46,   14, 2,28, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          27025:             "\x21\x01\x2c\x03\x2b\x04\x2b\x03\x2b\x04\x2b\x04\x2b"
        !          27026:             "\x04\x2a\x05\x2a\x05\x2a\x05\x2a\x05\x03\x2d\x01\xff"
        !          27027:             "\x01\x2e" }  },
        !          27028:       /* --- pixel bitmap for cmmib325 char#43 \bfrightharpoondown --- */
        !          27029:       {  43,118883,                     /* character number, location */
        !          27030:          13, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          27031:           { 46,   14, 2,29, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          27032:             "\xff\x01\x00\x2e\x00\x2d\x27\x05\x28\x05\x28\x05\x28"
        !          27033:             "\x05\x29\x04\x29\x04\x29\x04\x2a\x03\x2a\x04\x2a\x03"
        !          27034:             "\x2c\x01\x0c" }  },
        !          27035:       /* --- pixel bitmap for cmmib325 char#44 ` --- */
        !          27036:       {  44,119318,                     /* character number, location */
        !          27037:          23, 3,   10, 3,      /* topleft row,col, and botleft row,col */
        !          27038:           {  8,   13, 3,18, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          27039:             "\x35\x26\x1b\x4f\x43\x54\x57\x26\x35" }  },
        !          27040:       /* --- pixel bitmap for cmmib325 char#45 ' --- */
        !          27041:       {  45,119752,                     /* character number, location */
        !          27042:          23, 3,   10, 3,      /* topleft row,col, and botleft row,col */
        !          27043:           {  8,   13, 3,19, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          27044:             "\x05\x36\x27\x54\xf4\x53\x4b\x16\x25\x30" }  },
        !          27045:       /* --- pixel bitmap for cmmib325 char#46 \triangleright --- */
        !          27046:       {  46,120303,                     /* character number, location */
        !          27047:          24, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          27048:           { 22,   25, 3,91, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          27049:             "\x12\xe0\x55\xe0\x36\xe0\x28\xe3\x16\xc3\x26\xb3\x46"
        !          27050:             "\x93\x66\x73\x77\x53\x96\x43\xb6\x23\xd9\xe8\xd9\xb6"
        !          27051:             "\x23\x96\x43\x86\x53\x66\x73\x46\x93\x27\xa3\x16\xc8"
        !          27052:             "\xe6\xe0\x25\xe0\x42\xe0\x5e" }  },
        !          27053:       /* --- pixel bitmap for cmmib325 char#47 \triangleleft --- */
        !          27054:       {  47,120911,                     /* character number, location */
        !          27055:          24, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          27056:           { 22,   25, 3,94, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          27057:             "\xe0\x53\xe0\x35\xe0\x26\xe8\xc6\x13\xb6\x23\x96\x43"
        !          27058:             "\x76\x63\x57\x73\x46\x93\x26\xb3\x15\xd8\xe3\x15\xd3"
        !          27059:             "\x26\xb3\x46\x93\x56\x83\x76\x63\x96\x43\xa7\x23\xc6"
        !          27060:             "\x13\xe8\xe0\x26\xe0\x35\xe0\x53" }  },
        !          27061:       /* --- pixel bitmap for cmmib325 char#48 \0 --- */
        !          27062:       {  48,105909,                     /* character number, location */
        !          27063:          21, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          27064:           { 22,   22, 3,47, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          27065:             "\x78\xbe\x75\x65\x55\x85\x20\xf2\x15\xa5\x1f\x86\xa6"
        !          27066:             "\xf1\x15\xa5\x10\x25\x85\x55\x65\x7e\xb8\x70" }  },
        !          27067:       /* --- pixel bitmap for cmmib325 char#49 \1 --- */
        !          27068:       {  49,106716,                     /* character number, location */
        !          27069:          21, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          27070:           { 18,   21, 3,22, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          27071:             "\xa2\xd5\x6f\x1c\x60\xfe\x75\x60\xf1\x1e\x03" }  },
        !          27072:       /* --- pixel bitmap for cmmib325 char#50 \2 --- */
        !          27073:       {  50,107704,                     /* character number, location */
        !          27074:          21, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          27075:           { 21,   21, 3,71, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          27076:             "\x69\xad\x64\x67\x42\x97\x23\xa6\x24\x97\x14\xa6\x22"
        !          27077:             "\xb6\xe7\xe6\xe6\xe5\xe5\xe0\x14\x62\x74\x82\x63\x93"
        !          27078:             "\x4e\x03\x3e\x03\x2e\x05\x1f\x1e\x06\x16" }  },
        !          27079:       /* --- pixel bitmap for cmmib325 char#51 \3 --- */
        !          27080:       {  51,108759,                     /* character number, location */
        !          27081:          21, 2,  -10, 2,      /* topleft row,col, and botleft row,col */
        !          27082:           { 22,   31, 3,111, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          27083:             "\x78\xcc\x93\x56\x72\x86\x54\x86\x20\xf2\x25\x76\x20"
        !          27084:             "\x34\x67\x20\xf1\xd6\x30\xc6\xe0\x15\x60\xf1\x78\x70"
        !          27085:             "\xd5\xe0\x45\xe0\x36\x20\xf1\xe0\x16\x10\xe0\x17\x22"
        !          27086:             "\xb7\x14\xa7\x0f\x16\x97\x06\x96\x24\x97\x23\xa6\x44"
        !          27087:             "\x76\x7d\xb9\x79" }  },
        !          27088:       /* --- pixel bitmap for cmmib325 char#52 \4 --- */
        !          27089:       {  52,109734,                     /* character number, location */
        !          27090:          21, 1,   -9, 1,      /* topleft row,col, and botleft row,col */
        !          27091:           { 24,   30, 3,96, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          27092:             "\xe0\x23\xe0\x64\xe0\x55\xe0\x46\x50\xf1\xc7\x50\xb2"
        !          27093:             "\x15\xe0\x13\x15\xe3\x25\xd3\x35\xc3\x45\xb3\x55\xb2"
        !          27094:             "\x65\xa2\x75\x93\x75\x83\x85\x73\x95\x63\xa5\x53\xb5"
        !          27095:             "\x5f\x1e\x0a\xf6\xe5\x50\xf1\x9e\x01" }  },
        !          27096:       /* --- pixel bitmap for cmmib325 char#53 \5 --- */
        !          27097:       {  53,110815,                     /* character number, location */
        !          27098:          21, 3,  -10, 3,      /* topleft row,col, and botleft row,col */
        !          27099:           { 20,   31, 3,103, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          27100:             "\x23\xa3\x4e\x02\x4e\x01\x5e\x6d\x7b\x97\xb0\xf3\x22"
        !          27101:             "\xe0\x20\x22\x36\x92\x1b\x65\x55\x54\x75\x43\x95\x32"
        !          27102:             "\xa5\xe0\x15\x10\xf1\xe6\x22\xa6\x14\x96\x0f\x15\x96"
        !          27103:             "\x05\x95\x14\xa5\x22\xa5\x42\x94\x63\x55\x8b\xb6\x84" }  },
        !          27104:       /* --- pixel bitmap for cmmib325 char#54 \6 --- */
        !          27105:       {  54,111760,                     /* character number, location */
        !          27106:          30, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          27107:           { 22,   31, 3,97, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          27108:             "\xa7\xdb\x95\x63\x74\x84\x54\x85\x44\x95\x35\xa3\x45"
        !          27109:             "\xe0\x10\xf2\x15\xe0\x26\x38\x56\x2a\x46\x11\x74\x38"
        !          27110:             "\x75\x2f\x17\x95\x1f\x46\xa6\xf1\x15\xa6\x15\xa5\x34"
        !          27111:             "\xa5\x35\x94\x54\x84\x75\x54\xab\xd7\x75" }  },
        !          27112:       /* --- pixel bitmap for cmmib325 char#55 \7 --- */
        !          27113:       {  55,112723,                     /* character number, location */
        !          27114:          21, 3,  -10, 3,      /* topleft row,col, and botleft row,col */
        !          27115:           { 22,   31, 3,87, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          27116:             "\x12\xe0\x50\xf1\x1e\x07\x1e\x06\x2e\x05\x2e\x06\x23"
        !          27117:             "\xd3\x32\xd3\x42\xc3\x52\xb3\xe0\x52\xe0\x53\xe0\x43"
        !          27118:             "\x80\xf1\xa3\x90\xf1\x93\xa0\xf1\x84\xa0\xf3\x74\xb0"
        !          27119:             "\xf6\x65\xb0\x73\xc4" }  },
        !          27120:       /* --- pixel bitmap for cmmib325 char#56 \8 --- */
        !          27121:       {  56,113678,                     /* character number, location */
        !          27122:          30, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          27123:           { 22,   31, 3,97, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          27124:             "\x87\xdb\x94\x64\x74\x84\x63\x94\x30\xf2\x24\xa4\x20"
        !          27125:             "\x25\x94\x46\x84\x48\x54\x69\x24\x7e\x9c\xbc\xae\x74"
        !          27126:             "\x1b\x45\x4a\x33\x79\x24\x9c\xca\xd5\x0f\x24\xe4\x04"
        !          27127:             "\xe3\x24\xc4\x34\xb3\x55\x74\x7d\xc8\x75" }  },
        !          27128:       /* --- pixel bitmap for cmmib325 char#57 \9 --- */
        !          27129:       {  57,114637,                     /* character number, location */
        !          27130:          21, 2,  -10, 2,      /* topleft row,col, and botleft row,col */
        !          27131:           { 22,   31, 3,97, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          27132:             "\x77\xdc\x94\x55\x74\x84\x55\x85\x35\xa4\x35\xa5\x1f"
        !          27133:             "\x16\xa5\x1f\x46\xa6\xf1\x15\x97\x25\x78\x34\x71\x16"
        !          27134:             "\x4a\x26\x58\x36\xf2\xe0\x25\x10\xe0\x15\x43\xa5\x35"
        !          27135:             "\x94\x45\x84\x54\x85\x63\x65\x9c\xc7\xa5" }  },
        !          27136:       /* --- pixel bitmap for cmmib325 char#58 . --- */
        !          27137:       {  58,121448,                     /* character number, location */
        !          27138:           7, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          27139:           {  7,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          27140:             "\x1c\xdf\xff\xff\xf7\x71\x00" }  },
        !          27141:       /* --- pixel bitmap for cmmib325 char#59 , --- */
        !          27142:       {  59,122017,                     /* character number, location */
        !          27143:           7, 4,   -9, 4,      /* topleft row,col, and botleft row,col */
        !          27144:           {  8,   16, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          27145:             "\x1c\x3e\x7f\xff\xff\xfe\xdc\xc0\xc0\x60\x60\x70\x30"
        !          27146:             "\x18\x0c\x04" }  },
        !          27147:       /* --- pixel bitmap for cmmib325 char#60 < --- */
        !          27148:       {  60,122697,                     /* character number, location */
        !          27149:          27, 4,   -4, 4,      /* topleft row,col, and botleft row,col */
        !          27150:           { 32,   31, 2,62, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          27151:             "\x1d\x03\x1b\x05\x19\x07\x17\x07\x17\x07\x17\x07\x17"
        !          27152:             "\x07\x16\x08\x16\x08\x16\x08\x16\x07\x17\x07\x17\x07"
        !          27153:             "\x17\x07\x17\x07\x19\x05\x1b\x07\x1b\x07\x1b\x07\x1b"
        !          27154:             "\x07\x1b\x07\x1b\x08\x1a\x08\x1a\x08\x1b\x07\x1b\x07"
        !          27155:             "\x1b\x07\x1b\x07\x1b\x07\x1b\x05\x1d\x03" }  },
        !          27156:       /* --- pixel bitmap for cmmib325 char#61 / --- */
        !          27157:       {  61,123261,                     /* character number, location */
        !          27158:          34, 3,  -11, 3,      /* topleft row,col, and botleft row,col */
        !          27159:           { 20,   45, 3,169, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          27160:             "\xe0\x42\xe0\x33\xe0\x24\xf1\xe0\x23\x10\xe0\x14\xe0"
        !          27161:             "\x23\xe0\x24\x20\xf1\xe3\x30\xd4\xe0\x23\xe0\x24\x40"
        !          27162:             "\xf1\xc3\x50\xb4\xe0\x23\xe0\x24\x60\xf1\xa3\x70\x94"
        !          27163:             "\xe0\x23\xe0\x24\xe0\x23\xe0\x24\x90\xf1\x73\xa0\x64"
        !          27164:             "\xe0\x23\xe0\x24\xb0\xf1\x53\xc0\x44\xe0\x23\xe0\x24"
        !          27165:             "\xd0\xf1\x33\xe0\x24\xe0\x23\xe0\x24\xe0\x10\xf1\x13"
        !          27166:             "\xe0\x24\xe0\x2f\x13\xe0\x30" }  },
        !          27167:       /* --- pixel bitmap for cmmib325 char#62 > --- */
        !          27168:       {  62,124000,                     /* character number, location */
        !          27169:          27, 4,   -4, 4,      /* topleft row,col, and botleft row,col */
        !          27170:           { 32,   31, 2,63, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          27171:             "\x00\x03\x1d\x05\x1b\x07\x1b\x07\x1b\x07\x1b\x07\x1b"
        !          27172:             "\x07\x1b\x08\x1a\x08\x1a\x08\x1b\x07\x1b\x07\x1b\x07"
        !          27173:             "\x1b\x07\x1b\x07\x1b\x05\x19\x07\x17\x07\x17\x07\x17"
        !          27174:             "\x07\x17\x07\x16\x08\x16\x08\x16\x08\x16\x07\x17\x07"
        !          27175:             "\x17\x07\x17\x07\x17\x07\x19\x05\x1b\x03\x1d" }  },
        !          27176:       /* --- pixel bitmap for cmmib325 char#63 \star --- */
        !          27177:       {  63,124739,                     /* character number, location */
        !          27178:          23, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          27179:           { 24,   23, 3,69, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          27180:             "\xf2\xb2\xb0\xf4\xa4\xa5\x54\x5e\x0e\x01\x2e\x06\x6e"
        !          27181:             "\x02\xac\x60\xf1\x88\x80\xf1\x7a\x70\x65\x25\xc4\x44"
        !          27182:             "\xb4\x64\xa3\x83\x93\xa3\x82\xc2\x40" }  },
        !          27183:       /* --- pixel bitmap for cmmib325 char#64 \partial --- */
        !          27184:       {  64,100288,                     /* character number, location */
        !          27185:          32, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          27186:           { 28,   33, 3,133, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          27187:             "\xc7\xe0\x4d\xe4\x66\xb3\xa5\x92\xd4\x94\xc4\x20\xf1"
        !          27188:             "\x55\xc5\x10\x63\xd5\xe0\x95\xe0\x96\xe1\x76\x99\x46"
        !          27189:             "\x7c\x35\x75\x72\x16\x55\xa1\x16\x45\xb8\x45\xc7\x36"
        !          27190:             "\xc6\x20\xf1\x16\xd6\x20\x16\xd5\x36\xd6\x3f\x16\xd5"
        !          27191:             "\x4f\x16\xc5\x56\xb5\x75\xa5\x94\x95\xb4\x66\xdd\xe0"
        !          27192:             "\x38\xe0" }  },
        !          27193:       /* --- pixel bitmap for cmmib325 char#65 A --- */
        !          27194:       {  65, 1092,                      /* character number, location */
        !          27195:          32, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          27196:           { 35,   32, 3,160, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          27197:             "\xe0\xa3\x80\xf1\xe0\x94\x80\xe0\x85\x80\xf1\xe0\x76"
        !          27198:             "\x80\xe0\x68\xe0\xc9\xe0\xc2\x16\xe0\xb2\x26\xe0\xa3"
        !          27199:             "\x26\xe0\xa2\x36\xe0\x92\x47\xe0\x82\x56\xe0\x72\x66"
        !          27200:             "\x60\xf1\xe2\x76\x60\xd2\x86\x60\xf1\xc2\x97\x50\xb2"
        !          27201:             "\xb6\x50\xf1\xae\x06\x50\x92\xd6\x50\xf1\x82\xe7\x40"
        !          27202:             "\x72\xe0\x26\x40\xf1\x62\xe0\x36\x40\x43\xe0\x46\x4f"
        !          27203:             "\x1b\xae" }  },
        !          27204:       /* --- pixel bitmap for cmmib325 char#66 B --- */
        !          27205:       {  66, 2540,                      /* character number, location */
        !          27206:          31, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          27207:           { 37,   31, 3,131, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          27208:             "\x8e\x0a\xde\x0c\xe0\x16\xb6\xe6\xc6\xc7\xc7\xb7\xd6"
        !          27209:             "\xb6\xe6\xb6\xd7\xa7\xd7\xa7\xd6\xb6\xd7\xb6\xc7\xb7"
        !          27210:             "\xb7\xc7\x97\xee\x07\xe0\x2e\x08\xe7\xb7\xc7\xc6\xc6"
        !          27211:             "\xd7\xb6\xe6\x30\xf1\x77\xe6\x30\xf1\x76\xe7\x30\x67"
        !          27212:             "\xe6\xa7\xd7\xa6\xd7\xb6\xc7\xb7\xa8\x7e\x0e\x9e\x0b"
        !          27213:             "\xc2" }  },
        !          27214:       /* --- pixel bitmap for cmmib325 char#67 C --- */
        !          27215:       {  67, 3589,                      /* character number, location */
        !          27216:          32, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          27217:           { 36,   33, 3,163, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          27218:             "\xe0\x48\x82\xee\x53\xc8\x73\x23\xb7\xb7\xa6\xe6\x96"
        !          27219:             "\xe0\x25\x85\xe0\x44\x86\xe0\x53\x76\xe0\x63\x66\xe0"
        !          27220:             "\x73\x57\xe0\x72\x66\xe0\x82\x57\xe0\x82\x57\xe0\xd0"
        !          27221:             "\xf3\x17\xe0\xef\x27\xe0\xe0\x17\xe0\x82\x57\xe0\x72"
        !          27222:             "\x76\xe0\x72\x60\xf1\x16\xe0\x62\x70\x25\xe0\x52\xa6"
        !          27223:             "\xe0\x32\xc6\xe0\x12\xe6\xc3\xe0\x27\x83\xe0\x6e\x01"
        !          27224:             "\xe0\xa9\xe0\x30" }  },
        !          27225:       /* --- pixel bitmap for cmmib325 char#68 D --- */
        !          27226:       {  68, 4825,                      /* character number, location */
        !          27227:          31, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          27228:           { 39,   31, 3,153, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          27229:             "\x8e\x09\xe0\x2e\x0c\xe0\x36\xa8\xe0\x16\xc7\x20\xf1"
        !          27230:             "\xb7\xe6\x10\xf1\xb6\xe0\x26\xf1\xa7\xe0\x26\xf1\xa6"
        !          27231:             "\xe0\x36\xf1\x97\xe0\x36\xf1\x96\xe0\x37\x87\xe0\x37"
        !          27232:             "\x87\xe0\x36\x96\xe0\x37\x96\xe0\x36\x97\xe0\x36\x97"
        !          27233:             "\xe0\x26\xa6\xe0\x36\xa6\xe0\x26\xa7\xe0\x16\xb7\xe6"
        !          27234:             "\xc6\xe6\xd6\xd6\xd7\xa7\xae\x0d\xce\x0a\xe0\x1e" }  },
        !          27235:       /* --- pixel bitmap for cmmib325 char#69 E --- */
        !          27236:       {  69, 6344,                      /* character number, location */
        !          27237:          31, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          27238:           { 36,   31, 3,163, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          27239:             "\xf1\x8e\x0e\xc6\xc5\xd6\xe3\x10\xf1\xb7\xe3\x10\xb6"
        !          27240:             "\xe0\x22\xc6\xe0\x13\xb7\xe0\x13\xb7\x62\x72\xc6\x72"
        !          27241:             "\x72\xc6\x72\xe0\x67\x63\xe0\x67\x54\xb0\xf1\x9e\x01"
        !          27242:             "\xc0\xf1\x87\x63\xc0\x86\x72\xe0\x76\x72\x92\x97\x72"
        !          27243:             "\x83\x97\xe0\x32\xa6\xe0\x33\xa6\xe0\x32\xa7\xe0\x23"
        !          27244:             "\xa7\xe0\x13\xb6\xe0\x14\xb6\xe5\xa7\xc6\x6e\x0e\x02"
        !          27245:             "\x6e\x0e\x01\x70" }  },
        !          27246:       /* --- pixel bitmap for cmmib325 char#70 F --- */
        !          27247:       {  70, 7673,                      /* character number, location */
        !          27248:          31, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          27249:           { 36,   31, 3,145, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          27250:             "\xf1\x8e\x0e\xc6\xc5\xd6\xe3\x10\xf1\xb7\xe3\x10\xb6"
        !          27251:             "\xe0\x22\xc6\xe0\x13\xb7\xe0\x13\xb7\x62\x72\xc6\x72"
        !          27252:             "\x72\xc6\x72\xe0\x67\x63\xe0\x67\x54\xb0\xf1\x9e\x01"
        !          27253:             "\xc0\xf1\x87\x63\xc0\xf1\x86\x72\xd0\x77\x72\xe0\x67"
        !          27254:             "\xe0\x80\xf1\x76\xe0\x90\xf1\x67\xe0\x90\xf1\x66\xe0"
        !          27255:             "\xa0\x57\xe0\xaf\x1e\x03\xe0\x55" }  },
        !          27256:       /* --- pixel bitmap for cmmib325 char#71 G --- */
        !          27257:       {  71, 8904,                      /* character number, location */
        !          27258:          32, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          27259:           { 37,   33, 3,175, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          27260:             "\xe0\x49\x82\xe0\x1e\x53\xc8\x73\x33\xc6\xc7\xa6\xe0"
        !          27261:             "\x16\x96\xe0\x35\x86\xe0\x44\x86\xe0\x63\x76\xe0\x73"
        !          27262:             "\x66\xe0\x83\x57\xe0\x82\x66\xe0\x92\x57\xe0\x92\x57"
        !          27263:             "\xe0\xe0\xf3\x17\xe0\xe0\x1f\x17\xde\x02\x17\xe0\x56"
        !          27264:             "\x57\xe0\x47\x57\xe0\x46\x60\xf1\x16\xe0\x46\x60\x16"
        !          27265:             "\xe0\x37\x86\xe0\x27\x86\xe0\x26\xa6\xe7\xb6\xc8\xd7"
        !          27266:             "\x74\x23\xe0\x1e\x01\x61\xe0\x58\xe0\x40" }  },
        !          27267:       /* --- pixel bitmap for cmmib325 char#72 H --- */
        !          27268:       {  72,10257,                      /* character number, location */
        !          27269:          31, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          27270:           { 43,   31, 3,153, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          27271:             "\xf1\x8e\x01\x5e\x01\xf1\xc6\xe6\x50\xb7\xd7\xe0\x27"
        !          27272:             "\xd6\x60\xf1\xb6\xe6\x60\xa7\xd7\xe0\x27\xd6\x70\xf1"
        !          27273:             "\xa6\xe6\x70\x97\xd7\xe0\x27\xd6\x80\xf1\x9e\x0c\x80"
        !          27274:             "\x87\xd7\xe0\x27\xd6\x90\xf1\x86\xe6\x90\x77\xd7\xe0"
        !          27275:             "\x27\xd6\xa0\xf1\x76\xe6\xa0\x67\xd7\xe0\x27\xd6\xb0"
        !          27276:             "\xf1\x66\xe6\xb0\x57\xd7\xbf\x1e\x02\x4e\x02\x78" }  },
        !          27277:       /* --- pixel bitmap for cmmib325 char#73 I --- */
        !          27278:       {  73,11108,                      /* character number, location */
        !          27279:          31, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          27280:           { 23,   31, 3,93, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          27281:             "\xf1\x8e\x01\xf1\xc6\x50\xf1\xb7\x50\xf1\xb6\x60\xf1"
        !          27282:             "\xa7\x60\xf1\xa6\x70\xf1\x97\x70\xf1\x96\x80\xf1\x87"
        !          27283:             "\x80\xf1\x86\x90\xf1\x77\x90\xf1\x76\xa0\xf1\x67\xa0"
        !          27284:             "\xf1\x66\xb0\x57\xbf\x1e\x02\x76" }  },
        !          27285:       /* --- pixel bitmap for cmmib325 char#74 J --- */
        !          27286:       {  74,11990,                      /* character number, location */
        !          27287:          31, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          27288:           { 28,   32, 3,113, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          27289:             "\xf1\xce\x02\xf1\xe0\x46\x40\xe0\x37\x40\xf2\xe0\x36"
        !          27290:             "\x50\xe0\x27\x50\xf2\xe0\x26\x60\xe0\x17\x60\xf2\xe0"
        !          27291:             "\x16\x70\xe7\x70\xf2\xe6\x80\xd7\x80\xf1\xd6\x90\x24"
        !          27292:             "\x76\xa5\x67\x9f\x16\x66\xa6\x56\xb4\x67\xc3\x56\xe0"
        !          27293:             "\x1c\xe0\x47\xe0\x36" }  },
        !          27294:       /* --- pixel bitmap for cmmib325 char#75 K --- */
        !          27295:       {  75,13297,                      /* character number, location */
        !          27296:          31, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          27297:           { 43,   31, 3,169, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          27298:             "\xf1\x8e\x01\xaa\xc6\xe0\x43\xe0\x26\xe0\x23\xe0\x37"
        !          27299:             "\xe0\x13\xe0\x47\xd3\xe0\x66\xd3\xe0\x76\xb4\xe0\x77"
        !          27300:             "\xa3\xe0\x97\x84\xe0\xa6\x83\xe0\xc6\x64\xe0\xc7\x54"
        !          27301:             "\xe0\xd7\x46\xe0\xc6\x38\xe0\xc6\x2a\xe0\xaa\x27\xe0"
        !          27302:             "\xa9\x47\xe0\x97\x67\xe0\x96\x87\xe0\xf1\x77\x97\xd0"
        !          27303:             "\xf1\x76\xb7\xc0\xf1\x67\xc7\xb0\xf1\x66\xe7\xa0\x57"
        !          27304:             "\xe0\x17\x9f\x1e\x02\x7e\x60" }  },
        !          27305:       /* --- pixel bitmap for cmmib325 char#76 L --- */
        !          27306:       {  76,14372,                      /* character number, location */
        !          27307:          31, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          27308:           { 30,   31, 3,115, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          27309:             "\xf1\x8e\x03\x50\xf1\xc6\xc0\xf1\xb7\xc0\xf1\xb6\xd0"
        !          27310:             "\xf1\xa7\xd0\xf1\xa6\xe0\xf1\x97\xe0\xf1\x96\xe0\x10"
        !          27311:             "\xf1\x87\xe0\x10\x86\xe0\xa6\xe2\x77\xd3\x77\xd2\x86"
        !          27312:             "\xe2\x86\xd3\x10\xf1\x67\xc3\x20\x66\xc4\x86\xa5\x87"
        !          27313:             "\x87\x3e\x0d\x3e\x0c\x40" }  },
        !          27314:       /* --- pixel bitmap for cmmib325 char#77 M --- */
        !          27315:       {  77,15806,                      /* character number, location */
        !          27316:          31, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          27317:           { 52,   31, 3,287, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          27318:             "\x8b\xe0\x9a\x8b\xe0\x8b\xc7\xe0\x77\xe0\x37\xe0\x62"
        !          27319:             "\x15\xe0\x23\x15\xe0\x58\xe0\x23\x15\xe0\x42\x15\xe0"
        !          27320:             "\x32\x25\xe0\x32\x25\xe0\x32\x25\xe0\x22\x35\xe0\x23"
        !          27321:             "\x25\xe0\x22\x26\xe0\x23\x35\xe2\x35\x70\xf1\xa2\x45"
        !          27322:             "\xd2\x45\x70\x93\x45\xc2\x46\xe0\x23\x45\xb2\x55\xe0"
        !          27323:             "\x32\x65\xa2\x55\xe0\x32\x65\x92\x65\xe0\x23\x65\x82"
        !          27324:             "\x66\xe0\x23\x65\x72\x75\xe0\x32\x75\x72\x75\xe0\x32"
        !          27325:             "\x85\x52\x85\xe0\x23\x85\x42\x86\xe0\x23\x85\x42\x85"
        !          27326:             "\xe0\x32\x95\x32\x95\xe0\x32\x95\x22\xa5\xe0\x23\xa5"
        !          27327:             "\x12\x96\xe0\x23\xa7\xa5\xe0\x32\xb6\xb5\xe0\x32\xb5"
        !          27328:             "\xc5\xe0\x23\xb5\xb6\xbc\x83\x7e\x01\x7c\x82\x8e\x01"
        !          27329:             "\x70" }  },
        !          27330:       /* --- pixel bitmap for cmmib325 char#78 N --- */
        !          27331:       {  78,17174,                      /* character number, location */
        !          27332:          31, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          27333:           { 43,   31, 3,219, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          27334:             "\xf1\x8b\xdb\xc8\xe0\x23\xe0\x28\xe0\x22\xe0\x2a\xe3"
        !          27335:             "\xe0\x23\x17\xd2\xe0\x32\x27\xd2\xe0\x32\x37\xc2\xe0"
        !          27336:             "\x23\x46\xb3\xe0\x23\x47\xa2\xe0\x32\x66\xa2\xe0\x32"
        !          27337:             "\x67\x92\xe0\x23\x77\x73\xe0\x23\x77\x72\xe0\x32\x97"
        !          27338:             "\x62\xe0\x32\xa6\x62\xe0\x23\xa7\x43\xe0\x23\xb7\x32"
        !          27339:             "\xe0\x32\xc7\x32\xe0\x32\xd7\x22\xe0\x23\xd7\x13\xe0"
        !          27340:             "\x23\xe9\xa0\xf1\x72\xe0\x28\xa0\x63\xe0\x37\xe0\x23"
        !          27341:             "\xe0\x36\xe0\x32\xe0\x55\xe0\x32\xe0\x64\xe0\x23\xe0"
        !          27342:             "\x64\xbf\x1c\xe0\x32\xc0" }  },
        !          27343:       /* --- pixel bitmap for cmmib325 char#79 O --- */
        !          27344:       {  79,18157,                      /* character number, location */
        !          27345:          32, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          27346:           { 34,   33, 3,147, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          27347:             "\xe0\x39\xe0\x8e\x01\xe0\x27\x66\xe6\xa5\xb6\xd5\x96"
        !          27348:             "\xe6\x76\xe0\x25\x10\xf1\x56\xe0\x36\x46\xe0\x46\x37"
        !          27349:             "\xe0\x46\x36\xe0\x56\xf1\x27\xe0\x56\xf3\x17\xe0\x57"
        !          27350:             "\x0f\x27\xe0\x57\x1f\x17\xe0\x47\x27\xe0\x37\x46\xe0"
        !          27351:             "\x36\x56\xe0\x26\x66\xe0\x17\x76\xd7\x86\xc6\xb6\xa6"
        !          27352:             "\xd7\x66\xe0\x3e\x01\xe0\x89\xe0\x20" }  },
        !          27353:       /* --- pixel bitmap for cmmib325 char#80 P --- */
        !          27354:       {  80,19372,                      /* character number, location */
        !          27355:          31, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          27356:           { 36,   31, 3,129, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          27357:             "\x8e\x08\xee\x0b\xe0\x16\x97\x20\xf1\xc6\xb6\x10\xb7"
        !          27358:             "\xb7\xf2\xb6\xc7\xa7\xb7\xb6\xc7\xb6\xc6\xc6\xb6\xc7"
        !          27359:             "\xa6\xd6\x97\xee\x06\xe0\x1e\x04\xe0\x47\xe0\x70\xf1"
        !          27360:             "\x86\xe0\x80\xf1\x77\xe0\x80\xf1\x76\xe0\x90\xf1\x67"
        !          27361:             "\xe0\x90\xf1\x66\xe0\xa0\x57\xe0\xaf\x1e\x02\xe0\x66" }  },
        !          27362:       /* --- pixel bitmap for cmmib325 char#81 Q --- */
        !          27363:       {  81,20449,                      /* character number, location */
        !          27364:          32, 2,   -9, 2,      /* topleft row,col, and botleft row,col */
        !          27365:           { 34,   41, 3,195, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          27366:             "\xe0\x39\xe0\x8e\x01\xe0\x27\x66\xe6\x96\xb6\xc6\x96"
        !          27367:             "\xe6\x76\xe0\x16\x67\xe0\x26\x56\xe0\x36\x46\xe0\x46"
        !          27368:             "\x37\xe0\x46\x36\xe0\x56\xf1\x27\xe0\x56\xf3\x17\xe0"
        !          27369:             "\x57\x0f\x27\xe0\x57\x1f\x17\xe0\x47\x27\xe0\x37\x46"
        !          27370:             "\xe0\x36\x56\x64\x66\x66\x47\x56\x76\x23\x33\x36\x86"
        !          27371:             "\x22\x53\x15\xb6\x12\x58\xd8\x56\xe0\x3e\x01\x72\xdc"
        !          27372:             "\x72\xe0\x75\x44\x40\xf1\xe0\x3c\x50\xe0\x3b\xe0\xaa"
        !          27373:             "\xe0\xa9\xe0\xb8\xe0\xe4\xa0" }  },
        !          27374:       /* --- pixel bitmap for cmmib325 char#82 R --- */
        !          27375:       {  82,21896,                      /* character number, location */
        !          27376:          31, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          27377:           { 38,   32, 3,167, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          27378:             "\x8e\x08\xe0\x2e\x0a\xe0\x46\x97\xe0\x26\xb6\xe7\xb6"
        !          27379:             "\xe7\xb7\x20\xf1\xb6\xc7\x20\xa7\xc7\xc7\xb7\xd6\xc7"
        !          27380:             "\xd6\xb7\xd7\xa7\xe7\x87\xe0\x2e\x06\xe0\x4e\x03\xe0"
        !          27381:             "\x67\x76\xe0\x47\x86\x90\xf1\x86\xa5\x90\x77\xa6\xe0"
        !          27382:             "\x17\x97\x80\xf1\x76\xa7\x80\x67\x98\xe7\x98\x71\x66"
        !          27383:             "\xa8\x62\x66\xa8\x53\x57\xb7\x52\x1e\x02\x77\x43\x1e"
        !          27384:             "\x02\x9b\xe0\xe0\x17\x41" }  },
        !          27385:       /* --- pixel bitmap for cmmib325 char#83 S --- */
        !          27386:       {  83,23063,                      /* character number, location */
        !          27387:          32, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          27388:           { 30,   33, 3,155, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          27389:             "\xe8\x62\xcc\x33\xa5\x73\x13\xa4\xb5\x94\xd4\x84\xe4"
        !          27390:             "\x83\xe0\x22\x20\xf2\x64\xe0\x22\x20\x56\xe0\xa7\xe0"
        !          27391:             "\xa9\xe0\x7d\xe0\x3e\x02\xe0\x1e\x02\xe0\x1e\x02\xe0"
        !          27392:             "\x1e\x02\xe0\x4c\xe0\x88\x50\xf1\xe0\x65\x50\xe0\x74"
        !          27393:             "\x50\xf1\x22\xe0\x34\x50\x22\xe0\x33\x73\xe0\x24\x73"
        !          27394:             "\xe0\x23\x84\xe3\x95\xc3\x98\x84\xa3\x2e\xb1\x78\xee" }  },
        !          27395:       /* --- pixel bitmap for cmmib325 char#84 T --- */
        !          27396:       {  84,24165,                      /* character number, location */
        !          27397:          31, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          27398:           { 34,   31, 3,151, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          27399:             "\x4e\x0e\x02\x3e\x0e\x03\x35\x76\x84\x34\x96\x93\x33"
        !          27400:             "\x97\x93\x32\xa7\xa2\x23\xa6\xb2\x22\xb6\xb2\x22\xa7"
        !          27401:             "\xa3\x13\xa7\xa2\x22\xb6\xb2\xe0\x16\xe0\x10\xf1\xc7"
        !          27402:             "\xe0\x10\xf1\xc6\xe0\x20\xf1\xb7\xe0\x20\xf1\xb6\xe0"
        !          27403:             "\x30\xf1\xa7\xe0\x30\xf1\xa6\xe0\x40\xf1\x97\xe0\x40"
        !          27404:             "\xf1\x96\xe0\x50\x87\xe0\x50\xf1\x1e\x06\xd1" }  },
        !          27405:       /* --- pixel bitmap for cmmib325 char#85 U --- */
        !          27406:       {  85,25239,                      /* character number, location */
        !          27407:          31, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          27408:           { 36,   32, 3,185, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          27409:             "\xf1\x1e\x01\x9b\x56\xe0\x43\x96\xe0\x42\x97\xe0\x33"
        !          27410:             "\x97\xe0\x32\x60\xf1\x46\xe0\x42\x60\x37\xe0\x33\x97"
        !          27411:             "\xe0\x32\x70\xf1\x36\xe0\x42\x70\x27\xe0\x33\x97\xe0"
        !          27412:             "\x32\x80\xf1\x26\xe0\x42\x80\x17\xe0\x33\x97\xe0\x32"
        !          27413:             "\x90\xf1\x16\xe0\x42\x90\x16\xe0\x33\x97\xe0\x32\xa6"
        !          27414:             "\xe0\x42\xa6\xe0\x33\xa6\xe0\x32\xb6\xe0\x23\xc5\xe0"
        !          27415:             "\x13\xd6\xd3\xe0\x15\xb4\xe0\x36\x74\xe0\x7e\xe0\xb8"
        !          27416:             "\xe0\x69" }  },
        !          27417:       /* --- pixel bitmap for cmmib325 char#86 V --- */
        !          27418:       {  86,26255,                      /* character number, location */
        !          27419:          31, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          27420:           { 36,   32, 3,161, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          27421:             "\xf1\x0e\xca\x46\xe0\x53\x86\xe0\x52\x96\xe0\x42\xa6"
        !          27422:             "\xe0\x33\xa7\xe0\x22\xc6\xe0\x12\xd6\xe3\xd6\xe2\xe6"
        !          27423:             "\xd2\xa0\xf1\x57\xb2\xb0\x66\xa2\xc0\xf1\x66\x92\xd0"
        !          27424:             "\x66\x82\xe0\x67\x62\xe0\x86\x53\xe0\x86\x52\xe0\x96"
        !          27425:             "\x42\xe0\xa6\x33\xe0\xa7\x22\xe0\xc6\x12\xe0\xd9\xe0"
        !          27426:             "\xd8\xe0\xe7\xe0\x70\xf1\x86\xe0\x80\x94\xe0\x90\xf1"
        !          27427:             "\x93\xe0\xa3" }  },
        !          27428:       /* --- pixel bitmap for cmmib325 char#87 W --- */
        !          27429:       {  87,27726,                      /* character number, location */
        !          27430:          31, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          27431:           { 50,   32, 3,251, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          27432:             "\xf1\x0e\x5e\x01\x6a\x36\xe6\xe0\x13\x66\xe6\xe3\x76"
        !          27433:             "\xe6\xe2\x87\xc7\xd2\xa6\xc7\xd2\xa6\xb9\xb2\xb6\xb9"
        !          27434:             "\xa2\xc6\xa2\x26\xa2\xc6\x93\x26\x92\xd6\x92\x36\x92"
        !          27435:             "\xd6\x82\x46\x82\xe6\x82\x46\x72\xe0\x17\x62\x56\x72"
        !          27436:             "\xe0\x26\x53\x56\x62\xe0\x36\x52\x66\x53\xe0\x36\x42"
        !          27437:             "\x77\x42\xe0\x46\x42\x86\x32\xe0\x56\x32\x96\x32\xe0"
        !          27438:             "\x56\x22\xa6\x22\xe0\x66\x22\xa6\x13\xe0\x66\x12\xb6"
        !          27439:             "\x12\xe0\x79\xb8\xe0\x97\xc8\xe0\x30\xf1\x66\xd7\xe0"
        !          27440:             "\x40\x65\xe0\x15\xe0\xb5\xe0\x14\xe0\xc4\xe0\x24\xe0"
        !          27441:             "\xc3\xe0\x33\xe0\xd3\xe0\x32\xe0\x86" }  },
        !          27442:       /* --- pixel bitmap for cmmib325 char#88 X --- */
        !          27443:       {  88,29063,                      /* character number, location */
        !          27444:          31, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          27445:           { 41,   31, 3,187, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          27446:             "\xf1\x8e\x01\x5d\xc7\xd4\xe0\x37\xc3\xe0\x67\xa3\xe0"
        !          27447:             "\x77\x93\xe0\x97\x73\xe0\xa7\x63\xe0\xc7\x43\xe0\xd7"
        !          27448:             "\x33\xe0\xe0\x17\x13\xe0\xe0\x2a\xe0\xe0\x48\xe0\xe0"
        !          27449:             "\x57\xe0\x30\xf1\xe0\x47\xe0\x20\xe0\x48\xe0\xe0\x49"
        !          27450:             "\xe0\xe0\x33\x17\xe0\xe0\x12\x37\xe0\xe2\x57\xe0\xc2"
        !          27451:             "\x67\xe0\xb2\x87\xe0\x92\x97\xe0\x82\xb7\xe0\x62\xc7"
        !          27452:             "\xe0\x52\xe6\xe0\x42\xe0\x17\xe0\x13\xe0\x36\xaf\x1c"
        !          27453:             "\x9e\x01\x59" }  },
        !          27454:       /* --- pixel bitmap for cmmib325 char#89 Y --- */
        !          27455:       {  89,30223,                      /* character number, location */
        !          27456:          31, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          27457:           { 36,   31, 3,147, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          27458:             "\xf1\x0e\x01\xba\x47\xe0\x43\x87\xe0\x33\xa7\xe0\x13"
        !          27459:             "\xb7\xe3\xd7\xd2\xe7\xc2\xe0\x17\xb2\xe0\x37\x92\xe0"
        !          27460:             "\x47\x82\xe0\x67\x62\xe0\x77\x52\xe0\x97\x33\xe0\x97"
        !          27461:             "\x23\xe0\xba\xe0\xc9\xe0\xe7\xe0\x40\xf1\xb6\xe0\x50"
        !          27462:             "\xb5\xe0\x60\xf2\xa6\xe0\x60\xa5\xe0\x70\xf2\x96\xe0"
        !          27463:             "\x70\x86\xe0\x80\xf1\x3e\x02\xe0\x32" }  },
        !          27464:       /* --- pixel bitmap for cmmib325 char#90 Z --- */
        !          27465:       {  90,31360,                      /* character number, location */
        !          27466:          31, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          27467:           { 33,   31, 3,127, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          27468:             "\xae\x09\x9e\x0a\x97\xa7\x85\xc7\x94\xc7\xa3\xc7\xa3"
        !          27469:             "\xc7\xb3\xb7\xc2\xb7\xc3\xa7\xd2\xa7\xe0\xb7\xe0\xb7"
        !          27470:             "\xe0\xb7\xe0\xb7\xe0\xb7\xe0\xb7\xe0\xb8\xe0\xb7\xe0"
        !          27471:             "\xb7\xa2\xd7\xa3\xc7\xb2\xc7\xc2\xb7\xc3\xa7\xc3\xa7"
        !          27472:             "\xd3\x97\xd4\x87\xc5\x87\xb7\x7e\x0c\x7e\x0b\x86" }  },
        !          27473:       /* --- pixel bitmap for cmmib325 char#91 \flat --- */
        !          27474:       {  91,125458,                     /* character number, location */
        !          27475:          34, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          27476:           { 14,   35, 3,65, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          27477:             "\xfc\x02\xc2\x18\x3c\x26\x16\x13\x56\x0f\x42\x66\x02"
        !          27478:             "\x57\x0f\x12\x56\x1f\x12\x46\x22\x36\x32\x26\x42\x25"
        !          27479:             "\x52\x15\x66\x85\x94\xa2\xc2" }  },
        !          27480:       /* --- pixel bitmap for cmmib325 char#92 \natural --- */
        !          27481:       {  92,126269,                     /* character number, location */
        !          27482:          33, 3,  -10, 3,      /* topleft row,col, and botleft row,col */
        !          27483:           { 14,   43, 3,66, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          27484:             "\xf6\x02\xc2\xa4\x86\x68\x4a\x2a\x0f\x1e\x0a\x2a\x48"
        !          27485:             "\x66\x82\x0f\x92\xa2\x02\x86\x68\x4a\x2a\x0f\x1e\x0a"
        !          27486:             "\x2a\x48\x66\x84\xa2\xf3\xc2" }  },
        !          27487:       /* --- pixel bitmap for cmmib325 char#93 \sharp --- */
        !          27488:       {  93,127210,                     /* character number, location */
        !          27489:          32, 3,  -10, 3,      /* topleft row,col, and botleft row,col */
        !          27490:           { 14,   42, 3,103, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          27491:             "\xf3\xa2\x20\xf1\x22\x62\x20\xf1\x22\x64\x22\x46\x22"
        !          27492:             "\x28\xf1\x2c\x0f\x1c\x28\x22\x26\x42\x2f\x14\x62\x20"
        !          27493:             "\xf7\x22\x62\x20\xf1\x22\x64\x22\x46\x22\x28\xf1\x2c"
        !          27494:             "\x0f\x1c\x28\x22\x26\x42\x2f\x14\x62\x20\xf3\x22\xa7" }  },
        !          27495:       /* --- pixel bitmap for cmmib325 char#94 \smile --- */
        !          27496:       {  94,128196,                     /* character number, location */
        !          27497:          17, 3,    6, 3,      /* topleft row,col, and botleft row,col */
        !          27498:           { 46,   11, 2,35, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          27499:             "\x00\x02\x2a\x05\x28\x03\x01\x03\x26\x03\x03\x04\x22"
        !          27500:             "\x04\x05\x05\x1e\x05\x08\x05\x1a\x05\x0b\x09\x10\x09"
        !          27501:             "\x0e\x1e\x12\x1a\x17\x14\x1e\x0c\x11" }  },
        !          27502:       /* --- pixel bitmap for cmmib325 char#95 \frown --- */
        !          27503:       {  95,129082,                     /* character number, location */
        !          27504:          18, 3,    5, 3,      /* topleft row,col, and botleft row,col */
        !          27505:           { 46,   13, 2,42, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          27506:             "\x10\x0e\x1d\x14\x18\x18\x14\x1c\x10\x07\x12\x07\x0d"
        !          27507:             "\x05\x18\x05\x0b\x04\x1c\x04\x09\x03\x20\x03\x07\x03"
        !          27508:             "\x22\x03\x05\x02\x26\x02\x03\x02\x28\x02\x01\xff\x01"
        !          27509:             "\x02\x2a\x02" }  },
        !          27510:       /* --- pixel bitmap for cmmib325 char#96 \ell --- */
        !          27511:       {  96,101124,                     /* character number, location */
        !          27512:          31, 0,    0, 0,      /* topleft row,col, and botleft row,col */
        !          27513:           { 21,   31, 3,117, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          27514:             "\xe4\xe0\x26\xe3\x32\xc3\x42\xb3\x52\xa4\x52\x10\xf1"
        !          27515:             "\x84\x62\x10\x75\x52\x94\x62\x20\xf1\x65\x52\x30\x65"
        !          27516:             "\x42\x95\x42\xa5\x32\xb5\x23\xb5\x13\xb5\x13\xc8\xd7"
        !          27517:             "\xe6\xe0\x15\xc0\xf1\x44\xd0\x35\xe7\xd3\x23\xb1\x21"
        !          27518:             "\x34\x93\x63\x73\x8c\xb8\x55" }  },
        !          27519:       /* --- pixel bitmap for cmmib325 char#97 a --- */
        !          27520:       {  97,32374,                      /* character number, location */
        !          27521:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          27522:           { 26,   20, 3,81, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          27523:             "\xa6\x33\xba\x14\xa5\x47\x85\x85\x40\xf1\x35\x95\x40"
        !          27524:             "\x25\x95\x50\xf2\x16\x95\x5f\x26\x95\x66\x95\x48\x85"
        !          27525:             "\x42\x25\x85\x42\x25\x76\x32\x45\x48\x32\x5a\x37\x86"
        !          27526:             "\x65\x42" }  },
        !          27527:       /* --- pixel bitmap for cmmib325 char#98 b --- */
        !          27528:       {  98,33280,                      /* character number, location */
        !          27529:          31, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          27530:           { 21,   31, 3,103, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          27531:             "\xf1\x29\xa0\xf1\x55\xb0\xf1\x46\xb0\xf1\x45\xc0\xf1"
        !          27532:             "\x36\xc0\x35\xe0\x25\x26\x7e\x02\x58\x45\x46\x75\x35"
        !          27533:             "\x85\x10\xf1\x16\x86\xf2\x15\x96\x06\x86\x1f\x15\x96"
        !          27534:             "\x15\x95\x25\x85\x44\x85\x44\x75\x64\x45\x9b\xc6\xa7" }  },
        !          27535:       /* --- pixel bitmap for cmmib325 char#99 c --- */
        !          27536:       {  99,34159,                      /* character number, location */
        !          27537:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          27538:           { 21,   20, 3,59, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          27539:             "\xb7\xbc\x76\x63\x55\x65\x45\x75\x35\x84\x36\x84\x10"
        !          27540:             "\xf2\x16\xef\x36\xe0\x10\x15\xe0\x25\xd1\x34\xc3\x26"
        !          27541:             "\x75\x5e\x99\x66" }  },
        !          27542:       /* --- pixel bitmap for cmmib325 char#100 d --- */
        !          27543:       { 100,35151,                      /* character number, location */
        !          27544:          31, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          27545:           { 26,   31, 3,131, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          27546:             "\xf1\xe0\x39\xf1\xe0\x65\x10\xf1\xe0\x56\x10\xf1\xe0"
        !          27547:             "\x55\x20\xf1\xe0\x46\x20\xe0\x45\xd6\x25\xae\x02\x95"
        !          27548:             "\x48\x75\x85\x75\x95\x75\x86\x65\x96\x40\xf1\x16\x95"
        !          27549:             "\x50\x16\x86\x56\x96\x5f\x16\x95\x66\x86\x48\x86\x32"
        !          27550:             "\x25\x85\x42\x25\x76\x32\x45\x48\x32\x5a\x37\x86\x65"
        !          27551:             "\x40" }  },
        !          27552:       /* --- pixel bitmap for cmmib325 char#101 e --- */
        !          27553:       { 101,36070,                      /* character number, location */
        !          27554:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          27555:           { 21,   20, 3,65, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          27556:             "\xa8\xbb\x86\x53\x56\x83\x36\x93\x35\xa3\x26\x93\x26"
        !          27557:             "\x84\x3e\x03\x4e\x01\x5f\x36\xe0\x10\x15\xe0\x25\xd1"
        !          27558:             "\x34\xc3\x35\x75\x5e\x99\x66" }  },
        !          27559:       /* --- pixel bitmap for cmmib325 char#102 f --- */
        !          27560:       { 102,37268,                      /* character number, location */
        !          27561:          31, 3,   -9, 3,      /* topleft row,col, and botleft row,col */
        !          27562:           { 25,   40, 3,109, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          27563:             "\xe0\x36\xe0\x39\xe0\x14\x25\xe3\x35\xd4\x34\xe4\x42"
        !          27564:             "\x20\xf3\xc5\x80\xb5\x90\xf1\x5e\x04\x20\xf2\xb5\x90"
        !          27565:             "\xf4\xa5\xa0\xf5\x95\xb0\xf3\x85\xc0\x84\xd0\xf1\x75"
        !          27566:             "\xd0\x13\x34\xe5\x24\xe5\x23\xe0\x14\x23\xe0\x28\xe0"
        !          27567:             "\x55\xe0\x42" }  },
        !          27568:       /* --- pixel bitmap for cmmib325 char#103 g --- */
        !          27569:       { 103,38299,                      /* character number, location */
        !          27570:          20, 1,   -9, 1,      /* topleft row,col, and botleft row,col */
        !          27571:           { 23,   29, 3,99, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          27572:             "\xb6\x33\x8a\x14\x75\x47\x55\x85\xf1\x45\x95\x35\x95"
        !          27573:             "\x10\xf2\x26\x95\x10\xf3\x16\x95\x20\x16\x85\x55\x85"
        !          27574:             "\x55\x76\x65\x48\x7e\x01\xa6\x25\x40\xf1\xe5\x40\xd5"
        !          27575:             "\x63\x95\x55\x85\x55\x75\x64\x66\x7e\xb9\xc0" }  },
        !          27576:       /* --- pixel bitmap for cmmib325 char#104 h --- */
        !          27577:       { 104,39304,                      /* character number, location */
        !          27578:          31, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          27579:           { 26,   31, 3,133, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          27580:             "\xf1\x39\xe0\xf1\x65\xe0\x10\xf1\x56\xe0\x10\xf1\x55"
        !          27581:             "\xe0\x20\xf1\x46\xe0\x20\x45\xe0\x75\x36\xb6\x1a\x99"
        !          27582:             "\x45\x87\x74\x86\x84\x76\x94\x76\x85\x50\xf1\x25\x95"
        !          27583:             "\x50\x16\x95\x66\x85\x75\x95\x75\x85\x76\x85\x58\x85"
        !          27584:             "\x42\x15\x85\x52\x15\x85\x42\x25\x94\x32\x34\xa8\x43"
        !          27585:             "\xd5\x56" }  },
        !          27586:       /* --- pixel bitmap for cmmib325 char#105 i --- */
        !          27587:       { 105,40226,                      /* character number, location */
        !          27588:          32, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          27589:           { 15,   32, 3,91, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          27590:             "\xa3\x20\xf1\x95\x10\x94\xc2\x30\xf6\xe0\x10\x55\x97"
        !          27591:             "\x72\x25\x52\x35\x30\xf1\x12\x45\x32\x45\x40\xf1\x65"
        !          27592:             "\x40\xf1\x55\x50\xf1\x45\x60\x45\x42\xf1\x35\x42\x10"
        !          27593:             "\x35\x32\x55\x22\x77\x95\x55" }  },
        !          27594:       /* --- pixel bitmap for cmmib325 char#106 j --- */
        !          27595:       { 106,41207,                      /* character number, location */
        !          27596:          32, 0,   -9, 0,      /* topleft row,col, and botleft row,col */
        !          27597:           { 20,   41, 3,103, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          27598:             "\xe0\x23\x10\xf1\xe0\x15\xe0\x14\xe0\x32\x20\xf6\xe0"
        !          27599:             "\x60\xa5\xd9\xa3\x34\x92\x55\x20\xf1\x52\x65\x20\x42"
        !          27600:             "\x65\x30\xf2\xc5\x30\xf3\xb5\x40\xf3\xa5\x50\xf3\x95"
        !          27601:             "\x60\x85\x83\x45\x75\x34\x85\x25\x84\x25\x99\xc6\xd5" }  },
        !          27602:       /* --- pixel bitmap for cmmib325 char#107 k --- */
        !          27603:       { 107,42290,                      /* character number, location */
        !          27604:          31, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          27605:           { 23,   31, 3,129, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          27606:             "\xf1\x39\xb0\xf1\x65\xc0\xf1\x56\xc0\xf1\x55\xd0\xf1"
        !          27607:             "\x46\xd0\x45\xe0\x45\x84\x56\x67\x46\x53\x33\x35\x43"
        !          27608:             "\x44\x35\x32\x55\x26\x22\x65\x26\x12\x74\x38\x83\x47"
        !          27609:             "\xe0\x1c\xbe\x95\x46\x85\x55\x76\x55\x58\x55\x42\x15"
        !          27610:             "\x65\x42\x15\x65\x32\x25\x74\x23\x24\x97\x33\xb5\x43" }  },
        !          27611:       /* --- pixel bitmap for cmmib325 char#108 l --- */
        !          27612:       { 108,43076,                      /* character number, location */
        !          27613:          31, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          27614:           { 12,   31, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          27615:             "\xf8\x8f\xff\xc0\x07\x7c\xe0\x07\x7e\xe0\x03\x3e\xf0"
        !          27616:             "\x03\x3f\xf0\x01\x1f\xf8\x81\x1f\xf8\x80\x0f\xfc\xc0"
        !          27617:             "\x0f\x7c\xc0\x07\x7e\xe0\x07\x3e\xe0\x03\x3f\xf6\x33"
        !          27618:             "\x1f\xf3\x31\x9e\xe1\x0f\x78\x00" }  },
        !          27619:       /* --- pixel bitmap for cmmib325 char#109 m --- */
        !          27620:       { 109,44361,                      /* character number, location */
        !          27621:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          27622:           { 44,   20, 3,139, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          27623:             "\x45\x76\x86\xb8\x3a\x4a\x82\x34\x23\x45\x23\x45\x72"
        !          27624:             "\x37\x74\x12\x74\x62\x46\x86\x84\x62\x45\x95\x94\x52"
        !          27625:             "\x45\x95\x95\x50\xf2\x65\x95\x95\x50\xf1\x55\x95\x95"
        !          27626:             "\x60\x55\x95\x85\xc5\x95\x85\x52\x45\x95\x95\x42\x55"
        !          27627:             "\x95\x85\x52\x55\x95\x85\x42\x65\x95\x94\x32\x74\xa4"
        !          27628:             "\xa8\x83\xb3\xd5\x51" }  },
        !          27629:       /* --- pixel bitmap for cmmib325 char#110 n --- */
        !          27630:       { 110,45496,                      /* character number, location */
        !          27631:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          27632:           { 30,   20, 3,101, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          27633:             "\x45\x76\xb7\x4a\x82\x34\x23\x45\x72\x37\x74\x62\x46"
        !          27634:             "\x84\x62\x45\x94\x52\x45\x95\x50\xf2\x65\x95\x50\xf1"
        !          27635:             "\x55\x95\x60\x55\x85\xc5\x85\x52\x45\x95\x42\x55\x85"
        !          27636:             "\x52\x55\x85\x42\x65\x94\x32\x74\xa8\x83\xd5\x52" }  },
        !          27637:       /* --- pixel bitmap for cmmib325 char#111 o --- */
        !          27638:       { 111,46298,                      /* character number, location */
        !          27639:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          27640:           { 25,   20, 3,61, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          27641:             "\xb8\xed\xa6\x56\x75\x94\x65\xa5\x45\xb5\x36\xb6\xf2"
        !          27642:             "\x16\xc6\x0f\x26\xc6\x16\xb6\x35\xb5\x45\xa5\x64\x95"
        !          27643:             "\x76\x56\xad\xe8\xb5" }  },
        !          27644:       /* --- pixel bitmap for cmmib325 char#112 p --- */
        !          27645:       { 112,47322,                      /* character number, location */
        !          27646:          20,-1,   -9,-1,      /* topleft row,col, and botleft row,col */
        !          27647:           { 28,   29, 3,127, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          27648:             "\x65\x66\xa7\x3a\x72\x38\x45\x62\x36\x75\x42\x45\x85"
        !          27649:             "\x42\x36\x86\x22\x46\x86\xf1\x85\x96\x76\x96\x76\x86"
        !          27650:             "\x10\xf1\x75\x96\x10\x66\x95\x86\x85\x95\x95\x95\x85"
        !          27651:             "\x98\x45\xbe\x02\xc5\x26\xe0\x15\xe0\x40\xf1\x46\xe0"
        !          27652:             "\x40\xf1\x45\xe0\x50\xf1\x36\xe0\x5f\x1b\xe0\x34" }  },
        !          27653:       /* --- pixel bitmap for cmmib325 char#113 q --- */
        !          27654:       { 113,48301,                      /* character number, location */
        !          27655:          20, 1,   -9, 1,      /* topleft row,col, and botleft row,col */
        !          27656:           { 23,   29, 3,99, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          27657:             "\xa6\x43\x7a\x15\x65\x48\x45\x85\x10\xf1\x35\x95\x10"
        !          27658:             "\x25\x96\x10\xf2\x16\x95\x26\x96\x2f\x26\x95\x36\x86"
        !          27659:             "\x45\x85\x55\x76\x65\x48\x7e\x02\x96\x25\x50\xf1\xd5"
        !          27660:             "\x50\xc6\x50\xf2\xc5\x60\xb6\x60\xf1\x8b\x41" }  },
        !          27661:       /* --- pixel bitmap for cmmib325 char#114 r --- */
        !          27662:       { 114,49238,                      /* character number, location */
        !          27663:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          27664:           { 22,   20, 3,69, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          27665:             "\x45\x64\x68\x28\x32\x34\x13\x42\x32\x36\x54\xf1\x12"
        !          27666:             "\x45\x55\x02\x45\x64\x75\x63\x20\xf1\x65\xb0\xf3\x55"
        !          27667:             "\xc0\xf3\x45\xd0\x44\xe0\x43\xe0\x16" }  },
        !          27668:       /* --- pixel bitmap for cmmib325 char#115 s --- */
        !          27669:       { 115,50238,                      /* character number, location */
        !          27670:          20, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          27671:           { 19,   20, 3,57, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          27672:             "\x97\xab\x74\x63\x62\x74\x53\x74\x53\x73\x55\xe9\xbb"
        !          27673:             "\x9b\x9b\xaa\xe5\x14\xa4\x0f\x15\xa3\x14\xa3\x33\x84"
        !          27674:             "\x5d\x89\x65" }  },
        !          27675:       /* --- pixel bitmap for cmmib325 char#116 t --- */
        !          27676:       { 116,51012,                      /* character number, location */
        !          27677:          29, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          27678:           { 16,   29, 3,69, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          27679:             "\x83\x50\xf1\x75\x40\xf3\x65\x50\xf1\x55\x6f\x1e\x02"
        !          27680:             "\xf3\x45\x70\xf3\x35\x80\xf2\x25\x90\x25\x72\x15\x72"
        !          27681:             "\x25\x62\x35\x53\x44\x43\x68\x96\x66" }  },
        !          27682:       /* --- pixel bitmap for cmmib325 char#117 u --- */
        !          27683:       { 117,52088,                      /* character number, location */
        !          27684:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          27685:           { 28,   20, 3,93, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          27686:             "\x55\xb3\x88\x84\x72\x34\x75\x62\x45\x65\x52\x55\x65"
        !          27687:             "\x52\x45\x75\x42\x55\x65\x50\xf2\x65\x75\x50\xf2\x55"
        !          27688:             "\x75\x60\x55\x75\x42\xf1\x55\x65\x42\x10\x55\x65\x32"
        !          27689:             "\x84\x47\x32\x99\x18\xb6\x55\x40" }  },
        !          27690:       /* --- pixel bitmap for cmmib325 char#118 v --- */
        !          27691:       { 118,53029,                      /* character number, location */
        !          27692:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          27693:           { 23,   20, 3,81, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          27694:             "\x55\x83\x68\x56\x32\x34\x56\x22\x45\x37\x12\x55\x37"
        !          27695:             "\x12\x45\x58\x55\x83\xf2\x65\xa2\xf1\x55\xa2\x10\xf1"
        !          27696:             "\x55\x92\x20\x55\x82\x85\x73\x85\x63\xa5\x43\xca\xe0"
        !          27697:             "\x16\x87" }  },
        !          27698:       /* --- pixel bitmap for cmmib325 char#119 w --- */
        !          27699:       { 119,54277,                      /* character number, location */
        !          27700:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          27701:           { 34,   20, 3,107, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          27702:             "\x55\xb3\x54\x58\x84\x46\x32\x34\x75\x46\x22\x45\x65"
        !          27703:             "\x37\x12\x55\x65\x37\x12\x45\x75\x48\x55\x65\x83\xf2"
        !          27704:             "\x65\x75\x92\xf2\x55\x75\x92\x10\xf1\x55\x75\x82\x20"
        !          27705:             "\x55\x75\x72\x85\x66\x62\xa5\x48\x42\xca\x29\xe0\x16"
        !          27706:             "\x66\x71" }  },
        !          27707:       /* --- pixel bitmap for cmmib325 char#120 x --- */
        !          27708:       { 120,55597,                      /* character number, location */
        !          27709:          20, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          27710:           { 25,   20, 3,91, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          27711:             "\x66\x64\x7a\x27\x53\x48\x42\x32\x75\x54\xf1\x12\x85"
        !          27712:             "\x45\x02\x85\x54\xb5\x53\x20\xf1\xa5\xa0\xf1\x95\xb0"
        !          27713:             "\x23\x45\xc4\x45\x92\x0f\x15\x35\x92\x14\x45\x82\x32"
        !          27714:             "\x47\x53\x47\x3a\x74\x57\x65" }  },
        !          27715:       /* --- pixel bitmap for cmmib325 char#121 y --- */
        !          27716:       { 121,56747,                      /* character number, location */
        !          27717:          20, 1,   -9, 1,      /* topleft row,col, and botleft row,col */
        !          27718:           { 24,   29, 3,107, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          27719:             "\x55\xb3\x48\x84\x32\x34\x75\x22\x45\x65\x12\x55\x65"
        !          27720:             "\x12\x45\x77\x55\x65\x10\xf2\x65\x75\x10\xf3\x55\x75"
        !          27721:             "\x20\xf2\x55\x65\x30\x64\x47\xad\xc6\x15\xe0\x55\xe0"
        !          27722:             "\x54\x83\x85\x75\x74\x85\x64\x94\x64\xa3\x55\xcb\xe0"
        !          27723:             "\x16\xd1" }  },
        !          27724:       /* --- pixel bitmap for cmmib325 char#122 z --- */
        !          27725:       { 122,57737,                      /* character number, location */
        !          27726:          20, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          27727:           { 23,   20, 3,83, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          27728:             "\x84\x92\x68\x62\x6e\x02\x6e\x02\x7e\x01\xe0\x62\xe0"
        !          27729:             "\x62\xe0\x62\xe0\x53\xe0\x52\xe0\x62\xe0\x53\xe0\x52"
        !          27730:             "\xe0\x62\xc2\x62\xc2\x6e\x03\x5e\x03\x5e\x03\x52\x69"
        !          27731:             "\x52\x95\x75" }  },
        !          27732:       /* --- pixel bitmap for cmmib325 char#123 \imath --- */
        !          27733:       { 123,101952,                     /* character number, location */
        !          27734:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          27735:           { 15,   20, 3,69, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          27736:             "\x55\x97\x72\x25\x52\x35\x30\xf1\x12\x45\x32\x45\x40"
        !          27737:             "\xf1\x65\x40\xf1\x55\x50\xf1\x45\x60\x45\x42\xf1\x35"
        !          27738:             "\x42\x10\x35\x32\x55\x22\x77\x95\x53" }  },
        !          27739:       /* --- pixel bitmap for cmmib325 char#124 \jmath --- */
        !          27740:       { 124,102783,                     /* character number, location */
        !          27741:          20, 0,   -9, 0,      /* topleft row,col, and botleft row,col */
        !          27742:           { 19,   29, 3,73, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          27743:             "\xa6\xc8\x93\x44\x73\x55\x62\x65\x52\x75\x42\x75\x10"
        !          27744:             "\xf2\xd5\x10\xf3\xc5\x20\xf3\xb5\x30\xf3\xa5\x40\x95"
        !          27745:             "\x63\x55\x55\x44\x65\x35\x64\x26\x7a\xa7\xb3" }  },
        !          27746:       /* --- pixel bitmap for cmmib325 char#125 \wp --- */
        !          27747:       { 125,103970,                     /* character number, location */
        !          27748:          21, 4,  -10, 4,      /* topleft row,col, and botleft row,col */
        !          27749:           { 29,   31, 3,165, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          27750:             "\x63\xe0\xb4\xe0\x93\xb7\x82\xab\x53\x84\x64\x33\x74"
        !          27751:             "\x94\x23\x63\xb4\x13\x62\xd8\x52\xe8\x42\xe0\x18\x32"
        !          27752:             "\xe0\x28\x23\xe0\x15\x13\x22\xe0\x25\x16\xe0\x35\x16"
        !          27753:             "\xe0\x34\x26\x72\x75\x35\x63\x74\x55\x52\x74\x66\x43"
        !          27754:             "\x45\x62\x15\x49\x82\x16\x46\xa2\x25\xe0\x62\x34\xe0"
        !          27755:             "\x5f\x22\x53\xe0\x52\x52\xe0\x62\x43\xe0\x63\x23\xe0"
        !          27756:             "\x86\xe0\xa4\xe0\x90" }  },
        !          27757:       /* --- pixel bitmap for cmmib325 char#126 \bfvec --- */
        !          27758:       { 126,104680,                     /* character number, location */
        !          27759:          32, 8,   23, 8,      /* topleft row,col, and botleft row,col */
        !          27760:           { 24,    9, 3,37, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          27761:             "\xf1\xe0\x43\x30\xe0\x44\x2e\x09\x1e\x0e\x0e\x05\xe0"
        !          27762:             "\x45\xe0\x44\xe0\x63\x52" }  },
        !          27763:       /* --- pixel bitmap for cmmib325 char#127 (noname) --- */
        !          27764:       { 127,105228,                     /* character number, location */
        !          27765:          30,12,   24,12,      /* topleft row,col, and botleft row,col */
        !          27766:           { 20,    6, 3,22, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          27767:             "\x6a\x8e\x4e\x03\x24\xb7\xe0\x12\x11\xe0\x31" }  },
        !          27768:       /* --- trailer  --- */
        !          27769:       { -99, -999,  0,0,0,0, { 0,0,0,0, (pixbyte *)"\0" }  }
        !          27770:    } ;
        !          27771: 
        !          27772: 
        !          27773: /* --- size=9 for .450gf ---
        !          27774:  * mf '\mode=preview; mag=magstep(-9.62468787106292402266); input cmmib10'
        !          27775:  * --------------------------------------------------------------------- */
        !          27776: /* --- fontdef for cmmib450 --- */
        !          27777: static	chardef  cmmib450[] =
        !          27778:    {
        !          27779:       /* --- pixel bitmap for cmmib450 char#0 \Gamma --- */
        !          27780:       {   0,61242,                      /* character number, location */
        !          27781:          43, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          27782:           { 47,   43, 3,215, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          27783:             "\xbe\x0e\x08\xae\x0e\x09\xae\x0e\x08\xe0\x49\xd7\x10"
        !          27784:             "\xf1\xe0\x2a\xe0\x15\x10\xf1\xe0\x29\xe0\x34\x10\xf1"
        !          27785:             "\xe0\x1a\xe0\x34\x10\xf1\xe0\x19\xe0\x44\x10\xf1\xea"
        !          27786:             "\xe0\x43\x20\xe9\xe0\x53\xe0\x29\xe0\xa0\xf1\xda\xe0"
        !          27787:             "\xa0\xf1\xd9\xe0\xb0\xf1\xca\xe0\xb0\xf1\xc9\xe0\xc0"
        !          27788:             "\xf1\xba\xe0\xc0\xf1\xb9\xe0\xd0\xf1\xaa\xe0\xd0\xf1"
        !          27789:             "\xa9\xe0\xe0\xf1\x9a\xe0\xe0\xf1\x99\xe0\xe0\x10\xf1"
        !          27790:             "\x8a\xe0\xe0\x10\xf1\x89\xe0\xe0\x20\x1e\x0a\xe0\x8f"
        !          27791:             "\x1e\x0b\xe0\x84" }  },
        !          27792:       /* --- pixel bitmap for cmmib450 char#1 \Delta --- */
        !          27793:       {   1,62219,                      /* character number, location */
        !          27794:          45, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          27795:           { 53,   45, 2,150, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          27796:             "\x23\x04\x30\x05\x0e\x00\xff\x01\x21\x07\x0d\x00\x20"
        !          27797:             "\x08\x2c\x0a\x2a\x0b\x29\x0c\x29\x0d\x27\x03\x01\x0a"
        !          27798:             "\x26\x03\x02\x0a\x25\x04\x02\x0b\x23\x04\x04\x0a\x23"
        !          27799:             "\x03\x05\x0a\x22\x03\x06\x0a\x21\x03\x07\x0b\x1f\x04"
        !          27800:             "\x08\x0a\x1e\x04\x09\x0a\x1e\x03\x0a\x0b\x1c\x03\x0c"
        !          27801:             "\x0a\x1b\x03\x0d\x0a\x1a\x04\x0d\x0b\x18\x04\x0f\x0a"
        !          27802:             "\x17\x04\x10\x0a\x17\x03\x11\x0b\x15\x03\x13\x0a\x14"
        !          27803:             "\x03\x14\x0a\x13\x04\x14\x0b\x11\x04\x16\x0a\x11\x03"
        !          27804:             "\x17\x0a\x10\x03\x18\x0a\x0f\x03\x19\x0b\x0d\x04\x1a"
        !          27805:             "\x0a\x0c\x04\x1b\x0a\x0c\x03\x1c\x0b\x0a\x03\x1e\x0a"
        !          27806:             "\x09\x03\x1f\x0a\x08\x2e\x06\x2f\x05\x30\x05\x31\x03"
        !          27807:             "\x32\x02\x33\x01\xff\x01\x35" }  },
        !          27808:       /* --- pixel bitmap for cmmib450 char#2 \Theta --- */
        !          27809:       {   2,63486,                      /* character number, location */
        !          27810:          44, 4,   -1, 4,      /* topleft row,col, and botleft row,col */
        !          27811:           { 49,   45, 3,321, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          27812:             "\xe0\xac\xe0\xe0\x5e\x05\xe0\xd8\x88\xe0\x97\xe7\xe0"
        !          27813:             "\x57\xe0\x46\xe0\x37\xe0\x66\xe0\x16\xe0\x87\xc7\xe0"
        !          27814:             "\xa7\xa7\xe0\xc6\x20\xf1\x77\xe0\xd7\x10\x67\xe0\xe8"
        !          27815:             "\x57\xe0\xe0\x18\x48\xe0\xe0\x27\x47\xe0\xe0\x37\x38"
        !          27816:             "\xe0\xe0\x37\x37\x61\xe0\x41\x58\x28\x53\xe0\x14\x48"
        !          27817:             "\x28\x4e\x09\x48\xf1\x18\x5e\x08\x58\x18\x4e\x09\x5e"
        !          27818:             "\x02\x5e\x09\x48\x1f\x18\x5e\x08\x58\x18\x5e\x08\x57"
        !          27819:             "\x28\x4e\x09\x48\x27\x53\xe0\x23\x58\x27\x61\xe0\x41"
        !          27820:             "\x58\x37\xe0\xe0\x38\x37\xe0\xe0\x37\x47\xe0\xe0\x28"
        !          27821:             "\x47\xe0\xe0\x27\x57\xe0\xe0\x17\x67\xe0\xe7\x87\xe0"
        !          27822:             "\xd6\x97\xe0\xc7\xa7\xe0\xa6\xc7\xe0\x96\xe7\xe0\x67"
        !          27823:             "\xe0\x27\xe0\x46\xe0\x67\xe7\xe0\x88\x98\xe0\xce\x06"
        !          27824:             "\xe0\xe0\x5c\xe0\xae" }  },
        !          27825:       /* --- pixel bitmap for cmmib450 char#3 \Lambda --- */
        !          27826:       {   3,64646,                      /* character number, location */
        !          27827:          45, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          27828:           { 45,   45, 3,270, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          27829:             "\xf1\xe0\xe0\x34\xa0\xe0\xe0\x25\xa0\xf1\xe0\xe0\x16"
        !          27830:             "\xa0\xf1\xe0\xe8\x90\xe0\xd9\x90\xf1\xe0\xca\x90\xf1"
        !          27831:             "\xe0\xbb\x90\xe0\xac\xe0\xe0\x43\x19\xe0\xe0\x43\x1a"
        !          27832:             "\xe0\xe0\x23\x2a\xe0\xe0\x14\x2a\xe0\xe0\x13\x3a\xe0"
        !          27833:             "\xe3\x4a\xe0\xe3\x59\xe0\xd3\x69\xe0\xc4\x69\xe0\xc3"
        !          27834:             "\x7a\xe0\xa3\x8a\xe0\x94\x8a\xe0\x93\x9a\xe0\x83\xaa"
        !          27835:             "\xe0\x83\xb9\xe0\x73\xc9\xe0\x64\xc9\xe0\x63\xda\xe0"
        !          27836:             "\x43\xea\xe0\x34\xea\xe0\x33\xe0\x1a\xe0\x23\xe0\x2a"
        !          27837:             "\xe0\x23\xe0\x39\xe0\x13\xe0\x49\xe4\xe0\x49\xe3\xe0"
        !          27838:             "\x59\x60\xf1\x73\xe0\x6a\x50\x54\xe0\x7a\x5f\x1e\x01"
        !          27839:             "\x9e\x07\x0e\xae\x07" }  },
        !          27840:       /* --- pixel bitmap for cmmib450 char#4 \Xi --- */
        !          27841:       {   4,66173,                      /* character number, location */
        !          27842:          42, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          27843:           { 50,   42, 3,213, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          27844:             "\xf2\xae\x0e\x0c\xf2\x9e\x0e\x0d\x8e\x0e\x0d\x94\xe0"
        !          27845:             "\xe0\x63\x84\xe0\xe0\x73\x10\xf2\x73\xe0\xe0\x83\x10"
        !          27846:             "\xf1\xe0\xe0\xe0\x80\xd3\xe0\x83\xe0\x83\xe0\x74\xe0"
        !          27847:             "\x74\xe0\x74\x90\xf1\xce\x0e\xa0\xf1\xbe\x0e\x01\xa0"
        !          27848:             "\xf2\xbe\x0e\xb0\xa4\xe0\x74\xb0\xf1\xa3\xe0\x83\xc0"
        !          27849:             "\xf1\xe0\xe0\xe0\x80\xf1\x23\xe0\xe0\x83\x60\x23\xe0"
        !          27850:             "\xe0\x74\x83\xe0\xe0\x73\x70\xf1\x14\xe0\xe0\x64\x70"
        !          27851:             "\xf2\x1e\x0e\x0d\x80\x1e\x0e\x0c\x9f\x1e\x0e\x0d\x9e"
        !          27852:             "\x0e\x0c\xa0" }  },
        !          27853:       /* --- pixel bitmap for cmmib450 char#5 \Pi --- */
        !          27854:       {   5,67522,                      /* character number, location */
        !          27855:          43, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          27856:           { 62,   43, 3,295, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          27857:             "\xbe\x0e\x0e\x09\xf1\xae\x0e\x0e\x0a\xe0\x39\xe0\x69"
        !          27858:             "\xe0\x9a\xe0\x5a\xe0\x9a\xe0\x59\x80\xf1\xe0\x29\xe0"
        !          27859:             "\x69\x80\xe0\x1a\xe0\x5a\xe0\x9a\xe0\x59\x90\xf1\xe0"
        !          27860:             "\x19\xe0\x69\x90\xea\xe0\x5a\xe0\x9a\xe0\x59\xa0\xf1"
        !          27861:             "\xe9\xe0\x69\xa0\xda\xe0\x5a\xe0\x9a\xe0\x59\xb0\xf1"
        !          27862:             "\xd9\xe0\x69\xb0\xca\xe0\x5a\xe0\x9a\xe0\x59\xc0\xf1"
        !          27863:             "\xc9\xe0\x69\xc0\xba\xe0\x5a\xe0\x9a\xe0\x59\xd0\xf1"
        !          27864:             "\xb9\xe0\x69\xd0\xaa\xe0\x5a\xe0\x9a\xe0\x59\xe0\xf1"
        !          27865:             "\xa9\xe0\x69\xe0\x9a\xe0\x5a\xe0\x9a\xe0\x59\xe0\x10"
        !          27866:             "\xf1\x99\xe0\x69\xe0\x10\x8a\xe0\x5a\xe0\x9a\xe0\x59"
        !          27867:             "\xe0\x20\xf1\x89\xe0\x69\xe0\x20\x1e\x08\x7e\x08\xaf"
        !          27868:             "\x1e\x09\x6e\x09\xa0" }  },
        !          27869:       /* --- pixel bitmap for cmmib450 char#6 \Sigma --- */
        !          27870:       {   6,68809,                      /* character number, location */
        !          27871:          43, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          27872:           { 53,   43, 2,139, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          27873:             "\x0b\x2a\x0a\x2b\x0a\x2a\x0c\x0b\x14\x0a\x0c\x0c\x16"
        !          27874:             "\x07\x0d\x0c\x16\x06\x0e\x0b\x17\x05\x0e\x0c\x17\x04"
        !          27875:             "\x0f\x0b\x17\x04\x0f\x0c\x16\x04\x10\x0b\x16\x04\x10"
        !          27876:             "\x0c\x15\x04\x11\x0c\x14\x03\x13\x0b\x14\x03\x13\x0c"
        !          27877:             "\x13\x03\x14\x0b\x2a\x0c\x2a\x0b\x2a\x0c\x2a\x0c\x15"
        !          27878:             "\x00\xff\x01\x15\x0b\x15\x00\x16\x0a\x2b\x08\x2e\x06"
        !          27879:             "\x2f\x05\x2e\x05\x2f\x05\x14\x03\x17\x05\x15\x04\x16"
        !          27880:             "\x05\x16\x03\x16\x05\x16\x04\x14\x05\x18\x04\x13\x05"
        !          27881:             "\x18\x04\x12\x05\x19\x05\x11\x05\x19\x05\x11\x05\x19"
        !          27882:             "\x06\x0f\x05\x1a\x07\x0e\x05\x19\x08\x0d\x05\x18\x0b"
        !          27883:             "\x0c\x28\x0c\x29\x0a\x2b\x0a\x2a\x0b" }  },
        !          27884:       /* --- pixel bitmap for cmmib450 char#7 \Upsilon --- */
        !          27885:       {   7,69981,                      /* character number, location */
        !          27886:          44, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          27887:           { 48,   44, 3,215, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          27888:             "\x87\xe0\x86\xbb\xe0\x3b\x7e\x01\xed\x5e\x03\xbe\x02"
        !          27889:             "\x3e\x04\xae\x03\x3e\x05\x8e\x05\x1e\x06\x7e\x0a\x99"
        !          27890:             "\x58\x97\xc7\x48\xb6\xc7\x46\xd5\xe6\x36\xe2\xe0\x37"
        !          27891:             "\x16\xe0\xe0\x76\x16\xe0\xe0\x7c\xe0\x50\xf1\xe0\x3b"
        !          27892:             "\xe0\x60\xf2\xe0\x3a\xe0\x70\xf2\xe0\x39\xe0\x80\xf2"
        !          27893:             "\xe0\x29\xe0\x90\xf1\xe0\x1a\xe0\x90\xf1\xe0\x19\xe0"
        !          27894:             "\xa0\xf1\xea\xe0\xa0\xf1\xe9\xe0\xb0\xf1\xda\xe0\xb0"
        !          27895:             "\xf1\xd9\xe0\xc0\xf1\xca\xe0\xc0\xf1\xc9\xe0\xd0\xf2"
        !          27896:             "\x3e\x0c\xe0\x55" }  },
        !          27897:       /* --- pixel bitmap for cmmib450 char#8 \Phi --- */
        !          27898:       {   8,71115,                      /* character number, location */
        !          27899:          43, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          27900:           { 45,   43, 3,229, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          27901:             "\xf2\xe0\x1e\x0b\x50\xe0\x98\xe0\xf1\xe0\x89\xe0\xf1"
        !          27902:             "\xe0\x88\xe0\x10\xe0\x79\xe0\xe0\x5e\x01\xe0\xce\x09"
        !          27903:             "\xe0\x58\x28\x19\xe8\x49\x48\xb7\x69\x58\x88\x78\x78"
        !          27904:             "\x68\x88\x88\x48\x89\x88\x39\x89\x88\x38\x98\x99\x19"
        !          27905:             "\x98\x99\x19\x89\x9e\x04\x99\x89\x1f\x19\x98\x99\x19"
        !          27906:             "\x89\x89\x29\x89\x88\x48\x88\x89\x48\x88\x88\x68\x69"
        !          27907:             "\x77\x97\x69\x58\xb8\x48\x57\xe0\x18\x28\x19\xe0\x5e"
        !          27908:             "\x09\xe0\xce\x01\xe0\x40\xf1\xe0\x18\xe0\x80\xf1\xe9"
        !          27909:             "\xe0\x80\xf1\xe8\xe0\x90\xf2\x5e\x0b\xe0\x10" }  },
        !          27910:       /* --- pixel bitmap for cmmib450 char#9 \Psi --- */
        !          27911:       {   9,72336,                      /* character number, location */
        !          27912:          43, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          27913:           { 48,   43, 3,233, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          27914:             "\xf2\xee\x0b\x90\xe0\x88\xe0\x40\xf1\xe0\x79\xe0\x40"
        !          27915:             "\xf1\xe0\x78\xe0\x50\xe0\x69\xe0\x59\xb9\xae\x05\xa8"
        !          27916:             "\xaa\x29\x98\x99\x58\x89\x89\x68\x89\x88\x78\x88\x89"
        !          27917:             "\x78\x88\x88\x79\x79\x88\x78\x89\x79\x50\xf1\x28\x88"
        !          27918:             "\x88\x60\x28\x79\x79\x88\x79\x78\x98\x78\x79\x98\x78"
        !          27919:             "\x78\xa8\x69\x69\xa8\x69\x68\xb8\x68\x68\xd7\x68\x58"
        !          27920:             "\xe8\x49\x48\xe0\x27\x49\x38\xe0\x47\x38\x37\xe0\x8e"
        !          27921:             "\x0a\xe0\xce\x06\xe0\xe0\x3d\xe0\x90\xf1\xe8\xe0\xc0"
        !          27922:             "\xf1\xd9\xe0\xc0\xf1\xd8\xe0\xd0\xf2\x4e\x0b\xe0\x50" }  },
        !          27923:       /* --- pixel bitmap for cmmib450 char#10 \Omega --- */
        !          27924:       {  10,73663,                      /* character number, location */
        !          27925:          44, 5,    0, 5,      /* topleft row,col, and botleft row,col */
        !          27926:           { 51,   44, 3,309, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          27927:             "\xe0\xbd\xe0\xe0\x6e\x07\xe0\xd9\x98\xe0\x98\xe8\xe0"
        !          27928:             "\x58\xe0\x47\xe0\x38\xe0\x58\xe0\x18\xe0\x78\xc9\xe0"
        !          27929:             "\x89\xb8\xe0\xa8\xa9\xe0\xa8\x99\xe0\xb8\x8a\xe0\xb9"
        !          27930:             "\x79\xe0\xc9\x79\xe0\xba\x6a\xe0\xb9\x10\xf1\x69\xe0"
        !          27931:             "\xc9\x10\x69\xe0\xba\x79\xe0\xb9\x89\xe0\xaa\x89\xe0"
        !          27932:             "\xa9\x98\xe0\xb8\xa9\xe0\x99\xb8\xe0\x89\xc8\xe0\x88"
        !          27933:             "\xd8\xe0\x78\xe0\x17\xe0\x77\xe0\x27\xe0\x67\xe0\x46"
        !          27934:             "\xe0\x57\xe0\x65\xe0\x56\xe0\x75\xe0\x46\xd3\x75\xe0"
        !          27935:             "\x26\x63\x53\x75\xe0\x25\x73\x53\x84\xe0\x15\x74\x53"
        !          27936:             "\x84\xe0\x14\x83\x63\x93\xe4\x84\x63\x93\xe3\x84\x7e"
        !          27937:             "\x01\xde\x02\x7e\x01\xde\x01\x7f\x1e\x02\xce\x02\x7e"
        !          27938:             "\x02\xce\x01\x8e\x01\xce\x02\x8e\x01\xce\x01\x9e" }  },
        !          27939:       /* --- pixel bitmap for cmmib450 char#11 \alpha --- */
        !          27940:       {  11,74831,                      /* character number, location */
        !          27941:          29, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          27942:           { 41,   30, 3,189, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          27943:             "\xe0\x19\xe0\xe0\x1e\xe0\xb7\x56\xe0\x77\x96\xe0\x47"
        !          27944:             "\xa7\x73\x67\xc6\x73\x57\xd7\x54\x47\xe8\x43\x48\xe0"
        !          27945:             "\x17\x43\x47\xe0\x27\x34\x38\xe0\x27\x33\x48\xe0\x27"
        !          27946:             "\x24\x38\xe0\x38\x13\x48\xe0\x3c\x48\xe0\x3b\x49\xe0"
        !          27947:             "\x3b\x48\xe0\x4a\x58\xe0\x49\x6f\x18\xe0\x57\x7f\x27"
        !          27948:             "\xe0\x67\x70\x17\xe0\x48\x87\xe0\x2a\x51\x36\xe0\x14"
        !          27949:             "\x16\x43\x36\xc4\x37\x24\x46\x76\x66\x14\x7e\x01\x99"
        !          27950:             "\xb8\xe0\x15\x45" }  },
        !          27951:       /* --- pixel bitmap for cmmib450 char#12 \beta --- */
        !          27952:       {  12,76018,                      /* character number, location */
        !          27953:          44, 2,  -12, 2,      /* topleft row,col, and botleft row,col */
        !          27954:           { 39,   56, 3,303, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          27955:             "\xe0\xa8\xe0\xe0\x1c\xe0\xb4\x75\xe0\x74\xa5\xe0\x54"
        !          27956:             "\xb6\xe0\x33\xe5\xe0\x23\xe0\x15\xe0\x14\xe0\x16\xd4"
        !          27957:             "\xe0\x17\xd3\xe0\x27\xc3\xe0\x36\xc4\xe0\x36\x10\xf1"
        !          27958:             "\xb3\xe0\x37\x10\xa4\xe0\x36\xc3\xe0\x36\xd3\x69\x26"
        !          27959:             "\xc4\x4e\x04\xd3\x44\x77\xe3\x43\x78\xe3\x4e\x05\xc4"
        !          27960:             "\x69\x26\x40\xf2\x83\xe0\x56\x30\x74\xe0\x57\x20\xf2"
        !          27961:             "\x73\xe0\x67\x20\x64\xe0\x58\x20\xf2\x63\xe0\x67\x30"
        !          27962:             "\x54\xe0\x58\x30\xf1\x54\xe0\x57\x40\x54\xe0\x47\x95"
        !          27963:             "\xe0\x47\x96\xe0\x27\xa6\xe0\x17\xb7\xd7\xb4\x14\xb6"
        !          27964:             "\xd3\x35\x76\xe0\x13\x5e\xe0\x33\x79\xe0\x54\xe0\xe0"
        !          27965:             "\x50\xf2\x23\xe0\xe0\x60\x14\xe0\xe0\x60\xf2\x13\xe0"
        !          27966:             "\xe0\x74\xe0\xe0\x7f\x13\xe0\xe0\x81" }  },
        !          27967:       /* --- pixel bitmap for cmmib450 char#13 \gamma --- */
        !          27968:       {  13,77101,                      /* character number, location */
        !          27969:          29, 1,  -13, 1,      /* topleft row,col, and botleft row,col */
        !          27970:           { 38,   42, 3,193, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          27971:             "\xb6\xe0\xe0\x1b\xe0\x23\x7e\xd4\x5e\x03\xc3\x5e\x05"
        !          27972:             "\xa4\x4e\x07\x93\x5e\x07\x84\x46\xa7\x73\x45\xe5\x64"
        !          27973:             "\x44\xe0\x25\x53\x53\xe0\x44\x44\x44\xe0\x53\x43\x62"
        !          27974:             "\xe0\x64\x24\xe0\xe4\x23\xe0\xe0\x23\x14\xe0\xe0\x23"
        !          27975:             "\x13\xe0\xe0\x37\x70\xf2\xe0\xa6\x80\xf2\xe0\xa5\x90"
        !          27976:             "\xf1\xe0\xa4\xa0\xf1\xe0\xa3\xb0\xf3\xe0\x94\xb0\xf2"
        !          27977:             "\xe0\x84\xc0\xf1\xe0\x75\xc0\xf2\xe0\x74\xd0\xf1\xe0"
        !          27978:             "\x73\xe0\xe0\x72\xe0\x14" }  },
        !          27979:       /* --- pixel bitmap for cmmib450 char#14 \delta --- */
        !          27980:       {  14,78136,                      /* character number, location */
        !          27981:          44, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          27982:           { 29,   45, 3,177, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          27983:             "\xe0\x1a\xe0\x3e\x01\xd3\x3b\xc2\x69\xb3\x87\xb4\x94"
        !          27984:             "\x10\xf1\xb5\xd0\xc5\xe0\xa6\xe0\x98\xe0\x88\xe0\x79"
        !          27985:             "\xe0\x79\xe0\x6a\xe0\x6a\xe0\x2e\xde\x02\xb7\x2a\x96"
        !          27986:             "\x59\x86\x69\x76\x88\x67\x88\x57\x98\x56\xb7\x20\xf1"
        !          27987:             "\x27\xb7\x20\xf1\x17\xc7\x28\xc7\x28\xc6\x37\xd6\x3f"
        !          27988:             "\x17\xc7\x3f\x17\xc6\x46\xc6\x57\xb6\x66\xb5\x76\xa6"
        !          27989:             "\x86\x95\xa6\x75\xc6\x55\xe0\x1c\xe0\x67\xd0" }  },
        !          27990:       /* --- pixel bitmap for cmmib450 char#15 \epsilon --- */
        !          27991:       {  15,79096,                      /* character number, location */
        !          27992:          28, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          27993:           { 25,   29, 3,97, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          27994:             "\xe0\x1a\xbe\x9e\x02\x88\xe0\x18\xe0\x28\xe0\x28\xe0"
        !          27995:             "\x28\xe0\x37\xe0\x38\xe0\x29\xe0\x28\xe0\x20\xf1\x1e"
        !          27996:             "\x07\x3e\x07\x4f\x48\xe0\x30\xf2\x17\xe0\x30\x26\xe0"
        !          27997:             "\x66\xd3\x46\xa5\x57\x66\x8e\x01\xd9\x66" }  },
        !          27998:       /* --- pixel bitmap for cmmib450 char#16 \zeta --- */
        !          27999:       {  16,80044,                      /* character number, location */
        !          28000:          43, 3,  -13, 3,      /* topleft row,col, and botleft row,col */
        !          28001:           { 30,   56, 3,215, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          28002:             "\xe0\x43\xe0\xc4\x90\xf2\xe0\x33\xa0\xe0\x3b\xe0\x5d"
        !          28003:             "\xe0\x25\x63\xe0\x16\x54\xd4\x2a\xd4\x47\xe4\xe0\xb4"
        !          28004:             "\xe0\xb4\xe0\xb4\xe0\xb5\xe0\xa5\xe0\xa5\xe0\xb4\xe0"
        !          28005:             "\xb5\xe0\x70\xf1\x35\xe0\x80\xf2\x25\xe0\x90\x16\xe0"
        !          28006:             "\x90\xf2\x15\xe0\xaf\x36\xe0\xaf\x17\xe0\x98\xe0\x98"
        !          28007:             "\xe0\x89\xe0\x7b\xe0\x6e\xe0\x2e\x03\xee\x05\xce\x05"
        !          28008:             "\xde\x04\xee\x03\xe0\x1e\x01\xe0\x5c\xe0\x79\xe0\x97"
        !          28009:             "\xe0\xa6\x40\xf1\xe0\x65\x50\xb1\x84\xe0\x25\x44\xe0"
        !          28010:             "\x5a\xe0\x95\xa0" }  },
        !          28011:       /* --- pixel bitmap for cmmib450 char#17 \eta --- */
        !          28012:       {  17,81041,                      /* character number, location */
        !          28013:          29, 3,  -13, 3,      /* topleft row,col, and botleft row,col */
        !          28014:           { 35,   42, 3,185, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          28015:             "\x65\xb8\x99\x7c\x63\x26\x44\x56\x43\x46\x23\x86\x33"
        !          28016:             "\x46\x13\x97\x13\x59\xa7\x13\x49\xbb\x48\xca\x58\xca"
        !          28017:             "\x57\xda\x48\xc8\x78\xc8\xf1\x77\xd7\x10\xf1\x68\xc8"
        !          28018:             "\x10\xf1\x67\xd7\x20\xf1\x58\xc8\x20\xf1\x57\xd7\x30"
        !          28019:             "\xf1\x48\xc8\x30\xf1\x47\xd7\x40\x47\xc8\x86\xd8\x86"
        !          28020:             "\xd7\xa3\xe0\x17\x50\xf1\xe0\x88\x50\xf1\xe0\x87\x60"
        !          28021:             "\xf1\xe0\x78\x60\xf2\xe0\x77\x70\xf1\xe0\x76\x80\xe0"
        !          28022:             "\x83\xa6" }  },
        !          28023:       /* --- pixel bitmap for cmmib450 char#18 \theta --- */
        !          28024:       {  18,81941,                      /* character number, location */
        !          28025:          44, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          28026:           { 32,   45, 3,189, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          28027:             "\xe0\x46\xe0\x9b\xe0\x65\x45\xe0\x26\x65\xe6\x76\xc6"
        !          28028:             "\x86\xb6\xa6\x97\xa6\x10\xf1\x77\xb6\x10\x67\xc7\x58"
        !          28029:             "\xc7\x57\xc8\xf1\x48\xc8\xf1\x38\xd8\x38\xc8\x39\xc8"
        !          28030:             "\x10\xf1\x28\xd8\x10\x2e\x0e\x01\x10\xf1\x1e\x0e\x01"
        !          28031:             "\x20\x18\xd8\x38\xc9\x29\xc8\x3f\x18\xd8\x3f\x18\xc8"
        !          28032:             "\x47\xd7\x57\xc8\x5f\x17\xc7\x67\xb7\x86\xb6\x96\xa7"
        !          28033:             "\x96\x97\xb5\x96\xc6\x76\xe5\x66\xe0\x25\x45\xe0\x5b"
        !          28034:             "\xe0\x97\xe0\x41" }  },
        !          28035:       /* --- pixel bitmap for cmmib450 char#19 \iota --- */
        !          28036:       {  19,82720,                      /* character number, location */
        !          28037:          29, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          28038:           { 20,   30, 3,89, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          28039:             "\x93\x80\xf1\x76\x70\xf2\x67\x70\x58\x70\xf2\x57\x80"
        !          28040:             "\x48\x80\xf2\x47\x90\x38\x90\xf1\x37\xa0\x28\xc7\xd7"
        !          28041:             "\x83\x18\x83\x17\x8c\x83\x17\x84\x17\x74\x27\x73\x46"
        !          28042:             "\x54\x56\x35\x8a\xc6\x9e" }  },
        !          28043:       /* --- pixel bitmap for cmmib450 char#20 \kappa --- */
        !          28044:       {  20,83704,                      /* character number, location */
        !          28045:          29, 4,   -1, 4,      /* topleft row,col, and botleft row,col */
        !          28046:           { 35,   30, 3,155, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          28047:             "\x83\xe0\xe0\x26\xe5\xa6\xc8\x87\xaa\x87\x93\x17\x87"
        !          28048:             "\x74\x27\x78\x63\x46\x88\x53\x64\x97\x53\xe0\x67\x34"
        !          28049:             "\xe0\x68\x23\xe0\x88\x13\xe0\x9b\xe0\xac\xe0\x8e\x05"
        !          28050:             "\xe0\x28\x2c\xd7\x88\xc7\xa7\xa8\xb7\x98\xb7\x53\xf1"
        !          28051:             "\x17\xc7\x53\x08\xc7\x4c\xc7\x43\x17\xd6\x53\x1f\x17"
        !          28052:             "\xd6\x43\x26\xe0\x15\x33\x36\xe0\x29\x53\xe0\x65\x67" }  },
        !          28053:       /* --- pixel bitmap for cmmib450 char#21 \lambda --- */
        !          28054:       {  21,84655,                      /* character number, location */
        !          28055:          43, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          28056:           { 38,   44, 3,244, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          28057:             "\x79\xe0\xe0\x1b\xe0\xe0\x29\xe0\xe0\x28\xe0\xe0\x29"
        !          28058:             "\xe0\xe0\x28\xe0\xe0\x29\xe0\xe0\x28\xe0\xe0\x29\xe0"
        !          28059:             "\xe0\x28\xe0\xe0\x29\xe0\xe0\x28\xe0\x10\xf1\xe0\x19"
        !          28060:             "\xe0\xe0\x28\xe0\xe0\x29\xe0\xe0\x28\xe0\xe0\x29\xe0"
        !          28061:             "\xe0\x28\xe0\xe0\x29\xe0\xe0\x28\xe0\xe0\x29\xe0\xe0"
        !          28062:             "\x28\xe0\xe0\x1a\xe0\xdb\xe0\xcc\xe0\xae\x01\xe0\x86"
        !          28063:             "\x28\xe0\x76\x39\xe0\x56\x58\xe0\x46\x69\xe0\x17\x88"
        !          28064:             "\xe7\x99\xc8\xa8\xb8\xb9\x98\xc9\x79\xe8\x69\xe0\x19"
        !          28065:             "\x49\xe0\x38\x39\xe0\x49\x28\xe0\x68\x27\xe0\x79\x16"
        !          28066:             "\xe0\x99\x14\xe0\xb8" }  },
        !          28067:       /* --- pixel bitmap for cmmib450 char#22 \mu --- */
        !          28068:       {  22,85767,                      /* character number, location */
        !          28069:          29, 4,  -13, 4,      /* topleft row,col, and botleft row,col */
        !          28070:           { 38,   42, 3,201, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          28071:             "\xb3\xe0\xe0\x56\xe0\x23\xd6\xe6\x30\xf2\x87\xd7\x30"
        !          28072:             "\x78\xc8\xa8\xc7\x40\xf1\x77\xd7\x40\x68\xc8\xa8\xc7"
        !          28073:             "\x50\xf1\x67\xd7\x50\x58\xc8\xa8\xc7\x60\xf1\x57\xd7"
        !          28074:             "\x60\x48\xc8\xa8\xc7\x43\xf1\x47\xd7\x43\x38\xd7\x43"
        !          28075:             "\x38\xc8\x34\x38\xb8\x43\x49\x99\x43\x3a\x8a\x33\x4b"
        !          28076:             "\x54\x36\x14\x4e\x05\x59\x57\x28\x95\x50\xf1\x18\xe0"
        !          28077:             "\xe0\x10\xf1\x17\xe0\xe0\x2f\x18\xe0\xe0\x2f\x27\xe0"
        !          28078:             "\xe0\x3f\x16\xe0\xe0\x40\x13\xe0\xe0\x68" }  },
        !          28079:       /* --- pixel bitmap for cmmib450 char#23 \nu --- */
        !          28080:       {  23,86668,                      /* character number, location */
        !          28081:          29, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          28082:           { 35,   29, 3,133, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          28083:             "\x86\xe0\x33\x10\xf1\x2c\xe0\x16\x2c\xe7\xf1\x67\xe0"
        !          28084:             "\x17\x58\xe8\x58\xe7\x67\xe8\x67\xe7\x68\xd8\x68\xd7"
        !          28085:             "\x30\xf1\x47\xd7\x40\x38\xc7\x88\xb7\x97\xb7\xa7\xa7"
        !          28086:             "\xa8\x97\xb8\x87\xc7\x86\xe7\x76\xe8\x65\xe0\x28\x46"
        !          28087:             "\xe0\x37\x36\xe0\x57\x16\xe0\x6c\xe0\x9a\xe0\xb6\xe0"
        !          28088:             "\xe0\x16" }  },
        !          28089:       /* --- pixel bitmap for cmmib450 char#24 \xi --- */
        !          28090:       {  24,87860,                      /* character number, location */
        !          28091:          43, 2,  -13, 2,      /* topleft row,col, and botleft row,col */
        !          28092:           { 29,   56, 3,223, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          28093:             "\xe0\x33\xe0\xb4\x90\xf2\xe0\x23\xa0\xe0\x2b\xe0\x2e"
        !          28094:             "\x01\xc8\x63\xaa\x54\x98\x1a\x98\x37\xa8\xe0\x68\xe0"
        !          28095:             "\x69\xe0\x10\xf2\x58\xe0\x20\x49\xe0\x68\xe0\x87\xe0"
        !          28096:             "\x88\xe0\x78\x19\xce\x05\xb8\x73\xc7\x64\xae\x04\xa5"
        !          28097:             "\x39\xb5\xe0\x95\xe0\x70\xf1\x25\xe0\x80\xf1\x15\xe0"
        !          28098:             "\x96\xe0\x95\xe0\xaf\x16\xe0\x97\xe0\x89\xe0\x6c\xe0"
        !          28099:             "\x3e\x01\xe0\x1e\x02\xee\x04\xce\x06\xbe\x06\xbe\x05"
        !          28100:             "\xde\x02\xe0\x2d\xe0\x4b\xe0\x78\xe0\x96\xe0\xa5\xe1"
        !          28101:             "\x94\xe5\x54\xe0\x3b\xe0\x76\x80" }  },
        !          28102:       /* --- pixel bitmap for cmmib450 char#25 \pi --- */
        !          28103:       {  25,88888,                      /* character number, location */
        !          28104:          28, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          28105:           { 39,   29, 3,149, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          28106:             "\x8e\x0e\x02\x7e\x0e\x05\x5e\x0e\x06\x4e\x0e\x07\x3e"
        !          28107:             "\x0e\x08\x2e\x0e\x07\x35\x83\x73\xc5\x84\x73\xc3\xa3"
        !          28108:             "\x74\xc3\x94\x74\xc0\xf1\xc4\x74\xc0\xf1\xb4\x75\xc0"
        !          28109:             "\xf1\xa5\x75\xc0\x95\x85\xe0\x75\x86\xb0\xf1\x86\x86"
        !          28110:             "\xb0\xf1\x76\x97\xa0\x67\x97\xe0\x27\x98\x90\xf1\x57"
        !          28111:             "\xa8\x90\x57\xb7\xe6\xc6\xe0\x24\xe4\xb9" }  },
        !          28112:       /* --- pixel bitmap for cmmib450 char#26 \rho --- */
        !          28113:       {  26,89798,                      /* character number, location */
        !          28114:          29, 4,  -13, 4,      /* topleft row,col, and botleft row,col */
        !          28115:           { 34,   42, 3,165, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          28116:             "\xe0\x58\xe0\x9d\xe0\x56\x56\xe0\x26\x76\xd6\x97\xb7"
        !          28117:             "\xa6\xa7\xb7\x96\xc7\x87\xc7\x77\xd7\x77\xc8\x68\xc8"
        !          28118:             "\xf1\x67\xd8\x67\xc9\x58\xc9\xf1\x57\xd8\x10\x57\xc9"
        !          28119:             "\x58\xc8\x67\xd8\x67\xc8\x77\xc7\x78\xb8\x77\xc7\x88"
        !          28120:             "\xa7\x99\x86\xab\x57\xb7\x2c\xd7\x47\xe0\x27\xe0\xc8"
        !          28121:             "\xe0\xb0\xf2\x17\xe0\xc8\xe0\xcf\x27\xe0\xdf\x16\xe0"
        !          28122:             "\xe0\x13\xe0\xe0\x22" }  },
        !          28123:       /* --- pixel bitmap for cmmib450 char#27 \sigma --- */
        !          28124:       {  27,90816,                      /* character number, location */
        !          28125:          28, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          28126:           { 39,   29, 3,135, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          28127:             "\xee\x0a\xce\x0e\x9e\x0e\x02\x8e\x0e\x03\x6e\x0e\x05"
        !          28128:             "\x5e\x0e\x04\x6a\x78\xe8\xa7\xd7\xd7\xb8\xd7\xb7\xe7"
        !          28129:             "\xa8\xe7\xa7\xe0\x17\xa7\xe8\x98\xe7\xaf\x17\xe0\x17"
        !          28130:             "\xa7\xe8\xa7\xe7\xb6\xe0\x17\xbf\x16\xe7\xc6\xd7\xe5"
        !          28131:             "\xd6\xe0\x16\xb6\xe0\x36\x87\xe0\x56\x57\xe0\x9e\xe0"
        !          28132:             "\xd9\xe0\x92" }  },
        !          28133:       /* --- pixel bitmap for cmmib450 char#28 \tau --- */
        !          28134:       {  28,91667,                      /* character number, location */
        !          28135:          28, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          28136:           { 35,   29, 3,129, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          28137:             "\x8e\x0c\x7e\x0e\x01\x5e\x0e\x02\x4e\x0e\x03\x3e\x0e"
        !          28138:             "\x04\x2e\x0e\x03\x35\xa4\xe0\x15\xb4\xe0\x1f\x13\xc4"
        !          28139:             "\xe0\x20\xe0\x14\xe0\x20\xf2\xe5\xe0\x20\xf2\xd5\xe0"
        !          28140:             "\x30\xf1\xc6\xe0\x30\xf1\xb7\xe0\x30\xb6\xe0\x40\xf2"
        !          28141:             "\xa7\xe0\x40\xf1\x98\xe0\x40\xa6\xe0\xe0\x15\xe0\x60" }  },
        !          28142:       /* --- pixel bitmap for cmmib450 char#29 \upsilon --- */
        !          28143:       {  29,92608,                      /* character number, location */
        !          28144:          29, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          28145:           { 35,   30, 3,161, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          28146:             "\x75\xe0\x34\x79\xd7\x53\x36\xb8\x33\x46\xa9\x23\x57"
        !          28147:             "\x99\x14\x57\x99\x13\x67\x9d\x58\xba\x67\xd9\x58\xe8"
        !          28148:             "\x57\xe0\x24\x87\xe0\x23\x88\xe0\x23\x87\xe0\x33\x87"
        !          28149:             "\xe0\x24\x78\xe0\x23\x87\xe0\x33\x87\xe0\x24\x87\xe0"
        !          28150:             "\x23\x88\xe0\x14\x87\xe0\x23\x97\xe0\x14\x97\xe4\xb6"
        !          28151:             "\xe3\xc6\xd3\xd7\xb3\xe0\x17\x93\xe0\x37\x64\xe0\x6d"
        !          28152:             "\xe0\xb8\xe0" }  },
        !          28153:       /* --- pixel bitmap for cmmib450 char#30 \phi --- */
        !          28154:       {  30,93592,                      /* character number, location */
        !          28155:          43, 4,  -13, 4,      /* topleft row,col, and botleft row,col */
        !          28156:           { 39,   56, 3,265, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          28157:             "\xf1\xe0\xb3\xb0\xf1\xe0\xa4\xb0\xf1\xe0\xa3\xc0\xf1"
        !          28158:             "\xe0\x94\xc0\xf1\xe0\x93\xd0\xf1\xe0\x84\xd0\xf1\xe0"
        !          28159:             "\x83\xe0\xe0\x3b\xe0\xbe\x04\xe0\x48\x23\x37\xe7\x53"
        !          28160:             "\x56\xc6\x64\x66\x97\x74\x76\x77\x83\x96\x57\x93\x96"
        !          28161:             "\x10\xf1\x37\x94\x97\xf1\x27\xa3\xa7\xf1\x17\xa4\xa7"
        !          28162:             "\x17\xa3\xae\x02\xa3\xa8\x0f\x17\xa4\xa7\x1f\x17\xa3"
        !          28163:             "\xa7\x2f\x17\x94\x97\x30\x16\x93\x97\x56\x93\x87\x76"
        !          28164:             "\x74\x77\x96\x64\x66\xc6\x53\x57\xe7\x33\x28\xe0\x4e"
        !          28165:             "\x04\xe0\xbb\xe0\x30\xf1\xe3\xe0\x80\xf1\xd4\xe0\x80"
        !          28166:             "\xf1\xd3\xe0\x90\xf1\xc4\xe0\x90\xf1\xc3\xe0\xa0\xf1"
        !          28167:             "\xb4\xe0\xa3" }  },
        !          28168:       /* --- pixel bitmap for cmmib450 char#31 \chi --- */
        !          28169:       {  31,94799,                      /* character number, location */
        !          28170:          29, 3,  -13, 3,      /* topleft row,col, and botleft row,col */
        !          28171:           { 40,   42, 3,239, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          28172:             "\x58\xe0\xe0\x2c\xe0\x92\x24\x29\xe0\x54\x14\x49\xe0"
        !          28173:             "\x35\x13\x69\xe0\x15\xb9\xe5\xd9\xc5\xe9\xb5\xe0\x28"
        !          28174:             "\xa5\xe0\x39\x85\xe0\x58\x75\xe0\x68\x65\xe0\x88\x45"
        !          28175:             "\xe0\x98\x35\xe0\xa8\x25\xe0\xc7\x15\xe0\xdc\xe0\xeb"
        !          28176:             "\xe0\xe0\x29\xe0\x10\xf3\xe0\x28\xe0\x20\xe0\x19\xe0"
        !          28177:             "\xe0\x2b\xe0\xec\xe0\xd5\x17\xe0\xc5\x28\xe0\xa5\x38"
        !          28178:             "\xe0\x95\x48\xe0\x85\x68\xe0\x65\x78\xe0\x55\x89\xe0"
        !          28179:             "\x35\xa8\xe0\x25\xb9\xe5\xc9\xd5\xe9\x71\x35\xe0\x19"
        !          28180:             "\x63\x15\xe0\x39\x44\x14\xe0\x59\x24\x22\xe0\x9c\xe0"
        !          28181:             "\xe0\x28\x50" }  },
        !          28182:       /* --- pixel bitmap for cmmib450 char#32 \psi --- */
        !          28183:       {  32,95974,                      /* character number, location */
        !          28184:          43, 3,  -13, 3,      /* topleft row,col, and botleft row,col */
        !          28185:           { 43,   56, 3,317, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          28186:             "\xf1\xe0\xe0\x13\xb0\xf1\xe0\xe4\xb0\xf1\xe0\xe3\xc0"
        !          28187:             "\xf1\xe0\xd4\xc0\xf1\xe0\xd3\xd0\xf1\xe0\xc4\xd0\xf1"
        !          28188:             "\xe0\xc3\xe0\x75\xd4\x84\x79\xb4\x67\x53\x36\x93\x78"
        !          28189:             "\x33\x46\x93\x69\x23\x57\x74\x69\x14\x57\x74\x69\x13"
        !          28190:             "\x67\x73\x7d\x58\x73\x9a\x67\x74\xa9\x58\x74\xb8\x57"
        !          28191:             "\x83\xd4\x87\x83\xd3\x88\x74\xd3\x87\x84\xd3\x87\x83"
        !          28192:             "\xd4\x78\x83\xd3\x87\x84\xd3\x87\x84\xc3\x97\x83\xc4"
        !          28193:             "\x88\x83\xc3\x97\x84\xb4\xa6\x84\xa4\xb6\x83\xa4\xc7"
        !          28194:             "\x73\x94\xd7\x64\x84\xe0\x17\x54\x74\xe0\x37\x43\x64"
        !          28195:             "\xe0\x77\x23\x35\xe0\xbe\x02\xe0\xe0\x2b\xe0\x30\xf1"
        !          28196:             "\xe0\x43\xe0\x80\xf1\xe0\x34\xe0\x80\xf1\xe0\x33\xe0"
        !          28197:             "\x90\xf1\xe0\x24\xe0\x90\xf1\xe0\x23\xe0\xa0\xf1\xe0"
        !          28198:             "\x14\xe0\xac" }  },
        !          28199:       /* --- pixel bitmap for cmmib450 char#33 \omega --- */
        !          28200:       {  33,97235,                      /* character number, location */
        !          28201:          29, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
        !          28202:           { 42,   30, 3,195, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          28203:             "\xe0\xe0\x84\x84\xe0\xb6\x74\xe0\xa8\x55\xe0\x99\x45"
        !          28204:             "\xe0\xa9\x44\xe0\xb9\x35\xe0\xb9\x34\xe0\xe7\x24\xe0"
        !          28205:             "\xe0\x26\x24\xe0\xe0\x35\x23\xe0\xe0\x45\x14\xe0\x13"
        !          28206:             "\xe0\x13\x23\xe0\x15\xe3\x23\xe6\xe3\x23\xe6\xd4\x14"
        !          28207:             "\xe6\xd3\x23\xe0\x16\xd3\x23\xe0\x15\xd4\x24\xe5\xd3"
        !          28208:             "\x34\xe4\xd4\x35\xc5\xc5\x35\xb7\xa5\x47\x7a\x77\x4e"
        !          28209:             "\x0e\x09\x6e\x0e\x07\x7e\x03\x1e\x02\x9e\x01\x3e\xbd"
        !          28210:             "\x4d\xda\x8a\xe0\x26\xc6\xc6" }  },
        !          28211:       /* --- pixel bitmap for cmmib450 char#34 \varepsilon --- */
        !          28212:       {  34,98298,                      /* character number, location */
        !          28213:          29, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          28214:           { 28,   30, 3,121, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          28215:             "\xe9\xe0\x2e\xce\x04\x8e\x07\x6e\x08\x57\x97\x45\xe4"
        !          28216:             "\x10\xf1\x34\xe0\x70\xf1\x33\xe0\x80\x33\x56\xe3\x1c"
        !          28217:             "\xc8\x54\xc4\x84\xbe\x02\xb3\x3a\xb4\xe0\xa3\xe0\xa4"
        !          28218:             "\xe0\xaf\x13\xe0\xb4\xe0\x61\x34\xe0\x52\x37\xd5\x4e"
        !          28219:             "\x09\x6e\x07\x8e\x04\xce\xe0\x2a\xb5" }  },
        !          28220:       /* --- pixel bitmap for cmmib450 char#35 \vartheta --- */
        !          28221:       {  35,99353,                      /* character number, location */
        !          28222:          44, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          28223:           { 38,   45, 3,233, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          28224:             "\xe0\xa6\xe0\xe0\x2a\xe0\xd4\x35\xe0\xa4\x65\xe0\x93"
        !          28225:             "\x85\xe0\x73\x95\xe0\x64\x96\x20\xf1\xe0\x33\xa6\x20"
        !          28226:             "\xf3\xe0\x33\xa7\x10\xe0\x33\x98\xe0\x44\x88\x75\x73"
        !          28227:             "\x88\x59\x54\x78\x43\x26\x55\x48\x43\x46\x64\x38\x43"
        !          28228:             "\x46\x7e\x33\x56\xab\x33\x47\xc9\x24\x47\xce\x57\xc8"
        !          28229:             "\x15\x57\xc8\x33\x48\xb9\xa8\xb8\x40\xf1\x77\xc8\x40"
        !          28230:             "\xf1\x68\xb8\x50\x67\xc7\xc7\xb8\xc7\xb7\xc8\xb7\x70"
        !          28231:             "\xf1\x57\xb7\x80\x57\xa7\xe7\xa6\xe0\x17\x96\xe0\x36"
        !          28232:             "\x86\xe0\x47\x66\xe0\x67\x46\xe0\x9d\xe0\xd8\xe0\x54" }  },
        !          28233:       /* --- pixel bitmap for cmmib450 char#36 \varpi --- */
        !          28234:       {  36,100728,                     /* character number, location */
        !          28235:          28, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          28236:           { 57,   29, 3,257, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          28237:             "\x8e\x0e\x0e\x06\x7e\x0e\x0e\x09\x5e\x0e\x0e\x0a\x4e"
        !          28238:             "\x0e\x0e\x0b\x3e\x0e\x0e\x0c\x2e\x0e\x0e\x0b\x35\x54"
        !          28239:             "\xe0\xe0\x63\x55\x63\xe0\xe0\x73\x53\x74\xe0\xe0\x73"
        !          28240:             "\x53\x64\xe0\x31\xe0\x43\xe3\xe0\x33\xe0\x33\xd4\xe0"
        !          28241:             "\x33\xe0\x33\xd3\xe0\x43\xe0\x33\xd3\xe0\x34\xe0\x24"
        !          28242:             "\xc4\xe0\x34\xe0\x23\xd3\xe0\x35\xe0\x23\xd3\xe0\x26"
        !          28243:             "\xe0\x14\xd3\xe0\x17\xe4\xd4\xe8\xe4\xd4\xd9\xd4\xe4"
        !          28244:             "\xcb\xb5\xe5\xa6\x15\x96\xe0\x25\x68\x36\x57\xe0\x3e"
        !          28245:             "\x04\x4e\x04\xe0\x3e\x03\x5e\x03\xe0\x4e\x02\x7e\x01"
        !          28246:             "\xe0\x6d\x9d\xe0\x9b\xba\xe0\xd6\xe0\x26\xe0\x40" }  },
        !          28247:       /* --- pixel bitmap for cmmib450 char#37 \varrho --- */
        !          28248:       {  37,101725,                     /* character number, location */
        !          28249:          29, 6,  -12, 6,      /* topleft row,col, and botleft row,col */
        !          28250:           { 32,   41, 3,165, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          28251:             "\xe0\x38\xe0\x7d\xe0\x36\x56\xe6\x76\xb6\x97\x97\xa6"
        !          28252:             "\x87\xb7\x76\xc7\x67\xc7\x57\xd7\x57\xc8\x48\xc8\xf1"
        !          28253:             "\x47\xd8\x47\xc9\x38\xc9\xf1\x37\xd8\x10\x37\xc9\x38"
        !          28254:             "\xc8\x47\xd8\x47\xc8\x57\xc7\x58\xb8\x59\xa7\x69\x97"
        !          28255:             "\x73\x16\x76\x93\x26\x47\x94\x4d\xb4\x68\xef\x24\xe0"
        !          28256:             "\xe6\xe0\xce\x07\xbe\x09\x9e\x0a\x9e\x09\xae\x08\xde"
        !          28257:             "\x04\xe0\xe0\x13\x97" }  },
        !          28258:       /* --- pixel bitmap for cmmib450 char#38 \varsigma --- */
        !          28259:       {  38,102640,                     /* character number, location */
        !          28260:          29, 3,   -7, 3,      /* topleft row,col, and botleft row,col */
        !          28261:           { 27,   36, 3,137, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          28262:             "\xe0\x19\xee\x02\x96\x75\x75\xc2\x74\xe0\x84\xe0\x75"
        !          28263:             "\xe0\x84\xe0\x85\xe0\x60\xf1\x15\xe0\x76\xe0\x75\xe0"
        !          28264:             "\x8f\x26\xe0\x77\xe0\x68\xe0\x5a\xe0\x3c\xe0\x2d\xe0"
        !          28265:             "\x1e\xee\x01\xde\x02\xde\x01\xee\xe0\x1c\xe0\x3a\xe0"
        !          28266:             "\x58\xe0\x67\xe0\x76\x50\xf1\xe0\x25\x60\xa1\x45\xe0"
        !          28267:             "\x39\xe0\x56\xa7" }  },
        !          28268:       /* --- pixel bitmap for cmmib450 char#39 \varphi --- */
        !          28269:       {  39,103649,                     /* character number, location */
        !          28270:          29, 3,  -13, 3,      /* topleft row,col, and botleft row,col */
        !          28271:           { 41,   42, 3,251, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          28272:             "\xe0\xe0\x26\xc3\xe0\x4a\x94\xe0\x2d\x74\xe0\x2e\x01"
        !          28273:             "\x54\xe0\x2e\x02\x53\xe0\x2e\x04\x34\xe0\x17\x66\x33"
        !          28274:             "\xe0\x25\x95\x24\xe0\x15\xb4\x23\xe0\x15\xc4\x23\xe0"
        !          28275:             "\x14\xe3\x14\xe4\xe0\x13\xf1\x13\xe0\x13\xe0\x23\x13"
        !          28276:             "\xe3\xe0\x28\xe3\xe0\x23\x13\xe3\xe0\x33\x14\xd3\xe0"
        !          28277:             "\x24\x14\xd3\xe0\x14\x24\xc3\xe0\x15\x34\xb3\xe5\x46"
        !          28278:             "\x93\xc6\x67\x64\xa7\x7b\x24\x6a\x9e\x0e\x03\xbe\x0e"
        !          28279:             "\x01\xee\x0b\xe0\x3e\x08\xe0\x8e\x03\xe0\xdb\xe0\x30"
        !          28280:             "\xf2\xc6\xe0\x90\xf2\xb6\xe0\xa0\xf1\xa7\xe0\xa0\xf1"
        !          28281:             "\x98\xe0\xa0\x97\xe0\xe0\x75\xe0\xc0" }  },
        !          28282:       /* --- pixel bitmap for cmmib450 char#40 \bfleftharpoonup --- */
        !          28283:       {  40,120805,                     /* character number, location */
        !          28284:          32, 4,   14, 4,      /* topleft row,col, and botleft row,col */
        !          28285:           { 64,   18, 2,37, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          28286:             "\x0f\x04\x3b\x05\x3b\x04\x3b\x05\x3b\x04\x3b\x05\x3a"
        !          28287:             "\x05\x3a\x06\x39\x06\x39\x06\x39\x06\x39\x06\x39\x06"
        !          28288:             "\x39\x06\x38\x3d\x01\xff\x01\x40\x00\x3f\x01" }  },
        !          28289:       /* --- pixel bitmap for cmmib450 char#41 \bfleftharpoondown --- */
        !          28290:       {  41,121857,                     /* character number, location */
        !          28291:          18, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          28292:           { 64,   18, 2,37, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          28293:             "\x00\x3f\x01\xff\x01\x40\x02\x3d\x05\x06\x3b\x06\x3b"
        !          28294:             "\x06\x3b\x06\x3b\x06\x3b\x06\x3b\x06\x3b\x05\x3c\x05"
        !          28295:             "\x3c\x04\x3c\x05\x3c\x04\x3c\x05\x3c\x04\x2d" }  },
        !          28296:       /* --- pixel bitmap for cmmib450 char#42 \bfrightharpoonup --- */
        !          28297:       {  42,122907,                     /* character number, location */
        !          28298:          32, 4,   14, 4,      /* topleft row,col, and botleft row,col */
        !          28299:           { 64,   18, 2,36, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          28300:             "\x2d\x04\x3c\x05\x3c\x04\x3c\x05\x3c\x04\x3c\x05\x3c"
        !          28301:             "\x05\x3b\x06\x3b\x06\x3b\x06\x3b\x06\x3b\x06\x3b\x06"
        !          28302:             "\x3b\x06\x05\x3d\x02\xff\x01\x40\x01\x3f" }  },
        !          28303:       /* --- pixel bitmap for cmmib450 char#43 \bfrightharpoondown --- */
        !          28304:       {  43,123960,                     /* character number, location */
        !          28305:          18, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          28306:           { 64,   18, 2,37, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          28307:             "\x01\x3f\x00\xff\x01\x40\x01\x3d\x38\x06\x39\x06\x39"
        !          28308:             "\x06\x39\x06\x39\x06\x39\x06\x39\x06\x3a\x05\x3a\x05"
        !          28309:             "\x3b\x04\x3b\x05\x3b\x04\x3b\x05\x3b\x04\x0f" }  },
        !          28310:       /* --- pixel bitmap for cmmib450 char#44 ` --- */
        !          28311:       {  44,124405,                     /* character number, location */
        !          28312:          32, 4,   14, 4,      /* topleft row,col, and botleft row,col */
        !          28313:           { 12,   18, 3,39, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          28314:             "\x74\x67\x39\x29\x27\x55\x6f\x15\x7f\x14\x8f\x15\x70"
        !          28315:             "\x15\x77\x69\x49\x57\x74\x16" }  },
        !          28316:       /* --- pixel bitmap for cmmib450 char#45 ' --- */
        !          28317:       {  45,124849,                     /* character number, location */
        !          28318:          32, 4,   14, 4,      /* topleft row,col, and botleft row,col */
        !          28319:           { 12,   18, 3,39, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          28320:             "\x14\x77\x59\x49\x67\x75\x10\xf1\x75\xf1\x84\xf1\x75"
        !          28321:             "\x65\x57\x29\x29\x37\x64\x76" }  },
        !          28322:       /* --- pixel bitmap for cmmib450 char#46 \triangleright --- */
        !          28323:       {  46,125410,                     /* character number, location */
        !          28324:          34, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
        !          28325:           { 32,   36, 3,173, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          28326:             "\x12\xe0\xe0\x15\xe0\xd7\xe0\xb9\xe0\x9a\xe0\x8c\xe0"
        !          28327:             "\x64\x28\xe0\x44\x48\xe0\x24\x58\xe0\x14\x78\xd4\x98"
        !          28328:             "\xb4\xb8\x94\xc8\x84\xe8\x64\xe0\x28\x44\xe0\x48\x24"
        !          28329:             "\xe0\x58\x1f\x14\xe0\x77\x04\xe0\x58\x14\xe0\x48\x24"
        !          28330:             "\xe0\x28\x44\xe8\x64\xc8\x84\xb8\x94\x98\xb4\x78\xd4"
        !          28331:             "\x58\xe0\x14\x48\xe0\x24\x28\xe0\x4c\xe0\x6a\xe0\x89"
        !          28332:             "\xe0\x97\xe0\xb5\xe0\xe2\xe0\xe0\x16" }  },
        !          28333:       /* --- pixel bitmap for cmmib450 char#47 \triangleleft --- */
        !          28334:       {  47,126054,                     /* character number, location */
        !          28335:          34, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
        !          28336:           { 32,   36, 3,173, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          28337:             "\xe0\xe0\x12\xe0\xe5\xe0\xb7\xe0\x99\xe0\x8a\xe0\x6c"
        !          28338:             "\xe0\x48\x24\xe0\x28\x44\xe0\x18\x54\xd8\x74\xb8\x94"
        !          28339:             "\x98\xb4\x88\xc4\x68\xe4\x48\xe0\x24\x28\xe0\x44\x18"
        !          28340:             "\xe0\x54\x0f\x17\xe0\x74\x18\xe0\x54\x28\xe0\x44\x48"
        !          28341:             "\xe0\x24\x68\xe4\x88\xc4\x98\xb4\xb8\x94\xd8\x74\xe0"
        !          28342:             "\x18\x54\xe0\x28\x44\xe0\x48\x24\xe0\x6c\xe0\x8a\xe0"
        !          28343:             "\x99\xe0\xb7\xe0\xd5\xe0\xe0\x12\x16" }  },
        !          28344:       /* --- pixel bitmap for cmmib450 char#48 \0 --- */
        !          28345:       {  48,110630,                     /* character number, location */
        !          28346:          29, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          28347:           { 30,   30, 3,79, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          28348:             "\xaa\xe0\x3e\x02\xc7\x67\x96\xa6\x76\xc6\x57\xc7\x46"
        !          28349:             "\xe6\x20\xf2\x17\xe7\x1f\x98\xe8\xf2\x17\xe7\x10\x26"
        !          28350:             "\xe6\x47\xc7\x56\xc6\x76\xa6\x97\x67\xce\x02\xe0\x3a"
        !          28351:             "\xa4" }  },
        !          28352:       /* --- pixel bitmap for cmmib450 char#49 \1 --- */
        !          28353:       {  49,111469,                     /* character number, location */
        !          28354:          29, 6,    0, 6,      /* topleft row,col, and botleft row,col */
        !          28355:           { 25,   29, 3,40, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          28356:             "\xe0\x12\xe0\x65\xe0\x1a\x8f\x1e\x03\x87\x28\x80\xfe"
        !          28357:             "\x98\x80\xf4\x98\x8f\x2e\x0b" }  },
        !          28358:       /* --- pixel bitmap for cmmib450 char#50 \2 --- */
        !          28359:       {  50,112475,                     /* character number, location */
        !          28360:          29, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          28361:           { 29,   29, 3,111, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          28362:             "\x8c\xee\x04\x9e\x08\x66\x8b\x44\xca\x26\xc9\x10\xf1"
        !          28363:             "\x16\xd9\x16\xe8\x24\xe0\x18\xf1\xe0\x69\xe0\x59\xe0"
        !          28364:             "\x68\xe0\x68\xe0\x68\xe0\x58\xe0\x66\xe0\x76\x83\xb5"
        !          28365:             "\xa3\x95\xb4\x84\xd4\x6e\x08\x6e\x09\x4e\x0b\x3e\x0c"
        !          28366:             "\x1f\x2e\x0d\x23" }  },
        !          28367:       /* --- pixel bitmap for cmmib450 char#51 \3 --- */
        !          28368:       {  51,113550,                     /* character number, location */
        !          28369:          29, 3,  -13, 3,      /* topleft row,col, and botleft row,col */
        !          28370:           { 30,   42, 3,159, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          28371:             "\xaa\xe0\x3e\x02\xd5\x68\x94\xa8\x74\xc8\x65\xb8\x57"
        !          28372:             "\xb8\x20\xf3\x28\xa8\x20\x36\xa9\x64\xb8\xe0\x88\xe0"
        !          28373:             "\x78\xe0\x78\xe0\x86\xe0\x87\xe0\x3a\xe0\x6e\xe0\xa8"
        !          28374:             "\xe0\x98\xe0\x98\xe0\x98\xe0\x89\xe0\x88\x10\xf1\xe0"
        !          28375:             "\x79\x33\xe0\x19\x17\xd9\x0f\x29\xc9\x09\xc8\x19\xb9"
        !          28376:             "\x18\xc8\x35\xd9\x44\xc9\x66\x89\x8e\x06\xce\x02\xe0"
        !          28377:             "\x3a\xba" }  },
        !          28378:       /* --- pixel bitmap for cmmib450 char#52 \4 --- */
        !          28379:       {  52,114561,                     /* character number, location */
        !          28380:          30, 2,  -12, 2,      /* topleft row,col, and botleft row,col */
        !          28381:           { 32,   42, 3,154, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          28382:             "\xf1\xe0\x84\x60\xe0\x75\xe0\xc6\xe0\xb7\xe0\xa8\x60"
        !          28383:             "\xf1\xe0\x39\x60\xe0\x2a\xe0\x73\x17\xe0\x63\x27\xe0"
        !          28384:             "\x53\x37\xe0\x43\x47\xe0\x34\x47\xe0\x33\x57\xe0\x23"
        !          28385:             "\x67\xe0\x13\x77\xe3\x87\xd3\x97\x60\xf1\x63\xa7\x60"
        !          28386:             "\x53\xb7\xa3\xc7\x93\xd7\x83\xe7\x73\xe0\x17\x64\xe0"
        !          28387:             "\x17\x6f\x2e\x0e\x04\xf8\xe0\x48\x60\xf2\xbe\x07" }  },
        !          28388:       /* --- pixel bitmap for cmmib450 char#53 \5 --- */
        !          28389:       {  53,115676,                     /* character number, location */
        !          28390:          29, 4,  -13, 4,      /* topleft row,col, and botleft row,col */
        !          28391:           { 28,   42, 3,143, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          28392:             "\x32\xe0\x52\x56\xb6\x5e\x08\x6e\x07\x7e\x06\x8e\x05"
        !          28393:             "\x9e\x04\xae\x02\xcd\xc0\xf5\x33\xe0\x80\x33\x48\xd3"
        !          28394:             "\x2d\xa7\x67\x85\x97\x74\xb7\x63\xc8\x52\xe7\x20\xf1"
        !          28395:             "\xe0\x58\x10\xf2\xe0\x59\x23\xe9\x16\xc9\x0f\x28\xb9"
        !          28396:             "\x08\xb8\x17\xc8\x15\xd9\x24\xd8\x34\xc8\x55\x98\x76"
        !          28397:             "\x68\x9e\x04\xce\xe0\x29\xb0" }  },
        !          28398:       /* --- pixel bitmap for cmmib450 char#54 \6 --- */
        !          28399:       {  54,116653,                     /* character number, location */
        !          28400:          41, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          28401:           { 30,   42, 3,147, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          28402:             "\xe0\x17\xe0\x5e\xe7\x64\xc6\x94\x96\xc3\x86\xb6\x67"
        !          28403:             "\xa7\x66\xb7\x57\xb7\x47\xc7\x47\xd5\x57\xe0\x70\xf2"
        !          28404:             "\x17\xe0\x88\x57\xa8\x3c\x78\x23\x57\x58\x13\x86\x4b"
        !          28405:             "\xa6\x3a\xb7\x29\xc8\x1f\x19\xd7\x1f\x38\xe8\xf3\x17"
        !          28406:             "\xe8\x27\xd8\x27\xd7\x37\xc8\x47\xb7\x66\xb7\x67\x97"
        !          28407:             "\x87\x68\xbe\x03\xe0\x1d\xe0\x59\xa0" }  },
        !          28408:       /* --- pixel bitmap for cmmib450 char#55 \7 --- */
        !          28409:       {  55,117660,                     /* character number, location */
        !          28410:          30, 4,  -13, 4,      /* topleft row,col, and botleft row,col */
        !          28411:           { 31,   43, 3,147, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          28412:             "\x23\xe0\xe4\xe0\xb0\xf2\x2e\x0e\x01\x2e\x0e\x2e\x0e"
        !          28413:             "\x20\xf1\x1e\x0d\x30\x1e\x0c\x53\xe0\x44\x63\xe0\x34"
        !          28414:             "\x64\xe0\x24\x73\xe0\x24\x83\xe0\x23\x93\xe0\x14\xe0"
        !          28415:             "\xc4\xe0\xc4\xb0\xf1\xe0\x14\xc0\xf1\xe4\xd0\xd5\xe0"
        !          28416:             "\xc4\xe0\xf1\xc5\xe0\xf1\xb6\xe0\xb5\xe0\x10\xf3\xa6"
        !          28417:             "\xe0\x10\xf8\x97\xe0\x10\xb3\xe0\x30" }  },
        !          28418:       /* --- pixel bitmap for cmmib450 char#56 \8 --- */
        !          28419:       {  56,118643,                     /* character number, location */
        !          28420:          41, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          28421:           { 30,   42, 3,193, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          28422:             "\xb9\xe0\x4e\x01\xd5\x77\xa4\xb6\x84\xd6\x64\xe0\x15"
        !          28423:             "\x64\xe0\x16\x20\xf1\x25\xe0\x25\x20\x26\xe0\x15\x47"
        !          28424:             "\xe5\x48\xd5\x4a\xa5\x5b\x95\x5d\x65\x7e\x35\x8e\x07"
        !          28425:             "\xae\x04\xde\x03\xee\x04\xee\x04\xbe\x06\x85\x1e\x03"
        !          28426:             "\x56\x4e\x01\x46\x7e\x35\xac\x25\xdb\x15\xee\x01\xe0"
        !          28427:             "\x3d\xe0\x4c\xe0\x56\x0f\x15\xe0\x65\x05\xe0\x64\x16"
        !          28428:             "\xe0\x54\x25\xe0\x45\x26\xe0\x34\x46\xe5\x68\x96\x9e"
        !          28429:             "\x06\xce\x02\xe0\x3a\xa7" }  },
        !          28430:       /* --- pixel bitmap for cmmib450 char#57 \9 --- */
        !          28431:       {  57,119640,                     /* character number, location */
        !          28432:          29, 3,  -13, 3,      /* topleft row,col, and botleft row,col */
        !          28433:           { 30,   42, 3,145, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          28434:             "\xa9\xe0\x5e\xe6\x65\xb7\x86\x87\xa6\x67\xb7\x57\xc6"
        !          28435:             "\x30\xf1\x17\xd7\x2f\x38\xe7\x1f\x48\xe8\xf1\x17\xd9"
        !          28436:             "\x27\xc9\x27\xba\x37\x9b\x46\x83\x18\x66\x53\x28\x7c"
        !          28437:             "\x38\xa7\x58\xf1\xe0\x87\x10\xe0\x78\xe0\x87\x55\xd7"
        !          28438:             "\x47\xc7\x47\xb7\x57\xb6\x67\xa7\x66\xa7\x84\xa7\x95"
        !          28439:             "\x78\xbe\x03\xe0\x1d\xe0\x58\xe0" }  },
        !          28440:       /* --- pixel bitmap for cmmib450 char#58 . --- */
        !          28441:       {  58,126627,                     /* character number, location */
        !          28442:          10, 5,    0, 5,      /* topleft row,col, and botleft row,col */
        !          28443:           { 10,   10, 3,21, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          28444:             "\x34\x30\xf1\x18\x1f\x3a\xf1\x18\x10\x34\x3a" }  },
        !          28445:       /* --- pixel bitmap for cmmib450 char#59 , --- */
        !          28446:       {  59,127202,                     /* character number, location */
        !          28447:          10, 5,  -12, 5,      /* topleft row,col, and botleft row,col */
        !          28448:           { 11,   22, 3,45, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          28449:             "\x34\x58\x2f\x1a\x1f\x3b\x1a\x34\x22\x92\x83\xf1\x82"
        !          28450:             "\x10\x73\x82\x83\x73\x73\x73\x73\x82\x78" }  },
        !          28451:       /* --- pixel bitmap for cmmib450 char#60 < --- */
        !          28452:       {  60,127894,                     /* character number, location */
        !          28453:          38, 6,   -6, 6,      /* topleft row,col, and botleft row,col */
        !          28454:           { 44,   44, 2,91, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          28455:             "\x28\x03\x27\x06\x24\x08\x22\x09\x21\x09\x21\x09\x21"
        !          28456:             "\x09\x21\x09\x21\x09\x21\x09\x21\x09\x21\x09\x21\x09"
        !          28457:             "\x21\x09\x21\x09\x21\x09\x21\x09\x21\x09\x21\x09\x21"
        !          28458:             "\x09\x22\x08\x23\xff\x01\x07\x25\x00\x01\x08\x25\x09"
        !          28459:             "\x25\x09\x25\x09\x25\x09\x25\x09\x25\x09\x25\x09\x25"
        !          28460:             "\x09\x25\x09\x25\x09\x25\x09\x25\x09\x25\x09\x25\x09"
        !          28461:             "\x25\x09\x25\x09\x25\x09\x25\x08\x26\x06\x28\x03\x01" }  },
        !          28462:       /* --- pixel bitmap for cmmib450 char#61 / --- */
        !          28463:       {  61,128484,                     /* character number, location */
        !          28464:          47, 4,  -16, 4,      /* topleft row,col, and botleft row,col */
        !          28465:           { 28,   63, 3,251, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          28466:             "\xe0\xb2\xe0\xb4\xf1\xe0\x95\xe0\x94\x10\xf1\xe0\x85"
        !          28467:             "\x10\xf1\xe0\x75\x20\xe0\x74\x30\xf1\xe0\x65\x30\xf1"
        !          28468:             "\xe0\x55\x40\xe0\x54\x50\xf1\xe0\x45\x50\xf1\xe0\x35"
        !          28469:             "\x60\xf1\xe0\x25\x70\xe0\x24\x80\xf1\xe0\x15\x80\xf1"
        !          28470:             "\xe5\x90\xe4\xa0\xf1\xd5\xa0\xf1\xc5\xb0\xc4\xc0\xf1"
        !          28471:             "\xb5\xc0\xf1\xa5\xd0\xa4\xe0\xf1\x95\xe0\xf1\x85\xe0"
        !          28472:             "\x10\x84\xe0\x20\xf1\x75\xe0\x20\xf1\x65\xe0\x30\xf1"
        !          28473:             "\x55\xe0\x40\x54\xe0\x50\xf1\x45\xe0\x50\xf1\x35\xe0"
        !          28474:             "\x60\x34\xe0\x70\xf1\x25\xe0\x70\xf1\x15\xe0\x80\x14"
        !          28475:             "\xe0\x9f\x15\xe0\x94\xe0\xb2\xe0\xb0" }  },
        !          28476:       /* --- pixel bitmap for cmmib450 char#62 > --- */
        !          28477:       {  62,129259,                     /* character number, location */
        !          28478:          38, 6,   -6, 6,      /* topleft row,col, and botleft row,col */
        !          28479:           { 44,   44, 2,91, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          28480:             "\x01\x02\x29\x06\x26\x08\x25\x09\x25\x09\x25\x09\x25"
        !          28481:             "\x09\x25\x09\x25\x09\x25\x09\x25\x09\x25\x09\x25\x09"
        !          28482:             "\x25\x09\x25\x09\x25\x09\x25\x09\x25\x09\x25\x09\x25"
        !          28483:             "\x09\x25\x08\x01\x00\xff\x01\x25\x07\x23\x08\x22\x09"
        !          28484:             "\x21\x09\x21\x09\x21\x09\x21\x09\x21\x09\x21\x09\x21"
        !          28485:             "\x09\x21\x09\x21\x09\x21\x09\x21\x09\x21\x09\x21\x09"
        !          28486:             "\x21\x09\x20\x0a\x21\x09\x22\x08\x24\x06\x27\x03\x28" }  },
        !          28487:       /* --- pixel bitmap for cmmib450 char#63 \star --- */
        !          28488:       {  63,130024,                     /* character number, location */
        !          28489:          32, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          28490:           { 34,   32, 3,133, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          28491:             "\xf2\xe0\x22\xe0\x20\xf5\xe0\x14\xe0\x10\xf1\xe6\xe0"
        !          28492:             "\x11\xc6\xc1\x1a\x46\x4a\x1e\x0e\x04\x4e\x0e\x8e\x0a"
        !          28493:             "\xce\x06\xe0\x2e\x02\xe0\x6c\xe0\x9a\xc0\xf1\xbc\xb0"
        !          28494:             "\xae\xe0\x66\x26\xe0\x56\x46\xe0\x45\x65\xe0\x35\x85"
        !          28495:             "\xe0\x24\xa4\xe0\x14\xc4\xe3\xe3\xd3\xe0\x23\xd1\xe0"
        !          28496:             "\x41\x70" }  },
        !          28497:       /* --- pixel bitmap for cmmib450 char#64 \partial --- */
        !          28498:       {  64,104765,                     /* character number, location */
        !          28499:          44, 4,   -1, 4,      /* topleft row,col, and botleft row,col */
        !          28500:           { 37,   45, 3,245, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          28501:             "\xe0\x38\xe0\xce\x01\xe0\x65\x77\xe0\x34\xb6\xe0\x14"
        !          28502:             "\xd6\xd4\xe0\x16\xc3\xe0\x36\xa6\xe0\x17\x10\xf1\x87"
        !          28503:             "\xe0\x16\x10\x78\xe0\x17\x77\xe0\x27\x85\xe0\x37\xf2"
        !          28504:             "\xe0\xe0\x27\xe0\x18\x77\xcd\x48\xa7\x64\x28\x87\xa2"
        !          28505:             "\x28\x76\xc3\x18\x57\xeb\x48\xea\x48\xe0\x29\x47\xe0"
        !          28506:             "\x39\x38\xe0\x39\x38\xe0\x38\x20\xf1\x18\xe0\x48\x20"
        !          28507:             "\x18\xe0\x38\x39\xe0\x38\x38\xe0\x47\x48\xe0\x38\x48"
        !          28508:             "\xe0\x37\x58\xe0\x28\x57\xe0\x37\x67\xe0\x28\x67\xe0"
        !          28509:             "\x27\x87\xe7\x97\xd7\xb7\xb7\xd7\x78\xe0\x2e\x06\xe0"
        !          28510:             "\x5e\x01\xe0\xb9\xe0\x50" }  },
        !          28511:       /* --- pixel bitmap for cmmib450 char#65 A --- */
        !          28512:       {  65, 1092,                      /* character number, location */
        !          28513:          45, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          28514:           { 49,   45, 3,278, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          28515:             "\xf1\xe0\xe0\x54\xc0\xe0\xe0\x45\xe0\xe0\xe0\x16\xe0"
        !          28516:             "\xe0\xe0\x17\xe0\xe0\xd8\xb0\xf1\xe0\xe0\x19\xb0\xe0"
        !          28517:             "\xea\xb0\xf1\xe0\xdb\xb0\xf1\xe0\xcd\xa0\xe0\xb3\x29"
        !          28518:             "\xa0\xf1\xe0\xa3\x39\xa0\xe0\x93\x49\xe0\xe0\x44\x49"
        !          28519:             "\xe0\xe0\x43\x5a\xe0\xe0\x23\x6a\xe0\xe0\x14\x79\xe0"
        !          28520:             "\xe0\x13\x89\xe0\xe3\x99\xe0\xd4\x99\xe0\xd3\xaa\xe0"
        !          28521:             "\xb3\xba\xe0\xa4\xba\xe0\xa3\xd9\xe0\x93\xe9\xe0\x84"
        !          28522:             "\xe9\xe0\x8e\x0d\x80\xf1\xde\x0e\x01\x70\xc3\xe0\x49"
        !          28523:             "\x70\xf1\xb3\xe0\x59\x70\xa3\xe0\x69\xe0\x24\xe0\x69"
        !          28524:             "\xe0\x23\xe0\x7a\xe3\xe0\x8a\xd4\xe0\x99\xc4\xe0\xa9"
        !          28525:             "\x6e\x01\xde\x07\x0f\x1e\x01\xce\x08" }  },
        !          28526:       /* --- pixel bitmap for cmmib450 char#66 B --- */
        !          28527:       {  66, 2606,                      /* character number, location */
        !          28528:          43, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          28529:           { 51,   43, 3,281, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          28530:             "\xbe\x0e\x04\xe0\x4e\x0e\x08\xe0\x1e\x0e\x0a\xe0\x68"
        !          28531:             "\xe0\x19\xe0\x49\xe0\x29\xe0\x39\xe0\x39\xf1\xe0\x28"
        !          28532:             "\xe0\x58\xf1\xe0\x19\xe0\x58\xf1\xe0\x18\xe0\x68\xf1"
        !          28533:             "\xe9\xe0\x58\x10\xe8\xe0\x58\xe0\x28\xe0\x49\xe0\x19"
        !          28534:             "\xe0\x39\xe0\x29\xe0\x28\xe0\x48\xe0\x19\xe0\x58\xca"
        !          28535:             "\xe0\x6e\x0e\xe0\x9e\x0e\x03\xe0\x68\xe0\x38\xe0\x48"
        !          28536:             "\xe0\x48\xe0\x29\xe0\x58\xe0\x19\xe0\x59\x30\xf1\xb8"
        !          28537:             "\xe0\x78\x30\xf1\xa9\xe0\x78\x30\xf1\xa8\xe0\x79\x30"
        !          28538:             "\x99\xe0\x79\xc9\xe0\x69\xd8\xe0\x79\xd8\xe0\x69\xd9"
        !          28539:             "\xe0\x59\xe9\xe0\x49\xe0\x18\xe0\x49\xe0\x28\xe0\x1b"
        !          28540:             "\xae\x0e\x0b\xbe\x0e\x0a\xde\x0e\x06\xe0\x30" }  },
        !          28541:       /* --- pixel bitmap for cmmib450 char#67 C --- */
        !          28542:       {  67, 3673,                      /* character number, location */
        !          28543:          44, 4,   -1, 4,      /* topleft row,col, and botleft row,col */
        !          28544:           { 50,   45, 3,273, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          28545:             "\xe0\xba\xc3\xe0\x7e\x03\x84\xe0\x4e\x08\x54\xe0\x3b"
        !          28546:             "\x95\x35\xe0\x19\xe0\x1b\xd9\xe0\x4a\xc8\xe0\x78\xb9"
        !          28547:             "\xe0\x97\xa9\xe0\xb6\x99\xe0\xc6\x89\xe0\xe4\x98\xe0"
        !          28548:             "\xe0\x14\x89\xe0\xe0\x14\x79\xe0\xe0\x24\x78\xe0\xe0"
        !          28549:             "\x33\x79\xe0\xe0\x33\x6a\xe0\xe0\x33\x40\xf1\x29\xe0"
        !          28550:             "\xe0\xb0\xf2\x19\xe0\xe0\xca\xe0\xe0\xcf\x39\xe0\xe0"
        !          28551:             "\xdf\x18\xe0\xe0\xef\x18\xe0\xe0\x34\x78\xe0\xe0\x33"
        !          28552:             "\x88\xe0\xe0\x24\x89\xe0\xe0\x13\xa8\xe0\xe4\xa8\xe0"
        !          28553:             "\xd4\xc8\xe0\xb4\xd8\xe0\xa5\xe8\xe0\x84\xe0\x38\xe0"
        !          28554:             "\x55\xe0\x59\xe0\x16\xe0\x8a\x97\xe0\xbe\x09\xe0\xe0"
        !          28555:             "\x2e\x04\xe0\xe0\x8a\xe0\xbe" }  },
        !          28556:       /* --- pixel bitmap for cmmib450 char#68 D --- */
        !          28557:       {  68, 4973,                      /* character number, location */
        !          28558:          43, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          28559:           { 55,   43, 3,279, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          28560:             "\xbe\x0e\x04\xe0\x8e\x0e\x08\xe0\x5e\x0e\x0a\xe0\xa9"
        !          28561:             "\xdb\xe0\x7a\xe0\x29\xe0\x6a\xe0\x48\xe0\x59\xe0\x68"
        !          28562:             "\xe0\x49\xe0\x77\x20\xf1\xe0\x1a\xe0\x78\x10\xe0\x19"
        !          28563:             "\xe0\x97\xe0\x29\xe0\x98\xf1\xea\xe0\x98\xf1\xe9\xe0"
        !          28564:             "\xa8\xf1\xda\xe0\xa8\xf1\xd9\xe0\xa9\xca\xe0\xa9\xca"
        !          28565:             "\xe0\xa8\x10\xf1\xc9\xe0\xa9\x10\xf1\xba\xe0\xa8\x20"
        !          28566:             "\xb9\xe0\xa9\xd9\xe0\xa8\xda\xe0\xa8\xda\xe0\x98\xe9"
        !          28567:             "\xe0\xa8\xe9\xe0\x98\xea\xe0\x88\xe0\x1a\xe0\x87\xe0"
        !          28568:             "\x29\xe0\x87\xe0\x39\xe0\x77\xe0\x3a\xe0\x58\xe0\x4a"
        !          28569:             "\xe0\x48\xe0\x59\xe0\x39\xe0\x69\xdb\xe0\x1e\x0e\x0a"
        !          28570:             "\xe0\x2e\x0e\x08\xe0\x5e\x0e\x05\xe0\x80" }  },
        !          28571:       /* --- pixel bitmap for cmmib450 char#69 E --- */
        !          28572:       {  69, 6562,                      /* character number, location */
        !          28573:          43, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          28574:           { 50,   43, 3,277, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          28575:             "\xbe\x0e\x0b\xae\x0e\x0c\xae\x0e\x0b\xe0\x49\xe0\x18"
        !          28576:             "\xe0\x3a\xe0\x36\xe0\x3a\xe0\x45\x10\xf1\xe0\x29\xe0"
        !          28577:             "\x64\x10\xf1\xe0\x1a\xe0\x64\x10\xf1\xe0\x19\xe0\x74"
        !          28578:             "\x10\xf1\xea\x94\x83\x20\xe9\xa3\x93\xe0\x29\xa3\xe0"
        !          28579:             "\xda\x94\xe0\xda\x85\xe0\xd9\x85\xe0\xee\x08\xe0\x10"
        !          28580:             "\xf1\xce\x09\xe0\x10\xc9\x85\xe0\xe9\x94\xe0\x20\xf1"
        !          28581:             "\xba\x94\xe0\x20\xf1\xb9\xa3\xb3\x30\xaa\xa3\xa4\xda"
        !          28582:             "\xe0\x93\xe9\xe0\x94\xe9\xe0\x93\xea\xe0\x84\xea\xe0"
        !          28583:             "\x74\xe0\x19\xe0\x84\xe0\x19\xe0\x74\xe0\x1a\xe0\x65"
        !          28584:             "\xe0\x1a\xe0\x55\xe0\x29\xe0\x47\xe0\x29\xe0\x1a\x9e"
        !          28585:             "\x0e\x0c\x9e\x0e\x0d\x9e\x0e\x0c\xa0" }  },
        !          28586:       /* --- pixel bitmap for cmmib450 char#70 F --- */
        !          28587:       {  70, 7963,                      /* character number, location */
        !          28588:          43, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          28589:           { 49,   43, 3,245, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          28590:             "\xbe\x0e\x0a\xae\x0e\x0b\xae\x0e\x0a\xe0\x49\xe8\xe0"
        !          28591:             "\x3a\xe0\x26\xe0\x3a\xe0\x35\x10\xf1\xe0\x29\xe0\x54"
        !          28592:             "\x10\xf1\xe0\x1a\xe0\x54\x10\xf1\xe0\x19\xe0\x64\x10"
        !          28593:             "\xea\xe0\x63\xe0\x2a\x93\x83\xe0\x29\xa3\x83\xe0\x29"
        !          28594:             "\xa3\xd0\xf1\xda\x94\xd0\xd9\x94\xe0\xd9\x85\xe0\xf1"
        !          28595:             "\xce\x09\xe0\xce\x08\xe0\xd9\x85\xe0\x10\xf1\xba\x94"
        !          28596:             "\xe0\x10\xf1\xb9\xa3\xe0\x20\xf1\xaa\x94\xe0\x20\xf1"
        !          28597:             "\xa9\xe0\xe0\x20\xf1\x9a\xe0\xe0\x20\xf1\x99\xe0\xe0"
        !          28598:             "\x30\xf1\x8a\xe0\xe0\x30\xf1\x89\xe0\xe0\x40\x1e\x0a"
        !          28599:             "\xe0\xaf\x1e\x0b\xe0\xa9" }  },
        !          28600:       /* --- pixel bitmap for cmmib450 char#71 G --- */
        !          28601:       {  71, 9258,                      /* character number, location */
        !          28602:          44, 4,   -1, 4,      /* topleft row,col, and botleft row,col */
        !          28603:           { 49,   45, 3,259, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          28604:             "\xe0\xba\xb3\xe0\x6e\x03\x84\xe0\x4e\x07\x54\xe0\x3a"
        !          28605:             "\x96\x25\xe0\x19\xeb\xd9\xe0\x49\xc8\xe0\x68\xb9\xe0"
        !          28606:             "\x87\xa9\xe0\xa6\x99\xe0\xb6\x89\xe0\xd4\x98\xe0\xe4"
        !          28607:             "\x89\xe0\xe4\x79\xe0\xe0\x14\x30\xf1\x39\xe0\xe0\x23"
        !          28608:             "\x40\x29\xe0\xe0\x33\x40\xf1\x29\xe0\xe0\xa0\xf2\x19"
        !          28609:             "\xe0\xe0\xba\xe0\xe0\xbf\x29\xe0\xe0\xc9\xe0\x1e\x09"
        !          28610:             "\x2f\x18\xe0\x2e\x09\x28\xe0\xaa\x7f\x28\xe0\xa9\x89"
        !          28611:             "\xe0\x8a\x80\xf1\x18\xe0\x89\x90\x19\xe0\x79\xb8\xe0"
        !          28612:             "\x6a\xc8\xe0\x5a\xd8\xe0\x3a\xe0\x19\xeb\xe0\x2b\x86"
        !          28613:             "\x26\xe0\x4e\x07\x55\xe0\x6e\x03\x92\xe0\xba\xe0\xbe" }  },
        !          28614:       /* --- pixel bitmap for cmmib450 char#72 H --- */
        !          28615:       {  72,10651,                      /* character number, location */
        !          28616:          43, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          28617:           { 62,   43, 3,301, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          28618:             "\xbe\x08\x7e\x08\xf1\xae\x09\x6e\x09\xe0\x39\xe0\x69"
        !          28619:             "\xe0\x9a\xe0\x5a\xe0\x9a\xe0\x59\x80\xf1\xe0\x29\xe0"
        !          28620:             "\x69\x80\xe0\x1a\xe0\x5a\xe0\x9a\xe0\x59\x90\xf1\xe0"
        !          28621:             "\x19\xe0\x69\x90\xea\xe0\x5a\xe0\x9a\xe0\x59\xa0\xf1"
        !          28622:             "\xe9\xe0\x69\xa0\xda\xe0\x5a\xe0\x9a\xe0\x59\xe0\xa9"
        !          28623:             "\xe0\x69\xe0\xae\x0e\x0a\xe0\x9e\x0e\x0b\xe0\x9e\x0e"
        !          28624:             "\x0a\xc0\xf1\xc9\xe0\x69\xc0\xba\xe0\x5a\xe0\x9a\xe0"
        !          28625:             "\x59\xd0\xf1\xb9\xe0\x69\xd0\xaa\xe0\x5a\xe0\x9a\xe0"
        !          28626:             "\x59\xe0\xf1\xa9\xe0\x69\xe0\x9a\xe0\x5a\xe0\x9a\xe0"
        !          28627:             "\x59\xe0\x10\xf1\x99\xe0\x69\xe0\x10\x8a\xe0\x5a\xe0"
        !          28628:             "\x9a\xe0\x59\xe0\x20\xf1\x89\xe0\x69\xe0\x20\x1e\x08"
        !          28629:             "\x7e\x08\xaf\x1e\x09\x6e\x09\xa0" }  },
        !          28630:       /* --- pixel bitmap for cmmib450 char#73 I --- */
        !          28631:       {  73,11548,                      /* character number, location */
        !          28632:          43, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          28633:           { 34,   43, 3,151, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          28634:             "\xf1\xae\x0a\xae\x09\xe0\x49\x80\xf1\xe0\x2a\x80\xf1"
        !          28635:             "\xe0\x29\x90\xf1\xe0\x1a\x90\xf1\xe0\x19\xa0\xf1\xea"
        !          28636:             "\xa0\xf1\xe9\xb0\xf1\xda\xb0\xf1\xd9\xc0\xf1\xca\xc0"
        !          28637:             "\xf1\xc9\xd0\xf1\xba\xd0\xf1\xb9\xe0\xf1\xaa\xe0\xf1"
        !          28638:             "\xa9\xe0\x10\xf1\x9a\xe0\x10\xf1\x99\xe0\x20\xf1\x8a"
        !          28639:             "\xe0\x20\xf1\x89\xe0\x3f\x1e\x0a\xae\x09\xb0" }  },
        !          28640:       /* --- pixel bitmap for cmmib450 char#74 J --- */
        !          28641:       {  74,12454,                      /* character number, location */
        !          28642:          43, 4,   -1, 4,      /* topleft row,col, and botleft row,col */
        !          28643:           { 40,   44, 3,189, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          28644:             "\xe0\x3e\x09\xe0\x2e\x0a\xe0\x2e\x09\xe0\xc9\xe0\xe0"
        !          28645:             "\x2a\x60\xf2\xe0\xa9\x70\xe0\x9a\x70\xf2\xe0\x99\x80"
        !          28646:             "\xe0\x8a\x80\xf2\xe0\x89\x90\xe0\x7a\x90\xf2\xe0\x79"
        !          28647:             "\xa0\xe0\x6a\xa0\xf2\xe0\x69\xb0\xe0\x5a\xb0\xf2\xe0"
        !          28648:             "\x59\xc0\xe0\x4a\xc0\xf1\xe0\x49\xd0\x42\xc9\xe0\x16"
        !          28649:             "\x9a\xe8\x89\xef\x19\x89\xe9\x79\xe0\x18\x89\xe0\x18"
        !          28650:             "\x79\xe0\x26\x89\xe0\x43\x99\xe0\x55\x68\xe0\x9e\x01"
        !          28651:             "\xe0\xe9\xe0\xb9" }  },
        !          28652:       /* --- pixel bitmap for cmmib450 char#75 K --- */
        !          28653:       {  75,13793,                      /* character number, location */
        !          28654:          43, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          28655:           { 61,   43, 3,325, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          28656:             "\xbe\x08\xce\x02\xae\x09\xce\x02\xae\x09\xce\x01\xe0"
        !          28657:             "\x49\xe0\x95\xe0\x9a\xe0\x75\xe0\xba\xe0\x65\xe0\xc9"
        !          28658:             "\xe0\x55\xe0\xe9\xe0\x45\xe0\xea\xe0\x34\xe0\xe0\x2a"
        !          28659:             "\xe0\x15\xe0\xe0\x39\xe0\x14\xe0\xe0\x59\xd5\xe0\xe0"
        !          28660:             "\x5a\xc5\xe0\xe0\x6a\xa5\xe0\xe0\x89\xa5\xe0\xe0\x99"
        !          28661:             "\x94\xe0\xe0\xaa\x75\xe0\xe0\xba\x66\xe0\xe0\xb9\x59"
        !          28662:             "\xe0\xe0\xa9\x4a\xe0\xe0\x9a\x2d\xe0\xe0\x8a\x1e\xe0"
        !          28663:             "\xe0\x89\x14\x2a\xe0\xe0\x7d\x3a\xe0\xe0\x6c\x6a\xe0"
        !          28664:             "\xe0\x5b\x7a\xe0\xe0\x5a\x9a\xe0\xe0\x49\xaa\xe0\x70"
        !          28665:             "\xf1\xaa\xba\xe0\x60\xf1\xa9\xda\xe0\x50\xf1\x9a\xea"
        !          28666:             "\xe0\x40\xf1\x99\xe0\x2a\xe0\x30\xf1\x8a\xe0\x3a\xe0"
        !          28667:             "\x20\xf1\x89\xe0\x5a\xe0\x10\x1e\x08\x8e\x07\x9e\x09"
        !          28668:             "\x8e\x07\x9e\x09\x8e\x06\xa0" }  },
        !          28669:       /* --- pixel bitmap for cmmib450 char#76 L --- */
        !          28670:       {  76,14918,                      /* character number, location */
        !          28671:          43, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          28672:           { 42,   43, 3,211, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          28673:             "\xbe\x0a\x70\xf1\xae\x0b\x70\xe0\x39\xe0\x20\xf1\xe0"
        !          28674:             "\x2a\xe0\x20\xf1\xe0\x29\xe0\x30\xf1\xe0\x1a\xe0\x30"
        !          28675:             "\xf1\xe0\x19\xe0\x40\xf1\xea\xe0\x40\xf1\xe9\xe0\x50"
        !          28676:             "\xf1\xda\xe0\x50\xf1\xd9\xe0\x60\xf1\xca\xe0\x60\xf1"
        !          28677:             "\xc9\xe0\x70\xf1\xba\xe0\x70\xf1\xb9\xe0\x53\xaa\xe0"
        !          28678:             "\x44\xaa\xe0\x43\xb9\xe0\x44\xb9\xe0\x43\x20\xf1\x9a"
        !          28679:             "\xe0\x34\x20\x99\xe0\x34\xc9\xe0\x25\xba\xe0\x16\xba"
        !          28680:             "\xe6\xc9\xd8\xc9\xaa\x6e\x0e\x08\x5e\x0e\x09\x5e\x0e"
        !          28681:             "\x08\x6b" }  },
        !          28682:       /* --- pixel bitmap for cmmib450 char#77 M --- */
        !          28683:       {  77,16384,                      /* character number, location */
        !          28684:          43, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          28685:           { 74,   43, 3,445, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          28686:             "\xbe\x02\xe0\xe0\x3e\x02\xae\x04\xe0\xe0\x1e\x03\xae"
        !          28687:             "\x04\xe0\xee\x04\xe0\x3b\xe0\xeb\xe0\x9c\xe0\xdc\xe0"
        !          28688:             "\x9c\xe0\xc3\x18\xe0\xa3\x28\xe0\xb3\x18\xe0\xa3\x28"
        !          28689:             "\xe0\xa3\x28\xe0\x94\x28\xe0\x93\x29\xe0\x94\x28\xe0"
        !          28690:             "\x93\x28\xe0\xa3\x38\xe0\x83\x38\xe0\xa3\x48\xe0\x63"
        !          28691:             "\x48\xe0\x94\x48\xe0\x53\x49\xe0\x94\x48\xe0\x53\x48"
        !          28692:             "\xe0\xa3\x58\xe0\x43\x58\xe0\xa3\x58\xe0\x33\x68\xe0"
        !          28693:             "\x94\x68\xe0\x23\x59\xe0\x94\x68\xe0\x13\x68\xb0\xf1"
        !          28694:             "\xd3\x78\xe3\x78\xb0\xc4\x78\xd3\x79\xe0\x94\x88\xb3"
        !          28695:             "\x88\xc0\xf1\xc3\x98\xa3\x98\xc0\xb4\x98\x93\x99\xe0"
        !          28696:             "\x94\x98\x83\xa8\xe0\xa3\xb8\x73\xa8\xe0\xa3\xb8\x63"
        !          28697:             "\xb8\xe0\x94\xb8\x53\xb9\xe0\x94\xb8\x43\xc8\xe0\xa3"
        !          28698:             "\xc8\x43\xc8\xe0\xa3\xd8\x23\xd8\xe0\x94\xd8\x13\xd9"
        !          28699:             "\xe0\x94\xd8\x13\xd8\xe0\xa3\xeb\xe8\xe0\xa3\xea\xe0"
        !          28700:             "\x18\xe0\x94\xe0\x19\xe9\xe0\x94\xe0\x18\xe0\x18\xe0"
        !          28701:             "\xa3\xe0\x27\xe0\x28\xe0\x94\xe0\x26\xe0\x38\xe0\x3e"
        !          28702:             "\x02\xa6\xae\x07\xae\x03\xb4\xae\x08\xae\x03\xb3\xbe"
        !          28703:             "\x08\xa0" }  },
        !          28704:       /* --- pixel bitmap for cmmib450 char#78 N --- */
        !          28705:       {  78,17836,                      /* character number, location */
        !          28706:          43, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          28707:           { 62,   43, 3,381, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          28708:             "\xbe\x02\xe0\x5e\x02\xae\x04\xe0\x3e\x03\xae\x05\xe0"
        !          28709:             "\x2e\x03\xe0\x3c\xe0\x93\xe0\x9e\xe0\x74\xe0\x9e\xe0"
        !          28710:             "\x73\xe0\xa3\x2a\xe0\x63\xe0\xa3\x2b\xe0\x53\xe0\x94"
        !          28711:             "\x3a\xe0\x44\xe0\x94\x3b\xe0\x33\xe0\xa3\x5a\xe0\x33"
        !          28712:             "\xe0\xa3\x6a\xe0\x23\xe0\x94\x6b\xe4\xe0\x94\x7a\xe3"
        !          28713:             "\xe0\xa3\x8b\xd3\xe0\xa3\x9a\xd3\xe0\x94\xaa\xb4\xe0"
        !          28714:             "\x94\xab\xa3\xe0\xa3\xca\xa3\xe0\xa3\xcb\x93\xe0\x94"
        !          28715:             "\xda\x84\xe0\x94\xea\x73\xe0\xa3\xe0\x1b\x63\xe0\xa3"
        !          28716:             "\xe0\x2a\x63\xe0\x94\xe0\x2b\x44\xe0\x94\xe0\x3a\x43"
        !          28717:             "\xe0\xa3\xe0\x5a\x33\xe0\xa3\xe0\x5b\x23\xe0\x94\xe0"
        !          28718:             "\x6a\x14\xe0\x94\xe0\x6e\xe0\xa3\xe0\x8d\xe0\xa3\xe0"
        !          28719:             "\x9c\xe0\x94\xe0\x9c\xe0\x94\xe0\xaa\xe0\xa3\xe0\xba"
        !          28720:             "\xe0\xa3\xe0\xc9\xe0\x94\xe0\xd8\xe0\x94\xe0\xd7\xe0"
        !          28721:             "\xa3\xe0\xe0\x16\xe0\x94\xe0\xe0\x16\xe0\x3e\x02\xe0"
        !          28722:             "\xa5\xe0\x2f\x1e\x03\xe0\xb3\xe0\x30" }  },
        !          28723:       /* --- pixel bitmap for cmmib450 char#79 O --- */
        !          28724:       {  79,18881,                      /* character number, location */
        !          28725:          44, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          28726:           { 48,   45, 3,251, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          28727:             "\xe0\xab\xe0\xe0\x6e\x04\xe0\xd8\x78\xe0\x97\xc7\xe0"
        !          28728:             "\x67\xe0\x27\xe0\x37\xe0\x47\xe7\xe0\x67\xd7\xe0\x87"
        !          28729:             "\xb8\xe0\x88\x98\xe0\xa7\x88\xe0\xb7\x87\xe0\xc8\x68"
        !          28730:             "\xe0\xc8\xf1\x58\xe0\xd8\xf1\x48\xe0\xe8\x39\xe0\xd9"
        !          28731:             "\x38\xe0\xe9\xf2\x29\xe0\xe9\xf2\x19\xe0\xe9\x10\x19"
        !          28732:             "\xe0\xe8\x39\xe0\xd9\x38\xe0\xe9\x2f\x19\xe0\xd9\x30"
        !          28733:             "\x18\xe0\xd8\x58\xe0\xc9\x58\xe0\xc8\x68\xe0\xb8\x78"
        !          28734:             "\xe0\xa8\x98\xe0\x98\x98\xe0\x88\xb7\xe0\x78\xc8\xe0"
        !          28735:             "\x58\xe7\xe0\x47\xe0\x37\xe0\x18\xe0\x58\xc7\xe0\x98"
        !          28736:             "\x78\xe0\xde\x04\xe0\xe0\x5b\xe0\xab" }  },
        !          28737:       /* --- pixel bitmap for cmmib450 char#80 P --- */
        !          28738:       {  80,20144,                      /* character number, location */
        !          28739:          43, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          28740:           { 51,   43, 3,261, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          28741:             "\xbe\x0e\x03\xe0\x5e\x0e\x07\xe0\x2e\x0e\x09\xe0\x79"
        !          28742:             "\xda\xe0\x4a\xe0\x18\xe0\x4a\xe0\x28\x10\xf1\xe0\x29"
        !          28743:             "\xe0\x39\xf1\xe0\x1a\xe0\x39\xf1\xe0\x19\xe0\x49\xea"
        !          28744:             "\xe0\x49\xea\xe0\x39\xe0\x19\xe0\x49\xe0\x19\xe0\x48"
        !          28745:             "\xe0\x1a\xe0\x38\xe0\x2a\xe0\x29\xe0\x29\xe0\x38\xe0"
        !          28746:             "\x39\xe0\x18\xe0\x4a\xca\xe0\x5e\x0e\x02\xe0\x7e\x0d"
        !          28747:             "\xe0\xa9\xe0\xe0\x20\xf1\xba\xe0\xe0\x20\xf1\xb9\xe0"
        !          28748:             "\xe0\x30\xf1\xaa\xe0\xe0\x30\xf1\xa9\xe0\xe0\x40\xf1"
        !          28749:             "\x9a\xe0\xe0\x40\xf1\x99\xe0\xe0\x50\xf1\x8a\xe0\xe0"
        !          28750:             "\x50\xf1\x89\xe0\xe0\x60\x1e\x08\xe0\xef\x1e\x09\xe0"
        !          28751:             "\xea" }  },
        !          28752:       /* --- pixel bitmap for cmmib450 char#81 Q --- */
        !          28753:       {  81,21255,                      /* character number, location */
        !          28754:          44, 3,  -12, 3,      /* topleft row,col, and botleft row,col */
        !          28755:           { 48,   56, 3,331, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          28756:             "\xe0\xab\xe0\xe0\x6e\x04\xe0\xd8\x78\xe0\x97\xc7\xe0"
        !          28757:             "\x67\xe0\x27\xe0\x37\xe0\x38\xe8\xe0\x57\xd8\xe0\x77"
        !          28758:             "\xb8\xe0\x88\x98\xe0\x98\x88\xe0\xb7\x88\xe0\xb8\x68"
        !          28759:             "\xe0\xc8\xf1\x58\xe0\xd8\x49\xe0\xd8\x48\xe0\xe8\xf1"
        !          28760:             "\x39\xe0\xd9\xf2\x29\xe0\xe9\xf2\x19\xe0\xe9\x10\x19"
        !          28761:             "\xe0\xe8\x20\xf1\x18\xe0\xe9\x29\xe0\xe8\x39\xe0\xd9"
        !          28762:             "\x48\xe0\xd8\x58\xe0\xc9\x58\xe0\xc8\x68\xe0\xb8\x78"
        !          28763:             "\xa5\xa7\x97\x88\x88\x98\x63\x43\x68\xb7\x53\x63\x48"
        !          28764:             "\xc7\x43\x82\x38\xe7\x32\x93\x17\xe0\x37\x22\x9a\xe0"
        !          28765:             "\x57\x12\x98\xe0\x99\x68\xe0\xde\x05\xb2\xe0\x5b\x15"
        !          28766:             "\xa2\xe0\xe0\x35\x93\xe0\xe0\x36\x64\x70\xf1\xe0\xbe"
        !          28767:             "\x02\x70\xe0\xbe\x01\x80\xf1\xe0\xbe\x90\xe0\xcc\xe0"
        !          28768:             "\xe0\x8b\xe0\xe0\xa8\xe0\xe0\xe4\xe0\x14" }  },
        !          28769:       /* --- pixel bitmap for cmmib450 char#82 R --- */
        !          28770:       {  82,22770,                      /* character number, location */
        !          28771:          43, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          28772:           { 54,   44, 3,291, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          28773:             "\xbe\x0e\x02\xe0\x9e\x0e\x06\xe0\x6e\x0e\x09\xe0\xa9"
        !          28774:             "\xca\xe0\x8a\xe9\xe0\x7a\xe0\x28\xe0\x69\xe0\x38\xe0"
        !          28775:             "\x69\xe0\x39\x30\xf1\xe0\x1a\xe0\x39\x30\xf1\xe0\x19"
        !          28776:             "\xe0\x49\x30\xea\xe0\x49\xe0\x3a\xe0\x39\xe0\x49\xe0"
        !          28777:             "\x48\xe0\x59\xe0\x39\xe0\x4a\xe0\x38\xe0\x5a\xe0\x18"
        !          28778:             "\xe0\x79\xe0\x18\xe0\x89\xc9\xe0\x9e\x0e\xe0\xce\x0d"
        !          28779:             "\xe0\xd9\xb9\xe0\xb9\xc9\xc0\xf1\xba\xd9\xb0\xf1\xb9"
        !          28780:             "\xe0\x19\xa0\xaa\xea\xe0\x6a\xe9\xb0\xf1\xa9\xe0\x19"
        !          28781:             "\xb0\xf1\x9a\xea\xb0\xf1\x99\xe0\x19\xc0\x8a\xe0\x19"
        !          28782:             "\x84\x8a\xe0\x19\x83\x99\xe0\x29\x83\x99\xe0\x29\x74"
        !          28783:             "\x2e\x08\xb8\x64\x2e\x09\xc8\x44\x3e\x09\xed\xe0\xe0"
        !          28784:             "\xe0\x18\x70" }  },
        !          28785:       /* --- pixel bitmap for cmmib450 char#83 S --- */
        !          28786:       {  83,23985,                      /* character number, location */
        !          28787:          44, 4,   -1, 4,      /* topleft row,col, and botleft row,col */
        !          28788:           { 41,   45, 3,269, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          28789:             "\xe0\x69\x93\xe0\x3e\x01\x54\xe0\x1e\x05\x24\xe0\x17"
        !          28790:             "\x8b\xe6\xc9\xc6\xe0\x27\xc5\xe0\x36\xc6\xe0\x45\xb6"
        !          28791:             "\xe0\x55\xb6\xe0\x64\xa7\xe0\x63\xb6\xe0\x73\x30\xf1"
        !          28792:             "\x87\xe0\x63\x30\x79\xe0\xe0\x4a\xe0\xe0\x3d\xe0\xe0"
        !          28793:             "\x1e\x03\xe0\xae\x07\xe0\x6e\x09\xe0\x5e\x09\xe0\x4e"
        !          28794:             "\x0a\xe0\x4e\x0a\xe0\x5e\x09\xe0\x6e\x07\xe0\x9e\x04"
        !          28795:             "\xe0\xde\xe0\xe0\x4a\xe0\xe0\x49\xe0\xe0\x58\xe0\xe0"
        !          28796:             "\x57\x93\xe0\x87\x93\xe0\x96\x84\xe0\x87\x60\xf1\x24"
        !          28797:             "\xe0\x86\x70\x24\xe0\x76\x95\xe0\x76\x96\xe0\x56\xa7"
        !          28798:             "\xe0\x36\xb8\xe0\x16\xbd\x97\xc5\x2e\x06\xe4\x5e\x02"
        !          28799:             "\xe0\x22\xaa\xe0\x5e" }  },
        !          28800:       /* --- pixel bitmap for cmmib450 char#84 T --- */
        !          28801:       {  84,25125,                      /* character number, location */
        !          28802:          42, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          28803:           { 46,   42, 3,199, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          28804:             "\xf2\x4e\x0e\x0e\x38\x9a\x97\x36\xba\xa6\x34\xd9\xc5"
        !          28805:             "\x25\xd9\xc4\x34\xda\xd3\x33\xea\xd3\x24\xe9\xe3\x23"
        !          28806:             "\xe0\x19\xd4\x23\xea\xd4\x14\xea\xd3\x2f\x13\xe0\x19"
        !          28807:             "\xe3\x20\xf1\xe0\x3a\xe0\x50\xf1\xe0\x39\xe0\x60\xf1"
        !          28808:             "\xe0\x2a\xe0\x60\xf1\xe0\x29\xe0\x70\xf1\xe0\x1a\xe0"
        !          28809:             "\x70\xf1\xe0\x19\xe0\x80\xf1\xea\xe0\x80\xf1\xe9\xe0"
        !          28810:             "\x90\xf1\xda\xe0\x90\xf1\xd9\xe0\xa0\xf1\xca\xe0\xa0"
        !          28811:             "\xf1\xc9\xe0\xb0\xf2\x2e\x0e\xe0\x20" }  },
        !          28812:       /* --- pixel bitmap for cmmib450 char#85 U --- */
        !          28813:       {  85,26233,                      /* character number, location */
        !          28814:          43, 4,   -1, 4,      /* topleft row,col, and botleft row,col */
        !          28815:           { 51,   44, 3,283, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          28816:             "\x1e\x08\xce\x02\x0f\x1e\x09\xbe\x03\x79\xe0\xb3\xda"
        !          28817:             "\xe0\xa4\xda\xe0\xa3\x80\xf1\x69\xe0\xb3\x80\x5a\xe0"
        !          28818:             "\xa4\xda\xe0\xa3\x90\xf1\x59\xe0\xb3\x90\x4a\xe0\xa4"
        !          28819:             "\xda\xe0\xa3\xa0\xf1\x49\xe0\xb3\xa0\x3a\xe0\xa4\xda"
        !          28820:             "\xe0\xa3\xb0\xf1\x39\xe0\xb3\xb0\x2a\xe0\xa4\xda\xe0"
        !          28821:             "\xa3\xc0\xf1\x29\xe0\xb3\xc0\x1a\xe0\xa4\xda\xe0\xa3"
        !          28822:             "\xd0\xf1\x19\xe0\xb3\xd0\x19\xe0\xa4\xda\xe0\xa3\xe9"
        !          28823:             "\xe0\xb3\xe9\xe0\xa4\xe9\xe0\xa3\xe0\x19\xe0\x94\xe0"
        !          28824:             "\x19\xe0\x93\xe0\x38\xe0\x84\xe0\x38\xe0\x74\xe0\x49"
        !          28825:             "\xe0\x54\xe0\x68\xe0\x35\xe0\x88\xe6\xe0\xa9\x97\xe0"
        !          28826:             "\xee\x07\xe0\xe0\x4e\x03\xe0\xe0\x9b\xe0\xe0\x10" }  },
        !          28827:       /* --- pixel bitmap for cmmib450 char#86 V --- */
        !          28828:       {  86,27321,                      /* character number, location */
        !          28829:          43, 4,   -1, 4,      /* topleft row,col, and botleft row,col */
        !          28830:           { 51,   44, 3,293, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          28831:             "\xf2\x0e\x07\xe0\x1e\x01\x5a\xe0\xc4\xc9\xe0\xb4\xd9"
        !          28832:             "\xe0\xb3\xea\xe0\x93\xe0\x1a\xe0\x84\xe0\x1a\xe0\x83"
        !          28833:             "\xe0\x39\xe0\x73\xe0\x49\xe0\x63\xe0\x59\xe0\x54\xe0"
        !          28834:             "\x5a\xe0\x43\xe0\x6a\xe0\x33\xe0\x89\xe0\x24\xe0\x89"
        !          28835:             "\xe0\x23\xe0\x99\xe0\x13\xe0\xaa\xd4\xe0\xaa\xd3\xe0"
        !          28836:             "\xc9\xc3\xe0\xd9\xb4\xe0\xd9\xb3\xe0\xea\x93\xe0\x60"
        !          28837:             "\xf1\x9a\x83\xe0\x70\xa9\x73\xe0\xe0\x49\x63\xe0\xe0"
        !          28838:             "\x59\x54\xe0\xe0\x5a\x43\xe0\xe0\x6a\x33\xe0\xe0\x89"
        !          28839:             "\x24\xe0\xe0\x89\x23\xe0\xe0\x99\x13\xe0\xe0\xad\xe0"
        !          28840:             "\xe0\xac\xe0\xe0\xf1\xca\xe0\xe0\x10\xc9\xe0\xe0\xe8"
        !          28841:             "\xe0\xe0\x30\xf1\xc7\xe0\xe0\x40\xd5\xe0\xe0\x50\xf1"
        !          28842:             "\xd4\xe0\xe0\x6e" }  },
        !          28843:       /* --- pixel bitmap for cmmib450 char#87 W --- */
        !          28844:       {  87,28849,                      /* character number, location */
        !          28845:          43, 4,   -1, 4,      /* topleft row,col, and botleft row,col */
        !          28846:           { 71,   44, 3,443, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          28847:             "\xf1\x0e\x07\x5e\x07\x9e\x01\x0e\x06\x6e\x07\x9e\x01"
        !          28848:             "\x59\xe0\x39\xe0\x74\xb9\xe0\x3a\xe0\x63\xc9\xe0\x3a"
        !          28849:             "\xe0\x54\xca\xe0\x39\xe0\x53\xda\xe0\x39\xe0\x43\xe0"
        !          28850:             "\x19\xe0\x39\xe0\x34\xe0\x19\xe0\x39\xe0\x33\xe0\x29"
        !          28851:             "\xe0\x2a\xe0\x23\xe0\x39\xe0\x1b\xe0\x23\xe0\x39\xe0"
        !          28852:             "\x1c\xe3\xe0\x49\xed\xd4\xe0\x4a\xc4\x19\xd3\xe0\x5a"
        !          28853:             "\xc3\x29\xc3\xe0\x79\xb3\x39\xb4\xe0\x79\xb3\x39\xb3"
        !          28854:             "\xe0\x89\xa3\x49\xa3\xe0\x99\x94\x49\xa3\xe0\x99\x93"
        !          28855:             "\x5a\x83\xe0\xa9\x83\x6a\x74\xe0\xaa\x64\x79\x73\xe0"
        !          28856:             "\xba\x63\x89\x63\xe0\xd9\x53\x99\x54\xe0\xd9\x53\x99"
        !          28857:             "\x53\xe0\xe9\x43\xa9\x43\xe0\xe0\x19\x34\xa9\x43\xe0"
        !          28858:             "\xe0\x19\x33\xba\x23\xe0\xe0\x29\x23\xca\x14\xe0\xe0"
        !          28859:             "\x2e\xd9\x13\xe0\xe0\x3d\xec\xe0\xe0\x5b\xe0\x1c\xe0"
        !          28860:             "\xe0\x5b\xe0\x1b\xe0\xb0\xf1\x9a\xe0\x2a\xe0\xc0\x99"
        !          28861:             "\xe0\x39\xe0\xe0\x88\xe0\x49\xe0\xe0\x88\xe0\x57\xe0"
        !          28862:             "\xe0\x97\xe0\x66\xe0\xe0\xb5\xe0\x76\xe0\xe0\xb5\xe0"
        !          28863:             "\x75\xe0\xe0\xc4\xe0\x84\xe0\xe0\xd3\xe0\x94\xe0\xe0"
        !          28864:             "\x38" }  },
        !          28865:       /* --- pixel bitmap for cmmib450 char#88 X --- */
        !          28866:       {  88,30254,                      /* character number, location */
        !          28867:          43, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          28868:           { 57,   43, 2,159, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          28869:             "\x0b\x16\x07\x11\xff\x01\x0b\x16\x06\x12\x11\x0b\x11"
        !          28870:             "\x05\x19\x0a\x10\x04\x1b\x0b\x0e\x04\x1d\x0a\x0d\x04"
        !          28871:             "\x1e\x0b\x0b\x04\x20\x0a\x0a\x04\x21\x0a\x09\x04\x23"
        !          28872:             "\x0a\x07\x04\x24\x0a\x06\x04\x26\x0a\x04\x04\x27\x0a"
        !          28873:             "\x03\x04\x29\x0a\x01\x04\x2a\x0e\x2b\x0d\x15\x00\xff"
        !          28874:             "\x01\x18\x0b\x16\x00\x19\x0a\x2f\x0b\x15\x00\xff\x01"
        !          28875:             "\x1a\x0a\x15\x00\x19\x0c\x2c\x0d\x2b\x04\x01\x0a\x29"
        !          28876:             "\x04\x02\x0a\x28\x04\x04\x0a\x26\x04\x05\x0a\x25\x04"
        !          28877:             "\x06\x0b\x23\x04\x08\x0a\x22\x04\x09\x0b\x20\x04\x0b"
        !          28878:             "\x0a\x1f\x04\x0c\x0b\x1d\x04\x0e\x0a\x1c\x04\x0f\x0a"
        !          28879:             "\x1b\x04\x11\x0a\x19\x04\x12\x0a\x18\x04\x14\x0a\x15"
        !          28880:             "\x05\x15\x0a\x0e\x11\x0b\x16\x06\x12\x0b\x16\x06\x12"
        !          28881:             "\x0b\x15\x07" }  },
        !          28882:       /* --- pixel bitmap for cmmib450 char#89 Y --- */
        !          28883:       {  89,31456,                      /* character number, location */
        !          28884:          43, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          28885:           { 52,   43, 3,267, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          28886:             "\x1e\x08\xee\x0e\x0a\xee\x0e\x09\xe0\x1e\x01\x7a\xe0"
        !          28887:             "\xb4\xda\xe0\xa3\xe0\x1b\xe0\x83\xe0\x3a\xe0\x74\xe0"
        !          28888:             "\x3b\xe0\x54\xe0\x5a\xe0\x44\xe0\x6b\xe0\x24\xe0\x8a"
        !          28889:             "\xe0\x14\xe0\x9b\xd4\xe0\xab\xc4\xe0\xca\xc3\xe0\xdb"
        !          28890:             "\xa3\xe0\xe0\x1a\x93\xe0\xe0\x2b\x73\xe0\xe0\x4a\x64"
        !          28891:             "\xe0\xe0\x4b\x44\xe0\xe0\x6a\x34\xe0\xe0\x7a\x24\xe0"
        !          28892:             "\xe0\x8e\x01\xe0\xe0\xad\xe0\xe0\xbc\xe0\xe0\xda\xe0"
        !          28893:             "\xc0\xf2\xe0\x29\xe0\xd0\xe0\x28\xe0\xe0\xf2\xe0\x19"
        !          28894:             "\xe0\xe0\xe0\x18\xe0\xe0\x10\xf2\xe9\xe0\xe0\x10\xe8"
        !          28895:             "\xe0\xe0\x20\xf2\xd9\xe0\xe0\x20\x6e\x08\xe0\xa0\xf1"
        !          28896:             "\x5e\x09\xe0\xaa" }  },
        !          28897:       /* --- pixel bitmap for cmmib450 char#90 Z --- */
        !          28898:       {  90,32629,                      /* character number, location */
        !          28899:          43, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          28900:           { 46,   43, 3,273, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          28901:             "\xde\x0e\x05\xf1\xce\x0e\x06\xca\xda\xc8\xe0\x1a\xd6"
        !          28902:             "\xe0\x2a\xe5\xe0\x2a\xe5\xe0\x2a\xe0\x14\xe0\x2b\xe0"
        !          28903:             "\x14\xe0\x1b\xe0\x14\xe0\x1b\xe0\x23\xe0\x2a\xe0\x33"
        !          28904:             "\xe0\x1a\xe0\x34\xea\xe0\x43\xea\xe0\xe0\x7a\xe0\xe0"
        !          28905:             "\x7a\xe0\xe0\x7a\xe0\xe0\x7a\xe0\xe0\x7a\xe0\xe0\x7a"
        !          28906:             "\xe0\xe0\x7b\xe0\xe0\x6b\xe0\xe0\x6b\xe0\xe0\x6b\xe0"
        !          28907:             "\xe0\x7a\xc3\xe0\x6a\xd3\xe0\x5a\xe3\xe0\x4a\xe4\xe0"
        !          28908:             "\x3a\xe0\x13\xe0\x3a\xe0\x14\xe0\x2a\xe0\x24\xe0\x1a"
        !          28909:             "\xe0\x24\xe0\x1a\xe0\x34\xea\xe0\x35\xdb\xe0\x25\xdb"
        !          28910:             "\xe0\x26\xcb\xe0\x27\xbb\xe0\x18\xca\xdb\xbe\x0e\x07"
        !          28911:             "\xae\x0e\x08\xae\x0e\x07\xb0" }  },
        !          28912:       /* --- pixel bitmap for cmmib450 char#91 \flat --- */
        !          28913:       {  91,130771,                     /* character number, location */
        !          28914:          47, 4,   -1, 4,      /* topleft row,col, and botleft row,col */
        !          28915:           { 20,   48, 3,101, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          28916:             "\xfe\x03\xe0\x3f\x13\xe0\x33\x46\x73\x1c\x4e\x03\x3e"
        !          28917:             "\x04\x26\x58\x14\x78\x1f\x63\x98\x0f\x23\x88\x1f\x13"
        !          28918:             "\x78\x23\x68\x33\x67\x43\x58\x43\x48\x53\x47\x63\x37"
        !          28919:             "\x73\x27\x83\x16\xa9\xb8\xc6\xe5\xe0\x13\xe0\x35" }  },
        !          28920:       /* --- pixel bitmap for cmmib450 char#92 \natural --- */
        !          28921:       {  92,131622,                     /* character number, location */
        !          28922:          45, 5,  -13, 5,      /* topleft row,col, and botleft row,col */
        !          28923:           { 18,   58, 3,98, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          28924:             "\xf8\x03\xe0\x13\xd5\xb7\x99\x7b\x5d\x3e\x01\x1e\x0f"
        !          28925:             "\x1e\x04\x0e\x1e\x01\x3d\x5b\x79\x97\xb3\x0f\xd3\xc3"
        !          28926:             "\x03\xb7\x99\x7b\x5d\x3e\x01\x1e\x0f\x1e\x04\x0e\x1e"
        !          28927:             "\x01\x3d\x5b\x79\x97\xb5\xd3\xf4\xe0\x13" }  },
        !          28928:       /* --- pixel bitmap for cmmib450 char#93 \sharp --- */
        !          28929:       {  93,132617,                     /* character number, location */
        !          28930:          44, 4,  -13, 4,      /* topleft row,col, and botleft row,col */
        !          28931:           { 20,   57, 3,163, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          28932:             "\xf4\xe3\x30\xf2\x33\x83\x30\x33\x83\x12\x33\x86\x33"
        !          28933:             "\x77\x33\x59\x33\x3b\x33\x1d\x3e\x03\x2e\x0e\x08\x2e"
        !          28934:             "\x03\x3d\x13\x3b\x33\x39\x53\x37\x73\x36\x83\x32\x13"
        !          28935:             "\x83\x30\xfb\x33\x83\x30\x33\x83\x12\x33\x86\x33\x77"
        !          28936:             "\x33\x59\x33\x3b\x33\x1d\x3e\x03\x2e\x0e\x08\x2e\x03"
        !          28937:             "\x3d\x13\x3b\x33\x39\x53\x37\x73\x36\x83\x32\x13\x83"
        !          28938:             "\x30\xf4\x33\xe0" }  },
        !          28939:       /* --- pixel bitmap for cmmib450 char#94 \smile --- */
        !          28940:       {  94,133667,                     /* character number, location */
        !          28941:          24, 4,    8, 4,      /* topleft row,col, and botleft row,col */
        !          28942:           { 64,   16, 2,51, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          28943:             "\x00\x03\x3a\x07\x38\x09\x36\x05\x01\x05\x34\x05\x03"
        !          28944:             "\x05\x32\x05\x05\x05\x30\x05\x07\x06\x2c\x06\x0a\x06"
        !          28945:             "\x28\x06\x0d\x08\x22\x08\x10\x09\x1c\x09\x13\x0e\x10"
        !          28946:             "\x0e\x16\x28\x1a\x24\x1f\x1e\x25\x18\x2d\x0e\x19" }  },
        !          28947:       /* --- pixel bitmap for cmmib450 char#95 \frown --- */
        !          28948:       {  95,134571,                     /* character number, location */
        !          28949:          24, 4,    8, 4,      /* topleft row,col, and botleft row,col */
        !          28950:           { 64,   16, 2,50, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          28951:             "\x16\x14\x29\x1a\x23\x20\x1e\x24\x1a\x28\x16\x0b\x16"
        !          28952:             "\x0b\x12\x09\x1e\x09\x0f\x07\x24\x07\x0c\x06\x2a\x06"
        !          28953:             "\x09\x06\x2c\x06\x07\x05\x30\x05\x05\x05\x32\x05\x03"
        !          28954:             "\x05\x34\x05\x01\x05\x36\x09\x38\x07\x3a\x03" }  },
        !          28955:       /* --- pixel bitmap for cmmib450 char#96 \ell --- */
        !          28956:       {  96,105647,                     /* character number, location */
        !          28957:          44, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
        !          28958:           { 29,   45, 3,211, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          28959:             "\xe0\x74\xe0\x98\xe0\x55\x23\xe0\x45\x43\x10\xf1\xe0"
        !          28960:             "\x15\x53\x10\xe5\x63\x10\xf1\xd6\x63\x10\xc6\x64\x10"
        !          28961:             "\xf1\xb7\x63\x20\xa7\x64\xc7\x63\xd7\x54\xc7\x64\xc7"
        !          28962:             "\x54\xd7\x53\xd8\x44\xd7\x44\x60\xf1\x87\x34\x70\x78"
        !          28963:             "\x24\xe0\x17\x24\xe0\x27\x14\xe0\x3b\xe0\x3b\xe0\x4a"
        !          28964:             "\xe0\x59\xe0\x68\xe0\x77\xe0\x20\xf1\x66\xe0\x30\x57"
        !          28965:             "\xe0\x78\xe0\x69\xe0\x5a\xe0\x44\x25\xe0\x11\x14\x35"
        !          28966:             "\xe3\x12\x45\xc5\x85\xa5\x95\x85\xc5\x55\xe0\x2b\xe0"
        !          28967:             "\x66\xa7" }  },
        !          28968:       /* --- pixel bitmap for cmmib450 char#97 a --- */
        !          28969:       {  97,33683,                      /* character number, location */
        !          28970:          29, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          28971:           { 34,   30, 3,133, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          28972:             "\xe7\xe0\xac\xe0\x67\x54\x14\xc6\x89\x97\xa8\x87\xb8"
        !          28973:             "\x78\xb8\x77\xc8\x68\xc7\x68\xd7\x68\xc8\x59\xc8\x40"
        !          28974:             "\xf1\x18\xd7\x50\x18\xc8\x59\xc8\x5f\x18\xd7\x68\xc8"
        !          28975:             "\x68\xc8\x33\x0f\x27\xd7\x43\x07\xc8\x34\x16\xb8\x43"
        !          28976:             "\x27\x99\x43\x36\x8a\x33\x56\x55\x26\x14\x7c\x59\xa8"
        !          28977:             "\x95\x50" }  },
        !          28978:       /* --- pixel bitmap for cmmib450 char#98 b --- */
        !          28979:       {  98,34637,                      /* character number, location */
        !          28980:          43, 4,   -1, 4,      /* topleft row,col, and botleft row,col */
        !          28981:           { 28,   44, 3,163, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          28982:             "\x96\xe0\x2c\xd0\xf1\x2c\xe0\xf1\x68\xe0\xf1\x67\xe0"
        !          28983:             "\x10\xf1\x58\xe0\x10\xf1\x57\xe0\x20\xf1\x48\xe0\x20"
        !          28984:             "\x47\x37\xb7\x1b\x8b\x56\x6a\x76\x58\x97\x47\xb6\x10"
        !          28985:             "\xf1\x28\xb7\xf1\x27\xc7\xf1\x18\xb8\xf1\x17\xc8\x17"
        !          28986:             "\xbe\x03\xb9\x0f\x17\xc8\x17\xb9\x17\xb8\x26\xc8\x26"
        !          28987:             "\xb8\x36\xb7\x46\xa8\x55\xa7\x66\x87\x85\x76\xb5\x56"
        !          28988:             "\xec\xe0\x47\xe0" }  },
        !          28989:       /* --- pixel bitmap for cmmib450 char#99 c --- */
        !          28990:       {  99,35564,                      /* character number, location */
        !          28991:          29, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          28992:           { 29,   30, 3,113, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          28993:             "\xe0\x18\xe0\x4e\xd7\x64\xa7\x94\x87\xa4\x77\x97\x57"
        !          28994:             "\xa7\x47\xa7\x48\xa7\x47\xb7\x38\xc4\x58\xe0\x50\xf2"
        !          28995:             "\x18\xe0\x69\xe0\x6f\x38\xe0\x7f\x17\xe0\x87\xe0\x62"
        !          28996:             "\x17\xe0\x43\x17\xe0\x34\x26\xe0\x15\x46\xc6\x66\x87"
        !          28997:             "\xae\x03\xe0\x1a\xa7" }  },
        !          28998:       /* --- pixel bitmap for cmmib450 char#100 d --- */
        !          28999:       { 100,36590,                      /* character number, location */
        !          29000:          43, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          29001:           { 36,   44, 3,191, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          29002:             "\xe0\xe0\x26\xe0\xac\xf1\xe0\x9c\x10\xf1\xe0\xd8\x10"
        !          29003:             "\xf1\xe0\xd7\x20\xf1\xe0\xc8\x20\xf1\xe0\xc7\x30\xf1"
        !          29004:             "\xe0\xb8\x30\xe7\x47\xe0\x1c\x27\xd7\x5b\xc6\x8a\xa7"
        !          29005:             "\xa8\xa7\xb8\x98\xb8\x97\xc8\x88\xc7\x88\xd7\x88\xc8"
        !          29006:             "\x79\xc8\x60\xf1\x18\xd7\x70\x18\xc8\x79\xc8\x7f\x18"
        !          29007:             "\xd7\x88\xc8\x88\xc8\x33\x2f\x27\xd7\x43\x27\xc8\x34"
        !          29008:             "\x36\xb8\x43\x47\x99\x43\x56\x8a\x33\x76\x55\x26\x14"
        !          29009:             "\x9c\x59\xc8\x95\x7a" }  },
        !          29010:       /* --- pixel bitmap for cmmib450 char#101 e --- */
        !          29011:       { 101,37541,                      /* character number, location */
        !          29012:          29, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          29013:           { 29,   30, 3,115, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          29014:             "\xe0\x18\xe0\x4e\xd7\x55\xa7\x94\x87\xa4\x77\xb5\x57"
        !          29015:             "\xc5\x47\xd4\x48\xd4\x38\xd5\x38\xc5\x39\xb5\x48\x97"
        !          29016:             "\x5e\x08\x7e\x05\x99\xe0\x6f\x48\xe0\x77\xe0\x96\xe0"
        !          29017:             "\x62\x17\xe0\x43\x17\xe0\x34\x26\xe0\x15\x46\xc6\x66"
        !          29018:             "\x87\xae\x03\xe0\x1a\xa7" }  },
        !          29019:       /* --- pixel bitmap for cmmib450 char#102 f --- */
        !          29020:       { 102,38749,                      /* character number, location */
        !          29021:          44, 4,  -13, 4,      /* topleft row,col, and botleft row,col */
        !          29022:           { 35,   57, 3,213, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          29023:             "\xe0\xa6\xe0\xdb\xe0\x95\x44\xe0\x76\x44\xe0\x66\x37"
        !          29024:             "\xe0\x47\x37\xf1\xe0\x47\x27\x10\xe0\x38\x27\xe0\x47"
        !          29025:             "\x53\x30\xf2\xe0\x37\xb0\xe0\x28\xb0\xf1\xe0\x27\xc0"
        !          29026:             "\xf2\x8e\x0a\x30\xe0\x18\xc0\xf3\xe0\x17\xd0\xf1\xe8"
        !          29027:             "\xd0\xf3\xe7\xe0\xd8\xe0\xf4\xd7\xe0\x10\xc8\xe0\x10"
        !          29028:             "\xf3\xc7\xe0\x20\xb8\xe0\x20\xf3\xb7\xe0\x30\xb6\xe0"
        !          29029:             "\x73\x47\xe0\x56\x37\xe0\x56\x36\xe0\x57\x36\xe0\x57"
        !          29030:             "\x26\xe0\x67\x25\xe0\x75\x44\xe0\x94\x34\xe0\xb9\xe0"
        !          29031:             "\xe5\xe0\xc0" }  },
        !          29032:       /* --- pixel bitmap for cmmib450 char#103 g --- */
        !          29033:       { 103,39830,                      /* character number, location */
        !          29034:          29, 1,  -13, 1,      /* topleft row,col, and botleft row,col */
        !          29035:           { 33,   42, 3,183, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          29036:             "\xe0\x27\xe0\x9c\xe0\x57\x54\x14\xb6\x89\x87\xa8\x77"
        !          29037:             "\xc7\x68\xb8\x67\xc8\x58\xc7\x58\xd7\x58\xc8\x49\xc8"
        !          29038:             "\x10\xf1\x38\xd7\x20\x38\xc8\x49\xc8\x20\xf1\x28\xd7"
        !          29039:             "\x30\xf1\x28\xc8\x30\xf1\x27\xd7\x40\x36\xc8\x77\xb8"
        !          29040:             "\x86\xa8\x96\x99\xa6\x6b\xcc\x18\xe0\x17\x37\xe0\xc7"
        !          29041:             "\x60\xf1\xe0\x58\x60\xe0\x57\xa3\xd7\x86\xb8\x77\xb7"
        !          29042:             "\x87\xa8\x87\x98\x96\x97\xb5\x88\xee\x03\xe0\x4b\xe0"
        !          29043:             "\x46" }  },
        !          29044:       /* --- pixel bitmap for cmmib450 char#104 h --- */
        !          29045:       { 104,40885,                      /* character number, location */
        !          29046:          43, 4,   -1, 4,      /* topleft row,col, and botleft row,col */
        !          29047:           { 35,   44, 3,205, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          29048:             "\xb6\xe0\x9c\xe0\x40\xf1\x4c\xe0\x50\xf1\x88\xe0\x50"
        !          29049:             "\xf1\x87\xe0\x60\xf1\x78\xe0\x60\xf1\x77\xe0\x70\xf1"
        !          29050:             "\x68\xe0\x70\x67\x58\xe0\x17\x3c\xc8\x14\x56\xbb\x86"
        !          29051:             "\xaa\x97\x99\xa7\x89\xb7\x40\xf1\x48\xc7\x40\x47\xd7"
        !          29052:             "\x78\xc8\x78\xc7\x50\xf1\x37\xd7\x50\x28\xc8\x78\xc7"
        !          29053:             "\x87\xd7\x87\xc8\x78\xc7\x88\xc7\x43\x17\xc8\x43\x17"
        !          29054:             "\xc7\x5b\xb8\x4c\xb7\x53\x17\xc7\x44\x17\xc7\x43\x27"
        !          29055:             "\xd6\x34\x26\xe6\x24\x36\xe0\x29\x53\xe0\x65\x69" }  },
        !          29056:       /* --- pixel bitmap for cmmib450 char#105 i --- */
        !          29057:       { 105,41863,                      /* character number, location */
        !          29058:          44, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          29059:           { 19,   45, 3,125, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          29060:             "\xe3\xe6\x10\xf2\xb7\x10\xb6\xe4\x30\xf7\xe0\x50\x75"
        !          29061:             "\xc9\x93\x35\x73\x46\x53\x56\x44\x47\x43\x57\x34\x57"
        !          29062:             "\x33\x58\x3f\x13\x57\x40\x78\xb7\xb8\x50\xf1\x67\x60"
        !          29063:             "\x58\xb7\xb8\x70\xf1\x47\x53\x38\x53\x37\x54\x37\x53"
        !          29064:             "\x47\x44\x46\x53\x56\x43\x75\x33\x99\xc5\x78" }  },
        !          29065:       /* --- pixel bitmap for cmmib450 char#106 j --- */
        !          29066:       { 106,42884,                      /* character number, location */
        !          29067:          44,-1,  -13,-1,      /* topleft row,col, and botleft row,col */
        !          29068:           { 30,   57, 3,205, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          29069:             "\xe0\xb4\xe0\xb6\xf2\xe0\x97\xe0\x96\xe0\xb3\x30\xf7"
        !          29070:             "\xe0\xe0\x20\xe0\x36\xe0\x8a\xe0\x44\x36\xe0\x24\x56"
        !          29071:             "\xe4\x66\xd4\x76\xc4\x77\xc3\x87\xb4\x87\xb3\x97\xb3"
        !          29072:             "\x88\xe0\x88\x30\xf1\xe0\x57\x40\xf1\xe0\x48\x40\xf1"
        !          29073:             "\xe0\x47\x50\xf1\xe0\x38\x50\xf1\xe0\x37\x60\xf1\xe0"
        !          29074:             "\x28\x60\xf1\xe0\x27\x70\xf1\xe0\x18\x70\xf1\xe0\x17"
        !          29075:             "\x80\xf1\xe8\x80\xe7\xc3\x87\xa6\x67\xa7\x67\xa7\x57"
        !          29076:             "\xb7\x47\xc6\x47\xd5\x46\xe0\x2c\xe0\x67\xe0\x69" }  },
        !          29077:       /* --- pixel bitmap for cmmib450 char#107 k --- */
        !          29078:       { 107,44011,                      /* character number, location */
        !          29079:          43, 4,   -1, 4,      /* topleft row,col, and botleft row,col */
        !          29080:           { 32,   44, 3,215, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          29081:             "\xb6\xe0\x6c\xe0\x10\xf1\x4c\xe0\x20\xf1\x88\xe0\x20"
        !          29082:             "\xf1\x87\xe0\x30\xf1\x78\xe0\x30\xf1\x77\xe0\x40\xf1"
        !          29083:             "\x68\xe0\x40\x67\xb5\x97\x99\x68\x83\x43\x68\x64\x45"
        !          29084:             "\x57\x63\x47\x57\x53\x57\x48\x43\x67\x48\x33\x76\x57"
        !          29085:             "\x33\x86\x57\x23\xa3\x68\x13\xe0\x6b\xe0\x40\xf1\x3a"
        !          29086:             "\xe0\x50\x2e\x02\xe0\x2e\x04\xe7\x49\xc7\x68\xa8\x68"
        !          29087:             "\xa8\x77\x53\x10\xf1\x17\x87\x53\x18\x87\x44\x18\x87"
        !          29088:             "\x43\x27\x96\x53\x2f\x17\x96\x43\x36\xb5\x33\x46\xc9"
        !          29089:             "\x63\xe0\x25\x7a" }  },
        !          29090:       /* --- pixel bitmap for cmmib450 char#108 l --- */
        !          29091:       { 108,44853,                      /* character number, location */
        !          29092:          43, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          29093:           { 16,   44, 3,127, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          29094:             "\xa6\x4c\xf1\x3c\x10\xf1\x78\x10\xf1\x77\x20\xf1\x68"
        !          29095:             "\x20\xf1\x67\x30\xf1\x58\x30\xf1\x57\x40\xf1\x48\x40"
        !          29096:             "\xf1\x47\x50\xf1\x38\x50\xf1\x37\x60\xf1\x28\x60\xf1"
        !          29097:             "\x27\x70\xf1\x18\x70\xf1\x17\x88\x88\x33\x2f\x27\x43"
        !          29098:             "\x27\x34\x2f\x16\x43\x36\x33\x56\x14\x69\x95\x71" }  },
        !          29099:       /* --- pixel bitmap for cmmib450 char#109 m --- */
        !          29100:       { 109,46172,                      /* character number, location */
        !          29101:          29, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          29102:           { 59,   30, 3,235, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          29103:             "\x65\xb8\xc8\xd9\x7c\x8c\xa3\x26\x44\x56\x54\x56\x83"
        !          29104:             "\x46\x23\x86\x33\x86\x73\x46\x13\x97\x13\x97\x53\x59"
        !          29105:             "\xaa\xa7\x53\x49\xb9\xb7\x44\x48\xc8\xc7\x43\x58\xc8"
        !          29106:             "\xc7\x43\x57\xd7\xd7\x43\x48\xc8\xc8\xb8\xc8\xc7\x50"
        !          29107:             "\xf1\x77\xd7\xd7\x50\x68\xc8\xc8\xb8\xc8\xc7\xc7\xd7"
        !          29108:             "\xd7\xc7\xd7\xc8\xb8\xc8\xc7\xc8\xc8\xc7\x43\x57\xd7"
        !          29109:             "\xc8\x43\x57\xd7\xc7\x53\x48\xc8\xb8\x44\x48\xc8\xb7"
        !          29110:             "\x53\x57\xd7\xc7\x44\x57\xd7\xc7\x43\x67\xd7\xd6\x34"
        !          29111:             "\x66\xe6\xe6\x24\x76\xe6\xe0\x29\x93\xe0\x33\xe0\x65"
        !          29112:             "\x60" }  },
        !          29113:       /* --- pixel bitmap for cmmib450 char#110 n --- */
        !          29114:       { 110,47389,                      /* character number, location */
        !          29115:          29, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          29116:           { 39,   30, 3,169, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          29117:             "\x65\xb8\xd9\x7c\xa3\x26\x44\x56\x83\x46\x23\x86\x73"
        !          29118:             "\x46\x13\x97\x53\x59\xa7\x53\x49\xb7\x44\x48\xc7\x43"
        !          29119:             "\x58\xc7\x43\x57\xd7\x43\x48\xc8\xb8\xc7\x50\xf1\x77"
        !          29120:             "\xd7\x50\x68\xc8\xb8\xc7\xc7\xd7\xc7\xc8\xb8\xc7\xc8"
        !          29121:             "\xc7\x43\x57\xc8\x43\x57\xc7\x53\x48\xb8\x44\x48\xb7"
        !          29122:             "\x53\x57\xc7\x44\x57\xc7\x43\x67\xd6\x34\x66\xe6\x24"
        !          29123:             "\x76\xe0\x29\x93\xe0\x65\x68" }  },
        !          29124:       /* --- pixel bitmap for cmmib450 char#111 o --- */
        !          29125:       { 111,48251,                      /* character number, location */
        !          29126:          29, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          29127:           { 33,   30, 3,145, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          29128:             "\xe0\x19\xe0\x7e\x01\xe0\x27\x66\xc7\x96\xa7\xb6\x87"
        !          29129:             "\xc7\x67\xd7\x57\xe0\x17\x38\xe0\x17\x37\xe0\x27\xf1"
        !          29130:             "\x28\xe0\x18\xf1\x18\xe0\x28\x18\xe0\x1e\x04\xe0\x19"
        !          29131:             "\x0f\x18\xe0\x28\x1f\x18\xe0\x18\x27\xe0\x27\x37\xe0"
        !          29132:             "\x18\x37\xe0\x17\x57\xd7\x67\xc7\x86\xb7\xa6\x97\xc6"
        !          29133:             "\x67\xe0\x2e\x01\xe0\x79\xe0\x17" }  },
        !          29134:       /* --- pixel bitmap for cmmib450 char#112 p --- */
        !          29135:       { 112,49315,                      /* character number, location */
        !          29136:          29, 0,  -12, 0,      /* topleft row,col, and botleft row,col */
        !          29137:           { 37,   41, 3,177, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          29138:             "\x95\x97\xe9\x5b\xb3\x26\x24\x56\x83\x4a\x76\x73\x48"
        !          29139:             "\x97\x53\x57\xb6\x53\x48\xb7\x34\x47\xc7\xf1\x33\x57"
        !          29140:             "\xc7\x33\x48\xb8\xa8\xb8\xf1\xa7\xc8\xf1\x98\xb9\xf1"
        !          29141:             "\x97\xc8\x10\x88\xb9\x98\xb8\xa7\xc8\xa7\xb8\xa8\xb7"
        !          29142:             "\xb8\xa8\xb7\xb7\xc8\x97\xca\x76\xeb\x56\xe0\x17\x1c"
        !          29143:             "\xe0\x37\x37\xe0\xf1\x58\xe0\xa0\xf1\x57\xe0\xb0\xf1"
        !          29144:             "\x48\xe0\xb0\xf1\x47\xe0\xcf\x2e\x01\xe0\x88" }  },
        !          29145:       /* --- pixel bitmap for cmmib450 char#113 q --- */
        !          29146:       { 113,50350,                      /* character number, location */
        !          29147:          29, 3,  -12, 3,      /* topleft row,col, and botleft row,col */
        !          29148:           { 32,   41, 3,145, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          29149:             "\xe7\x92\xbc\x45\x97\x5b\x86\x8a\x67\xa8\x67\xb8\x58"
        !          29150:             "\xc7\x57\xc8\x48\xc7\x20\xf1\x28\xd7\x20\x19\xc8\x20"
        !          29151:             "\xf2\x18\xd7\x39\xc8\x3f\x28\xd7\x48\xc8\x4f\x27\xd7"
        !          29152:             "\x57\xc8\x66\xb8\x77\x99\x86\x8a\x96\x5c\xbc\x17\xe8"
        !          29153:             "\x37\xe0\xb7\xe0\xa8\x70\xf2\xe0\x37\x80\xe0\x28\x80"
        !          29154:             "\xf1\xe0\x27\x90\xf2\xbe\x02\x50" }  },
        !          29155:       /* --- pixel bitmap for cmmib450 char#114 r --- */
        !          29156:       { 114,51333,                      /* character number, location */
        !          29157:          29, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          29158:           { 29,   30, 3,135, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          29159:             "\x55\xa5\x79\x5a\x44\x16\x34\x53\x33\x36\x13\x65\x13"
        !          29160:             "\x49\x57\x13\x48\x6b\x38\x77\x0f\x13\x47\x86\x13\x47"
        !          29161:             "\x93\x33\x38\xe0\x78\xe0\x10\xf1\x67\xe0\x20\xf1\x58"
        !          29162:             "\xe0\x20\xf1\x57\xe0\x30\xf1\x48\xe0\x30\xf1\x47\xe0"
        !          29163:             "\x40\xf1\x38\xe0\x40\xf2\x37\xe0\x50\xf1\x36\xe0\x60"
        !          29164:             "\x43\xe0\x87" }  },
        !          29165:       /* --- pixel bitmap for cmmib450 char#115 s --- */
        !          29166:       { 115,52367,                      /* character number, location */
        !          29167:          29, 4,   -1, 4,      /* topleft row,col, and botleft row,col */
        !          29168:           { 26,   30, 3,113, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          29169:             "\xd8\xe0\x1d\xc4\x74\x95\x94\x84\xb4\xf1\x64\xa6\xf1"
        !          29170:             "\x55\x96\x10\x56\x94\x78\xe0\x4d\xde\x01\xce\x02\xbe"
        !          29171:             "\x02\xbe\x02\xce\xe0\x39\xe0\x66\x35\xd5\x27\xc5\x27"
        !          29172:             "\xd4\x27\xc5\x26\xd4\x35\xe4\x33\xe0\x14\x44\xd4\x65"
        !          29173:             "\x95\x9e\x01\xe9\xb0" }  },
        !          29174:       /* --- pixel bitmap for cmmib450 char#116 t --- */
        !          29175:       { 116,53177,                      /* character number, location */
        !          29176:          41, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
        !          29177:           { 23,   42, 3,137, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          29178:             "\xe3\x60\xf1\xc6\x50\xf2\xb7\x50\xf1\xa8\x50\xf1\xa7"
        !          29179:             "\x60\xf1\x98\x60\x97\x70\xf1\x1e\x08\x0e\x09\xf1\x87"
        !          29180:             "\x80\xf1\x78\x80\xf1\x77\x90\xf1\x68\x90\xf1\x67\xa0"
        !          29181:             "\xf1\x58\xa0\xf1\x57\xb0\x48\xe0\x18\x73\x57\x83\x57"
        !          29182:             "\x74\x57\x73\x67\x64\x66\x73\x76\x63\x86\x54\x96\x33"
        !          29183:             "\xca\xe0\x16\x90" }  },
        !          29184:       /* --- pixel bitmap for cmmib450 char#117 u --- */
        !          29185:       { 117,54287,                      /* character number, location */
        !          29186:          29, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          29187:           { 37,   30, 3,155, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          29188:             "\x75\xe0\xe0\x29\xe0\x23\x83\x36\xc6\x63\x46\xb7\x53"
        !          29189:             "\x57\xa7\x44\x57\xa7\x43\x67\x98\x34\x58\x97\x43\x67"
        !          29190:             "\xa7\x43\x58\xa7\x43\x57\xa8\xc7\xa7\xc8\xa7\xc7\xb7"
        !          29191:             "\xc7\xa8\xb8\xa7\x60\xf1\x67\xb7\x60\x67\xa8\xb8\xa7"
        !          29192:             "\x43\xf2\x57\xb7\x43\x57\xa8\x34\x66\xa7\x43\x76\x98"
        !          29193:             "\x43\x77\x79\x33\x97\x44\x26\x14\xbc\x49\xe7\x95\x51" }  },
        !          29194:       /* --- pixel bitmap for cmmib450 char#118 v --- */
        !          29195:       { 118,55284,                      /* character number, location */
        !          29196:          29, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          29197:           { 31,   30, 3,135, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          29198:             "\x75\xd4\x79\x97\x53\x36\x78\x33\x46\x69\x23\x57\x59"
        !          29199:             "\x14\x57\x59\x13\x67\x5d\x58\x7a\x67\x99\x58\xa8\x57"
        !          29200:             "\xc4\x87\xc3\x88\xc3\x87\xd3\x87\xc4\x78\xc3\x87\xd3"
        !          29201:             "\x87\xc4\x87\xc3\x88\xc3\x30\xf1\x57\xc3\x40\x57\xb3"
        !          29202:             "\xa7\xa4\xb6\xa3\xc6\x93\xe6\x73\xe0\x26\x53\xe0\x4c"
        !          29203:             "\xe0\x87\xc9" }  },
        !          29204:       /* --- pixel bitmap for cmmib450 char#119 w --- */
        !          29205:       { 119,56580,                      /* character number, location */
        !          29206:          29, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          29207:           { 47,   30, 3,199, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          29208:             "\x75\xe0\xe0\x14\x79\xe0\x13\x77\x53\x36\xb6\x68\x33"
        !          29209:             "\x46\xa7\x59\x23\x57\x97\x59\x14\x57\x97\x59\x13\x67"
        !          29210:             "\x88\x5d\x58\x87\x8a\x67\x97\x99\x58\x97\xa8\x57\x98"
        !          29211:             "\xb4\x87\x97\xc3\x88\x97\xc3\x87\xa7\xc3\x87\x98\xb4"
        !          29212:             "\x78\x97\xc3\x20\xf1\x67\xa7\xc3\x20\x67\xa7\xb4\x78"
        !          29213:             "\x98\xb3\x87\xa7\xc3\x30\xf1\x57\xa7\xb3\x40\x57\xa7"
        !          29214:             "\xa3\xb6\xa7\xa3\xb7\x88\x93\xd6\x7a\x73\xe0\x16\x54"
        !          29215:             "\x26\x53\xe0\x4c\x4c\xe0\x78\x97\xb3" }  },
        !          29216:       /* --- pixel bitmap for cmmib450 char#120 x --- */
        !          29217:       { 120,57968,                      /* character number, location */
        !          29218:          29, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          29219:           { 36,   30, 3,151, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          29220:             "\xb6\x96\xcb\x5a\x94\x46\x24\x44\x64\x7a\x55\x53\x89"
        !          29221:             "\x47\x43\xa7\x57\x34\x98\x57\x33\xa8\x56\x33\xb7\x66"
        !          29222:             "\x33\xb7\x73\x53\xa8\xd0\xf2\xe0\x17\xe0\xe8\xe0\xf2"
        !          29223:             "\xe7\xe0\x10\xd8\xe0\xe7\xb3\x53\x77\xb3\x36\x67\xb3"
        !          29224:             "\x36\x58\xa3\x37\x58\x94\x37\x57\xa3\x47\x49\x83\x55"
        !          29225:             "\x5a\x74\x64\x44\x26\x44\x9a\x5b\xc6\x96\xb0" }  },
        !          29226:       /* --- pixel bitmap for cmmib450 char#121 y --- */
        !          29227:       { 121,59166,                      /* character number, location */
        !          29228:          29, 3,  -13, 3,      /* topleft row,col, and botleft row,col */
        !          29229:           { 34,   42, 3,201, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          29230:             "\x75\xe0\xd9\xe0\x23\x53\x36\xc6\x33\x46\xb7\x23\x57"
        !          29231:             "\xa7\x14\x57\xa7\x13\x67\x9c\x58\x97\x13\x67\xa7\x13"
        !          29232:             "\x58\xa7\x13\x57\xa8\x97\xa7\x98\xa7\x97\xb7\x97\xa8"
        !          29233:             "\x88\xa7\x30\xf1\x67\xb7\x30\x67\xa8\x88\xa7\x40\xf1"
        !          29234:             "\x57\xb7\x40\x57\xa8\x97\xa7\xb6\xa7\xb6\x98\xb7\x79"
        !          29235:             "\xc7\x4a\xe0\x1e\x05\xe0\x37\x37\xe0\xc8\xe0\xc7\xb5"
        !          29236:             "\xb7\xa7\x97\xb7\x88\xa8\x87\xb7\x87\xc6\x86\xe0\x13"
        !          29237:             "\x96\xe0\x24\x66\xe0\x6c\xe0\xa7\xe0\x67" }  },
        !          29238:       /* --- pixel bitmap for cmmib450 char#122 z --- */
        !          29239:       { 122,60214,                      /* character number, location */
        !          29240:          29, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          29241:           { 31,   30, 3,133, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          29242:             "\xc4\xc3\xa8\x94\x8b\x83\x8e\x54\x8e\x01\x34\x8e\x08"
        !          29243:             "\x9e\x07\x94\xd4\xa3\xd4\xe0\xc4\xe0\xc4\xe0\xc4\xe0"
        !          29244:             "\xb5\xe0\xb4\xe0\xc4\xe0\xc4\xe0\xc4\xe0\xb5\xe0\xb4"
        !          29245:             "\xe2\xa4\xe3\x94\xe0\x13\x84\xe0\x14\x74\xe5\x7e\x0a"
        !          29246:             "\x6e\x0a\x65\x3e\x03\x54\x6e\x01\x63\x9b\x74\xa9\x83"
        !          29247:             "\xd5\xaa" }  },
        !          29248:       /* --- pixel bitmap for cmmib450 char#123 \imath --- */
        !          29249:       { 123,106525,                     /* character number, location */
        !          29250:          29, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          29251:           { 19,   30, 3,101, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          29252:             "\x75\xc9\x93\x35\x73\x46\x53\x56\x44\x47\x43\x57\x34"
        !          29253:             "\x57\x33\x58\x3f\x13\x57\x40\x78\xb7\xb8\x50\xf1\x67"
        !          29254:             "\x60\x58\xb7\xb8\x70\xf1\x47\x53\x38\x53\x37\x54\x37"
        !          29255:             "\x53\x47\x44\x46\x53\x56\x43\x75\x33\x99\xc5\x70" }  },
        !          29256:       /* --- pixel bitmap for cmmib450 char#124 \jmath --- */
        !          29257:       { 124,107392,                     /* character number, location */
        !          29258:          29,-1,  -13,-1,      /* topleft row,col, and botleft row,col */
        !          29259:           { 27,   42, 3,167, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          29260:             "\xe0\x36\xe0\x5a\xe0\x14\x36\xd4\x56\xb4\x66\xa4\x76"
        !          29261:             "\x94\x77\x93\x87\x84\x87\x83\x97\x83\x88\xe0\x58\xf1"
        !          29262:             "\xe0\x57\x10\xf1\xe0\x48\x10\xf1\xe0\x47\x20\xf1\xe0"
        !          29263:             "\x38\x20\xf1\xe0\x37\x30\xf1\xe0\x28\x30\xf1\xe0\x27"
        !          29264:             "\x40\xf1\xe0\x18\x40\xf1\xe0\x17\x50\xf1\xe8\x50\xe7"
        !          29265:             "\x93\x87\x76\x67\x77\x67\x77\x57\x87\x47\x96\x47\xb4"
        !          29266:             "\x46\xec\xe0\x37\xe0\x2a" }  },
        !          29267:       /* --- pixel bitmap for cmmib450 char#125 \wp --- */
        !          29268:       { 125,108619,                     /* character number, location */
        !          29269:          29, 5,  -13, 5,      /* topleft row,col, and botleft row,col */
        !          29270:           { 41,   42, 3,263, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          29271:             "\xa3\xe0\xe0\x85\xe0\xe0\x64\xe0\xe0\x84\xe0\x28\xc4"
        !          29272:             "\xee\x94\xb6\x75\x74\xa5\xb6\x54\x94\xd6\x44\x84\xe0"
        !          29273:             "\x26\x34\x74\xe0\x36\x34\x64\xe0\x46\x25\x53\xe0\x67"
        !          29274:             "\x14\x53\xe0\x77\x14\x44\xe0\x77\x14\x34\xe0\x7d\x24"
        !          29275:             "\xe0\x87\x15\x23\xe0\x97\x19\xe0\xa7\x19\xe0\x98\x27"
        !          29276:             "\xe0\xa7\x37\xa2\xc7\x38\x84\xa7\x49\x74\xa7\x59\x63"
        !          29277:             "\xa7\x6a\x53\xa6\x7b\x43\x96\x8c\x33\x86\x84\x19\x33"
        !          29278:             "\x56\xa3\x38\x4b\xc3\x47\x66\xe0\x13\x47\xe0\xc4\x56"
        !          29279:             "\xe0\xcf\x23\x75\xe0\xcf\x13\x74\xe0\xd3\x64\xe0\xe0"
        !          29280:             "\x13\x54\xe0\xe0\x13\x44\xe0\xe0\x38\xe0\xe0\x74\xe0"
        !          29281:             "\xe0\x53" }  },
        !          29282:       /* --- pixel bitmap for cmmib450 char#126 \bfvec --- */
        !          29283:       { 126,109387,                     /* character number, location */
        !          29284:          45,12,   31,12,      /* topleft row,col, and botleft row,col */
        !          29285:           { 32,   14, 3,65, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          29286:             "\xe0\xa1\x70\xf1\xe0\x94\x50\xe0\x95\xe0\xd6\x3e\x0e"
        !          29287:             "\x03\x1f\x1e\x0e\x04\x0e\x0e\x03\xe0\x88\xe0\x97\xe0"
        !          29288:             "\xb5\xe0\xd4\xe0\xe0\x21\x94" }  },
        !          29289:       /* --- pixel bitmap for cmmib450 char#127 (noname) --- */
        !          29290:       { 127,109945,                     /* character number, location */
        !          29291:          41,18,   34,18,      /* topleft row,col, and botleft row,col */
        !          29292:           { 29,    7, 3,28, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          29293:             "\x9d\xce\x06\x7e\x0a\x38\xd6\x15\xe0\x64\x0f\x13\xe0"
        !          29294:             "\x93" }  },
        !          29295:       /* --- trailer  --- */
        !          29296:       { -99, -999,  0,0,0,0, { 0,0,0,0, (pixbyte *)"\0" }  }
        !          29297:    } ;
        !          29298: 
        !          29299: 
        !          29300: /* --- size=10 for .600gf ---
        !          29301:  * mf '\mode=preview; mag=magstep(-8.04680493988053835544); input cmmib10'
        !          29302:  * --------------------------------------------------------------------- */
        !          29303: /* --- fontdef for cmmib600 --- */
        !          29304: static	chardef  cmmib600[] =
        !          29305:    {
        !          29306:       /* --- pixel bitmap for cmmib600 char#0 \Gamma --- */
        !          29307:       {   0,63852,                      /* character number, location */
        !          29308:          57, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          29309:           { 60,   57, 3,319, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          29310:             "\xee\x0e\x0e\x03\x10\xf2\xde\x0e\x0e\x05\xe0\x7c\xe0"
        !          29311:             "\x1c\xe0\x7c\xe0\x49\xe0\x7c\xe0\x67\xe0\x6d\xe0\x75"
        !          29312:             "\x10\xf1\xe0\x6c\xe0\x85\x10\xe0\x6c\xe0\x94\xe0\x6d"
        !          29313:             "\xe0\x94\x10\xf2\xe0\x5c\xe0\xa4\x10\xe0\x4d\xe0\xa4"
        !          29314:             "\x10\xf2\xe0\x4c\xe0\xb4\x10\xe0\x3d\xe0\xb3\x20\xf2"
        !          29315:             "\xe0\x3c\xe0\xe0\x30\xe0\x2d\xe0\xe0\x30\xf2\xe0\x2c"
        !          29316:             "\xe0\xe0\x40\xe0\x1d\xe0\xe0\x40\xf2\xe0\x1c\xe0\xe0"
        !          29317:             "\x50\xed\xe0\xe0\x50\xf2\xec\xe0\xe0\x60\xdd\xe0\xe0"
        !          29318:             "\x60\xf2\xdc\xe0\xe0\x70\xcd\xe0\xe0\x70\xf2\xcc\xe0"
        !          29319:             "\xe0\x80\xbd\xe0\xe0\x80\xf2\xbc\xe0\xe0\x90\xad\xe0"
        !          29320:             "\xe0\x90\xf2\xac\xe0\xe0\xa0\x9d\xe0\xe0\xe0\x5c\xe0"
        !          29321:             "\xe0\xbe\x0e\x03\xe0\xe0\x1f\x1e\x0e\x04\xe0\xee\x0e"
        !          29322:             "\x03\xe0\xe0\x10" }  },
        !          29323:       /* --- pixel bitmap for cmmib600 char#1 \Delta --- */
        !          29324:       {   1,64865,                      /* character number, location */
        !          29325:          59, 5,    0, 5,      /* topleft row,col, and botleft row,col */
        !          29326:           { 71,   59, 2,201, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          29327:             "\x2f\x05\x41\x07\x12\x00\xff\x01\x2d\x08\x12\x00\x2c"
        !          29328:             "\x09\x3d\x0b\x3b\x0c\x3a\x0d\x11\x00\xff\x01\x28\x0f"
        !          29329:             "\x10\x00\x27\x10\x36\x12\x34\x13\x33\x05\x02\x0d\x33"
        !          29330:             "\x04\x03\x0e\x31\x04\x04\x0e\x30\x05\x05\x0d\x2f\x05"
        !          29331:             "\x06\x0e\x2d\x05\x07\x0e\x2c\x05\x08\x0e\x2c\x04\x0a"
        !          29332:             "\x0e\x2a\x04\x0b\x0e\x29\x05\x0b\x0e\x28\x05\x0d\x0e"
        !          29333:             "\x26\x05\x0e\x0e\x26\x04\x0f\x0e\x25\x04\x11\x0e\x23"
        !          29334:             "\x04\x12\x0e\x22\x05\x12\x0e\x21\x05\x14\x0e\x1f\x05"
        !          29335:             "\x15\x0e\x1f\x04\x16\x0e\x1e\x04\x18\x0d\x1d\x05\x18"
        !          29336:             "\x0e\x1b\x05\x19\x0e\x1a\x05\x1b\x0d\x19\x05\x1c\x0e"
        !          29337:             "\x18\x04\x1d\x0e\x17\x04\x1f\x0d\x16\x05\x1f\x0e\x14"
        !          29338:             "\x05\x20\x0e\x13\x05\x22\x0d\x13\x04\x23\x0e\x11\x04"
        !          29339:             "\x24\x0e\x10\x05\x25\x0d\x0f\x05\x26\x0e\x0d\x05\x27"
        !          29340:             "\x0e\x0c\x05\x28\x0e\x0c\x04\x2a\x0e\x0a\x3d\x09\x3e"
        !          29341:             "\x08\x40\x02\x00\xff\x01\x04\x41\x02\x00\x03\x43\x03"
        !          29342:             "\x44\x02\x45\x01\x8d\x01" }  },
        !          29343:       /* --- pixel bitmap for cmmib600 char#2 \Theta --- */
        !          29344:       {   2,66184,                      /* character number, location */
        !          29345:          58, 4,   -1, 4,      /* topleft row,col, and botleft row,col */
        !          29346:           { 66,   59, 3,481, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          29347:             "\xe0\xe0\x6d\xe0\xe0\xe0\x6e\x08\xe0\xe0\xde\x0e\xe0"
        !          29348:             "\xe0\x7c\x9c\xe0\xe0\x3a\xe0\x2b\xe0\xda\xe0\x6a\xe0"
        !          29349:             "\xb9\xe0\xa9\xe0\x89\xe0\xd9\xe0\x69\xe0\xe0\x19\xe0"
        !          29350:             "\x49\xe0\xe0\x2a\xe0\x1a\xe0\xe0\x49\xea\xe0\xe0\x5a"
        !          29351:             "\xca\xe0\xe0\x79\x20\xf1\x9a\xe0\xe0\x8a\x10\x8a\xe0"
        !          29352:             "\xe0\x9a\x8a\xe0\xe0\xba\x6b\xe0\xe0\xba\x6a\xe0\xe0"
        !          29353:             "\xca\x5b\xe0\xe0\xca\x5a\xe0\xe0\xda\x4b\x62\xe0\xa2"
        !          29354:             "\x7a\x4a\x64\xe0\x84\x5b\x3b\x64\xe0\x75\x5b\x3b\x5e"
        !          29355:             "\x0e\x03\x5b\xf2\x2b\x6e\x0e\x02\x6b\x1b\x6e\x0e\x03"
        !          29356:             "\x5b\x10\xf2\x1b\x6e\x0e\x02\x6b\x1b\x6e\x0e\x03\x5b"
        !          29357:             "\x2f\x1b\x6e\x0e\x02\x6b\x2b\x64\xe0\x75\x5b\x3b\x55"
        !          29358:             "\xe0\x75\x5b\x3b\x63\xe0\x93\x6a\x4b\xe0\xe0\xcb\x4b"
        !          29359:             "\xe0\xe0\xca\x5b\xe0\xe0\xbb\x5b\xe0\xe0\xba\x6b\xe0"
        !          29360:             "\xe0\xaa\x8a\xe0\xe0\xaa\x8a\xe0\xe0\x9a\x9a\xe0\xe0"
        !          29361:             "\x8a\xb9\xe0\xe0\x7a\xca\xe0\xe0\x5a\xe9\xe0\xe0\x59"
        !          29362:             "\xe0\x1a\xe0\xe0\x2a\xe0\x39\xe0\xe0\x1a\xe0\x59\xe0"
        !          29363:             "\xd9\xe0\x89\xe0\xaa\xe0\xaa\xe0\x6a\xe0\xdb\xe0\x2a"
        !          29364:             "\xe0\xe0\x3c\x9c\xe0\xe0\x7e\x0e\x01\xe0\xe0\xce\x08"
        !          29365:             "\xe0\xe0\xe0\x6e\xe0\xe0\x5e" }  },
        !          29366:       /* --- pixel bitmap for cmmib600 char#3 \Lambda --- */
        !          29367:       {   3,67408,                      /* character number, location */
        !          29368:          59, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          29369:           { 60,   59, 2,218, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          29370:             "\x2a\x04\x0e\x00\xff\x01\x29\x06\x0d\x00\x28\x07\x0d"
        !          29371:             "\x00\xff\x01\x27\x08\x0d\x00\x26\x09\x32\x0a\x32\x0b"
        !          29372:             "\x30\x0c\x0c\x00\xff\x01\x23\x0d\x0c\x00\xff\x01\x22"
        !          29373:             "\x0e\x0c\x00\x21\x0f\x2c\x10\x2c\x11\x2a\x04\x01\x0d"
        !          29374:             "\x29\x05\x01\x0d\x29\x04\x02\x0d\x0b\x00\xff\x01\x1d"
        !          29375:             "\x04\x03\x0d\x0b\x00\x1c\x04\x05\x0c\x26\x05\x05\x0c"
        !          29376:             "\x26\x04\x06\x0d\x24\x04\x07\x0d\x23\x05\x07\x0d\x23"
        !          29377:             "\x04\x08\x0d\x22\x04\x09\x0d\x21\x05\x09\x0d\x21\x04"
        !          29378:             "\x0b\x0c\x20\x05\x0b\x0d\x1f\x04\x0c\x0d\x1e\x04\x0d"
        !          29379:             "\x0d\x1d\x05\x0d\x0d\x1d\x04\x0e\x0d\x1c\x04\x0f\x0d"
        !          29380:             "\x1b\x05\x0f\x0d\x1b\x04\x11\x0c\x09\x00\xff\x01\x11"
        !          29381:             "\x04\x12\x0d\x08\x00\x10\x04\x13\x0d\x17\x05\x13\x0d"
        !          29382:             "\x17\x04\x14\x0d\x16\x04\x15\x0d\x15\x05\x16\x0c\x15"
        !          29383:             "\x04\x17\x0d\x13\x04\x18\x0d\x12\x05\x18\x0d\x12\x04"
        !          29384:             "\x19\x0d\x11\x05\x19\x0d\x11\x04\x1a\x0d\x10\x04\x1b"
        !          29385:             "\x0d\x0f\x05\x1c\x0c\x0d\x07\x1c\x0d\x06\x13\x0e\x1b"
        !          29386:             "\x00\xff\x01\x13\x0d\x1c\x00\x12\x0f\x1b" }  },
        !          29387:       /* --- pixel bitmap for cmmib600 char#4 \Xi --- */
        !          29388:       {   4,68983,                      /* character number, location */
        !          29389:          56, 5,    0, 5,      /* topleft row,col, and botleft row,col */
        !          29390:           { 67,   56, 2,169, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          29391:             "\x0f\x33\x01\x00\xff\x01\x0e\x35\x0e\x34\x01\x00\xff"
        !          29392:             "\x03\x0d\x35\x01\x00\x0c\x35\x0e\x05\x2c\x04\x0e\x04"
        !          29393:             "\x2d\x04\x0d\x05\x2d\x04\x0d\x04\x2e\x04\x0d\x04\x2d"
        !          29394:             "\x05\x0c\x05\x2d\x04\x0e\x03\x2f\x03\x03\x00\xff\x01"
        !          29395:             "\x43\x00\x12\x03\x1f\x03\x0c\x00\xff\x01\x11\x04\x1e"
        !          29396:             "\x04\x0c\x00\x11\x04\x1d\x05\x0c\x00\xff\x02\x10\x26"
        !          29397:             "\x0d\x00\x0f\x27\x0d\x00\xff\x02\x0f\x26\x0e\x00\x0e"
        !          29398:             "\x27\x1c\x26\x0f\x00\xff\x02\x0e\x04\x1e\x04\x0f\x00"
        !          29399:             "\x0e\x03\x1f\x03\x10\x00\xff\x03\x43\x00\x03\x03\x31"
        !          29400:             "\x03\x0c\x04\x30\x04\x0b\x04\x2f\x05\x0a\x05\x2f\x04"
        !          29401:             "\x0b\x04\x30\x04\x0b\x04\x2f\x05\x0b\x04\x2f\x04\x0c"
        !          29402:             "\x04\x2e\x05\x0c\x37\x0a\x00\xff\x02\x01\x37\x0b\x00"
        !          29403:             "\xff\x01\x01\x36\x0c\xff\x01\x37\x0c\x00\x01\x35\x0d" }  },
        !          29404:       /* --- pixel bitmap for cmmib600 char#5 \Pi --- */
        !          29405:       {   5,70368,                      /* character number, location */
        !          29406:          57, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          29407:           { 81,   57, 3,493, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          29408:             "\xee\x0e\x0e\x0e\x0a\x10\xf1\xee\x0e\x0e\x0e\x0b\xee"
        !          29409:             "\x0e\x0e\x0e\x0a\x10\xf1\xe0\x8c\xe0\xbc\xa0\xe0\x8c"
        !          29410:             "\xe0\xad\xe0\xe0\x3d\xe0\xad\xa0\xf1\xe0\x7c\xe0\xbc"
        !          29411:             "\xb0\xe0\x7c\xe0\xad\xe0\xe0\x3d\xe0\xad\xb0\xf1\xe0"
        !          29412:             "\x6c\xe0\xbc\xc0\xe0\x6c\xe0\xad\xe0\xe0\x3d\xe0\xad"
        !          29413:             "\xc0\xf1\xe0\x5c\xe0\xbc\xd0\xe0\x5c\xe0\xad\xe0\xe0"
        !          29414:             "\x3d\xe0\xad\xd0\xf1\xe0\x4c\xe0\xbc\xe0\xe0\x4c\xe0"
        !          29415:             "\xad\xe0\xe0\x3d\xe0\xad\xe0\xf1\xe0\x3c\xe0\xbc\xe0"
        !          29416:             "\x10\xe0\x3c\xe0\xad\xe0\xe0\x3d\xe0\xad\xe0\x10\xf1"
        !          29417:             "\xe0\x2c\xe0\xbc\xe0\x20\xe0\x2c\xe0\xad\xe0\xe0\x3d"
        !          29418:             "\xe0\xad\xe0\x20\xf1\xe0\x1c\xe0\xbc\xe0\x30\xe0\x1c"
        !          29419:             "\xe0\xad\xe0\xe0\x3d\xe0\xad\xe0\x30\xf1\xec\xe0\xbc"
        !          29420:             "\xe0\x40\xec\xe0\xad\xe0\xe0\x3d\xe0\xad\xe0\x40\xf1"
        !          29421:             "\xdc\xe0\xbc\xe0\x50\xdc\xe0\xad\xe0\xe0\x3d\xe0\xad"
        !          29422:             "\xe0\x50\xf1\xcc\xe0\xbc\xe0\x60\xcc\xe0\xad\xe0\xe0"
        !          29423:             "\x3d\xe0\xad\xe0\x60\xf1\xbc\xe0\xbc\xe0\x70\xbc\xe0"
        !          29424:             "\xad\xe0\xe0\x3d\xe0\xad\xe0\xe0\x3c\xe0\xbc\xe0\x9e"
        !          29425:             "\x0e\x01\x8e\x0e\x01\xe0\x1e\x0e\x02\x7e\x0e\x02\xde"
        !          29426:             "\x0e\x02\x7e\x0e\x02\xe0\x1e\x0e\x01\x8e\x0e\x01\xe1" }  },
        !          29427:       /* --- pixel bitmap for cmmib600 char#6 \Sigma --- */
        !          29428:       {   6,71713,                      /* character number, location */
        !          29429:          57, 5,    0, 5,      /* topleft row,col, and botleft row,col */
        !          29430:           { 70,   57, 2,193, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          29431:             "\x0e\x37\x01\x00\xff\x02\x0e\x38\x0e\x10\x19\x0f\x0f"
        !          29432:             "\x0f\x1d\x0b\x10\x0f\x1e\x09\x10\x0f\x1f\x07\x01\x00"
        !          29433:             "\xff\x01\x11\x0f\x1f\x06\x01\x00\x12\x0f\x1f\x05\x13"
        !          29434:             "\x10\x1e\x05\x14\x0f\x1e\x05\x15\x0f\x1d\x05\x15\x0f"
        !          29435:             "\x1e\x04\x01\x00\xff\x01\x15\x0f\x1d\x04\x01\x00\x16"
        !          29436:             "\x0f\x1c\x04\x17\x10\x1b\x04\x18\x0f\x1b\x03\x02\x00"
        !          29437:             "\xff\x01\x18\x0f\x1f\x00\xff\x01\x19\x0f\x1e\x00\x1a"
        !          29438:             "\x0f\x37\x10\x37\x0f\x1c\x00\xff\x01\x1c\x0f\x1b\x00"
        !          29439:             "\x1d\x0d\x39\x0c\x3b\x0a\x3c\x08\x3e\x07\x3e\x07\x3d"
        !          29440:             "\x07\x1b\x03\x20\x07\x1b\x04\x1f\x06\x1c\x05\x1d\x07"
        !          29441:             "\x1d\x05\x1c\x07\x1d\x05\x1b\x07\x1f\x05\x1a\x07\x1f"
        !          29442:             "\x05\x1a\x06\x21\x05\x18\x07\x21\x05\x18\x07\x21\x06"
        !          29443:             "\x16\x07\x22\x07\x15\x07\x22\x07\x15\x06\x22\x09\x13"
        !          29444:             "\x07\x22\x09\x13\x06\x21\x0c\x11\x07\x1d\x11\x10\x35"
        !          29445:             "\x0f\x37\x0e\x37\x0e\x38\x0d\x39\x0e\x37\x0e" }  },
        !          29446:       /* --- pixel bitmap for cmmib600 char#7 \Upsilon --- */
        !          29447:       {   7,72929,                      /* character number, location */
        !          29448:          58, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          29449:           { 65,   58, 2,191, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          29450:             "\x0c\x08\x1f\x07\x11\x0d\x19\x0d\x0c\x10\x16\x10\x09"
        !          29451:             "\x13\x13\x13\x07\x15\x10\x16\x05\x17\x0e\x17\x04\x19"
        !          29452:             "\x0c\x18\x04\x19\x0b\x1a\x02\x1b\x09\x1b\x01\x07\x09"
        !          29453:             "\x0c\x08\x0c\x0a\x06\x01\x05\x0d\x0b\x06\x0b\x0d\x05"
        !          29454:             "\x01\x04\x0f\x0a\x05\x0a\x10\x08\x11\x09\x05\x09\x10"
        !          29455:             "\x04\x02\x03\x11\x09\x04\x09\x12\x03\x17\x08\x03\x09"
        !          29456:             "\x2d\x09\x02\x08\x2f\x08\x01\x08\x30\x08\x01\x07\x31"
        !          29457:             "\x10\x1a\x00\xff\x01\x17\x0f\x1b\x00\xff\x01\x17\x0e"
        !          29458:             "\x1c\x00\xff\x01\x17\x0d\x1d\x00\xff\x02\x17\x0c\x1e"
        !          29459:             "\x00\xff\x03\x16\x0c\x1f\x00\x15\x0d\x1f\x00\xff\x02"
        !          29460:             "\x15\x0c\x20\x00\x14\x0d\x20\x00\xff\x02\x14\x0c\x21"
        !          29461:             "\x00\x13\x0d\x21\x00\xff\x02\x13\x0c\x22\x00\x12\x0d"
        !          29462:             "\x22\x00\xff\x02\x12\x0c\x23\x00\x11\x0d\x23\x00\xff"
        !          29463:             "\x02\x11\x0c\x24\x00\x10\x0d\x34\x0c\x2a\x21\x1b\x00"
        !          29464:             "\xff\x01\x04\x23\x1a\x00\x05\x21\x1b" }  },
        !          29465:       /* --- pixel bitmap for cmmib600 char#8 \Phi --- */
        !          29466:       {   8,74105,                      /* character number, location */
        !          29467:          57, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          29468:           { 59,   57, 3,353, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          29469:             "\xf1\xe0\x6e\x0e\x05\x60\xe0\x5e\x0e\x06\xe0\xce\x0e"
        !          29470:             "\x04\x70\xf2\xe0\xe0\x2b\xe0\x40\xe0\xe0\x1c\xe0\x40"
        !          29471:             "\xf2\xe0\xe0\x1b\xe0\x50\xe0\xec\xe0\xe0\xe0\x5b\xe0"
        !          29472:             "\xe0\xe0\x2e\x04\xe0\xe0\x8e\x0e\xe0\xde\x0e\x07\xe0"
        !          29473:             "\x8c\x2b\x2d\xe0\x2c\x5b\x5b\xea\x8b\x7b\xab\x8c\x8b"
        !          29474:             "\x8a\xab\xab\x6a\xbb\xab\x5b\xbb\xbb\x3b\xbc\xbb\x2c"
        !          29475:             "\xbb\xcb\xf1\x1c\xcb\xcb\x0c\xcc\xbc\x0f\x1c\xcb\xcc"
        !          29476:             "\x0c\xcb\xcb\x1c\xbc\xbc\x1c\xbb\xcb\x2c\xbb\xbc\x3b"
        !          29477:             "\xbb\xbb\x4b\xac\xab\x6a\xab\xab\x8a\x9b\x9a\xba\x8b"
        !          29478:             "\x7b\xdb\x5c\x5b\xe0\x3c\x2b\x2d\xe0\x7e\x0e\x07\xe0"
        !          29479:             "\xde\x0e\xe0\xe0\x8e\x04\xe0\xa0\xf2\xe0\x6b\xe0\xe0"
        !          29480:             "\xe0\x5c\xe0\xe0\xf2\xe0\x5b\xe0\xe0\x10\xe0\x4c\xe0"
        !          29481:             "\xe0\xe0\x5b\xe0\xe0\x9e\x0e\x04\xe0\x60\xf1\x6e\x0e"
        !          29482:             "\x06\xe0\x50\x7e\x0e\x04\xe0\x60" }  },
        !          29483:       /* --- pixel bitmap for cmmib600 char#9 \Psi --- */
        !          29484:       {   9,75370,                      /* character number, location */
        !          29485:          57, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          29486:           { 64,   57, 3,375, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          29487:             "\xf1\xe0\x5e\x0e\x05\xc0\xe0\x4e\x0e\x06\xe0\xe0\x3e"
        !          29488:             "\x0e\x04\xd0\xf2\xe0\xe0\x1b\xe0\xa0\xe0\xec\xe0\xa0"
        !          29489:             "\xf2\xe0\xeb\xe0\xb0\xe0\xdc\xe0\xbc\xe0\x1b\xeb\x1d"
        !          29490:             "\xeb\xce\x0e\xdb\xbe\x4b\xcc\xbc\x6b\xcb\xbc\x7b\xcb"
        !          29491:             "\xac\x8b\xcb\xab\x9b\xbc\x9c\x60\xf1\x3b\xbb\xab\x70"
        !          29492:             "\x3b\xbb\x9c\x9c\xac\x9b\x80\xf1\x2b\xbb\xab\x80\x2b"
        !          29493:             "\xbb\x9c\xab\xac\x9b\xbb\xab\xab\x90\xf1\x2b\xab\x9b"
        !          29494:             "\xa0\x2b\x9c\x8b\xdb\x9b\x8b\xe0\x1a\x9b\x8b\xe0\x1a"
        !          29495:             "\x9b\x7b\xe0\x2b\x7c\x6b\xe0\x4a\x7b\x6b\xe0\x6a\x6b"
        !          29496:             "\x5b\xe0\x8a\x5b\x3b\xe0\xbb\x2c\x1c\xe0\xde\x0e\x07"
        !          29497:             "\xe0\xe0\x3e\x0e\x03\xe0\xe0\x8e\x0b\xe0\xe0\xe0\x1e"
        !          29498:             "\x02\xe0\xe0\x30\xf2\xe0\x5b\xe0\xe0\x60\xe0\x4c\xe0"
        !          29499:             "\xe0\x60\xf2\xe0\x4b\xe0\xe0\x70\xe0\x3c\xe0\xe0\xe0"
        !          29500:             "\xab\xe0\xe0\xee\x0e\x04\xe0\xc0\xf1\x5e\x0e\x06\xe0"
        !          29501:             "\xb0\x6e\x0e\x04\xe0\xce" }  },
        !          29502:       /* --- pixel bitmap for cmmib600 char#10 \Omega --- */
        !          29503:       {  10,76749,                      /* character number, location */
        !          29504:          58, 7,    0, 7,      /* topleft row,col, and botleft row,col */
        !          29505:           { 67,   58, 3,473, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          29506:             "\xe0\xe0\x5e\x03\xe0\xe0\xe0\x3e\x0c\xe0\xe0\xae\x0e"
        !          29507:             "\x04\xe0\xe0\x5e\x9d\xe0\xed\xe0\x2c\xe0\xbc\xe0\x6b"
        !          29508:             "\xe0\x8c\xe0\xaa\xe0\x6b\xe0\xcb\xe0\x4b\xe0\xeb\xe0"
        !          29509:             "\x2b\xe0\xe0\x1b\xe0\x1b\xe0\xe0\x3b\xdb\xe0\xe0\x4b"
        !          29510:             "\xcc\xe0\xe0\x4c\xf1\xac\xe0\xe0\x5c\xf1\x9c\xe0\xe0"
        !          29511:             "\x6c\xf1\x8c\xe0\xe0\x7c\x8c\xe0\xe0\x6d\x7d\xe0\xe0"
        !          29512:             "\x6d\xf1\x7c\xe0\xe0\x7c\x10\xf1\x7c\xe0\xe0\x6c\x20"
        !          29513:             "\x7c\xe0\xe0\x5d\x9c\xe0\xe0\x5c\x30\xf1\x7c\xe0\xe0"
        !          29514:             "\x4c\x40\x8b\xe0\xe0\x3c\xdb\xe0\xe0\x3b\xeb\xe0\xe0"
        !          29515:             "\x2b\xe0\x2a\xe0\xe0\x2a\xe0\x3a\xe0\xe0\x1a\xe0\x59"
        !          29516:             "\xe0\xea\xe0\x69\xe0\xe9\xe0\x88\xe0\xd9\xe0\x98\xe0"
        !          29517:             "\xd8\xe0\xb8\xe0\xb8\xe0\xc8\xe0\xa8\xe0\xe7\xe0\xa7"
        !          29518:             "\xe0\x33\x97\xe0\x97\x83\x74\x96\xe0\x87\x94\x64\x96"
        !          29519:             "\xe0\x86\x95\x64\xa5\xe0\x76\xa4\x74\xa5\xe0\x75\xa5"
        !          29520:             "\x74\xb4\xe0\x65\xb4\x84\xb4\xe0\x64\xb5\x84\xb4\xe0"
        !          29521:             "\x55\xa5\x9e\x05\xe0\x5e\x06\x80\xf1\x1e\x05\xe0\x4e"
        !          29522:             "\x06\x90\x1e\x05\xe0\x3e\x06\xaf\x1e\x06\xe0\x3e\x06"
        !          29523:             "\xae\x06\xe0\x3e\x05\xbe\x05\xe0\x3e\x06\xce\x04\xe0"
        !          29524:             "\x4e\x04\xc0" }  },
        !          29525:       /* --- pixel bitmap for cmmib600 char#11 \alpha --- */
        !          29526:       {  11,77979,                      /* character number, location */
        !          29527:          38, 4,   -1, 4,      /* topleft row,col, and botleft row,col */
        !          29528:           { 54,   39, 3,267, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          29529:             "\xe0\x79\xe0\xe0\xde\x03\xe0\xe0\x7e\x07\xe0\xe0\x39"
        !          29530:             "\x78\xe0\xe9\xa8\xc4\x99\xd9\xa4\x89\xe0\x18\xa4\x79"
        !          29531:             "\xe0\x29\x85\x69\xe0\x49\x74\x6a\xe0\x49\x74\x69\xe0"
        !          29532:             "\x5a\x55\x59\xe0\x79\x54\x5a\xe0\x79\x45\x5a\xe0\x79"
        !          29533:             "\x44\x5a\xe0\x8a\x25\x5a\xe0\x8a\x24\x5b\xe0\x8a\x15"
        !          29534:             "\x5a\xe0\x9a\x14\x6a\xe0\x9e\x01\x6a\xe0\x9e\x6b\xe0"
        !          29535:             "\xac\x7a\xe0\xbc\x7a\xe0\xbb\x8a\xe0\xba\x9a\xe0\xb9"
        !          29536:             "\xaf\x39\xe0\xc9\xa0\x18\xe0\xba\xb8\xe0\xab\xb9\xe0"
        !          29537:             "\x8d\xb8\xe0\x6e\x01\x54\x38\xe0\x36\x29\x54\x48\xe6"
        !          29538:             "\x58\x45\x59\x88\x88\x25\x7e\x08\xbd\xae\x04\xeb\xe0"
        !          29539:             "\x1a\xe0\x76\x59" }  },
        !          29540:       /* --- pixel bitmap for cmmib600 char#12 \beta --- */
        !          29541:       {  12,79236,                      /* character number, location */
        !          29542:          59, 1,  -16, 1,      /* topleft row,col, and botleft row,col */
        !          29543:           { 52,   75, 3,497, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          29544:             "\xe0\xe0\x69\xe0\xe0\xce\x01\xe0\xe0\x7e\x05\xe0\xe0"
        !          29545:             "\x37\x78\xe0\xe6\xc7\xe0\xc5\xe0\x17\xe0\xa5\xe0\x28"
        !          29546:             "\xe0\x76\xe0\x47\xe0\x65\xe0\x67\xe0\x64\xe0\x77\xe0"
        !          29547:             "\x55\xe0\x77\xe0\x45\xe0\x87\xe0\x35\xe0\x88\xe0\x34"
        !          29548:             "\xe0\x98\xe0\x25\xe0\x98\xe0\x24\xe0\xa8\xe0\x15\xe0"
        !          29549:             "\x99\xe0\x14\xe0\xa8\xe0\x15\xe0\xa8\x10\xf1\xe4\xe0"
        !          29550:             "\xa8\x20\xd5\xe0\x98\xe0\x24\x9c\x37\xe0\x34\x7e\x0a"
        !          29551:             "\xe0\x25\x6e\x09\xe0\x44\x65\x99\xe0\x54\x64\x9b\xe0"
        !          29552:             "\x44\x6e\x0b\xe0\x25\x7e\x0a\xe0\x24\xab\x48\x40\xf1"
        !          29553:             "\xb4\xe0\xc8\x30\xa5\xe0\xc8\xd4\xe0\xd8\x30\xf1\xa4"
        !          29554:             "\xe0\xd9\x20\x95\xe0\xd9\x20\xf2\x94\xe0\xe9\x20\x85"
        !          29555:             "\xe0\xda\x20\xf2\x84\xe0\xe9\x30\x75\xe0\xda\x30\xf1"
        !          29556:             "\x75\xe0\xd9\x40\x75\xe0\xca\xa6\xe0\xc9\xb6\xe0\xc8"
        !          29557:             "\xc6\xe0\xb9\xc7\xe0\x99\xc8\xe0\x89\xd9\xe0\x78\xe4"
        !          29558:             "\x15\xe0\x49\xe0\x14\x25\xe0\x28\xe0\x25\x36\xc9\xe0"
        !          29559:             "\x34\x5e\x0a\xe0\x54\x7e\x06\xe0\x74\x9e\x01\xe0\x95"
        !          29560:             "\xe0\x11\xe0\xe0\xf2\x34\xe0\xe0\xe0\x30\x25\xe0\xe0"
        !          29561:             "\xe0\x30\xf2\x24\xe0\xe0\xe0\x40\x15\xe0\xe0\xe0\x40"
        !          29562:             "\xf2\x14\xe0\xe0\xe0\x55\xe0\xe0\xe0\x5f\x14\xe0\xe0"
        !          29563:             "\xe0\x6b" }  },
        !          29564:       /* --- pixel bitmap for cmmib600 char#13 \gamma --- */
        !          29565:       {  13,80389,                      /* character number, location */
        !          29566:          38, 2,  -17, 2,      /* topleft row,col, and botleft row,col */
        !          29567:           { 50,   55, 3,295, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          29568:             "\xe8\xe0\xe0\xcc\xe0\x84\xae\x02\xe0\x55\x8e\x05\xe0"
        !          29569:             "\x44\x8e\x07\xe0\x25\x6e\x0a\xe0\x14\x6e\x0c\xd5\x6e"
        !          29570:             "\x0d\xb5\x6e\x0e\xb4\x6a\x8c\x95\x58\xe0\x18\x94\x66"
        !          29571:             "\xe0\x57\x75\x56\xe0\x76\x74\x65\xe0\x95\x65\x64\xe0"
        !          29572:             "\xb5\x54\x74\xe0\xb5\x45\x73\xe0\xd4\x44\xe0\xe0\xa5"
        !          29573:             "\x25\xe0\xe0\xa5\x24\xe0\xe0\xc4\x15\xe0\xe0\xc4\x14"
        !          29574:             "\xe0\xe0\xd9\xa0\xf2\xe0\xe0\x38\xb0\xf1\xe0\xe0\x46"
        !          29575:             "\xc0\xf1\xe0\xe0\x45\xd0\xf1\xe0\xe0\x44\xe0\xe0\xe0"
        !          29576:             "\x35\xe0\xf1\xe0\xe0\x34\xe0\x10\xf2\xe0\xe0\x25\xe0"
        !          29577:             "\x10\xf2\xe0\xe0\x16\xe0\x10\xf3\xe0\xe6\xe0\x20\xf3"
        !          29578:             "\xe0\xd6\xe0\x30\xf3\xe0\xc6\xe0\x40\xf1\xe0\xc5\xe0"
        !          29579:             "\x50\xe0\xd2\xe0\x74" }  },
        !          29580:       /* --- pixel bitmap for cmmib600 char#14 \delta --- */
        !          29581:       {  14,81464,                      /* character number, location */
        !          29582:          60, 4,   -2, 4,      /* topleft row,col, and botleft row,col */
        !          29583:           { 38,   62, 3,313, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          29584:             "\xe0\x77\xe0\xe0\x1e\xe0\x8e\x06\xe0\x3e\x08\xe0\x24"
        !          29585:             "\x5d\xe0\x14\x7c\xe0\x13\xaa\xe0\x13\xb9\xe0\x14\xc6"
        !          29586:             "\xe0\x24\xe2\xe0\x45\xe0\xe0\x56\xe0\xe0\x47\xe0\xe0"
        !          29587:             "\x38\xe0\xe0\x38\xe0\xe0\x29\xe0\xe0\x1a\xe0\xe0\x1a"
        !          29588:             "\xe0\xeb\xe0\xeb\xe0\xdc\xe0\xdc\xe0\xcd\xe0\x9e\x01"
        !          29589:             "\xe0\x7e\x04\xe0\x4e\x07\xe0\x18\x3c\xd9\x4c\xc8\x7c"
        !          29590:             "\xa8\x8c\x99\x9b\x89\xab\x88\xca\x79\xca\x69\xda\x69"
        !          29591:             "\xe9\x30\xf1\x29\xe0\x19\x30\x1a\xe0\x19\x30\xf2\x19"
        !          29592:             "\xe0\x29\x3a\xe0\x28\x4f\x19\xe0\x38\x49\xe0\x29\x49"
        !          29593:             "\xe0\x28\x5f\x18\xe0\x38\x5f\x18\xe0\x28\x68\xe0\x27"
        !          29594:             "\x70\xf1\x18\xe7\x80\x27\xd7\xb8\xc6\xd8\xa6\xe0\x18"
        !          29595:             "\x86\xe0\x3e\x06\xe0\x6e\x02\xe0\xbb\xe0\xe0\x51\xe0"
        !          29596:             "\x75" }  },
        !          29597:       /* --- pixel bitmap for cmmib600 char#15 \epsilon --- */
        !          29598:       {  15,82502,                      /* character number, location */
        !          29599:          37, 4,   -1, 4,      /* topleft row,col, and botleft row,col */
        !          29600:           { 33,   38, 3,143, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          29601:             "\xe0\x6c\xe0\x3e\x03\xee\x05\xce\x06\xbb\xe0\x79\xe0"
        !          29602:             "\x8a\xe0\x8a\xe0\x8a\xe0\x99\xe0\x9a\xe0\x50\xf1\x3a"
        !          29603:             "\xe0\x60\xf1\x2a\xe0\x70\x1e\x0c\x60\xf1\x1e\x0e\x40"
        !          29604:             "\x1e\x0d\x5b\xe0\x8f\x5a\xe0\x90\xf2\x19\xe0\x90\x28"
        !          29605:             "\xe0\xb9\xe0\xb8\xe0\x42\x68\xe0\x15\x68\xc7\x7a\x78"
        !          29606:             "\xae\x07\xee\x03\xe0\x6a\x90" }  },
        !          29607:       /* --- pixel bitmap for cmmib600 char#16 \zeta --- */
        !          29608:       {  16,83470,                      /* character number, location */
        !          29609:          59, 3,  -17, 3,      /* topleft row,col, and botleft row,col */
        !          29610:           { 40,   76, 2,175, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          29611:             "\x19\x03\x0c\x00\xff\x05\x18\x04\x0c\x00\x18\x03\x02"
        !          29612:             "\x08\x1b\x0f\x19\x10\x16\x07\x07\x04\x14\x09\x06\x05"
        !          29613:             "\x13\x15\x12\x06\x02\x0c\x12\x06\x06\x08\x13\x06\x21"
        !          29614:             "\x06\x21\x06\x21\x06\x21\x06\x21\x07\x21\x06\x21\x06"
        !          29615:             "\x21\x06\x21\x07\x21\x06\x21\x07\x1b\x00\xff\x01\x05"
        !          29616:             "\x07\x1c\x00\xff\x01\x04\x07\x1d\x00\xff\x01\x03\x07"
        !          29617:             "\x1e\x00\x02\x08\x1e\x00\xff\x02\x02\x07\x1f\x00\x01"
        !          29618:             "\x08\x1f\x00\xff\x03\x01\x07\x20\xff\x01\x08\x20\xff"
        !          29619:             "\x02\x09\x1f\x0a\x1f\x09\x1f\x0a\x1e\x0b\x1d\x0c\x1d"
        !          29620:             "\x0d\x1b\x10\x19\x12\x16\x16\x13\x18\x11\x19\x10\x1a"
        !          29621:             "\x10\x19\x11\x17\x13\x16\x15\x13\x19\x0f\x1c\x0c\x1f"
        !          29622:             "\x09\x20\x08\x06\x00\xff\x01\x1b\x07\x06\x00\xff\x01"
        !          29623:             "\x1b\x06\x07\x00\x0e\x04\x09\x05\x16\x07\x05\x05\x18"
        !          29624:             "\x0f\x1b\x0c\x1f\x07\x0d" }  },
        !          29625:       /* --- pixel bitmap for cmmib600 char#17 \eta --- */
        !          29626:       {  17,84509,                      /* character number, location */
        !          29627:          38, 2,  -17, 2,      /* topleft row,col, and botleft row,col */
        !          29628:           { 48,   55, 3,337, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          29629:             "\x86\xe0\x39\xeb\xbe\x01\xad\x8e\x04\x85\x38\x56\x69"
        !          29630:             "\x64\x48\x35\xa8\x54\x59\x15\xb9\x35\x5e\xd8\x34\x6d"
        !          29631:             "\xe8\x34\x6c\xe0\x19\x14\x7b\xe0\x29\x14\x7a\xe0\x39"
        !          29632:             "\x14\x79\xe0\x3e\x01\x6a\xe0\x39\x14\x79\xe0\x49\xc9"
        !          29633:             "\xe0\x49\xc9\xe0\x3a\xba\xe0\x3a\x10\xf1\xa9\xe0\x49"
        !          29634:             "\x20\xa9\xe0\x3a\xba\xe0\x3a\x20\xf1\x99\xe0\x49\x30"
        !          29635:             "\x99\xe0\x3a\xba\xe0\x3a\x30\xf1\x89\xe0\x49\x40\x89"
        !          29636:             "\xe0\x3a\xba\xe0\x3a\x40\xf1\x79\xe0\x49\x50\x79\xe0"
        !          29637:             "\x3a\xba\xe0\x3a\x50\xf1\x69\xe0\x49\x60\x69\xe0\x3a"
        !          29638:             "\xc8\xe0\x4a\xc7\xe0\x59\xe0\x14\xe0\x69\x70\xf1\xe0"
        !          29639:             "\xe0\x3a\x70\xf1\xe0\xe0\x39\x80\xf1\xe0\xe0\x2a\x80"
        !          29640:             "\xf1\xe0\xe0\x29\x90\xf1\xe0\xe0\x1a\x90\xf2\xe0\xe0"
        !          29641:             "\x19\xa0\xe0\xe0\x18\xe0\xe0\xc7\xe0\xe0\xe0\x14\xd0" }  },
        !          29642:       /* --- pixel bitmap for cmmib600 char#18 \theta --- */
        !          29643:       {  18,85457,                      /* character number, location */
        !          29644:          59, 4,   -1, 4,      /* topleft row,col, and botleft row,col */
        !          29645:           { 42,   60, 3,315, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          29646:             "\xe0\xb7\xe0\xe0\x4c\xe0\xee\x02\xe0\xa8\x47\xe0\x87"
        !          29647:             "\x77\xe0\x58\x97\xe0\x38\xb7\xe0\x18\xc7\x20\xf1\xc8"
        !          29648:             "\xd8\x10\xb8\xe8\xb9\xe8\x10\xf1\x99\xe0\x19\xf1\x89"
        !          29649:             "\xe0\x29\x79\xe0\x39\xf1\x6a\xe0\x39\x69\xe0\x49\xf1"
        !          29650:             "\x5a\xe0\x3a\xf1\x4a\xe0\x4a\x4a\xe0\x3a\x4b\xe0\x3a"
        !          29651:             "\x10\xf1\x3a\xe0\x4a\x10\x3e\x0e\x0a\x10\xf2\x2e\x0e"
        !          29652:             "\x0a\x20\x2a\xe0\x3b\x3b\xe0\x3a\x30\xf1\x1a\xe0\x4a"
        !          29653:             "\x30\xf1\x1a\xe0\x3a\x40\x19\xe0\x4a\x59\xe0\x49\x69"
        !          29654:             "\xe0\x3a\x5f\x1a\xe0\x39\x69\xe0\x3a\x78\xe0\x39\x70"
        !          29655:             "\xf1\x18\xe0\x29\x80\x18\xe0\x19\xa8\xe0\x18\xb8\xe9"
        !          29656:             "\xc7\xe8\xd7\xd8\xe8\xb8\xe0\x27\xb7\xe0\x37\xa7\xe0"
        !          29657:             "\x57\x78\xe0\x77\x57\xe0\xae\x03\xe0\xdd\xe0\xe0\x38"
        !          29658:             "\xe0\xa0" }  },
        !          29659:       /* --- pixel bitmap for cmmib600 char#19 \iota --- */
        !          29660:       {  19,86290,                      /* character number, location */
        !          29661:          38, 4,   -1, 4,      /* topleft row,col, and botleft row,col */
        !          29662:           { 28,   39, 3,137, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          29663:             "\xc4\xe0\x87\xe0\x68\xe0\x69\xa0\xf2\x89\xb0\x7a\xb0"
        !          29664:             "\xf2\x79\xc0\x6a\xc0\xf2\x69\xd0\x5a\xd0\xf1\x59\xe0"
        !          29665:             "\x4a\xe0\xf1\x49\xe0\x10\x3a\xe0\x10\xf1\x39\xe0\x20"
        !          29666:             "\x2a\xe0\x20\xf1\x29\xd4\x1a\xc5\x19\xd4\x29\xc5\x1a"
        !          29667:             "\xb5\x29\xb5\x39\xa6\x48\x96\x58\x85\x87\x57\xae\x02"
        !          29668:             "\xdd\xe0\x38\xe0" }  },
        !          29669:       /* --- pixel bitmap for cmmib600 char#20 \kappa --- */
        !          29670:       {  20,87296,                      /* character number, location */
        !          29671:          38, 5,   -1, 5,      /* topleft row,col, and botleft row,col */
        !          29672:           { 48,   39, 3,259, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          29673:             "\xb4\xe0\xe0\xe7\xe0\x65\xe0\x18\xe0\x3a\xd9\xec\xc9"
        !          29674:             "\xde\xc9\xce\x01\xc9\xa5\x2a\xba\x95\x3a\xba\x84\x59"
        !          29675:             "\xc9\x84\x68\xd9\x65\x94\xea\x54\xe0\xe0\x1a\x44\xe0"
        !          29676:             "\xe0\x29\x44\xe0\xe0\x39\x25\xe0\xe0\x3e\x01\xe0\xe0"
        !          29677:             "\x5e\xe0\xe0\x6e\x06\xe0\xee\x0a\xe0\x9e\x0e\xe0\x6a"
        !          29678:             "\x6e\xe0\x49\xbb\xe0\x39\xda\xe0\x1a\xe9\xe0\x1a\xea"
        !          29679:             "\xc0\xf1\x29\xe0\x29\x84\x1a\xe0\x1a\x75\x1a\xe0\x19"
        !          29680:             "\x84\x29\xe0\x29\x84\x29\xe0\x29\x75\x1a\xe0\x29\x74"
        !          29681:             "\x2a\xe0\x29\x65\x29\xe0\x48\x64\x39\xe0\x48\x54\x49"
        !          29682:             "\xe0\x58\x35\x48\xe0\x7e\x57\xe0\xaa\x94\xe0\xd6\x99" }  },
        !          29683:       /* --- pixel bitmap for cmmib600 char#21 \lambda --- */
        !          29684:       {  21,88285,                      /* character number, location */
        !          29685:          58, 4,   -1, 4,      /* topleft row,col, and botleft row,col */
        !          29686:           { 50,   59, 3,336, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          29687:             "\xb9\xe0\xe0\xdc\xe0\xe0\xae\xe0\xe0\xbc\xe0\xe0\xbb"
        !          29688:             "\xe0\xa0\xf1\xe0\x2b\xe0\x90\xf1\xe0\x3b\xe0\x80\xe0"
        !          29689:             "\x4a\xe0\x80\xf1\xe0\x4b\xe0\x70\xf1\xe0\x5b\xe0\x60"
        !          29690:             "\xf1\xe0\x6b\xe0\x50\xe0\x7a\xe0\x50\xf1\xe0\x7b\xe0"
        !          29691:             "\x40\xf1\xe0\x8b\xe0\x30\xf1\xe0\x9b\xe0\x20\xf2\xe0"
        !          29692:             "\xab\xe0\x10\xf1\xe0\xbb\xe0\xf1\xe0\xcb\xd0\xf1\xe0"
        !          29693:             "\xdb\xc0\xe0\xbd\xe0\xe0\x8e\x01\xe0\xe0\x6e\x02\xe0"
        !          29694:             "\xe0\x5e\x04\xe0\xe0\x28\x1b\xe0\xe0\x18\x3b\xe0\xd8"
        !          29695:             "\x4b\xe0\xc8\x6b\xe0\xa8\x7b\xe0\x89\x8b\xe0\x79\xab"
        !          29696:             "\xe0\x59\xbb\xe0\x49\xdb\xe0\x1a\xeb\xea\xe0\x2b\xca"
        !          29697:             "\xe0\x3b\xba\xe0\x5a\xaa\xe0\x6b\x7b\xe0\x7b\x6c\xe0"
        !          29698:             "\x8b\x4c\xe0\x9b\x3c\xe0\xbb\x2b\xe0\xcb\x2a\xe0\xeb"
        !          29699:             "\x19\xe0\xe0\x1b\x18\xe0\xe0\x3b\x24\xe0\xe0\x79" }  },
        !          29700:       /* --- pixel bitmap for cmmib600 char#22 \mu --- */
        !          29701:       {  22,89439,                      /* character number, location */
        !          29702:          38, 4,  -17, 4,      /* topleft row,col, and botleft row,col */
        !          29703:           { 52,   55, 3,313, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          29704:             "\xe0\x14\xe0\xe0\xe0\x47\xe0\x64\xe0\x68\xe0\x57\xe0"
        !          29705:             "\x49\xe0\x38\x60\xf2\xb9\xe0\x39\x60\xf1\xaa\xe0\x2a"
        !          29706:             "\x60\xf1\xa9\xe0\x39\x70\xf1\x9a\xe0\x2a\x70\xf1\x99"
        !          29707:             "\xe0\x39\x80\xf1\x8a\xe0\x2a\x80\xf1\x89\xe0\x39\x90"
        !          29708:             "\xf1\x7a\xe0\x2a\x90\xf1\x79\xe0\x39\xa0\xf1\x6a\xe0"
        !          29709:             "\x2a\xa0\xf1\x69\xe0\x39\x74\x5a\xe0\x2a\x65\x5a\xe0"
        !          29710:             "\x2a\x64\x6a\xe0\x29\x74\x6a\xe0\x1a\x74\x10\xf1\x4b"
        !          29711:             "\xeb\x64\x20\x4c\xbd\x54\x7c\xa5\x18\x54\x6e\x01\x66"
        !          29712:             "\x38\x34\x7e\x0b\x6d\x8e\x0a\x8b\x99\x39\xe6\x80\xf1"
        !          29713:             "\x2a\xe0\xe0\xc0\xf1\x29\xe0\xe0\xd0\xf1\x1a\xe0\xe0"
        !          29714:             "\xd0\xf1\x19\xe0\xe0\xef\x1a\xe0\xe0\xef\x29\xe0\xe0"
        !          29715:             "\xe0\x18\xe0\xe0\xe0\x27\xe0\xe0\xe0\x54\xe0\xe0\xe0"
        !          29716:             "\x49" }  },
        !          29717:       /* --- pixel bitmap for cmmib600 char#23 \nu --- */
        !          29718:       {  23,90390,                      /* character number, location */
        !          29719:          38, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          29720:           { 48,   38, 3,241, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          29721:             "\xa8\xe0\xa4\x5e\x01\xe0\x87\x4e\x01\xe0\x78\x3e\x02"
        !          29722:             "\xe0\x79\x3e\x01\xe0\x69\x10\xf1\x89\xe0\x79\x10\x7a"
        !          29723:             "\xe0\x6a\x8a\xe0\x69\x99\xe0\x79\x99\xe0\x69\x9a\xe0"
        !          29724:             "\x69\x9a\xe0\x59\xa9\xe0\x69\xa9\xe0\x59\xaa\xe0\x4a"
        !          29725:             "\xaa\xe0\x49\xb9\xe0\x49\xc9\xe0\x39\xca\xe0\x2a\xca"
        !          29726:             "\xe0\x29\xd9\xe0\x29\xe9\xe0\x19\xea\xe9\xe0\x1a\xd8"
        !          29727:             "\xe0\x39\xd8\xe0\x49\xb9\xe0\x4a\xa8\xe0\x6a\x98\xe0"
        !          29728:             "\x79\x88\xe0\x99\x68\xe0\xaa\x58\xe0\xba\x29\xe0\xd9"
        !          29729:             "\x18\xe0\xe0\x2e\x02\xe0\xe0\x3e\xe0\xe0\x6b\xe0\xe0"
        !          29730:             "\xa6\xe0\xe0\xd0" }  },
        !          29731:       /* --- pixel bitmap for cmmib600 char#24 \xi --- */
        !          29732:       {  24,91616,                      /* character number, location */
        !          29733:          59, 1,  -17, 1,      /* topleft row,col, and botleft row,col */
        !          29734:           { 40,   76, 2,173, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          29735:             "\x18\x03\x0d\x00\xff\x05\x17\x04\x0d\x00\x17\x0e\x19"
        !          29736:             "\x11\x14\x15\x11\x0b\x08\x04\x10\x0c\x07\x05\x0e\x1a"
        !          29737:             "\x0d\x0a\x02\x0d\x0e\x0a\x05\x09\x0f\x0a\x1d\x0a\x14"
        !          29738:             "\x00\xff\x01\x09\x0a\x15\x00\xff\x01\x08\x0a\x16\x00"
        !          29739:             "\x07\x0b\x16\x00\xff\x07\x07\x0a\x17\x00\x08\x0a\x03"
        !          29740:             "\x0b\x10\x1a\x0f\x19\x10\x0b\x09\x04\x11\x0a\x09\x04"
        !          29741:             "\x10\x18\x0e\x06\x02\x11\x0e\x06\x06\x0b\x10\x06\x21"
        !          29742:             "\x06\x21\x06\x22\x05\x22\x06\x1f\x00\xff\x01\x02\x06"
        !          29743:             "\x20\x00\x01\x07\x20\x00\xff\x02\x01\x06\x21\x08\x20"
        !          29744:             "\x09\x1f\x0a\x1e\x0b\x1e\x0d\x1b\x10\x18\x12\x17\x14"
        !          29745:             "\x15\x16\x13\x18\x11\x1a\x0f\x1b\x0f\x1b\x10\x18\x13"
        !          29746:             "\x16\x15\x13\x18\x10\x1a\x0e\x1d\x0b\x20\x08\x20\x07"
        !          29747:             "\x22\x06\x14\x04\x09\x06\x15\x07\x06\x06\x16\x11\x19"
        !          29748:             "\x0d\x1f\x07\x0b" }  },
        !          29749:       /* --- pixel bitmap for cmmib600 char#25 \pi --- */
        !          29750:       {  25,92686,                      /* character number, location */
        !          29751:          37, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          29752:           { 53,   38, 3,273, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          29753:             "\xde\x0e\x0b\xbe\x0e\x0e\x01\x9e\x0e\x0e\x02\x7e\x0e"
        !          29754:             "\x0e\x04\x6e\x0e\x0e\x05\x5e\x0e\x0e\x06\x4e\x0e\x0e"
        !          29755:             "\x06\x4e\x0e\x0e\x05\x58\x95\x94\xe0\x45\xc5\x94\xe0"
        !          29756:             "\x35\xd4\x95\xe0\x25\xd5\x95\xe0\x33\xe5\x95\xe0\xe0"
        !          29757:             "\x65\x95\xe0\xe0\x55\xa5\xe0\xe0\x55\x96\xe0\x20\xf1"
        !          29758:             "\xe0\x26\x96\xe0\x20\xf1\xe0\x16\xa6\xe0\x20\xe7\xa6"
        !          29759:             "\xe0\xe0\x27\x97\xe0\xe0\x26\xa8\xe0\x10\xf1\xd7\xa8"
        !          29760:             "\xe0\x10\xc7\xb8\xe0\xd7\xb9\xe0\xb8\xb9\xe0\xb8\xba"
        !          29761:             "\xe0\x98\xca\xe0\x89\xcb\xe0\x79\xda\xe0\x6a\xda\xe0"
        !          29762:             "\x69\xea\xe0\x69\xe0\x19\xe0\x69\xe0\x18\xe0\x87\xe0"
        !          29763:             "\x36\xe0\xa4\xe0\x64\xe0\x1e" }  },
        !          29764:       /* --- pixel bitmap for cmmib600 char#26 \rho --- */
        !          29765:       {  26,93630,                      /* character number, location */
        !          29766:          38, 4,  -17, 4,      /* topleft row,col, and botleft row,col */
        !          29767:           { 45,   55, 3,299, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          29768:             "\xe0\xc9\xe0\xe0\x5e\x01\xe0\xde\x06\xe0\xa8\x68\xe0"
        !          29769:             "\x78\x98\xe0\x58\xb8\xe0\x38\xd8\xe0\x18\xe8\xe8\xe0"
        !          29770:             "\x19\xc8\xe0\x29\xb9\xe0\x29\xb8\xe0\x39\xa9\xe0\x39"
        !          29771:             "\xa8\xe0\x49\x99\xe0\x49\x99\xe0\x3a\x8a\xe0\x3a\xf1"
        !          29772:             "\x89\xe0\x4a\x89\xe0\x3b\x7a\xe0\x3a\x10\xf1\x79\xe0"
        !          29773:             "\x4a\x10\x79\xe0\x3b\x7a\xe0\x3a\x89\xe0\x4a\x20\xf1"
        !          29774:             "\x69\xe0\x3a\x30\x5a\xe0\x39\x99\xe0\x39\x50\xf1\x59"
        !          29775:             "\xe0\x29\x60\x4b\xe9\xbb\xd8\xdc\xb8\xee\x78\xe0\x1e"
        !          29776:             "\x0e\x01\xe0\x29\x3e\xe0\x59\x68\xe0\x89\xe0\xe0\x7a"
        !          29777:             "\xe0\xe0\x50\xf2\x29\xe0\xe0\x60\x1a\xe0\xe0\x60\xf2"
        !          29778:             "\x19\xe0\xe0\x7a\xe0\xe0\x7f\x29\xe0\xe0\x88\xe0\xe0"
        !          29779:             "\x97\xe0\xe0\xc4\xe0\xe0\xb2" }  },
        !          29780:       /* --- pixel bitmap for cmmib600 char#27 \sigma --- */
        !          29781:       {  27,94688,                      /* character number, location */
        !          29782:          37, 4,   -1, 4,      /* topleft row,col, and botleft row,col */
        !          29783:           { 51,   38, 3,239, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          29784:             "\xe0\x5e\x0e\x03\xe0\x3e\x0e\x07\xee\x0e\x09\xce\x0e"
        !          29785:             "\x0b\xae\x0e\x0d\x9e\x0e\x0e\x8e\x0e\x0e\x8e\x0e\x0d"
        !          29786:             "\x9c\x9b\xe0\x4a\xe9\xe0\x3a\xe0\x1a\xe0\x29\xe0\x39"
        !          29787:             "\xc0\xf1\x39\xe0\x49\xc0\xf1\x29\xe0\x59\xc0\xf1\x19"
        !          29788:             "\xe0\x69\xc0\x19\xe0\x5a\xca\xe0\x59\xdf\x19\xe0\x69"
        !          29789:             "\xd9\xe0\x5a\xd9\xe0\x59\xe8\xe0\x69\xef\x18\xe0\x59"
        !          29790:             "\xe0\x18\xe0\x58\xe0\x28\xe0\x49\xe0\x28\xe0\x39\xe0"
        !          29791:             "\x47\xe0\x38\xe0\x58\xe0\x18\xe0\x77\xe8\xe0\x97\xb8"
        !          29792:             "\xe0\xc8\x79\xe0\xee\x07\xe0\xe0\x4e\x03\xe0\xe0\x9a"
        !          29793:             "\xe0\xe0\x30" }  },
        !          29794:       /* --- pixel bitmap for cmmib600 char#28 \tau --- */
        !          29795:       {  28,95569,                      /* character number, location */
        !          29796:          37, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          29797:           { 48,   38, 3,199, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          29798:             "\xde\x0e\x06\xbe\x0e\x0a\x9e\x0e\x0b\x7e\x0e\x0d\x6e"
        !          29799:             "\x0e\x0e\x5e\x0e\x0e\x01\x4e\x0e\x0e\x01\x4e\x0e\x0e"
        !          29800:             "\x58\xc5\xe0\x95\xe0\x15\xe0\x85\xe0\x16\xe0\x75\xe0"
        !          29801:             "\x26\xe0\x83\xe0\x35\xe0\x80\xf2\xe0\x66\xe0\x80\xf1"
        !          29802:             "\xe0\x57\xe0\x80\xe0\x56\xe0\x90\xf2\xe0\x47\xe0\x90"
        !          29803:             "\xf1\xe0\x38\xe0\x90\xe0\x37\xe0\xa0\xf2\xe0\x28\xe0"
        !          29804:             "\xa0\xf1\xe0\x19\xe0\xa0\xe0\x18\xe0\xb0\xf3\xe9\xe0"
        !          29805:             "\xb0\xf1\xe8\xe0\xc0\xe0\x15\xe0\xe7" }  },
        !          29806:       /* --- pixel bitmap for cmmib600 char#29 \upsilon --- */
        !          29807:       {  29,96530,                      /* character number, location */
        !          29808:          38, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          29809:           { 48,   39, 3,259, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          29810:             "\xb6\xe0\xa4\xbb\xe0\x67\x9e\xe0\x39\x75\x38\xe0\x1b"
        !          29811:             "\x54\x58\xe0\x1b\x44\x69\xeb\x35\x69\xeb\x25\x79\xeb"
        !          29812:             "\x24\x89\xeb\x15\x7a\xe0\x29\x14\x89\xe0\x48\x14\x89"
        !          29813:             "\xe0\x5c\x7a\xe0\x65\x14\x89\xe0\x75\xca\xe0\x75\xc9"
        !          29814:             "\xe0\x85\xc9\xe0\x84\xca\xe0\x84\xc9\xe0\x94\xc9\xe0"
        !          29815:             "\x85\xba\xe0\x84\xc9\xe0\x94\xc9\xe0\x85\xc9\xe0\x84"
        !          29816:             "\xca\xe0\x75\xc9\xe0\x84\xd9\xe0\x75\xd9\xe0\x65\xe9"
        !          29817:             "\xe0\x64\xe0\x19\xe0\x55\xe0\x19\xe0\x45\xe0\x39\xe0"
        !          29818:             "\x25\xe0\x49\xe0\x15\xe0\x69\xd5\xe0\x89\xb5\xe0\xaa"
        !          29819:             "\x76\xe0\xce\x06\xe0\xe0\x2e\x02\xe0\xe0\x8a\xe0\x52" }  },
        !          29820:       /* --- pixel bitmap for cmmib600 char#30 \phi --- */
        !          29821:       {  30,97552,                      /* character number, location */
        !          29822:          58, 4,  -17, 4,      /* topleft row,col, and botleft row,col */
        !          29823:           { 53,   75, 3,463, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          29824:             "\xf2\xe0\xe0\x64\xe0\x10\xf1\xe0\xe0\x55\xe0\x10\xf1"
        !          29825:             "\xe0\xe0\x54\xe0\x20\xf1\xe0\xe0\x45\xe0\x20\xf1\xe0"
        !          29826:             "\xe0\x44\xe0\x30\xf1\xe0\xe0\x35\xe0\x30\xf1\xe0\xe0"
        !          29827:             "\x34\xe0\x40\xf1\xe0\xe0\x25\xe0\x40\xf1\xe0\xe0\x24"
        !          29828:             "\xe0\x50\xe0\xe0\x15\xe0\xe0\xde\x04\xe0\xe0\x4e\x0a"
        !          29829:             "\xe0\xce\x0e\x01\xe0\x8a\x45\x59\xe0\x49\x75\x78\xe0"
        !          29830:             "\x19\x94\x99\xc9\xa4\xa8\xb8\xb5\xb8\x98\xc5\xc8\x78"
        !          29831:             "\xd4\xd8\x69\xd4\xd9\x49\xd5\xd9\x48\xe5\xe8\x39\xe4"
        !          29832:             "\xe0\x18\x29\xe0\x14\xe9\x29\xe5\xe9\x1a\xe5\xe9\xf1"
        !          29833:             "\x19\xe0\x14\xe0\x19\x19\xe5\xee\x06\xe5\xe9\x1f\x19"
        !          29834:             "\xe0\x14\xe0\x19\x1f\x19\xe5\xe9\x2f\x19\xe4\xe9\x39"
        !          29835:             "\xd5\xd9\x58\xd5\xd8\x68\xd4\xd8\x88\xc4\xc8\x98\xb5"
        !          29836:             "\xb8\xb8\xa5\xa8\xd8\x94\x99\xe0\x18\x84\x79\xe0\x49"
        !          29837:             "\x55\x59\xe0\x8e\x0e\x01\xe0\xce\x0b\xe0\xe0\x3e\x04"
        !          29838:             "\xe0\x80\xf1\xe0\x55\xe0\xe0\x10\xf1\xe0\x54\xe0\xe0"
        !          29839:             "\x20\xf1\xe0\x45\xe0\xe0\x20\xf1\xe0\x44\xe0\xe0\x30"
        !          29840:             "\xf1\xe0\x35\xe0\xe0\x30\xf1\xe0\x34\xe0\xe0\x40\xf1"
        !          29841:             "\xe0\x25\xe0\xe0\x40\xf1\xe0\x24\xe0\xe0\x50" }  },
        !          29842:       /* --- pixel bitmap for cmmib600 char#31 \chi --- */
        !          29843:       {  31,98825,                      /* character number, location */
        !          29844:          38, 3,  -17, 3,      /* topleft row,col, and botleft row,col */
        !          29845:           { 53,   55, 3,395, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          29846:             "\x79\xe0\xe0\xee\xe0\xe0\x33\x3e\x04\xe0\xe4\x25\x3d"
        !          29847:             "\xe0\xb5\x24\x5d\xe0\x95\x25\x6c\xe0\x85\x34\x8c\xe0"
        !          29848:             "\x65\x52\xab\xe0\x55\xe0\x4c\xe0\x35\xe0\x6b\xe0\x25"
        !          29849:             "\xe0\x7c\xe5\xe0\x9b\xd5\xe0\xba\xc5\xe0\xcb\xa5\xe0"
        !          29850:             "\xea\x95\xe0\xe0\x1a\x85\xe0\xe0\x2b\x65\xe0\xe0\x4a"
        !          29851:             "\x55\xe0\xe0\x5a\x45\xe0\xe0\x6b\x25\xe0\xe0\x8a\x15"
        !          29852:             "\xe0\xe0\x9e\x01\xe0\xe0\xae\xe0\xe0\xcc\xe0\xe0\xdb"
        !          29853:             "\xe0\x70\xf1\xe0\x7a\xe0\x80\xf2\xe0\x8a\xe0\x70\xe0"
        !          29854:             "\x7b\xe0\xe0\xdd\xe0\xe0\xbe\xe0\xe0\xae\x01\xe0\xe0"
        !          29855:             "\x95\x1b\xe0\xe0\x75\x3a\xe0\xe0\x65\x4a\xe0\xe0\x55"
        !          29856:             "\x5b\xe0\xe0\x35\x7a\xe0\xe0\x25\x8a\xe0\xe0\x15\x9b"
        !          29857:             "\xe0\xd5\xba\xe0\xc5\xcb\xe0\xa5\xdb\xe0\x95\xe0\x1b"
        !          29858:             "\xe0\x75\xe0\x2b\xe0\x65\xe0\x3c\xe0\x45\xe0\x5c\x93"
        !          29859:             "\x45\xe0\x6c\x84\x35\xe0\x8c\x74\x25\xe0\xac\x55\x15"
        !          29860:             "\xe0\xcc\x35\x24\xe0\xee\x04\x42\xe0\xe0\x3e\x01\xe0"
        !          29861:             "\xe0\xd9\x70" }  },
        !          29862:       /* --- pixel bitmap for cmmib600 char#32 \psi --- */
        !          29863:       {  32,100078,                     /* character number, location */
        !          29864:          58, 2,  -17, 2,      /* topleft row,col, and botleft row,col */
        !          29865:           { 58,   75, 3,503, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          29866:             "\xf1\xe0\xe0\xc4\xe0\xe0\xe0\xb5\xe0\xf2\xe0\xe0\xb4"
        !          29867:             "\xe0\x10\xe0\xe0\xa5\xe0\x10\xf2\xe0\xe0\xa4\xe0\x20"
        !          29868:             "\xe0\xe0\x95\xe0\x20\xf2\xe0\xe0\x94\xe0\x30\xe0\xe0"
        !          29869:             "\x85\xe0\x30\xf2\xe0\xe0\x84\xe0\x40\xe0\xe0\x75\xe0"
        !          29870:             "\xe0\xe0\xb4\xe0\xe0\x26\xe0\x44\xc4\xbb\xe0\x24\xa7"
        !          29871:             "\x9e\xd5\x99\x75\x38\xc4\x9b\x54\x58\xc4\x9b\x44\x69"
        !          29872:             "\xb4\x9b\x35\x69\xa5\x9b\x25\x79\xa4\xab\x24\x89\xa4"
        !          29873:             "\xba\x15\x7a\xa4\xc9\x14\x89\xa5\xd8\x14\x89\xa4\xe0"
        !          29874:             "\x1c\x7a\xa4\xe0\x25\x14\x89\xb4\xe0\x25\xca\xa5\xe0"
        !          29875:             "\x25\xc9\xb4\xe0\x35\xc9\xb4\xe0\x34\xca\xb4\xe0\x34"
        !          29876:             "\xc9\xb5\xe0\x34\xc9\xb4\xe0\x35\xba\xb4\xe0\x34\xc9"
        !          29877:             "\xc4\xe0\x25\xc9\xb5\xe0\x24\xd9\xb4\xe0\x25\xca\xb4"
        !          29878:             "\xe0\x24\xd9\xc4\xe0\x15\xd9\xb5\xe5\xe9\xb4\xe5\xe0"
        !          29879:             "\x19\xb4\xd5\xe0\x39\xa4\xc5\xe0\x49\x95\xb5\xe0\x59"
        !          29880:             "\x94\xb5\xe0\x79\x84\xa5\xe0\x99\x74\x86\xe0\xb9\x55"
        !          29881:             "\x66\xe0\xec\x14\x48\xe0\xe0\x3e\x0b\xe0\xe0\x8e\x06"
        !          29882:             "\xe0\xe0\xec\xe0\xa0\xf2\xe0\xb4\xe0\xe0\x10\xe0\xa5"
        !          29883:             "\xe0\xe0\x10\xf2\xe0\xa4\xe0\xe0\x20\xe0\x95\xe0\xe0"
        !          29884:             "\x20\xf2\xe0\x94\xe0\xe0\x30\xe0\x85\xe0\xe0\x30\xf3"
        !          29885:             "\xe0\x84\xe0\xe0\x4e" }  },
        !          29886:       /* --- pixel bitmap for cmmib600 char#33 \omega --- */
        !          29887:       {  33,101439,                     /* character number, location */
        !          29888:          38, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          29889:           { 55,   39, 3,321, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          29890:             "\xb1\xe0\xe0\x84\xc4\xe0\xe0\x57\xa5\xe0\xe0\x49\x10"
        !          29891:             "\xf1\x76\xe0\xe0\x3b\x66\xe0\xe0\x4b\xf1\x56\xe0\xe0"
        !          29892:             "\x5b\x46\xe0\xe0\x7a\x45\xe0\xe0\x99\x36\xe0\xe0\xa8"
        !          29893:             "\x35\xe0\xe0\xc7\x34\xe0\xe0\xd6\x35\xe0\x63\xe0\x55"
        !          29894:             "\x34\xe0\x56\xe0\x45\x34\xe0\x48\xe0\x35\x25\xe0\x48"
        !          29895:             "\xe0\x34\x34\xe0\x58\xe0\x34\x34\xe0\x48\xe0\x44\x34"
        !          29896:             "\xe0\x48\xe0\x35\x2f\x15\xe0\x48\xe0\x34\x35\xe0\x47"
        !          29897:             "\xe0\x35\x35\xe0\x47\xe0\x25\x45\xe0\x46\xe0\x35\x46"
        !          29898:             "\xe0\x36\xe0\x26\x46\xe0\x27\xe0\x16\x57\xe9\xd7\x58"
        !          29899:             "\xbc\xa8\x6a\x6e\x03\x6a\x7e\x0e\x0e\x05\x8e\x0e\x0e"
        !          29900:             "\x04\x9e\x0e\x0e\x03\xbe\x07\x2e\x07\xbe\x06\x3e\x06"
        !          29901:             "\xde\x04\x5e\x03\xe0\x2e\x01\x8e\x01\xe0\x5b\xcb\xe0"
        !          29902:             "\x97\xe0\x27\xe0\x30" }  },
        !          29903:       /* --- pixel bitmap for cmmib600 char#34 \varepsilon --- */
        !          29904:       {  34,102574,                     /* character number, location */
        !          29905:          38, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          29906:           { 37,   39, 3,199, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          29907:             "\xe0\x5a\xe0\x9e\x03\xe0\x3e\x08\xde\x0c\xae\x0e\x7e"
        !          29908:             "\x0e\x02\x6a\xc9\x58\xe0\x37\x56\xe0\x73\x65\xe0\xe0"
        !          29909:             "\xf1\x44\xe0\xe0\x10\x35\xe0\xe0\x44\xe0\xe0\x54\x95"
        !          29910:             "\xe0\x55\x3e\xe0\x2e\x08\xe0\x1c\x55\xe0\x26\xb4\xe0"
        !          29911:             "\x1e\x08\xee\x08\xe5\x3d\xe0\x15\xe0\xe0\x44\xe0\xe0"
        !          29912:             "\x45\xe0\xe0\x4f\x34\xe0\xe0\x54\xe0\xc3\x45\xe0\xa4"
        !          29913:             "\x46\xe0\x84\x68\xe0\x27\x6e\x0e\x02\x8e\x0e\xae\x0b"
        !          29914:             "\xee\x08\xe0\x3e\x03\xe0\x9b\xe0\x20" }  },
        !          29915:       /* --- pixel bitmap for cmmib600 char#35 \vartheta --- */
        !          29916:       {  35,103651,                     /* character number, location */
        !          29917:          59, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          29918:           { 52,   60, 3,427, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          29919:             "\xe0\xe0\x67\xe0\xe0\xec\xe0\xe0\xae\x02\xe0\xe0\x76"
        !          29920:             "\x57\xe0\xe0\x55\x87\xe0\xe0\x35\x97\xe0\xe0\x25\xb7"
        !          29921:             "\xe0\xe5\xc7\xe0\xe4\xd8\xe0\xc5\xe7\xe0\xc4\xe0\x17"
        !          29922:             "\x30\xf1\xe0\x94\xe0\x18\x20\xe0\x85\xe9\x20\xf1\xe0"
        !          29923:             "\x84\xe0\x19\x20\xe0\x85\xe9\x20\xf1\xe0\x94\xe9\x20"
        !          29924:             "\xe0\x95\xd9\xe0\xc4\xca\xa6\xa5\xba\x8b\x85\xaa\x7d"
        !          29925:             "\x86\x8a\x65\x38\x76\x6b\x64\x48\x97\x3a\x64\x59\x98"
        !          29926:             "\x1a\x55\x59\xbe\x03\x54\x69\xee\x54\x69\xe0\x3d\x24"
        !          29927:             "\x79\xe0\x3e\x14\x79\xe0\x3d\x24\x6a\xe0\x2b\x45\x6a"
        !          29928:             "\xe0\x2a\x54\x79\xe0\x3a\xe0\x29\xe0\x3a\xe0\x1a\xe0"
        !          29929:             "\x2b\xe0\x1a\xe0\x2a\xe0\x29\xe0\x3a\xe0\x29\xe0\x39"
        !          29930:             "\x70\xf1\x9a\xe0\x2a\x70\x99\xe0\x39\xe0\x39\xe0\x2a"
        !          29931:             "\xe0\x39\xe0\x29\xe0\x3a\xe0\x1a\xe0\x39\xe0\x29\xe0"
        !          29932:             "\x49\xe0\x28\xe0\x59\xe0\x19\xe0\x59\xe0\x18\xe0\x69"
        !          29933:             "\xe8\xe0\x79\xd8\xe0\x89\xd7\xe0\x99\xc7\xe0\xb8\xb7"
        !          29934:             "\xe0\xc9\x97\xe0\xea\x58\xe0\xe0\x2e\x06\xe0\xe0\x6e"
        !          29935:             "\x02\xe0\xe0\xba\xe0\xc2" }  },
        !          29936:       /* --- pixel bitmap for cmmib600 char#36 \varpi --- */
        !          29937:       {  36,105088,                     /* character number, location */
        !          29938:          37, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          29939:           { 77,   38, 2,189, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          29940:             "\x0d\x3f\x0b\x43\x09\x44\x07\x46\x06\x47\x05\x48\x04"
        !          29941:             "\x48\x04\x47\x05\x08\x07\x05\x2c\x04\x09\x05\x09\x05"
        !          29942:             "\x2d\x04\x08\x05\x0a\x04\x2e\x04\x07\x05\x0a\x05\x2e"
        !          29943:             "\x05\x07\x03\x0a\x05\x30\x04\x14\x04\x16\x04\x16\x05"
        !          29944:             "\x13\x05\x15\x05\x16\x04\x14\x04\x16\x05\x16\x04\x13"
        !          29945:             "\x05\x16\x04\x17\x04\x13\x04\x16\x05\x17\x04\x13\x04"
        !          29946:             "\x16\x05\x16\x05\x12\x05\x15\x06\x16\x04\x13\x04\x16"
        !          29947:             "\x06\x16\x04\x13\x04\x15\x07\x15\x05\x13\x04\x14\x08"
        !          29948:             "\x14\x05\x13\x05\x13\x09\x14\x05\x13\x05\x12\x0b\x12"
        !          29949:             "\x05\x14\x05\x11\x0c\x11\x06\x14\x05\x10\x07\x01\x06"
        !          29950:             "\x0f\x06\x15\x06\x0e\x08\x01\x06\x0d\x08\x15\x07\x0b"
        !          29951:             "\x09\x02\x07\x0b\x08\x16\x08\x07\x0b\x03\x09\x06\x0a"
        !          29952:             "\x18\x18\x04\x18\x19\x17\x06\x16\x1a\x16\x07\x15\x1c"
        !          29953:             "\x14\x09\x13\x1d\x12\x0b\x12\x1f\x0f\x0e\x0f\x23\x0b"
        !          29954:             "\x12\x0b\x27\x07\x16\x07\x18" }  },
        !          29955:       /* --- pixel bitmap for cmmib600 char#37 \varrho --- */
        !          29956:       {  37,106136,                     /* character number, location */
        !          29957:          38, 7,  -16, 7,      /* topleft row,col, and botleft row,col */
        !          29958:           { 42,   54, 3,301, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          29959:             "\xe0\x99\xe0\xe0\x2e\x01\xe0\xae\x06\xe0\x78\x68\xe0"
        !          29960:             "\x48\x98\xe0\x28\xb8\xe8\xd8\xc8\xe8\xb8\xe0\x19\x98"
        !          29961:             "\xe0\x29\x89\xe0\x29\x88\xe0\x39\x79\xe0\x39\x78\xe0"
        !          29962:             "\x49\x69\xe0\x49\x69\xe0\x3a\x5a\xe0\x3a\xf1\x59\xe0"
        !          29963:             "\x4a\x59\xe0\x3b\x4a\xe0\x3a\x10\xf1\x49\xe0\x4a\x10"
        !          29964:             "\x49\xe0\x3b\x4a\xe0\x3a\x59\xe0\x4a\x20\xf1\x39\xe0"
        !          29965:             "\x3a\x30\x2a\xe0\x39\x6a\xe0\x29\x50\xf1\x2a\xe0\x19"
        !          29966:             "\x60\x1c\xd9\x8c\xc8\xa4\x27\xa8\xb4\x38\x68\xd4\x4e"
        !          29967:             "\x06\xe4\x6e\x01\xe0\x25\x99\xe0\x5f\x25\xe0\xe0\x96"
        !          29968:             "\xe0\xe0\x88\xe0\xe0\x6e\x0d\xe0\x1e\x0e\x02\xce\x0e"
        !          29969:             "\x03\xb0\xf1\x1e\x0e\x03\xa0\x2e\x0e\x02\xee\x0e\xe0"
        !          29970:             "\x3e\x02\x36\xa0\xf1\xe0\xd4\xb0" }  },
        !          29971:       /* --- pixel bitmap for cmmib600 char#38 \varsigma --- */
        !          29972:       {  38,107095,                     /* character number, location */
        !          29973:          38, 3,   -9, 3,      /* topleft row,col, and botleft row,col */
        !          29974:           { 36,   47, 2,109, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          29975:             "\x14\x0b\x15\x12\x10\x16\x0c\x08\x08\x08\x0a\x07\x0e"
        !          29976:             "\x04\x09\x06\x12\x02\x09\x06\x1d\x05\x1e\x05\x1e\x06"
        !          29977:             "\x1d\x06\x1b\x00\xff\x01\x02\x06\x1c\x00\xff\x02\x01"
        !          29978:             "\x06\x1d\xff\x02\x07\x1d\x08\x1c\x09\x1b\x0a\x1a\x0b"
        !          29979:             "\x19\x0d\x18\x0e\x16\x10\x15\x11\x13\x13\x12\x14\x11"
        !          29980:             "\x15\x11\x15\x10\x15\x11\x14\x12\x12\x14\x10\x16\x0f"
        !          29981:             "\x17\x0d\x19\x0b\x1b\x08\x07\x00\xff\x01\x16\x07\x07"
        !          29982:             "\x00\xff\x01\x16\x06\x08\x00\x0e\x02\x05\x06\x16\x0d"
        !          29983:             "\x17\x0b\x1c\x06\x0e" }  },
        !          29984:       /* --- pixel bitmap for cmmib600 char#39 \varphi --- */
        !          29985:       {  39,108128,                     /* character number, location */
        !          29986:          38, 4,  -17, 4,      /* topleft row,col, and botleft row,col */
        !          29987:           { 54,   55, 3,407, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          29988:             "\xe0\xe0\xb7\xe0\x34\xe0\xab\xe5\xe0\x8e\x01\xb5\xe0"
        !          29989:             "\x7e\x04\x95\xe0\x7e\x05\x94\xe0\x7e\x07\x75\xe0\x6e"
        !          29990:             "\x08\x74\xe0\x6e\x0a\x55\xe0\x69\x69\x54\xe0\x67\xb7"
        !          29991:             "\x45\xe0\x57\xd6\x44\xe0\x65\xe0\x26\x25\xe0\x55\xe0"
        !          29992:             "\x36\x24\xe0\x64\xe0\x55\x24\xe0\x55\xe0\x55\x24\xe0"
        !          29993:             "\x54\xe0\x64\x25\xe0\x44\xe0\x74\x24\xe0\x54\xe0\x74"
        !          29994:             "\x24\xe0\x44\xe0\x84\x24\xe0\x44\xe0\x75\x15\xe0\x34"
        !          29995:             "\xe0\x84\x25\xe0\x34\xe0\x75\x25\xe0\x33\xe0\x85\x25"
        !          29996:             "\xe0\x24\xe0\x75\x35\xe0\x24\xe0\x66\x45\xe5\xe0\x56"
        !          29997:             "\x56\xd5\xe0\x46\x67\xc4\xe0\x38\x78\x95\xe0\x19\x8b"
        !          29998:             "\x65\xcb\xae\x01\x15\x8e\xce\x0e\x0d\xee\x0e\x0a\xe0"
        !          29999:             "\x3e\x0e\x08\xe0\x5e\x0e\x05\xe0\x9e\x0e\x01\xe0\xde"
        !          30000:             "\x0b\xe0\xe0\x4e\x06\xe0\xe0\x8e\xe0\xe0\xc7\xe0\xe0"
        !          30001:             "\x30\xf2\xe0\x17\xe0\xe0\x40\xf1\xe8\xe0\xe0\x40\xf1"
        !          30002:             "\xd9\xe0\xe0\x40\xd8\xe0\xe0\x50\xf3\xc9\xe0\xe0\x50"
        !          30003:             "\xf1\xc8\xe0\xe0\x60\xd5\xe0\xe0\x81" }  },
        !          30004:       /* --- pixel bitmap for cmmib600 char#40 \bfleftharpoonup --- */
        !          30005:       {  40,125980,                     /* character number, location */
        !          30006:          43, 5,   18, 5,      /* topleft row,col, and botleft row,col */
        !          30007:           { 85,   25, 2,57, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          30008:             "\x15\x03\x51\x05\x3c\x00\xff\x01\x13\x06\x3c\x00\xff"
        !          30009:             "\x01\x12\x06\x3d\x00\x11\x06\x4f\x05\x4f\x06\x4e\x06"
        !          30010:             "\x4e\x07\x4e\x06\x4e\x06\x4e\x06\x4e\x06\x4d\x07\x4d"
        !          30011:             "\x08\x4c\x08\x4b\x08\x4c\x08\x4b\x52\x02\x54\x00\xff"
        !          30012:             "\x01\x55\x00\x54\x01" }  },
        !          30013:       /* --- pixel bitmap for cmmib600 char#41 \bfleftharpoondown --- */
        !          30014:       {  41,127049,                     /* character number, location */
        !          30015:          23, 5,   -2, 5,      /* topleft row,col, and botleft row,col */
        !          30016:           { 85,   25, 2,57, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          30017:             "\x00\x54\x01\xff\x01\x55\x01\x54\x02\x52\x05\x08\x4e"
        !          30018:             "\x08\x4f\x08\x4e\x08\x4e\x07\x50\x06\x50\x06\x50\x06"
        !          30019:             "\x50\x06\x4f\x07\x4f\x06\x50\x06\x50\x05\x50\x06\x3e"
        !          30020:             "\x00\xff\x01\x12\x06\x3d\x00\xff\x01\x13\x06\x3c\x00"
        !          30021:             "\x14\x05\x51\x03\x3d" }  },
        !          30022:       /* --- pixel bitmap for cmmib600 char#42 \bfrightharpoonup --- */
        !          30023:       {  42,128116,                     /* character number, location */
        !          30024:          43, 5,   18, 5,      /* topleft row,col, and botleft row,col */
        !          30025:           { 85,   25, 2,54, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          30026:             "\x3d\x03\x51\x05\x14\x00\xff\x01\x3c\x06\x13\x00\xff"
        !          30027:             "\x01\x3d\x06\x12\x00\x3e\x06\x50\x05\x50\x06\x50\x06"
        !          30028:             "\x4f\x07\x4f\x06\x50\x06\x50\x06\x50\x06\x50\x07\x4e"
        !          30029:             "\x08\x4e\x08\x4f\x08\x4e\x08\x05\x52\x02\xff\x02\x55"
        !          30030:             "\x01\x54" }  },
        !          30031:       /* --- pixel bitmap for cmmib600 char#43 \bfrightharpoondown --- */
        !          30032:       {  43,129186,                     /* character number, location */
        !          30033:          23, 5,   -2, 5,      /* topleft row,col, and botleft row,col */
        !          30034:           { 85,   25, 2,55, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          30035:             "\x01\x54\x00\xff\x02\x55\x01\x52\x4b\x08\x4c\x08\x4b"
        !          30036:             "\x08\x4c\x08\x4d\x07\x4d\x06\x4e\x06\x4e\x06\x4e\x06"
        !          30037:             "\x4e\x07\x4e\x06\x4e\x06\x4f\x05\x4f\x06\x11\x00\xff"
        !          30038:             "\x01\x3d\x06\x12\x00\xff\x01\x3c\x06\x13\x00\x3c\x05"
        !          30039:             "\x51\x03\x15" }  },
        !          30040:       /* --- pixel bitmap for cmmib600 char#44 ` --- */
        !          30041:       {  44,129648,                     /* character number, location */
        !          30042:          43, 5,   18, 5,      /* topleft row,col, and botleft row,col */
        !          30043:           { 17,   25, 3,45, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          30044:             "\xa6\x8a\x5c\x4d\x3d\x39\x86\xa6\xb5\xb6\xbf\x45\xc6"
        !          30045:             "\xc5\xc6\xc6\xb9\x9d\x5d\x5c\x7a\xa6\x10" }  },
        !          30046:       /* --- pixel bitmap for cmmib600 char#45 ' --- */
        !          30047:       {  45,130106,                     /* character number, location */
        !          30048:          43, 5,   18, 5,      /* topleft row,col, and botleft row,col */
        !          30049:           { 17,   25, 3,45, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          30050:             "\x16\xaa\x7c\x5d\x5d\x99\xb6\xc6\xc5\xc6\xf4\xc5\xb6"
        !          30051:             "\xb5\xb6\xa6\x89\x3d\x3d\x4c\x5a\x86\xa0" }  },
        !          30052:       /* --- pixel bitmap for cmmib600 char#46 \triangleright --- */
        !          30053:       {  46,130681,                     /* character number, location */
        !          30054:          45, 2,   -4, 2,      /* topleft row,col, and botleft row,col */
        !          30055:           { 44,   49, 3,299, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          30056:             "\x13\xe0\xe0\xc6\xe0\xe0\xa8\xe0\xe0\x89\xe0\xe0\x7b"
        !          30057:             "\xe0\xe0\x5d\xe0\xe0\x3e\x01\xe0\xe0\x15\x1a\xe0\xe5"
        !          30058:             "\x3a\xe0\xc5\x5a\xe0\xa5\x7a\xe0\x85\x8a\xe0\x75\xaa"
        !          30059:             "\xe0\x55\xca\xe0\x35\xea\xe0\x15\xe0\x1b\xd5\xe0\x3a"
        !          30060:             "\xc5\xe0\x5a\xa5\xe0\x7a\x85\xe0\x9a\x65\xe0\xaa\x55"
        !          30061:             "\xe0\xca\x35\xe0\xea\x15\xe0\xe0\x2e\xe0\xe0\x3d\xe0"
        !          30062:             "\xe0\x2e\xe0\xea\x15\xe0\xca\x35\xe0\xaa\x55\xe0\x9a"
        !          30063:             "\x65\xe0\x7a\x85\xe0\x5a\xa5\xe0\x3a\xc5\xe0\x2a\xd5"
        !          30064:             "\xea\xe0\x15\xca\xe0\x35\xaa\xe0\x55\x8a\xe0\x75\x7a"
        !          30065:             "\xe0\x85\x5a\xe0\xa5\x3a\xe0\xc5\x1a\xe0\xee\x01\xe0"
        !          30066:             "\xe0\x1d\xe0\xe0\x3b\xe0\xe0\x59\xe0\xe0\x78\xe0\xe0"
        !          30067:             "\x86\xe0\xe0\xb3\xe0\xe0\xc0" }  },
        !          30068:       /* --- pixel bitmap for cmmib600 char#47 \triangleleft --- */
        !          30069:       {  47,131373,                     /* character number, location */
        !          30070:          45, 2,   -4, 2,      /* topleft row,col, and botleft row,col */
        !          30071:           { 44,   49, 3,299, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          30072:             "\xe0\xe0\xc3\xe0\xe0\xb6\xe0\xe0\x88\xe0\xe0\x79\xe0"
        !          30073:             "\xe0\x5b\xe0\xe0\x3d\xe0\xe0\x1e\x01\xe0\xea\x15\xe0"
        !          30074:             "\xca\x35\xe0\xaa\x55\xe0\x8a\x75\xe0\x7a\x85\xe0\x5a"
        !          30075:             "\xa5\xe0\x3a\xc5\xe0\x1a\xe5\xda\xe0\x25\xca\xe0\x35"
        !          30076:             "\xaa\xe0\x55\x8a\xe0\x75\x6a\xe0\x95\x5a\xe0\xa5\x3a"
        !          30077:             "\xe0\xc5\x1a\xe0\xee\xe0\xe0\x2d\xe0\xe0\x3e\xe0\xe0"
        !          30078:             "\x25\x1a\xe0\xe5\x3a\xe0\xc5\x5a\xe0\xa5\x6a\xe0\x95"
        !          30079:             "\x8a\xe0\x75\xaa\xe0\x55\xca\xe0\x35\xda\xe0\x25\xe0"
        !          30080:             "\x1a\xe5\xe0\x3a\xc5\xe0\x5a\xa5\xe0\x6b\x85\xe0\x8a"
        !          30081:             "\x75\xe0\xaa\x55\xe0\xca\x35\xe0\xea\x15\xe0\xe0\x1e"
        !          30082:             "\x01\xe0\xe0\x3d\xe0\xe0\x5b\xe0\xe0\x79\xe0\xe0\x88"
        !          30083:             "\xe0\xe0\xa6\xe0\xe0\xc3\x10" }  },
        !          30084:       /* --- pixel bitmap for cmmib600 char#48 \0 --- */
        !          30085:       {  48,115433,                     /* character number, location */
        !          30086:          38, 4,   -1, 4,      /* topleft row,col, and botleft row,col */
        !          30087:           { 40,   39, 3,129, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          30088:             "\xec\xe0\xae\x06\xe0\x4e\x0a\xea\x8a\xb9\xc9\x98\xe0"
        !          30089:             "\x28\x79\xe0\x29\x68\xe0\x48\x59\xe0\x49\x48\xe0\x68"
        !          30090:             "\x20\xf3\x19\xe0\x69\x1f\xba\xe0\x6a\xf2\x19\xe0\x69"
        !          30091:             "\x10\xf1\x29\xe0\x49\x20\x38\xe0\x48\x69\xe0\x29\x79"
        !          30092:             "\xe9\x99\xc9\xba\x8a\xee\x0a\xe0\x4e\x06\xe0\xac\xe0" }  },
        !          30093:       /* --- pixel bitmap for cmmib600 char#49 \1 --- */
        !          30094:       {  49,116304,                     /* character number, location */
        !          30095:          38, 7,    0, 7,      /* topleft row,col, and botleft row,col */
        !          30096:           { 34,   38, 3,58, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          30097:             "\xe0\x53\xe0\xe0\x15\xe0\xb9\xe0\x5e\x01\xcf\x2e\x08"
        !          30098:             "\xc8\x4a\xc0\xfe\xca\xc0\xfa\xca\xc0\x2e\x0e\x04\xf2"
        !          30099:             "\x1e\x0e\x05" }  },
        !          30100:       /* --- pixel bitmap for cmmib600 char#50 \2 --- */
        !          30101:       {  50,117328,                     /* character number, location */
        !          30102:          38, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          30103:           { 39,   38, 3,197, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          30104:             "\xbe\x01\xe0\x6e\x09\xee\x0e\x9e\x0e\x04\x68\xae\x02"
        !          30105:             "\x57\xe0\x1d\x39\xe0\x1d\x29\xe0\x2c\x29\xe0\x3c\xf1"
        !          30106:             "\x19\xe0\x4b\x27\xe0\x5b\x35\xe0\x6b\xf1\xe0\xeb\xe0"
        !          30107:             "\xdb\xe0\xdc\xe0\xdb\xe0\xda\xe0\xea\xe0\xda\xe0\xe9"
        !          30108:             "\xe0\xe8\xe0\xe0\x27\xa4\xe0\x27\xc4\xe0\x16\xe4\xd6"
        !          30109:             "\xe0\x15\xb6\xe0\x34\xbe\x0e\x9e\x0e\x02\x7e\x0e\x04"
        !          30110:             "\x6e\x0e\x04\x5e\x0e\x06\x4e\x0e\x07\x2e\x0e\x09\x2f"
        !          30111:             "\x1e\x0e\x08\x30\x1e\x0e\x07\x30" }  },
        !          30112:       /* --- pixel bitmap for cmmib600 char#51 \3 --- */
        !          30113:       {  51,118427,                     /* character number, location */
        !          30114:          38, 4,  -17, 4,      /* topleft row,col, and botleft row,col */
        !          30115:           { 40,   55, 3,273, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          30116:             "\xeb\xe0\xce\x04\xe0\x6e\x08\xe0\x37\x7b\xd6\xca\xb6"
        !          30117:             "\xea\xa5\xe0\x1b\x88\xea\x8a\xcb\x30\xf1\x3b\xcb\x30"
        !          30118:             "\xf1\x3c\xbb\x30\xf1\x3b\xcb\x30\x4a\xca\x98\xcb\xb4"
        !          30119:             "\xeb\xe0\xe0\x1a\xe0\xe0\x1a\xe0\xe0\x1a\xe0\xe0\x1a"
        !          30120:             "\xe0\xe0\x1a\xe0\xea\xe0\x9e\x01\xe0\xbd\xe0\xde\x03"
        !          30121:             "\xe0\xe0\x5a\xe0\xe0\x4a\xe0\xe0\x3a\xe0\xe0\x3a\xe0"
        !          30122:             "\xe0\x3a\xe0\xe0\x2b\xe0\xe0\x1c\xe0\xe0\x1b\xe0\xe0"
        !          30123:             "\x1c\x37\xe0\x4c\x29\xe0\x3c\x1b\xe0\x2c\x0f\x3d\xe0"
        !          30124:             "\x1c\x0d\xe0\x1b\x1d\xec\x1c\xe0\x1c\x2b\xe0\x1b\x39"
        !          30125:             "\xe0\x2b\x56\xe0\x3c\x67\xec\x89\x9c\xbe\x0e\xee\x0a"
        !          30126:             "\xe0\x5e\x05\xe0\xac\xe0\x16" }  },
        !          30127:       /* --- pixel bitmap for cmmib600 char#52 \4 --- */
        !          30128:       {  52,119480,                     /* character number, location */
        !          30129:          39, 3,  -16, 3,      /* topleft row,col, and botleft row,col */
        !          30130:           { 42,   55, 3,230, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          30131:             "\xe0\xe0\x15\xe0\xe0\x86\x80\xf1\xe0\xd7\x80\xe0\xc8"
        !          30132:             "\xe0\xe0\x59\xe0\xe0\x4a\xe0\xe0\x3b\x80\xf1\xe0\x8c"
        !          30133:             "\x80\xe0\x7d\xe0\xe4\x19\xe0\xd4\x29\xe0\xc5\x29\xe0"
        !          30134:             "\xb5\x39\xe0\xa5\x49\xe0\xa4\x59\xe0\x94\x69\xe0\x84"
        !          30135:             "\x79\xe0\x75\x79\xe0\x65\x89\xe0\x55\x99\xe0\x54\xa9"
        !          30136:             "\xe0\x44\xb9\xe0\x34\xc9\xe0\x24\xd9\xe0\x15\xd9\xe5"
        !          30137:             "\xe9\xd5\xe0\x19\xd4\xe0\x29\xc4\xe0\x39\xb4\xe0\x49"
        !          30138:             "\xa5\xe0\x49\x95\xe0\x59\x85\xe0\x69\x8f\x2e\x0e\x0e"
        !          30139:             "\x1e\x0e\x0d\xfb\xe0\xaa\x80\xf3\xe0\x1e\x0d" }  },
        !          30140:       /* --- pixel bitmap for cmmib600 char#53 \5 --- */
        !          30141:       {  53,120633,                     /* character number, location */
        !          30142:          38, 5,  -17, 5,      /* topleft row,col, and botleft row,col */
        !          30143:           { 38,   55, 3,249, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          30144:             "\x42\xe0\xc2\x85\xe0\x65\x89\xc9\x8e\x0e\x01\x50\xf1"
        !          30145:             "\x4e\x0e\x60\x4e\x0d\xbe\x0b\xde\x0a\xee\x08\xe0\x2e"
        !          30146:             "\x06\xe0\x4e\x04\xe0\x64\x46\xe0\x60\xf6\x44\xe0\xe0"
        !          30147:             "\x20\x44\x6a\xe0\x44\x3e\x02\xe0\x14\x1e\x07\xcb\x79"
        !          30148:             "\xb8\xba\x96\xea\x85\xe0\x2a\x74\xe0\x3a\x82\xe0\x4b"
        !          30149:             "\xe0\xea\x20\xf2\xe0\xcb\x10\xf1\xe0\xcc\x43\xe0\x5c"
        !          30150:             "\x27\xe0\x3c\x19\xe0\x2c\x0f\x3b\xe0\x1c\x0b\xe0\x1b"
        !          30151:             "\x1a\xe0\x2b\x1a\xe0\x1c\x27\xe0\x3b\x35\xe0\x5a\x55"
        !          30152:             "\xe0\x3b\x56\xe0\x1b\x77\xcb\x98\x8c\xce\x0a\xe0\x1e"
        !          30153:             "\x07\xe0\x5e\x03\xe0\xaa\xe0\x29" }  },
        !          30154:       /* --- pixel bitmap for cmmib600 char#54 \6 --- */
        !          30155:       {  54,121652,                     /* character number, location */
        !          30156:          54, 4,   -1, 4,      /* topleft row,col, and botleft row,col */
        !          30157:           { 40,   55, 3,245, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          30158:             "\xe0\x6a\xe0\xce\x03\xe0\x7e\x06\xe0\x49\x87\xe9\xc6"
        !          30159:             "\xc8\xe6\xb8\xd9\x98\xda\x88\xea\x79\xea\x20\xf1\x49"
        !          30160:             "\xe0\x1a\x20\x39\xe0\x2a\x59\xe0\x38\x5a\xe0\x54\x50"
        !          30161:             "\xf1\x2a\xe0\xe0\xf2\x1a\xe0\xe0\x10\x1a\x6b\xcb\x4e"
        !          30162:             "\x02\x9b\x36\x1c\x7b\x24\x89\x6b\x13\xb9\x5b\x13\xc9"
        !          30163:             "\x4e\xe9\x3d\xe0\x1a\x2d\xe0\x29\x2f\x2c\xe0\x3a\x1f"
        !          30164:             "\x3b\xe0\x4b\xf4\x1a\xe0\x4b\x29\xe0\x4b\xf1\x2a\xe0"
        !          30165:             "\x3a\x10\x39\xe0\x3a\x49\xe0\x2a\x69\xe0\x1a\x78\xe0"
        !          30166:             "\x19\x89\xd9\xa9\xb9\xca\x7a\xe0\x1e\x0a\xe0\x3e\x07"
        !          30167:             "\xe0\x7e\x03\xe0\xcb\xea" }  },
        !          30168:       /* --- pixel bitmap for cmmib600 char#55 \7 --- */
        !          30169:       {  55,122709,                     /* character number, location */
        !          30170:          40, 5,  -17, 5,      /* topleft row,col, and botleft row,col */
        !          30171:           { 42,   57, 3,249, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          30172:             "\x43\xe0\xe0\xb4\xe0\xe0\x98\xe0\xe0\x30\xf3\x3e\x0e"
        !          30173:             "\x0b\x2e\x0e\x0b\x3e\x0e\x0a\x4e\x0e\x09\x5e\x0e\x08"
        !          30174:             "\x6e\x0e\x07\x6e\x0e\x07\x75\xe0\xb4\x84\xe0\xb5\x84"
        !          30175:             "\xe0\xa5\x94\xe0\x95\x95\xe0\x85\xa4\xe0\x85\xb4\xe0"
        !          30176:             "\x75\xc4\xe0\x65\xd0\xf1\xe0\x95\xe0\xe0\x85\xe0\xe0"
        !          30177:             "\x85\xe0\xe0\x86\xe0\xe0\x85\xe0\xe0\x86\xe0\x30\xf1"
        !          30178:             "\xe0\x46\xe0\x40\xf1\xe0\x36\xe0\x50\xe0\x27\xe0\xe0"
        !          30179:             "\x68\xe0\x50\xf1\xe0\x17\xe0\x60\xf1\xe8\xe0\x60\xf1"
        !          30180:             "\xd9\xe0\x60\xd8\xe0\x70\xf4\xc9\xe0\x70\xf7\xba\xe0"
        !          30181:             "\x70\xf1\xc8\xe0\x80\xe4\xe0\xa9" }  },
        !          30182:       /* --- pixel bitmap for cmmib600 char#56 \8 --- */
        !          30183:       {  56,123724,                     /* character number, location */
        !          30184:          54, 4,   -1, 4,      /* topleft row,col, and botleft row,col */
        !          30185:           { 40,   55, 3,311, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          30186:             "\xe0\x1b\xe0\xce\x03\xe0\x7e\x07\xe0\x37\x99\xe5\xe0"
        !          30187:             "\x17\xc5\xe0\x37\xa5\xe0\x57\x94\xe0\x76\x85\xe0\x77"
        !          30188:             "\x75\xe0\x86\x66\xe0\x86\x30\xf1\x37\xe0\x76\x30\x38"
        !          30189:             "\xe0\x66\x6a\xe0\x46\x6b\xe0\x27\x6d\xe6\x7e\x01\xb7"
        !          30190:             "\x7e\x03\x96\x9e\x04\x66\xae\x05\x46\xce\x0d\xde\x0b"
        !          30191:             "\xe0\x2e\x09\xe0\x4e\x0a\xe0\x3e\x0a\xe0\x4e\x0a\xe0"
        !          30192:             "\x2e\x0b\xde\x0e\xa8\x1e\x08\x87\x5e\x07\x67\x8e\x05"
        !          30193:             "\x57\xbe\x04\x37\xde\x03\x28\xe0\x1e\x02\x17\xe0\x4e"
        !          30194:             "\x17\xe0\x6e\x05\xe0\x8e\x04\xe0\xa9\x0f\x17\xe0\xb8"
        !          30195:             "\x0f\x17\xe0\xc7\x07\xe0\xc6\x18\xe0\xb6\x27\xe0\xa7"
        !          30196:             "\x28\xe0\x96\x48\xe0\x76\x59\xe0\x57\x69\xe0\x37\x8b"
        !          30197:             "\xb9\xbe\x0d\xe0\x1e\x09\xe0\x5e\x05\xe0\xbb\xe0\x19" }  },
        !          30198:       /* --- pixel bitmap for cmmib600 char#57 \9 --- */
        !          30199:       {  57,124765,                     /* character number, location */
        !          30200:          38, 4,  -17, 4,      /* topleft row,col, and botleft row,col */
        !          30201:           { 40,   55, 3,247, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          30202:             "\xeb\xe0\xce\x03\xe0\x7e\x07\xe0\x39\x79\xe9\xa8\xc9"
        !          30203:             "\xc8\xa9\xe8\x89\xe0\x19\x6a\xe0\x28\x6a\xe0\x29\x4a"
        !          30204:             "\xe0\x39\x4a\xe0\x3a\x3a\xe0\x49\x2b\xe0\x49\x2f\x3b"
        !          30205:             "\xe0\x4a\x1f\x3b\xe0\x4b\x0b\xe0\x3c\xf2\x1a\xe0\x3c"
        !          30206:             "\xf1\x2a\xe0\x1d\x39\xee\x49\xc3\x1b\x59\xb3\x1b\x69"
        !          30207:             "\x84\x2b\x7c\x16\x3b\x9e\x02\x4b\xcb\x6a\x10\xf2\xe0"
        !          30208:             "\xe0\x1a\x10\xf1\xe0\xea\x20\x54\xe0\x5a\x58\xe0\x39"
        !          30209:             "\x5a\xe0\x29\x30\xf1\x2a\xe0\x19\x40\x2a\xe9\x7a\xd9"
        !          30210:             "\x8a\xd8\x99\xca\xa6\xd9\xd7\x9a\xee\x0b\xe0\x3e\x07"
        !          30211:             "\xe0\x7e\x02\xe0\xda\xe0\x56" }  },
        !          30212:       /* --- pixel bitmap for cmmib600 char#58 . --- */
        !          30213:       {  58,131994,                     /* character number, location */
        !          30214:          13, 7,    0, 7,      /* topleft row,col, and botleft row,col */
        !          30215:           { 13,   13, 3,25, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          30216:             "\x45\x69\x20\xf1\x1b\x1f\x4d\xf1\x1b\x10\x29\x65\x40" }  },
        !          30217:       /* --- pixel bitmap for cmmib600 char#59 , --- */
        !          30218:       {  59,132575,                     /* character number, location */
        !          30219:          13, 7,  -16, 7,      /* topleft row,col, and botleft row,col */
        !          30220:           { 14,   29, 3,65, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          30221:             "\x45\x79\x30\xf1\x1b\x2f\x1d\x1f\x2e\xf1\x1d\x2c\x45"
        !          30222:             "\x23\xb3\xa4\xf2\xa3\x10\x94\xa3\xa4\x20\xf1\x74\x30"
        !          30223:             "\x64\x94\x94\x94\x94\xb2\x9a" }  },
        !          30224:       /* --- pixel bitmap for cmmib600 char#60 < --- */
        !          30225:       {  60,133281,                     /* character number, location */
        !          30226:          49, 8,   -8, 8,      /* topleft row,col, and botleft row,col */
        !          30227:           { 58,   57, 2,115, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          30228:             "\x36\x03\x35\x06\x32\x08\x30\x0a\x2e\x0b\x2d\x0b\x2d"
        !          30229:             "\x0b\x2d\x0b\x2d\x0b\x2d\x0b\x2d\x0b\x2d\x0b\x2d\x0b"
        !          30230:             "\x2c\x0c\x2c\x0c\x2c\x0c\x2c\x0c\x2c\x0c\x2c\x0b\x2d"
        !          30231:             "\x0b\x2d\x0b\x2d\x0b\x2d\x0b\x2d\x0b\x2d\x0b\x2d\x0b"
        !          30232:             "\x2d\x0b\x2e\x0a\x30\x08\x32\x0a\x31\x0b\x31\x0b\x31"
        !          30233:             "\x0b\x31\x0b\x31\x0b\x31\x0b\x31\x0b\x31\x0b\x31\x0b"
        !          30234:             "\x31\x0c\x30\x0c\x30\x0c\x30\x0c\x30\x0c\x31\x0b\x31"
        !          30235:             "\x0b\x31\x0b\x31\x0b\x31\x0b\x31\x0b\x31\x0b\x31\x0b"
        !          30236:             "\x31\x0b\x31\x0a\x32\x08\x34\x06\x36\x03\x01" }  },
        !          30237:       /* --- pixel bitmap for cmmib600 char#61 / --- */
        !          30238:       {  61,133897,                     /* character number, location */
        !          30239:          62, 5,  -21, 5,      /* topleft row,col, and botleft row,col */
        !          30240:           { 38,   83, 2,215, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          30241:             "\x22\x03\x01\x00\xff\x01\x21\x05\x20\x06\xff\x01\x20"
        !          30242:             "\x05\x01\x00\x1f\x06\x20\x05\x20\x06\x20\x05\x20\x06"
        !          30243:             "\x03\x00\xff\x01\x1d\x05\x04\x00\x1c\x06\x20\x05\x20"
        !          30244:             "\x06\x20\x05\x20\x06\x06\x00\xff\x01\x1a\x05\x07\x00"
        !          30245:             "\x19\x06\x20\x05\x20\x06\x20\x05\x20\x06\x09\x00\xff"
        !          30246:             "\x01\x17\x05\x0a\x00\x16\x06\x20\x05\x20\x06\x0b\x00"
        !          30247:             "\xff\x01\x15\x05\x0c\x00\x14\x06\x20\x05\x20\x06\x20"
        !          30248:             "\x05\x20\x06\x0e\x00\xff\x01\x12\x05\x0f\x00\x11\x06"
        !          30249:             "\x20\x05\x20\x06\x20\x05\x20\x06\x11\x00\xff\x01\x0f"
        !          30250:             "\x05\x12\x00\x0e\x06\x20\x05\x20\x06\x20\x05\x20\x06"
        !          30251:             "\x14\x00\xff\x01\x0c\x05\x15\x00\x0b\x06\x20\x05\x20"
        !          30252:             "\x06\x16\x00\xff\x01\x0a\x05\x17\x00\x09\x06\x20\x05"
        !          30253:             "\x20\x06\x20\x05\x20\x06\x19\x00\xff\x01\x07\x05\x1a"
        !          30254:             "\x00\x06\x06\x20\x05\x20\x06\x20\x05\x20\x06\x1c\x00"
        !          30255:             "\xff\x01\x04\x05\x1d\x00\x03\x06\x20\x05\x20\x06\x20"
        !          30256:             "\x05\x20\x06\x1f\x00\xff\x01\x01\x05\x20\x06\x20\xff"
        !          30257:             "\x01\x05\x21\x00\x01\x03\x22" }  },
        !          30258:       /* --- pixel bitmap for cmmib600 char#62 > --- */
        !          30259:       {  62,134712,                     /* character number, location */
        !          30260:          49, 8,   -8, 8,      /* topleft row,col, and botleft row,col */
        !          30261:           { 58,   57, 2,115, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          30262:             "\x01\x03\x36\x06\x34\x08\x32\x0a\x31\x0b\x31\x0b\x31"
        !          30263:             "\x0b\x31\x0b\x31\x0b\x31\x0b\x31\x0b\x31\x0b\x31\x0b"
        !          30264:             "\x31\x0c\x30\x0c\x30\x0c\x30\x0c\x30\x0c\x31\x0b\x31"
        !          30265:             "\x0b\x31\x0b\x31\x0b\x31\x0b\x31\x0b\x31\x0b\x31\x0b"
        !          30266:             "\x31\x0b\x31\x0a\x32\x08\x30\x0a\x2e\x0b\x2d\x0b\x2d"
        !          30267:             "\x0b\x2d\x0b\x2d\x0b\x2d\x0b\x2d\x0b\x2d\x0b\x2d\x0b"
        !          30268:             "\x2c\x0c\x2c\x0c\x2c\x0c\x2c\x0c\x2c\x0c\x2c\x0b\x2d"
        !          30269:             "\x0b\x2d\x0b\x2d\x0b\x2d\x0b\x2d\x0b\x2d\x0b\x2d\x0b"
        !          30270:             "\x2d\x0b\x2e\x0a\x30\x08\x32\x06\x35\x03\x36" }  },
        !          30271:       /* --- pixel bitmap for cmmib600 char#63 \star --- */
        !          30272:       {  63,135503,                     /* character number, location */
        !          30273:          42, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          30274:           { 45,   43, 3,215, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          30275:             "\xe0\x82\xe0\x70\xf2\xe0\x73\xe0\x70\xf5\xe0\x65\xe0"
        !          30276:             "\x60\xf4\xe0\x57\xe0\x50\x13\xe0\x17\xe0\x13\x1a\x97"
        !          30277:             "\x9e\x0d\x19\x1e\x03\x2e\x0e\x0d\x6e\x0e\x09\xae\x0e"
        !          30278:             "\x05\xee\x0e\x01\xe0\x3e\x0d\xe0\x6e\x09\xe0\xae\x05"
        !          30279:             "\xd0\xf2\xe0\x1e\x01\xe0\x10\xf1\xee\x03\xe0\xd9\x19"
        !          30280:             "\xe0\xc8\x38\xe0\xb8\x58\xe0\xa7\x77\xe0\x97\x97\xe0"
        !          30281:             "\x86\xb6\xe0\x76\xd6\xe0\x65\xe0\x15\xe0\x55\xe0\x35"
        !          30282:             "\xe0\x44\xe0\x54\xe0\x34\xe0\x74\xe0\x23\xe0\x93\xe0"
        !          30283:             "\x31\xe0\xb1\x90" }  },
        !          30284:       /* --- pixel bitmap for cmmib600 char#64 \partial --- */
        !          30285:       {  64,109294,                     /* character number, location */
        !          30286:          59, 5,   -1, 5,      /* topleft row,col, and botleft row,col */
        !          30287:           { 50,   60, 3,375, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          30288:             "\xe0\x9a\xe0\xe0\x9e\x03\xe0\xe0\x3e\x07\xe0\xd7\x99"
        !          30289:             "\xe0\xa6\xd9\xe0\x75\xe0\x38\xe0\x55\xe0\x58\xe0\x35"
        !          30290:             "\xe0\x69\xe0\x15\xe0\x88\xe0\x16\xe0\x88\xd9\xe0\x68"
        !          30291:             "\x30\xf1\xa9\xe0\x69\x20\xf2\x9a\xe0\x79\x10\x99\xe0"
        !          30292:             "\x89\xb7\xe0\x99\xc4\xe0\xb9\xe0\xe0\xca\x10\xf1\xe0"
        !          30293:             "\xe0\xbb\xe0\x4d\x8a\xe0\x2e\x04\x6a\xee\x07\x4b\xd9"
        !          30294:             "\xa4\x3b\xb9\xd4\x2b\xa9\xe0\x13\x2b\x8a\xe0\x3e\x01"
        !          30295:             "\x7a\xe0\x4e\x20\xf1\x5a\xe0\x6d\x20\x4a\xe0\x7d\x5b"
        !          30296:             "\xe0\x7c\x6a\xe0\x8c\x30\xf1\x2b\xe0\x8c\x30\x1c\xe0"
        !          30297:             "\x8b\x5b\xe0\x9b\x5b\xe0\x9a\x6b\xe0\x8b\x5c\xe0\x8b"
        !          30298:             "\x5b\xe0\x9a\x6b\xe0\x8b\x6b\xe0\x8a\x7b\xe0\x89\x8a"
        !          30299:             "\xe0\x8a\x8a\xe0\x89\x9a\xe0\x7a\x9a\xe0\x79\xb9\xe0"
        !          30300:             "\x69\xc9\xe0\x59\xe9\xe0\x39\xe0\x1a\xe0\x19\xe0\x39"
        !          30301:             "\xda\xe0\x5a\x9a\xe0\x8e\x0d\xe0\xbe\x09\xe0\xe0\x1e"
        !          30302:             "\x04\xe0\xe0\x7c\xe0\xc0" }  },
        !          30303:       /* --- pixel bitmap for cmmib600 char#65 A --- */
        !          30304:       {  65, 1092,                      /* character number, location */
        !          30305:          59, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          30306:           { 65,   59, 2,208, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          30307:             "\x2d\x04\x3c\x05\x3b\x06\x3a\x07\x3a\x08\x38\x09\x0f"
        !          30308:             "\x00\xff\x01\x28\x0a\x0f\x00\x27\x0b\x35\x0c\x35\x0d"
        !          30309:             "\x33\x0e\x0e\x00\xff\x01\x24\x0f\x0e\x00\x23\x10\x30"
        !          30310:             "\x11\x30\x04\x01\x0d\x2e\x04\x02\x0d\x2d\x05\x02\x0d"
        !          30311:             "\x2d\x04\x04\x0c\x2c\x04\x05\x0c\x2b\x05\x05\x0c\x2b"
        !          30312:             "\x04\x06\x0c\x2a\x04\x07\x0d\x28\x05\x07\x0d\x28\x04"
        !          30313:             "\x08\x0d\x27\x04\x0a\x0c\x26\x05\x0a\x0c\x26\x04\x0b"
        !          30314:             "\x0c\x25\x04\x0c\x0d\x23\x05\x0c\x0d\x23\x04\x0d\x0d"
        !          30315:             "\x0b\x00\xff\x01\x17\x04\x0f\x0c\x0b\x00\x16\x04\x10"
        !          30316:             "\x0c\x20\x05\x10\x0d\x1f\x04\x11\x0d\x1e\x04\x12\x0d"
        !          30317:             "\x1d\x05\x13\x0c\x1d\x24\x1c\x25\x0a\x00\xff\x01\x11"
        !          30318:             "\x27\x09\x00\x10\x04\x17\x0d\x18\x05\x18\x0c\x18\x04"
        !          30319:             "\x19\x0c\x17\x04\x1a\x0c\x16\x05\x1a\x0c\x16\x04\x1b"
        !          30320:             "\x0d\x14\x04\x1c\x0d\x13\x05\x1c\x0d\x13\x04\x1e\x0c"
        !          30321:             "\x12\x04\x1f\x0c\x11\x05\x1f\x0c\x0f\x07\x1f\x0d\x07"
        !          30322:             "\x14\x12\x1b\x00\xff\x01\x14\x11\x1c\x00\x13\x12\x1c" }  },
        !          30323:       /* --- pixel bitmap for cmmib600 char#66 B --- */
        !          30324:       {  66, 2654,                      /* character number, location */
        !          30325:          57, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          30326:           { 67,   57, 2,201, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          30327:             "\x0e\x2a\x19\x2d\x16\x30\x13\x31\x1a\x0b\x13\x0c\x19"
        !          30328:             "\x0b\x15\x0b\x18\x0b\x16\x0b\x16\x0c\x16\x0b\x01\x00"
        !          30329:             "\xff\x02\x15\x0b\x18\x0b\x14\x0c\x18\x0b\xff\x02\x14"
        !          30330:             "\x0b\x19\x0b\x13\x0c\x18\x0b\x14\x0b\x19\x0b\x01\x00"
        !          30331:             "\xff\x01\x13\x0b\x18\x0b\x02\x00\x12\x0c\x17\x0b\x15"
        !          30332:             "\x0b\x18\x0a\x16\x0b\x17\x0a\x17\x0b\x15\x0b\x17\x0c"
        !          30333:             "\x14\x0b\x18\x0b\x13\x0b\x1a\x0b\x10\x0c\x1c\x25\x1d"
        !          30334:             "\x26\x1d\x29\x1a\x0b\x14\x0b\x19\x0b\x16\x0b\x16\x0c"
        !          30335:             "\x17\x0b\x06\x00\xff\x01\x0f\x0b\x19\x0b\x05\x00\x0f"
        !          30336:             "\x0b\x1a\x0b\x12\x0c\x1a\x0b\x04\x00\xff\x02\x0e\x0b"
        !          30337:             "\x1b\x0b\x04\x00\x0d\x0c\x1b\x0b\x11\x0b\x1c\x0b\x04"
        !          30338:             "\x00\xff\x01\x0d\x0b\x1b\x0c\x04\x00\x0c\x0c\x1b\x0b"
        !          30339:             "\x11\x0b\x1b\x0c\x11\x0b\x1b\x0b\x12\x0b\x1a\x0c\x11"
        !          30340:             "\x0c\x19\x0c\x12\x0b\x19\x0c\x13\x0b\x18\x0c\x14\x0b"
        !          30341:             "\x17\x0c\x14\x0c\x15\x0d\x15\x0b\x13\x0f\x0d\x34\x0f"
        !          30342:             "\x32\x10\x30\x14\x2b\x17" }  },
        !          30343:       /* --- pixel bitmap for cmmib600 char#67 C --- */
        !          30344:       {  67, 3771,                      /* character number, location */
        !          30345:          58, 4,   -1, 4,      /* topleft row,col, and botleft row,col */
        !          30346:           { 67,   59, 2,201, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          30347:             "\x23\x0c\x12\x02\x1e\x15\x0c\x04\x1b\x1a\x09\x05\x18"
        !          30348:             "\x1f\x06\x06\x16\x10\x0a\x08\x03\x07\x15\x0d\x12\x06"
        !          30349:             "\x01\x08\x13\x0d\x16\x0d\x11\x0c\x1a\x0c\x10\x0c\x1c"
        !          30350:             "\x0a\x10\x0b\x1f\x09\x0e\x0c\x20\x09\x0d\x0c\x22\x08"
        !          30351:             "\x0c\x0c\x23\x07\x0c\x0c\x25\x06\x0c\x0b\x26\x06\x0b"
        !          30352:             "\x0b\x27\x06\x0a\x0c\x27\x05\x0a\x0c\x28\x05\x0a\x0b"
        !          30353:             "\x29\x05\x09\x0c\x29\x05\x04\x00\xff\x01\x04\x0c\x2a"
        !          30354:             "\x04\x05\x00\x03\x0d\x33\x00\xff\x01\x03\x0c\x34\x00"
        !          30355:             "\xff\x02\x02\x0c\x35\x00\x01\x0d\x35\x00\xff\x02\x01"
        !          30356:             "\x0c\x36\x0d\x36\xff\x04\x0c\x37\x0c\x2a\x04\x09\x0c"
        !          30357:             "\x29\x05\x09\x0c\x29\x04\x0b\x0b\x29\x04\x0b\x0b\x28"
        !          30358:             "\x05\x0b\x0b\x28\x04\x0c\x0b\x27\x05\x0d\x0b\x25\x05"
        !          30359:             "\x0e\x0b\x24\x05\x10\x0b\x23\x05\x10\x0b\x22\x05\x12"
        !          30360:             "\x0b\x1f\x06\x14\x0b\x1d\x06\x16\x0b\x1b\x06\x18\x0c"
        !          30361:             "\x17\x06\x1b\x0d\x12\x08\x1e\x0f\x0b\x09\x22\x1f\x26"
        !          30362:             "\x1b\x2b\x15\x32\x0d\x21" }  },
        !          30363:       /* --- pixel bitmap for cmmib600 char#68 D --- */
        !          30364:       {  68, 5119,                      /* character number, location */
        !          30365:          57, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          30366:           { 72,   57, 2,197, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          30367:             "\x0e\x29\x1f\x2d\x1b\x30\x18\x31\x1f\x0c\x10\x0f\x1d"
        !          30368:             "\x0c\x14\x0c\x1c\x0c\x16\x0b\x1a\x0d\x17\x0b\x19\x0c"
        !          30369:             "\x19\x0b\x18\x0c\x1a\x0a\x18\x0c\x1b\x0a\x16\x0d\x1b"
        !          30370:             "\x0a\x02\x00\xff\x02\x14\x0c\x1d\x0a\x01\x00\x13\x0d"
        !          30371:             "\x1d\x0b\xff\x02\x13\x0c\x1e\x0b\x12\x0d\x1e\x0b\xff"
        !          30372:             "\x02\x12\x0c\x1f\x0b\x11\x0d\x1f\x0b\xff\x02\x11\x0c"
        !          30373:             "\x1f\x0c\x10\x0d\x1f\x0b\x11\x0c\x20\x0b\x01\x00\xff"
        !          30374:             "\x01\x10\x0c\x1f\x0c\x01\x00\x0f\x0d\x1f\x0b\x11\x0c"
        !          30375:             "\x20\x0b\x11\x0c\x1f\x0c\x11\x0c\x1f\x0b\x11\x0d\x1f"
        !          30376:             "\x0b\x03\x00\xff\x01\x0e\x0c\x1f\x0b\x04\x00\x0e\x0c"
        !          30377:             "\x1e\x0b\x12\x0d\x1e\x0b\x12\x0c\x1e\x0b\x13\x0c\x1e"
        !          30378:             "\x0a\x14\x0c\x1d\x0b\x13\x0d\x1d\x0a\x14\x0c\x1d\x0a"
        !          30379:             "\x15\x0c\x1c\x0a\x16\x0c\x1b\x0a\x16\x0d\x1a\x0a\x17"
        !          30380:             "\x0c\x19\x0b\x18\x0c\x18\x0b\x19\x0c\x16\x0b\x1a\x0d"
        !          30381:             "\x13\x0d\x1b\x0c\x11\x0e\x14\x32\x16\x30\x17\x2e\x1b"
        !          30382:             "\x28\x1f" }  },
        !          30383:       /* --- pixel bitmap for cmmib600 char#69 E --- */
        !          30384:       {  69, 6760,                      /* character number, location */
        !          30385:          57, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          30386:           { 65,   57, 3,427, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          30387:             "\xee\x0e\x0e\x08\x10\xf2\xee\x0e\x0e\x09\xe0\x8c\xe0"
        !          30388:             "\x5c\xe0\x8c\xe0\x89\xe0\x8c\xe0\x98\xe0\x7d\xe0\xa6"
        !          30389:             "\x10\xf2\xe0\x7c\xe0\xc5\x10\xe0\x6d\xe0\xd4\x10\xf2"
        !          30390:             "\xe0\x6c\xe0\xe4\x10\xe0\x5d\xd3\xc4\x10\xf1\xe0\x5c"
        !          30391:             "\xd4\xc4\x10\xe0\x5c\xc5\xc4\xe0\x5d\xc5\xc3\xe0\x6c"
        !          30392:             "\xd4\xe0\x40\xf1\xe0\x4c\xc5\xe0\x40\xe0\x3d\xa7\xe0"
        !          30393:             "\xe0\x7c\x98\xe0\x50\xf1\xe0\x3e\x0e\x01\xe0\x50\xe0"
        !          30394:             "\x2e\x0e\x02\xe0\xe0\x7e\x0e\x01\xe0\xe0\x8c\xa7\xe0"
        !          30395:             "\xe0\x8c\xb6\xe0\xe0\x7d\xc5\xe0\x60\xf1\xe0\x1c\xd4"
        !          30396:             "\xe0\x70\xe0\x1c\xc5\xe3\xe0\x4d\xc5\xd4\xe0\x4c\xd4"
        !          30397:             "\xe4\xe0\x4c\xd4\xd5\xe0\x4c\xd3\xe4\xe0\x4d\xe0\xe0"
        !          30398:             "\x15\xe0\x4c\xe0\xe0\x24\xe0\x5c\xe0\xe0\x15\xe0\x5c"
        !          30399:             "\xe0\xe0\x14\xe0\x5d\xe0\xe5\xe0\x5c\xe0\xe6\xe0\x5c"
        !          30400:             "\xe0\xe5\xe0\x6c\xe0\xd6\xe0\x5d\xe0\xc6\xe0\x6c\xe0"
        !          30401:             "\xc7\xe0\x6c\xe0\xb7\xe0\x7c\xe0\x99\xe0\x6d\xe0\x7a"
        !          30402:             "\xe0\x7c\xe0\x4e\xb0\xf1\x1e\x0e\x0e\x0a\xce\x0e\x0e"
        !          30403:             "\x0b\xde\x0e\x0e\x09\xde" }  },
        !          30404:       /* --- pixel bitmap for cmmib600 char#70 F --- */
        !          30405:       {  70, 8219,                      /* character number, location */
        !          30406:          57, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          30407:           { 63,   57, 3,363, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          30408:             "\xee\x0e\x0e\x06\x10\xf2\xee\x0e\x0e\x07\xe0\x8c\xe0"
        !          30409:             "\x3c\xe0\x8c\xe0\x69\xe0\x8c\xe0\x87\xe0\x7d\xe0\x86"
        !          30410:             "\x10\xf2\xe0\x7c\xe0\xa5\x10\xe0\x6d\xe0\xb4\x10\xf2"
        !          30411:             "\xe0\x6c\xe0\xc4\x10\xe0\x5d\xe0\xc4\xe0\x6c\xc3\xc4"
        !          30412:             "\xe0\x6c\xc4\xb4\xe0\x6c\xb5\xb4\xe0\x5d\xb5\xb3\xe0"
        !          30413:             "\x6c\xc4\xe0\x30\xf1\xe0\x4c\xb5\xe0\x30\xe0\x3d\xa6"
        !          30414:             "\xe0\xe0\x6c\xa6\xe0\xe0\x7c\x88\xe0\xe0\x7e\x0e\xe0"
        !          30415:             "\xe0\x6e\x0e\x01\xe0\x40\xf1\xe0\x2e\x0e\xe0\x50\xe0"
        !          30416:             "\x2c\x88\xe0\xe0\x6d\xa6\xe0\x50\xf2\xe0\x1c\xb5\xe0"
        !          30417:             "\x60\xed\xb5\xe0\x60\xf2\xec\xc4\xe0\x70\xdd\xc3\xe0"
        !          30418:             "\x80\xf2\xdc\xe0\xe0\xa0\xcd\xe0\xe0\xa0\xf2\xcc\xe0"
        !          30419:             "\xe0\xb0\xbd\xe0\xe0\xb0\xf2\xbc\xe0\xe0\xc0\xad\xe0"
        !          30420:             "\xe0\xe0\x8c\xe0\xe0\xee\x0e\x03\xe0\xe0\x4e\x0e\x04"
        !          30421:             "\xe0\xe0\x2e\x0e\x05\xe0\xe0\x3e\x0e\x03\xe0\xe0\x30" }  },
        !          30422:       /* --- pixel bitmap for cmmib600 char#71 G --- */
        !          30423:       {  71, 9562,                      /* character number, location */
        !          30424:          58, 4,   -1, 4,      /* topleft row,col, and botleft row,col */
        !          30425:           { 66,   59, 2,221, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          30426:             "\x23\x0c\x11\x02\x1e\x14\x0c\x04\x1a\x1a\x09\x05\x18"
        !          30427:             "\x1e\x06\x06\x16\x0f\x0b\x07\x03\x07\x15\x0d\x11\x06"
        !          30428:             "\x01\x08\x13\x0c\x16\x0d\x11\x0c\x19\x0c\x10\x0b\x1c"
        !          30429:             "\x0a\x10\x0b\x1e\x09\x0e\x0c\x1f\x09\x0d\x0c\x21\x08"
        !          30430:             "\x0c\x0c\x22\x07\x0c\x0c\x24\x06\x0c\x0b\x25\x06\x0b"
        !          30431:             "\x0b\x26\x06\x0a\x0c\x26\x05\x0a\x0c\x27\x05\x0a\x0b"
        !          30432:             "\x28\x05\x09\x0c\x28\x05\x04\x00\xff\x01\x04\x0c\x29"
        !          30433:             "\x04\x05\x00\xff\x02\x03\x0c\x33\x00\xff\x02\x02\x0c"
        !          30434:             "\x34\x00\x01\x0d\x34\x00\xff\x02\x01\x0c\x35\x0d\x35"
        !          30435:             "\x0c\x36\xff\x01\x0c\x16\x1e\x02\x0c\x15\x1f\x02\x0c"
        !          30436:             "\x16\x1d\x03\x0c\x21\x0c\x09\x0c\x20\x0d\x09\x0c\x20"
        !          30437:             "\x0c\x0a\x00\xff\x01\x01\x0b\x20\x0c\x0a\x00\x01\x0b"
        !          30438:             "\x1f\x0d\x0b\x0b\x1f\x0c\x0b\x00\xff\x01\x02\x0b\x1e"
        !          30439:             "\x0c\x0b\x00\x03\x0b\x1c\x0d\x0e\x0b\x1c\x0c\x10\x0b"
        !          30440:             "\x1b\x0c\x11\x0b\x19\x0d\x12\x0b\x17\x0e\x13\x0c\x14"
        !          30441:             "\x0e\x15\x0d\x11\x0f\x16\x10\x0a\x07\x03\x08\x18\x1e"
        !          30442:             "\x05\x07\x1a\x1a\x09\x04\x1e\x15\x0d\x02\x23\x0c\x21" }  },
        !          30443:       /* --- pixel bitmap for cmmib600 char#72 H --- */
        !          30444:       {  72,11007,                      /* character number, location */
        !          30445:          57, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          30446:           { 81,   57, 2,245, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          30447:             "\x0e\x1d\x08\x1d\x01\x00\xff\x01\x0e\x1e\x07\x1e\x0e"
        !          30448:             "\x1d\x08\x1d\x01\x00\xff\x01\x16\x0c\x19\x0c\x0a\x00"
        !          30449:             "\x16\x0c\x18\x0d\x1f\x0d\x18\x0d\x0a\x00\xff\x01\x15"
        !          30450:             "\x0c\x19\x0c\x0b\x00\x15\x0c\x18\x0d\x1f\x0d\x18\x0d"
        !          30451:             "\x0b\x00\xff\x01\x14\x0c\x19\x0c\x0c\x00\x14\x0c\x18"
        !          30452:             "\x0d\x1f\x0d\x18\x0d\x0c\x00\xff\x01\x13\x0c\x19\x0c"
        !          30453:             "\x0d\x00\x13\x0c\x18\x0d\x1f\x0d\x18\x0d\x0d\x00\xff"
        !          30454:             "\x01\x12\x0c\x19\x0c\x0e\x00\x12\x0c\x18\x0d\x1f\x0d"
        !          30455:             "\x18\x0d\x1f\x0c\x19\x0c\x0f\x00\xff\x01\x11\x31\x0f"
        !          30456:             "\x00\x10\x32\x1f\x31\x20\x0c\x19\x0c\x20\x0c\x18\x0d"
        !          30457:             "\x1f\x0d\x18\x0d\x10\x00\xff\x01\x0f\x0c\x19\x0c\x11"
        !          30458:             "\x00\x0f\x0c\x18\x0d\x1f\x0d\x18\x0d\x11\x00\xff\x01"
        !          30459:             "\x0e\x0c\x19\x0c\x12\x00\x0e\x0c\x18\x0d\x1f\x0d\x18"
        !          30460:             "\x0d\x12\x00\xff\x01\x0d\x0c\x19\x0c\x13\x00\x0d\x0c"
        !          30461:             "\x18\x0d\x1f\x0d\x18\x0d\x13\x00\xff\x01\x0c\x0c\x19"
        !          30462:             "\x0c\x14\x00\x0c\x0c\x18\x0d\x1f\x0d\x18\x0d\x14\x00"
        !          30463:             "\xff\x01\x0b\x0c\x19\x0c\x15\x00\x0b\x0c\x18\x0d\x1f"
        !          30464:             "\x0d\x18\x0d\x1f\x0c\x19\x0c\x17\x1d\x08\x1d\x0f\x1e"
        !          30465:             "\x07\x1e\x0d\x1e\x07\x1e\x0f\x1d\x08\x1d\x0e" }  },
        !          30466:       /* --- pixel bitmap for cmmib600 char#73 I --- */
        !          30467:       {  73,11958,                      /* character number, location */
        !          30468:          57, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          30469:           { 44,   57, 3,227, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          30470:             "\xf1\xee\x0e\x02\xde\x0e\x03\xee\x0e\x01\x10\xf2\xe0"
        !          30471:             "\x8c\xa0\xe0\x7d\xa0\xf2\xe0\x7c\xb0\xe0\x6d\xb0\xf2"
        !          30472:             "\xe0\x6c\xc0\xe0\x5d\xc0\xf2\xe0\x5c\xd0\xe0\x4d\xd0"
        !          30473:             "\xf2\xe0\x4c\xe0\xe0\x3d\xe0\xf2\xe0\x3c\xe0\x10\xe0"
        !          30474:             "\x2d\xe0\x10\xf2\xe0\x2c\xe0\x20\xe0\x1d\xe0\x20\xf2"
        !          30475:             "\xe0\x1c\xe0\x30\xed\xe0\x30\xf2\xec\xe0\x40\xdd\xe0"
        !          30476:             "\x40\xf2\xdc\xe0\x50\xcd\xe0\x50\xf2\xcc\xe0\x60\xbd"
        !          30477:             "\xe0\x60\xf2\xbc\xe0\x70\xad\xe0\xe0\x3c\xe0\x9e\x0e"
        !          30478:             "\x01\xef\x1e\x0e\x03\xd0\x1e\x0e\x01\xe0" }  },
        !          30479:       /* --- pixel bitmap for cmmib600 char#74 J --- */
        !          30480:       {  74,12892,                      /* character number, location */
        !          30481:          57, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          30482:           { 55,   58, 3,309, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          30483:             "\xe0\xbe\x0e\x01\xe0\xbe\x0e\x03\xe0\xae\x0e\x02\xe0"
        !          30484:             "\xce\x0e\x01\x10\xf1\xe0\xe0\x7c\x80\xe0\xe0\x6d\x80"
        !          30485:             "\xf2\xe0\xe0\x6c\x90\xe0\xe0\x5d\x90\xf2\xe0\xe0\x5c"
        !          30486:             "\xa0\xe0\xe0\x4d\xa0\xf2\xe0\xe0\x4c\xb0\xe0\xe0\x3d"
        !          30487:             "\xb0\xf2\xe0\xe0\x3c\xc0\xe0\xe0\x2d\xc0\xf2\xe0\xe0"
        !          30488:             "\x2c\xd0\xe0\xe0\x1d\xd0\xf2\xe0\xe0\x1c\xe0\xe0\xed"
        !          30489:             "\xe0\xf2\xe0\xec\xe0\x10\xe0\xdd\xe0\x10\xf2\xe0\xdc"
        !          30490:             "\xe0\x20\xf1\xe0\xcd\xe0\x20\xe0\xcc\xe0\x86\xe0\x1c"
        !          30491:             "\xe0\x78\xdd\xe0\x6a\xcd\xe0\x5b\xcc\xe0\x5d\xbc\xe0"
        !          30492:             "\x5d\xad\xe0\x4f\x1d\xbc\xe0\x5d\xac\xe0\x6c\xac\xe0"
        !          30493:             "\x7b\xbb\xe0\x99\xbb\xe0\xb7\xac\xe0\xd7\x7d\xe0\xe0"
        !          30494:             "\x1e\x0a\xe0\xe0\x4e\x06\xe0\xe0\xbc\xe0\xe0\x60" }  },
        !          30495:       /* --- pixel bitmap for cmmib600 char#75 K --- */
        !          30496:       {  75,14265,                      /* character number, location */
        !          30497:          57, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          30498:           { 79,   57, 2,231, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          30499:             "\x0e\x1d\x10\x14\x0e\x1e\x0f\x14\x0e\x1e\x0e\x15\x0e"
        !          30500:             "\x1d\x10\x13\x17\x0c\x1e\x09\x1c\x0c\x1d\x07\x1f\x0c"
        !          30501:             "\x1b\x07\x20\x0d\x1a\x06\x22\x0c\x1a\x06\x23\x0c\x18"
        !          30502:             "\x06\x25\x0c\x17\x06\x25\x0d\x15\x06\x27\x0c\x15\x06"
        !          30503:             "\x28\x0c\x14\x06\x29\x0c\x12\x06\x2a\x0d\x11\x06\x2b"
        !          30504:             "\x0c\x10\x06\x2d\x0c\x0f\x06\x2e\x0c\x0d\x06\x2f\x0d"
        !          30505:             "\x0c\x06\x30\x0c\x0c\x06\x31\x0c\x0a\x06\x33\x0c\x09"
        !          30506:             "\x07\x32\x0d\x07\x0a\x31\x0c\x07\x0b\x31\x0c\x05\x0e"
        !          30507:             "\x30\x0c\x04\x0f\x2f\x0d\x03\x11\x2e\x0c\x02\x13\x2e"
        !          30508:             "\x0c\x01\x06\x01\x0e\x2d\x11\x04\x0d\x2c\x11\x05\x0e"
        !          30509:             "\x2b\x10\x07\x0d\x2b\x0e\x09\x0e\x2a\x0d\x0b\x0d\x29"
        !          30510:             "\x0d\x0c\x0e\x28\x0c\x0e\x0d\x28\x0c\x0e\x0e\x27\x0c"
        !          30511:             "\x0f\x0d\x26\x0d\x0f\x0e\x25\x0c\x11\x0d\x25\x0c\x11"
        !          30512:             "\x0e\x24\x0c\x12\x0d\x23\x0d\x12\x0e\x22\x0c\x14\x0d"
        !          30513:             "\x22\x0c\x14\x0e\x21\x0c\x15\x0d\x20\x0d\x15\x0e\x1f"
        !          30514:             "\x0c\x17\x0d\x1f\x0c\x17\x0e\x1e\x0c\x18\x0d\x1d\x0d"
        !          30515:             "\x18\x0e\x1c\x0c\x1a\x0d\x13\x1d\x0c\x19\x0d\x1e\x0a"
        !          30516:             "\x1b\x0b\x1e\x0b\x1b\x0c\x1d\x0b\x1a\x0c" }  },
        !          30517:       /* --- pixel bitmap for cmmib600 char#76 L --- */
        !          30518:       {  76,15446,                      /* character number, location */
        !          30519:          57, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          30520:           { 54,   57, 3,295, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          30521:             "\xee\x0e\x02\xa0\xf1\xde\x0e\x04\x90\xde\x0e\x03\xa0"
        !          30522:             "\xf2\xe0\x7c\xe0\x70\xe0\x6d\xe0\x70\xf2\xe0\x6c\xe0"
        !          30523:             "\x80\xe0\x5d\xe0\x80\xf2\xe0\x5c\xe0\x90\xe0\x4d\xe0"
        !          30524:             "\x90\xf2\xe0\x4c\xe0\xa0\xe0\x3d\xe0\xa0\xf2\xe0\x3c"
        !          30525:             "\xe0\xb0\xe0\x2d\xe0\xb0\xf2\xe0\x2c\xe0\xc0\xe0\x1d"
        !          30526:             "\xe0\xc0\xf2\xe0\x1c\xe0\xd0\xed\xe0\xd0\xf1\xec\xe0"
        !          30527:             "\xe0\xec\xe0\xb3\xdd\xe0\xa4\xdc\xe0\xb4\xdc\xe0\xa5"
        !          30528:             "\xdc\xe0\xa4\xdd\xe0\x95\xdc\xe0\xa5\x10\xf1\xcc\xe0"
        !          30529:             "\x95\x20\xbd\xe0\x85\xec\xe0\x95\xec\xe0\x86\xec\xe0"
        !          30530:             "\x76\xed\xe0\x67\xec\xe0\x67\xe0\x1c\xe0\x58\xe0\x1c"
        !          30531:             "\xe0\x3a\xed\xe0\x1b\xe0\x1c\xde\x6f\x2e\x0e\x0e\x05"
        !          30532:             "\x7e\x0e\x0e\x04\x80" }  },
        !          30533:       /* --- pixel bitmap for cmmib600 char#77 M --- */
        !          30534:       {  77,16950,                      /* character number, location */
        !          30535:          57, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          30536:           { 97,   57, 3,747, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          30537:             "\xee\x07\xe0\xe0\xce\x07\x10\xf1\xee\x08\xe0\xe0\xae"
        !          30538:             "\x09\xee\x08\xe0\xe0\x9e\x09\xe0\x9e\xe0\xe0\x8e\x01"
        !          30539:             "\xe0\xe0\x4e\xe0\xe0\x74\x1b\xe0\xe0\x4e\xe0\xe0\x7e"
        !          30540:             "\x02\xe0\xe0\x35\x1a\xe0\xe0\x54\x1c\xa0\xf1\xe0\x74"
        !          30541:             "\x2a\xe0\xe0\x44\x2b\xb0\xe0\x74\x2a\xe0\xe0\x34\x2c"
        !          30542:             "\xe0\xe0\x35\x2a\xe0\xe0\x24\x3c\xe0\xe0\x34\x4a\xe0"
        !          30543:             "\xe0\x14\x3b\xe0\xe0\x44\x4a\xe0\xe4\x4b\xe0\xe0\x44"
        !          30544:             "\x4a\xe0\xd4\x4c\xe0\xe0\x35\x4a\xe0\xd4\x4c\xe0\xe0"
        !          30545:             "\x34\x5a\xe0\xc4\x5b\xe0\xe0\x44\x6a\xe0\xa4\x6b\xe0"
        !          30546:             "\xe0\x44\x6a\xe0\xa4\x5c\xe0\xe0\x35\x6a\xe0\x94\x6c"
        !          30547:             "\xe0\xe0\x34\x7a\xe0\x84\x7b\xe0\xe0\x44\x7a\xe0\x74"
        !          30548:             "\x8b\xe0\xe0\x44\x7a\xe0\x74\x7c\xe0\xe0\x35\x8a\xe0"
        !          30549:             "\x54\x8c\xe0\xf1\xe0\x34\x9a\xe0\x44\x9b\xe0\x10\xe0"
        !          30550:             "\x34\x9a\xe0\x34\x9c\xe0\xe0\x35\x9a\xe0\x24\xac\xe0"
        !          30551:             "\xe0\x34\xba\xe0\x14\xab\xe0\xe0\x44\xba\xe4\xbb\xe0"
        !          30552:             "\xe0\x44\xba\xd4\xbc\xe0\xe0\x35\xba\xd4\xbc\xe0\xe0"
        !          30553:             "\x34\xca\xc4\xcb\xe0\xe0\x44\xda\xa4\xdb\xe0\xe0\x44"
        !          30554:             "\xda\x94\xdc\xe0\xe0\x35\xda\x94\xdc\xe0\xe0\x34\xea"
        !          30555:             "\x84\xeb\xe0\xe0\x44\xea\x74\xe0\x1b\xe0\xe0\x44\xe0"
        !          30556:             "\x1a\x64\xec\xe0\xe0\x35\xe0\x1a\x54\xe0\x1c\xe0\x40"
        !          30557:             "\xf1\xd4\xe0\x2a\x44\xe0\x2b\xe0\x50\xd4\xe0\x2a\x34"
        !          30558:             "\xe0\x2c\xe0\xe0\x35\xe0\x2a\x24\xe0\x3c\xe0\xe0\x34"
        !          30559:             "\xe0\x4a\x14\xe0\x3b\xe0\xe0\x44\xe0\x4e\xe0\x4b\xe0"
        !          30560:             "\xe0\x44\xe0\x4d\xe0\x4c\xe0\xe0\x35\xe0\x4d\xe0\x4c"
        !          30561:             "\xe0\xe0\x34\xe0\x5c\xe0\x5b\xe0\xe0\x44\xe0\x6a\xe0"
        !          30562:             "\x6b\xe0\xe0\x44\xe0\x69\xe0\x6c\xe0\xe0\x35\xe0\x69"
        !          30563:             "\xe0\x6c\xe0\xe0\x17\xe0\x68\xe0\x7b\xe0\x9e\x07\xd7"
        !          30564:             "\xde\x0e\xe0\x1e\x08\xd6\xde\x0e\x01\xde\x08\xe5\xde"
        !          30565:             "\x0e\x01\xe0\x1e\x07\xe4\xe0\x1e\x0e\xe0" }  },
        !          30566:       /* --- pixel bitmap for cmmib600 char#78 N --- */
        !          30567:       {  78,18504,                      /* character number, location */
        !          30568:          57, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          30569:           { 81,   57, 2,295, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          30570:             "\x0e\x15\x18\x15\x0f\x16\x17\x16\x0e\x17\x16\x16\x0e"
        !          30571:             "\x17\x16\x15\x17\x10\x1c\x07\x1e\x10\x1d\x04\x20\x11"
        !          30572:             "\x1b\x05\x1f\x13\x1a\x05\x1f\x04\x02\x0d\x1a\x04\x20"
        !          30573:             "\x04\x02\x0e\x19\x04\x20\x04\x03\x0d\x18\x05\x1f\x05"
        !          30574:             "\x03\x0e\x17\x05\x1f\x04\x05\x0d\x17\x04\x20\x04\x06"
        !          30575:             "\x0d\x16\x04\x20\x04\x06\x0e\x14\x05\x1f\x05\x07\x0d"
        !          30576:             "\x14\x05\x1f\x04\x08\x0e\x13\x04\x20\x04\x09\x0d\x13"
        !          30577:             "\x04\x20\x04\x09\x0e\x11\x05\x1f\x05\x0a\x0e\x10\x05"
        !          30578:             "\x1f\x04\x0c\x0d\x10\x04\x20\x04\x0c\x0e\x0f\x04\x20"
        !          30579:             "\x04\x0d\x0d\x0e\x05\x1f\x05\x0d\x0e\x0d\x05\x1f\x04"
        !          30580:             "\x0f\x0d\x0d\x04\x20\x04\x10\x0d\x0c\x04\x20\x04\x10"
        !          30581:             "\x0e\x0a\x05\x1f\x05\x11\x0d\x0a\x05\x1f\x04\x12\x0e"
        !          30582:             "\x09\x04\x20\x04\x13\x0d\x09\x04\x20\x04\x13\x0e\x07"
        !          30583:             "\x05\x1f\x05\x14\x0e\x06\x05\x1f\x04\x16\x0d\x06\x04"
        !          30584:             "\x20\x04\x16\x0e\x05\x04\x20\x04\x17\x0d\x04\x05\x1f"
        !          30585:             "\x05\x17\x0e\x03\x05\x1f\x04\x19\x0d\x03\x04\x20\x04"
        !          30586:             "\x1a\x0d\x02\x04\x20\x04\x1a\x13\x1f\x05\x1b\x12\x1f"
        !          30587:             "\x04\x1c\x11\x13\x00\xff\x01\x0d\x04\x1d\x10\x13\x00"
        !          30588:             "\x0c\x05\x1e\x0f\x13\x00\xff\x01\x0c\x04\x20\x0d\x14"
        !          30589:             "\x00\x0c\x04\x21\x0c\x1f\x05\x21\x0c\x1f\x04\x23\x0a"
        !          30590:             "\x15\x00\xff\x01\x0b\x04\x24\x09\x15\x00\x0a\x05\x25"
        !          30591:             "\x08\x1d\x07\x25\x07\x17\x15\x1f\x06\x17\x16\x1e\x06"
        !          30592:             "\x16\x16\x20\x05\x17\x15\x21\x03\x17" }  },
        !          30593:       /* --- pixel bitmap for cmmib600 char#79 O --- */
        !          30594:       {  79,19619,                      /* character number, location */
        !          30595:          58, 4,   -1, 4,      /* topleft row,col, and botleft row,col */
        !          30596:           { 64,   59, 2,193, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          30597:             "\x21\x0d\x2e\x16\x27\x1c\x22\x0b\x09\x0c\x1e\x0a\x0f"
        !          30598:             "\x0a\x1b\x0a\x13\x09\x18\x0a\x16\x0a\x15\x09\x19\x09"
        !          30599:             "\x13\x0a\x1b\x09\x11\x0a\x1c\x0a\x0f\x0a\x1e\x0a\x0d"
        !          30600:             "\x0a\x1f\x0a\x0c\x0a\x20\x0b\x0a\x0b\x21\x0a\x0a\x0a"
        !          30601:             "\x22\x0a\x09\x0a\x23\x0a\x08\x0b\x23\x0b\xff\x01\x06"
        !          30602:             "\x0b\x24\x0b\xff\x01\x05\x0b\x25\x0b\xff\x01\x04\x0b"
        !          30603:             "\x26\x0b\x03\x0c\x25\x0c\x03\x0b\x26\x0c\xff\x02\x02"
        !          30604:             "\x0c\x26\x0c\xff\x03\x01\x0c\x26\x0c\x01\xff\x02\x0c"
        !          30605:             "\x26\x0c\x02\xff\x01\x0c\x25\x0c\x03\x0c\x25\x0b\x04"
        !          30606:             "\x0c\x24\x0c\x04\x0c\x24\x0b\x05\x0c\x23\x0c\x05\x0c"
        !          30607:             "\x23\x0b\x06\x0c\x22\x0b\x08\x0b\x21\x0c\x08\x0b\x21"
        !          30608:             "\x0b\x09\x0b\x20\x0b\x0b\x0b\x1e\x0b\x0c\x0b\x1d\x0b"
        !          30609:             "\x0d\x0b\x1c\x0b\x0f\x0b\x1a\x0b\x11\x0b\x18\x0b\x13"
        !          30610:             "\x0b\x16\x0b\x15\x0b\x13\x0b\x18\x0c\x0f\x0c\x1a\x0e"
        !          30611:             "\x08\x0e\x1e\x20\x21\x1c\x27\x16\x2e\x0d\x21" }  },
        !          30612:       /* --- pixel bitmap for cmmib600 char#80 P --- */
        !          30613:       {  80,20932,                      /* character number, location */
        !          30614:          57, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          30615:           { 68,   57, 2,187, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          30616:             "\x0e\x29\x1b\x2d\x17\x2f\x15\x31\x1b\x0c\x11\x0d\x1a"
        !          30617:             "\x0c\x13\x0c\x03\x00\xff\x01\x15\x0d\x15\x0b\x02\x00"
        !          30618:             "\xff\x01\x15\x0c\x17\x0b\x01\x00\x14\x0d\x17\x0b\x15"
        !          30619:             "\x0d\x17\x0c\xff\x01\x14\x0c\x18\x0c\x13\x0d\x18\x0c"
        !          30620:             "\x13\x0d\x17\x0c\x01\x00\xff\x01\x13\x0c\x18\x0c\x01"
        !          30621:             "\x00\x12\x0d\x18\x0b\x14\x0d\x17\x0c\x14\x0c\x18\x0b"
        !          30622:             "\x15\x0c\x17\x0c\x14\x0d\x17\x0b\x15\x0d\x16\x0b\x16"
        !          30623:             "\x0c\x16\x0b\x17\x0c\x15\x0b\x17\x0d\x13\x0b\x19\x0d"
        !          30624:             "\x10\x0d\x1a\x28\x1c\x26\x1d\x23\x21\x0d\x28\x00\xff"
        !          30625:             "\x01\x0f\x0c\x29\x00\xff\x01\x0e\x0d\x29\x00\xff\x01"
        !          30626:             "\x0e\x0c\x2a\x00\xff\x01\x0d\x0d\x2a\x00\xff\x01\x0d"
        !          30627:             "\x0c\x2b\x00\xff\x01\x0c\x0d\x2b\x00\xff\x01\x0c\x0c"
        !          30628:             "\x2c\x00\xff\x01\x0b\x0d\x2c\x00\xff\x01\x0b\x0c\x2d"
        !          30629:             "\x00\xff\x01\x0a\x0d\x2d\x00\x0a\x0c\x2f\x1d\x27\x1e"
        !          30630:             "\x25\x1e\x27\x1d\x26" }  },
        !          30631:       /* --- pixel bitmap for cmmib600 char#81 Q --- */
        !          30632:       {  81,22083,                      /* character number, location */
        !          30633:          58, 4,  -16, 4,      /* topleft row,col, and botleft row,col */
        !          30634:           { 64,   74, 3,529, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          30635:             "\xe0\xe0\x5d\xe0\xe0\xe0\x4e\x08\xe0\xe0\xbe\x0e\xe0"
        !          30636:             "\xe0\x6b\x9c\xe0\xe0\x2a\xe0\x1a\xe0\xda\xe0\x4a\xe0"
        !          30637:             "\xaa\xe0\x8a\xe0\x7a\xe0\xa9\xe0\x5a\xe0\xca\xe0\x3a"
        !          30638:             "\xe0\xea\xe0\x1a\xe0\xe0\x1b\xda\xe0\xe0\x3a\xcb\xe0"
        !          30639:             "\xe0\x3b\xab\xe0\xe0\x4b\xaa\xe0\xe0\x6a\x9b\xe0\xe0"
        !          30640:             "\x6a\x8b\xe0\xe0\x7b\xf1\x6b\xe0\xe0\x8b\xf1\x5b\xe0"
        !          30641:             "\xe0\x9b\x4c\xe0\xe0\x9b\x4b\xe0\xe0\xab\xf1\x3c\xe0"
        !          30642:             "\xe0\x9c\xf2\x2c\xe0\xe0\xac\xf3\x1c\xe0\xe0\xac\x1f"
        !          30643:             "\x2c\xe0\xe0\xac\x2f\x1c\xe0\xe0\x9c\x3c\xe0\xe0\x9b"
        !          30644:             "\x4b\xe0\xe0\x9c\x4b\xe0\xe0\x9b\x5b\xe0\xe0\x8c\x5b"
        !          30645:             "\xe0\xe0\x8b\x6b\xe0\xe0\x7b\x8a\xe0\xe0\x7b\x8b\xe0"
        !          30646:             "\xe0\x5b\x9b\xd6\xea\xba\xba\xba\xca\x9d\x9a\xdb\x76"
        !          30647:             "\x45\x7a\xe0\x1a\x65\x83\x6a\xe0\x3a\x53\xa4\x4a\xe0"
        !          30648:             "\x5a\x34\xb4\x2a\xe0\x79\x34\xbe\xe0\xaa\x13\xcd\xe0"
        !          30649:             "\xce\xbb\xe0\xe0\x2d\x7c\xe0\xe0\x5e\x0e\xe0\x21\xe0"
        !          30650:             "\x8e\x0b\xe0\x13\xe0\xbd\x27\xe3\xe0\xe0\xc7\xd4\xe0"
        !          30651:             "\xe0\xc8\xb4\xe0\xe0\xd9\x77\xe0\xe0\xde\x09\x80\xf1"
        !          30652:             "\xe0\xe0\x5e\x08\x90\xe0\xe0\x6e\x06\xa0\xf1\xe0\xe0"
        !          30653:             "\x6e\x05\xb0\xe0\xe0\x6e\x04\xe0\xe0\xe0\x4e\x03\xe0"
        !          30654:             "\xe0\xe0\x6e\x01\xe0\xe0\xe0\x8d\xe0\xe0\xe0\xaa\xe0"
        !          30655:             "\xe0\xe0\xd7\xe0\x50" }  },
        !          30656:       /* --- pixel bitmap for cmmib600 char#82 R --- */
        !          30657:       {  82,23690,                      /* character number, location */
        !          30658:          57, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          30659:           { 70,   58, 3,457, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          30660:             "\xee\x0e\x0a\xe0\xe0\x4e\x0e\x0e\x01\xe0\xde\x0e\x0e"
        !          30661:             "\x03\xe0\xbe\x0e\x0e\x05\xe0\xe0\x3c\xe0\x1e\xe0\xe0"
        !          30662:             "\x1c\xe0\x4c\xe0\xec\xe0\x5c\xe0\xcd\xe0\x6b\x50\xf1"
        !          30663:             "\xe0\x7c\xe0\x8b\x40\xe0\x7c\xe0\x8c\xe0\x9d\xe0\x8c"
        !          30664:             "\x30\xf2\xe0\x6c\xe0\x9c\x30\xe0\x5d\xe0\x8c\x40\xf1"
        !          30665:             "\xe0\x5c\xe0\x9c\x40\xe0\x5c\xe0\x8c\xe0\x9d\xe0\x8c"
        !          30666:             "\xe0\x9c\xe0\x9b\xe0\xac\xe0\x8b\xe0\xbc\xe0\x7b\xe0"
        !          30667:             "\xbd\xe0\x6b\xe0\xcc\xe0\x6b\xe0\xdc\xe0\x4b\xe0\xe0"
        !          30668:             "\x1c\xed\xe0\xe0\x2e\x0e\x0a\xe0\xe0\x4e\x0e\x06\xe0"
        !          30669:             "\xe0\x8e\x0e\x09\xe0\xe0\x5c\xdd\xe0\xe0\x3d\xe0\x1c"
        !          30670:             "\xe0\xe0\x2c\xe0\x3c\xe0\xf1\xe0\x1c\xe0\x4c\xd0\xed"
        !          30671:             "\xe0\x5c\xc0\xf1\xec\xe0\x6c\xc0\xec\xe0\x5d\xe0\xbd"
        !          30672:             "\xe0\x5c\xd0\xf1\xdc\xe0\x6c\xd0\xdc\xe0\x5d\xe0\xbd"
        !          30673:             "\xe0\x5d\xd0\xf2\xcc\xe0\x6c\xe0\xbd\xe0\x5d\xb2\x10"
        !          30674:             "\xf1\xbc\xe0\x6c\xb4\xbc\xe0\x6c\xa5\xad\xe0\x7b\xa4"
        !          30675:             "\xbc\xe0\x8b\x95\x2e\x0e\x01\xe0\x1b\x75\x3e\x0e\x02"
        !          30676:             "\xe0\x1b\x46\x3e\x0e\x02\xe0\x3e\x05\x5e\x0e\x01\xe0"
        !          30677:             "\x5e\x01\xe0\xe0\xe0\xe0\x2a\x8e" }  },
        !          30678:       /* --- pixel bitmap for cmmib600 char#83 S --- */
        !          30679:       {  83,24961,                      /* character number, location */
        !          30680:          58, 5,   -1, 5,      /* topleft row,col, and botleft row,col */
        !          30681:           { 54,   59, 2,195, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          30682:             "\x1c\x0a\x0e\x02\x18\x12\x08\x04\x16\x16\x05\x05\x14"
        !          30683:             "\x19\x03\x06\x12\x0a\x0a\x08\x01\x06\x12\x08\x10\x0c"
        !          30684:             "\x11\x08\x12\x0b\x10\x08\x14\x0a\x0f\x08\x16\x08\x0f"
        !          30685:             "\x08\x18\x07\x0f\x07\x19\x07\x0e\x08\x1a\x06\x0e\x08"
        !          30686:             "\x1a\x05\x03\x00\xff\x02\x0b\x08\x1b\x05\x03\x00\xff"
        !          30687:             "\x01\x0a\x0a\x1a\x04\x04\x00\x0a\x0b\x19\x04\x0e\x0c"
        !          30688:             "\x2a\x0d\x29\x11\x25\x16\x20\x1a\x1c\x1d\x1a\x1e\x18"
        !          30689:             "\x20\x17\x20\x17\x20\x17\x20\x17\x1f\x19\x1e\x1a\x1c"
        !          30690:             "\x1e\x18\x22\x15\x26\x10\x29\x0d\x2a\x0c\x2b\x0b\x2c"
        !          30691:             "\x0a\x06\x00\xff\x02\x04\x04\x1e\x09\x07\x00\x03\x05"
        !          30692:             "\x1e\x09\x07\x00\xff\x01\x03\x05\x1e\x08\x08\x00\x03"
        !          30693:             "\x05\x1e\x07\x0b\x06\x1d\x08\x0b\x07\x1c\x07\x0c\x07"
        !          30694:             "\x1b\x08\x0c\x08\x19\x08\x0c\x0a\x17\x08\x0d\x0b\x15"
        !          30695:             "\x08\x0e\x0d\x12\x08\x0f\x11\x0b\x09\x10\x06\x03\x1c"
        !          30696:             "\x11\x05\x06\x18\x13\x04\x09\x14\x15\x03\x0f\x0b\x19" }  },
        !          30697:       /* --- pixel bitmap for cmmib600 char#84 T --- */
        !          30698:       {  84,26151,                      /* character number, location */
        !          30699:          56, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          30700:           { 63,   56, 3,387, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          30701:             "\x7e\x0e\x0e\x0d\x10\xf1\x6e\x0e\x0e\x0e\x01\x6e\x0e"
        !          30702:             "\x0e\x0e\x6c\xbc\xca\x68\xed\xe0\x17\x67\xe0\x1d\xe0"
        !          30703:             "\x26\x56\xe0\x3c\xe0\x36\x55\xe0\x4c\xe0\x45\x55\xe0"
        !          30704:             "\x3d\xe0\x45\x45\xe0\x4d\xe0\x44\x55\xe0\x4c\xe0\x54"
        !          30705:             "\x45\xe0\x5c\xe0\x54\x45\xe0\x4d\xe0\x54\x44\xe0\x5d"
        !          30706:             "\xe0\x54\x35\xe0\x5c\xe0\x64\x34\xe0\x6c\xe0\x64\x34"
        !          30707:             "\xe0\x5d\xe0\x55\x25\xe0\x5d\xe0\x54\x43\xe0\x6c\xe0"
        !          30708:             "\x73\xe0\xdc\xe0\xd0\xf1\xe0\x9d\xe0\xd0\xf1\xe0\x9c"
        !          30709:             "\xe0\xe0\xf1\xe0\x8d\xe0\xe0\xf1\xe0\x8c\xe0\xe0\x10"
        !          30710:             "\xf1\xe0\x7d\xe0\xe0\x10\xf1\xe0\x7c\xe0\xe0\x20\xf1"
        !          30711:             "\xe0\x6d\xe0\xe0\x20\xf1\xe0\x6c\xe0\xe0\x30\xf1\xe0"
        !          30712:             "\x5d\xe0\xe0\x30\xf1\xe0\x5c\xe0\xe0\x40\xf1\xe0\x4d"
        !          30713:             "\xe0\xe0\x40\xf1\xe0\x4c\xe0\xe0\x50\xf1\xe0\x3d\xe0"
        !          30714:             "\xe0\x50\xf1\xe0\x3c\xe0\xe0\x60\xf1\xe0\x2d\xe0\xe0"
        !          30715:             "\x60\xe0\x2c\xe0\xe0\x70\xf3\x3e\x0e\x09\xe0\x95" }  },
        !          30716:       /* --- pixel bitmap for cmmib600 char#85 U --- */
        !          30717:       {  85,27329,                      /* character number, location */
        !          30718:          57, 5,   -1, 5,      /* topleft row,col, and botleft row,col */
        !          30719:           { 68,   58, 2,241, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          30720:             "\x02\x1c\x11\x14\x01\x00\xff\x01\x01\x1e\x0f\x16\x01"
        !          30721:             "\x1d\x10\x15\x0a\x0c\x20\x07\x11\x0c\x21\x04\x12\x0d"
        !          30722:             "\x20\x05\x12\x0d\x20\x04\x0b\x00\xff\x01\x08\x0c\x21"
        !          30723:             "\x04\x0b\x00\x07\x0d\x20\x05\x12\x0d\x20\x04\x0c\x00"
        !          30724:             "\xff\x01\x07\x0c\x21\x04\x0c\x00\x06\x0d\x20\x05\x12"
        !          30725:             "\x0d\x20\x04\x0d\x00\xff\x01\x06\x0c\x21\x04\x0d\x00"
        !          30726:             "\x05\x0d\x20\x05\x12\x0d\x20\x04\x0e\x00\xff\x01\x05"
        !          30727:             "\x0c\x21\x04\x0e\x00\x04\x0d\x20\x05\x12\x0d\x20\x04"
        !          30728:             "\x0f\x00\xff\x01\x04\x0c\x21\x04\x0f\x00\x03\x0d\x20"
        !          30729:             "\x05\x12\x0d\x20\x04\x10\x00\xff\x01\x03\x0c\x21\x04"
        !          30730:             "\x10\x00\x02\x0d\x20\x05\x12\x0d\x20\x04\x11\x00\xff"
        !          30731:             "\x01\x02\x0c\x21\x04\x11\x00\x01\x0d\x20\x05\x12\x0d"
        !          30732:             "\x20\x04\x12\x00\xff\x01\x01\x0c\x21\x04\x12\x00\x01"
        !          30733:             "\x0c\x20\x05\x12\x0d\x20\x04\x13\x0c\x21\x04\x13\x0c"
        !          30734:             "\x20\x05\x13\x0c\x20\x04\x14\x0c\x1f\x05\x14\x0c\x1f"
        !          30735:             "\x04\x16\x0b\x1e\x05\x16\x0b\x1d\x05\x17\x0b\x1c\x05"
        !          30736:             "\x19\x0a\x1b\x05\x1a\x0b\x19\x06\x1b\x0a\x17\x07\x1d"
        !          30737:             "\x0a\x14\x07\x20\x0b\x10\x08\x22\x0d\x09\x0b\x24\x1e"
        !          30738:             "\x28\x1a\x2c\x16\x33\x0d\x27" }  },
        !          30739:       /* --- pixel bitmap for cmmib600 char#86 V --- */
        !          30740:       {  86,28471,                      /* character number, location */
        !          30741:          57, 6,   -1, 6,      /* topleft row,col, and botleft row,col */
        !          30742:           { 68,   58, 2,219, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          30743:             "\x00\x1b\x16\x12\x01\xff\x01\x1c\x14\x14\x00\x1b\x15"
        !          30744:             "\x13\x08\x0d\x22\x07\x0e\x0d\x22\x05\x10\x0d\x21\x05"
        !          30745:             "\x12\x0c\x21\x04\x13\x0d\x1f\x04\x14\x0d\x1e\x05\x14"
        !          30746:             "\x0d\x1e\x04\x15\x0d\x1d\x04\x17\x0c\x1c\x05\x17\x0c"
        !          30747:             "\x1c\x04\x18\x0d\x1a\x04\x19\x0d\x19\x05\x19\x0d\x18"
        !          30748:             "\x05\x1b\x0c\x18\x04\x1c\x0c\x17\x04\x1d\x0d\x15\x05"
        !          30749:             "\x1d\x0d\x15\x04\x1e\x0d\x14\x04\x20\x0c\x13\x05\x20"
        !          30750:             "\x0c\x13\x04\x21\x0d\x11\x04\x22\x0d\x10\x05\x22\x0d"
        !          30751:             "\x0f\x05\x24\x0c\x0f\x04\x25\x0c\x0e\x04\x26\x0d\x0c"
        !          30752:             "\x05\x26\x0d\x0c\x04\x27\x0d\x0b\x04\x29\x0c\x0a\x05"
        !          30753:             "\x29\x0c\x0a\x04\x2a\x0d\x08\x04\x2b\x0d\x07\x05\x2b"
        !          30754:             "\x0d\x07\x04\x2d\x0c\x06\x04\x2e\x0c\x05\x05\x2e\x0d"
        !          30755:             "\x03\x05\x2f\x0d\x03\x04\x30\x0d\x02\x04\x32\x0c\x01"
        !          30756:             "\x05\x32\x0c\x01\x04\x24\x00\xff\x01\x0f\x10\x25\x00"
        !          30757:             "\x0f\x0f\x26\x00\xff\x01\x10\x0d\x27\x00\x10\x0c\x38"
        !          30758:             "\x0b\x29\x00\xff\x01\x10\x0a\x2a\x00\x11\x08\x2b\x00"
        !          30759:             "\xff\x01\x11\x07\x2c\x00\x11\x06\x3f\x04\x2e" }  },
        !          30760:       /* --- pixel bitmap for cmmib600 char#87 W --- */
        !          30761:       {  87,30049,                      /* character number, location */
        !          30762:          57, 6,   -1, 6,      /* topleft row,col, and botleft row,col */
        !          30763:           { 95,   58, 2,359, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          30764:             "\x00\x1b\x09\x1a\x0d\x13\x01\x1b\x08\x1c\x0c\x2f\x08"
        !          30765:             "\x1c\x0b\x2f\x0a\x1a\x0d\x13\x07\x0d\x17\x0c\x1b\x08"
        !          30766:             "\x0d\x0c\x17\x0c\x1c\x04\x10\x0c\x17\x0d\x1a\x05\x10"
        !          30767:             "\x0c\x17\x0d\x1a\x04\x11\x0c\x17\x0d\x19\x04\x12\x0c"
        !          30768:             "\x18\x0c\x18\x05\x12\x0d\x17\x0c\x18\x04\x13\x0d\x17"
        !          30769:             "\x0c\x17\x04\x14\x0d\x16\x0d\x17\x04\x15\x0c\x15\x0e"
        !          30770:             "\x16\x04\x16\x0c\x15\x0f\x14\x05\x16\x0c\x14\x10\x14"
        !          30771:             "\x04\x17\x0c\x13\x11\x13\x04\x18\x0c\x13\x04\x01\x0c"
        !          30772:             "\x12\x05\x18\x0d\x11\x04\x02\x0c\x12\x04\x19\x0d\x11"
        !          30773:             "\x04\x02\x0c\x11\x04\x1a\x0d\x10\x04\x03\x0c\x10\x05"
        !          30774:             "\x1b\x0c\x0f\x05\x03\x0d\x0f\x04\x1c\x0c\x0f\x04\x04"
        !          30775:             "\x0d\x0e\x05\x1c\x0c\x0e\x04\x05\x0d\x0e\x04\x1d\x0c"
        !          30776:             "\x0d\x05\x06\x0c\x0d\x04\x1e\x0d\x0c\x04\x07\x0c\x0c"
        !          30777:             "\x05\x1e\x0d\x0b\x04\x08\x0c\x0c\x04\x1f\x0d\x0b\x04"
        !          30778:             "\x08\x0c\x0b\x04\x21\x0c\x0a\x04\x09\x0c\x0a\x05\x21"
        !          30779:             "\x0c\x09\x05\x09\x0d\x09\x04\x22\x0c\x09\x04\x0a\x0d"
        !          30780:             "\x08\x04\x23\x0c\x08\x04\x0b\x0d\x08\x04\x23\x0c\x07"
        !          30781:             "\x05\x0c\x0c\x07\x04\x24\x0d\x06\x04\x0d\x0c\x06\x05"
        !          30782:             "\x24\x0d\x05\x04\x0e\x0c\x06\x04\x25\x0d\x04\x05\x0e"
        !          30783:             "\x0c\x05\x04\x27\x0c\x04\x04\x0f\x0c\x04\x05\x27\x0c"
        !          30784:             "\x03\x05\x0f\x0d\x03\x04\x28\x0c\x03\x04\x10\x0d\x02"
        !          30785:             "\x04\x29\x0c\x02\x04\x11\x0d\x02\x04\x29\x0c\x01\x05"
        !          30786:             "\x12\x0c\x01\x04\x2a\x11\x13\x11\x2a\x10\x14\x10\x2b"
        !          30787:             "\x10\x14\x0f\x2d\x0e\x15\x0f\x2d\x0d\x16\x0e\x2e\x0d"
        !          30788:             "\x16\x0d\x2f\x0c\x18\x0c\x2f\x0c\x18\x0b\x30\x0b\x19"
        !          30789:             "\x0b\x30\x0a\x1a\x0a\x31\x0a\x1a\x09\x33\x08\x1b\x09"
        !          30790:             "\x33\x07\x1c\x08\x34\x07\x1c\x07\x35\x06\x1e\x06\x35"
        !          30791:             "\x06\x1e\x05\x37\x04\x1f\x04\x2a" }  },
        !          30792:       /* --- pixel bitmap for cmmib600 char#88 X --- */
        !          30793:       {  88,31546,                      /* character number, location */
        !          30794:          57, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          30795:           { 76,   57, 2,205, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          30796:             "\xff\x02\x0f\x1c\x0a\x17\x0f\x1c\x0a\x16\x18\x0e\x15"
        !          30797:             "\x0a\x1f\x0e\x16\x06\x23\x0d\x15\x05\x25\x0e\x13\x05"
        !          30798:             "\x27\x0d\x12\x05\x28\x0e\x10\x05\x29\x0e\x0f\x05\x2b"
        !          30799:             "\x0e\x0d\x05\x2c\x0e\x0c\x05\x2e\x0e\x0a\x05\x2f\x0e"
        !          30800:             "\x09\x05\x31\x0d\x08\x05\x32\x0e\x06\x05\x34\x0d\x05"
        !          30801:             "\x05\x35\x0e\x03\x05\x37\x0d\x02\x05\x38\x13\x3a\x11"
        !          30802:             "\x3b\x10\x1d\x00\xff\x01\x20\x0e\x1e\x00\x21\x0d\x1e"
        !          30803:             "\x00\xff\x01\x21\x0e\x1d\x00\xff\x01\x22\x0e\x1c\x00"
        !          30804:             "\x22\x0f\x3c\x10\x3b\x11\x3a\x13\x38\x05\x02\x0d\x37"
        !          30805:             "\x05\x03\x0e\x35\x05\x05\x0d\x34\x05\x06\x0e\x31\x06"
        !          30806:             "\x08\x0d\x30\x06\x09\x0e\x2e\x06\x0b\x0d\x2d\x05\x0d"
        !          30807:             "\x0e\x2b\x05\x0f\x0d\x2a\x05\x10\x0e\x28\x05\x11\x0e"
        !          30808:             "\x27\x05\x13\x0e\x25\x05\x14\x0e\x24\x05\x16\x0e\x22"
        !          30809:             "\x05\x17\x0e\x21\x05\x19\x0e\x1f\x05\x1a\x0e\x1e\x05"
        !          30810:             "\x1c\x0d\x1a\x0a\x1b\x0e\x12\x16\x10\x1b\x0a\xff\x01"
        !          30811:             "\x18\x0e\x1d\x09\x00\x01\x16\x10\x1b\x0a" }  },
        !          30812:       /* --- pixel bitmap for cmmib600 char#89 Y --- */
        !          30813:       {  89,32822,                      /* character number, location */
        !          30814:          57, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          30815:           { 69,   57, 2,191, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          30816:             "\x01\x1c\x15\x13\x00\xff\x01\x1d\x14\x14\x01\x1c\x15"
        !          30817:             "\x13\x08\x0e\x21\x07\x10\x0d\x20\x06\x12\x0e\x1e\x05"
        !          30818:             "\x14\x0e\x1d\x05\x16\x0e\x1c\x04\x17\x0e\x1b\x04\x19"
        !          30819:             "\x0e\x19\x04\x1a\x0e\x18\x05\x1a\x0e\x17\x05\x1c\x0e"
        !          30820:             "\x15\x05\x1d\x0e\x14\x05\x1f\x0e\x12\x05\x20\x0e\x11"
        !          30821:             "\x05\x22\x0e\x0f\x05\x23\x0e\x0e\x05\x24\x0e\x0d\x05"
        !          30822:             "\x26\x0e\x0b\x05\x27\x0e\x0a\x05\x29\x0e\x08\x05\x2a"
        !          30823:             "\x0e\x07\x05\x2c\x0d\x07\x04\x2d\x0e\x05\x04\x2e\x0e"
        !          30824:             "\x04\x04\x30\x0e\x02\x05\x30\x0e\x01\x05\x32\x12\x33"
        !          30825:             "\x11\x35\x0f\x36\x0e\x37\x0d\x39\x0b\x25\x00\xff\x01"
        !          30826:             "\x14\x0c\x25\x00\xff\x01\x14\x0b\x26\x00\xff\x01\x13"
        !          30827:             "\x0c\x26\x00\xff\x01\x13\x0b\x27\x00\xff\x01\x12\x0c"
        !          30828:             "\x27\x00\xff\x01\x12\x0b\x28\x00\xff\x01\x11\x0c\x28"
        !          30829:             "\x00\xff\x01\x11\x0b\x29\x00\xff\x01\x10\x0c\x29\x00"
        !          30830:             "\xff\x02\x07\x1d\x21\x00\x07\x1c\x22" }  },
        !          30831:       /* --- pixel bitmap for cmmib600 char#90 Z --- */
        !          30832:       {  90,34039,                      /* character number, location */
        !          30833:          57, 5,    0, 5,      /* topleft row,col, and botleft row,col */
        !          30834:           { 62,   57, 2,187, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          30835:             "\xff\x01\x11\x2d\x10\x2e\x10\x2d\x11\x0f\x10\x0d\x11"
        !          30836:             "\x0c\x13\x0d\x12\x0a\x14\x0d\x13\x08\x15\x0d\x14\x07"
        !          30837:             "\x15\x0d\x14\x07\x15\x0e\x14\x06\x15\x0e\x15\x05\x15"
        !          30838:             "\x0e\x15\x06\x14\x0e\x16\x05\x14\x0e\x17\x04\x14\x0e"
        !          30839:             "\x17\x05\x13\x0e\x18\x05\x13\x0d\x19\x04\x13\x0d\x1a"
        !          30840:             "\x04\x12\x0d\x1b\x03\x12\x0d\x30\x0d\x30\x0d\x30\x0d"
        !          30841:             "\x30\x0e\x2f\x0e\x2f\x0e\x2f\x0e\x2f\x0e\x2f\x0e\x2f"
        !          30842:             "\x0e\x30\x0d\x30\x0d\x30\x0d\x30\x0d\x30\x0d\x12\x03"
        !          30843:             "\x1b\x0d\x12\x04\x1a\x0d\x13\x04\x19\x0d\x13\x05\x18"
        !          30844:             "\x0e\x13\x04\x18\x0e\x14\x04\x17\x0e\x14\x05\x16\x0e"
        !          30845:             "\x15\x04\x16\x0e\x15\x05\x15\x0e\x16\x05\x14\x0e\x16"
        !          30846:             "\x05\x15\x0d\x16\x06\x14\x0d\x17\x06\x13\x0d\x17\x06"
        !          30847:             "\x13\x0d\x17\x07\x12\x0d\x16\x09\x11\x0d\x15\x0a\x11"
        !          30848:             "\x0d\x14\x0c\x10\x0e\x10\x10\x0e\x00\xff\x01\x01\x2e"
        !          30849:             "\x0f\x2f\x10\x2d\x10" }  },
        !          30850:       /* --- pixel bitmap for cmmib600 char#91 \flat --- */
        !          30851:       {  91,136284,                     /* character number, location */
        !          30852:          62, 5,   -1, 5,      /* topleft row,col, and botleft row,col */
        !          30853:           { 27,   63, 3,151, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          30854:             "\x13\xe0\x9f\xe4\xe0\x9f\x64\xe0\x94\x59\x94\x2e\x01"
        !          30855:             "\x6e\x08\x5e\x09\x4e\x0a\x39\x5b\x26\xaa\x15\xba\x14"
        !          30856:             "\xcb\x0f\x54\xda\x04\xcb\x0f\x24\xca\x1f\x14\xba\x2f"
        !          30857:             "\x14\xaa\x34\x9a\x44\x99\x54\x8a\x54\x7a\x64\x79\x74"
        !          30858:             "\x69\x84\x59\x94\x49\xa4\x39\xb4\x28\xd4\x18\xec\xe0"
        !          30859:             "\x1a\xe0\x39\xe0\x47\xe0\x66\xe0\x74\xe0\x97" }  },
        !          30860:       /* --- pixel bitmap for cmmib600 char#92 \natural --- */
        !          30861:       {  92,137179,                     /* character number, location */
        !          30862:          61, 6,  -17, 6,      /* topleft row,col, and botleft row,col */
        !          30863:           { 25,   78, 3,156, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          30864:             "\x12\xe0\x8f\xc4\xe0\x74\xe0\x47\xe0\x29\xdc\xbe\x9e"
        !          30865:             "\x02\x7e\x04\x5e\x06\x2e\x05\x0f\x3e\x0b\x0e\x05\x2e"
        !          30866:             "\x06\x5e\x04\x7e\x02\x9e\xbc\xd9\xe0\x24\x0f\xe4\xe0"
        !          30867:             "\x34\x0f\x34\xe0\x34\x04\xe0\x29\xdc\xbe\x9e\x02\x7e"
        !          30868:             "\x04\x5e\x06\x2e\x05\x0f\x3e\x0b\x0e\x05\x2e\x06\x5e"
        !          30869:             "\x04\x7e\x02\x9e\xbc\xd9\xe0\x27\xe0\x44\xf6\xe0\x74" }  },
        !          30870:       /* --- pixel bitmap for cmmib600 char#93 \sharp --- */
        !          30871:       {  93,138232,                     /* character number, location */
        !          30872:          59, 5,  -17, 5,      /* topleft row,col, and botleft row,col */
        !          30873:           { 27,   76, 3,221, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          30874:             "\xf5\xe0\x54\x40\x53\xb4\x40\xf4\x44\xb4\x40\x44\xb4"
        !          30875:             "\x13\xf1\x44\xb8\x44\x9a\x44\x6d\x44\x4e\x01\x44\x1e"
        !          30876:             "\x04\xf1\x4e\x09\x2e\x0b\x1e\x0a\x2f\x1e\x09\x4e\x04"
        !          30877:             "\x14\x4e\x01\x44\x4d\x64\x4a\x94\x4f\x18\xb4\x43\x14"
        !          30878:             "\xb4\x40\xfe\x44\xb4\x40\xf1\x44\xb4\x40\x44\xb4\x13"
        !          30879:             "\xf1\x44\xb8\x44\x9a\x44\x6d\x44\x4e\x01\x44\x1e\x04"
        !          30880:             "\xf1\x4e\x09\x2e\x0b\x1e\x0a\x2f\x1e\x09\x4e\x04\x14"
        !          30881:             "\x4e\x01\x44\x4d\x64\x4a\x94\x4f\x18\xb4\x43\x14\xb4"
        !          30882:             "\x84\xb3\x50\xf5\x44\xe0\x50" }  },
        !          30883:       /* --- pixel bitmap for cmmib600 char#94 \smile --- */
        !          30884:       {  94,139346,                     /* character number, location */
        !          30885:          32, 5,   11, 5,      /* topleft row,col, and botleft row,col */
        !          30886:           { 85,   21, 2,71, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          30887:             "\x01\x02\x4f\x02\x01\x04\x4d\x09\x4b\x05\x01\x05\x49"
        !          30888:             "\x05\x02\x06\x47\x06\x03\x07\x43\x07\x05\x07\x41\x07"
        !          30889:             "\x07\x07\x3f\x07\x0a\x07\x3b\x07\x0d\x08\x37\x08\x0f"
        !          30890:             "\x09\x33\x09\x12\x09\x2f\x09\x15\x0c\x27\x0c\x18\x0e"
        !          30891:             "\x1f\x0e\x1c\x12\x13\x12\x20\x33\x24\x2f\x29\x29\x2f"
        !          30892:             "\x23\x36\x1b\x3f\x11\x22" }  },
        !          30893:       /* --- pixel bitmap for cmmib600 char#95 \frown --- */
        !          30894:       {  95,140275,                     /* character number, location */
        !          30895:          33, 5,   10, 5,      /* topleft row,col, and botleft row,col */
        !          30896:           { 85,   23, 2,79, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          30897:             "\x23\x0f\x40\x1b\x37\x21\x31\x27\x2b\x2d\x26\x31\x22"
        !          30898:             "\x12\x11\x12\x1e\x0e\x1d\x0e\x1b\x0b\x25\x0b\x18\x0a"
        !          30899:             "\x2b\x0a\x15\x09\x2f\x09\x12\x08\x35\x08\x0f\x08\x37"
        !          30900:             "\x08\x0d\x07\x3b\x07\x0b\x07\x3d\x07\x09\x06\x41\x06"
        !          30901:             "\x07\x06\x43\x06\x05\x06\x45\x06\x03\x06\x47\x06\x02"
        !          30902:             "\x05\x49\x05\x01\x05\x4b\x09\x4d\x04\x01\x02\x4f\x02"
        !          30903:             "\x01" }  },
        !          30904:       /* --- pixel bitmap for cmmib600 char#96 \ell --- */
        !          30905:       {  96,110258,                     /* character number, location */
        !          30906:          59, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
        !          30907:           { 37,   60, 3,319, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          30908:             "\xe0\xe5\xe0\xe0\x29\xe0\xcc\xe0\xa6\x35\xe0\x86\x54"
        !          30909:             "\xe0\x77\x54\xe0\x67\x64\xe0\x66\x74\xe0\x57\x74\xf1"
        !          30910:             "\xe0\x47\x84\xe0\x38\x84\xe0\x28\x85\xe0\x28\x84\xe0"
        !          30911:             "\x29\x84\x10\xf1\xe0\x18\x85\x10\xe9\x84\xe0\x28\x85"
        !          30912:             "\xe0\x19\x84\xe0\x29\x75\xe0\x29\x65\xe0\x29\x74\xe0"
        !          30913:             "\x39\x65\xe0\x39\x55\xe0\x3a\x55\xe0\x39\x55\xe0\x49"
        !          30914:             "\x45\xe0\x59\x35\xe0\x5a\x25\xe0\x69\x26\xe0\x69\x16"
        !          30915:             "\xe0\x79\x15\xe0\x7e\x01\xe0\x8e\xe0\x9d\xe0\xac\xe0"
        !          30916:             "\xbb\xe0\xca\xe0\xca\xe0\x50\xf2\x89\xe0\x60\x88\xe0"
        !          30917:             "\xe9\xe0\xda\xe0\xcb\xe0\xbc\xe0\x96\x17\xe0\x86\x27"
        !          30918:             "\xe0\x76\x37\xe0\x42\x15\x47\xe0\x34\x13\x66\xe0\x25"
        !          30919:             "\xa7\xd6\xb7\xc6\xd6\xa7\xe0\x16\x77\xe0\x4e\x03\xe0"
        !          30920:             "\x7e\xe0\xba\xb9" }  },
        !          30921:       /* --- pixel bitmap for cmmib600 char#97 a --- */
        !          30922:       {  97,35137,                      /* character number, location */
        !          30923:          38, 4,   -1, 4,      /* topleft row,col, and botleft row,col */
        !          30924:           { 46,   39, 3,235, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          30925:             "\xe0\x58\xe0\xe0\x7d\xe0\xe0\x2e\x04\x34\xe0\x68\x6e"
        !          30926:             "\xe0\x28\xac\xe0\x18\xcb\xe8\xea\xd8\xe0\x1a\xc9\xe0"
        !          30927:             "\x19\xc9\xe0\x29\xba\xe0\x29\xb9\xe0\x2a\xaa\xe0\x29"
        !          30928:             "\xb9\xe0\x39\xaa\xe0\x39\xaa\xe0\x2a\x9b\xe0\x29\x90"
        !          30929:             "\xf1\x1a\xe0\x39\x90\x1a\xe0\x2a\x9b\xe0\x29\xaf\x1a"
        !          30930:             "\xe0\x39\xaa\xe0\x2a\xaa\xe0\x29\xbf\x19\xe0\x39\x74"
        !          30931:             "\x09\xe0\x2a\x65\x0f\x19\xe0\x29\x74\x10\x18\xe0\x29"
        !          30932:             "\x74\x28\xe0\x1a\x64\x38\xeb\x64\x48\xcc\x54\x68\x9e"
        !          30933:             "\x54\x78\x66\x38\x34\x9e\x04\x5d\xce\x8b\xe0\x28\xe6"
        !          30934:             "\x80" }  },
        !          30935:       /* --- pixel bitmap for cmmib600 char#98 b --- */
        !          30936:       {  98,36129,                      /* character number, location */
        !          30937:          58, 4,   -1, 4,      /* topleft row,col, and botleft row,col */
        !          30938:           { 37,   59, 3,277, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          30939:             "\xb8\xe0\x40\xf1\x4e\x01\xe0\x40\x3e\x02\xe0\x8e\x01"
        !          30940:             "\xe0\x40\xf1\x99\xe0\x50\xf1\x8a\xe0\x50\xf1\x89\xe0"
        !          30941:             "\x60\xf1\x7a\xe0\x60\xf1\x79\xe0\x70\xf1\x6a\xe0\x70"
        !          30942:             "\xf1\x69\xe0\x80\x5a\xe0\xda\x48\xe0\x19\x2e\xce\x0d"
        !          30943:             "\x9e\x01\x68\x8d\xa7\x7c\xb8\x6a\xe8\x4a\xe0\x18\x4a"
        !          30944:             "\xe0\x19\xf1\x39\xe0\x29\xf1\x2a\xe0\x29\xf1\x29\xe0"
        !          30945:             "\x39\xf1\x1a\xe0\x2a\xf1\x19\xe0\x3a\x19\xe0\x2e\x07"
        !          30946:             "\xe0\x2a\x1f\x19\xe0\x3a\x19\xe0\x2b\x19\xe0\x2a\x28"
        !          30947:             "\xe0\x3a\x2f\x18\xe0\x2a\x38\xe0\x29\x48\xe0\x19\x58"
        !          30948:             "\xe0\x18\x77\xe9\x78\xc9\x97\xb9\xb7\x98\xe7\x69\xe0"
        !          30949:             "\x2e\x05\xe0\x6e\x01\xe0\xb8\xe0\x50" }  },
        !          30950:       /* --- pixel bitmap for cmmib600 char#99 c --- */
        !          30951:       {  99,37100,                      /* character number, location */
        !          30952:          38, 4,   -1, 4,      /* topleft row,col, and botleft row,col */
        !          30953:           { 38,   39, 3,165, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          30954:             "\xe0\x79\xe0\xbe\x02\xe0\x6e\x06\xe0\x29\x77\xd9\xb5"
        !          30955:             "\xb9\xc7\x99\xc8\x89\xc9\x79\xca\x6a\xca\x69\xda\x59"
        !          30956:             "\xea\x4a\xe9\x5a\xe0\x17\x5a\xe0\x42\x8a\xe0\xdb\xe0"
        !          30957:             "\xc0\xf2\x1a\xe0\xdb\xe0\xdf\x3a\xe0\xef\x29\xe0\xe0"
        !          30958:             "\x19\xe0\xc2\x28\xe0\xb4\x18\xe0\xa5\x19\xe0\x85\x38"
        !          30959:             "\xe0\x66\x58\xe0\x46\x78\xe8\x99\x8a\xce\x0a\xe0\x2e"
        !          30960:             "\x06\xe0\x8b\xe0\x1a" }  },
        !          30961:       /* --- pixel bitmap for cmmib600 char#100 d --- */
        !          30962:       { 100,38154,                      /* character number, location */
        !          30963:          58, 4,   -1, 4,      /* topleft row,col, and botleft row,col */
        !          30964:           { 46,   59, 3,341, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          30965:             "\xe0\xe0\xa8\xe0\xe0\x3e\x01\xf1\xe0\xe0\x2e\x02\xe0"
        !          30966:             "\xe0\x3e\x01\xf1\xe0\xe0\x89\x10\xf1\xe0\xe0\x7a\x10"
        !          30967:             "\xf1\xe0\xe0\x79\x20\xf1\xe0\xe0\x6a\x20\xf1\xe0\xe0"
        !          30968:             "\x69\x30\xf1\xe0\xe0\x5a\x30\xf1\xe0\xe0\x59\x40\xe0"
        !          30969:             "\xe0\x4a\xe0\x98\x5a\xe0\x6d\x39\xe0\x4e\x04\x19\xe0"
        !          30970:             "\x38\x6e\x01\xe0\x18\xad\xe8\xcb\xe8\xea\xd8\xe0\x1a"
        !          30971:             "\xc9\xe0\x1a\xb9\xe0\x29\xba\xe0\x29\xb9\xe0\x2a\xaa"
        !          30972:             "\xe0\x2a\xa9\xe0\x39\xaa\xe0\x39\xaa\xe0\x2a\x9b\xe0"
        !          30973:             "\x2a\x80\xf1\x1a\xe0\x39\x90\x1a\xe0\x2a\x9b\xe0\x2a"
        !          30974:             "\x9f\x1a\xe0\x39\xaf\x1a\xe0\x2a\xaf\x19\xe0\x39\x74"
        !          30975:             "\x09\xe0\x2a\x6e\xe0\x2a\x64\x19\xe0\x29\x74\x28\xe0"
        !          30976:             "\x29\x74\x28\xe0\x1a\x64\x38\xeb\x64\x48\xcc\x54\x68"
        !          30977:             "\x9e\x54\x78\x66\x38\x34\x9e\x04\x5d\xce\x8b\xe0\x28"
        !          30978:             "\xe6\x84" }  },
        !          30979:       /* --- pixel bitmap for cmmib600 char#101 e --- */
        !          30980:       { 101,39183,                      /* character number, location */
        !          30981:          38, 4,   -1, 4,      /* topleft row,col, and botleft row,col */
        !          30982:           { 38,   39, 3,189, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          30983:             "\xe0\x6a\xe0\xbe\x02\xe0\x5e\x06\xe0\x2a\x77\xd8\xb6"
        !          30984:             "\xb9\xd6\x99\xe0\x15\x89\xe0\x25\x79\xe0\x35\x69\xe0"
        !          30985:             "\x45\x5a\xe0\x45\x59\xe0\x46\x4a\xe0\x45\x59\xe0\x46"
        !          30986:             "\x4a\xe0\x27\x5a\xe8\x5b\x9b\x7e\x0e\x01\x9e\x0d\xbe"
        !          30987:             "\x07\xe0\x2b\xe0\xdf\x3a\xe0\xef\x29\xe0\xe0\x10\x18"
        !          30988:             "\xe0\xc2\x28\xe0\xb4\x19\xe0\x95\x28\xe0\x85\x38\xe0"
        !          30989:             "\x66\x58\xe0\x46\x78\xe8\x99\x8a\xde\x09\xe0\x3e\x05"
        !          30990:             "\xe0\x8b\xe0\x10" }  },
        !          30991:       /* --- pixel bitmap for cmmib600 char#102 f --- */
        !          30992:       { 102,40419,                      /* character number, location */
        !          30993:          59, 5,  -17, 5,      /* topleft row,col, and botleft row,col */
        !          30994:           { 47,   76, 3,331, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          30995:             "\xe0\xe0\x67\xe0\xe0\xac\xe0\xe0\x5e\x01\xe0\xe0\x28"
        !          30996:             "\x46\xe0\xe8\x48\xe0\xd7\x49\xe0\xc8\x3a\xf1\xe0\xb9"
        !          30997:             "\x3a\xe0\xb8\x49\xe0\xb9\x49\xe0\xb9\x48\xe0\xc9\x64"
        !          30998:             "\xe0\xe9\xe0\xe0\x9a\xe0\xf3\xe0\x99\xe0\x10\xe0\x8a"
        !          30999:             "\xe0\x10\xf1\xe0\x89\xe0\x20\xf3\xbe\x0e\x04\x40\xf3"
        !          31000:             "\xe0\x79\xe0\x30\xf1\xe0\x6a\xe0\x30\xf3\xe0\x69\xe0"
        !          31001:             "\x40\xe0\x5a\xe0\x40\xf4\xe0\x59\xe0\x50\xe0\x4a\xe0"
        !          31002:             "\x50\xf3\xe0\x49\xe0\x60\xe0\x3a\xe0\x60\xf4\xe0\x39"
        !          31003:             "\xe0\x70\xe0\x2a\xe0\x70\xf3\xe0\x29\xe0\x80\xf3\xe0"
        !          31004:             "\x19\xe0\x90\xe0\x18\xe0\xe4\x78\xe0\xc7\x58\xe0\xc9"
        !          31005:             "\x48\xe0\xba\x48\xe0\xba\x47\xe0\xca\x37\xe0\xd9\x47"
        !          31006:             "\xe0\xd9\x37\xe0\xe8\x46\xe0\xe0\x16\x56\xe0\xe0\x3e"
        !          31007:             "\x01\xe0\xe0\x6b\xe0\xe0\xa7\xe0\xe0\x7e" }  },
        !          31008:       /* --- pixel bitmap for cmmib600 char#103 g --- */
        !          31009:       { 103,41546,                      /* character number, location */
        !          31010:          38, 0,  -17, 0,      /* topleft row,col, and botleft row,col */
        !          31011:           { 44,   55, 3,299, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          31012:             "\xe0\x98\xe0\xe0\x5d\xe0\xee\x04\x34\xe0\x39\x6e\xe8"
        !          31013:             "\xac\xd8\xcb\xc8\xea\xb8\xe0\x1a\xa9\xe0\x1a\x99\xe0"
        !          31014:             "\x29\x9a\xe0\x29\x99\xe0\x2a\x8a\xe0\x2a\x89\xe0\x39"
        !          31015:             "\x8a\xe0\x39\x8a\xe0\x2a\x7b\xe0\x2a\x20\xf1\x5a\xe0"
        !          31016:             "\x39\x30\x5a\xe0\x2a\x7b\xe0\x2a\x30\xf1\x4a\xe0\x39"
        !          31017:             "\x40\xf1\x4a\xe0\x2a\x40\xf1\x49\xe0\x39\x50\xf1\x49"
        !          31018:             "\xe0\x2a\x50\x58\xe0\x29\xb8\xe0\x1a\xc8\xdb\xc8\xcc"
        !          31019:             "\xd8\x9d\xe0\x18\x6e\x01\xe0\x2e\x0e\xe0\x4e\x2a\xe0"
        !          31020:             "\x78\x59\xe0\xe0\x79\x80\xf1\xe0\xca\x80\xe0\xc9\xd4"
        !          31021:             "\xe0\x49\xb7\xe0\x2a\xa9\xe0\x19\xaa\xe0\x19\xaa\xea"
        !          31022:             "\xaa\xda\xb9\xda\xc9\xca\xd8\xca\xe8\xaa\xe0\x4e\x0a"
        !          31023:             "\xe0\x7e\x07\xe0\xdd\xe0\xa0" }  },
        !          31024:       /* --- pixel bitmap for cmmib600 char#104 h --- */
        !          31025:       { 104,42647,                      /* character number, location */
        !          31026:          58, 5,   -1, 5,      /* topleft row,col, and botleft row,col */
        !          31027:           { 48,   59, 3,355, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          31028:             "\xe8\xe0\xe0\x5e\x01\xe0\xc0\xf1\x6e\x02\xe0\xc0\x7e"
        !          31029:             "\x01\xe0\xc0\xf1\xc9\xe0\xd0\xf1\xba\xe0\xd0\xf1\xb9"
        !          31030:             "\xe0\xe0\xf1\xaa\xe0\xe0\xf1\xa9\xe0\xe0\x10\xf1\x9a"
        !          31031:             "\xe0\xe0\x10\xf1\x99\xe0\xe0\x20\x8a\xe0\xe0\xaa\x69"
        !          31032:             "\xe0\x99\x5e\xe0\x69\x3e\x04\xe0\x3a\x16\x69\xe0\x2e"
        !          31033:             "\x01\x98\xe0\x2d\xc8\xe0\x1c\xd8\xec\xe8\x80\xf1\x6b"
        !          31034:             "\xe0\x19\x70\x6a\xe0\x29\xca\xe0\x2a\xca\xe0\x29\x80"
        !          31035:             "\xf1\x59\xe0\x39\x80\x4a\xe0\x2a\xca\xe0\x29\x90\xf1"
        !          31036:             "\x49\xe0\x39\x90\x3a\xe0\x2a\xca\xe0\x29\xd9\xe0\x39"
        !          31037:             "\xd9\xe0\x2a\xca\xe0\x29\xda\xe0\x1a\xb0\xf1\x29\xe0"
        !          31038:             "\x29\x84\x1a\xe0\x1a\x75\x1a\xe0\x19\x84\x29\xe0\x29"
        !          31039:             "\x84\x29\xe0\x1a\x74\x2a\xe0\x19\x75\x2a\xe0\x19\x74"
        !          31040:             "\x39\xe0\x38\x65\x39\xe0\x38\x55\x49\xe0\x47\x45\x58"
        !          31041:             "\xe0\x6d\x77\xe0\x8b\xa4\xe0\xb7\xa0" }  },
        !          31042:       /* --- pixel bitmap for cmmib600 char#105 i --- */
        !          31043:       { 105,43677,                      /* character number, location */
        !          31044:          59, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          31045:           { 28,   60, 3,191, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          31046:             "\xe0\x64\xe0\x87\xe0\x69\x20\xf3\xe0\x2a\x20\xe0\x29"
        !          31047:             "\xe0\x67\xe0\x84\x60\xfa\xe0\xe0\xb6\xe0\x5b\xe0\x2e"
        !          31048:             "\xd5\x38\xb4\x58\xa4\x69\x84\x79\x75\x79\x74\x89\x65"
        !          31049:             "\x7a\x50\xf1\x14\x89\x65\x7a\x64\x89\xe0\x4a\x70\xf1"
        !          31050:             "\xb9\x80\xaa\xe0\x49\xe0\x4a\x90\xf1\x99\xa0\x8a\xe0"
        !          31051:             "\x49\xe0\x4a\xb0\xf1\x79\x84\x6a\x75\xf1\x69\x84\x10"
        !          31052:             "\x5a\x74\x79\x75\x79\x74\x98\x65\x98\x55\xb7\x45\xde"
        !          31053:             "\xe0\x1b\xe0\x57\xa0" }  },
        !          31054:       /* --- pixel bitmap for cmmib600 char#106 j --- */
        !          31055:       { 106,44730,                      /* character number, location */
        !          31056:          59,-1,  -17,-1,      /* topleft row,col, and botleft row,col */
        !          31057:           { 38,   76, 3,301, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          31058:             "\xe0\xe0\x44\xe0\xe0\x48\xf1\xe0\xe0\x19\xf2\xe0\xea"
        !          31059:             "\xe0\xe9\xe0\xe0\x27\xe0\xe0\x44\x40\xfa\xe0\xe0\xa0"
        !          31060:             "\xe0\x77\xe0\xe0\x1c\xe0\xae\x01\xe0\x86\x48\xe0\x55"
        !          31061:             "\x68\xe0\x45\x79\xe0\x25\x89\xe0\x15\x99\xe5\xa9\xe4"
        !          31062:             "\xb9\xd5\xb9\xd4\xba\xc5\xba\xc4\xc9\xe0\xe0\x19\x40"
        !          31063:             "\xf1\xe0\xaa\x40\xf1\xe0\xa9\x50\xf1\xe0\x9a\x50\xf1"
        !          31064:             "\xe0\x99\x60\xf1\xe0\x8a\x60\xf1\xe0\x89\x70\xf1\xe0"
        !          31065:             "\x7a\x70\xf1\xe0\x79\x80\xf1\xe0\x6a\x80\xf1\xe0\x69"
        !          31066:             "\x90\xf1\xe0\x5a\x90\xf1\xe0\x59\xa0\xf1\xe0\x4a\xa0"
        !          31067:             "\xe0\x49\xe0\x14\xa9\xd7\x8a\xc9\x79\xca\x79\xca\x69"
        !          31068:             "\xda\x5a\xd9\x69\xe9\x59\xe0\x18\x58\xe0\x36\x59\xe0"
        !          31069:             "\x5e\x03\xe0\x9d\xe0\xd8\xe0\xb9" }  },
        !          31070:       /* --- pixel bitmap for cmmib600 char#107 k --- */
        !          31071:       { 107,45899,                      /* character number, location */
        !          31072:          58, 4,   -1, 4,      /* topleft row,col, and botleft row,col */
        !          31073:           { 43,   59, 3,319, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          31074:             "\xe8\xe0\x70\xf1\x7e\x01\xe0\x70\x6e\x02\xe0\xee\x01"
        !          31075:             "\xe0\x70\xf1\xc9\xe0\x80\xf1\xba\xe0\x80\xf1\xb9\xe0"
        !          31076:             "\x90\xf1\xaa\xe0\x90\xf1\xa9\xe0\xa0\xf1\x9a\xe0\xa0"
        !          31077:             "\xf1\x99\xe0\xb0\x8a\xe0\xe0\x5a\xe0\x25\xc9\xea\xa9"
        !          31078:             "\xcd\x8a\xb5\x54\x8a\xa4\x56\x89\x95\x49\x79\x84\x5a"
        !          31079:             "\x6a\x74\x6a\x6a\x64\x6a\x79\x64\x7a\x79\x54\x8a\x6a"
        !          31080:             "\x44\x99\x7a\x34\xb7\x89\x34\xd4\xa9\x15\xe0\xde\xe0"
        !          31081:             "\xe0\x1d\xe0\xe0\x2e\x02\xe0\xde\x06\xe0\x8e\x09\xe0"
        !          31082:             "\x6a\x2d\xe0\x49\x6b\xe0\x39\x8a\xe0\x1a\x99\xe0\x1a"
        !          31083:             "\x9a\xc0\xf1\x29\xb9\x84\x1a\xaa\x75\x1a\xa9\x84\x29"
        !          31084:             "\xb9\x84\x29\xb9\x75\x1a\xb9\x74\x2a\xb9\x65\x29\xd8"
        !          31085:             "\x64\x39\xd8\x54\x49\xe8\x35\x48\xe0\x2e\x57\xe0\x5a"
        !          31086:             "\x94\xe0\x86\x95" }  },
        !          31087:       /* --- pixel bitmap for cmmib600 char#108 l --- */
        !          31088:       { 108,46799,                      /* character number, location */
        !          31089:          58, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          31090:           { 21,   59, 3,181, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          31091:             "\xd8\xf1\x6e\x01\x5e\x02\x6e\x01\xf1\xb9\x10\xf1\xaa"
        !          31092:             "\x10\xf1\xa9\x20\xf1\x9a\x20\xf1\x99\x30\xf1\x8a\x30"
        !          31093:             "\xf1\x89\x40\xf1\x7a\x40\xf1\x79\x50\xf1\x6a\x50\xf1"
        !          31094:             "\x69\x60\xf1\x5a\x60\xf1\x59\x70\xf1\x4a\x70\xf1\x49"
        !          31095:             "\x80\xf1\x3a\x80\xf1\x39\x90\xf1\x2a\x90\xf1\x29\xa0"
        !          31096:             "\xf1\x1a\xa0\xf1\x19\x74\x0a\x6e\x01\x64\x1f\x19\x74"
        !          31097:             "\x1f\x19\x64\x29\x54\x48\x45\x57\x35\x7d\x9b\xd6\x80" }  },
        !          31098:       /* --- pixel bitmap for cmmib600 char#109 m --- */
        !          31099:       { 109,48152,                      /* character number, location */
        !          31100:          38, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          31101:           { 81,   39, 3,437, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          31102:             "\x86\xe0\x39\xe0\x39\xe0\x7b\xbe\x01\xce\xe0\x3d\x8e"
        !          31103:             "\x04\x9e\x04\xe5\x38\x56\x69\x56\x69\xd4\x48\x35\xa8"
        !          31104:             "\x45\x98\xc4\x59\x15\xb9\x24\xc8\xa5\x5e\xd8\x14\xd8"
        !          31105:             "\xa4\x6d\xec\xe8\xa4\x6c\xe0\x1b\xe0\x19\x84\x7b\xe0"
        !          31106:             "\x2b\xe0\x19\x84\x7a\xe0\x3a\xe0\x29\x84\x79\xe0\x3a"
        !          31107:             "\xe0\x2a\x75\x6a\xe0\x3a\xe0\x29\x84\x79\xe0\x49\xe0"
        !          31108:             "\x39\xe0\x59\xe0\x49\xe0\x39\xe0\x59\xe0\x3a\xe0\x2a"
        !          31109:             "\xe0\x4a\xe0\x3a\xe0\x29\x90\xf1\xa9\xe0\x49\xe0\x39"
        !          31110:             "\x90\xa9\xe0\x3a\xe0\x2a\xe0\x4a\xe0\x3a\xe0\x29\xe0"
        !          31111:             "\x59\xe0\x49\xe0\x39\xe0\x59\xe0\x49\xe0\x2a\xe0\x59"
        !          31112:             "\xe0\x3a\xe0\x29\xe0\x5a\xe0\x3a\xe0\x1a\xb0\xf1\x89"
        !          31113:             "\xe0\x49\xe0\x29\x84\x89\xe0\x3a\xe0\x1a\x75\x7a\xe0"
        !          31114:             "\x3a\xe0\x19\x84\x89\xe0\x49\xe0\x29\x84\x89\xe0\x49"
        !          31115:             "\xe0\x1a\x74\x99\xe0\x3a\xe0\x19\x75\x8a\xe0\x3a\xe0"
        !          31116:             "\x19\x74\x99\xe0\x49\xe0\x38\x65\x99\xe0\x49\xe0\x38"
        !          31117:             "\x55\xa9\xe0\x49\xe0\x47\x45\xb8\xe0\x58\xe0\x6d\xd7"
        !          31118:             "\xe0\x67\xe0\x8b\xe0\x24\xe0\x94\xe0\xb7\xae" }  },
        !          31119:       /* --- pixel bitmap for cmmib600 char#110 n --- */
        !          31120:       { 110,49433,                      /* character number, location */
        !          31121:          38, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          31122:           { 54,   39, 3,291, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          31123:             "\x86\xe0\x29\xe0\x7b\xbe\xe0\x3d\x8e\x04\xe5\x38\x46"
        !          31124:             "\x69\xd4\x48\x35\x98\xc4\x59\x14\xc8\xa5\x5d\xd8\xa4"
        !          31125:             "\x6c\xe8\xa4\x6b\xe0\x19\x84\x7b\xe0\x19\x84\x7a\xe0"
        !          31126:             "\x29\x84\x79\xe0\x2a\x75\x6a\xe0\x29\x84\x79\xe0\x39"
        !          31127:             "\xe0\x59\xe0\x39\xe0\x59\xe0\x2a\xe0\x4a\xe0\x29\x90"
        !          31128:             "\xf1\xa9\xe0\x39\x90\xa9\xe0\x2a\xe0\x4a\xe0\x29\xe0"
        !          31129:             "\x59\xe0\x39\xe0\x59\xe0\x2a\xe0\x59\xe0\x29\xe0\x5a"
        !          31130:             "\xe0\x1a\xb0\xf1\x89\xe0\x29\x84\x89\xe0\x1a\x75\x7a"
        !          31131:             "\xe0\x19\x84\x89\xe0\x29\x84\x89\xe0\x1a\x74\x99\xe0"
        !          31132:             "\x19\x75\x8a\xe0\x19\x74\x99\xe0\x38\x65\x99\xe0\x38"
        !          31133:             "\x55\xa9\xe0\x47\x45\xb8\xe0\x6d\xd7\xe0\x8b\xe0\x24"
        !          31134:             "\xe0\xb7\xa0" }  },
        !          31135:       /* --- pixel bitmap for cmmib600 char#111 o --- */
        !          31136:       { 111,50339,                      /* character number, location */
        !          31137:          38, 4,   -1, 4,      /* topleft row,col, and botleft row,col */
        !          31138:           { 43,   39, 3,215, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          31139:             "\xe0\x7a\xe0\xe0\x1e\x04\xe0\x9e\x08\xe0\x59\x79\xe0"
        !          31140:             "\x29\xb9\xd8\xe8\xb9\xe0\x28\x99\xe0\x39\x79\xe0\x58"
        !          31141:             "\x6a\xe0\x59\x59\xe0\x69\x49\xe0\x79\xf1\x3a\xe0\x79"
        !          31142:             "\x2a\xe0\x89\x2a\xe0\x7a\x1b\xe0\x7a\xf1\x1a\xe0\x8a"
        !          31143:             "\x1a\xe0\x7e\x08\xe0\x7a\x1f\x1a\xe0\x8a\x1f\x1a\xe0"
        !          31144:             "\x7a\x29\xe0\x8a\x29\xe0\x7a\x39\xe0\x79\x49\xe0\x6a"
        !          31145:             "\x58\xe0\x69\x69\xe0\x49\x79\xe0\x39\x98\xe0\x29\xb8"
        !          31146:             "\xe9\xd8\xb9\xe0\x29\x7a\xe0\x5e\x08\xe0\x9e\x03\xe0"
        !          31147:             "\xe0\x1a\xe0\x79" }  },
        !          31148:       /* --- pixel bitmap for cmmib600 char#112 p --- */
        !          31149:       { 112,51435,                      /* character number, location */
        !          31150:          38,-1,  -16,-1,      /* topleft row,col, and botleft row,col */
        !          31151:           { 49,   54, 3,331, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          31152:             "\xb6\xe8\xe0\x5b\x8e\xe0\x1d\x5e\x04\xc5\x38\x26\x68"
        !          31153:             "\xb4\x48\x15\xa7\x94\x5d\xb8\x75\x5b\xe8\x64\x6a\xe0"
        !          31154:             "\x18\x64\x6a\xe0\x19\xf1\x44\x79\xe0\x29\x44\x6a\xe0"
        !          31155:             "\x29\x35\x6a\xe0\x29\x34\x79\xe0\x39\xe9\xe0\x39\xf1"
        !          31156:             "\xda\xe0\x2a\xf1\xd9\xe0\x3a\xca\xe0\x2b\xca\xe0\x2a"
        !          31157:             "\x10\xf1\xc9\xe0\x3a\x10\xba\xe0\x2b\xca\xe0\x2a\xd9"
        !          31158:             "\xe0\x3a\xd9\xe0\x2a\xda\xe0\x2a\xda\xe0\x29\xe9\xe0"
        !          31159:             "\x29\xe0\x19\xe0\x28\xe0\x1a\xe0\x19\xe0\x1b\xd9\xe0"
        !          31160:             "\x2b\xc9\xe0\x3c\xa8\xe0\x4e\x01\x69\xe0\x5e\x0e\xe0"
        !          31161:             "\x79\x3e\xe0\x99\x58\xe0\x50\xf1\x7a\xe0\xe0\x40\xf1"
        !          31162:             "\x79\xe0\xe0\x50\xf1\x6a\xe0\xe0\x50\xf1\x69\xe0\xe0"
        !          31163:             "\x60\xf1\x5a\xe0\xe0\x60\x59\xe0\xe0\x7e\x05\xe0\xe0"
        !          31164:             "\x2f\x1e\x06\xe0\xe0\x1e\x05\xe0\xe0\x24" }  },
        !          31165:       /* --- pixel bitmap for cmmib600 char#113 q --- */
        !          31166:       { 113,52518,                      /* character number, location */
        !          31167:          38, 4,  -16, 4,      /* topleft row,col, and botleft row,col */
        !          31168:           { 41,   54, 3,259, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          31169:             "\xe0\x58\xb3\xe0\x2d\x66\xde\x04\x28\xc8\x6e\x01\xa8"
        !          31170:             "\xad\x98\xcb\x98\xea\x88\xe0\x1a\x79\xe0\x1a\x69\xe0"
        !          31171:             "\x29\x6a\xe0\x29\x69\xe0\x39\x5a\xe0\x2a\x59\xe0\x39"
        !          31172:             "\x30\xf1\x2a\xe0\x39\x30\x1b\xe0\x2a\x30\xf2\x1a\xe0"
        !          31173:             "\x39\x4b\xe0\x2a\x4f\x2a\xe0\x39\x5a\xe0\x2a\x5f\x29"
        !          31174:             "\xe0\x39\x69\xe0\x2a\x69\xe0\x29\x88\xe0\x29\x88\xe0"
        !          31175:             "\x1a\x88\xeb\x98\xcb\xb8\x9d\xc8\x6e\x01\xde\x0e\xe0"
        !          31176:             "\x1e\x29\xe0\x58\x59\xe0\xe0\x49\xe0\xe0\x3a\x90\xf2"
        !          31177:             "\xe0\x89\xa0\xe0\x7a\xa0\xf2\xe0\x79\xb0\xe0\x6a\xe0"
        !          31178:             "\xe0\x39\xe0\xce\x06\x70\xf1\xde\x08\x60\xee\x06\x71" }  },
        !          31179:       /* --- pixel bitmap for cmmib600 char#114 r --- */
        !          31180:       { 114,53543,                      /* character number, location */
        !          31181:          38, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          31182:           { 39,   39, 3,177, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          31183:             "\x86\xe6\xbb\x8c\x7d\x5e\x01\x55\x38\x26\x65\x44\x48"
        !          31184:             "\x15\x76\x34\x5d\x68\x25\x5c\x69\x24\x6b\x79\x24\x6a"
        !          31185:             "\x7a\xf1\x14\x79\x8a\x14\x79\x89\x15\x6a\x97\x24\x79"
        !          31186:             "\xb4\x40\xf1\xb9\xe0\x50\xaa\xe0\x50\xf2\xa9\xe0\x60"
        !          31187:             "\x9a\xe0\x60\xf2\x99\xe0\x70\x8a\xe0\x70\xf2\x89\xe0"
        !          31188:             "\x80\x7a\xe0\x80\xf2\x79\xe0\x90\x6a\xe0\x90\xf2\x69"
        !          31189:             "\xe0\xa0\x68\xe0\xe0\x37\xe0\xe0\x64\xe0\xde" }  },
        !          31190:       /* --- pixel bitmap for cmmib600 char#115 s --- */
        !          31191:       { 115,54607,                      /* character number, location */
        !          31192:          38, 5,   -1, 5,      /* topleft row,col, and botleft row,col */
        !          31193:           { 35,   39, 3,181, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          31194:             "\xe0\x4a\xe0\x8e\x02\xe0\x3e\x06\xd7\x97\xb6\xd6\x96"
        !          31195:             "\xe6\xf1\x86\xd8\x77\xc9\xf1\x76\xd9\x77\xc8\x79\xc6"
        !          31196:             "\x8b\xc2\xbe\x01\xe0\x6e\x05\xe0\x2e\x07\xe0\x1e\x08"
        !          31197:             "\xee\x08\xee\x08\xe0\x1e\x06\xe0\x3e\x05\xe0\x8d\xe0"
        !          31198:             "\xba\x65\xe0\x28\x48\xe0\x27\x20\xf1\x19\xe0\x27\x2f"
        !          31199:             "\x2a\xe0\x26\x39\xe0\x26\x48\xe0\x26\x65\xe0\x36\x76"
        !          31200:             "\xe0\x16\x98\x98\xce\x07\xe0\x2e\x03\xe0\x7b\xe0\x10" }  },
        !          31201:       /* --- pixel bitmap for cmmib600 char#116 t --- */
        !          31202:       { 116,55447,                      /* character number, location */
        !          31203:          54, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          31204:           { 29,   55, 3,189, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          31205:             "\xe0\x34\xe0\x97\xe0\x78\xe0\x79\x60\xf2\xd9\x70\xf1"
        !          31206:             "\xca\x70\xf1\xc9\x80\xf1\xba\x80\xf1\xb9\x90\xf1\xaa"
        !          31207:             "\x9e\x0e\x1f\x1e\x0e\x01\x0e\x0e\x10\xf1\x99\xb0\xf1"
        !          31208:             "\x8a\xb0\xf1\x89\xc0\xf1\x7a\xc0\xf1\x79\xd0\xf1\x6a"
        !          31209:             "\xd0\xf1\x69\xe0\xf1\x5a\xe0\xf1\x59\xe0\x10\xf1\x4a"
        !          31210:             "\xe0\x10\xf1\x49\xc4\x3a\xb5\x3a\xa5\x49\xb4\x59\xa5"
        !          31211:             "\x59\x95\x69\x94\x79\x84\x98\x65\xb7\x55\xde\x01\xe0"
        !          31212:             "\x1c\xe0\x67\xc8" }  },
        !          31213:       /* --- pixel bitmap for cmmib600 char#117 u --- */
        !          31214:       { 117,56613,                      /* character number, location */
        !          31215:          38, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          31216:           { 51,   39, 3,233, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          31217:             "\xb6\xe0\xe0\xeb\xe0\x64\xe0\x1e\xe0\x37\xc5\x38\xe0"
        !          31218:             "\x18\xb4\x58\xe9\xa4\x69\xd9\x95\x69\xd9\x85\x79\xca"
        !          31219:             "\x84\x89\xca\x75\x7a\xc9\x84\x89\xd9\x84\x89\xca\x75"
        !          31220:             "\x7a\xca\x74\x89\xd9\xe0\x5a\xd9\x80\xf1\xb9\xda\x80"
        !          31221:             "\xaa\xd9\xe0\x59\xe9\xe0\x59\xda\xe0\x4a\xda\x90\xf1"
        !          31222:             "\x99\xe9\xa0\x99\xda\xe0\x4a\xda\xa0\xf1\x89\xe9\x74"
        !          31223:             "\x89\xda\x65\x89\xda\x64\x10\xf1\x89\xd9\x74\x10\x89"
        !          31224:             "\xca\x64\xb8\xbb\x64\xb8\xac\x54\xd8\x8d\x45\xd9\x56"
        !          31225:             "\x27\x35\xe0\x2e\x02\x5d\xe0\x4e\x7b\xe0\x88\xd6\x80" }  },
        !          31226:       /* --- pixel bitmap for cmmib600 char#118 v --- */
        !          31227:       { 118,57680,                      /* character number, location */
        !          31228:          38, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          31229:           { 42,   39, 3,227, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          31230:             "\xb6\xe0\x44\xbb\xe7\x9e\xb9\x75\x38\x9b\x54\x58\x9b"
        !          31231:             "\x44\x69\x8b\x35\x69\x8b\x25\x79\x8b\x24\x89\x9a\x15"
        !          31232:             "\x7a\xa9\x14\x89\xc8\x14\x89\xdc\x7a\xe5\x14\x89\xe0"
        !          31233:             "\x15\xca\xe0\x15\xc9\xe0\x25\xc9\xe0\x24\xca\xe0\x24"
        !          31234:             "\xc9\xe0\x34\xc9\xe0\x25\xba\xe0\x24\xc9\xe0\x34\xc9"
        !          31235:             "\xe0\x25\xc9\xe0\x24\xca\xe0\x24\x40\xf1\x89\xe0\x24"
        !          31236:             "\x50\x89\xe0\x15\xd9\xe0\x14\x60\xf1\x89\xe4\x70\x89"
        !          31237:             "\xd4\xe0\x38\xc4\xe0\x49\xa5\xe0\x58\x95\xe0\x79\x56"
        !          31238:             "\xe0\x9e\x03\xe0\xde\xe0\xe0\x38\xe0\x30" }  },
        !          31239:       /* --- pixel bitmap for cmmib600 char#119 w --- */
        !          31240:       { 119,59014,                      /* character number, location */
        !          31241:          38, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          31242:           { 64,   39, 3,309, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          31243:             "\xb6\xe0\xe0\xc4\xbb\xe0\x64\xc7\x9e\xe0\x37\x99\x75"
        !          31244:             "\x38\xe0\x18\x8b\x54\x58\xe9\x8b\x44\x69\xd9\x8b\x35"
        !          31245:             "\x69\xd9\x8b\x25\x79\xca\x8b\x24\x89\xc9\x9b\x15\x7a"
        !          31246:             "\xc9\xb9\x14\x89\xd9\xc8\x14\x89\xca\xdc\x7a\xc9\xe0"
        !          31247:             "\x15\x14\x89\xd9\xe0\x15\xca\xd9\xe0\x15\xc9\xda\xe0"
        !          31248:             "\x15\xc9\xd9\xe0\x24\xca\xd9\xe0\x24\xc9\xe9\xe0\x24"
        !          31249:             "\xc9\xda\xe0\x15\xba\xd9\xe0\x24\x30\xf1\x99\xe9\xe0"
        !          31250:             "\x24\x30\x99\xe9\xe0\x14\xca\xda\xe0\x14\xc9\xe9\xe0"
        !          31251:             "\x24\x40\xf1\x89\xe9\xe0\x14\x50\xf1\x89\xe9\xe4\x60"
        !          31252:             "\x89\xe9\xd4\xe0\x28\xe9\xd4\xe0\x29\xca\xc4\xe0\x39"
        !          31253:             "\xbc\xa4\xe0\x59\x9d\x95\xe0\x6a\x65\x29\x56\xe0\x9e"
        !          31254:             "\x04\x4e\x03\xe0\xde\x8e\xe0\xe0\x39\xd8\xe0\x20" }  },
        !          31255:       /* --- pixel bitmap for cmmib600 char#120 x --- */
        !          31256:       { 120,60458,                      /* character number, location */
        !          31257:          38, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          31258:           { 47,   39, 3,241, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          31259:             "\xe7\xe6\xe0\x3d\x8c\xce\x03\x5e\xa6\x58\x35\x56\x76"
        !          31260:             "\x88\x15\x76\x55\xbc\x68\x45\xcb\x69\x44\xda\x79\x35"
        !          31261:             "\xda\x6a\x25\xe9\x7a\x24\xe0\x19\x7a\x24\xea\x79\x25"
        !          31262:             "\xe9\x97\x34\xe0\x19\xa4\xe0\xa9\xe0\xe0\x9a\xe0\x40"
        !          31263:             "\xf2\xe0\x59\xe0\x50\xe0\x4a\xe0\x50\xf2\xe0\x49\xe0"
        !          31264:             "\x60\xe0\x3a\xe0\xe0\x99\xe0\xb4\x99\xe0\x24\x38\x79"
        !          31265:             "\xe0\x24\x29\x6a\xe0\x15\x1a\x6a\xe0\x14\x2a\x69\xe0"
        !          31266:             "\x15\x2a\x69\xe0\x14\x3a\x5a\xe5\x39\x5b\xd5\x48\x6b"
        !          31267:             "\xc5\x56\x7d\x96\x76\x55\x28\x67\x9e\x5e\x03\xcb\x8e"
        !          31268:             "\xe0\x36\xd8\xe0" }  },
        !          31269:       /* --- pixel bitmap for cmmib600 char#121 y --- */
        !          31270:       { 121,61700,                      /* character number, location */
        !          31271:          38, 2,  -17, 2,      /* topleft row,col, and botleft row,col */
        !          31272:           { 46,   55, 3,307, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          31273:             "\xb6\xe0\xe0\x9b\xe0\x74\x9e\xe0\x47\x65\x38\xe0\x28"
        !          31274:             "\x54\x58\xe0\x19\x44\x69\xe9\x35\x69\xe9\x25\x79\xda"
        !          31275:             "\x24\x89\xd9\x25\x7a\xd9\x24\x89\xe9\x24\x89\xda\x15"
        !          31276:             "\x7a\xd9\x24\x89\xe9\xda\xe9\xd9\xea\xd9\xe9\xda\xe9"
        !          31277:             "\xd9\xe0\x19\xd9\xea\xca\xe9\x40\xf1\x99\xe0\x19\x40"
        !          31278:             "\x99\xea\xca\xe9\x50\xf1\x89\xe0\x19\x50\x89\xea\x50"
        !          31279:             "\xf2\x89\xe9\x60\x89\xda\xe0\x18\xca\xe0\x28\xbb\xe0"
        !          31280:             "\x38\x9c\xe0\x48\x6e\xe0\x5e\x0c\xe0\x8d\x29\xe0\xa9"
        !          31281:             "\x49\xe0\xe0\x8a\xe0\xe0\x89\xe0\x34\xe0\x29\xe0\x18"
        !          31282:             "\xd9\xe0\x19\xd9\xea\xc9\xb0\xf1\x4a\xb9\xc0\x4a\xa9"
        !          31283:             "\xe0\x39\xa9\xe0\x48\xa8\xe0\x66\xa9\xe0\x86\x79\xe0"
        !          31284:             "\xbe\x05\xe0\xe0\x1e\x01\xe0\xe0\x59\xe0\xd0" }  },
        !          31285:       /* --- pixel bitmap for cmmib600 char#122 z --- */
        !          31286:       { 122,62802,                      /* character number, location */
        !          31287:          38, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          31288:           { 41,   39, 3,235, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          31289:             "\xe0\x26\xe0\x14\xea\xd4\xce\xa5\xbe\x02\x85\xbe\x04"
        !          31290:             "\x65\xbe\x07\x35\xbe\x0e\x02\xbe\x0e\x01\xbe\x0e\x01"
        !          31291:             "\xc5\xe0\x45\xd4\xe0\x45\xe0\xe0\x75\xe0\xe0\x75\xe0"
        !          31292:             "\xe0\x66\xe0\xe0\x65\xe0\xe0\x75\xe0\xe0\x75\xe0\xe0"
        !          31293:             "\x75\xe0\xe0\x66\xe0\xe0\x65\xe0\xe0\x75\xe0\xe0\x66"
        !          31294:             "\xe0\xe0\x65\xe0\xe0\x75\xe0\xe0\x75\xe0\xe0\x75\xe0"
        !          31295:             "\x64\xb5\xe0\x74\xa5\xe0\x75\x86\xe0\x75\x85\xe0\x68"
        !          31296:             "\x20\xf1\x5e\x0e\x05\x30\x4e\x0e\x05\x76\x5e\x08\x76"
        !          31297:             "\x8e\x05\x75\xbe\x03\x84\xde\x95\xe0\x1a\xb4\xe0\x46"
        !          31298:             "\xd9" }  },
        !          31299:       /* --- pixel bitmap for cmmib600 char#123 \imath --- */
        !          31300:       { 123,111186,                     /* character number, location */
        !          31301:          38, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          31302:           { 28,   39, 3,149, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          31303:             "\xb6\xe0\x5b\xe0\x2e\xd5\x38\xb4\x58\xa4\x69\x84\x79"
        !          31304:             "\x75\x79\x74\x89\x65\x7a\x50\xf1\x14\x89\x65\x7a\x64"
        !          31305:             "\x89\xe0\x4a\x70\xf1\xb9\x80\xaa\xe0\x49\xe0\x4a\x90"
        !          31306:             "\xf1\x99\xa0\x8a\xe0\x49\xe0\x4a\xb0\xf1\x79\x84\x6a"
        !          31307:             "\x75\xf1\x69\x84\x10\x5a\x74\x79\x75\x79\x74\x98\x65"
        !          31308:             "\x98\x55\xb7\x45\xde\xe0\x1b\xe0\x57\xa9" }  },
        !          31309:       /* --- pixel bitmap for cmmib600 char#124 \jmath --- */
        !          31310:       { 124,112079,                     /* character number, location */
        !          31311:          38,-1,  -17,-1,      /* topleft row,col, and botleft row,col */
        !          31312:           { 35,   55, 3,233, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          31313:             "\xe0\x86\xe0\xcc\xe0\x7e\x01\xe0\x56\x48\xe0\x25\x68"
        !          31314:             "\xe0\x15\x79\xd5\x89\xc5\x99\xb5\xa9\xb4\xb9\xa5\xb9"
        !          31315:             "\xa4\xba\x95\xba\x94\xc9\xe0\xc9\x10\xf1\xe0\xaa\x10"
        !          31316:             "\xf1\xe0\xa9\x20\xf1\xe0\x9a\x20\xf1\xe0\x99\x30\xf1"
        !          31317:             "\xe0\x8a\x30\xf1\xe0\x89\x40\xf1\xe0\x7a\x40\xf1\xe0"
        !          31318:             "\x79\x50\xf1\xe0\x6a\x50\xf1\xe0\x69\x60\xf1\xe0\x5a"
        !          31319:             "\x60\xf1\xe0\x59\x70\xf1\xe0\x4a\x70\xe0\x49\xc4\xa9"
        !          31320:             "\xa7\x8a\x99\x79\x9a\x79\x9f\x1a\x69\xa9\x69\xb9\x59"
        !          31321:             "\xc8\x59\xd6\x68\xe0\x2e\x03\xe0\x6d\xe0\xa8\xe0\x80" }  },
        !          31322:       /* --- pixel bitmap for cmmib600 char#125 \wp --- */
        !          31323:       { 125,113342,                     /* character number, location */
        !          31324:          38, 7,  -17, 7,      /* topleft row,col, and botleft row,col */
        !          31325:           { 53,   55, 3,401, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          31326:             "\xd3\xe0\xe0\xe0\x65\xe0\xe0\xe0\x47\xe0\xe0\xe0\x36"
        !          31327:             "\xe0\xe0\xe0\x46\xe0\x6a\xe0\x26\xe0\x3e\x03\xc6\xe0"
        !          31328:             "\x2e\x07\xa6\xe8\x88\x86\xd6\xd8\x76\xb6\xe0\x28\x56"
        !          31329:             "\xa6\xe0\x57\x56\x96\xe0\x68\x37\x85\xe0\x88\x36\x85"
        !          31330:             "\xe0\x98\x36\x75\xe0\xa9\x26\x64\xe0\xc9\x17\x54\xe0"
        !          31331:             "\xd9\x16\x54\xe0\xe9\x16\x45\xe0\xe9\x16\x35\xe0\xea"
        !          31332:             "\x16\x25\xe0\xe0\x19\x17\x15\xe0\xe0\x29\x1c\xe0\xe0"
        !          31333:             "\x39\x1c\xe0\xe0\x2a\x1b\xe0\xe0\x39\x2a\xe0\xe0\x49"
        !          31334:             "\x3a\xc4\xe0\x18\x4a\xb5\xe9\x4b\x96\xe8\x6b\x86\xd9"
        !          31335:             "\x6c\x75\xe8\x8c\x64\xe8\x9d\x54\xd8\x9e\x01\x45\xb8"
        !          31336:             "\xae\x02\x45\x98\xb4\x1b\x46\x59\xc5\x1c\x4e\x03\xe4"
        !          31337:             "\x3c\x5d\xe0\x24\x4b\x78\xe0\x54\x5a\xe0\xe0\x55\x69"
        !          31338:             "\xe0\xe0\x54\x88\xe0\xe0\x5f\x14\x97\xe0\xe0\x5f\x24"
        !          31339:             "\x96\xe0\xe0\x6f\x14\x86\xe0\xe0\x74\x76\xe0\xe0\x94"
        !          31340:             "\x66\xe0\xe0\x95\x46\xe0\xe0\xbc\xe0\xe0\xea\xe0\xe0"
        !          31341:             "\xe0\x35\xe0\xe0\xe0\x15" }  },
        !          31342:       /* --- pixel bitmap for cmmib600 char#126 \bfvec --- */
        !          31343:       { 126,114170,                     /* character number, location */
        !          31344:          60,16,   43,16,      /* topleft row,col, and botleft row,col */
        !          31345:           { 42,   17, 2,35, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          31346:             "\xff\x01\x1f\x04\x07\x00\x1e\x06\x25\x06\x24\x07\x24"
        !          31347:             "\x07\x04\x28\x01\xff\x02\x2a\x01\x28\x1f\x09\x20\x08"
        !          31348:             "\x21\x07\x22\x07\x23\x06\x25\x04\x0a" }  },
        !          31349:       /* --- pixel bitmap for cmmib600 char#127 (noname) --- */
        !          31350:       { 127,114734,                     /* character number, location */
        !          31351:          56,24,   45,24,      /* topleft row,col, and botleft row,col */
        !          31352:           { 39,   11, 3,61, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          31353:             "\xee\xe0\x7e\x08\xee\x0d\xae\x0e\x03\x6a\xe0\x19\x47"
        !          31354:             "\xe0\x96\x26\xe0\xcb\xe0\xe0\x15\x0f\x14\xe0\xe0\x34"
        !          31355:             "\x03\xe0\xe0\x43\x10" }  },
        !          31356:       /* --- trailer  --- */
        !          31357:       { -99, -999,  0,0,0,0, { 0,0,0,0, (pixbyte *)"\0" }  }
        !          31358:    } ;
        !          31359: 
        !          31360: 
1.2       albertel 31361: /* ------------------------------------------------------------------------
1.5     ! raeburn  31362: font sizes 0-10 for cmsy10
1.2       albertel 31363: ------------------------------------------------------------------------ */
                   31364: 
                   31365: /* --- size=0 for .83gf ---
                   31366:  * mf '\mode=eighthre;  input cmsy10'
                   31367:  * --------------------------------------------------------------------- */
                   31368: /* --- fontdef for cmsy83 --- */
                   31369: static	chardef  cmsy83[] =
1.1       albertel 31370:    {
                   31371:       /* --- pixel bitmap for cmsy83 char#0 - --- */
                   31372:       {   0,  943,                      /* character number, location */
1.2       albertel 31373:           3, 1,    2, 1,      /* topleft row,col, and botleft row,col */
                   31374:           {  6,    1, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31375:             "\x3f" }  },
1.1       albertel 31376:       /* --- pixel bitmap for cmsy83 char#1 \cdot --- */
                   31377:       {   1, 1591,                      /* character number, location */
1.2       albertel 31378:           3, 1,    2, 1,      /* topleft row,col, and botleft row,col */
                   31379:           {  1,    1, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31380:             "\x01" }  },
1.1       albertel 31381:       /* --- pixel bitmap for cmsy83 char#2 \times --- */
                   31382:       {   2, 1745,                      /* character number, location */
1.2       albertel 31383:           6, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   31384:           {  6,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31385:             "\xa1\xc4\x10\x8c\x14\x02" }  },
1.1       albertel 31386:       /* --- pixel bitmap for cmsy83 char#3 \ast --- */
                   31387:       {   3, 1774,                      /* character number, location */
1.2       albertel 31388:           5, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   31389:           {  3,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31390:             "\xba\x2e" }  },
1.1       albertel 31391:       /* --- pixel bitmap for cmsy83 char#4 \div --- */
                   31392:       {   4, 1791,                      /* character number, location */
1.2       albertel 31393:           6, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   31394:           {  5,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31395:             "\x04\x80\x0f\x00\x01" }  },
1.1       albertel 31396:       /* --- pixel bitmap for cmsy83 char#5 \diamond --- */
                   31397:       {   5, 1600,                      /* character number, location */
1.2       albertel 31398:           5, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   31399:           {  5,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31400:             "\x44\x45\x45\x00" }  },
1.1       albertel 31401:       /* --- pixel bitmap for cmsy83 char#6 \pm --- */
                   31402:       {   6,  952,                      /* character number, location */
1.2       albertel 31403:           8, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   31404:           {  6,    9, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31405:             "\xf3\x31\x26\xf2\x31\x26" }  },
1.1       albertel 31406:       /* --- pixel bitmap for cmsy83 char#7 \mp --- */
                   31407:       {   7, 1808,                      /* character number, location */
1.2       albertel 31408:           6, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   31409:           {  6,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31410:             "\x3f\x82\x20\x3f\x82\x20\x08" }  },
1.1       albertel 31411:       /* --- pixel bitmap for cmsy83 char#8 \oplus --- */
                   31412:       {   8,  977,                      /* character number, location */
1.2       albertel 31413:           7, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   31414:           {  6,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31415:             "\x8c\x96\xa6\x7f\x9a\x6a\x0c" }  },
1.1       albertel 31416:       /* --- pixel bitmap for cmsy83 char#9 \ominus --- */
                   31417:       {   9, 1833,                      /* character number, location */
1.2       albertel 31418:           7, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   31419:           {  6,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31420:             "\x8c\x14\x86\x7f\x18\x4a\x0c" }  },
1.1       albertel 31421:       /* --- pixel bitmap for cmsy83 char#10 \otimes --- */
                   31422:       {  10, 1022,                      /* character number, location */
1.2       albertel 31423:           7, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   31424:           {  6,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31425:             "\x8c\x34\xb7\x65\x3b\x4b\x0c" }  },
1.1       albertel 31426:       /* --- pixel bitmap for cmsy83 char#11 \oslash --- */
                   31427:       {  11, 1870,                      /* character number, location */
1.2       albertel 31428:           7, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   31429:           {  6,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31430:             "\x8c\x14\xa7\x65\x39\x4a\x0c" }  },
1.1       albertel 31431:       /* --- pixel bitmap for cmsy83 char#12 \odot --- */
                   31432:       {  12, 1915,                      /* character number, location */
1.2       albertel 31433:           7, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   31434:           {  6,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31435:             "\x8c\x14\x86\x6d\x18\x4a\x0c" }  },
1.1       albertel 31436:       /* --- pixel bitmap for cmsy83 char#13 \bigcirc --- */
                   31437:       {  13, 1956,                      /* character number, location */
1.2       albertel 31438:           8, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   31439:           {  8,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31440:             "\x3c\x42\x81\x81\x81\x81\x81\x81\x42\x3c" }  },
1.1       albertel 31441:       /* --- pixel bitmap for cmsy83 char#14 \circ --- */
                   31442:       {  14, 1999,                      /* character number, location */
1.2       albertel 31443:           5, 1,    2, 1,      /* topleft row,col, and botleft row,col */
                   31444:           {  3,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31445:             "\xaa\x00" }  },
1.1       albertel 31446:       /* --- pixel bitmap for cmsy83 char#15 \bullet --- */
                   31447:       {  15, 2014,                      /* character number, location */
1.2       albertel 31448:           5, 1,    2, 1,      /* topleft row,col, and botleft row,col */
                   31449:           {  3,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31450:             "\xba\x00" }  },
1.1       albertel 31451:       /* --- pixel bitmap for cmsy83 char#16 \asymp --- */
                   31452:       {  16, 2027,                      /* character number, location */
1.2       albertel 31453:           6, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   31454:           {  6,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31455:             "\xa1\xc4\x00\x8c\x14\x02" }  },
1.1       albertel 31456:       /* --- pixel bitmap for cmsy83 char#17 \equiv --- */
                   31457:       {  17, 1512,                      /* character number, location */
1.2       albertel 31458:           7, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   31459:           {  6,    9, 3,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31460:             "\x06\xf2\x66\xf2\x66" }  },
1.1       albertel 31461:       /* --- pixel bitmap for cmsy83 char#18 \subseteq --- */
                   31462:       {  18, 2056,                      /* character number, location */
1.2       albertel 31463:           7, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   31464:           {  6,   13, 3,18, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31465:             "\x24\x11\x4f\x41\x50\x11\x64\xf2\x66" }  },
1.1       albertel 31466:       /* --- pixel bitmap for cmsy83 char#19 \supseteq --- */
                   31467:       {  19, 2085,                      /* character number, location */
1.2       albertel 31468:           7, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   31469:           {  6,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31470:             "\x0f\x04\x82\x20\x08\x42\x0f\x00\x00\x3f" }  },
1.1       albertel 31471:       /* --- pixel bitmap for cmsy83 char#20 \leq --- */
                   31472:       {  20, 1454,                      /* character number, location */
1.2       albertel 31473:           7, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   31474:           {  6,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31475:             "\x20\xc4\x08\x81\xc0\x40\x20\x00\x00\x3f" }  },
1.1       albertel 31476:       /* --- pixel bitmap for cmsy83 char#21 \geq --- */
                   31477:       {  21, 1483,                      /* character number, location */
1.2       albertel 31478:           7, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   31479:           {  6,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31480:             "\x81\xc0\x40\x20\xc4\x08\x01\x00\x00\x3f" }  },
1.1       albertel 31481:       /* --- pixel bitmap for cmsy83 char#22 \preceq --- */
                   31482:       {  22, 2114,                      /* character number, location */
1.2       albertel 31483:           7, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   31484:           {  6,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31485:             "\x20\x08\x21\x07\x02\x81\x20\x00\x00\x3f" }  },
1.1       albertel 31486:       /* --- pixel bitmap for cmsy83 char#23 \succeq --- */
                   31487:       {  23, 2143,                      /* character number, location */
1.2       albertel 31488:           7, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   31489:           {  6,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31490:             "\x41\x20\x10\x38\x21\x04\x01\x00\x00\x3f" }  },
1.1       albertel 31491:       /* --- pixel bitmap for cmsy83 char#24 \sim --- */
                   31492:       {  24, 2172,                      /* character number, location */
1.2       albertel 31493:           4, 1,    2, 1,      /* topleft row,col, and botleft row,col */
                   31494:           {  6,    2, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31495:             "\x6f\x0e" }  },
1.1       albertel 31496:       /* --- pixel bitmap for cmsy83 char#25 \approx --- */
                   31497:       {  25, 2187,                      /* character number, location */
1.2       albertel 31498:           6, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   31499:           {  6,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31500:             "\x67\xd9\xe6\x67\xd9\xe6" }  },
1.1       albertel 31501:       /* --- pixel bitmap for cmsy83 char#26 \subset --- */
                   31502:       {  26, 1308,                      /* character number, location */
1.2       albertel 31503:           7, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   31504:           {  6,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31505:             "\xbc\x10\x04\x41\x10\x08\x3c" }  },
1.1       albertel 31506:       /* --- pixel bitmap for cmsy83 char#27 \supset --- */
                   31507:       {  27, 1333,                      /* character number, location */
1.2       albertel 31508:           7, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   31509:           {  6,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31510:             "\x0f\x04\x82\x20\x08\x42\x0f" }  },
1.1       albertel 31511:       /* --- pixel bitmap for cmsy83 char#28 \ll --- */
                   31512:       {  28, 2234,                      /* character number, location */
1.2       albertel 31513:           7, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   31514:           {  8,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31515:             "\x90\x48\x24\x12\x09\x12\x24\x48\x90" }  },
1.1       albertel 31516:       /* --- pixel bitmap for cmsy83 char#29 \gg --- */
                   31517:       {  29, 2277,                      /* character number, location */
1.2       albertel 31518:           7, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   31519:           {  8,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31520:             "\x09\x12\x24\x48\x90\x48\x24\x12\x09" }  },
1.1       albertel 31521:       /* --- pixel bitmap for cmsy83 char#30 \prec --- */
                   31522:       {  30, 2320,                      /* character number, location */
1.2       albertel 31523:           6, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   31524:           {  6,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31525:             "\x20\x08\x21\x07\x02\x81\x20" }  },
1.1       albertel 31526:       /* --- pixel bitmap for cmsy83 char#31 \succ --- */
                   31527:       {  31, 2345,                      /* character number, location */
1.2       albertel 31528:           6, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   31529:           {  6,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31530:             "\x41\x20\x10\x38\x21\x04\x01" }  },
1.1       albertel 31531:       /* --- pixel bitmap for cmsy83 char#32 \leftarrow --- */
                   31532:       {  32, 1249,                      /* character number, location */
1.2       albertel 31533:           5, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   31534:           {  8,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31535:             "\x06\x02\xff\x02\x06" }  },
1.1       albertel 31536:       /* --- pixel bitmap for cmsy83 char#33 \rightarrow --- */
                   31537:       {  33, 1266,                      /* character number, location */
1.2       albertel 31538:           5, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   31539:           {  8,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31540:             "\x60\x40\xff\x40\x60" }  },
1.1       albertel 31541:       /* --- pixel bitmap for cmsy83 char#34 \uparrow --- */
                   31542:       {  34, 1222,                      /* character number, location */
1.2       albertel 31543:           8, 0,   -2, 0,      /* topleft row,col, and botleft row,col */
                   31544:           {  5,   10, 3,11, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31545:             "\xf1\x21\x25\xf6\x21\x21" }  },
1.1       albertel 31546:       /* --- pixel bitmap for cmsy83 char#35 \downarrow --- */
                   31547:       {  35, 1195,                      /* character number, location */
1.2       albertel 31548:           8, 0,   -2, 0,      /* topleft row,col, and botleft row,col */
                   31549:           {  5,   10, 3,11, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31550:             "\xf6\x21\x25\xf1\x21\x21" }  },
1.1       albertel 31551:       /* --- pixel bitmap for cmsy83 char#36 \leftrightarrow --- */
                   31552:       {  36, 1283,                      /* character number, location */
1.2       albertel 31553:           5, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   31554:           {  8,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31555:             "\x66\x42\xff\x42\x66" }  },
1.1       albertel 31556:       /* --- pixel bitmap for cmsy83 char#37 \nearrow --- */
                   31557:       {  37, 2370,                      /* character number, location */
1.2       albertel 31558:           8, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   31559:           {  9,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31560:             "\xf0\x80\x81\x85\x09\x01\x01\x03\x03\x02\x02\x00" }  },
1.1       albertel 31561:       /* --- pixel bitmap for cmsy83 char#38 \searrow --- */
                   31562:       {  38, 2401,                      /* character number, location */
1.2       albertel 31563:           8, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   31564:           {  9,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31565:             "\x01\x04\x18\x20\x80\x00\x02\x48\xb0\xc0\xe0\x01" }  },
1.1       albertel 31566:       /* --- pixel bitmap for cmsy83 char#39 \simeq --- */
                   31567:       {  39, 2432,                      /* character number, location */
1.2       albertel 31568:           5, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   31569:           {  6,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31570:             "\x67\x9b\x03\x00\xf0\x03" }  },
1.1       albertel 31571:       /* --- pixel bitmap for cmsy83 char#40 \Leftarrow --- */
                   31572:       {  40, 2457,                      /* character number, location */
1.2       albertel 31573:           6, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   31574:           {  8,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31575:             "\x04\xfc\x02\x02\x02\xfc\x0c" }  },
1.1       albertel 31576:       /* --- pixel bitmap for cmsy83 char#41 \Rightarrow --- */
                   31577:       {  41, 2478,                      /* character number, location */
1.2       albertel 31578:           6, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   31579:           {  7,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31580:             "\xa0\x1f\x10\x08\xfc\xc1\x00" }  },
1.1       albertel 31581:       /* --- pixel bitmap for cmsy83 char#42 \Uparrow --- */
                   31582:       {  42, 2499,                      /* character number, location */
1.2       albertel 31583:           7,-1,   -2,-1,      /* topleft row,col, and botleft row,col */
                   31584:           {  8,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31585:             "\x18\x24\xc3\x42\x42\x42\x42\x42\x42" }  },
1.1       albertel 31586:       /* --- pixel bitmap for cmsy83 char#43 \Downarrow --- */
                   31587:       {  43, 2540,                      /* character number, location */
1.2       albertel 31588:           8,-1,   -1,-1,      /* topleft row,col, and botleft row,col */
                   31589:           {  8,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31590:             "\x42\x42\x42\x42\x42\x42\xc3\x24\x18" }  },
1.1       albertel 31591:       /* --- pixel bitmap for cmsy83 char#44 \Leftrightarrow --- */
                   31592:       {  44, 2581,                      /* character number, location */
1.2       albertel 31593:           6, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   31594:           {  8,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31595:             "\x24\x7e\x42\xc3\x42\x3c\x24" }  },
1.1       albertel 31596:       /* --- pixel bitmap for cmsy83 char#45 \nwarrow --- */
                   31597:       {  45, 2612,                      /* character number, location */
1.2       albertel 31598:           8, 0,   -2, 0,      /* topleft row,col, and botleft row,col */
                   31599:           {  9,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31600:             "\x1e\x0c\x34\x48\x00\x01\x04\x10\x60\x80\x00\x02" }  },
1.1       albertel 31601:       /* --- pixel bitmap for cmsy83 char#46 \swarrow --- */
                   31602:       {  46, 2643,                      /* character number, location */
1.2       albertel 31603:           8, 0,   -2, 0,      /* topleft row,col, and botleft row,col */
                   31604:           {  9,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31605:             "\x00\x01\x01\x03\x03\x02\x42\x86\x06\x06\x3c\x00" }  },
1.1       albertel 31606:       /* --- pixel bitmap for cmsy83 char#47 \propto --- */
                   31607:       {  47, 2674,                      /* character number, location */
1.2       albertel 31608:           5, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   31609:           {  7,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31610:             "\xe6\x4c\x26\x63\x06" }  },
1.1       albertel 31611:       /* --- pixel bitmap for cmsy83 char#48 \prime --- */
                   31612:       {  48, 2701,                      /* character number, location */
1.2       albertel 31613:           6, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   31614:           {  2,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31615:             "\x6a\x05" }  },
1.1       albertel 31616:       /* --- pixel bitmap for cmsy83 char#49 \infty --- */
                   31617:       {  49, 1685,                      /* character number, location */
1.2       albertel 31618:           5, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   31619:           {  8,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31620:             "\x66\x99\x99\x99\x66" }  },
1.1       albertel 31621:       /* --- pixel bitmap for cmsy83 char#50 \in --- */
                   31622:       {  50, 1358,                      /* character number, location */
1.2       albertel 31623:           7, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   31624:           {  5,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31625:             "\x5c\x84\xf0\x43\x10\x1c" }  },
1.1       albertel 31626:       /* --- pixel bitmap for cmsy83 char#51 \ni --- */
                   31627:       {  51, 2720,                      /* character number, location */
1.2       albertel 31628:           7, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   31629:           {  5,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31630:             "\x07\x41\xf8\x21\x44\x07" }  },
1.1       albertel 31631:       /* --- pixel bitmap for cmsy83 char#52 \triangle --- */
                   31632:       {  52, 2745,                      /* character number, location */
1.2       albertel 31633:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   31634:           {  7,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31635:             "\x08\x04\x85\x22\x12\x05\xff" }  },
1.1       albertel 31636:       /* --- pixel bitmap for cmsy83 char#53 \bigtriangledown --- */
                   31637:       {  53, 2778,                      /* character number, location */
1.2       albertel 31638:           6, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   31639:           {  7,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31640:             "\xff\xa0\x48\x44\xa1\x20\x10" }  },
                   31641:       /* --- pixel bitmap for cmsy83 char#54 \boldslash --- */
1.1       albertel 31642:       {  54, 2811,                      /* character number, location */
1.2       albertel 31643:           8, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   31644:           {  6,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31645:             "\x20\x04\x21\x08\x41\x10\x82\x10\x00" }  },
                   31646:       /* --- pixel bitmap for cmsy83 char#55 \' --- */
1.1       albertel 31647:       {  55, 2840,                      /* character number, location */
1.2       albertel 31648:           5, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   31649:           {  1,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31650:             "\x1f" }  },
1.1       albertel 31651:       /* --- pixel bitmap for cmsy83 char#56 \forall --- */
                   31652:       {  56, 1383,                      /* character number, location */
1.2       albertel 31653:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   31654:           {  5,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31655:             "\x31\x3a\xa5\x14\x21" }  },
1.1       albertel 31656:       /* --- pixel bitmap for cmsy83 char#57 \exists --- */
                   31657:       {  57, 1416,                      /* character number, location */
1.2       albertel 31658:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   31659:           {  3,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31660:             "\x27\x4d\xf2" }  },
1.1       albertel 31661:       /* --- pixel bitmap for cmsy83 char#58 \neg --- */
                   31662:       {  58, 1439,                      /* character number, location */
1.2       albertel 31663:           4, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   31664:           {  5,    4, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31665:             "\x1f\x42\x08" }  },
1.1       albertel 31666:       /* --- pixel bitmap for cmsy83 char#59 \emptyset --- */
                   31667:       {  59, 2857,                      /* character number, location */
1.2       albertel 31668:           9, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
                   31669:           {  5,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31670:             "\xc8\xe5\x5a\x6b\x9d\x4e\x00" }  },
1.1       albertel 31671:       /* --- pixel bitmap for cmsy83 char#60 \Re --- */
                   31672:       {  60, 2904,                      /* character number, location */
1.2       albertel 31673:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   31674:           {  7,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31675:             "\x36\xb5\x52\xa7\xc1\x64\xcc" }  },
1.1       albertel 31676:       /* --- pixel bitmap for cmsy83 char#61 \Im --- */
                   31677:       {  61, 2945,                      /* character number, location */
1.2       albertel 31678:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   31679:           {  6,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31680:             "\x4e\x1c\xc4\x72\x24\x31" }  },
1.1       albertel 31681:       /* --- pixel bitmap for cmsy83 char#62 \top --- */
                   31682:       {  62, 2978,                      /* character number, location */
1.2       albertel 31683:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   31684:           {  7,    7, 3, 7, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31685:             "\x07\xf5\x31\x31" }  },
1.1       albertel 31686:       /* --- pixel bitmap for cmsy83 char#63 \bot --- */
                   31687:       {  63, 2999,                      /* character number, location */
1.2       albertel 31688:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   31689:           {  7,    7, 3, 6, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31690:             "\xf5\x31\x37" }  },
1.1       albertel 31691:       /* --- pixel bitmap for cmsy83 char#64 \aleph --- */
                   31692:       {  64, 3020,                      /* character number, location */
1.2       albertel 31693:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   31694:           {  4,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31695:             "\x99\xbb\xdd\x9a" }  },
1.1       albertel 31696:       /* --- pixel bitmap for cmsy83 char#65 \calA --- */
                   31697:       {  65,   35,                      /* character number, location */
1.2       albertel 31698:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   31699:           {  7,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31700:             "\x20\x18\x0c\x85\xe2\x89\x82" }  },
1.1       albertel 31701:       /* --- pixel bitmap for cmsy83 char#66 \calB --- */
                   31702:       {  66,   66,                      /* character number, location */
1.2       albertel 31703:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   31704:           {  6,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31705:             "\x1c\x49\x6b\xa2\x28\x37" }  },
1.1       albertel 31706:       /* --- pixel bitmap for cmsy83 char#67 \calC --- */
                   31707:       {  67,  103,                      /* character number, location */
1.2       albertel 31708:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   31709:           {  5,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31710:             "\x5c\x8a\x10\x42\x32" }  },
1.1       albertel 31711:       /* --- pixel bitmap for cmsy83 char#68 \calD --- */
                   31712:       {  68,  130,                      /* character number, location */
1.2       albertel 31713:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   31714:           {  7,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31715:             "\xbe\x64\x92\x48\x24\x51\x1c" }  },
1.1       albertel 31716:       /* --- pixel bitmap for cmsy83 char#69 \calE --- */
                   31717:       {  69,  169,                      /* character number, location */
1.2       albertel 31718:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   31719:           {  5,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31720:             "\x98\x12\x26\x42\x32" }  },
1.1       albertel 31721:       /* --- pixel bitmap for cmsy83 char#70 \calF --- */
                   31722:       {  70,  196,                      /* character number, location */
1.2       albertel 31723:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   31724:           {  9,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31725:             "\xf8\x29\x40\x80\x80\x07\x01\x81\x03" }  },
1.1       albertel 31726:       /* --- pixel bitmap for cmsy83 char#71 \calG --- */
                   31727:       {  71,  221,                      /* character number, location */
1.2       albertel 31728:           8, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   31729:           {  5,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31730:             "\x5c\xc6\x10\xb3\x43\x07" }  },
1.1       albertel 31731:       /* --- pixel bitmap for cmsy83 char#72 \calH --- */
                   31732:       {  72,  254,                      /* character number, location */
1.2       albertel 31733:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   31734:           {  7,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31735:             "\xce\x24\x12\xe9\x23\x91\xc4" }  },
1.1       albertel 31736:       /* --- pixel bitmap for cmsy83 char#73 \calI --- */
                   31737:       {  73,  293,                      /* character number, location */
1.2       albertel 31738:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   31739:           {  7,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31740:             "\x7e\x09\x02\x81\x20\x10\x3e" }  },
1.1       albertel 31741:       /* --- pixel bitmap for cmsy83 char#74 \calJ --- */
                   31742:       {  74,  318,                      /* character number, location */
1.2       albertel 31743:           8, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
                   31744:           {  8,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31745:             "\xf0\x48\x24\x20\x10\x10\x10\x09\x06" }  },
1.1       albertel 31746:       /* --- pixel bitmap for cmsy83 char#75 \calK --- */
                   31747:       {  75,  349,                      /* character number, location */
1.2       albertel 31748:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   31749:           {  7,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31750:             "\x64\x0a\xc3\x60\x50\x28\x63" }  },
1.1       albertel 31751:       /* --- pixel bitmap for cmsy83 char#76 \calL --- */
                   31752:       {  76,  384,                      /* character number, location */
1.2       albertel 31753:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   31754:           {  6,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31755:             "\x30\x4a\x10\x84\xe0\xe6" }  },
1.1       albertel 31756:       /* --- pixel bitmap for cmsy83 char#77 \calM --- */
                   31757:       {  77,  413,                      /* character number, location */
1.2       albertel 31758:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   31759:           { 11,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31760:             "\x08\xc4\x20\x86\x31\x4a\x31\x52\x91\x69\xc0" }  },
1.1       albertel 31761:       /* --- pixel bitmap for cmsy83 char#78 \calN --- */
                   31762:       {  78,  462,                      /* character number, location */
1.2       albertel 31763:           9,-1,    0,-1,      /* topleft row,col, and botleft row,col */
                   31764:           { 11,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31765:             "\x00\x46\x08\x46\x30\x82\x09\x4a\x90\x82\x0c\x43\x00" }  },
1.1       albertel 31766:       /* --- pixel bitmap for cmsy83 char#79 \calO --- */
                   31767:       {  79,  507,                      /* character number, location */
1.2       albertel 31768:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   31769:           {  7,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31770:             "\x34\xa5\x31\x18\x0c\x45\x1c" }  },
1.1       albertel 31771:       /* --- pixel bitmap for cmsy83 char#80 \calP --- */
                   31772:       {  80,  546,                      /* character number, location */
1.2       albertel 31773:           8, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   31774:           {  6,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31775:             "\x5e\x9a\x92\x14\x43\x08\x02" }  },
1.1       albertel 31776:       /* --- pixel bitmap for cmsy83 char#81 \calQ --- */
                   31777:       {  81,  583,                      /* character number, location */
1.2       albertel 31778:           8, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   31779:           {  7,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31780:             "\x38\xa3\x30\x18\x0c\x79\x0e\x78" }  },
1.1       albertel 31781:       /* --- pixel bitmap for cmsy83 char#82 \calR --- */
                   31782:       {  82,  618,                      /* character number, location */
1.2       albertel 31783:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   31784:           {  8,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31785:             "\x3e\x49\x49\x24\x1c\x14\x24\xe2" }  },
1.1       albertel 31786:       /* --- pixel bitmap for cmsy83 char#83 \calS --- */
                   31787:       {  83,  657,                      /* character number, location */
1.2       albertel 31788:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   31789:           {  6,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31790:             "\x38\x49\x20\xb0\x18\x3b" }  },
1.1       albertel 31791:       /* --- pixel bitmap for cmsy83 char#84 \calT --- */
                   31792:       {  84,  686,                      /* character number, location */
1.2       albertel 31793:           8, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
                   31794:           {  8,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31795:             "\xfe\x12\x10\x08\x08\x08\x08\x04\x04" }  },
1.1       albertel 31796:       /* --- pixel bitmap for cmsy83 char#85 \calU --- */
                   31797:       {  85,  713,                      /* character number, location */
1.2       albertel 31798:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   31799:           {  7,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31800:             "\x46\x22\x49\x24\xcb\x64\x6e" }  },
1.1       albertel 31801:       /* --- pixel bitmap for cmsy83 char#86 \calV --- */
                   31802:       {  86,  752,                      /* character number, location */
1.2       albertel 31803:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   31804:           {  7,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31805:             "\x23\x22\x91\x44\xa2\x28\x0c" }  },
1.1       albertel 31806:       /* --- pixel bitmap for cmsy83 char#87 \calW --- */
                   31807:       {  87,  789,                      /* character number, location */
1.2       albertel 31808:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   31809:           { 11,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31810:             "\x43\x22\x23\x19\xa9\x44\x25\xa6\x18\x43\x18" }  },
1.1       albertel 31811:       /* --- pixel bitmap for cmsy83 char#88 \calX --- */
                   31812:       {  88,  844,                      /* character number, location */
1.2       albertel 31813:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   31814:           {  8,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31815:             "\xc8\x90\x70\x10\x18\x16\x11\x33" }  },
1.1       albertel 31816:       /* --- pixel bitmap for cmsy83 char#89 \calY --- */
                   31817:       {  89,  877,                      /* character number, location */
1.2       albertel 31818:           8, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
                   31819:           {  7,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31820:             "\x26\x24\x12\x85\xc2\x20\x0a\x03" }  },
1.1       albertel 31821:       /* --- pixel bitmap for cmsy83 char#90 \calZ --- */
                   31822:       {  90,  914,                      /* character number, location */
1.2       albertel 31823:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   31824:           {  8,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31825:             "\xf8\x44\x20\x38\x08\x44\x42\x3f" }  },
1.1       albertel 31826:       /* --- pixel bitmap for cmsy83 char#91 \cup --- */
                   31827:       {  91, 1067,                      /* character number, location */
1.2       albertel 31828:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   31829:           {  5,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31830:             "\x31\xc6\x18\xa3\x03" }  },
1.1       albertel 31831:       /* --- pixel bitmap for cmsy83 char#92 \cap --- */
                   31832:       {  92, 1100,                      /* character number, location */
1.2       albertel 31833:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   31834:           {  5,    7, 3, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31835:             "\x13\x1f\x51\x31" }  },
1.1       albertel 31836:       /* --- pixel bitmap for cmsy83 char#93 \uplus --- */
                   31837:       {  93, 3059,                      /* character number, location */
1.2       albertel 31838:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   31839:           {  5,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31840:             "\x31\xc6\x1a\xa3\x03" }  },
1.1       albertel 31841:       /* --- pixel bitmap for cmsy83 char#94 \wedge --- */
                   31842:       {  94, 1133,                      /* character number, location */
1.2       albertel 31843:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   31844:           {  5,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31845:             "\x84\x28\xa5\x62\x04" }  },
1.1       albertel 31846:       /* --- pixel bitmap for cmsy83 char#95 \vee --- */
                   31847:       {  95, 1164,                      /* character number, location */
1.2       albertel 31848:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   31849:           {  5,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31850:             "\x31\x2a\xa5\x08\x01" }  },
1.1       albertel 31851:       /* --- pixel bitmap for cmsy83 char#96 \vdash --- */
                   31852:       {  96, 3094,                      /* character number, location */
1.2       albertel 31853:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   31854:           {  4,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31855:             "\x11\xf1\x11\x11" }  },
1.1       albertel 31856:       /* --- pixel bitmap for cmsy83 char#97 \dashv --- */
                   31857:       {  97, 3117,                      /* character number, location */
1.2       albertel 31858:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   31859:           {  4,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31860:             "\x88\xe8\x88\x88" }  },
1.1       albertel 31861:       /* --- pixel bitmap for cmsy83 char#98 \lfloor --- */
                   31862:       {  98, 3140,                      /* character number, location */
1.2       albertel 31863:           9, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   31864:           {  3,   13, 3, 6, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31865:             "\xfb\x01\x23" }  },
1.1       albertel 31866:       /* --- pixel bitmap for cmsy83 char#99 \rfloor --- */
                   31867:       {  99, 3173,                      /* character number, location */
1.2       albertel 31868:           9, 0,   -4, 0,      /* topleft row,col, and botleft row,col */
                   31869:           {  3,   13, 3, 6, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31870:             "\xfb\x21\x03" }  },
1.1       albertel 31871:       /* --- pixel bitmap for cmsy83 char#100 \lceil --- */
                   31872:       { 100, 3206,                      /* character number, location */
1.2       albertel 31873:           9, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   31874:           {  3,   13, 3, 7, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31875:             "\x03\x0f\xb1\x23" }  },
1.1       albertel 31876:       /* --- pixel bitmap for cmsy83 char#101 \rceil --- */
                   31877:       { 101, 3239,                      /* character number, location */
1.2       albertel 31878:           9, 0,   -4, 0,      /* topleft row,col, and botleft row,col */
                   31879:           {  3,   13, 3, 6, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31880:             "\x03\xfb\x21" }  },
                   31881:       /* --- pixel bitmap for cmsy83 char#102 \lbrace --- */
1.1       albertel 31882:       { 102, 1623,                      /* character number, location */
1.2       albertel 31883:           9, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   31884:           {  5,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31885:             "\x98\x10\x42\xce\x21\x84\x10\x0c" }  },
                   31886:       /* --- pixel bitmap for cmsy83 char#103 \rbrace --- */
1.1       albertel 31887:       { 103, 1654,                      /* character number, location */
1.2       albertel 31888:           9, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   31889:           {  5,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31890:             "\x83\x10\x42\x38\x27\x84\x90\x01" }  },
1.1       albertel 31891:       /* --- pixel bitmap for cmsy83 char#104 \langle --- */
                   31892:       { 104, 3272,                      /* character number, location */
1.2       albertel 31893:           9, 0,   -4, 0,      /* topleft row,col, and botleft row,col */
                   31894:           {  3,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31895:             "\xa4\xa4\x24\x92\x48" }  },
1.1       albertel 31896:       /* --- pixel bitmap for cmsy83 char#105 \rangle --- */
                   31897:       { 105, 3305,                      /* character number, location */
1.2       albertel 31898:           9, 0,   -4, 0,      /* topleft row,col, and botleft row,col */
                   31899:           {  3,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31900:             "\x89\x24\x92\x92\x12" }  },
1.1       albertel 31901:       /* --- pixel bitmap for cmsy83 char#106 \mid --- */
                   31902:       { 106, 1560,                      /* character number, location */
1.2       albertel 31903:           9, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   31904:           {  1,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31905:             "\xff\x0f" }  },
1.1       albertel 31906:       /* --- pixel bitmap for cmsy83 char#107 \parallel --- */
                   31907:       { 107, 3338,                      /* character number, location */
1.2       albertel 31908:           9, 0,   -4, 0,      /* topleft row,col, and botleft row,col */
                   31909:           {  5,   13, 3, 6, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31910:             "\xfc\x01\x31" }  },
1.1       albertel 31911:       /* --- pixel bitmap for cmsy83 char#108 \updownarrow --- */
                   31912:       { 108, 3397,                      /* character number, location */
1.2       albertel 31913:           9, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   31914:           {  5,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31915:             "\x84\x7c\x42\x08\x21\xe4\x13\x02" }  },
1.1       albertel 31916:       /* --- pixel bitmap for cmsy83 char#109 \Updownarrow --- */
                   31917:       { 109, 3428,                      /* character number, location */
1.2       albertel 31918:           8,-1,   -2,-1,      /* topleft row,col, and botleft row,col */
                   31919:           {  8,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31920:             "\x18\x66\xc3\x42\x42\x42\x42\xc3\x66\x18" }  },
1.1       albertel 31921:       /* --- pixel bitmap for cmsy83 char#110 \setminus --- */
                   31922:       { 110, 1529,                      /* character number, location */
1.2       albertel 31923:           9, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   31924:           {  3,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31925:             "\x49\x24\x49\x22\x09" }  },
1.1       albertel 31926:       /* --- pixel bitmap for cmsy83 char#111 \wr --- */
                   31927:       { 111, 3471,                      /* character number, location */
1.2       albertel 31928:           7, 0,   -2, 0,      /* topleft row,col, and botleft row,col */
                   31929:           {  2,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31930:             "\xab\x57\x03" }  },
1.1       albertel 31931:       /* --- pixel bitmap for cmsy83 char#112 \surd --- */
                   31932:       { 112, 3496,                      /* character number, location */
1.2       albertel 31933:           1, 1,  -11, 1,      /* topleft row,col, and botleft row,col */
                   31934:           {  9,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31935:             "\x00\x01\x02\x02\x04\x04\x88\x88\x11\x14\x28\x30\x40"
1.1       albertel 31936:             "\x00" }  },
                   31937:       /* --- pixel bitmap for cmsy83 char#113 \amalg --- */
                   31938:       { 113, 3535,                      /* character number, location */
1.2       albertel 31939:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   31940:           {  8,    8, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31941:             "\x03\x23\xf5\x11\x41\x18" }  },
1.1       albertel 31942:       /* --- pixel bitmap for cmsy83 char#114 \nabla --- */
                   31943:       { 114, 3572,                      /* character number, location */
1.2       albertel 31944:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   31945:           {  8,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31946:             "\xfe\x82\x44\x44\x6c\x28\x28\x10" }  },
                   31947:       /* --- pixel bitmap for cmsy83 char#115 \smallint --- */
1.1       albertel 31948:       { 115, 1718,                      /* character number, location */
1.2       albertel 31949:           8, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   31950:           {  3,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31951:             "\xb4\x24\x49\x0b" }  },
1.1       albertel 31952:       /* --- pixel bitmap for cmsy83 char#116 \sqcup --- */
                   31953:       { 116, 3607,                      /* character number, location */
1.2       albertel 31954:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   31955:           {  5,    7, 3, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31956:             "\xf5\x01\x31\x05" }  },
1.1       albertel 31957:       /* --- pixel bitmap for cmsy83 char#117 \sqcap --- */
                   31958:       { 117, 3640,                      /* character number, location */
1.2       albertel 31959:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   31960:           {  5,    7, 3, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31961:             "\x05\x0f\x51\x31" }  },
1.1       albertel 31962:       /* --- pixel bitmap for cmsy83 char#118 \sqsubseteq --- */
                   31963:       { 118, 3673,                      /* character number, location */
1.2       albertel 31964:           7, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   31965:           {  7,   13, 3,13, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31966:             "\x07\x0f\x61\x67\xf2\x76\x10" }  },
1.1       albertel 31967:       /* --- pixel bitmap for cmsy83 char#119 \sqsupseteq --- */
                   31968:       { 119, 3702,                      /* character number, location */
1.2       albertel 31969:           7, 0,   -6, 0,      /* topleft row,col, and botleft row,col */
                   31970:           {  7,   13, 3,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31971:             "\x07\xf6\x61\x16\xf2\x70\x16" }  },
1.1       albertel 31972:       /* --- pixel bitmap for cmsy83 char#120 \S --- */
                   31973:       { 120, 3731,                      /* character number, location */
1.2       albertel 31974:           8, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   31975:           {  2,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31976:             "\xdf\xbf\x0f" }  },
1.1       albertel 31977:       /* --- pixel bitmap for cmsy83 char#121 \dag --- */
                   31978:       { 121, 3758,                      /* character number, location */
1.2       albertel 31979:           8, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   31980:           {  3,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31981:             "\x92\x2e\x49\x12" }  },
1.1       albertel 31982:       /* --- pixel bitmap for cmsy83 char#122 \ddag --- */
                   31983:       { 122, 3785,                      /* character number, location */
1.2       albertel 31984:           8, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   31985:           {  3,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31986:             "\xd2\x25\xc8\x17" }  },
1.1       albertel 31987:       /* --- pixel bitmap for cmsy83 char#123 \P --- */
                   31988:       { 123, 3812,                      /* character number, location */
1.2       albertel 31989:           8, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   31990:           {  5,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31991:             "\x7e\xad\xb5\x94\x52\x4a\x01" }  },
1.1       albertel 31992:       /* --- pixel bitmap for cmsy83 char#124 \clubsuit --- */
                   31993:       { 124, 3857,                      /* character number, location */
1.2       albertel 31994:           8, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
                   31995:           {  9,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   31996:             "\x38\xf8\xf0\xc1\xe1\xef\xff\x7f\x6b\x10\x00" }  },
1.1       albertel 31997:       /* --- pixel bitmap for cmsy83 char#125 \Diamond --- */
                   31998:       { 125, 3886,                      /* character number, location */
1.2       albertel 31999:           8, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   32000:           {  7,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32001:             "\x08\x0a\x45\x14\x14\x51\x28\x08" }  },
1.1       albertel 32002:       /* --- pixel bitmap for cmsy83 char#126 \Heart --- */
                   32003:       { 126, 3925,                      /* character number, location */
1.2       albertel 32004:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   32005:           {  7,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32006:             "\xf7\x64\x30\x18\x14\x51\x10" }  },
1.1       albertel 32007:       /* --- pixel bitmap for cmsy83 char#127 \spadesuit --- */
                   32008:       { 127, 3964,                      /* character number, location */
1.2       albertel 32009:           8, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   32010:           {  7,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32011:             "\x08\x04\xc7\xf7\xff\xff\xd7\x08" }  },
1.1       albertel 32012:       /* --- trailer  --- */
1.2       albertel 32013:       { -99, -999,  0,0,0,0, { 0,0,0,0, (pixbyte *)"\0" }  }
1.1       albertel 32014:    } ;
                   32015: 
                   32016: 
1.2       albertel 32017: /* --- size=1 for .100gf ---
                   32018:  * mf '\mode=preview; mag=magstep(-17.87427405946994351363); input cmsy10'
                   32019:  * --------------------------------------------------------------------- */
1.1       albertel 32020: /* --- fontdef for cmsy100 --- */
                   32021: static	chardef  cmsy100[] =
                   32022:    {
                   32023:       /* --- pixel bitmap for cmsy100 char#0 - --- */
1.2       albertel 32024:       {   0,20118,                      /* character number, location */
                   32025:           4, 1,    3, 1,      /* topleft row,col, and botleft row,col */
                   32026:           {  9,    1, 3, 2, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32027:             "\x09" }  },
1.1       albertel 32028:       /* --- pixel bitmap for cmsy100 char#1 \cdot --- */
1.2       albertel 32029:       {   1,36924,                      /* character number, location */
                   32030:           4, 2,    3, 2,      /* topleft row,col, and botleft row,col */
                   32031:           {  1,    1, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32032:             "\x01" }  },
1.1       albertel 32033:       /* --- pixel bitmap for cmsy100 char#2 \times --- */
1.2       albertel 32034:       {   2,41722,                      /* character number, location */
                   32035:           7, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   32036:           {  7,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32037:             "\x41\x11\x05\x41\x11\x05\x01" }  },
1.1       albertel 32038:       /* --- pixel bitmap for cmsy100 char#3 \ast --- */
1.2       albertel 32039:       {   3,42321,                      /* character number, location */
                   32040:           6, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   32041:           {  5,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32042:             "\xa4\x3a\x57\x09" }  },
1.1       albertel 32043:       /* --- pixel bitmap for cmsy100 char#4 \div --- */
1.2       albertel 32044:       {   4,43148,                      /* character number, location */
                   32045:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   32046:           {  9,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32047:             "\x10\x00\x00\xf8\x0f\x00\x00\x04" }  },
1.1       albertel 32048:       /* --- pixel bitmap for cmsy100 char#5 \diamond --- */
1.2       albertel 32049:       {   5,37433,                      /* character number, location */
                   32050:           7, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   32051:           {  7,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32052:             "\x08\x8a\x28\x28\xa2\x20\x00" }  },
1.1       albertel 32053:       /* --- pixel bitmap for cmsy100 char#6 \pm --- */
1.2       albertel 32054:       {   6,20789,                      /* character number, location */
                   32055:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   32056:           {  9,    9, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32057:             "\xf3\x41\x49\xf2\x41\x49" }  },
1.1       albertel 32058:       /* --- pixel bitmap for cmsy100 char#7 \mp --- */
1.2       albertel 32059:       {   7,43827,                      /* character number, location */
                   32060:           7, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   32061:           {  9,    9, 3,13, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32062:             "\x09\xf2\x41\x49\xf3\x41\x41" }  },
1.1       albertel 32063:       /* --- pixel bitmap for cmsy100 char#8 \oplus --- */
1.2       albertel 32064:       {   8,21508,                      /* character number, location */
                   32065:           8, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   32066:           {  9,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32067:             "\x7c\x24\x45\x8c\xf8\x3f\x62\x44\x49\x7c\x00" }  },
1.1       albertel 32068:       /* --- pixel bitmap for cmsy100 char#9 \ominus --- */
1.2       albertel 32069:       {   9,44547,                      /* character number, location */
                   32070:           8, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   32071:           {  9,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32072:             "\x7c\x04\x05\x0c\xf8\x3f\x60\x40\x41\x7c\x00" }  },
1.1       albertel 32073:       /* --- pixel bitmap for cmsy100 char#10 \otimes --- */
1.2       albertel 32074:       {  10,22252,                      /* character number, location */
                   32075:           8, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   32076:           {  9,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32077:             "\x7c\x04\x15\x4d\x19\x31\x65\x51\x41\x7c\x00" }  },
1.1       albertel 32078:       /* --- pixel bitmap for cmsy100 char#11 \oslash --- */
1.2       albertel 32079:       {  11,45280,                      /* character number, location */
                   32080:           8, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   32081:           {  9,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32082:             "\x7c\x04\x05\x0d\x19\x31\x61\x41\x41\x7c\x00" }  },
1.1       albertel 32083:       /* --- pixel bitmap for cmsy100 char#12 \odot --- */
1.2       albertel 32084:       {  12,46022,                      /* character number, location */
                   32085:           8, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   32086:           {  9,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32087:             "\x7c\x04\x05\x0c\x18\x31\x60\x40\x41\x7c\x00" }  },
1.1       albertel 32088:       /* --- pixel bitmap for cmsy100 char#13 \bigcirc --- */
1.2       albertel 32089:       {  13,46867,                      /* character number, location */
                   32090:          10, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   32091:           { 12,   13, 3,35, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32092:             "\x36\x51\x61\x20\xf1\x11\x81\x1f\x41\xa1\xf1\x11\x81"
                   32093:             "\x10\x21\x61\x56\x31" }  },
1.1       albertel 32094:       /* --- pixel bitmap for cmsy100 char#14 \circ --- */
1.2       albertel 32095:       {  14,47481,                      /* character number, location */
                   32096:           6, 1,    1, 1,      /* topleft row,col, and botleft row,col */
                   32097:           {  5,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32098:             "\x2e\xc6\xe8\x00" }  },
1.1       albertel 32099:       /* --- pixel bitmap for cmsy100 char#15 \bullet --- */
1.2       albertel 32100:       {  15,48054,                      /* character number, location */
                   32101:           6, 1,    1, 1,      /* topleft row,col, and botleft row,col */
                   32102:           {  5,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32103:             "\xee\xff\xef\x00" }  },
1.1       albertel 32104:       /* --- pixel bitmap for cmsy100 char#16 \asymp --- */
1.2       albertel 32105:       {  16,48720,                      /* character number, location */
                   32106:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   32107:           {  9,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32108:             "\x01\x05\xf1\x01\xc0\x47\x50\x40" }  },
1.1       albertel 32109:       /* --- pixel bitmap for cmsy100 char#17 \equiv --- */
1.2       albertel 32110:       {  17,35557,                      /* character number, location */
                   32111:           8, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   32112:           {  9,    9, 3,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32113:             "\x09\xf2\x99\xf2\x99" }  },
1.1       albertel 32114:       /* --- pixel bitmap for cmsy100 char#18 \subseteq --- */
1.2       albertel 32115:       {  18,49431,                      /* character number, location */
                   32116:           9, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   32117:           {  9,   13, 3,18, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32118:             "\x27\x11\x7f\x41\x80\x11\x97\xf2\x99" }  },
1.1       albertel 32119:       /* --- pixel bitmap for cmsy100 char#19 \supseteq --- */
1.2       albertel 32120:       {  19,50144,                      /* character number, location */
                   32121:           9, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   32122:           {  9,   13, 3,20, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32123:             "\x07\x91\x10\xf4\x81\x71\x17\x20\xf2\x99" }  },
1.1       albertel 32124:       /* --- pixel bitmap for cmsy100 char#20 \leq --- */
1.2       albertel 32125:       {  20,34167,                      /* character number, location */
                   32126:           9, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   32127:           {  9,   13, 3,22, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32128:             "\x81\x62\x52\x52\x52\x82\x92\x92\x92\xf2\x99" }  },
1.1       albertel 32129:       /* --- pixel bitmap for cmsy100 char#21 \geq --- */
1.2       albertel 32130:       {  21,34854,                      /* character number, location */
                   32131:           9, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   32132:           {  9,   13, 3,24, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32133:             "\x01\x92\x92\x92\x92\x62\x52\x52\x52\x70\xf2\x99" }  },
1.1       albertel 32134:       /* --- pixel bitmap for cmsy100 char#22 \preceq --- */
1.2       albertel 32135:       {  22,50825,                      /* character number, location */
                   32136:           9, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   32137:           {  9,   13, 3,24, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32138:             "\xf1\x81\x71\x62\x25\x92\x91\x10\xf1\x81\xf2\x99" }  },
1.1       albertel 32139:       /* --- pixel bitmap for cmsy100 char#23 \succeq --- */
1.2       albertel 32140:       {  23,51505,                      /* character number, location */
                   32141:           9, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   32142:           {  9,   13, 3,26, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32143:             "\xf1\x01\x80\x11\x92\x95\x22\x61\x7f\x11\x80\xf2\x99" }  },
1.1       albertel 32144:       /* --- pixel bitmap for cmsy100 char#24 \sim --- */
1.2       albertel 32145:       {  24,52163,                      /* character number, location */
                   32146:           5, 1,    2, 1,      /* topleft row,col, and botleft row,col */
                   32147:           {  9,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32148:             "\x0e\x77\x87\x03" }  },
1.1       albertel 32149:       /* --- pixel bitmap for cmsy100 char#25 \approx --- */
1.2       albertel 32150:       {  25,52883,                      /* character number, location */
                   32151:           7, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   32152:           {  9,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32153:             "\x0e\x37\xc6\x0e\xe7\x70\x63\xec\x70" }  },
1.1       albertel 32154:       /* --- pixel bitmap for cmsy100 char#26 \subset --- */
1.2       albertel 32155:       {  26,30405,                      /* character number, location */
                   32156:           8, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   32157:           {  9,    9, 3,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32158:             "\x27\x11\x7f\x41\x80\x11\x97" }  },
1.1       albertel 32159:       /* --- pixel bitmap for cmsy100 char#27 \supset --- */
1.2       albertel 32160:       {  27,31079,                      /* character number, location */
                   32161:           8, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   32162:           {  9,    9, 3,15, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32163:             "\x07\x91\x10\xf4\x81\x71\x17\x22" }  },
1.1       albertel 32164:       /* --- pixel bitmap for cmsy100 char#28 \ll --- */
1.2       albertel 32165:       {  28,53692,                      /* character number, location */
                   32166:           8, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   32167:           { 12,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32168:             "\xc0\x0c\x33\x88\x60\x06\x11\x60\x06\x88\x00\x33\xc0"
                   32169:             "\x0c" }  },
1.1       albertel 32170:       /* --- pixel bitmap for cmsy100 char#29 \gg --- */
1.2       albertel 32171:       {  29,54500,                      /* character number, location */
                   32172:           8, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   32173:           { 12,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32174:             "\x33\xc0\x0c\x10\x01\x66\x80\x08\x66\x10\xc1\x0c\x33"
                   32175:             "\x00" }  },
1.1       albertel 32176:       /* --- pixel bitmap for cmsy100 char#30 \prec --- */
1.2       albertel 32177:       {  30,55155,                      /* character number, location */
                   32178:           7, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   32179:           {  9,    9, 3,20, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32180:             "\xf1\x81\x71\x62\x25\x92\x91\x10\xf1\x81" }  },
1.1       albertel 32181:       /* --- pixel bitmap for cmsy100 char#31 \succ --- */
1.2       albertel 32182:       {  31,55791,                      /* character number, location */
                   32183:           7, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   32184:           {  9,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32185:             "\x01\x02\x08\x60\x00\x9f\x81\x80\x00\x01\x00" }  },
1.1       albertel 32186:       /* --- pixel bitmap for cmsy100 char#32 \leftarrow --- */
1.2       albertel 32187:       {  32,27376,                      /* character number, location */
                   32188:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   32189:           { 12,    7, 3,19, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32190:             "\xf1\x21\x90\x12\x9c\x12\x90\xf1\x21\x91" }  },
1.1       albertel 32191:       /* --- pixel bitmap for cmsy100 char#33 \rightarrow --- */
1.2       albertel 32192:       {  33,28382,                      /* character number, location */
                   32193:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   32194:           { 12,    7, 3,19, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32195:             "\xf1\x91\x20\x92\x1c\x92\x10\xf1\x91\x21" }  },
1.1       albertel 32196:       /* --- pixel bitmap for cmsy100 char#34 \uparrow --- */
1.2       albertel 32197:       {  34,26355,                      /* character number, location */
                   32198:          10, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   32199:           {  7,   13, 3,19, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32200:             "\xf1\x31\x30\x23\x22\x11\x12\xf8\x31\x31" }  },
1.1       albertel 32201:       /* --- pixel bitmap for cmsy100 char#35 \downarrow --- */
1.2       albertel 32202:       {  35,25570,                      /* character number, location */
                   32203:          10, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   32204:           {  7,   13, 3,19, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32205:             "\xf8\x31\x32\x11\x12\x23\x20\xf1\x31\x31" }  },
1.1       albertel 32206:       /* --- pixel bitmap for cmsy100 char#36 \leftrightarrow --- */
1.2       albertel 32207:       {  36,29725,                      /* character number, location */
                   32208:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   32209:           { 12,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32210:             "\x04\x42\x20\x06\xf6\xff\x06\x46\x20\x04\x02" }  },
1.1       albertel 32211:       /* --- pixel bitmap for cmsy100 char#37 \nearrow --- */
1.2       albertel 32212:       {  37,56801,                      /* character number, location */
                   32213:          11, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   32214:           { 13,   13, 3,33, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32215:             "\x71\xd4\xb2\xa1\x11\x91\x21\x81\x41\x61\xb1\xb1\xb1"
                   32216:             "\xb1\xb1\xb1\xc2" }  },
1.1       albertel 32217:       /* --- pixel bitmap for cmsy100 char#38 \searrow --- */
1.2       albertel 32218:       {  38,57825,                      /* character number, location */
                   32219:           9, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   32220:           { 13,   13, 3,33, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32221:             "\x01\xd1\xd1\xd1\xd1\xd1\xd1\xd1\x41\x81\x21\xa1\x11"
                   32222:             "\xb2\x94\x81\x52" }  },
1.1       albertel 32223:       /* --- pixel bitmap for cmsy100 char#39 \simeq --- */
1.2       albertel 32224:       {  39,58529,                      /* character number, location */
                   32225:           6, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   32226:           {  9,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32227:             "\x0e\x77\x87\x03\x00\x00\xc0\x7f" }  },
1.1       albertel 32228:       /* --- pixel bitmap for cmsy100 char#40 \Leftarrow --- */
1.2       albertel 32229:       {  40,59511,                      /* character number, location */
                   32230:           8, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   32231:           { 12,    9, 3,19, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32232:             "\x41\xa1\xaa\x12\xa1\xc1\xc9\x32\xb1\x71" }  },
1.1       albertel 32233:       /* --- pixel bitmap for cmsy100 char#41 \Rightarrow --- */
1.2       albertel 32234:       {  41,60494,                      /* character number, location */
                   32235:           8, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   32236:           { 11,    9, 3,19, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32237:             "\x71\xb1\x2a\xa2\xa1\x91\x19\x92\x91\x31" }  },
1.1       albertel 32238:       /* --- pixel bitmap for cmsy100 char#42 \Uparrow --- */
1.2       albertel 32239:       {  42,61292,                      /* character number, location */
                   32240:           9, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   32241:           {  8,   12, 3,19, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32242:             "\x32\x54\x32\x22\x12\x42\xf7\x11\x41\x11" }  },
1.1       albertel 32243:       /* --- pixel bitmap for cmsy100 char#43 \Downarrow --- */
1.2       albertel 32244:       {  43,62118,                      /* character number, location */
                   32245:          10, 0,   -2, 0,      /* topleft row,col, and botleft row,col */
                   32246:           {  8,   12, 3,19, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32247:             "\xf7\x11\x41\x12\x42\x12\x22\x34\x52\x31" }  },
1.1       albertel 32248:       /* --- pixel bitmap for cmsy100 char#44 \Leftrightarrow --- */
1.2       albertel 32249:       {  44,63364,                      /* character number, location */
                   32250:           8, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   32251:           { 10,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32252:             "\x84\x10\xe2\x5f\x80\x01\x0a\xe4\x1f\x21\x84\x00" }  },
1.1       albertel 32253:       /* --- pixel bitmap for cmsy100 char#45 \nwarrow --- */
1.2       albertel 32254:       {  45,64388,                      /* character number, location */
                   32255:          11, 0,   -2, 0,      /* topleft row,col, and botleft row,col */
                   32256:           { 13,   13, 3,32, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32257:             "\x51\x84\x92\xb1\x11\xa1\x21\x81\x41\xd1\xd1\xd1\xd1"
                   32258:             "\xd1\xd1\xd1" }  },
1.1       albertel 32259:       /* --- pixel bitmap for cmsy100 char#46 \swarrow --- */
1.2       albertel 32260:       {  46,65412,                      /* character number, location */
                   32261:           9, 0,   -4, 0,      /* topleft row,col, and botleft row,col */
                   32262:           { 13,   13, 3,33, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32263:             "\xc1\xb1\xb1\xb1\xb1\xb1\xb1\x61\x41\x81\x21\x91\x11"
                   32264:             "\xa2\xb4\xd1\x72" }  },
1.1       albertel 32265:       /* --- pixel bitmap for cmsy100 char#47 \propto --- */
1.2       albertel 32266:       {  47,66448,                      /* character number, location */
                   32267:           6, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   32268:           {  9,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32269:             "\x8e\xa3\x84\x08\x11\xc5\x31" }  },
1.1       albertel 32270:       /* --- pixel bitmap for cmsy100 char#48 \prime --- */
1.2       albertel 32271:       {  48,66940,                      /* character number, location */
                   32272:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   32273:           {  4,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32274:             "\x88\x44\x22\x11" }  },
1.1       albertel 32275:       /* --- pixel bitmap for cmsy100 char#49 \infty --- */
1.2       albertel 32276:       {  49,40158,                      /* character number, location */
                   32277:           6, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   32278:           { 12,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32279:             "\x0e\x17\x89\x61\x18\x86\x91\xe8\x70" }  },
1.1       albertel 32280:       /* --- pixel bitmap for cmsy100 char#50 \in --- */
1.2       albertel 32281:       {  50,31708,                      /* character number, location */
                   32282:           8, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   32283:           {  7,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32284:             "\x7c\x41\x20\xf0\x0f\x04\x04\x7c" }  },
1.1       albertel 32285:       /* --- pixel bitmap for cmsy100 char#51 \ni --- */
1.2       albertel 32286:       {  51,67569,                      /* character number, location */
                   32287:           8, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   32288:           {  7,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32289:             "\x1f\x10\x10\xf8\x07\x02\x41\x1f" }  },
1.1       albertel 32290:       /* --- pixel bitmap for cmsy100 char#52 \triangle --- */
1.2       albertel 32291:       {  52,68311,                      /* character number, location */
                   32292:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   32293:           { 11,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32294:             "\x20\x80\x02\x14\x10\x81\x08\x82\x10\x44\x40\x02\xfa"
                   32295:             "\x3f" }  },
1.1       albertel 32296:       /* --- pixel bitmap for cmsy100 char#53 \bigtriangledown --- */
1.2       albertel 32297:       {  53,69080,                      /* character number, location */
                   32298:           7, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   32299:           { 11,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32300:             "\xff\x17\x90\x80\x08\x42\x10\x44\x20\x02\x0a\x50\x00"
                   32301:             "\x01" }  },
                   32302:       /* --- pixel bitmap for cmsy100 char#54 \boldslash --- */
                   32303:       {  54,69432,                      /* character number, location */
                   32304:          10, 2,   -3, 2,      /* topleft row,col, and botleft row,col */
                   32305:           {  7,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32306:             "\x40\x10\x08\x02\x41\x20\x10\x04\x82\x40\x10\x00" }  },
                   32307:       /* --- pixel bitmap for cmsy100 char#55 \' --- */
                   32308:       {  55,69783,                      /* character number, location */
                   32309:           6, 1,    1, 1,      /* topleft row,col, and botleft row,col */
                   32310:           {  1,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32311:             "\x1f" }  },
1.1       albertel 32312:       /* --- pixel bitmap for cmsy100 char#56 \forall --- */
1.2       albertel 32313:       {  56,32304,                      /* character number, location */
                   32314:          10, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   32315:           {  9,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32316:             "\x01\x03\x0a\xf2\x47\x84\x08\x0a\x14\x10\x20\x00" }  },
1.1       albertel 32317:       /* --- pixel bitmap for cmsy100 char#57 \exists --- */
1.2       albertel 32318:       {  57,32907,                      /* character number, location */
                   32319:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   32320:           {  6,   10, 3,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32321:             "\x06\xf2\x51\x15\xf3\x51\x06" }  },
1.1       albertel 32322:       /* --- pixel bitmap for cmsy100 char#58 \neg --- */
1.2       albertel 32323:       {  58,33497,                      /* character number, location */
                   32324:           5, 1,    1, 1,      /* topleft row,col, and botleft row,col */
                   32325:           {  7,    4, 3, 6, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32326:             "\x07\xf2\x61" }  },
1.1       albertel 32327:       /* --- pixel bitmap for cmsy100 char#59 \emptyset --- */
1.2       albertel 32328:       {  59,70458,                      /* character number, location */
                   32329:          10, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   32330:           {  5,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32331:             "\x0e\xe5\x5a\x6b\xad\xc2\x09" }  },
1.1       albertel 32332:       /* --- pixel bitmap for cmsy100 char#60 \Re --- */
1.2       albertel 32333:       {  60,72229,                      /* character number, location */
                   32334:          10, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   32335:           { 10,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32336:             "\xec\x68\x24\x11\x85\xf4\x59\x01\x09\x24\x93\x38\x0e" }  },
1.1       albertel 32337:       /* --- pixel bitmap for cmsy100 char#61 \Im --- */
1.2       albertel 32338:       {  61,73456,                      /* character number, location */
                   32339:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   32340:           {  9,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32341:             "\x3c\x84\x06\x0e\x10\xd8\x30\xa0\x41\x84\xf0\x00" }  },
1.1       albertel 32342:       /* --- pixel bitmap for cmsy100 char#62 \top --- */
1.2       albertel 32343:       {  62,74122,                      /* character number, location */
                   32344:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   32345:           {  9,    9, 3, 7, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32346:             "\x09\xf7\x41\x42" }  },
1.1       albertel 32347:       /* --- pixel bitmap for cmsy100 char#63 \bot --- */
1.2       albertel 32348:       {  63,74797,                      /* character number, location */
                   32349:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   32350:           {  9,    9, 3, 6, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32351:             "\xf7\x41\x49" }  },
1.1       albertel 32352:       /* --- pixel bitmap for cmsy100 char#64 \aleph --- */
1.2       albertel 32353:       {  64,75990,                      /* character number, location */
                   32354:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   32355:           {  6,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32356:             "\x91\x24\xd7\x55\x96\x49\xd2\x08" }  },
1.1       albertel 32357:       /* --- pixel bitmap for cmsy100 char#65 \calA --- */
1.2       albertel 32358:       {  65,  722,                      /* character number, location */
                   32359:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   32360:           { 11,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32361:             "\x00\x01\x0a\x50\x40\x02\x12\x88\xe0\x8f\x40\x03\x06" }  },
1.1       albertel 32362:       /* --- pixel bitmap for cmsy100 char#66 \calB --- */
1.2       albertel 32363:       {  66, 1412,                      /* character number, location */
                   32364:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   32365:           {  9,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32366:             "\xe4\x28\x32\x26\x63\x4d\xa0\x40\x41\x7d\x00" }  },
1.1       albertel 32367:       /* --- pixel bitmap for cmsy100 char#67 \calC --- */
1.2       albertel 32368:       {  67, 2053,                      /* character number, location */
                   32369:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   32370:           {  7,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32371:             "\x78\xa2\x28\x10\x08\x04\x44\x1c" }  },
1.1       albertel 32372:       /* --- pixel bitmap for cmsy100 char#68 \calD --- */
1.2       albertel 32373:       {  68, 2823,                      /* character number, location */
                   32374:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   32375:           { 10,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32376:             "\xfe\x24\x94\x20\x82\x08\x12\x44\x10\x31\x3e\x00" }  },
1.1       albertel 32377:       /* --- pixel bitmap for cmsy100 char#69 \calE --- */
1.2       albertel 32378:       {  69, 3450,                      /* character number, location */
                   32379:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   32380:           {  7,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32381:             "\x78\xa2\x40\xc0\x11\x04\x42\x1e" }  },
1.1       albertel 32382:       /* --- pixel bitmap for cmsy100 char#70 \calF --- */
1.2       albertel 32383:       {  70, 4166,                      /* character number, location */
                   32384:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   32385:           { 12,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32386:             "\xf0\x8f\x04\x48\x00\x02\xe0\x03\x02\x10\x00\x01\x0e"
                   32387:             "\x00" }  },
1.1       albertel 32388:       /* --- pixel bitmap for cmsy100 char#71 \calG --- */
1.2       albertel 32389:       {  71, 4845,                      /* character number, location */
                   32390:           9, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
                   32391:           {  7,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32392:             "\x78\xa2\x30\x10\x0c\x86\x7d\x90\x07" }  },
1.1       albertel 32393:       /* --- pixel bitmap for cmsy100 char#72 \calH --- */
1.2       albertel 32394:       {  72, 5703,                      /* character number, location */
                   32395:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   32396:           { 10,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32397:             "\x0e\x26\x98\x10\x42\xfe\x11\x42\x08\x21\x84\x03" }  },
1.1       albertel 32398:       /* --- pixel bitmap for cmsy100 char#73 \calI --- */
1.2       albertel 32399:       {  73, 6424,                      /* character number, location */
                   32400:           9,-1,    0,-1,      /* topleft row,col, and botleft row,col */
                   32401:           {  9,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32402:             "\xfc\x45\x80\x80\x00\x01\x02\x02\x44\x7f\x00" }  },
1.1       albertel 32403:       /* --- pixel bitmap for cmsy100 char#74 \calJ --- */
1.2       albertel 32404:       {  74, 7070,                      /* character number, location */
                   32405:           9, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
                   32406:           { 11,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32407:             "\xc0\x87\x09\x44\x00\x01\x08\x40\x00\x01\x08\x21\xf0"
                   32408:             "\x00" }  },
1.1       albertel 32409:       /* --- pixel bitmap for cmsy100 char#75 \calK --- */
1.2       albertel 32410:       {  75, 7843,                      /* character number, location */
                   32411:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   32412:           {  9,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32413:             "\x84\xc9\x50\x60\xa0\x40\x82\x84\x90\xc1\x00" }  },
1.1       albertel 32414:       /* --- pixel bitmap for cmsy100 char#76 \calL --- */
1.2       albertel 32415:       {  76, 8559,                      /* character number, location */
                   32416:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   32417:           {  8,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32418:             "\xe0\x90\x08\x08\x04\x04\x04\x9e\x71" }  },
1.1       albertel 32419:       /* --- pixel bitmap for cmsy100 char#77 \calM --- */
1.2       albertel 32420:       {  77, 9626,                      /* character number, location */
                   32421:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   32422:           { 15,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32423:             "\x10\x40\x08\x30\x0c\x18\x05\x8a\x82\x42\x22\x11\x89"
                   32424:             "\x08\x43\x03\x60" }  },
1.1       albertel 32425:       /* --- pixel bitmap for cmsy100 char#78 \calN --- */
1.2       albertel 32426:       {  78,10545,                      /* character number, location */
                   32427:          10, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   32428:           { 12,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32429:             "\x00\x0c\x21\x10\x82\x21\x28\x81\x12\x28\x41\x14\xc4"
                   32430:             "\x30\x08" }  },
1.1       albertel 32431:       /* --- pixel bitmap for cmsy100 char#79 \calO --- */
1.2       albertel 32432:       {  79,11282,                      /* character number, location */
                   32433:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   32434:           { 10,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32435:             "\xf8\x50\x24\x61\x80\x01\x06\x14\x90\x30\x3c\x00" }  },
1.1       albertel 32436:       /* --- pixel bitmap for cmsy100 char#80 \calP --- */
1.2       albertel 32437:       {  80,12023,                      /* character number, location */
                   32438:           9, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
                   32439:           { 10,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32440:             "\xfe\x24\x9c\x20\x82\x88\xd1\x41\x00\x01\x02\x08\x00" }  },
1.1       albertel 32441:       /* --- pixel bitmap for cmsy100 char#81 \calQ --- */
1.2       albertel 32442:       {  81,12808,                      /* character number, location */
                   32443:           9, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   32444:           {  9,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32445:             "\x78\x08\x09\x0c\x18\x30\x50\x10\x1f\x0e\xe0\x03" }  },
1.1       albertel 32446:       /* --- pixel bitmap for cmsy100 char#82 \calR --- */
1.2       albertel 32447:       {  82,13601,                      /* character number, location */
                   32448:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   32449:           { 11,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32450:             "\xfe\x49\x50\x82\x10\x82\x0f\x22\x10\x81\x90\x02\x03" }  },
1.1       albertel 32451:       /* --- pixel bitmap for cmsy100 char#83 \calS --- */
1.2       albertel 32452:       {  83,14271,                      /* character number, location */
                   32453:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   32454:           {  8,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32455:             "\xf8\x84\x04\x08\x70\x81\x81\x43\x3c" }  },
1.1       albertel 32456:       /* --- pixel bitmap for cmsy100 char#84 \calT --- */
1.2       albertel 32457:       {  84,14939,                      /* character number, location */
                   32458:           9, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   32459:           { 10,   10, 3,21, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32460:             "\x1a\x41\x40\xf3\x41\x50\xf2\x31\x60\x21\x71" }  },
1.1       albertel 32461:       /* --- pixel bitmap for cmsy100 char#85 \calU --- */
1.2       albertel 32462:       {  85,15655,                      /* character number, location */
                   32463:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   32464:           {  9,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32465:             "\x06\x09\x12\x12\x24\x2c\x4c\x94\x24\xc6\x00" }  },
1.1       albertel 32466:       /* --- pixel bitmap for cmsy100 char#86 \calV --- */
1.2       albertel 32467:       {  86,16296,                      /* character number, location */
                   32468:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   32469:           {  9,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32470:             "\xc1\x04\x12\x24\x44\x88\x08\x09\x0a\x0c\x00" }  },
1.1       albertel 32471:       /* --- pixel bitmap for cmsy100 char#87 \calW --- */
1.2       albertel 32472:       {  87,17273,                      /* character number, location */
                   32473:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   32474:           { 14,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32475:             "\x83\x90\x30\x48\x0c\x92\x44\x24\x11\x45\xc2\x90\x18"
                   32476:             "\x14\x06\x03" }  },
1.1       albertel 32477:       /* --- pixel bitmap for cmsy100 char#88 \calX --- */
1.2       albertel 32478:       {  88,18026,                      /* character number, location */
                   32479:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   32480:           { 11,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32481:             "\x18\x06\x21\xc8\xc0\x01\x02\x2c\x18\x21\x08\x83\x01" }  },
1.1       albertel 32482:       /* --- pixel bitmap for cmsy100 char#89 \calY --- */
1.2       albertel 32483:       {  89,18711,                      /* character number, location */
                   32484:           9, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
                   32485:           { 10,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32486:             "\x86\x21\x08\x21\x44\x10\x41\x02\x05\x08\x11\x38\x00" }  },
1.1       albertel 32487:       /* --- pixel bitmap for cmsy100 char#90 \calZ --- */
1.2       albertel 32488:       {  90,19491,                      /* character number, location */
                   32489:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   32490:           { 10,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32491:             "\xf8\x13\x44\x08\x10\xf0\x40\x80\x90\x41\xff\x00" }  },
1.1       albertel 32492:       /* --- pixel bitmap for cmsy100 char#91 \cup --- */
1.2       albertel 32493:       {  91,22900,                      /* character number, location */
                   32494:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   32495:           {  7,    9, 3,13, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32496:             "\xf6\x01\x51\x11\x31\x33\x22" }  },
1.1       albertel 32497:       /* --- pixel bitmap for cmsy100 char#92 \cap --- */
1.2       albertel 32498:       {  92,23539,                      /* character number, location */
                   32499:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   32500:           {  7,    9, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32501:             "\x23\x31\x31\x1f\x61\x51" }  },
1.1       albertel 32502:       /* --- pixel bitmap for cmsy100 char#93 \uplus --- */
1.2       albertel 32503:       {  93,76697,                      /* character number, location */
                   32504:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   32505:           {  7,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32506:             "\xc1\x60\x30\xd9\x4d\x06\x45\x1c" }  },
1.1       albertel 32507:       /* --- pixel bitmap for cmsy100 char#94 \wedge --- */
1.2       albertel 32508:       {  94,24161,                      /* character number, location */
                   32509:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   32510:           {  7,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32511:             "\x08\x04\x85\x22\x12\x89\x82\x41" }  },
1.1       albertel 32512:       /* --- pixel bitmap for cmsy100 char#95 \vee --- */
1.2       albertel 32513:       {  95,24781,                      /* character number, location */
                   32514:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   32515:           {  7,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32516:             "\xc1\xa0\x48\x24\xa2\x50\x10\x08" }  },
1.1       albertel 32517:       /* --- pixel bitmap for cmsy100 char#96 \vdash --- */
1.2       albertel 32518:       {  96,77294,                      /* character number, location */
                   32519:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   32520:           {  6,   10, 3,11, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32521:             "\xf3\x01\x56\x0f\x41\x52" }  },
1.1       albertel 32522:       /* --- pixel bitmap for cmsy100 char#97 \dashv --- */
1.2       albertel 32523:       {  97,77872,                      /* character number, location */
                   32524:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   32525:           {  6,   10, 3,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32526:             "\xf3\x51\x15\xf4\x51" }  },
1.1       albertel 32527:       /* --- pixel bitmap for cmsy100 char#98 \lfloor --- */
1.2       albertel 32528:       {  98,78360,                      /* character number, location */
                   32529:          10, 2,   -3, 2,      /* topleft row,col, and botleft row,col */
                   32530:           {  4,   13, 3, 6, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32531:             "\xfb\x01\x34" }  },
1.1       albertel 32532:       /* --- pixel bitmap for cmsy100 char#99 \rfloor --- */
1.2       albertel 32533:       {  99,78855,                      /* character number, location */
                   32534:          10, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   32535:           {  4,   13, 3, 6, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32536:             "\xfb\x31\x04" }  },
1.1       albertel 32537:       /* --- pixel bitmap for cmsy100 char#100 \lceil --- */
1.2       albertel 32538:       { 100,79351,                      /* character number, location */
                   32539:          10, 2,   -3, 2,      /* topleft row,col, and botleft row,col */
                   32540:           {  4,   13, 3, 7, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32541:             "\x04\x0f\xb1\x34" }  },
1.1       albertel 32542:       /* --- pixel bitmap for cmsy100 char#101 \rceil --- */
1.2       albertel 32543:       { 101,79848,                      /* character number, location */
                   32544:          10, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   32545:           {  4,   13, 3, 6, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32546:             "\x04\xfb\x31" }  },
                   32547:       /* --- pixel bitmap for cmsy100 char#102 \lbrace --- */
                   32548:       { 102,38233,                      /* character number, location */
                   32549:          10, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   32550:           {  5,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32551:             "\x98\x10\x42\xc8\x20\x84\x10\x82\x01" }  },
                   32552:       /* --- pixel bitmap for cmsy100 char#103 \rbrace --- */
                   32553:       { 103,39036,                      /* character number, location */
                   32554:          10, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   32555:           {  5,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32556:             "\x83\x10\x42\x08\x26\x84\x10\x32\x00" }  },
1.1       albertel 32557:       /* --- pixel bitmap for cmsy100 char#104 \langle --- */
1.2       albertel 32558:       { 104,80316,                      /* character number, location */
                   32559:          10, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   32560:           {  4,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32561:             "\x88\x24\x12\x11\x22\x84\x08" }  },
1.1       albertel 32562:       /* --- pixel bitmap for cmsy100 char#105 \rangle --- */
1.2       albertel 32563:       { 105,80785,                      /* character number, location */
                   32564:          10, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   32565:           {  4,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32566:             "\x11\x42\x84\x88\x44\x12\x01" }  },
1.1       albertel 32567:       /* --- pixel bitmap for cmsy100 char#106 \mid --- */
1.2       albertel 32568:       { 106,36449,                      /* character number, location */
                   32569:          10, 2,   -3, 2,      /* topleft row,col, and botleft row,col */
                   32570:           {  1,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32571:             "\xff\x1f" }  },
1.1       albertel 32572:       /* --- pixel bitmap for cmsy100 char#107 \parallel --- */
1.2       albertel 32573:       { 107,81344,                      /* character number, location */
                   32574:          10, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   32575:           {  5,   13, 3, 6, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32576:             "\xfc\x01\x31" }  },
1.1       albertel 32577:       /* --- pixel bitmap for cmsy100 char#108 \updownarrow --- */
1.2       albertel 32578:       { 108,82488,                      /* character number, location */
                   32579:          10, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   32580:           {  7,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32581:             "\x08\x04\x67\x8d\x40\x20\x10\x88\x35\x07\x81\x00" }  },
1.1       albertel 32582:       /* --- pixel bitmap for cmsy100 char#109 \Updownarrow --- */
1.2       albertel 32583:       { 109,83523,                      /* character number, location */
                   32584:           9, 0,   -2, 0,      /* topleft row,col, and botleft row,col */
                   32585:           {  8,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32586:             "\x18\x24\xc3\x42\x42\x42\x42\x42\xc3\x24\x18" }  },
1.1       albertel 32587:       /* --- pixel bitmap for cmsy100 char#110 \setminus --- */
1.2       albertel 32588:       { 110,36053,                      /* character number, location */
                   32589:          10, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   32590:           {  5,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32591:             "\x21\x08\x21\x08\x21\x08\x21\x08\x01" }  },
1.1       albertel 32592:       /* --- pixel bitmap for cmsy100 char#111 \wr --- */
1.2       albertel 32593:       { 111,83964,                      /* character number, location */
                   32594:           8, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   32595:           {  2,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32596:             "\xab\x57\x03" }  },
1.1       albertel 32597:       /* --- pixel bitmap for cmsy100 char#112 \surd --- */
1.2       albertel 32598:       { 112,84782,                      /* character number, location */
                   32599:           1, 1,  -13, 1,      /* topleft row,col, and botleft row,col */
                   32600:           { 12,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32601:             "\x00\x08\x40\x00\x04\x20\x00\x02\x10\x00\x21\x08\x87"
1.1       albertel 32602:             "\x40\x04\x48\x80\x02\x28\x00\x01" }  },
                   32603:       /* --- pixel bitmap for cmsy100 char#113 \amalg --- */
1.2       albertel 32604:       { 113,85934,                      /* character number, location */
                   32605:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   32606:           {  8,    9, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32607:             "\x03\x23\xf6\x11\x41\x18" }  },
1.1       albertel 32608:       /* --- pixel bitmap for cmsy100 char#114 \nabla --- */
1.2       albertel 32609:       { 114,86826,                      /* character number, location */
                   32610:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   32611:           { 10,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32612:             "\xff\x0f\x2c\x90\x61\x84\x20\x81\x04\x0c\x30\x00" }  },
                   32613:       /* --- pixel bitmap for cmsy100 char#115 \smallint --- */
                   32614:       { 115,41061,                      /* character number, location */
                   32615:          10, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   32616:           {  5,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32617:             "\x18\x23\x42\x08\x21\x84\x88\x31\x00" }  },
1.1       albertel 32618:       /* --- pixel bitmap for cmsy100 char#116 \sqcup --- */
1.2       albertel 32619:       { 116,87458,                      /* character number, location */
                   32620:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   32621:           {  7,    9, 3, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32622:             "\xf7\x01\x51\x07" }  },
1.1       albertel 32623:       /* --- pixel bitmap for cmsy100 char#117 \sqcap --- */
1.2       albertel 32624:       { 117,88101,                      /* character number, location */
                   32625:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   32626:           {  7,    9, 3, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32627:             "\x07\x0f\x71\x51" }  },
1.1       albertel 32628:       /* --- pixel bitmap for cmsy100 char#118 \sqsubseteq --- */
1.2       albertel 32629:       { 118,88816,                      /* character number, location */
                   32630:           9, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   32631:           { 10,   13, 3,13, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32632:             "\x0a\x0f\x61\x9a\xf2\xa9\x11" }  },
1.1       albertel 32633:       /* --- pixel bitmap for cmsy100 char#119 \sqsupseteq --- */
1.2       albertel 32634:       { 119,89521,                      /* character number, location */
                   32635:           9, 0,   -4, 0,      /* topleft row,col, and botleft row,col */
                   32636:           { 10,   13, 3,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32637:             "\x0a\xf6\x91\x19\xf2\xa0\x19" }  },
1.1       albertel 32638:       /* --- pixel bitmap for cmsy100 char#120 \S --- */
1.2       albertel 32639:       { 120,90480,                      /* character number, location */
                   32640:          10, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   32641:           {  4,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32642:             "\x96\x11\x96\x99\x86\x98\x06" }  },
1.1       albertel 32643:       /* --- pixel bitmap for cmsy100 char#121 \dag --- */
1.2       albertel 32644:       { 121,91266,                      /* character number, location */
                   32645:          10, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   32646:           {  5,   13, 3,11, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32647:             "\xf3\x21\x25\xf7\x21\x20" }  },
1.1       albertel 32648:       /* --- pixel bitmap for cmsy100 char#122 \ddag --- */
1.2       albertel 32649:       { 122,92237,                      /* character number, location */
                   32650:          10, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   32651:           {  5,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32652:             "\x84\x7c\x42\x08\x20\xc4\x7f\x42\x00" }  },
1.1       albertel 32653:       /* --- pixel bitmap for cmsy100 char#123 \P --- */
1.2       albertel 32654:       { 123,92895,                      /* character number, location */
                   32655:          10, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   32656:           {  7,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32657:             "\x7c\xd7\xeb\xf5\x72\xb1\x50\x28\x14\x0a\x85\x02" }  },
1.1       albertel 32658:       /* --- pixel bitmap for cmsy100 char#124 \clubsuit --- */
1.2       albertel 32659:       { 124,93797,                      /* character number, location */
                   32660:          10, 0,   -2, 0,      /* topleft row,col, and botleft row,col */
                   32661:           { 11,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32662:             "\x70\xc0\x07\x3e\xf0\x01\x07\xff\xfd\xff\xff\xaf\x37"
1.1       albertel 32663:             "\x19\x08\x40\x00" }  },
                   32664:       /* --- pixel bitmap for cmsy100 char#125 \Diamond --- */
1.2       albertel 32665:       { 125,94462,                      /* character number, location */
                   32666:          10, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   32667:           {  9,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32668:             "\x10\x50\xa0\x20\x22\x48\xb0\x20\x41\x44\x50\xa0\x80"
1.1       albertel 32669:             "\x00" }  },
                   32670:       /* --- pixel bitmap for cmsy100 char#126 \Heart --- */
1.2       albertel 32671:       { 126,95227,                      /* character number, location */
                   32672:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   32673:           {  9,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32674:             "\xee\x22\x46\x0c\x18\x50\x10\x11\x14\x10\x20\x00" }  },
1.1       albertel 32675:       /* --- pixel bitmap for cmsy100 char#127 \spadesuit --- */
1.2       albertel 32676:       { 127,96054,                      /* character number, location */
                   32677:          10, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   32678:           {  9,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32679:             "\x10\x20\xe0\xe0\xe3\xef\xff\xff\xff\xd7\x25\x41\x80"
1.1       albertel 32680:             "\x00" }  },
                   32681:       /* --- trailer  --- */
1.2       albertel 32682:       { -99, -999,  0,0,0,0, { 0,0,0,0, (pixbyte *)"\0" }  }
1.1       albertel 32683:    } ;
                   32684: 
                   32685: 
1.2       albertel 32686: /* --- size=2 for .118gf ---
                   32687:  * mf '\mode=preview; mag=magstep(-16.96645799324018499600); input cmsy10'
                   32688:  * --------------------------------------------------------------------- */
1.1       albertel 32689: /* --- fontdef for cmsy118 --- */
                   32690: static	chardef  cmsy118[] =
                   32691:    {
                   32692:       /* --- pixel bitmap for cmsy118 char#0 - --- */
1.2       albertel 32693:       {   0,20576,                      /* character number, location */
                   32694:           5, 1,    4, 1,      /* topleft row,col, and botleft row,col */
                   32695:           { 11,    1, 3, 2, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32696:             "\x0b" }  },
1.1       albertel 32697:       /* --- pixel bitmap for cmsy118 char#1 \cdot --- */
1.2       albertel 32698:       {   1,37492,                      /* character number, location */
                   32699:           6, 2,    4, 2,      /* topleft row,col, and botleft row,col */
                   32700:           {  2,    2, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32701:             "\x0f" }  },
1.1       albertel 32702:       /* --- pixel bitmap for cmsy118 char#2 \times --- */
1.2       albertel 32703:       {   2,42368,                      /* character number, location */
                   32704:           9, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   32705:           {  9,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32706:             "\x01\x05\x11\x41\x01\x01\x05\x11\x41\x01\x01" }  },
1.1       albertel 32707:       /* --- pixel bitmap for cmsy118 char#3 \ast --- */
1.2       albertel 32708:       {   3,42975,                      /* character number, location */
                   32709:           8, 1,    1, 1,      /* topleft row,col, and botleft row,col */
                   32710:           {  6,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32711:             "\x08\xb2\x33\x3b\x82\x00" }  },
1.1       albertel 32712:       /* --- pixel bitmap for cmsy118 char#4 \div --- */
1.2       albertel 32713:       {   4,43774,                      /* character number, location */
                   32714:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   32715:           { 10,    9, 3,19, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32716:             "\xf1\x42\x40\xf1\xaa\xf1\xa0\xf1\x42\x41" }  },
1.1       albertel 32717:       /* --- pixel bitmap for cmsy118 char#5 \diamond --- */
1.2       albertel 32718:       {   5,38055,                      /* character number, location */
                   32719:           8, 1,    1, 1,      /* topleft row,col, and botleft row,col */
                   32720:           {  7,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32721:             "\x08\x8a\x28\x28\xa2\x20\x00" }  },
1.1       albertel 32722:       /* --- pixel bitmap for cmsy118 char#6 \pm --- */
1.2       albertel 32723:       {   6,21247,                      /* character number, location */
                   32724:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   32725:           { 11,   11, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32726:             "\xf4\x51\x5b\xf3\x51\x5b" }  },
1.1       albertel 32727:       /* --- pixel bitmap for cmsy118 char#7 \mp --- */
1.2       albertel 32728:       {   7,44457,                      /* character number, location */
                   32729:           9, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   32730:           { 11,   11, 3,13, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32731:             "\x0b\xf3\x51\x5b\xf4\x51\x50" }  },
1.1       albertel 32732:       /* --- pixel bitmap for cmsy118 char#8 \oplus --- */
1.2       albertel 32733:       {   8,21970,                      /* character number, location */
                   32734:          10, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   32735:           { 11,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32736:             "\xf8\x20\x89\x88\x42\x18\xc2\xff\x87\x30\x84\x22\x22"
                   32737:             "\x09\x3e\x00" }  },
1.1       albertel 32738:       /* --- pixel bitmap for cmsy118 char#9 \ominus --- */
1.2       albertel 32739:       {   9,45181,                      /* character number, location */
                   32740:          10, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   32741:           { 11,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32742:             "\xf8\x20\x88\x80\x02\x18\xc0\xff\x07\x30\x80\x02\x22"
                   32743:             "\x08\x3e\x00" }  },
1.1       albertel 32744:       /* --- pixel bitmap for cmsy118 char#10 \otimes --- */
1.2       albertel 32745:       {  10,22726,                      /* character number, location */
                   32746:          10, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   32747:           { 11,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32748:             "\xf8\x20\x88\xc1\x12\x19\xc5\x10\x46\x31\x91\x06\x23"
                   32749:             "\x08\x3e\x00" }  },
1.1       albertel 32750:       /* --- pixel bitmap for cmsy118 char#11 \oslash --- */
1.2       albertel 32751:       {  11,45922,                      /* character number, location */
                   32752:          10, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   32753:           { 11,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32754:             "\xf8\x20\x88\xc0\x02\x19\xc4\x10\x46\x30\x81\x06\x22"
                   32755:             "\x08\x3e\x00" }  },
1.1       albertel 32756:       /* --- pixel bitmap for cmsy118 char#12 \odot --- */
1.2       albertel 32757:       {  12,46672,                      /* character number, location */
                   32758:          10, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   32759:           { 11,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32760:             "\xf8\x20\x88\x80\x02\x18\xc7\x38\xc6\x31\x80\x02\x22"
                   32761:             "\x08\x3e\x00" }  },
1.1       albertel 32762:       /* --- pixel bitmap for cmsy118 char#13 \bigcirc --- */
1.2       albertel 32763:       {  13,47529,                      /* character number, location */
                   32764:          11, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   32765:           { 14,   14, 3,43, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32766:             "\x54\x82\x42\x51\x81\x20\xf1\x11\xa1\x1f\x31\xc1\xf1"
                   32767:             "\x11\xa1\x10\x21\x81\x52\x42\x84\x52" }  },
1.1       albertel 32768:       /* --- pixel bitmap for cmsy118 char#14 \circ --- */
1.2       albertel 32769:       {  14,48147,                      /* character number, location */
                   32770:           7, 1,    1, 1,      /* topleft row,col, and botleft row,col */
                   32771:           {  6,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32772:             "\x5e\x18\x86\xa1\x07" }  },
1.1       albertel 32773:       /* --- pixel bitmap for cmsy118 char#15 \bullet --- */
1.2       albertel 32774:       {  15,48724,                      /* character number, location */
                   32775:           7, 1,    1, 1,      /* topleft row,col, and botleft row,col */
                   32776:           {  6,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32777:             "\xde\xff\xff\xbf\x07" }  },
1.1       albertel 32778:       /* --- pixel bitmap for cmsy118 char#16 \asymp --- */
1.2       albertel 32779:       {  16,49392,                      /* character number, location */
                   32780:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   32781:           { 11,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32782:             "\x01\x34\x18\x3e\x00\x00\x00\x00\xe0\xc3\x60\x01\x04" }  },
1.1       albertel 32783:       /* --- pixel bitmap for cmsy118 char#17 \equiv --- */
1.2       albertel 32784:       {  17,36061,                      /* character number, location */
                   32785:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   32786:           { 11,    9, 3,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32787:             "\x0b\xf2\xbb\xf2\xbb" }  },
1.1       albertel 32788:       /* --- pixel bitmap for cmsy118 char#18 \subseteq --- */
1.2       albertel 32789:       {  18,50103,                      /* character number, location */
                   32790:          10, 1,   -5, 1,      /* topleft row,col, and botleft row,col */
                   32791:           { 11,   15, 3,22, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32792:             "\x38\x21\x91\x9f\x41\xa0\x11\xb1\xb8\xf2\xbb" }  },
1.1       albertel 32793:       /* --- pixel bitmap for cmsy118 char#19 \supseteq --- */
1.2       albertel 32794:       {  19,50820,                      /* character number, location */
                   32795:          10, 1,   -5, 1,      /* topleft row,col, and botleft row,col */
                   32796:           { 11,   15, 3,24, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32797:             "\x08\xb1\xb1\x10\xf4\xa1\x91\x91\x28\x30\xf2\xbb" }  },
1.1       albertel 32798:       /* --- pixel bitmap for cmsy118 char#20 \leq --- */
1.2       albertel 32799:       {  20,34663,                      /* character number, location */
                   32800:          10, 1,   -5, 1,      /* topleft row,col, and botleft row,col */
                   32801:           { 11,   15, 3,26, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32802:             "\xa1\x82\x72\x72\x72\x72\xa2\xb2\xb2\xb2\xb2\xf2\xbb" }  },
1.1       albertel 32803:       /* --- pixel bitmap for cmsy118 char#21 \geq --- */
1.2       albertel 32804:       {  21,35354,                      /* character number, location */
                   32805:          10, 1,   -5, 1,      /* topleft row,col, and botleft row,col */
                   32806:           { 11,   15, 3,28, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32807:             "\x01\xb2\xb2\xb2\xb2\xb2\x82\x72\x72\x72\x72\x90\xf2"
                   32808:             "\xbb" }  },
1.1       albertel 32809:       /* --- pixel bitmap for cmsy118 char#22 \preceq --- */
1.2       albertel 32810:       {  22,51505,                      /* character number, location */
                   32811:          10, 1,   -5, 1,      /* topleft row,col, and botleft row,col */
                   32812:           { 11,   15, 3,28, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32813:             "\xf1\xa1\x91\x91\x73\x35\xb3\xb1\xb1\x10\xf1\xa1\xf2"
                   32814:             "\xbb" }  },
1.1       albertel 32815:       /* --- pixel bitmap for cmsy118 char#23 \succeq --- */
1.2       albertel 32816:       {  23,52189,                      /* character number, location */
                   32817:          10, 1,   -5, 1,      /* topleft row,col, and botleft row,col */
                   32818:           { 11,   15, 3,30, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32819:             "\xf1\x01\xa0\x11\xb1\xb3\xb5\x33\x71\x91\x9f\x11\xa0"
                   32820:             "\xf2\xbb" }  },
1.1       albertel 32821:       /* --- pixel bitmap for cmsy118 char#24 \sim --- */
1.2       albertel 32822:       {  24,52851,                      /* character number, location */
                   32823:           6, 1,    2, 1,      /* topleft row,col, and botleft row,col */
                   32824:           { 11,    4, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32825:             "\x1e\x9c\x61\x98\x83\x07" }  },
1.1       albertel 32826:       /* --- pixel bitmap for cmsy118 char#25 \approx --- */
1.2       albertel 32827:       {  25,53577,                      /* character number, location */
                   32828:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   32829:           { 11,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32830:             "\x1e\x9c\x61\x98\x83\xe7\xc1\x19\x86\x39\x78" }  },
1.1       albertel 32831:       /* --- pixel bitmap for cmsy118 char#26 \subset --- */
1.2       albertel 32832:       {  26,30907,                      /* character number, location */
                   32833:          10, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   32834:           { 11,   11, 3,18, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32835:             "\x38\x21\x91\x9f\x41\xa0\x11\xb1\xb8" }  },
1.1       albertel 32836:       /* --- pixel bitmap for cmsy118 char#27 \supset --- */
1.2       albertel 32837:       {  27,31585,                      /* character number, location */
                   32838:          10, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   32839:           { 11,   11, 3,19, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32840:             "\x08\xb1\xb1\x10\xf4\xa1\x91\x91\x28\x31" }  },
1.1       albertel 32841:       /* --- pixel bitmap for cmsy118 char#28 \ll --- */
1.2       albertel 32842:       {  28,54386,                      /* character number, location */
                   32843:          11, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   32844:           { 14,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32845:             "\x00\x21\x20\x04\x42\x40\x08\x8c\x81\x10\x10\x02\x08"
                   32846:             "\x01\x8c\x01\x84\x00\xc6\x00\x63\x00\x21" }  },
1.1       albertel 32847:       /* --- pixel bitmap for cmsy118 char#29 \gg --- */
1.2       albertel 32848:       {  29,55210,                      /* character number, location */
                   32849:          11, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   32850:           { 14,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32851:             "\x21\x80\x10\xc0\x18\x40\x08\x60\x0c\x30\x06\x10\x02"
                   32852:             "\x42\x20\x04\x84\xc0\x18\x08\x01\x21\x00" }  },
1.1       albertel 32853:       /* --- pixel bitmap for cmsy118 char#30 \prec --- */
1.2       albertel 32854:       {  30,55881,                      /* character number, location */
                   32855:           9, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   32856:           { 11,   11, 3,24, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32857:             "\xf1\xa1\x91\x91\x73\x35\xb3\xb1\xb1\x10\xf1\xa1" }  },
1.1       albertel 32858:       /* --- pixel bitmap for cmsy118 char#31 \succ --- */
1.2       albertel 32859:       {  31,56521,                      /* character number, location */
                   32860:           9, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   32861:           { 11,   11, 3,25, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32862:             "\xf1\x01\xa0\x11\xb1\xb3\xb5\x33\x71\x91\x9f\x11\xa1" }  },
1.1       albertel 32863:       /* --- pixel bitmap for cmsy118 char#32 \leftarrow --- */
1.2       albertel 32864:       {  32,27878,                      /* character number, location */
                   32865:           8, 1,    1, 1,      /* topleft row,col, and botleft row,col */
                   32866:           { 14,    7, 3,15, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32867:             "\x31\xc1\xc2\xbe\x12\xd1\xe1\xa9" }  },
1.1       albertel 32868:       /* --- pixel bitmap for cmsy118 char#33 \rightarrow --- */
1.2       albertel 32869:       {  33,28884,                      /* character number, location */
                   32870:           8, 1,    1, 1,      /* topleft row,col, and botleft row,col */
                   32871:           { 14,    7, 3,15, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32872:             "\xa1\xe1\xd2\x1e\xb2\xc1\xc1\x39" }  },
1.1       albertel 32873:       /* --- pixel bitmap for cmsy118 char#34 \uparrow --- */
1.2       albertel 32874:       {  34,26855,                      /* character number, location */
                   32875:          11, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   32876:           {  7,   14, 3,19, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32877:             "\xf1\x31\x30\x23\x22\x11\x12\xf9\x31\x31" }  },
1.1       albertel 32878:       /* --- pixel bitmap for cmsy118 char#35 \downarrow --- */
1.2       albertel 32879:       {  35,26068,                      /* character number, location */
                   32880:          11, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   32881:           {  7,   14, 3,19, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32882:             "\xf9\x31\x32\x11\x12\x23\x20\xf1\x31\x31" }  },
1.1       albertel 32883:       /* --- pixel bitmap for cmsy118 char#36 \leftrightarrow --- */
1.2       albertel 32884:       {  36,30227,                      /* character number, location */
                   32885:           8, 1,    1, 1,      /* topleft row,col, and botleft row,col */
                   32886:           { 14,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32887:             "\x08\x04\x01\x62\x80\xfd\xff\x06\x18\x01\x82\x40\x00" }  },
1.1       albertel 32888:       /* --- pixel bitmap for cmsy118 char#37 \nearrow --- */
1.2       albertel 32889:       {  37,57535,                      /* character number, location */
                   32890:          11, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   32891:           { 14,   14, 3,35, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32892:             "\x95\xc2\xb1\x11\xa1\x21\x91\x31\x81\xc1\xc1\xc1\xc1"
                   32893:             "\xc1\xc1\xc1\xc1\xd1" }  },
1.1       albertel 32894:       /* --- pixel bitmap for cmsy118 char#38 \searrow --- */
1.2       albertel 32895:       {  38,58561,                      /* character number, location */
                   32896:          11, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   32897:           { 14,   14, 3,34, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32898:             "\x01\xe1\xe1\xe1\xe1\xe1\xe1\xe1\xe1\xe1\x31\xa1\x21"
                   32899:             "\xb1\x11\xc2\x95" }  },
1.1       albertel 32900:       /* --- pixel bitmap for cmsy118 char#39 \simeq --- */
1.2       albertel 32901:       {  39,59267,                      /* character number, location */
                   32902:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   32903:           { 11,    8, 3,20, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32904:             "\x14\x53\x22\x42\x42\x23\x54\x10\xf2\xbb" }  },
1.1       albertel 32905:       /* --- pixel bitmap for cmsy118 char#40 \Leftarrow --- */
1.2       albertel 32906:       {  40,60255,                      /* character number, location */
                   32907:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   32908:           { 14,    9, 3,19, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32909:             "\x51\xc1\xcb\x12\xc1\xe1\xeb\x41\xe1\x8b" }  },
1.1       albertel 32910:       /* --- pixel bitmap for cmsy118 char#41 \Rightarrow --- */
1.2       albertel 32911:       {  41,61238,                      /* character number, location */
                   32912:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   32913:           { 13,    9, 3,19, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32914:             "\x81\xd1\x3b\xd2\xc1\xb1\x1b\xb1\xb1\x4b" }  },
1.1       albertel 32915:       /* --- pixel bitmap for cmsy118 char#42 \Uparrow --- */
1.2       albertel 32916:       {  42,62036,                      /* character number, location */
                   32917:          10, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   32918:           { 10,   13, 3,27, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32919:             "\x42\x74\x52\x22\x32\x42\x11\x11\x41\x11\xf7\x21\x41"
                   32920:             "\x21" }  },
1.1       albertel 32921:       /* --- pixel bitmap for cmsy118 char#43 \Downarrow --- */
1.2       albertel 32922:       {  43,62870,                      /* character number, location */
                   32923:          11, 0,   -2, 0,      /* topleft row,col, and botleft row,col */
                   32924:           { 10,   13, 3,27, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32925:             "\xf7\x21\x41\x21\x11\x41\x11\x12\x42\x32\x22\x54\x72"
                   32926:             "\x41" }  },
1.1       albertel 32927:       /* --- pixel bitmap for cmsy118 char#44 \Leftrightarrow --- */
1.2       albertel 32928:       {  44,64124,                      /* character number, location */
                   32929:           9, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   32930:           { 12,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32931:             "\x08\x41\x20\xfe\x17\x80\x01\x28\x40\xfc\x43\x20\x08"
                   32932:             "\x01" }  },
1.1       albertel 32933:       /* --- pixel bitmap for cmsy118 char#45 \nwarrow --- */
1.2       albertel 32934:       {  45,65148,                      /* character number, location */
                   32935:          11, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   32936:           { 15,   14, 3,52, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32937:             "\x15\xa2\xd1\x11\xc1\x21\xb1\x31\xe0\x11\xe0\x11\xe0"
                   32938:             "\x11\xe0\x11\xe0\x11\xe0\x11\xe0\x11\xe0\x11\xe0\x11" }  },
1.1       albertel 32939:       /* --- pixel bitmap for cmsy118 char#46 \swarrow --- */
1.2       albertel 32940:       {  46,66174,                      /* character number, location */
                   32941:          11, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   32942:           { 15,   14, 3,35, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32943:             "\xe1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\xd1\x91\x31\xa1\x21"
                   32944:             "\xb1\x11\xc2\xd5\x91" }  },
1.1       albertel 32945:       /* --- pixel bitmap for cmsy118 char#47 \propto --- */
1.2       albertel 32946:       {  47,67238,                      /* character number, location */
                   32947:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   32948:           { 11,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32949:             "\x0c\x97\x45\x18\x82\x10\x0c\xd1\x70\x18" }  },
1.1       albertel 32950:       /* --- pixel bitmap for cmsy118 char#48 \prime --- */
1.2       albertel 32951:       {  48,67734,                      /* character number, location */
                   32952:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   32953:           {  4,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32954:             "\xcc\x64\x26\x13\x01" }  },
1.1       albertel 32955:       /* --- pixel bitmap for cmsy118 char#49 \infty --- */
1.2       albertel 32956:       {  49,40792,                      /* character number, location */
                   32957:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   32958:           { 14,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32959:             "\x1c\x8e\x48\x14\x0c\x06\x83\xc1\xa0\x48\xc4\xe1\x00" }  },
1.1       albertel 32960:       /* --- pixel bitmap for cmsy118 char#50 \in --- */
1.2       albertel 32961:       {  50,32218,                      /* character number, location */
                   32962:          10, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   32963:           {  9,   11, 3,24, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32964:             "\x36\x21\x71\x7f\x11\x89\x0f\x11\x80\x11\x91\x96" }  },
1.1       albertel 32965:       /* --- pixel bitmap for cmsy118 char#51 \ni --- */
1.2       albertel 32966:       {  51,68365,                      /* character number, location */
                   32967:          10, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   32968:           {  9,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32969:             "\x3f\x80\x00\x02\x08\xf0\x3f\x40\x80\x80\x80\xfc\x00" }  },
1.1       albertel 32970:       /* --- pixel bitmap for cmsy118 char#52 \triangle --- */
1.2       albertel 32971:       {  52,69059,                      /* character number, location */
                   32972:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   32973:           { 13,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32974:             "\x40\x00\x14\x80\x02\x88\x00\x11\x10\x04\x01\x21\x20"
                   32975:             "\x02\x48\x00\xfd\x7f" }  },
1.1       albertel 32976:       /* --- pixel bitmap for cmsy118 char#53 \bigtriangledown --- */
1.2       albertel 32977:       {  53,69780,                      /* character number, location */
                   32978:           8, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   32979:           { 13,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32980:             "\xff\x5f\x00\x09\x20\x02\x42\x40\x10\x04\x44\x80\x08"
                   32981:             "\xa0\x00\x14\x00\x01" }  },
                   32982:       /* --- pixel bitmap for cmsy118 char#54 \boldslash --- */
                   32983:       {  54,70136,                      /* character number, location */
                   32984:          11, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
                   32985:           {  9,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32986:             "\x00\x01\x01\x02\x02\x02\x04\x04\x04\x08\x08\x08\x10"
                   32987:             "\x10\x00" }  },
                   32988:       /* --- pixel bitmap for cmsy118 char#55 \' --- */
                   32989:       {  55,70487,                      /* character number, location */
                   32990:           8, 1,    1, 1,      /* topleft row,col, and botleft row,col */
                   32991:           {  1,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32992:             "\x7f" }  },
1.1       albertel 32993:       /* --- pixel bitmap for cmsy118 char#56 \forall --- */
1.2       albertel 32994:       {  56,32792,                      /* character number, location */
                   32995:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   32996:           {  9,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   32997:             "\x01\x03\x0a\xf2\x47\x84\x08\x11\x14\x28\x20\x40\x00" }  },
1.1       albertel 32998:       /* --- pixel bitmap for cmsy118 char#57 \exists --- */
1.2       albertel 32999:       {  57,33399,                      /* character number, location */
                   33000:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   33001:           {  7,   11, 3,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33002:             "\x07\xf3\x61\x07\xf3\x61\x07" }  },
1.1       albertel 33003:       /* --- pixel bitmap for cmsy118 char#58 \neg --- */
1.2       albertel 33004:       {  58,33991,                      /* character number, location */
                   33005:           6, 1,    1, 1,      /* topleft row,col, and botleft row,col */
                   33006:           {  9,    5, 3, 6, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33007:             "\x09\xf3\x81" }  },
1.1       albertel 33008:       /* --- pixel bitmap for cmsy118 char#59 \emptyset --- */
1.2       albertel 33009:       {  59,71166,                      /* character number, location */
                   33010:          12, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   33011:           {  6,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33012:             "\x10\x27\xa5\x69\x5a\x96\x65\x29\x39\x02" }  },
1.1       albertel 33013:       /* --- pixel bitmap for cmsy118 char#60 \Re --- */
1.2       albertel 33014:       {  60,72951,                      /* character number, location */
                   33015:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   33016:           { 11,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33017:             "\xc6\xc8\x49\x84\x24\x28\xa1\xf9\x4c\x02\x12\x90\x48"
                   33018:             "\x84\xc1\x01" }  },
1.1       albertel 33019:       /* --- pixel bitmap for cmsy118 char#61 \Im --- */
1.2       albertel 33020:       {  61,74184,                      /* character number, location */
                   33021:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   33022:           { 11,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33023:             "\x7c\x10\x6c\x80\x03\x20\x60\x86\x02\x04\x20\x03\x61"
                   33024:             "\x08\x3c\x00" }  },
1.1       albertel 33025:       /* --- pixel bitmap for cmsy118 char#62 \top --- */
1.2       albertel 33026:       {  62,74854,                      /* character number, location */
                   33027:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   33028:           { 11,   11, 3, 7, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33029:             "\x0b\xf9\x51\x52" }  },
1.1       albertel 33030:       /* --- pixel bitmap for cmsy118 char#63 \bot --- */
1.2       albertel 33031:       {  63,75533,                      /* character number, location */
                   33032:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   33033:           { 11,   11, 3, 6, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33034:             "\xf9\x51\x5b" }  },
1.1       albertel 33035:       /* --- pixel bitmap for cmsy118 char#64 \aleph --- */
1.2       albertel 33036:       {  64,76730,                      /* character number, location */
                   33037:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   33038:           {  8,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33039:             "\x21\x42\x42\xc6\x49\x59\x31\x21\x42\x42\x83" }  },
1.1       albertel 33040:       /* --- pixel bitmap for cmsy118 char#65 \calA --- */
1.2       albertel 33041:       {  65,  748,                      /* character number, location */
                   33042:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   33043:           { 12,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33044:             "\x00\x02\x30\x80\x02\x28\x40\x02\x22\x20\x02\x3f\x08"
                   33045:             "\x92\x40\x06\x0c" }  },
1.1       albertel 33046:       /* --- pixel bitmap for cmsy118 char#66 \calB --- */
1.2       albertel 33047:       {  66, 1498,                      /* character number, location */
                   33048:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   33049:           { 10,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33050:             "\xcc\x91\x48\x21\x43\xe4\x10\x46\xa0\x80\x02\x0a\xd6"
                   33051:             "\x07" }  },
1.1       albertel 33052:       /* --- pixel bitmap for cmsy118 char#67 \calC --- */
1.2       albertel 33053:       {  67, 2147,                      /* character number, location */
                   33054:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   33055:           {  9,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33056:             "\xf0\x10\x12\x14\x24\x20\x40\x80\x00\x01\x84\xf1\x00" }  },
1.1       albertel 33057:       /* --- pixel bitmap for cmsy118 char#68 \calD --- */
1.2       albertel 33058:       {  68, 2949,                      /* character number, location */
                   33059:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   33060:           { 13,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33061:             "\xf8\xc3\x84\x49\x40\x08\x08\x01\x21\x20\x04\x42\x40"
                   33062:             "\x08\x04\x71\xf0\x01" }  },
1.1       albertel 33063:       /* --- pixel bitmap for cmsy118 char#69 \calE --- */
1.2       albertel 33064:       {  69, 3610,                      /* character number, location */
                   33065:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   33066:           {  8,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33067:             "\xf8\x84\x82\x02\x3c\x04\x02\x01\x01\x61\x1e" }  },
1.1       albertel 33068:       /* --- pixel bitmap for cmsy118 char#70 \calF --- */
1.2       albertel 33069:       {  70, 4358,                      /* character number, location */
                   33070:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   33071:           { 13,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33072:             "\xe0\x1f\x12\x20\x02\x20\x00\x04\x80\x0f\x08\x00\x01"
                   33073:             "\x10\x00\x02\x38\x00" }  },
1.1       albertel 33074:       /* --- pixel bitmap for cmsy118 char#71 \calG --- */
1.2       albertel 33075:       {  71, 5041,                      /* character number, location */
                   33076:          11, 0,   -2, 0,      /* topleft row,col, and botleft row,col */
                   33077:           { 10,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33078:             "\xf0\x21\x48\x90\x40\x01\x04\x14\x50\x60\xc2\xf0\x02"
                   33079:             "\x08\x10\x3e\x00" }  },
1.1       albertel 33080:       /* --- pixel bitmap for cmsy118 char#72 \calH --- */
1.2       albertel 33081:       {  72, 5911,                      /* character number, location */
                   33082:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   33083:           { 13,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33084:             "\x38\xd0\x04\x89\x20\x10\x04\x42\x20\x08\xfe\x81\x10"
                   33085:             "\x08\x02\x41\x20\x78" }  },
1.1       albertel 33086:       /* --- pixel bitmap for cmsy118 char#73 \calI --- */
1.2       albertel 33087:       {  73, 6588,                      /* character number, location */
                   33088:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   33089:           { 10,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33090:             "\xfc\x0b\x01\x02\x08\x20\x40\x00\x01\x04\x08\x20\xf4"
                   33091:             "\x0f" }  },
1.1       albertel 33092:       /* --- pixel bitmap for cmsy118 char#74 \calJ --- */
1.2       albertel 33093:       {  74, 7238,                      /* character number, location */
                   33094:          11, 0,   -2, 0,      /* topleft row,col, and botleft row,col */
                   33095:           { 14,   13, 3,41, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33096:             "\x77\x61\x41\x71\x41\x71\x41\x40\xf1\x91\x40\xf2\x81"
                   33097:             "\x51\x71\x51\x61\x71\x41\x94\x81" }  },
1.1       albertel 33098:       /* --- pixel bitmap for cmsy118 char#75 \calK --- */
1.2       albertel 33099:       {  75, 7997,                      /* character number, location */
                   33100:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   33101:           { 11,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33102:             "\x0c\x47\x06\x09\x28\xc0\x00\x06\x50\x40\x02\x22\x10"
                   33103:             "\x62\xe0\x00" }  },
1.1       albertel 33104:       /* --- pixel bitmap for cmsy118 char#76 \calL --- */
1.2       albertel 33105:       {  76, 8667,                      /* character number, location */
                   33106:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   33107:           { 11,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33108:             "\xc0\x01\x19\x04\x20\x80\x00\x04\x20\x80\x00\x04\xf4"
                   33109:             "\x51\x78\x00" }  },
1.1       albertel 33110:       /* --- pixel bitmap for cmsy118 char#77 \calM --- */
1.2       albertel 33111:       {  77, 9766,                      /* character number, location */
                   33112:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   33113:           { 18,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33114:             "\x20\x00\x82\x00\x04\x06\x18\x18\x50\x50\x20\x41\x82"
                   33115:             "\x02\x09\x09\x22\x22\x08\x85\x10\x0c\x32\x00\x18" }  },
1.1       albertel 33116:       /* --- pixel bitmap for cmsy118 char#78 \calN --- */
1.2       albertel 33117:       {  78,10699,                      /* character number, location */
                   33118:          12, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   33119:           { 16,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33120:             "\x00\xe0\x10\x10\x10\x10\x30\x08\x30\x08\x48\x08\x48"
                   33121:             "\x04\x48\x04\x88\x04\x84\x04\x04\x03\x03\x02" }  },
1.1       albertel 33122:       /* --- pixel bitmap for cmsy118 char#79 \calO --- */
1.2       albertel 33123:       {  79,11472,                      /* character number, location */
                   33124:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   33125:           { 12,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33126:             "\x90\x83\x44\x24\x28\x81\x01\x18\x80\x01\x14\x40\x01"
                   33127:             "\x22\x18\x7c\x00" }  },
1.1       albertel 33128:       /* --- pixel bitmap for cmsy118 char#80 \calP --- */
1.2       albertel 33129:       {  80,12225,                      /* character number, location */
                   33130:          11, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
                   33131:           { 12,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33132:             "\xf8\x63\x42\x12\x08\x81\x10\x08\x41\x10\x83\x0e\x08"
                   33133:             "\x80\x00\x04\x40\x00" }  },
1.1       albertel 33134:       /* --- pixel bitmap for cmsy118 char#81 \calQ --- */
1.2       albertel 33135:       {  81,13044,                      /* character number, location */
                   33136:          11, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   33137:           { 11,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33138:             "\xf0\x41\x10\x01\x05\x18\xc0\x00\x06\x48\x40\xbc\x01"
                   33139:             "\x83\x07\x60\x04\x1c" }  },
1.1       albertel 33140:       /* --- pixel bitmap for cmsy118 char#82 \calR --- */
1.2       albertel 33141:       {  82,13875,                      /* character number, location */
                   33142:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   33143:           { 13,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33144:             "\xf8\xc7\x04\x49\x20\x08\x04\x41\x20\x04\x74\x40\x04"
                   33145:             "\x08\x01\x41\x12\x38" }  },
1.1       albertel 33146:       /* --- pixel bitmap for cmsy118 char#83 \calS --- */
1.2       albertel 33147:       {  83,14581,                      /* character number, location */
                   33148:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   33149:           { 10,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33150:             "\xf0\x21\x48\x00\x01\x18\x80\x03\xd0\x40\x01\x0d\xc2"
                   33151:             "\x07" }  },
1.1       albertel 33152:       /* --- pixel bitmap for cmsy118 char#84 \calT --- */
1.2       albertel 33153:       {  84,15253,                      /* character number, location */
                   33154:          11, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
                   33155:           { 12,   12, 3,29, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33156:             "\x2a\x11\x41\x51\x41\x60\xf2\x51\x60\xf3\x41\x70\xf1"
                   33157:             "\x31\x81" }  },
1.1       albertel 33158:       /* --- pixel bitmap for cmsy118 char#85 \calU --- */
1.2       albertel 33159:       {  85,15949,                      /* character number, location */
                   33160:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   33161:           { 12,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33162:             "\x0e\x88\x40\x08\x44\x60\x04\x22\x30\x82\x12\x14\x21"
                   33163:             "\x11\x11\x0e\x03" }  },
1.1       albertel 33164:       /* --- pixel bitmap for cmsy118 char#86 \calV --- */
1.2       albertel 33165:       {  86,16654,                      /* character number, location */
                   33166:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   33167:           { 10,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33168:             "\x03\x11\x88\x20\x82\x08\x21\x84\x08\x12\x28\x50\xc0"
                   33169:             "\x00" }  },
1.1       albertel 33170:       /* --- pixel bitmap for cmsy118 char#87 \calW --- */
1.2       albertel 33171:       {  87,17639,                      /* character number, location */
                   33172:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   33173:           { 16,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33174:             "\x03\x41\x04\x83\x84\x82\x84\x82\x44\x42\x44\x44\x24"
                   33175:             "\x24\x14\x24\x14\x14\x0c\x0c\x04\x04" }  },
1.1       albertel 33176:       /* --- pixel bitmap for cmsy118 char#88 \calX --- */
1.2       albertel 33177:       {  88,18436,                      /* character number, location */
                   33178:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   33179:           { 12,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33180:             "\x30\x08\x84\x40\x04\x24\xc0\x01\x06\x58\x40\x08\x82"
                   33181:             "\x10\x08\x03\x03" }  },
1.1       albertel 33182:       /* --- pixel bitmap for cmsy118 char#89 \calY --- */
1.2       albertel 33183:       {  89,19129,                      /* character number, location */
                   33184:          11, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   33185:           { 11,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33186:             "\x06\x42\x20\x04\x21\x08\x22\x10\x81\x04\x14\xa0\x00"
                   33187:             "\x43\x08\x32\x60\x00" }  },
1.1       albertel 33188:       /* --- pixel bitmap for cmsy118 char#90 \calZ --- */
1.2       albertel 33189:       {  90,19947,                      /* character number, location */
                   33190:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   33191:           { 12,   11, 3,29, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33192:             "\x48\x31\x61\xa1\xa1\x83\xa3\x81\xa1\x92\x61\x21\x71"
                   33193:             "\x29\x31" }  },
1.1       albertel 33194:       /* --- pixel bitmap for cmsy118 char#91 \cup --- */
1.2       albertel 33195:       {  91,23382,                      /* character number, location */
                   33196:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   33197:           {  9,   10, 3,13, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33198:             "\xf7\x01\x71\x11\x51\x35\x21" }  },
1.1       albertel 33199:       /* --- pixel bitmap for cmsy118 char#92 \cap --- */
1.2       albertel 33200:       {  92,24025,                      /* character number, location */
                   33201:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   33202:           {  9,   10, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33203:             "\x25\x31\x51\x1f\x71\x71" }  },
1.1       albertel 33204:       /* --- pixel bitmap for cmsy118 char#93 \uplus --- */
1.2       albertel 33205:       {  93,77441,                      /* character number, location */
                   33206:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   33207:           {  9,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33208:             "\x01\x03\x46\x8c\xd8\x37\x62\xc4\x80\x82\xf8\x00" }  },
1.1       albertel 33209:       /* --- pixel bitmap for cmsy118 char#94 \wedge --- */
1.2       albertel 33210:       {  94,24651,                      /* character number, location */
                   33211:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   33212:           {  9,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33213:             "\x10\x20\xa0\x40\x41\x84\x88\x20\x41\x01\x03\x02" }  },
1.1       albertel 33214:       /* --- pixel bitmap for cmsy118 char#95 \vee --- */
1.2       albertel 33215:       {  95,25275,                      /* character number, location */
                   33216:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   33217:           {  9,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33218:             "\x01\x03\x0a\x12\x44\x84\x08\x0a\x14\x10\x20\x00" }  },
1.1       albertel 33219:       /* --- pixel bitmap for cmsy118 char#96 \vdash --- */
1.2       albertel 33220:       {  96,78046,                      /* character number, location */
                   33221:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   33222:           {  8,   11, 3,11, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33223:             "\xf4\x01\x78\x0f\x41\x71" }  },
1.1       albertel 33224:       /* --- pixel bitmap for cmsy118 char#97 \dashv --- */
1.2       albertel 33225:       {  97,78626,                      /* character number, location */
                   33226:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   33227:           {  8,   11, 3,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33228:             "\xf4\x71\x08\xf4\x71" }  },
1.1       albertel 33229:       /* --- pixel bitmap for cmsy118 char#98 \lfloor --- */
1.2       albertel 33230:       {  98,79116,                      /* character number, location */
                   33231:          12, 3,   -3, 3,      /* topleft row,col, and botleft row,col */
                   33232:           {  4,   15, 3, 6, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33233:             "\xfd\x01\x34" }  },
1.1       albertel 33234:       /* --- pixel bitmap for cmsy118 char#99 \rfloor --- */
1.2       albertel 33235:       {  99,79615,                      /* character number, location */
                   33236:          12, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   33237:           {  4,   15, 3, 6, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33238:             "\xfd\x31\x04" }  },
1.1       albertel 33239:       /* --- pixel bitmap for cmsy118 char#100 \lceil --- */
1.2       albertel 33240:       { 100,80115,                      /* character number, location */
                   33241:          12, 3,   -3, 3,      /* topleft row,col, and botleft row,col */
                   33242:           {  4,   15, 3, 7, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33243:             "\x04\x0f\xd1\x34" }  },
1.1       albertel 33244:       /* --- pixel bitmap for cmsy118 char#101 \rceil --- */
1.2       albertel 33245:       { 101,80616,                      /* character number, location */
                   33246:          12, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   33247:           {  4,   15, 3, 6, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33248:             "\x04\xfd\x31" }  },
                   33249:       /* --- pixel bitmap for cmsy118 char#102 \lbrace --- */
                   33250:       { 102,38855,                      /* character number, location */
                   33251:          12, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   33252:           {  6,   16, 3,20, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33253:             "\x42\xf5\x31\x2f\x13\x30\xf5\x31\x20\x42" }  },
                   33254:       /* --- pixel bitmap for cmsy118 char#103 \rbrace --- */
                   33255:       { 103,39664,                      /* character number, location */
                   33256:          12, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   33257:           {  6,   16, 3,21, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33258:             "\x03\x30\xf5\x31\x20\xf1\x42\xf5\x31\x23\x31" }  },
1.1       albertel 33259:       /* --- pixel bitmap for cmsy118 char#104 \langle --- */
1.2       albertel 33260:       { 104,81088,                      /* character number, location */
                   33261:          12, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   33262:           {  4,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33263:             "\x88\x44\x22\x11\x21\x42\x84\x08" }  },
1.1       albertel 33264:       /* --- pixel bitmap for cmsy118 char#105 \rangle --- */
1.2       albertel 33265:       { 105,81561,                      /* character number, location */
                   33266:          12, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   33267:           {  4,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33268:             "\x11\x22\x44\x88\x48\x24\x12\x01" }  },
1.1       albertel 33269:       /* --- pixel bitmap for cmsy118 char#106 \mid --- */
1.2       albertel 33270:       { 106,36985,                      /* character number, location */
                   33271:          12, 2,   -4, 2,      /* topleft row,col, and botleft row,col */
                   33272:           {  1,   16, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33273:             "\xff\xff" }  },
1.1       albertel 33274:       /* --- pixel bitmap for cmsy118 char#107 \parallel --- */
1.2       albertel 33275:       { 107,82124,                      /* character number, location */
                   33276:          12, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   33277:           {  6,   15, 3, 6, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33278:             "\xfe\x01\x41" }  },
1.1       albertel 33279:       /* --- pixel bitmap for cmsy118 char#108 \updownarrow --- */
1.2       albertel 33280:       { 108,83276,                      /* character number, location */
                   33281:          12, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   33282:           {  7,   16, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33283:             "\x08\x04\x67\x8d\x40\x20\x10\x08\x04\x02\xb1\xe6\x20"
                   33284:             "\x10" }  },
1.1       albertel 33285:       /* --- pixel bitmap for cmsy118 char#109 \Updownarrow --- */
1.2       albertel 33286:       { 109,84317,                      /* character number, location */
                   33287:          11, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   33288:           { 10,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33289:             "\x30\x20\x61\x58\xa1\x84\x10\x42\x08\x21\x84\x10\x52"
                   33290:             "\xa8\x61\x48\xc0\x00" }  },
1.1       albertel 33291:       /* --- pixel bitmap for cmsy118 char#110 \setminus --- */
1.2       albertel 33292:       { 110,36557,                      /* character number, location */
                   33293:          12, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   33294:           {  6,   16, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33295:             "\x41\x20\x08\x02\x41\x10\x08\x82\x40\x10\x04\x82" }  },
1.1       albertel 33296:       /* --- pixel bitmap for cmsy118 char#111 \wr --- */
1.2       albertel 33297:       { 111,84804,                      /* character number, location */
                   33298:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   33299:           {  3,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33300:             "\x33\xad\x65\x06" }  },
1.1       albertel 33301:       /* --- pixel bitmap for cmsy118 char#112 \surd --- */
1.2       albertel 33302:       { 112,85622,                      /* character number, location */
                   33303:           1, 2,  -16, 2,      /* topleft row,col, and botleft row,col */
                   33304:           { 13,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33305:             "\x00\x10\x00\x01\x20\x00\x02\x40\x00\x04\x80\x00\x08"
                   33306:             "\x00\x61\x10\x08\x02\x22\x40\x04\x50\x00\x0a\xc0\x00"
                   33307:             "\x10\x00" }  },
1.1       albertel 33308:       /* --- pixel bitmap for cmsy118 char#113 \amalg --- */
1.2       albertel 33309:       { 113,86780,                      /* character number, location */
                   33310:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   33311:           { 12,   11, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33312:             "\x05\x25\xf8\x21\x61\x2c" }  },
1.1       albertel 33313:       /* --- pixel bitmap for cmsy118 char#114 \nabla --- */
1.2       albertel 33314:       { 114,87680,                      /* character number, location */
                   33315:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   33316:           { 12,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33317:             "\xff\x3f\xc0\x02\x44\x20\x04\x82\x10\x08\x01\x09\x90"
                   33318:             "\x00\x06\x60\x00" }  },
                   33319:       /* --- pixel bitmap for cmsy118 char#115 \smallint --- */
                   33320:       { 115,41701,                      /* character number, location */
                   33321:          11, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   33322:           {  7,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33323:             "\x60\x28\x04\x82\x40\x20\x10\x08\x04\x81\x50\x18\x00" }  },
1.1       albertel 33324:       /* --- pixel bitmap for cmsy118 char#116 \sqcup --- */
1.2       albertel 33325:       { 116,88320,                      /* character number, location */
                   33326:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   33327:           {  9,   10, 3, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33328:             "\xf8\x01\x71\x09" }  },
1.1       albertel 33329:       /* --- pixel bitmap for cmsy118 char#117 \sqcap --- */
1.2       albertel 33330:       { 117,88967,                      /* character number, location */
                   33331:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   33332:           {  9,   10, 3, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33333:             "\x09\x0f\x81\x71" }  },
1.1       albertel 33334:       /* --- pixel bitmap for cmsy118 char#118 \sqsubseteq --- */
1.2       albertel 33335:       { 118,89686,                      /* character number, location */
                   33336:          10, 1,   -5, 1,      /* topleft row,col, and botleft row,col */
                   33337:           { 12,   15, 3,13, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33338:             "\x0c\x0f\x81\xbc\xf2\xcb\x11" }  },
1.1       albertel 33339:       /* --- pixel bitmap for cmsy118 char#119 \sqsupseteq --- */
1.2       albertel 33340:       { 119,90395,                      /* character number, location */
                   33341:          10, 0,   -5, 0,      /* topleft row,col, and botleft row,col */
                   33342:           { 12,   15, 3,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33343:             "\x0c\xf8\xb1\x1b\xf2\xc0\x1b" }  },
1.1       albertel 33344:       /* --- pixel bitmap for cmsy118 char#120 \S --- */
1.2       albertel 33345:       { 120,91358,                      /* character number, location */
                   33346:          11, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   33347:           {  5,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33348:             "\x2e\xc6\x60\x54\x8c\x8a\xc1\x18\x1d" }  },
1.1       albertel 33349:       /* --- pixel bitmap for cmsy118 char#121 \dag --- */
1.2       albertel 33350:       { 121,92100,                      /* character number, location */
                   33351:          11, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   33352:           {  5,   14, 3,11, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33353:             "\xf3\x21\x25\xf8\x21\x22" }  },
1.1       albertel 33354:       /* --- pixel bitmap for cmsy118 char#122 \ddag --- */
1.2       albertel 33355:       { 122,93021,                      /* character number, location */
                   33356:          11, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   33357:           {  5,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33358:             "\x84\x90\x4f\x08\x01\x84\xf8\x4f\x08" }  },
1.1       albertel 33359:       /* --- pixel bitmap for cmsy118 char#123 \P --- */
1.2       albertel 33360:       { 123,93681,                      /* character number, location */
                   33361:          11, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   33362:           {  9,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33363:             "\xfc\x3d\x7d\xfa\xf4\xe9\x93\x27\x4e\x90\x20\x41\x82"
                   33364:             "\x04\x09\x12" }  },
1.1       albertel 33365:       /* --- pixel bitmap for cmsy118 char#124 \clubsuit --- */
1.2       albertel 33366:       { 124,94587,                      /* character number, location */
                   33367:          11, 0,   -2, 0,      /* topleft row,col, and botleft row,col */
                   33368:           { 13,   13, 3,39, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33369:             "\x53\x95\x40\xf1\x37\x30\x45\x5b\x1f\x2d\x05\x11\x15"
                   33370:             "\x13\x21\x23\x10\xf1\x61\x61" }  },
1.1       albertel 33371:       /* --- pixel bitmap for cmsy118 char#125 \Diamond --- */
1.2       albertel 33372:       { 125,95254,                      /* character number, location */
                   33373:          11, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   33374:           { 11,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33375:             "\x20\x80\x02\x14\x10\x41\x10\x01\x05\x50\x40\x04\x41"
                   33376:             "\x04\x14\xa0\x00\x02" }  },
1.1       albertel 33377:       /* --- pixel bitmap for cmsy118 char#126 \Heart --- */
1.2       albertel 33378:       { 126,96023,                      /* character number, location */
                   33379:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   33380:           { 11,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33381:             "\xde\x0b\x61\x08\x03\x18\x40\x01\x09\x88\x20\xd8\x80"
                   33382:             "\x02\x08\x00" }  },
1.1       albertel 33383:       /* --- pixel bitmap for cmsy118 char#127 \spadesuit --- */
1.2       albertel 33384:       { 127,96856,                      /* character number, location */
                   33385:          11, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   33386:           { 11,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33387:             "\x20\x00\x01\x1c\xf0\xc1\x1f\xff\xfd\xff\xff\xff\x7f"
                   33388:             "\xbd\xc9\x40\x00\x02" }  },
1.1       albertel 33389:       /* --- trailer  --- */
1.2       albertel 33390:       { -99, -999,  0,0,0,0, { 0,0,0,0, (pixbyte *)"\0" }  }
1.1       albertel 33391:    } ;
                   33392: 
                   33393: 
1.2       albertel 33394: /* --- size=3 for .131gf ---
                   33395:  * mf '\mode=preview; mag=magstep(-16.39322518098640003469); input cmsy10'
                   33396:  * --------------------------------------------------------------------- */
1.1       albertel 33397: /* --- fontdef for cmsy131 --- */
                   33398: static	chardef  cmsy131[] =
                   33399:    {
                   33400:       /* --- pixel bitmap for cmsy131 char#0 - --- */
1.2       albertel 33401:       {   0,20854,                      /* character number, location */
                   33402:           5, 2,    4, 2,      /* topleft row,col, and botleft row,col */
                   33403:           { 10,    1, 3, 2, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33404:             "\x0a" }  },
1.1       albertel 33405:       /* --- pixel bitmap for cmsy131 char#1 \cdot --- */
1.2       albertel 33406:       {   1,38460,                      /* character number, location */
                   33407:           6, 2,    4, 2,      /* topleft row,col, and botleft row,col */
                   33408:           {  2,    2, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33409:             "\x0f" }  },
1.1       albertel 33410:       /* --- pixel bitmap for cmsy131 char#2 \times --- */
1.2       albertel 33411:       {   2,43450,                      /* character number, location */
                   33412:           9, 3,    0, 3,      /* topleft row,col, and botleft row,col */
                   33413:           {  8,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33414:             "\x81\x42\x24\x18\x08\x18\x24\x42\x81" }  },
1.1       albertel 33415:       /* --- pixel bitmap for cmsy131 char#3 \ast --- */
1.2       albertel 33416:       {   3,44079,                      /* character number, location */
                   33417:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   33418:           {  7,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33419:             "\x08\xc4\x9a\xc3\x59\x23\x10" }  },
1.1       albertel 33420:       /* --- pixel bitmap for cmsy131 char#4 \div --- */
1.2       albertel 33421:       {   4,44936,                      /* character number, location */
                   33422:          10, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   33423:           { 12,   11, 3,19, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33424:             "\xf1\x52\x50\xf2\xcc\xf2\xc0\xf1\x52\x52" }  },
1.1       albertel 33425:       /* --- pixel bitmap for cmsy131 char#5 \diamond --- */
1.2       albertel 33426:       {   5,38997,                      /* character number, location */
                   33427:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   33428:           {  9,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33429:             "\x10\x50\x10\x11\x14\x50\x10\x11\x14\x10\x00" }  },
1.1       albertel 33430:       /* --- pixel bitmap for cmsy131 char#6 \pm --- */
1.2       albertel 33431:       {   6,21551,                      /* character number, location */
                   33432:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   33433:           { 12,   13, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33434:             "\xf5\x61\x5c\xf4\x61\x5c" }  },
1.1       albertel 33435:       /* --- pixel bitmap for cmsy131 char#7 \mp --- */
1.2       albertel 33436:       {   7,45645,                      /* character number, location */
                   33437:           9, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   33438:           { 12,   13, 3,13, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33439:             "\x0c\xf4\x61\x5c\xf5\x61\x50" }  },
1.1       albertel 33440:       /* --- pixel bitmap for cmsy131 char#8 \oplus --- */
1.2       albertel 33441:       {   8,22304,                      /* character number, location */
                   33442:          11, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   33443:           { 12,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33444:             "\xf8\x41\x24\x42\x24\x44\x41\x18\x84\xff\x1f\x84\x41"
                   33445:             "\x28\x44\x42\x44\x24\xf8\x01" }  },
1.1       albertel 33446:       /* --- pixel bitmap for cmsy131 char#9 \ominus --- */
1.2       albertel 33447:       {   9,46399,                      /* character number, location */
                   33448:          11, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   33449:           { 12,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33450:             "\xf8\x41\x20\x02\x24\x40\x01\x18\x80\xff\x1f\x80\x01"
                   33451:             "\x28\x40\x02\x44\x20\xf8\x01" }  },
1.1       albertel 33452:       /* --- pixel bitmap for cmsy131 char#10 \otimes --- */
1.2       albertel 33453:       {  10,23098,                      /* character number, location */
                   33454:          11, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   33455:           { 12,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33456:             "\xf8\x41\x20\x06\xa6\x50\x91\x18\x86\x21\x18\x86\x91"
                   33457:             "\xa8\x50\x06\x46\x20\xf8\x01" }  },
1.1       albertel 33458:       /* --- pixel bitmap for cmsy131 char#11 \oslash --- */
1.2       albertel 33459:       {  11,47174,                      /* character number, location */
                   33460:          11, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   33461:           { 12,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33462:             "\xf8\x41\x20\x02\x26\x50\x81\x18\x84\x21\x18\x82\x11"
                   33463:             "\xa8\x40\x06\x44\x20\xf8\x01" }  },
1.1       albertel 33464:       /* --- pixel bitmap for cmsy131 char#12 \odot --- */
1.2       albertel 33465:       {  12,47962,                      /* character number, location */
                   33466:          11, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   33467:           { 12,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33468:             "\xf8\x41\x20\x02\x24\x40\x01\x18\x86\x61\x18\x86\x01"
                   33469:             "\x28\x40\x02\x44\x20\xf8\x01" }  },
1.1       albertel 33470:       /* --- pixel bitmap for cmsy131 char#13 \bigcirc --- */
1.2       albertel 33471:       {  13,48853,                      /* character number, location */
                   33472:          13, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   33473:           { 16,   17, 3,51, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33474:             "\x64\xa2\x42\x71\x81\x51\xa1\x20\xf1\x11\xc1\x1f\x41"
                   33475:             "\xe1\xf1\x11\xc1\x10\x21\xa1\x51\x81\x72\x42\xa4\x61" }  },
1.1       albertel 33476:       /* --- pixel bitmap for cmsy131 char#14 \circ --- */
1.2       albertel 33477:       {  14,49509,                      /* character number, location */
                   33478:           8, 1,    1, 1,      /* topleft row,col, and botleft row,col */
                   33479:           {  7,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33480:             "\x1c\x51\x30\x18\x14\x71\x00" }  },
1.1       albertel 33481:       /* --- pixel bitmap for cmsy131 char#15 \bullet --- */
1.2       albertel 33482:       {  15,50116,                      /* character number, location */
                   33483:           8, 1,    1, 1,      /* topleft row,col, and botleft row,col */
                   33484:           {  7,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33485:             "\x1c\xdf\xff\xff\xf7\x71\x00" }  },
1.1       albertel 33486:       /* --- pixel bitmap for cmsy131 char#16 \asymp --- */
1.2       albertel 33487:       {  16,50812,                      /* character number, location */
                   33488:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   33489:           { 12,    9, 3,26, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33490:             "\x01\xa1\x12\x62\x46\x30\xf2\xc0\x36\x42\x62\x11\xa1" }  },
1.1       albertel 33491:       /* --- pixel bitmap for cmsy131 char#17 \equiv --- */
1.2       albertel 33492:       {  17,36991,                      /* character number, location */
                   33493:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   33494:           { 12,    9, 3,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33495:             "\x0c\xf2\xcc\xf2\xcc" }  },
1.1       albertel 33496:       /* --- pixel bitmap for cmsy131 char#18 \subseteq --- */
1.2       albertel 33497:       {  18,51549,                      /* character number, location */
                   33498:          12, 2,   -3, 2,      /* topleft row,col, and botleft row,col */
                   33499:           { 10,   15, 3,22, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33500:             "\x37\x21\x81\x8f\x41\x90\x11\xa1\xa7\xf2\xaa" }  },
1.1       albertel 33501:       /* --- pixel bitmap for cmsy131 char#19 \supseteq --- */
1.2       albertel 33502:       {  19,52292,                      /* character number, location */
                   33503:          12, 2,   -3, 2,      /* topleft row,col, and botleft row,col */
                   33504:           { 10,   15, 3,24, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33505:             "\x07\xa1\xa1\x10\xf4\x91\x81\x81\x27\x30\xf2\xaa" }  },
1.1       albertel 33506:       /* --- pixel bitmap for cmsy131 char#20 \leq --- */
1.2       albertel 33507:       {  20,35541,                      /* character number, location */
                   33508:          12, 2,   -3, 2,      /* topleft row,col, and botleft row,col */
                   33509:           { 10,   15, 3,26, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33510:             "\x91\x72\x62\x62\x62\x71\xa2\xa2\xa2\xa2\xa1\xf2\xaa" }  },
1.1       albertel 33511:       /* --- pixel bitmap for cmsy131 char#21 \geq --- */
1.2       albertel 33512:       {  21,36258,                      /* character number, location */
                   33513:          12, 2,   -3, 2,      /* topleft row,col, and botleft row,col */
                   33514:           { 10,   15, 3,28, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33515:             "\x01\xa2\xa2\xa2\xa2\xa1\x72\x62\x62\x62\x71\x90\xf2"
                   33516:             "\xaa" }  },
1.1       albertel 33517:       /* --- pixel bitmap for cmsy131 char#22 \preceq --- */
1.2       albertel 33518:       {  22,53003,                      /* character number, location */
                   33519:          12, 2,   -3, 2,      /* topleft row,col, and botleft row,col */
                   33520:           { 10,   15, 3,28, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33521:             "\xf1\x91\x81\x81\x63\x34\xa3\xa1\xa1\x10\xf1\x91\xf2"
                   33522:             "\xaa" }  },
1.1       albertel 33523:       /* --- pixel bitmap for cmsy131 char#23 \succeq --- */
1.2       albertel 33524:       {  23,53713,                      /* character number, location */
                   33525:          12, 2,   -3, 2,      /* topleft row,col, and botleft row,col */
                   33526:           { 10,   15, 3,30, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33527:             "\xf1\x01\x90\x11\xa1\xa3\xa4\x33\x61\x81\x8f\x11\x90"
                   33528:             "\xf2\xaa" }  },
1.1       albertel 33529:       /* --- pixel bitmap for cmsy131 char#24 \sim --- */
1.2       albertel 33530:       {  24,54401,                      /* character number, location */
                   33531:           7, 1,    2, 1,      /* topleft row,col, and botleft row,col */
                   33532:           { 12,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33533:             "\x1e\x38\x83\x61\x18\xcc\x81\x07" }  },
1.1       albertel 33534:       /* --- pixel bitmap for cmsy131 char#25 \approx --- */
1.2       albertel 33535:       {  25,55159,                      /* character number, location */
                   33536:           9, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   33537:           { 12,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33538:             "\x1e\x38\x83\xe1\x1c\x78\x00\x00\x00\x1e\x38\x83\xe1"
                   33539:             "\x1c\x78" }  },
1.1       albertel 33540:       /* --- pixel bitmap for cmsy131 char#26 \subset --- */
1.2       albertel 33541:       {  26,31591,                      /* character number, location */
                   33542:          10, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   33543:           { 10,   11, 3,18, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33544:             "\x37\x21\x81\x8f\x41\x90\x11\xa1\xa7" }  },
1.1       albertel 33545:       /* --- pixel bitmap for cmsy131 char#27 \supset --- */
1.2       albertel 33546:       {  27,32295,                      /* character number, location */
                   33547:          10, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   33548:           { 10,   11, 3,19, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33549:             "\x07\xa1\xa1\x10\xf4\x91\x81\x81\x27\x32" }  },
1.1       albertel 33550:       /* --- pixel bitmap for cmsy131 char#28 \ll --- */
1.2       albertel 33551:       {  28,55996,                      /* character number, location */
                   33552:          11, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   33553:           { 16,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33554:             "\x00\x84\x00\x63\xc0\x18\x20\x04\x18\x03\xc6\x00\x21"
                   33555:             "\x00\xc6\x00\x18\x03\x20\x04\xc0\x18\x00\x63\x00\x84" }  },
1.1       albertel 33556:       /* --- pixel bitmap for cmsy131 char#29 \gg --- */
1.2       albertel 33557:       {  29,56846,                      /* character number, location */
                   33558:          11, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   33559:           { 16,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33560:             "\x21\x00\xc6\x00\x18\x03\x20\x04\xc0\x18\x00\x63\x00"
                   33561:             "\x84\x00\x63\xc0\x18\x20\x04\x18\x03\xc6\x00\x21\x00" }  },
1.1       albertel 33562:       /* --- pixel bitmap for cmsy131 char#30 \prec --- */
1.2       albertel 33563:       {  30,57543,                      /* character number, location */
                   33564:          10, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   33565:           { 10,   11, 3,24, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33566:             "\xf1\x91\x81\x81\x63\x34\xa3\xa1\xa1\x10\xf1\x91" }  },
1.1       albertel 33567:       /* --- pixel bitmap for cmsy131 char#31 \succ --- */
1.2       albertel 33568:       {  31,58209,                      /* character number, location */
                   33569:          10, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   33570:           { 10,   11, 3,25, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33571:             "\xf1\x01\x90\x11\xa1\xa3\xa4\x33\x61\x81\x8f\x11\x91" }  },
1.1       albertel 33572:       /* --- pixel bitmap for cmsy131 char#32 \leftarrow --- */
1.2       albertel 33573:       {  32,28468,                      /* character number, location */
                   33574:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   33575:           { 16,    9, 3,27, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33576:             "\xf1\x31\xc0\x22\xd2\xde\x02\x12\xe0\x12\xc0\xf1\x31"
                   33577:             "\xc1" }  },
1.1       albertel 33578:       /* --- pixel bitmap for cmsy131 char#33 \rightarrow --- */
1.2       albertel 33579:       {  33,29504,                      /* character number, location */
                   33580:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   33581:           { 16,    9, 3,27, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33582:             "\xf1\xc1\x30\xc2\xe0\x12\x1e\x02\xd2\xd2\x20\xf1\xc1"
                   33583:             "\x31" }  },
1.1       albertel 33584:       /* --- pixel bitmap for cmsy131 char#34 \uparrow --- */
1.2       albertel 33585:       {  34,27413,                      /* character number, location */
                   33586:          13, 0,   -4, 0,      /* topleft row,col, and botleft row,col */
                   33587:           {  9,   17, 3,21, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33588:             "\xf1\x41\x40\x33\x55\x22\x21\x22\xfb\x41\x40" }  },
1.1       albertel 33589:       /* --- pixel bitmap for cmsy131 char#35 \downarrow --- */
1.2       albertel 33590:       {  35,26594,                      /* character number, location */
                   33591:          13, 0,   -4, 0,      /* topleft row,col, and botleft row,col */
                   33592:           {  9,   17, 3,21, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33593:             "\xfb\x41\x42\x21\x22\x25\x53\x30\xf1\x41\x40" }  },
1.1       albertel 33594:       /* --- pixel bitmap for cmsy131 char#36 \leftrightarrow --- */
1.2       albertel 33595:       {  36,30877,                      /* character number, location */
                   33596:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   33597:           { 16,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33598:             "\x08\x10\x08\x10\x0c\x30\x06\x60\xff\xff\x06\x60\x0c"
                   33599:             "\x30\x08\x10\x08\x10" }  },
1.1       albertel 33600:       /* --- pixel bitmap for cmsy131 char#37 \nearrow --- */
1.2       albertel 33601:       {  37,59249,                      /* character number, location */
                   33602:          14, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   33603:           { 17,   17, 3,67, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33604:             "\xa1\xe0\x35\xe0\x12\xe1\x11\xd1\x21\xc1\x31\xb1\x51"
                   33605:             "\x91\xe0\x11\xe0\x11\xe0\x11\xe0\x11\xe0\x11\xe0\x11"
                   33606:             "\xe0\x11\xe0\x11\xe0\x11\xe0\x23" }  },
1.1       albertel 33607:       /* --- pixel bitmap for cmsy131 char#38 \searrow --- */
1.2       albertel 33608:       {  38,60309,                      /* character number, location */
                   33609:          12, 1,   -5, 1,      /* topleft row,col, and botleft row,col */
                   33610:           { 17,   17, 3,65, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33611:             "\x01\xe0\x31\xe0\x31\xe0\x31\xe0\x31\xe0\x31\xe0\x31"
                   33612:             "\xe0\x31\xe0\x31\xe0\x31\xe0\x31\x51\xb1\x31\xd1\x21"
                   33613:             "\xe1\x11\xe0\x12\xc5\xb1\x60" }  },
1.1       albertel 33614:       /* --- pixel bitmap for cmsy131 char#39 \simeq --- */
1.2       albertel 33615:       {  39,61049,                      /* character number, location */
                   33616:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   33617:           { 12,    8, 3,20, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33618:             "\x14\x63\x23\x42\x52\x23\x64\x10\xf2\xcc" }  },
1.1       albertel 33619:       /* --- pixel bitmap for cmsy131 char#40 \Leftarrow --- */
1.2       albertel 33620:       {  40,62063,                      /* character number, location */
                   33621:          10, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   33622:           { 16,   11, 3,31, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33623:             "\xf1\x51\xa0\x41\xed\xf1\x12\xd0\x22\xe0\x1d\x41\xb0"
                   33624:             "\xf1\x51\xa0" }  },
1.1       albertel 33625:       /* --- pixel bitmap for cmsy131 char#41 \Rightarrow --- */
1.2       albertel 33626:       {  41,63076,                      /* character number, location */
                   33627:          10, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   33628:           { 15,   11, 3,29, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33629:             "\xf1\xa1\x40\xb1\x3d\x20\xf1\xd2\xc2\x1d\xd1\x30\xf1"
                   33630:             "\xa1\x41" }  },
1.1       albertel 33631:       /* --- pixel bitmap for cmsy131 char#42 \Uparrow --- */
1.2       albertel 33632:       {  42,63904,                      /* character number, location */
                   33633:          12, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   33634:           { 10,   16, 3,25, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33635:             "\xf1\x42\x40\x31\x21\x51\x41\x23\x43\xfa\x21\x41\x21" }  },
1.1       albertel 33636:       /* --- pixel bitmap for cmsy131 char#43 \Downarrow --- */
1.2       albertel 33637:       {  43,64772,                      /* character number, location */
                   33638:          13, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   33639:           { 10,   16, 3,25, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33640:             "\xfa\x21\x41\x23\x43\x21\x41\x51\x21\x30\xf1\x42\x41" }  },
1.1       albertel 33641:       /* --- pixel bitmap for cmsy131 char#44 \Leftrightarrow --- */
1.2       albertel 33642:       {  44,66060,                      /* character number, location */
                   33643:          10, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   33644:           { 14,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33645:             "\x08\x04\x02\x41\x80\xf8\x7f\x03\x70\x00\x28\x00\xf1"
                   33646:             "\x3f\x0c\x0c\x02\x81\x40\x00" }  },
1.1       albertel 33647:       /* --- pixel bitmap for cmsy131 char#45 \nwarrow --- */
1.2       albertel 33648:       {  45,67118,                      /* character number, location */
                   33649:          14, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   33650:           { 17,   17, 3,64, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33651:             "\x61\xb5\xc2\xe0\x11\x11\xe1\x21\xd1\x31\xb1\x51\xe0"
                   33652:             "\x31\xe0\x31\xe0\x31\xe0\x31\xe0\x31\xe0\x31\xe0\x31"
                   33653:             "\xe0\x31\xe0\x31\xe0\x31" }  },
1.1       albertel 33654:       /* --- pixel bitmap for cmsy131 char#46 \swarrow --- */
1.2       albertel 33655:       {  46,68178,                      /* character number, location */
                   33656:          12, 0,   -5, 0,      /* topleft row,col, and botleft row,col */
                   33657:           { 17,   17, 3,67, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33658:             "\xe0\x21\xe0\x11\xe0\x11\xe0\x11\xe0\x11\xe0\x11\xe0"
                   33659:             "\x11\xe0\x11\xe0\x11\xe0\x11\x91\x51\xb1\x31\xc1\x21"
                   33660:             "\xd1\x11\xe2\xe0\x15\xe0\x31\xa3" }  },
1.1       albertel 33661:       /* --- pixel bitmap for cmsy131 char#47 \propto --- */
1.2       albertel 33662:       {  47,69224,                      /* character number, location */
                   33663:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   33664:           { 12,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33665:             "\x1c\x2c\x22\x41\x11\x08\x81\x10\x14\x22\xc2\xc1" }  },
1.1       albertel 33666:       /* --- pixel bitmap for cmsy131 char#48 \prime --- */
1.2       albertel 33667:       {  48,69728,                      /* character number, location */
                   33668:          10, 1,    1, 1,      /* topleft row,col, and botleft row,col */
                   33669:           {  4,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33670:             "\xcc\x64\x26\x32\x01" }  },
1.1       albertel 33671:       /* --- pixel bitmap for cmsy131 char#49 \infty --- */
1.2       albertel 33672:       {  49,41832,                      /* character number, location */
                   33673:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   33674:           { 16,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33675:             "\x1c\x38\x22\x46\x41\x81\x81\x81\x81\x81\x81\x82\x62"
                   33676:             "\x44\x1c\x38" }  },
1.1       albertel 33677:       /* --- pixel bitmap for cmsy131 char#50 \in --- */
1.2       albertel 33678:       {  50,32954,                      /* character number, location */
                   33679:          10, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   33680:           {  8,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33681:             "\xf8\x04\x02\x01\x01\xff\x01\x01\x02\x04\xf8" }  },
1.1       albertel 33682:       /* --- pixel bitmap for cmsy131 char#51 \ni --- */
1.2       albertel 33683:       {  51,70385,                      /* character number, location */
                   33684:          10, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   33685:           {  8,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33686:             "\x1f\x20\x40\x80\x80\xff\x80\x80\x40\x20\x1f" }  },
1.1       albertel 33687:       /* --- pixel bitmap for cmsy131 char#52 \triangle --- */
1.2       albertel 33688:       {  52,71131,                      /* character number, location */
                   33689:          13, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   33690:           { 13,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33691:             "\x40\x00\x14\x80\x02\x88\x00\x11\x10\x04\x82\x20\x20"
1.1       albertel 33692:             "\x04\x44\x00\x09\xa0\x00\xf8\xff\x01" }  },
                   33693:       /* --- pixel bitmap for cmsy131 char#53 \bigtriangledown --- */
1.2       albertel 33694:       {  53,71912,                      /* character number, location */
                   33695:           9, 2,   -4, 2,      /* topleft row,col, and botleft row,col */
                   33696:           { 13,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33697:             "\xff\x3f\x00\x0a\x20\x01\x44\x40\x08\x08\x82\x40\x10"
1.1       albertel 33698:             "\x10\x01\x22\x80\x02\x50\x00\x04\x00" }  },
1.2       albertel 33699:       /* --- pixel bitmap for cmsy131 char#54 \boldslash --- */
                   33700:       {  54,72276,                      /* character number, location */
                   33701:          13, 3,   -4, 3,      /* topleft row,col, and botleft row,col */
                   33702:           {  9,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33703:             "\x00\x01\x01\x02\x02\x04\x04\x08\x08\x10\x20\x20\x40"
1.1       albertel 33704:             "\x40\x80\x80\x00\x01\x01\x00" }  },
1.2       albertel 33705:       /* --- pixel bitmap for cmsy131 char#55 \' --- */
                   33706:       {  55,72635,                      /* character number, location */
                   33707:           8, 1,    1, 1,      /* topleft row,col, and botleft row,col */
                   33708:           {  2,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33709:             "\xd5\x15" }  },
1.1       albertel 33710:       /* --- pixel bitmap for cmsy131 char#56 \forall --- */
1.2       albertel 33711:       {  56,33580,                      /* character number, location */
                   33712:          13, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   33713:           { 11,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33714:             "\x01\x0c\xa0\x80\x04\xc4\x1f\x82\x10\x04\x11\x88\x80"
                   33715:             "\x02\x14\x40\x00\x02" }  },
1.1       albertel 33716:       /* --- pixel bitmap for cmsy131 char#57 \exists --- */
1.2       albertel 33717:       {  57,34221,                      /* character number, location */
                   33718:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   33719:           {  8,   13, 3,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33720:             "\x08\xf4\x71\x08\xf4\x71\x08" }  },
1.1       albertel 33721:       /* --- pixel bitmap for cmsy131 char#58 \neg --- */
1.2       albertel 33722:       {  58,34843,                      /* character number, location */
                   33723:           7, 1,    2, 1,      /* topleft row,col, and botleft row,col */
                   33724:           { 10,    5, 3, 6, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33725:             "\x0a\xf3\x91" }  },
1.1       albertel 33726:       /* --- pixel bitmap for cmsy131 char#59 \emptyset --- */
1.2       albertel 33727:       {  59,73340,                      /* character number, location */
                   33728:          14, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   33729:           {  7,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33730:             "\x20\x9e\x0c\x12\x8d\x26\x93\xc9\x62\xb1\x68\xf2\x08"
                   33731:             "\x00" }  },
1.1       albertel 33732:       /* --- pixel bitmap for cmsy131 char#60 \Re --- */
1.2       albertel 33733:       {  60,75159,                      /* character number, location */
                   33734:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   33735:           { 12,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33736:             "\xc6\x93\x72\x19\xa6\xe1\x1c\xcc\x63\xfd\xb1\x1b\x98"
                   33737:             "\x81\x19\x99\x91\x99\x0e\x07" }  },
1.1       albertel 33738:       /* --- pixel bitmap for cmsy131 char#61 \Im --- */
1.2       albertel 33739:       {  61,76430,                      /* character number, location */
                   33740:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   33741:           { 12,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33742:             "\x7c\x20\x0c\x81\x19\x70\x01\x20\x70\x9c\x09\x98\x00"
                   33743:             "\x73\x30\x0c\x87\x31\xf0\x01" }  },
1.1       albertel 33744:       /* --- pixel bitmap for cmsy131 char#62 \top --- */
1.2       albertel 33745:       {  62,77162,                      /* character number, location */
                   33746:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   33747:           { 13,   13, 3, 7, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33748:             "\x0d\xfb\x61\x61" }  },
1.1       albertel 33749:       /* --- pixel bitmap for cmsy131 char#63 \bot --- */
1.2       albertel 33750:       {  63,77897,                      /* character number, location */
                   33751:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   33752:           { 13,   13, 3, 6, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33753:             "\xfb\x61\x6d" }  },
1.1       albertel 33754:       /* --- pixel bitmap for cmsy131 char#64 \aleph --- */
1.2       albertel 33755:       {  64,79124,                      /* character number, location */
                   33756:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   33757:           {  9,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33758:             "\x41\x86\x0d\x32\xcc\x98\x93\x24\x39\x62\x84\x19\x66"
                   33759:             "\x7c\x10" }  },
1.1       albertel 33760:       /* --- pixel bitmap for cmsy131 char#65 \calA --- */
1.2       albertel 33761:       {  65,  748,                      /* character number, location */
                   33762:          13, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
                   33763:           { 14,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33764:             "\x00\x0c\x00\x03\xe0\x00\x38\x00\x0d\x40\x03\xc8\x00"
                   33765:             "\x33\x40\x0c\xf8\x07\x83\x6d\x60\x0f\xb8\x01\x00" }  },
1.1       albertel 33766:       /* --- pixel bitmap for cmsy131 char#66 \calB --- */
1.2       albertel 33767:       {  66, 1492,                      /* character number, location */
                   33768:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   33769:           { 11,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33770:             "\xd8\xf7\x33\x8e\x39\xc6\x19\xf6\x31\x9c\xc1\x06\x36"
                   33771:             "\xb0\xc7\xf6\x01" }  },
1.1       albertel 33772:       /* --- pixel bitmap for cmsy131 char#67 \calC --- */
1.2       albertel 33773:       {  67, 2167,                      /* character number, location */
                   33774:          12, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   33775:           {  9,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33776:             "\xe0\x31\x33\x36\x66\x60\xc0\x80\x01\x03\x06\x1f\xf3"
                   33777:             "\x01" }  },
1.1       albertel 33778:       /* --- pixel bitmap for cmsy131 char#68 \calD --- */
1.2       albertel 33779:       {  68, 2947,                      /* character number, location */
                   33780:          12, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   33781:           { 14,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33782:             "\xf8\x8f\x19\x37\x86\x87\xc1\x30\x30\x0c\x0c\x03\xc3"
                   33783:             "\x60\x18\x0c\x86\x81\x39\xf8\x01" }  },
1.1       albertel 33784:       /* --- pixel bitmap for cmsy131 char#69 \calE --- */
1.2       albertel 33785:       {  69, 3614,                      /* character number, location */
                   33786:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   33787:           { 10,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33788:             "\xe0\x61\xce\x18\x03\x1c\xe0\xc1\x80\x01\x03\x0c\x76"
                   33789:             "\x8c\x0f" }  },
1.1       albertel 33790:       /* --- pixel bitmap for cmsy131 char#70 \calF --- */
1.2       albertel 33791:       {  70, 4366,                      /* character number, location */
                   33792:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   33793:           { 14,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33794:             "\xf0\x3f\x36\xc4\x0c\x10\x03\x60\x00\x18\x00\x7e\xc0"
                   33795:             "\x00\x30\x00\x06\xb0\x01\x3c\x00" }  },
1.1       albertel 33796:       /* --- pixel bitmap for cmsy131 char#71 \calG --- */
1.2       albertel 33797:       {  71, 5083,                      /* character number, location */
                   33798:          12, 0,   -2, 0,      /* topleft row,col, and botleft row,col */
                   33799:           { 10,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33800:             "\xe0\x63\xcc\xb0\x61\x06\x0c\x38\xd8\x60\xc3\x9d\xe7"
                   33801:             "\x0f\x30\x64\xf8\x00" }  },
1.1       albertel 33802:       /* --- pixel bitmap for cmsy131 char#72 \calH --- */
1.2       albertel 33803:       {  72, 5957,                      /* character number, location */
                   33804:          12, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
                   33805:           { 14,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33806:             "\x78\xb0\x19\x36\x86\x85\x61\x60\x0c\x0c\xc3\xff\xc0"
                   33807:             "\x30\x30\x06\x86\x81\x61\x62\x78\x0c\x00" }  },
1.1       albertel 33808:       /* --- pixel bitmap for cmsy131 char#73 \calI --- */
1.2       albertel 33809:       {  73, 6670,                      /* character number, location */
                   33810:          12,-1,    0,-1,      /* topleft row,col, and botleft row,col */
                   33811:           { 13,   12, 3,33, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33812:             "\x49\x22\x32\x52\x42\x40\xf2\x62\x50\xf2\x52\x60\x42"
                   33813:             "\xb2\x32\x2a\x32" }  },
1.1       albertel 33814:       /* --- pixel bitmap for cmsy131 char#74 \calJ --- */
1.2       albertel 33815:       {  74, 7338,                      /* character number, location */
                   33816:          12, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   33817:           { 15,   14, 3,47, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33818:             "\x87\x62\x32\x72\x32\x72\x32\x40\xf1\x92\x40\xf2\x82"
                   33819:             "\x50\x21\x52\x52\x52\x63\x42\x72\x32\x85\x92" }  },
1.1       albertel 33820:       /* --- pixel bitmap for cmsy131 char#75 \calK --- */
1.2       albertel 33821:       {  75, 8141,                      /* character number, location */
                   33822:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   33823:           { 13,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33824:             "\x18\xcc\x63\x60\x03\x1c\xc0\x01\x38\x00\x07\x60\x01"
                   33825:             "\x26\xc0\x08\x1a\xa2\x81\x03" }  },
1.1       albertel 33826:       /* --- pixel bitmap for cmsy131 char#76 \calL --- */
1.2       albertel 33827:       {  76, 8827,                      /* character number, location */
                   33828:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   33829:           { 12,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33830:             "\x80\x03\x76\x30\x02\x03\x18\x80\x01\x18\xc0\x00\x0c"
                   33831:             "\xc0\xc0\x7e\x36\x3e" }  },
1.1       albertel 33832:       /* --- pixel bitmap for cmsy131 char#77 \calM --- */
1.2       albertel 33833:       {  77, 9930,                      /* character number, location */
                   33834:          12, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
                   33835:           { 20,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33836:             "\xc0\x00\x08\x0c\xc0\xc0\x00\x06\x1e\x70\xa0\x81\x07"
                   33837:             "\x1a\x6c\xa0\x63\x06\x31\x63\x10\x1b\x06\xf1\x60\x0b"
                   33838:             "\x06\xf6\x00\xe0\x06\x00\x00" }  },
1.1       albertel 33839:       /* --- pixel bitmap for cmsy131 char#78 \calN --- */
1.2       albertel 33840:       {  78,10869,                      /* character number, location */
                   33841:          14,-1,   -1,-1,      /* topleft row,col, and botleft row,col */
                   33842:           { 18,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33843:             "\x00\x00\x03\x00\x0e\x0e\x0c\x38\x10\xe0\x40\x80\x83"
                   33844:             "\x00\x1e\x02\x68\x08\x90\x13\x40\x4c\x00\x31\x01\xc2"
                   33845:             "\x05\x0b\x0e\x3c\x38\x60\x00\x00" }  },
1.1       albertel 33846:       /* --- pixel bitmap for cmsy131 char#79 \calO --- */
1.2       albertel 33847:       {  79,11626,                      /* character number, location */
                   33848:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   33849:           { 14,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33850:             "\x60\x1f\x36\xc6\x86\x9b\xc1\x06\xf0\x00\x3c\x00\x0f"
                   33851:             "\x60\x03\xcc\x81\xe1\x30\xf0\x03" }  },
1.1       albertel 33852:       /* --- pixel bitmap for cmsy131 char#80 \calP --- */
1.2       albertel 33853:       {  80,12383,                      /* character number, location */
                   33854:          12, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
                   33855:           { 13,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33856:             "\xf8\xcf\x8c\x8f\xe1\x30\x0c\x83\x61\x18\x8c\x81\x0f"
                   33857:             "\x18\x00\x03\x60\x00\x06\x40\x00\x00" }  },
1.1       albertel 33858:       /* --- pixel bitmap for cmsy131 char#81 \calQ --- */
1.2       albertel 33859:       {  81,13192,                      /* character number, location */
                   33860:          12, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
                   33861:           { 13,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33862:             "\xe0\x07\xc3\x31\x70\x03\x6c\x80\x07\xf0\x00\x1e\x60"
                   33863:             "\x87\xc6\x6f\x00\x06\x3f\x88\x8f\x81\x0f" }  },
1.1       albertel 33864:       /* --- pixel bitmap for cmsy131 char#82 \calR --- */
1.2       albertel 33865:       {  82,13979,                      /* character number, location */
                   33866:          12, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   33867:           { 15,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33868:             "\xf8\x0f\x33\xce\x18\x26\x0c\x03\xc3\x80\x31\xc0\x07"
                   33869:             "\x60\x07\x18\x03\x8c\x03\x86\x9b\x81\x03" }  },
1.1       albertel 33870:       /* --- pixel bitmap for cmsy131 char#83 \calS --- */
1.2       albertel 33871:       {  83,14689,                      /* character number, location */
                   33872:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   33873:           { 11,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33874:             "\xe0\x87\x31\x86\x31\x80\x03\x78\x00\xcf\x60\x03\x1b"
                   33875:             "\xd8\x61\xfc\x00" }  },
1.1       albertel 33876:       /* --- pixel bitmap for cmsy131 char#84 \calT --- */
1.2       albertel 33877:       {  84,15367,                      /* character number, location */
                   33878:          13, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
                   33879:           { 16,   14, 3,33, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33880:             "\xe0\x11\x3c\x22\x42\x72\x52\x70\xf3\x62\x80\xf3\x52"
                   33881:             "\x90\xf1\x42\xa6" }  },
1.1       albertel 33882:       /* --- pixel bitmap for cmsy131 char#85 \calU --- */
1.2       albertel 33883:       {  85,16067,                      /* character number, location */
                   33884:          12,-1,    0,-1,      /* topleft row,col, and botleft row,col */
                   33885:           { 13,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33886:             "\x1c\x58\x03\x63\x30\x06\xc6\x60\x0c\x8e\xc1\x31\x3c"
                   33887:             "\xc3\x63\x6c\xcc\x8c\x87\x03" }  },
1.1       albertel 33888:       /* --- pixel bitmap for cmsy131 char#86 \calV --- */
1.2       albertel 33889:       {  86,16774,                      /* character number, location */
                   33890:          12, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
                   33891:           { 11,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33892:             "\x07\x76\x30\x07\x31\x88\x41\x0c\x61\x0c\x33\xd8\xc0"
                   33893:             "\x03\x0e\x30\x80\x00" }  },
1.1       albertel 33894:       /* --- pixel bitmap for cmsy131 char#87 \calW --- */
1.2       albertel 33895:       {  87,17761,                      /* character number, location */
                   33896:          12, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
                   33897:           { 18,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33898:             "\x07\x06\x3b\x38\xcc\xe1\x20\x46\x83\x18\x1d\x62\x62"
                   33899:             "\x84\x8d\x19\x1e\x26\x38\x58\x60\xe0\xc1\x81\x03\x03"
                   33900:             "\x04\x04\x10\x00" }  },
1.1       albertel 33901:       /* --- pixel bitmap for cmsy131 char#88 \calX --- */
1.2       albertel 33902:       {  88,18600,                      /* character number, location */
                   33903:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   33904:           { 14,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33905:             "\xf0\x38\x34\x0c\x8c\x01\x33\xc0\x06\x70\x00\x0e\x60"
1.1       albertel 33906:             "\x07\x8c\x81\x61\x30\x58\x1c\x0e" }  },
                   33907:       /* --- pixel bitmap for cmsy131 char#89 \calY --- */
1.2       albertel 33908:       {  89,19327,                      /* character number, location */
                   33909:          12, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   33910:           { 12,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33911:             "\x1e\xb4\x83\x30\x08\x87\x60\x04\x46\x60\x02\x26\x60"
                   33912:             "\x01\x0e\x60\x10\x02\x11\xe0\x00" }  },
1.1       albertel 33913:       /* --- pixel bitmap for cmsy131 char#90 \calZ --- */
1.2       albertel 33914:       {  90,20189,                      /* character number, location */
                   33915:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   33916:           { 13,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33917:             "\xe0\x1b\xe3\x61\x18\x80\x01\x18\xc0\x07\x30\x80\x01"
1.1       albertel 33918:             "\x18\x88\x81\xf9\x99\xf1\x01" }  },
                   33919:       /* --- pixel bitmap for cmsy131 char#91 \cup --- */
1.2       albertel 33920:       {  91,23792,                      /* character number, location */
                   33921:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   33922:           { 10,   11, 3,13, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33923:             "\xf8\x01\x81\x11\x61\x36\x21" }  },
1.1       albertel 33924:       /* --- pixel bitmap for cmsy131 char#92 \cap --- */
1.2       albertel 33925:       {  92,24465,                      /* character number, location */
                   33926:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   33927:           { 10,   11, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33928:             "\x26\x31\x61\x1f\x81\x81" }  },
1.1       albertel 33929:       /* --- pixel bitmap for cmsy131 char#93 \uplus --- */
1.2       albertel 33930:       {  93,79867,                      /* character number, location */
                   33931:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   33932:           { 10,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33933:             "\x01\x06\x18\x62\x88\x21\xf6\x1b\x62\x88\x01\x0a\xc4"
                   33934:             "\x0f" }  },
1.1       albertel 33935:       /* --- pixel bitmap for cmsy131 char#94 \wedge --- */
1.2       albertel 33936:       {  94,25121,                      /* character number, location */
                   33937:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   33938:           { 10,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33939:             "\x30\xc0\x00\x03\x12\x48\x10\x42\x88\x40\x02\x05\x18"
                   33940:             "\x20" }  },
1.1       albertel 33941:       /* --- pixel bitmap for cmsy131 char#95 \vee --- */
1.2       albertel 33942:       {  95,25773,                      /* character number, location */
                   33943:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   33944:           { 10,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33945:             "\x01\x06\x28\x90\x40\x84\x10\x82\x04\x12\x30\xc0\x00"
                   33946:             "\x03" }  },
1.1       albertel 33947:       /* --- pixel bitmap for cmsy131 char#96 \vdash --- */
1.2       albertel 33948:       {  96,80504,                      /* character number, location */
                   33949:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   33950:           {  9,   13, 3,11, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33951:             "\xf5\x01\x89\x0f\x51\x81" }  },
1.1       albertel 33952:       /* --- pixel bitmap for cmsy131 char#97 \dashv --- */
1.2       albertel 33953:       {  97,81114,                      /* character number, location */
                   33954:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   33955:           {  9,   13, 3,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33956:             "\xf5\x81\x09\xf5\x81" }  },
1.1       albertel 33957:       /* --- pixel bitmap for cmsy131 char#98 \lfloor --- */
1.2       albertel 33958:       {  98,81634,                      /* character number, location */
                   33959:          14, 3,   -5, 3,      /* topleft row,col, and botleft row,col */
                   33960:           {  5,   19, 3,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33961:             "\xfe\x01\x4f\x21\x45" }  },
1.1       albertel 33962:       /* --- pixel bitmap for cmsy131 char#99 \rfloor --- */
1.2       albertel 33963:       {  99,82167,                      /* character number, location */
                   33964:          14, 0,   -5, 0,      /* topleft row,col, and botleft row,col */
                   33965:           {  5,   19, 3,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33966:             "\xfe\x41\xf2\x41\x05" }  },
1.1       albertel 33967:       /* --- pixel bitmap for cmsy131 char#100 \lceil --- */
1.2       albertel 33968:       { 100,82701,                      /* character number, location */
                   33969:          14, 3,   -5, 3,      /* topleft row,col, and botleft row,col */
                   33970:           {  5,   19, 3,11, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33971:             "\x05\x0f\xe1\x4f\x21\x41" }  },
1.1       albertel 33972:       /* --- pixel bitmap for cmsy131 char#101 \rceil --- */
1.2       albertel 33973:       { 101,83236,                      /* character number, location */
                   33974:          14, 0,   -5, 0,      /* topleft row,col, and botleft row,col */
                   33975:           {  5,   19, 3,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33976:             "\x05\xfe\x41\xf2\x41" }  },
                   33977:       /* --- pixel bitmap for cmsy131 char#102 \lbrace --- */
                   33978:       { 102,39831,                      /* character number, location */
                   33979:          14, 1,   -5, 1,      /* topleft row,col, and botleft row,col */
                   33980:           {  7,   19, 3,30, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33981:             "\x52\x32\x20\xf5\x31\x30\x22\x32\x72\x30\xf5\x31\x30"
                   33982:             "\x32\x72" }  },
                   33983:       /* --- pixel bitmap for cmsy131 char#103 \rbrace --- */
                   33984:       { 103,40672,                      /* character number, location */
                   33985:          14, 1,   -5, 1,      /* topleft row,col, and botleft row,col */
                   33986:           {  7,   19, 3,31, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33987:             "\x02\x72\x30\xf5\x31\x30\x32\x72\x32\x20\xf5\x31\x30"
                   33988:             "\x22\x32\x51" }  },
1.1       albertel 33989:       /* --- pixel bitmap for cmsy131 char#104 \langle --- */
1.2       albertel 33990:       { 104,83742,                      /* character number, location */
                   33991:          14, 1,   -5, 1,      /* topleft row,col, and botleft row,col */
                   33992:           {  5,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33993:             "\x10\x22\x44\x88\x10\x21\x04\x21\x08\x41\x08\x42" }  },
1.1       albertel 33994:       /* --- pixel bitmap for cmsy131 char#105 \rangle --- */
1.2       albertel 33995:       { 105,84249,                      /* character number, location */
                   33996:          14, 1,   -5, 1,      /* topleft row,col, and botleft row,col */
                   33997:           {  5,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   33998:             "\x21\x08\x41\x08\x42\x10\x42\x84\x08\x11\x22\x04" }  },
1.1       albertel 33999:       /* --- pixel bitmap for cmsy131 char#106 \mid --- */
1.2       albertel 34000:       { 106,37947,                      /* character number, location */
                   34001:          14, 2,   -5, 2,      /* topleft row,col, and botleft row,col */
                   34002:           {  1,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34003:             "\xff\xff\x07" }  },
1.1       albertel 34004:       /* --- pixel bitmap for cmsy131 char#107 \parallel --- */
1.2       albertel 34005:       { 107,84846,                      /* character number, location */
                   34006:          14, 2,   -5, 2,      /* topleft row,col, and botleft row,col */
                   34007:           {  5,   19, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34008:             "\xfe\x01\x31\x0f\x31\x31" }  },
1.1       albertel 34009:       /* --- pixel bitmap for cmsy131 char#108 \updownarrow --- */
1.2       albertel 34010:       { 108,86040,                      /* character number, location */
                   34011:          14, 0,   -5, 0,      /* topleft row,col, and botleft row,col */
                   34012:           {  9,   19, 3,37, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34013:             "\xf1\x41\x40\x33\x55\x22\x21\x22\xf8\x41\x42\x21\x22"
                   34014:             "\x25\x53\x30\xf1\x41\x41" }  },
1.1       albertel 34015:       /* --- pixel bitmap for cmsy131 char#109 \Updownarrow --- */
1.2       albertel 34016:       { 109,87113,                      /* character number, location */
                   34017:          13, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   34018:           { 10,   17, 3,35, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34019:             "\x42\x71\x21\x51\x41\x23\x43\xf8\x21\x41\x23\x43\x21"
                   34020:             "\x41\x51\x21\x72\x41" }  },
1.1       albertel 34021:       /* --- pixel bitmap for cmsy131 char#110 \setminus --- */
1.2       albertel 34022:       { 110,37513,                      /* character number, location */
                   34023:          14, 1,   -5, 1,      /* topleft row,col, and botleft row,col */
                   34024:           {  7,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34025:             "\x81\x80\x40\x20\x20\x10\x08\x08\x04\x02\x02\x81\x80"
                   34026:             "\x40\x20\x20\x10" }  },
1.1       albertel 34027:       /* --- pixel bitmap for cmsy131 char#111 \wr --- */
1.2       albertel 34028:       { 111,87604,                      /* character number, location */
                   34029:          11, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   34030:           {  3,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34031:             "\x33\x49\x6b\x49\x66" }  },
1.1       albertel 34032:       /* --- pixel bitmap for cmsy131 char#112 \surd --- */
1.2       albertel 34033:       { 112,88456,                      /* character number, location */
                   34034:           1, 1,  -17, 1,      /* topleft row,col, and botleft row,col */
                   34035:           { 15,   18, 3,63, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34036:             "\xe1\xf1\xd1\x10\xf1\xc1\x20\xf1\xb1\x30\xf1\xa1\x40"
                   34037:             "\x11\x71\x53\x61\x71\x51\x91\x41\x60\xf1\x31\x31\x70"
                   34038:             "\xf1\x41\x11\x80\x51\x91" }  },
1.1       albertel 34039:       /* --- pixel bitmap for cmsy131 char#113 \amalg --- */
1.2       albertel 34040:       { 113,89646,                      /* character number, location */
                   34041:          12, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   34042:           { 14,   12, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34043:             "\x05\x45\xf9\x22\x62\x2e" }  },
1.1       albertel 34044:       /* --- pixel bitmap for cmsy131 char#114 \nabla --- */
1.2       albertel 34045:       { 114,90576,                      /* character number, location */
                   34046:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   34047:           { 13,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34048:             "\xff\xdf\xff\x19\x20\x06\xc2\x40\x30\x04\x86\x80\x09"
                   34049:             "\x30\x01\x1c\x80\x03\x20\x00" }  },
                   34050:       /* --- pixel bitmap for cmsy131 char#115 \smallint --- */
                   34051:       { 115,42751,                      /* character number, location */
                   34052:          13, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   34053:           {  8,   17, 3,29, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34054:             "\x61\x61\x11\xf2\x51\x20\xf6\x41\x30\xf2\x31\x41\x21"
                   34055:             "\x52\x51" }  },
1.1       albertel 34056:       /* --- pixel bitmap for cmsy131 char#116 \sqcup --- */
1.2       albertel 34057:       { 116,91242,                      /* character number, location */
                   34058:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   34059:           { 10,   11, 3, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34060:             "\xf9\x01\x81\x0a" }  },
1.1       albertel 34061:       /* --- pixel bitmap for cmsy131 char#117 \sqcap --- */
1.2       albertel 34062:       { 117,91919,                      /* character number, location */
                   34063:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   34064:           { 10,   11, 3, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34065:             "\x0a\x0f\x91\x81" }  },
1.1       albertel 34066:       /* --- pixel bitmap for cmsy131 char#118 \sqsubseteq --- */
1.2       albertel 34067:       { 118,92668,                      /* character number, location */
                   34068:          12, 2,   -3, 2,      /* topleft row,col, and botleft row,col */
                   34069:           { 12,   15, 3,13, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34070:             "\x0c\x0f\x81\xbc\xf2\xcb\x12" }  },
1.1       albertel 34071:       /* --- pixel bitmap for cmsy131 char#119 \sqsupseteq --- */
1.2       albertel 34072:       { 119,93403,                      /* character number, location */
                   34073:          12, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   34074:           { 11,   15, 3,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34075:             "\x0b\xf8\xa1\x1a\xf2\xb0\x1a" }  },
1.1       albertel 34076:       /* --- pixel bitmap for cmsy131 char#120 \S --- */
1.2       albertel 34077:       { 120,94392,                      /* character number, location */
                   34078:          13, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   34079:           {  6,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34080:             "\x9c\x18\x06\x02\xa1\x85\x61\x68\x21\x10\x18\x46\x0e" }  },
1.1       albertel 34081:       /* --- pixel bitmap for cmsy131 char#121 \dag --- */
1.2       albertel 34082:       { 121,95194,                      /* character number, location */
                   34083:          13, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   34084:           {  7,   17, 3,11, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34085:             "\xf4\x31\x37\xfa\x31\x31" }  },
1.1       albertel 34086:       /* --- pixel bitmap for cmsy131 char#122 \ddag --- */
1.2       albertel 34087:       { 122,96173,                      /* character number, location */
                   34088:          13, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   34089:           {  7,   17, 3,27, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34090:             "\xf2\x31\x37\xf3\x31\x30\x70\xf2\x31\x30\x1d\xf2\x31"
                   34091:             "\x31" }  },
1.1       albertel 34092:       /* --- pixel bitmap for cmsy131 char#123 \P --- */
1.2       albertel 34093:       { 123,96865,                      /* character number, location */
                   34094:          13, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   34095:           { 10,   17, 3,35, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34096:             "\x28\x15\x21\x1f\x36\x21\x10\x15\x21\x34\x21\x43\x21"
                   34097:             "\x10\xf7\x51\x21\x11" }  },
1.1       albertel 34098:       /* --- pixel bitmap for cmsy131 char#124 \clubsuit --- */
1.2       albertel 34099:       { 124,97835,                      /* character number, location */
                   34100:          13, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   34101:           { 13,   15, 3,39, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34102:             "\x53\x95\x40\xf2\x37\x30\x45\x5b\x1f\x3d\x14\x11\x14"
                   34103:             "\x32\x21\x22\x20\xf1\x61\x60" }  },
1.1       albertel 34104:       /* --- pixel bitmap for cmsy131 char#125 \Diamond --- */
1.2       albertel 34105:       { 125,98558,                      /* character number, location */
                   34106:          13, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   34107:           { 13,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34108:             "\x40\x00\x14\x80\x02\x88\x80\x20\x08\x88\x00\x0a\x80"
                   34109:             "\x02\x88\x80\x20\x08\x88\x00\x0a\x40\x01\x10\x00" }  },
1.1       albertel 34110:       /* --- pixel bitmap for cmsy131 char#126 \Heart --- */
1.2       albertel 34111:       { 126,99387,                      /* character number, location */
                   34112:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   34113:           { 13,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34114:             "\x1c\x47\x14\x05\xc1\x00\x18\x00\x03\xa0\x00\x22\x20"
                   34115:             "\x04\x04\x63\x80\x02\x50\x00\x04\x00" }  },
1.1       albertel 34116:       /* --- pixel bitmap for cmsy131 char#127 \spadesuit --- */
1.2       albertel 34117:       { 127,100282,                     /* character number, location */
                   34118:          13, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   34119:           { 13,   15, 3,39, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34120:             "\xf1\x61\x60\x53\x95\x77\x59\x3b\x1f\x3d\x05\x11\x15"
                   34121:             "\x13\x21\x23\x10\xf1\x61\x62" }  },
1.1       albertel 34122:       /* --- trailer  --- */
1.2       albertel 34123:       { -99, -999,  0,0,0,0, { 0,0,0,0, (pixbyte *)"\0" }  }
1.1       albertel 34124:    } ;
                   34125: 
                   34126: 
1.2       albertel 34127: /* --- size=4 for .160gf ---
                   34128:  * mf '\mode=preview; mag=magstep(-15.29639112828755784636); input cmsy10'
                   34129:  * --------------------------------------------------------------------- */
1.1       albertel 34130: /* --- fontdef for cmsy160 --- */
                   34131: static	chardef  cmsy160[] =
                   34132:    {
                   34133:       /* --- pixel bitmap for cmsy160 char#0 - --- */
1.2       albertel 34134:       {   0,21432,                      /* character number, location */
                   34135:           6, 2,    5, 2,      /* topleft row,col, and botleft row,col */
                   34136:           { 13,    1, 3, 2, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34137:             "\x0d" }  },
1.1       albertel 34138:       /* --- pixel bitmap for cmsy160 char#1 \cdot --- */
1.2       albertel 34139:       {   1,39198,                      /* character number, location */
                   34140:           7, 2,    5, 2,      /* topleft row,col, and botleft row,col */
                   34141:           {  2,    2, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34142:             "\x0f" }  },
1.1       albertel 34143:       /* --- pixel bitmap for cmsy160 char#2 \times --- */
1.2       albertel 34144:       {   2,44232,                      /* character number, location */
                   34145:          11, 3,    0, 3,      /* topleft row,col, and botleft row,col */
                   34146:           { 11,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34147:             "\x01\x14\x10\x41\x10\x01\x05\x10\x40\x01\x11\x04\x11"
                   34148:             "\x50\x00\x01" }  },
1.1       albertel 34149:       /* --- pixel bitmap for cmsy160 char#3 \ast --- */
1.2       albertel 34150:       {   3,44873,                      /* character number, location */
                   34151:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   34152:           {  8,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34153:             "\x10\x10\x10\xd6\x38\x38\xd6\x10\x10\x10" }  },
1.1       albertel 34154:       /* --- pixel bitmap for cmsy160 char#4 \div --- */
1.2       albertel 34155:       {   4,45708,                      /* character number, location */
                   34156:          12, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   34157:           { 14,   13, 3,19, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34158:             "\xf1\x62\x60\xf3\xee\xf3\xe0\xf1\x62\x62" }  },
1.1       albertel 34159:       /* --- pixel bitmap for cmsy160 char#5 \diamond --- */
1.2       albertel 34160:       {   5,39735,                      /* character number, location */
                   34161:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   34162:           { 11,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34163:             "\x20\x80\x02\x22\x08\x22\xa0\x00\x0a\x88\x20\x88\x80"
                   34164:             "\x02\x08\x00" }  },
1.1       albertel 34165:       /* --- pixel bitmap for cmsy160 char#6 \pm --- */
1.2       albertel 34166:       {   6,22129,                      /* character number, location */
                   34167:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   34168:           { 15,   15, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34169:             "\xf6\x71\x7e\x01\xf5\x71\x7e\x01" }  },
1.1       albertel 34170:       /* --- pixel bitmap for cmsy160 char#7 \mp --- */
1.2       albertel 34171:       {   7,46417,                      /* character number, location */
                   34172:          11, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   34173:           { 15,   15, 3,17, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34174:             "\x0e\x01\xf5\x71\x7e\x01\xf6\x71\x72" }  },
1.1       albertel 34175:       /* --- pixel bitmap for cmsy160 char#8 \oplus --- */
1.2       albertel 34176:       {   8,22886,                      /* character number, location */
                   34177:          13, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   34178:           { 15,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34179:             "\xe0\x03\x4c\x06\x21\x44\x10\x24\x08\x0a\x04\x06\x02"
                   34180:             "\xff\xff\x81\xc0\x40\xa0\x20\x48\x10\x44\x08\xc1\x64"
                   34181:             "\x80\x0f\x00" }  },
1.1       albertel 34182:       /* --- pixel bitmap for cmsy160 char#9 \ominus --- */
1.2       albertel 34183:       {   9,47175,                      /* character number, location */
                   34184:          13, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   34185:           { 15,   15, 3,53, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34186:             "\x55\x82\x52\x51\x91\x20\xf1\x11\xb1\x1f\x11\xd1\x0e"
                   34187:             "\x01\x0f\x11\xd1\xf1\x11\xb1\x10\x21\x91\x52\x52\x85"
                   34188:             "\x52" }  },
1.1       albertel 34189:       /* --- pixel bitmap for cmsy160 char#10 \otimes --- */
1.2       albertel 34190:       {  10,23692,                      /* character number, location */
                   34191:          13, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   34192:           { 15,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34193:             "\xe0\x03\x0c\x06\x01\x44\x01\x25\x41\x0a\x11\x06\x05"
                   34194:             "\x03\x81\x41\xc1\x10\xa1\x04\x49\x01\x45\x00\xc1\x60"
                   34195:             "\x80\x0f\x00" }  },
1.1       albertel 34196:       /* --- pixel bitmap for cmsy160 char#11 \oslash --- */
1.2       albertel 34197:       {  11,47958,                      /* character number, location */
                   34198:          13, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   34199:           { 15,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34200:             "\xe0\x03\x0c\x06\x01\x44\x00\x25\x40\x0a\x10\x06\x04"
                   34201:             "\x03\x81\x41\xc0\x10\xa0\x04\x48\x01\x44\x00\xc1\x60"
                   34202:             "\x80\x0f\x00" }  },
1.1       albertel 34203:       /* --- pixel bitmap for cmsy160 char#12 \odot --- */
1.2       albertel 34204:       {  12,48758,                      /* character number, location */
                   34205:          13, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   34206:           { 15,   15, 3,53, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34207:             "\x55\x82\x52\x51\x91\x20\xf1\x11\xb1\x11\xd1\x0f\x21"
                   34208:             "\x53\x51\x01\xd1\xf1\x11\xb1\x10\x21\x91\x52\x52\x85"
                   34209:             "\x51" }  },
1.1       albertel 34210:       /* --- pixel bitmap for cmsy160 char#13 \bigcirc --- */
1.2       albertel 34211:       {  13,49657,                      /* character number, location */
                   34212:          15, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   34213:           { 20,   19, 3,57, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34214:             "\x76\xb3\x63\x71\xc1\x51\xe1\x20\xf1\x11\xe0\x21\x1f"
                   34215:             "\x61\xe0\x41\xf1\x11\xe0\x21\x10\x21\xe1\x51\xc1\x73"
                   34216:             "\x63\xb6\x71" }  },
1.1       albertel 34217:       /* --- pixel bitmap for cmsy160 char#14 \circ --- */
1.2       albertel 34218:       {  14,50321,                      /* character number, location */
                   34219:          10, 1,    1, 1,      /* topleft row,col, and botleft row,col */
                   34220:           {  9,    9, 3,19, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34221:             "\x25\x31\x51\x1f\x41\x71\x11\x51\x35\x21" }  },
1.1       albertel 34222:       /* --- pixel bitmap for cmsy160 char#15 \bullet --- */
1.2       albertel 34223:       {  15,50936,                      /* character number, location */
                   34224:          10, 1,    1, 1,      /* topleft row,col, and botleft row,col */
                   34225:           {  9,    9, 3,13, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34226:             "\x25\x37\x1f\x49\x17\x35\x21" }  },
1.1       albertel 34227:       /* --- pixel bitmap for cmsy160 char#16 \asymp --- */
1.2       albertel 34228:       {  16,51636,                      /* character number, location */
                   34229:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   34230:           { 15,   11, 3,36, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34231:             "\x01\xd1\x12\x92\x42\x52\x85\x50\xf2\xe0\x10\x55\x82"
                   34232:             "\x52\x42\x92\x11\xd1" }  },
1.1       albertel 34233:       /* --- pixel bitmap for cmsy160 char#17 \equiv --- */
1.2       albertel 34234:       {  17,37713,                      /* character number, location */
                   34235:          12, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   34236:           { 15,   13, 3,20, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34237:             "\x0e\x01\xf4\xe0\x1e\x01\xf4\xe0\x1e\x01" }  },
1.1       albertel 34238:       /* --- pixel bitmap for cmsy160 char#18 \subseteq --- */
1.2       albertel 34239:       {  18,52381,                      /* character number, location */
                   34240:          14, 2,   -5, 2,      /* topleft row,col, and botleft row,col */
                   34241:           { 13,   19, 3,34, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34242:             "\x58\x32\xa1\xa0\xf1\x11\xbf\x21\xc0\xf1\x11\xb0\x21"
                   34243:             "\xd2\xd8\xf4\xdd" }  },
1.1       albertel 34244:       /* --- pixel bitmap for cmsy160 char#19 \supseteq --- */
1.2       albertel 34245:       {  19,53128,                      /* character number, location */
                   34246:          14, 2,   -5, 2,      /* topleft row,col, and botleft row,col */
                   34247:           { 13,   19, 3,36, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34248:             "\x08\xd2\xd1\x20\xf1\xb1\x10\xf2\xc1\xf1\xb1\x10\xa1"
                   34249:             "\xa2\x38\x50\xf4\xdd" }  },
1.1       albertel 34250:       /* --- pixel bitmap for cmsy160 char#20 \leq --- */
1.2       albertel 34251:       {  20,36255,                      /* character number, location */
                   34252:          14, 2,   -5, 2,      /* topleft row,col, and botleft row,col */
                   34253:           { 13,   19, 3,30, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34254:             "\xc1\xa2\x92\x92\x92\x92\x92\xc2\xd2\xd2\xd2\xd2\xd2"
                   34255:             "\xf4\xdd" }  },
1.1       albertel 34256:       /* --- pixel bitmap for cmsy160 char#21 \geq --- */
1.2       albertel 34257:       {  21,36976,                      /* character number, location */
                   34258:          14, 2,   -5, 2,      /* topleft row,col, and botleft row,col */
                   34259:           { 13,   19, 3,32, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34260:             "\x01\xd2\xd2\xd2\xd2\xd2\xd2\xa2\x92\x92\x92\x92\x92"
                   34261:             "\xb0\xf4\xdd" }  },
1.1       albertel 34262:       /* --- pixel bitmap for cmsy160 char#22 \preceq --- */
1.2       albertel 34263:       {  22,53843,                      /* character number, location */
                   34264:          14, 2,   -5, 2,      /* topleft row,col, and botleft row,col */
                   34265:           { 13,   19, 3,28, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34266:             "\xf2\xc1\xb1\xa2\x83\x46\xd3\xd2\xd1\x10\xf2\xc1\xf4"
                   34267:             "\xdd" }  },
1.1       albertel 34268:       /* --- pixel bitmap for cmsy160 char#23 \succeq --- */
1.2       albertel 34269:       {  23,54557,                      /* character number, location */
                   34270:          14, 2,   -5, 2,      /* topleft row,col, and botleft row,col */
                   34271:           { 13,   19, 3,30, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34272:             "\xf2\x01\xc0\x11\xd2\xd3\xd6\x43\x82\xa1\xbf\x21\xc0"
                   34273:             "\xf4\xdd" }  },
1.1       albertel 34274:       /* --- pixel bitmap for cmsy160 char#24 \sim --- */
1.2       albertel 34275:       {  24,55249,                      /* character number, location */
                   34276:           8, 1,    3, 1,      /* topleft row,col, and botleft row,col */
                   34277:           { 15,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34278:             "\x3c\x40\x33\xe0\x70\x38\x60\x16\xe0\x01" }  },
1.1       albertel 34279:       /* --- pixel bitmap for cmsy160 char#25 \approx --- */
1.2       albertel 34280:       {  25,56007,                      /* character number, location */
                   34281:          11, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   34282:           { 15,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34283:             "\x3c\x40\x33\xe0\x30\x30\x30\x1c\x30\x0b\xf0\xf0\x00"
                   34284:             "\xcd\x80\xc3\xc0\xc0\x70\xc0\x2c\xc0\x03" }  },
1.1       albertel 34285:       /* --- pixel bitmap for cmsy160 char#26 \subset --- */
1.2       albertel 34286:       {  26,32277,                      /* character number, location */
                   34287:          12, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   34288:           { 13,   13, 3,30, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34289:             "\x58\x32\xa1\xa0\xf1\x11\xbf\x21\xc0\xf1\x11\xb0\x21"
                   34290:             "\xd2\xd8" }  },
1.1       albertel 34291:       /* --- pixel bitmap for cmsy160 char#27 \supset --- */
1.2       albertel 34292:       {  27,32985,                      /* character number, location */
                   34293:          12, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   34294:           { 13,   13, 3,31, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34295:             "\x08\xd2\xd1\x20\xf1\xb1\x10\xf2\xc1\xf1\xb1\x10\xa1"
                   34296:             "\xa2\x38\x51" }  },
1.1       albertel 34297:       /* --- pixel bitmap for cmsy160 char#28 \ll --- */
1.2       albertel 34298:       {  28,56866,                      /* character number, location */
                   34299:          13, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   34300:           { 20,   15, 3,60, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34301:             "\xc1\x61\xa2\x52\x92\x52\xa1\x61\xa2\x52\x92\x52\x92"
                   34302:             "\x52\xa1\x61\xd2\x52\xd2\x52\xd1\x61\xd2\x52\xd2\x52"
                   34303:             "\xd2\x52\xd1\x61" }  },
1.1       albertel 34304:       /* --- pixel bitmap for cmsy160 char#29 \gg --- */
1.2       albertel 34305:       {  29,57724,                      /* character number, location */
                   34306:          13, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   34307:           { 20,   15, 3,61, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34308:             "\x01\x61\xd2\x52\xd2\x52\xd1\x61\xd2\x52\xd2\x52\xd2"
                   34309:             "\x52\xd1\x61\xa2\x52\x92\x52\xa1\x61\xa2\x52\x92\x52"
                   34310:             "\x92\x52\xa1\x61\xc2" }  },
1.1       albertel 34311:       /* --- pixel bitmap for cmsy160 char#30 \prec --- */
1.2       albertel 34312:       {  30,58429,                      /* character number, location */
                   34313:          12, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   34314:           { 13,   13, 3,24, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34315:             "\xf2\xc1\xb1\xa2\x83\x46\xd3\xd2\xd1\x10\xf2\xc1" }  },
1.1       albertel 34316:       /* --- pixel bitmap for cmsy160 char#31 \succ --- */
1.2       albertel 34317:       {  31,59099,                      /* character number, location */
                   34318:          12, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   34319:           { 13,   13, 3,25, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34320:             "\xf2\x01\xc0\x11\xd2\xd3\xd6\x43\x82\xa1\xbf\x21\xc2" }  },
1.1       albertel 34321:       /* --- pixel bitmap for cmsy160 char#32 \leftarrow --- */
1.2       albertel 34322:       {  32,29138,                      /* character number, location */
                   34323:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   34324:           { 20,   11, 3,45, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34325:             "\xf1\x41\xe0\x10\x32\xe0\x41\xe0\x41\xe0\x3e\x06\x21"
                   34326:             "\xe0\x61\xe0\x52\xe0\x10\xf1\x41\xe0\x10" }  },
1.1       albertel 34327:       /* --- pixel bitmap for cmsy160 char#33 \rightarrow --- */
1.2       albertel 34328:       {  33,30178,                      /* character number, location */
                   34329:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   34330:           { 20,   11, 3,45, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34331:             "\xf1\xe0\x11\x40\xe0\x12\xe0\x51\xe0\x61\x2e\x06\xe0"
                   34332:             "\x31\xe0\x41\xe0\x42\x30\xf1\xe0\x11\x40" }  },
1.1       albertel 34333:       /* --- pixel bitmap for cmsy160 char#34 \uparrow --- */
1.2       albertel 34334:       {  34,28075,                      /* character number, location */
                   34335:          15, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   34336:           {  9,   19, 3,27, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34337:             "\xf1\x41\x40\x33\x55\x32\x11\x12\x11\x31\x31\xfc\x41"
                   34338:             "\x41" }  },
1.1       albertel 34339:       /* --- pixel bitmap for cmsy160 char#35 \downarrow --- */
1.2       albertel 34340:       {  35,27248,                      /* character number, location */
                   34341:          15, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   34342:           {  9,   19, 3,27, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34343:             "\xfc\x41\x41\x31\x31\x12\x11\x12\x35\x53\x30\xf1\x41"
                   34344:             "\x41" }  },
1.1       albertel 34345:       /* --- pixel bitmap for cmsy160 char#36 \leftrightarrow --- */
1.2       albertel 34346:       {  36,31555,                      /* character number, location */
                   34347:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   34348:           { 20,   11, 3,45, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34349:             "\xf1\x41\xa1\x40\x32\xa2\x61\xc1\x51\xe1\x2e\x06\x21"
                   34350:             "\xe1\x51\xc1\x62\xa2\x30\xf1\x41\xa1\x40" }  },
1.1       albertel 34351:       /* --- pixel bitmap for cmsy160 char#37 \nearrow --- */
1.2       albertel 34352:       {  37,60143,                      /* character number, location */
                   34353:          15, 1,   -5, 1,      /* topleft row,col, and botleft row,col */
                   34354:           { 20,   20, 3,83, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34355:             "\xd3\x22\xe0\x42\xe0\x31\xe0\x41\xe0\x41\x31\xe1\x41"
                   34356:             "\xd1\x51\xc1\xe0\x41\xe0\x41\xe0\x41\xe0\x41\xe0\x41"
                   34357:             "\xe0\x41\xe0\x41\xe0\x41\xe0\x41\xe0\x41\xe0\x41\xe0"
                   34358:             "\x41\xe0\x53" }  },
1.1       albertel 34359:       /* --- pixel bitmap for cmsy160 char#38 \searrow --- */
1.2       albertel 34360:       {  38,61209,                      /* character number, location */
                   34361:          16, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   34362:           { 20,   20, 3,82, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34363:             "\x01\xe0\x61\xe0\x61\xe0\x61\xe0\x61\xe0\x61\xe0\x61"
                   34364:             "\xe0\x61\xe0\x61\xe0\x61\xe0\x61\xe0\x61\xe0\x61\xe0"
                   34365:             "\x61\x51\xe1\x41\xe0\x11\x31\xe0\x21\xe0\x61\xe0\x62"
                   34366:             "\xd3\x22" }  },
1.1       albertel 34367:       /* --- pixel bitmap for cmsy160 char#39 \simeq --- */
1.2       albertel 34368:       {  39,61955,                      /* character number, location */
                   34369:          10, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   34370:           { 15,   11, 3,32, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34371:             "\x24\x81\x12\x22\x73\x43\x43\x72\x22\x11\x84\x20\xf4"
                   34372:             "\xe0\x1e\x01" }  },
1.1       albertel 34373:       /* --- pixel bitmap for cmsy160 char#40 \Leftarrow --- */
1.2       albertel 34374:       {  40,62975,                      /* character number, location */
                   34375:          12, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   34376:           { 20,   13, 3,53, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34377:             "\x71\xe0\x41\xe0\x41\xe0\x4e\x02\x31\xe0\x20\xf1\x12"
                   34378:             "\xe0\x30\x31\xe0\x61\xe0\x6e\x01\x51\xe0\x61\xe0\x61"
                   34379:             "\xc1" }  },
1.1       albertel 34380:       /* --- pixel bitmap for cmsy160 char#41 \Rightarrow --- */
1.2       albertel 34381:       {  41,63992,                      /* character number, location */
                   34382:          12, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   34383:           { 19,   13, 3,51, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34384:             "\xc1\xe0\x51\xe0\x51\x4e\x02\xe0\x51\x20\xf1\xe0\x32"
                   34385:             "\xe0\x21\xe0\x31\x3e\x01\xe0\x41\xe0\x31\xe0\x31\x61" }  },
1.1       albertel 34386:       /* --- pixel bitmap for cmsy160 char#42 \Uparrow --- */
1.2       albertel 34387:       {  42,64824,                      /* character number, location */
                   34388:          14, 0,   -4, 0,      /* topleft row,col, and botleft row,col */
                   34389:           { 14,   18, 3,37, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34390:             "\xf1\x62\x60\x51\x21\x91\x41\x62\x62\x33\x63\x11\x21"
                   34391:             "\x61\x21\xfa\x31\x61\x31" }  },
1.1       albertel 34392:       /* --- pixel bitmap for cmsy160 char#43 \Downarrow --- */
1.2       albertel 34393:       {  43,65704,                      /* character number, location */
                   34394:          15, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   34395:           { 14,   18, 3,37, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34396:             "\xfa\x31\x61\x31\x21\x61\x21\x13\x63\x32\x62\x61\x41"
                   34397:             "\x91\x21\x50\xf1\x62\x61" }  },
1.1       albertel 34398:       /* --- pixel bitmap for cmsy160 char#44 \Leftrightarrow --- */
1.2       albertel 34399:       {  44,67004,                      /* character number, location */
                   34400:          12, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   34401:           { 18,   13, 3,49, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34402:             "\xf1\x41\x81\x40\x31\xa1\x5e\x32\xc2\x12\xe3\xe0\x21"
                   34403:             "\x11\xe1\x31\xc1\x5c\x61\xa1\x30\xf1\x41\x81\x41" }  },
1.1       albertel 34404:       /* --- pixel bitmap for cmsy160 char#45 \nwarrow --- */
1.2       albertel 34405:       {  45,68070,                      /* character number, location */
                   34406:          15, 0,   -5, 0,      /* topleft row,col, and botleft row,col */
                   34407:           { 21,   20, 3,84, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34408:             "\x12\x23\xe2\xe0\x71\xe0\x71\xe0\x31\x31\xe0\x21\x41"
                   34409:             "\xe0\x11\x51\xe0\x71\xe0\x71\xe0\x71\xe0\x71\xe0\x71"
                   34410:             "\xe0\x71\xe0\x71\xe0\x71\xe0\x71\xe0\x71\xe0\x71\xe0"
                   34411:             "\x71\xe0\x71" }  },
1.1       albertel 34412:       /* --- pixel bitmap for cmsy160 char#46 \swarrow --- */
1.2       albertel 34413:       {  46,69136,                      /* character number, location */
                   34414:          16, 0,   -4, 0,      /* topleft row,col, and botleft row,col */
                   34415:           { 21,   20, 3,85, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34416:             "\xe0\x61\xe0\x51\xe0\x51\xe0\x51\xe0\x51\xe0\x51\xe0"
                   34417:             "\x51\xe0\x51\xe0\x51\xe0\x51\xe0\x51\xe0\x51\xe0\x51"
                   34418:             "\xd1\x51\xe1\x41\xe0\x11\x31\xe0\x51\xe0\x51\xe0\x42"
                   34419:             "\xe0\x52\x23\xd3" }  },
1.1       albertel 34420:       /* --- pixel bitmap for cmsy160 char#47 \propto --- */
1.2       albertel 34421:       {  47,70214,                      /* character number, location */
                   34422:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   34423:           { 15,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34424:             "\x3c\x70\x21\x84\x20\x21\x60\x10\x30\x08\x18\x04\x0c"
                   34425:             "\x04\x09\x42\x08\x1e\x38" }  },
1.1       albertel 34426:       /* --- pixel bitmap for cmsy160 char#48 \prime --- */
1.2       albertel 34427:       {  48,70752,                      /* character number, location */
                   34428:          12, 1,    1, 1,      /* topleft row,col, and botleft row,col */
                   34429:           {  5,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34430:             "\x18\x23\xc6\x88\x11\x62\x04" }  },
1.1       albertel 34431:       /* --- pixel bitmap for cmsy160 char#49 \infty --- */
1.2       albertel 34432:       {  49,42594,                      /* character number, location */
                   34433:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   34434:           { 20,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34435:             "\x38\xc0\x61\x0c\x63\x02\x09\x14\x50\x80\x01\x06\x18"
                   34436:             "\x60\x80\x01\x0a\x28\x90\x40\xc6\x30\x86\x03\x1c" }  },
1.1       albertel 34437:       /* --- pixel bitmap for cmsy160 char#50 \in --- */
1.2       albertel 34438:       {  50,33648,                      /* character number, location */
                   34439:          12, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   34440:           { 11,   13, 3,30, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34441:             "\x56\x32\x81\x80\xf1\x11\x91\xac\xa0\xf1\x11\x90\x21"
                   34442:             "\xb2\xb6" }  },
1.1       albertel 34443:       /* --- pixel bitmap for cmsy160 char#51 \ni --- */
1.2       albertel 34444:       {  51,71413,                      /* character number, location */
                   34445:          12, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   34446:           { 11,   13, 3,31, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34447:             "\x06\xb2\xb1\x20\xf1\x91\x10\xac\xa1\xf1\x91\x10\x81"
                   34448:             "\x82\x36\x51" }  },
1.1       albertel 34449:       /* --- pixel bitmap for cmsy160 char#52 \triangle --- */
1.2       albertel 34450:       {  52,72163,                      /* character number, location */
                   34451:          15, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   34452:           { 17,   15, 3,60, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34453:             "\x81\x80\xf1\x71\x11\x70\xf1\x61\x31\x60\xf1\x51\x51"
                   34454:             "\x50\x41\x71\x40\xf1\x31\x91\x30\xf1\x21\xb1\x20\xf1"
                   34455:             "\x11\xd1\x1e\x03" }  },
1.1       albertel 34456:       /* --- pixel bitmap for cmsy160 char#53 \bigtriangledown --- */
1.2       albertel 34457:       {  53,72952,                      /* character number, location */
                   34458:          11, 2,   -4, 2,      /* topleft row,col, and botleft row,col */
                   34459:           { 17,   15, 3,61, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34460:             "\x0e\x03\xf1\x11\xd1\x10\xf1\x21\xb1\x20\xf1\x31\x91"
                   34461:             "\x30\x41\x71\x40\xf1\x51\x51\x50\xf1\x61\x31\x60\xf1"
                   34462:             "\x71\x11\x70\x81\x80" }  },
                   34463:       /* --- pixel bitmap for cmsy160 char#54 \boldslash --- */
                   34464:       {  54,73324,                      /* character number, location */
                   34465:          15, 3,   -4, 3,      /* topleft row,col, and botleft row,col */
                   34466:           { 11,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34467:             "\x00\x04\x10\x80\x00\x02\x10\x40\x00\x02\x08\x40\x00"
                   34468:             "\x01\x04\x20\x80\x00\x04\x10\x80\x00\x02\x10\x40\x00"
                   34469:             "\x00" }  },
                   34470:       /* --- pixel bitmap for cmsy160 char#55 \' --- */
                   34471:       {  55,73687,                      /* character number, location */
                   34472:          10, 1,    1, 1,      /* topleft row,col, and botleft row,col */
                   34473:           {  2,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34474:             "\x55\x57\x01" }  },
1.1       albertel 34475:       /* --- pixel bitmap for cmsy160 char#56 \forall --- */
1.2       albertel 34476:       {  56,34278,                      /* character number, location */
                   34477:          15, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   34478:           { 13,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34479:             "\x01\x30\x00\x0a\x20\x01\xc4\x7f\x08\x08\x82\x40\x10"
                   34480:             "\x08\x02\x22\x40\x04\x50\x00\x0a\x80\x00\x10\x00" }  },
1.1       albertel 34481:       /* --- pixel bitmap for cmsy160 char#57 \exists --- */
1.2       albertel 34482:       {  57,34927,                      /* character number, location */
                   34483:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   34484:           { 10,   15, 3,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34485:             "\x0a\xf5\x91\x0a\xf5\x91\x0a" }  },
1.1       albertel 34486:       /* --- pixel bitmap for cmsy160 char#58 \neg --- */
1.2       albertel 34487:       {  58,35553,                      /* character number, location */
                   34488:           8, 1,    1, 1,      /* topleft row,col, and botleft row,col */
                   34489:           { 13,    7, 3, 6, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34490:             "\x0d\xf5\xc1" }  },
1.1       albertel 34491:       /* --- pixel bitmap for cmsy160 char#59 \emptyset --- */
1.2       albertel 34492:       {  59,74396,                      /* character number, location */
                   34493:          17, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   34494:           {  9,   18, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34495:             "\x80\x00\xe1\x31\x26\x2c\x64\xc8\x90\x11\x23\x26\x4c"
                   34496:             "\x98\xb0\xa0\x21\x63\x3a\x04\x00" }  },
1.1       albertel 34497:       /* --- pixel bitmap for cmsy160 char#60 \Re --- */
1.2       albertel 34498:       {  60,76231,                      /* character number, location */
                   34499:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   34500:           { 15,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34501:             "\x0e\x8f\x68\x4e\x0c\x26\x06\x26\x03\xa3\x03\xd3\xc1"
                   34502:             "\xea\x1f\x75\x06\x39\x03\x8c\x01\xc6\x30\x63\x90\x60"
                   34503:             "\x3b\x60\x00" }  },
1.1       albertel 34504:       /* --- pixel bitmap for cmsy160 char#61 \Im --- */
1.2       albertel 34505:       {  61,77522,                      /* character number, location */
                   34506:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   34507:           { 14,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34508:             "\xf8\x80\xe1\x10\x70\x06\x70\x01\x40\x00\x67\x60\xe2"
                   34509:             "\x98\x00\x06\x00\x03\xc0\x1c\x60\x1c\x18\x1c\x03\x7c"
                   34510:             "\x00" }  },
1.1       albertel 34511:       /* --- pixel bitmap for cmsy160 char#62 \top --- */
1.2       albertel 34512:       {  62,78234,                      /* character number, location */
                   34513:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   34514:           { 15,   15, 3, 9, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34515:             "\x0e\x01\xfd\x71\x73" }  },
1.1       albertel 34516:       /* --- pixel bitmap for cmsy160 char#63 \bot --- */
1.2       albertel 34517:       {  63,78947,                      /* character number, location */
                   34518:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   34519:           { 15,   15, 3, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34520:             "\xfd\x71\x7e\x01" }  },
1.1       albertel 34521:       /* --- pixel bitmap for cmsy160 char#64 \aleph --- */
1.2       albertel 34522:       {  64,80178,                      /* character number, location */
                   34523:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   34524:           { 12,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34525:             "\x01\x31\x30\x02\x66\xe0\x0c\xca\x21\x34\x22\x26\xc2"
                   34526:             "\x22\x38\x02\x43\x60\x0c\xc4\xc0\x0f\x08" }  },
1.1       albertel 34527:       /* --- pixel bitmap for cmsy160 char#65 \calA --- */
1.2       albertel 34528:       {  65,  774,                      /* character number, location */
                   34529:          16, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
                   34530:           { 17,   17, 3,65, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34531:             "\xd2\x20\xf1\xc3\x20\xf1\xb1\x12\x20\xf1\xa1\x22\x20"
                   34532:             "\x91\x32\xa2\x32\xa1\x42\x91\x52\x8a\x71\x72\x61\x82"
                   34533:             "\x12\x22\x82\x15\x93\x13\xd0" }  },
1.1       albertel 34534:       /* --- pixel bitmap for cmsy160 char#66 \calB --- */
1.2       albertel 34535:       {  66, 1558,                      /* character number, location */
                   34536:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   34537:           { 14,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34538:             "\x30\x1f\x67\x8e\x07\xe3\xc1\x38\x18\x86\x81\x7d\x70"
                   34539:             "\x38\x0c\x1c\x03\xc6\x80\x19\x60\x06\x8c\x87\xb1\x1f"
                   34540:             "\x00" }  },
1.1       albertel 34541:       /* --- pixel bitmap for cmsy160 char#67 \calC --- */
1.2       albertel 34542:       {  67, 2247,                      /* character number, location */
                   34543:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   34544:           { 11,   15, 3,39, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34545:             "\x65\x42\x32\x32\x42\x22\x52\x12\x52\x10\xf1\x12\x8f"
                   34546:             "\x42\x93\x52\x23\x32\x45\x41" }  },
1.1       albertel 34547:       /* --- pixel bitmap for cmsy160 char#68 \calD --- */
1.2       albertel 34548:       {  68, 3035,                      /* character number, location */
                   34549:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   34550:           { 16,   15, 3,57, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34551:             "\x49\x52\x22\x34\x12\x32\x62\x12\x32\x63\xf2\x52\x72"
                   34552:             "\x42\x82\xf1\x42\x72\x10\x42\x62\x52\x62\x62\x52\x72"
                   34553:             "\x32\x77\x82" }  },
1.1       albertel 34554:       /* --- pixel bitmap for cmsy160 char#69 \calE --- */
1.2       albertel 34555:       {  69, 3740,                      /* character number, location */
                   34556:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   34557:           { 11,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34558:             "\xc0\x87\x31\x86\x19\xc0\x00\x0e\xe0\x03\x03\x0c\x30"
                   34559:             "\xc0\x00\x06\x30\x98\x63\xf8\x00" }  },
1.1       albertel 34560:       /* --- pixel bitmap for cmsy160 char#70 \calF --- */
1.2       albertel 34561:       {  70, 4498,                      /* character number, location */
                   34562:          15, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   34563:           { 18,   15, 3,47, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34564:             "\x7b\x52\x22\x52\x42\x32\xa2\x32\x80\xf2\x82\x80\x78"
                   34565:             "\xa2\x90\xf1\x62\xa0\xf1\x52\xb3\x12\xd4\xd2" }  },
1.1       albertel 34566:       /* --- pixel bitmap for cmsy160 char#71 \calG --- */
1.2       albertel 34567:       {  71, 5221,                      /* character number, location */
                   34568:          15, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   34569:           { 13,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34570:             "\xc0\x1f\x06\x63\x60\x06\x66\x60\x0c\xc0\x00\x18\x60"
                   34571:             "\x03\x6c\xc0\x0c\x98\x83\xe3\x38\xf8\x06\x60\x10\x06"
                   34572:             "\x7f\x00" }  },
1.1       albertel 34573:       /* --- pixel bitmap for cmsy160 char#72 \calH --- */
1.2       albertel 34574:       {  72, 6107,                      /* character number, location */
                   34575:          15, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   34576:           { 17,   16, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34577:             "\xf8\x80\x99\x81\x19\x03\x1b\x06\x06\x0c\x06\x0c\x0c"
                   34578:             "\x18\x18\x30\x18\xf8\x3f\x60\x60\xc0\xc0\x80\xc1\x00"
                   34579:             "\x83\x01\x03\x23\x06\x66\x04\x3c" }  },
1.1       albertel 34580:       /* --- pixel bitmap for cmsy160 char#73 \calI --- */
1.2       albertel 34581:       {  73, 6836,                      /* character number, location */
                   34582:          15, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   34583:           { 14,   15, 3,41, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34584:             "\x4a\x22\x42\x52\x52\x40\xf2\x72\x50\xf2\x62\x60\xf2"
                   34585:             "\x52\x70\x42\x51\x62\x42\x2a\x4b" }  },
1.1       albertel 34586:       /* --- pixel bitmap for cmsy160 char#74 \calJ --- */
1.2       albertel 34587:       {  74, 7538,                      /* character number, location */
                   34588:          15, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   34589:           { 18,   17, 3,53, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34590:             "\xa8\x82\x32\xa2\x42\x92\x42\x92\x52\x40\xf1\xb2\x50"
                   34591:             "\xf3\xa2\x60\x92\x91\x62\x72\x72\x73\x52\x93\x32\xb5"
                   34592:             "\xb1" }  },
1.1       albertel 34593:       /* --- pixel bitmap for cmsy160 char#75 \calK --- */
1.2       albertel 34594:       {  75, 8323,                      /* character number, location */
                   34595:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   34596:           { 16,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34597:             "\x30\x60\x3c\x9c\x18\x02\x98\x01\x58\x00\x38\x00\x38"
                   34598:             "\x00\x2c\x00\x4c\x00\x4c\x00\x8c\x00\x86\x00\x06\x81"
                   34599:             "\x06\x42\x03\x3c" }  },
1.1       albertel 34600:       /* --- pixel bitmap for cmsy160 char#76 \calL --- */
1.2       albertel 34601:       {  76, 9053,                      /* character number, location */
                   34602:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   34603:           { 14,   15, 3,45, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34604:             "\x84\x92\x13\x72\x32\x10\xf1\x52\x70\xf2\x42\x80\xf2"
                   34605:             "\x32\x90\x22\xc2\x82\x17\x32\x12\x45\x32" }  },
1.1       albertel 34606:       /* --- pixel bitmap for cmsy160 char#77 \calM --- */
1.2       albertel 34607:       {  77,10188,                      /* character number, location */
                   34608:          15, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   34609:           { 23,   16, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34610:             "\x80\x01\x40\xc0\x00\x30\x60\x00\x18\x38\x00\x0e\x3c"
                   34611:             "\x80\x07\x1a\xe0\x01\x0d\xd8\x40\x06\x66\x20\x87\x31"
                   34612:             "\x10\x63\x18\x84\x19\x0c\xc2\x07\x06\xc1\x01\x4b\x60"
                   34613:             "\x80\x3d\x00\xc0\x0f\x00\x00" }  },
1.1       albertel 34614:       /* --- pixel bitmap for cmsy160 char#78 \calN --- */
1.2       albertel 34615:       {  78,11119,                      /* character number, location */
                   34616:          17,-2,   -1,-2,      /* topleft row,col, and botleft row,col */
                   34617:           { 24,   18, 3,93, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34618:             "\xe0\x64\xe0\x55\x72\xa1\xb3\x91\x40\xf1\x73\x81\x50"
                   34619:             "\x74\x71\xb1\x22\x61\xc1\x23\x51\xc1\x32\x51\xc1\x33"
                   34620:             "\x41\x60\xf1\x51\x52\x31\x70\x51\x53\x21\xb1\x73\x11"
                   34621:             "\x72\x21\x83\x84\x93\x93\xe0\x60" }  },
1.1       albertel 34622:       /* --- pixel bitmap for cmsy160 char#79 \calO --- */
1.2       albertel 34623:       {  79,11986,                      /* character number, location */
                   34624:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   34625:           { 15,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34626:             "\x60\x1e\xd8\x1c\x36\x9c\x0d\x6c\x06\x36\x00\x0f\x80"
                   34627:             "\x07\xc0\x03\xb0\x01\xd8\x00\xe6\x00\x63\xc0\xf0\x18"
                   34628:             "\xe0\x03\x00" }  },
1.1       albertel 34629:       /* --- pixel bitmap for cmsy160 char#80 \calP --- */
1.2       albertel 34630:       {  80,12731,                      /* character number, location */
                   34631:          15, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   34632:           { 16,   16, 3,53, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34633:             "\x4a\x42\x22\x43\x12\x32\x65\x32\x72\xf1\x52\x72\x52"
                   34634:             "\x62\x52\x62\x62\x42\x86\xa2\xa0\xf2\x32\xb0\x22\xe1"
                   34635:             "\xd2" }  },
1.1       albertel 34636:       /* --- pixel bitmap for cmsy160 char#81 \calQ --- */
1.2       albertel 34637:       {  81,13550,                      /* character number, location */
                   34638:          15, 3,   -2, 3,      /* topleft row,col, and botleft row,col */
                   34639:           { 16,   17, 3,61, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34640:             "\x75\x92\x34\x52\x72\x42\x83\x10\xf1\x12\xa2\x1f\x12"
                   34641:             "\xb2\x1f\x12\xa2\x23\x82\x43\x32\x12\x65\x22\xc2\x77"
                   34642:             "\x81\x45\x42\x87\x25" }  },
1.1       albertel 34643:       /* --- pixel bitmap for cmsy160 char#82 \calR --- */
1.2       albertel 34644:       {  82,14401,                      /* character number, location */
                   34645:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   34646:           { 18,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34647:             "\xf0\x1f\x30\xe3\x31\x06\xc6\x18\x18\x60\x60\x80\xc1"
                   34648:             "\x00\x06\x03\x0c\x03\xb0\x03\xc0\x1c\x00\x63\x00\x86"
                   34649:             "\x03\x18\x0c\x63\x70\xc6\x80\x07" }  },
1.1       albertel 34650:       /* --- pixel bitmap for cmsy160 char#83 \calS --- */
1.2       albertel 34651:       {  83,15167,                      /* character number, location */
                   34652:          15, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   34653:           { 14,   15, 3,45, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34654:             "\x76\x62\x43\x42\x62\xf1\x42\x80\x43\xc4\xc4\xc3\x32"
                   34655:             "\x72\x2f\x12\x82\x23\x62\x43\x42\x66\x62" }  },
1.1       albertel 34656:       /* --- pixel bitmap for cmsy160 char#84 \calT --- */
1.2       albertel 34657:       {  84,15853,                      /* character number, location */
                   34658:          16, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   34659:           { 18,   18, 3,47, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34660:             "\xe0\x22\x3e\x22\x52\x82\x62\x82\x52\x90\xf2\x72\x90"
                   34661:             "\xf3\x62\xa0\xf2\x52\xb0\xf1\x42\xc0\x41\xd2" }  },
1.1       albertel 34662:       /* --- pixel bitmap for cmsy160 char#85 \calU --- */
1.2       albertel 34663:       {  85,16563,                      /* character number, location */
                   34664:          15, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   34665:           { 16,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34666:             "\x1e\xc0\x1b\x60\x18\x60\x18\x70\x0c\x30\x0c\x38\x06"
                   34667:             "\x38\x06\x1c\x06\x1e\x03\x1e\x03\x1b\x83\x0d\xc3\x0c"
                   34668:             "\x67\x0c\x1e\x1c" }  },
1.1       albertel 34669:       /* --- pixel bitmap for cmsy160 char#86 \calV --- */
1.2       albertel 34670:       {  86,17312,                      /* character number, location */
                   34671:          15, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   34672:           { 14,   16, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34673:             "\x07\x98\x03\xce\x01\x63\x80\x18\x20\x0e\x04\x03\xc1"
                   34674:             "\x20\x30\x0c\x8c\x01\x33\xc0\x06\xd8\x00\x1e\x80\x03"
                   34675:             "\x20\x00" }  },
1.1       albertel 34676:       /* --- pixel bitmap for cmsy160 char#87 \calW --- */
1.2       albertel 34677:       {  87,18313,                      /* character number, location */
                   34678:          15, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   34679:           { 22,   16, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34680:             "\x07\x18\xb0\x03\x0e\xce\x81\x03\x62\xd0\x80\x18\x34"
                   34681:             "\x20\x86\x1c\x84\x31\x06\x61\x84\x21\x98\x60\x08\x36"
                   34682:             "\x18\x81\x05\x6e\xe0\x00\x0f\x3c\xc0\x01\x07\x30\xc0"
                   34683:             "\x00\x0c\x10\x00\x01" }  },
1.1       albertel 34684:       /* --- pixel bitmap for cmsy160 char#88 \calX --- */
1.2       albertel 34685:       {  88,19150,                      /* character number, location */
                   34686:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   34687:           { 17,   15, 3,57, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34688:             "\x63\x53\x55\x52\x82\x52\x82\x42\x92\x22\xb2\x12\xc3"
                   34689:             "\xe2\xd5\xa2\x32\x92\x42\x72\x62\x62\x72\x62\x72\x12"
                   34690:             "\x33\x64\x42" }  },
1.1       albertel 34691:       /* --- pixel bitmap for cmsy160 char#89 \calY --- */
1.2       albertel 34692:       {  89,19911,                      /* character number, location */
                   34693:          15, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   34694:           { 15,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34695:             "\x3c\x30\x39\x20\x38\x10\x18\x08\x0c\x04\x0e\x01\x86"
                   34696:             "\x00\x23\x80\x11\xc0\x04\x60\x01\x70\x00\x18\x00\x04"
                   34697:             "\x04\x01\x44\x00\x1c\x00" }  },
1.1       albertel 34698:       /* --- pixel bitmap for cmsy160 char#90 \calZ --- */
1.2       albertel 34699:       {  90,20757,                      /* character number, location */
                   34700:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   34701:           { 17,   15, 3,49, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34702:             "\x75\x32\x52\x36\x52\x72\x61\x72\xe2\xe2\xb6\xd2\x21"
                   34703:             "\xb2\xe2\xe2\xe2\x72\x42\x92\x37\x42\x32\x47\x42" }  },
1.1       albertel 34704:       /* --- pixel bitmap for cmsy160 char#91 \cup --- */
1.2       albertel 34705:       {  91,24406,                      /* character number, location */
                   34706:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   34707:           { 13,   13, 3,17, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34708:             "\xf9\x01\xb1\x11\x91\x32\x52\x65\x41" }  },
1.1       albertel 34709:       /* --- pixel bitmap for cmsy160 char#92 \cap --- */
1.2       albertel 34710:       {  92,25087,                      /* character number, location */
                   34711:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   34712:           { 13,   13, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34713:             "\x45\x62\x52\x31\x91\x1f\x91\xb1" }  },
1.1       albertel 34714:       /* --- pixel bitmap for cmsy160 char#93 \uplus --- */
1.2       albertel 34715:       {  93,80935,                      /* character number, location */
                   34716:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   34717:           { 13,   13, 3,41, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34718:             "\xf1\x01\xb1\x0f\x31\x51\x51\x01\x19\x11\x0f\x21\x51"
                   34719:             "\x51\x11\x41\x41\x32\x52\x65\x42" }  },
1.1       albertel 34720:       /* --- pixel bitmap for cmsy160 char#94 \wedge --- */
1.2       albertel 34721:       {  94,25751,                      /* character number, location */
                   34722:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   34723:           { 13,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34724:             "\x40\x00\x14\x80\x02\x88\x00\x11\x10\x04\x82\x20\x20"
                   34725:             "\x04\x44\x00\x09\xa0\x00\x18\x00\x01" }  },
1.1       albertel 34726:       /* --- pixel bitmap for cmsy160 char#95 \vee --- */
1.2       albertel 34727:       {  95,26415,                      /* character number, location */
                   34728:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   34729:           { 13,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34730:             "\x01\x30\x00\x0a\x20\x01\x44\x40\x08\x08\x82\x40\x10"
                   34731:             "\x10\x01\x22\x80\x02\x50\x00\x04\x00" }  },
1.1       albertel 34732:       /* --- pixel bitmap for cmsy160 char#96 \vdash --- */
1.2       albertel 34733:       {  96,81586,                      /* character number, location */
                   34734:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   34735:           { 12,   15, 3,11, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34736:             "\xf6\x01\xbc\x0f\x61\xb1" }  },
1.1       albertel 34737:       /* --- pixel bitmap for cmsy160 char#97 \dashv --- */
1.2       albertel 34738:       {  97,82200,                      /* character number, location */
                   34739:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   34740:           { 12,   15, 3,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34741:             "\xf6\xb1\x0c\xf6\xb1" }  },
1.1       albertel 34742:       /* --- pixel bitmap for cmsy160 char#98 \lfloor --- */
1.2       albertel 34743:       {  98,82724,                      /* character number, location */
                   34744:          17, 4,   -6, 4,      /* topleft row,col, and botleft row,col */
                   34745:           {  6,   23, 3,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34746:             "\xfe\x01\x5f\x61\x56" }  },
1.1       albertel 34747:       /* --- pixel bitmap for cmsy160 char#99 \rfloor --- */
1.2       albertel 34748:       {  99,83265,                      /* character number, location */
                   34749:          17, 0,   -6, 0,      /* topleft row,col, and botleft row,col */
                   34750:           {  6,   23, 3,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34751:             "\xfe\x51\xf6\x51\x06" }  },
1.1       albertel 34752:       /* --- pixel bitmap for cmsy160 char#100 \lceil --- */
1.2       albertel 34753:       { 100,83807,                      /* character number, location */
                   34754:          17, 4,   -6, 4,      /* topleft row,col, and botleft row,col */
                   34755:           {  6,   23, 3,11, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34756:             "\x06\x0f\xe1\x5f\x61\x51" }  },
1.1       albertel 34757:       /* --- pixel bitmap for cmsy160 char#101 \rceil --- */
1.2       albertel 34758:       { 101,84350,                      /* character number, location */
                   34759:          17, 0,   -6, 0,      /* topleft row,col, and botleft row,col */
                   34760:           {  6,   23, 3,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34761:             "\x06\xfe\x51\xf6\x51" }  },
                   34762:       /* --- pixel bitmap for cmsy160 char#102 \lbrace --- */
                   34763:       { 102,40577,                      /* character number, location */
                   34764:          17, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   34765:           {  9,   23, 3,30, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34766:             "\x63\x51\x30\xf7\x41\x40\x31\x53\x91\x50\xf7\x41\x40"
                   34767:             "\x51\x93" }  },
                   34768:       /* --- pixel bitmap for cmsy160 char#103 \rbrace --- */
                   34769:       { 103,41426,                      /* character number, location */
                   34770:          17, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   34771:           {  9,   23, 3,31, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34772:             "\x03\x91\x50\xf7\x41\x40\x51\x93\x51\x30\xf7\x41\x40"
                   34773:             "\x31\x53\x61" }  },
1.1       albertel 34774:       /* --- pixel bitmap for cmsy160 char#104 \langle --- */
1.2       albertel 34775:       { 104,84864,                      /* character number, location */
                   34776:          17, 2,   -6, 2,      /* topleft row,col, and botleft row,col */
                   34777:           {  6,   23, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34778:             "\x20\x08\x41\x08\x42\x10\x82\x10\x04\x81\x20\x10\x04"
                   34779:             "\x82\x40\x10\x08\x02" }  },
1.1       albertel 34780:       /* --- pixel bitmap for cmsy160 char#105 \rangle --- */
1.2       albertel 34781:       { 105,85379,                      /* character number, location */
                   34782:          17, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   34783:           {  6,   23, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34784:             "\x41\x20\x08\x04\x81\x20\x10\x04\x82\x20\x04\x21\x08"
                   34785:             "\x41\x08\x42\x10\x00" }  },
1.1       albertel 34786:       /* --- pixel bitmap for cmsy160 char#106 \mid --- */
1.2       albertel 34787:       { 106,38677,                      /* character number, location */
                   34788:          17, 3,   -6, 3,      /* topleft row,col, and botleft row,col */
                   34789:           {  1,   23, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34790:             "\xff\xff\x7f" }  },
1.1       albertel 34791:       /* --- pixel bitmap for cmsy160 char#107 \parallel --- */
1.2       albertel 34792:       { 107,85984,                      /* character number, location */
                   34793:          17, 2,   -6, 2,      /* topleft row,col, and botleft row,col */
                   34794:           {  7,   23, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34795:             "\xfe\x01\x51\x0f\x71\x51" }  },
1.1       albertel 34796:       /* --- pixel bitmap for cmsy160 char#108 \updownarrow --- */
1.2       albertel 34797:       { 108,87194,                      /* character number, location */
                   34798:          17, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   34799:           {  9,   23, 3,49, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34800:             "\xf1\x41\x40\x33\x55\x32\x11\x12\x11\x31\x31\xfa\x41"
                   34801:             "\x41\x31\x31\x12\x11\x12\x35\x53\x30\xf1\x41\x41" }  },
1.1       albertel 34802:       /* --- pixel bitmap for cmsy160 char#109 \Updownarrow --- */
1.2       albertel 34803:       { 109,88283,                      /* character number, location */
                   34804:          16, 0,   -5, 0,      /* topleft row,col, and botleft row,col */
                   34805:           { 14,   21, 3,51, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34806:             "\x62\xb1\x21\x91\x41\x62\x62\x22\x11\x61\x12\xfa\x31"
                   34807:             "\x61\x32\x11\x61\x12\x22\x62\x61\x41\x91\x21\xb2\x60" }  },
1.1       albertel 34808:       /* --- pixel bitmap for cmsy160 char#110 \setminus --- */
1.2       albertel 34809:       { 110,38235,                      /* character number, location */
                   34810:          17, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   34811:           {  9,   23, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34812:             "\x01\x02\x08\x10\x20\x80\x00\x01\x04\x08\x10\x40\x80"
                   34813:             "\x00\x01\x04\x08\x10\x40\x80\x00\x02\x04\x08\x20\x40" }  },
1.1       albertel 34814:       /* --- pixel bitmap for cmsy160 char#111 \wr --- */
1.2       albertel 34815:       { 111,88798,                      /* character number, location */
                   34816:          13, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   34817:           {  4,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34818:             "\x47\x8c\xc8\x64\x32\x11\x23\x0e" }  },
1.1       albertel 34819:       /* --- pixel bitmap for cmsy160 char#112 \surd --- */
1.2       albertel 34820:       { 112,89654,                      /* character number, location */
                   34821:           1, 2,  -21, 2,      /* topleft row,col, and botleft row,col */
                   34822:           { 17,   22, 3,79, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34823:             "\xf1\xe0\x21\xf1\xe0\x11\x10\xf1\xe1\x20\xf1\xd1\x30"
                   34824:             "\xf1\xc1\x40\xb1\x71\x81\x53\x71\x91\x61\x60\xf1\x31"
                   34825:             "\x51\x70\xf1\x41\x31\x80\xf1\x51\x11\x90\x52\xe0\x21"
                   34826:             "\xa1" }  },
1.1       albertel 34827:       /* --- pixel bitmap for cmsy160 char#113 \amalg --- */
1.2       albertel 34828:       { 113,90854,                      /* character number, location */
                   34829:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   34830:           { 15,   15, 3,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34831:             "\x06\x36\xfc\x22\x72\x2e\x01" }  },
1.1       albertel 34832:       /* --- pixel bitmap for cmsy160 char#114 \nabla --- */
1.2       albertel 34833:       { 114,91796,                      /* character number, location */
                   34834:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   34835:           { 16,   15, 3,57, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34836:             "\x0e\x02\x1e\x22\xb1\x10\xf1\x22\x91\x20\xf1\x32\x71"
                   34837:             "\x30\xf1\x42\x51\x40\xf1\x52\x31\x50\xf1\x62\x11\x60"
                   34838:             "\xf1\x72\x71" }  },
                   34839:       /* --- pixel bitmap for cmsy160 char#115 \smallint --- */
                   34840:       { 115,43529,                      /* character number, location */
                   34841:          15, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   34842:           { 10,   19, 3,29, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34843:             "\x72\x71\x21\xf3\x61\x30\xf6\x51\x40\xf3\x41\x51\x21"
                   34844:             "\x72\x7f" }  },
1.1       albertel 34845:       /* --- pixel bitmap for cmsy160 char#116 \sqcup --- */
1.2       albertel 34846:       { 116,92476,                      /* character number, location */
                   34847:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   34848:           { 13,   13, 3, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34849:             "\xfb\x01\xb1\x0d" }  },
1.1       albertel 34850:       /* --- pixel bitmap for cmsy160 char#117 \sqcap --- */
1.2       albertel 34851:       { 117,93161,                      /* character number, location */
                   34852:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   34853:           { 13,   13, 3, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34854:             "\x0d\x0f\xb1\xb1" }  },
1.1       albertel 34855:       /* --- pixel bitmap for cmsy160 char#118 \sqsubseteq --- */
1.2       albertel 34856:       { 118,93918,                      /* character number, location */
                   34857:          14, 2,   -5, 2,      /* topleft row,col, and botleft row,col */
                   34858:           { 14,   19, 3,13, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34859:             "\x0e\x0f\xa1\xde\xf4\xed\x11" }  },
1.1       albertel 34860:       /* --- pixel bitmap for cmsy160 char#119 \sqsupseteq --- */
1.2       albertel 34861:       { 119,94657,                      /* character number, location */
                   34862:          14, 1,   -5, 1,      /* topleft row,col, and botleft row,col */
                   34863:           { 14,   19, 3,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34864:             "\x0e\xfa\xd1\x1d\xf4\xe0\x1d" }  },
1.1       albertel 34865:       /* --- pixel bitmap for cmsy160 char#120 \S --- */
1.2       albertel 34866:       { 120,95650,                      /* character number, location */
                   34867:          15, 2,   -4, 2,      /* topleft row,col, and botleft row,col */
                   34868:           {  6,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34869:             "\x9c\x18\x06\x81\xc0\x48\x61\x18\x4a\x0c\x04\x82\x61"
                   34870:             "\xe4\x00" }  },
1.1       albertel 34871:       /* --- pixel bitmap for cmsy160 char#121 \dag --- */
1.2       albertel 34872:       { 121,96456,                      /* character number, location */
                   34873:          15, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   34874:           {  9,   19, 3,11, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34875:             "\xf4\x41\x49\xfc\x41\x41" }  },
1.1       albertel 34876:       /* --- pixel bitmap for cmsy160 char#122 \ddag --- */
1.2       albertel 34877:       { 122,97439,                      /* character number, location */
                   34878:          15, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   34879:           {  9,   19, 3,25, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34880:             "\xf3\x41\x49\xf3\x41\x40\x90\xf3\x41\x49\xf3\x41\x41" }  },
1.1       albertel 34881:       /* --- pixel bitmap for cmsy160 char#123 \P --- */
1.2       albertel 34882:       { 123,98135,                      /* character number, location */
                   34883:          15, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   34884:           { 12,   19, 3,39, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34885:             "\x48\x25\x21\x36\x21\x2f\x37\x21\x20\x16\x21\x45\x21"
                   34886:             "\x63\x21\x20\xf8\x61\x21\x21" }  },
1.1       albertel 34887:       /* --- pixel bitmap for cmsy160 char#124 \clubsuit --- */
1.2       albertel 34888:       { 124,99087,                      /* character number, location */
                   34889:          15, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   34890:           { 15,   18, 3,49, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34891:             "\x63\xb5\x50\xf3\x47\x40\x55\x72\x15\x12\x3d\x1f\x3e"
                   34892:             "\x01\x15\x11\x15\x33\x21\x23\x91\x70\xf1\x63\x63" }  },
1.1       albertel 34893:       /* --- pixel bitmap for cmsy160 char#125 \Diamond --- */
1.2       albertel 34894:       { 125,99794,                      /* character number, location */
                   34895:          15, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   34896:           { 15,   18, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34897:             "\x80\x00\xa0\x00\x50\x00\x44\x00\x41\x80\x20\x20\x20"
                   34898:             "\x08\x20\x02\x60\x01\x10\x01\x04\x01\x01\x41\x80\x20"
                   34899:             "\x80\x08\x80\x02\x40\x01\x40\x00" }  },
1.1       albertel 34900:       /* --- pixel bitmap for cmsy160 char#126 \Heart --- */
1.2       albertel 34901:       { 126,100609,                     /* character number, location */
                   34902:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   34903:           { 15,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34904:             "\x3c\x1e\xa1\x50\x20\x30\x10\x18\x00\x0c\x00\x0a\x80"
                   34905:             "\x04\x40\x04\x10\x04\x04\x04\x01\x44\x00\x14\x00\x04"
                   34906:             "\x00\x02\x00" }  },
1.1       albertel 34907:       /* --- pixel bitmap for cmsy160 char#127 \spadesuit --- */
1.2       albertel 34908:       { 127,101486,                     /* character number, location */
                   34909:          15, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   34910:           { 15,   18, 3,51, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34911:             "\x71\x70\xf1\x63\x60\x55\x97\x79\x5b\x20\xf1\x1d\x1f"
                   34912:             "\x3e\x01\x15\x11\x15\x33\x21\x23\x91\x70\xf1\x63\x61" }  },
1.1       albertel 34913:       /* --- trailer  --- */
1.2       albertel 34914:       { -99, -999,  0,0,0,0, { 0,0,0,0, (pixbyte *)"\0" }  }
1.1       albertel 34915:    } ;
                   34916: 
                   34917: 
1.2       albertel 34918: /* --- size=5 for .180gf ---
                   34919:  * mf '\mode=preview; mag=magstep(-14.65037297372839890542); input cmsy10'
                   34920:  * --------------------------------------------------------------------- */
1.1       albertel 34921: /* --- fontdef for cmsy180 --- */
                   34922: static	chardef  cmsy180[] =
                   34923:    {
                   34924:       /* --- pixel bitmap for cmsy180 char#0 - --- */
1.2       albertel 34925:       {   0,21798,                      /* character number, location */
                   34926:           7, 2,    6, 2,      /* topleft row,col, and botleft row,col */
                   34927:           { 15,    1, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34928:             "\xff\x7f" }  },
1.1       albertel 34929:       /* --- pixel bitmap for cmsy180 char#1 \cdot --- */
1.2       albertel 34930:       {   1,39702,                      /* character number, location */
                   34931:           8, 2,    5, 2,      /* topleft row,col, and botleft row,col */
                   34932:           {  3,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34933:             "\xba\x00" }  },
1.1       albertel 34934:       /* --- pixel bitmap for cmsy180 char#2 \times --- */
1.2       albertel 34935:       {   2,44792,                      /* character number, location */
                   34936:          13, 4,    0, 4,      /* topleft row,col, and botleft row,col */
                   34937:           { 11,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34938:             "\x01\x14\x10\x41\x08\x81\x08\x28\x80\x00\x0a\x88\x20"
                   34939:             "\x04\x41\x04\x14\x40" }  },
1.1       albertel 34940:       /* --- pixel bitmap for cmsy180 char#3 \ast --- */
1.2       albertel 34941:       {   3,45441,                      /* character number, location */
                   34942:          12, 1,    1, 1,      /* topleft row,col, and botleft row,col */
                   34943:           {  9,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34944:             "\x30\x60\xc8\xb4\xcd\x0f\x06\x3f\xdb\x32\x61\xc0\x00" }  },
1.1       albertel 34945:       /* --- pixel bitmap for cmsy180 char#4 \div --- */
1.2       albertel 34946:       {   4,46312,                      /* character number, location */
                   34947:          14, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   34948:           { 17,   15, 3,37, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34949:             "\x81\xe0\x13\xe0\x11\x80\xf3\xe0\x3e\x03\xf3\xe0\x30"
                   34950:             "\x81\xe0\x13\xe0\x11\x81" }  },
1.1       albertel 34951:       /* --- pixel bitmap for cmsy180 char#5 \diamond --- */
1.2       albertel 34952:       {   5,40267,                      /* character number, location */
                   34953:          12, 1,    1, 1,      /* topleft row,col, and botleft row,col */
                   34954:           { 11,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34955:             "\x20\x80\x02\x22\x08\x22\xa0\x00\x0a\x88\x20\x88\x80"
1.1       albertel 34956:             "\x02\x08\x00" }  },
                   34957:       /* --- pixel bitmap for cmsy180 char#6 \pm --- */
1.2       albertel 34958:       {   6,22495,                      /* character number, location */
                   34959:          17, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   34960:           { 17,   17, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34961:             "\xf7\x81\x8e\x03\xf6\x81\x8e\x03" }  },
1.1       albertel 34962:       /* --- pixel bitmap for cmsy180 char#7 \mp --- */
1.2       albertel 34963:       {   7,47025,                      /* character number, location */
                   34964:          13, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   34965:           { 17,   17, 3,17, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34966:             "\x0e\x03\xf6\x81\x8e\x03\xf7\x81\x8e" }  },
1.1       albertel 34967:       /* --- pixel bitmap for cmsy180 char#8 \oplus --- */
1.2       albertel 34968:       {   8,23256,                      /* character number, location */
                   34969:          15, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   34970:           { 17,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34971:             "\xc0\x07\x60\x32\x20\x84\x20\x08\x22\x10\x48\x20\x50"
                   34972:             "\x40\xc0\x80\x80\xff\xff\x03\x02\x06\x04\x14\x08\x24"
                   34973:             "\x10\x88\x20\x08\x42\x08\x98\x0c\xc0\x07\x00" }  },
1.1       albertel 34974:       /* --- pixel bitmap for cmsy180 char#9 \ominus --- */
1.2       albertel 34975:       {   9,47787,                      /* character number, location */
                   34976:          15, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   34977:           { 17,   17, 3,65, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34978:             "\x65\xa2\x52\x71\x91\x51\xb1\x20\xf1\x11\xd1\x1f\x11"
                   34979:             "\xe0\x11\x0e\x03\x0f\x11\xe0\x11\xf1\x11\xd1\x10\x21"
                   34980:             "\xb1\x51\x91\x72\x52\xa5\x61" }  },
1.1       albertel 34981:       /* --- pixel bitmap for cmsy180 char#10 \otimes --- */
1.2       albertel 34982:       {  10,24074,                      /* character number, location */
                   34983:          15, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   34984:           { 17,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34985:             "\xc0\x07\x60\x30\x20\x80\x60\x00\x23\x01\x49\x04\x51"
                   34986:             "\x10\xc1\x40\x81\x01\x01\x03\x05\x06\x11\x14\x41\x24"
                   34987:             "\x01\x89\x01\x0c\x02\x08\x18\x0c\xc0\x07\x00" }  },
1.1       albertel 34988:       /* --- pixel bitmap for cmsy180 char#11 \oslash --- */
1.2       albertel 34989:       {  11,48578,                      /* character number, location */
                   34990:          15, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   34991:           { 17,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34992:             "\xc0\x07\x60\x30\x20\x80\x20\x00\x23\x00\x49\x00\x51"
                   34993:             "\x00\xc1\x00\x81\x01\x01\x03\x01\x06\x01\x14\x01\x24"
                   34994:             "\x01\x88\x01\x08\x02\x08\x18\x0c\xc0\x07\x00" }  },
1.1       albertel 34995:       /* --- pixel bitmap for cmsy180 char#12 \odot --- */
1.2       albertel 34996:       {  12,49386,                      /* character number, location */
                   34997:          15, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   34998:           { 17,   17, 3,65, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   34999:             "\x65\xa2\x52\x71\x91\x51\xb1\x20\xf1\x11\xd1\x11\xe0"
                   35000:             "\x11\x0f\x21\x63\x61\x01\xe0\x11\xf1\x11\xd1\x10\x21"
                   35001:             "\xb1\x51\x91\x72\x52\xa5\x61" }  },
1.1       albertel 35002:       /* --- pixel bitmap for cmsy180 char#13 \bigcirc --- */
1.2       albertel 35003:       {  13,50293,                      /* character number, location */
                   35004:          18, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   35005:           { 23,   24, 3,93, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35006:             "\x95\xe0\x13\x53\xb1\xb1\x91\xd1\x71\xe0\x11\x30\xf1"
                   35007:             "\x21\xe0\x31\x20\xf1\x11\xe0\x51\x1f\x51\xe0\x71\xf1"
                   35008:             "\x11\xe0\x51\x10\xf1\x21\xe0\x31\x20\x31\xe0\x11\x71"
                   35009:             "\xd1\x91\xb1\xb3\x53\xe0\x15\x92" }  },
1.1       albertel 35010:       /* --- pixel bitmap for cmsy180 char#14 \circ --- */
1.2       albertel 35011:       {  14,50977,                      /* character number, location */
                   35012:          11, 1,    1, 1,      /* topleft row,col, and botleft row,col */
                   35013:           { 10,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35014:             "\x78\x10\x22\x50\x80\x01\x06\x18\xa0\x40\x84\xe0\x01" }  },
1.1       albertel 35015:       /* --- pixel bitmap for cmsy180 char#15 \bullet --- */
1.2       albertel 35016:       {  15,51596,                      /* character number, location */
                   35017:          11, 1,    1, 1,      /* topleft row,col, and botleft row,col */
                   35018:           { 10,   10, 3,17, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35019:             "\x34\x56\x38\x1f\x3a\x18\x36\x54\x31" }  },
1.1       albertel 35020:       /* --- pixel bitmap for cmsy180 char#16 \asymp --- */
1.2       albertel 35021:       {  16,52298,                      /* character number, location */
                   35022:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   35023:           { 17,   13, 3,48, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35024:             "\x01\xe0\x11\x11\xd1\x32\x92\x62\x52\xa5\x60\xf2\xe0"
                   35025:             "\x30\x65\xa2\x52\x62\x92\x31\xd1\x11\xe0\x11" }  },
1.1       albertel 35026:       /* --- pixel bitmap for cmsy180 char#17 \equiv --- */
1.2       albertel 35027:       {  17,38209,                      /* character number, location */
                   35028:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   35029:           { 17,   13, 3,20, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35030:             "\x0e\x03\xf4\xe0\x3e\x03\xf4\xe0\x3e\x03" }  },
1.1       albertel 35031:       /* --- pixel bitmap for cmsy180 char#18 \subseteq --- */
1.2       albertel 35032:       {  18,53051,                      /* character number, location */
                   35033:          16, 2,   -5, 2,      /* topleft row,col, and botleft row,col */
                   35034:           { 15,   21, 3,42, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35035:             "\x5a\x32\xc1\xc0\xf1\x11\xdf\x41\xe0\xf1\x11\xd0\x21"
                   35036:             "\xe0\x12\xe0\x1a\xf4\xe0\x1e\x01" }  },
1.1       albertel 35037:       /* --- pixel bitmap for cmsy180 char#19 \supseteq --- */
1.2       albertel 35038:       {  19,53802,                      /* character number, location */
                   35039:          16, 2,   -5, 2,      /* topleft row,col, and botleft row,col */
                   35040:           { 15,   21, 3,44, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35041:             "\x0a\xe0\x12\xe0\x11\x20\xf1\xd1\x10\xf4\xe1\xf1\xd1"
                   35042:             "\x10\xc1\xc2\x3a\x50\xf4\xe0\x1e\x01" }  },
1.1       albertel 35043:       /* --- pixel bitmap for cmsy180 char#20 \leq --- */
1.2       albertel 35044:       {  20,36743,                      /* character number, location */
                   35045:          16, 2,   -5, 2,      /* topleft row,col, and botleft row,col */
                   35046:           { 15,   21, 3,50, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35047:             "\xe1\xc2\xb2\xb2\xb2\xb2\xb2\xb2\xe2\xe0\x12\xe0\x12"
                   35048:             "\xe0\x12\xe0\x12\xe0\x12\xe0\x12\xf4\xe0\x1e\x01" }  },
1.1       albertel 35049:       /* --- pixel bitmap for cmsy180 char#21 \geq --- */
1.2       albertel 35050:       {  21,37468,                      /* character number, location */
                   35051:          16, 2,   -5, 2,      /* topleft row,col, and botleft row,col */
                   35052:           { 15,   21, 3,54, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35053:             "\x01\xe0\x12\xe0\x12\xe0\x12\xe0\x12\xe0\x12\xe0\x12"
                   35054:             "\xe0\x12\xc2\xb2\xb2\xb2\xb2\xb2\xb2\xd0\xf4\xe0\x1e"
                   35055:             "\x01" }  },
1.1       albertel 35056:       /* --- pixel bitmap for cmsy180 char#22 \preceq --- */
1.2       albertel 35057:       {  22,54521,                      /* character number, location */
                   35058:          16, 2,   -5, 2,      /* topleft row,col, and botleft row,col */
                   35059:           { 15,   21, 3,50, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35060:             "\xf1\xe1\xf1\xd1\x10\xc1\xc2\xa3\x57\xe0\x13\xe0\x12"
                   35061:             "\xe0\x11\x20\xf1\xd1\x10\xf1\xe1\xf4\xe0\x1e\x01" }  },
1.1       albertel 35062:       /* --- pixel bitmap for cmsy180 char#23 \succeq --- */
1.2       albertel 35063:       {  23,55239,                      /* character number, location */
                   35064:          16, 2,   -5, 2,      /* topleft row,col, and botleft row,col */
                   35065:           { 15,   21, 3,52, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35066:             "\xf1\x01\xe0\xf1\x11\xd0\x21\xe0\x12\xe0\x13\xe0\x17"
                   35067:             "\x53\xa2\xc1\xc0\xf1\x11\xdf\x11\xe0\xf4\xe0\x1e\x01" }  },
1.1       albertel 35068:       /* --- pixel bitmap for cmsy180 char#24 \sim --- */
1.2       albertel 35069:       {  24,55935,                      /* character number, location */
                   35070:           9, 1,    3, 1,      /* topleft row,col, and botleft row,col */
                   35071:           { 17,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35072:             "\x7c\x00\x8d\x01\x0a\x06\x1e\x18\x14\x60\x2c\x80\x0f" }  },
1.1       albertel 35073:       /* --- pixel bitmap for cmsy180 char#25 \approx --- */
1.2       albertel 35074:       {  25,56699,                      /* character number, location */
                   35075:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   35076:           { 17,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35077:             "\x7c\x00\x8d\x01\x0a\x06\x1e\x18\x14\x60\x2c\x80\x0f"
                   35078:             "\x1f\x40\x63\x80\x82\x81\x07\x06\x05\x18\x0b\xe0\x03" }  },
1.1       albertel 35079:       /* --- pixel bitmap for cmsy180 char#26 \subset --- */
1.2       albertel 35080:       {  26,32763,                      /* character number, location */
                   35081:          14, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   35082:           { 15,   15, 3,34, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35083:             "\x5a\x32\xc1\xc0\xf1\x11\xdf\x41\xe0\xf1\x11\xd0\x21"
                   35084:             "\xe0\x12\xe0\x1a" }  },
1.1       albertel 35085:       /* --- pixel bitmap for cmsy180 char#27 \supset --- */
1.2       albertel 35086:       {  27,33475,                      /* character number, location */
                   35087:          14, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   35088:           { 15,   15, 3,35, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35089:             "\x0a\xe0\x12\xe0\x11\x20\xf1\xd1\x10\xf4\xe1\xf1\xd1"
                   35090:             "\x10\xc1\xc2\x3a\x51" }  },
1.1       albertel 35091:       /* --- pixel bitmap for cmsy180 char#28 \ll --- */
1.2       albertel 35092:       {  28,57558,                      /* character number, location */
                   35093:          15, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   35094:           { 23,   17, 3,84, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35095:             "\xe1\x71\xc2\x62\xb2\x62\xb2\x62\xc1\x71\xc2\x62\xb2"
                   35096:             "\x62\xb2\x62\xc1\x71\xe0\x12\x62\xe0\x12\x62\xe0\x12"
                   35097:             "\x62\xe0\x11\x71\xe0\x12\x62\xe0\x12\x62\xe0\x12\x62"
                   35098:             "\xe0\x11\x71" }  },
1.1       albertel 35099:       /* --- pixel bitmap for cmsy180 char#29 \gg --- */
1.2       albertel 35100:       {  29,58424,                      /* character number, location */
                   35101:          15, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   35102:           { 23,   17, 3,85, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35103:             "\x01\x71\xe0\x12\x62\xe0\x12\x62\xe0\x12\x62\xe0\x11"
                   35104:             "\x71\xe0\x12\x62\xe0\x12\x62\xe0\x12\x62\xe0\x11\x71"
                   35105:             "\xc2\x62\xb2\x62\xb2\x62\xc1\x71\xc2\x62\xb2\x62\xb2"
                   35106:             "\x62\xc1\x71\xe3" }  },
1.1       albertel 35107:       /* --- pixel bitmap for cmsy180 char#30 \prec --- */
1.2       albertel 35108:       {  30,59137,                      /* character number, location */
                   35109:          13, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
                   35110:           { 15,   15, 3,42, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35111:             "\xf1\xe1\xf1\xd1\x10\xc1\xc2\xa3\x57\xe0\x13\xe0\x12"
                   35112:             "\xe0\x11\x20\xf1\xd1\x10\xf1\xe1" }  },
1.1       albertel 35113:       /* --- pixel bitmap for cmsy180 char#31 \succ --- */
1.2       albertel 35114:       {  31,59811,                      /* character number, location */
                   35115:          13, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
                   35116:           { 15,   15, 3,43, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35117:             "\xf1\x01\xe0\xf1\x11\xd0\x21\xe0\x12\xe0\x13\xe0\x17"
                   35118:             "\x53\xa2\xc1\xc0\xf1\x11\xdf\x11\xe2" }  },
1.1       albertel 35119:       /* --- pixel bitmap for cmsy180 char#32 \leftarrow --- */
1.2       albertel 35120:       {  32,29608,                      /* character number, location */
                   35121:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   35122:           { 23,   13, 3,57, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35123:             "\x61\xe0\x20\xf1\x51\xe0\x30\x41\xe0\x71\xe0\x71\xe0"
                   35124:             "\x6e\x09\x21\xe0\x91\xe0\x91\xe0\x40\xf1\x51\xe0\x30"
                   35125:             "\x61\xe0\x21" }  },
1.1       albertel 35126:       /* --- pixel bitmap for cmsy180 char#33 \rightarrow --- */
1.2       albertel 35127:       {  33,30652,                      /* character number, location */
                   35128:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   35129:           { 23,   13, 3,57, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35130:             "\xe0\x21\x60\xf1\xe0\x31\x50\xe0\x41\xe0\x91\xe0\x91"
                   35131:             "\x2e\x09\xe0\x61\xe0\x71\xe0\x71\x40\xf1\xe0\x31\x50"
                   35132:             "\xe0\x21\x61" }  },
1.1       albertel 35133:       /* --- pixel bitmap for cmsy180 char#34 \uparrow --- */
1.2       albertel 35134:       {  34,28535,                      /* character number, location */
                   35135:          17, 1,   -5, 1,      /* topleft row,col, and botleft row,col */
                   35136:           { 11,   22, 3,31, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35137:             "\xf2\x51\x50\x43\x71\x11\x11\x51\x21\x21\x22\x31\x32"
                   35138:             "\xfe\x51\x51" }  },
1.1       albertel 35139:       /* --- pixel bitmap for cmsy180 char#35 \downarrow --- */
1.2       albertel 35140:       {  35,27698,                      /* character number, location */
                   35141:          17, 1,   -5, 1,      /* topleft row,col, and botleft row,col */
                   35142:           { 11,   22, 3,31, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35143:             "\xfe\x51\x52\x31\x32\x21\x21\x21\x51\x11\x11\x73\x40"
                   35144:             "\xf2\x51\x51" }  },
1.1       albertel 35145:       /* --- pixel bitmap for cmsy180 char#36 \leftrightarrow --- */
1.2       albertel 35146:       {  36,32033,                      /* character number, location */
                   35147:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   35148:           { 23,   13, 3,65, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35149:             "\x61\x91\x60\xf1\x51\xb1\x50\x41\xd1\x71\xe0\x11\x51"
                   35150:             "\xe0\x31\x2e\x09\x21\xe0\x31\x51\xe0\x11\x71\xd1\x40"
                   35151:             "\xf1\x51\xb1\x50\x61\x91\x61" }  },
1.1       albertel 35152:       /* --- pixel bitmap for cmsy180 char#37 \nearrow --- */
1.2       albertel 35153:       {  37,60859,                      /* character number, location */
                   35154:          17, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   35155:           { 23,   23, 3,103, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   35156:             "\xe2\x52\xe0\x27\xe0\x62\xe0\x61\x11\xe0\x51\x21\xe0"
                   35157:             "\x41\x31\xe0\x31\x41\xe0\x21\x61\xe1\x71\xd1\xe0\x71"
                   35158:             "\xe0\x71\xe0\x71\xe0\x71\xe0\x71\xe0\x71\xe0\x71\xe0"
                   35159:             "\x71\xe0\x71\xe0\x71\xe0\x71\xe0\x71\xe0\x71\xe0\x80" }  },
1.1       albertel 35160:       /* --- pixel bitmap for cmsy180 char#38 \searrow --- */
1.2       albertel 35161:       {  38,61937,                      /* character number, location */
                   35162:          18, 1,   -5, 1,      /* topleft row,col, and botleft row,col */
                   35163:           { 23,   23, 3,102, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   35164:             "\x01\xe0\x91\xe0\x91\xe0\x91\xe0\x91\xe0\x91\xe0\x91"
                   35165:             "\xe0\x91\xe0\x91\xe0\x91\xe0\x91\xe0\x91\xe0\x91\xe0"
                   35166:             "\x91\xe0\x91\x71\xe0\x11\x61\xe0\x21\x41\xe0\x41\x31"
                   35167:             "\xe0\x51\x21\xe0\x61\x11\xe0\x72\xe0\x37\xe2\x52" }  },
1.1       albertel 35168:       /* --- pixel bitmap for cmsy180 char#39 \simeq --- */
1.2       albertel 35169:       {  39,62695,                      /* character number, location */
                   35170:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   35171:           { 17,   12, 3,40, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35172:             "\x25\x91\x12\x32\x81\x11\x52\x64\x62\x51\x11\x82\x32"
                   35173:             "\x11\x95\x20\xf4\xe0\x3e\x03" }  },
1.1       albertel 35174:       /* --- pixel bitmap for cmsy180 char#40 \Leftarrow --- */
1.2       albertel 35175:       {  40,63721,                      /* character number, location */
                   35176:          14, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   35177:           { 23,   15, 3,57, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35178:             "\xf1\x81\xe0\x71\xe0\x71\xe0\x7e\x04\x41\xe0\x62\xe0"
                   35179:             "\x52\xe0\x92\xe0\x91\xe0\x9e\x04\x61\xe0\x91\xe0\x10"
                   35180:             "\xf1\x81\xe1" }  },
1.1       albertel 35181:       /* --- pixel bitmap for cmsy180 char#41 \Rightarrow --- */
1.2       albertel 35182:       {  41,64742,                      /* character number, location */
                   35183:          14, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   35184:           { 23,   15, 3,57, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35185:             "\xf1\xe1\x80\xe0\x11\xe0\x91\x6e\x04\xe0\x91\xe0\x92"
                   35186:             "\xe0\x92\xe0\x52\xe0\x61\x4e\x04\xe0\x71\xe0\x71\x70"
                   35187:             "\xf1\xe1\x81" }  },
1.1       albertel 35188:       /* --- pixel bitmap for cmsy180 char#42 \Uparrow --- */
1.2       albertel 35189:       {  42,65578,                      /* character number, location */
                   35190:          17, 0,   -5, 0,      /* topleft row,col, and botleft row,col */
                   35191:           { 15,   22, 3,49, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35192:             "\xf1\x71\x70\xf1\x61\x11\x60\x51\x31\x91\x51\x72\x52"
                   35193:             "\x51\x11\x51\x11\x22\x21\x51\x22\xfc\x41\x51\x41" }  },
1.1       albertel 35194:       /* --- pixel bitmap for cmsy180 char#43 \Downarrow --- */
1.2       albertel 35195:       {  43,66478,                      /* character number, location */
                   35196:          17, 0,   -5, 0,      /* topleft row,col, and botleft row,col */
                   35197:           { 15,   22, 3,49, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35198:             "\xfc\x41\x51\x42\x21\x51\x22\x21\x11\x51\x11\x52\x52"
                   35199:             "\x71\x51\x91\x31\x50\xf1\x61\x11\x60\xf1\x71\x71" }  },
1.1       albertel 35200:       /* --- pixel bitmap for cmsy180 char#44 \Leftrightarrow --- */
1.2       albertel 35201:       {  44,67798,                      /* character number, location */
                   35202:          14, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
                   35203:           { 25,   15, 3,75, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35204:             "\x71\x91\x70\xf1\x61\xb1\x60\x51\xd1\x9e\x03\x71\xe0"
                   35205:             "\x31\x51\xe0\x51\x22\xe0\x72\x21\xe0\x51\x51\xe0\x31"
                   35206:             "\x7e\x03\x91\xd1\x50\xf1\x61\xb1\x60\x71\x91\x71" }  },
1.1       albertel 35207:       /* --- pixel bitmap for cmsy180 char#45 \nwarrow --- */
1.2       albertel 35208:       {  45,68872,                      /* character number, location */
                   35209:          17, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   35210:           { 23,   23, 3,102, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   35211:             "\x02\x52\xe7\xe0\x32\xe0\x71\x11\xe0\x61\x21\xe0\x51"
                   35212:             "\x31\xe0\x41\x41\xe0\x21\x61\xe0\x11\x71\xe0\x91\xe0"
                   35213:             "\x91\xe0\x91\xe0\x91\xe0\x91\xe0\x91\xe0\x91\xe0\x91"
                   35214:             "\xe0\x91\xe0\x91\xe0\x91\xe0\x91\xe0\x91\xe0\x91" }  },
1.1       albertel 35215:       /* --- pixel bitmap for cmsy180 char#46 \swarrow --- */
1.2       albertel 35216:       {  46,69950,                      /* character number, location */
                   35217:          18, 1,   -5, 1,      /* topleft row,col, and botleft row,col */
                   35218:           { 23,   23, 3,103, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   35219:             "\xe0\x81\xe0\x71\xe0\x71\xe0\x71\xe0\x71\xe0\x71\xe0"
                   35220:             "\x71\xe0\x71\xe0\x71\xe0\x71\xe0\x71\xe0\x71\xe0\x71"
                   35221:             "\xe0\x71\xd1\x71\xe1\x61\xe0\x21\x41\xe0\x31\x31\xe0"
                   35222:             "\x41\x21\xe0\x51\x11\xe0\x62\xe0\x67\xe0\x22\x52\xe0" }  },
1.1       albertel 35223:       /* --- pixel bitmap for cmsy180 char#47 \propto --- */
1.2       albertel 35224:       {  47,71040,                      /* character number, location */
                   35225:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   35226:           { 16,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35227:             "\x78\xe0\xec\x30\x82\x09\x01\x0f\x01\x07\x01\x06\x01"
                   35228:             "\x0e\x01\x0f\x02\x19\xc6\x70\x78\xe0" }  },
1.1       albertel 35229:       /* --- pixel bitmap for cmsy180 char#48 \prime --- */
1.2       albertel 35230:       {  48,71582,                      /* character number, location */
                   35231:          14, 1,    1, 1,      /* topleft row,col, and botleft row,col */
                   35232:           {  6,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35233:             "\x10\x8e\x73\x1c\xc7\x38\x8e\x61\x0c\x03" }  },
1.1       albertel 35234:       /* --- pixel bitmap for cmsy180 char#49 \infty --- */
1.2       albertel 35235:       {  49,43134,                      /* character number, location */
                   35236:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   35237:           { 23,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35238:             "\x78\x00\x0f\xf6\x60\x88\xc0\x08\x28\xc0\x02\x18\xc0"
                   35239:             "\x01\x0c\xe0\x00\x06\x70\x00\x03\x68\x80\x02\x62\x20"
                   35240:             "\xc2\xe0\x0d\x1e\xc0\x03" }  },
1.1       albertel 35241:       /* --- pixel bitmap for cmsy180 char#50 \in --- */
1.2       albertel 35242:       {  50,34142,                      /* character number, location */
                   35243:          14, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   35244:           { 13,   15, 3,36, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35245:             "\x58\x32\xa1\xa0\xf1\x11\xbf\x11\xcd\x0f\x11\xc0\xf1"
                   35246:             "\x11\xb0\x21\xd2\xd8" }  },
1.1       albertel 35247:       /* --- pixel bitmap for cmsy180 char#51 \ni --- */
1.2       albertel 35248:       {  51,72247,                      /* character number, location */
                   35249:          14, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   35250:           { 13,   15, 3,37, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35251:             "\x08\xd2\xd1\x20\xf1\xb1\x10\xf1\xc1\x0d\xf1\xc1\xf1"
                   35252:             "\xb1\x10\xa1\xa2\x38\x51" }  },
1.1       albertel 35253:       /* --- pixel bitmap for cmsy180 char#52 \triangle --- */
1.2       albertel 35254:       {  52,73001,                      /* character number, location */
                   35255:          18, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   35256:           { 19,   18, 3,72, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35257:             "\x91\x90\xf1\x81\x11\x80\xf1\x71\x31\x70\xf1\x61\x51"
                   35258:             "\x60\xf1\x51\x71\x50\xf1\x41\x91\x40\xf1\x31\xb1\x30"
                   35259:             "\xf1\x21\xd1\x20\xf1\x11\xe0\x11\x1e\x05" }  },
1.1       albertel 35260:       /* --- pixel bitmap for cmsy180 char#53 \bigtriangledown --- */
1.2       albertel 35261:       {  53,73802,                      /* character number, location */
                   35262:          12, 2,   -6, 2,      /* topleft row,col, and botleft row,col */
                   35263:           { 19,   18, 3,73, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35264:             "\x0e\x05\xf1\x11\xe0\x11\x10\xf1\x21\xd1\x20\xf1\x31"
                   35265:             "\xb1\x30\xf1\x41\x91\x40\xf1\x51\x71\x50\xf1\x61\x51"
                   35266:             "\x60\xf1\x71\x31\x70\xf1\x81\x11\x80\x91\x91" }  },
                   35267:       /* --- pixel bitmap for cmsy180 char#54 \boldslash --- */
                   35268:       {  54,74186,                      /* character number, location */
                   35269:          18, 3,   -5, 3,      /* topleft row,col, and botleft row,col */
                   35270:           { 13,   23, 3,67, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35271:             "\xc1\xf1\xb1\x10\xf1\xa1\x20\xf1\x91\x30\xf1\x81\x40"
                   35272:             "\xf1\x71\x50\x61\x60\xf1\x51\x70\xf1\x41\x80\xf1\x31"
                   35273:             "\x90\xf1\x21\xa0\xf1\x11\xb1\xc1" }  },
                   35274:       /* --- pixel bitmap for cmsy180 char#55 \' --- */
                   35275:       {  55,74557,                      /* character number, location */
                   35276:          11, 1,    2, 1,      /* topleft row,col, and botleft row,col */
                   35277:           {  2,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35278:             "\x55\x57\x01" }  },
1.1       albertel 35279:       /* --- pixel bitmap for cmsy180 char#56 \forall --- */
1.2       albertel 35280:       {  56,34750,                      /* character number, location */
                   35281:          17, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
                   35282:           { 15,   18, 3,63, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35283:             "\xf1\x01\xd1\xf1\x11\xb1\x10\x21\x91\x4b\x41\x91\x20"
                   35284:             "\xf1\x31\x71\x30\xf1\x41\x51\x40\xf2\x51\x31\x50\xf1"
                   35285:             "\x61\x11\x60\xf1\x71\x71" }  },
1.1       albertel 35286:       /* --- pixel bitmap for cmsy180 char#57 \exists --- */
1.2       albertel 35287:       {  57,35411,                      /* character number, location */
                   35288:          17, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   35289:           { 12,   17, 3,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35290:             "\x0c\xf6\xb1\x0c\xf6\xb1\x0c" }  },
1.1       albertel 35291:       /* --- pixel bitmap for cmsy180 char#58 \neg --- */
1.2       albertel 35292:       {  58,36041,                      /* character number, location */
                   35293:           9, 1,    2, 1,      /* topleft row,col, and botleft row,col */
                   35294:           { 15,    7, 3, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35295:             "\x0e\x01\xf5\xe1" }  },
1.1       albertel 35296:       /* --- pixel bitmap for cmsy180 char#59 \emptyset --- */
1.2       albertel 35297:       {  59,75266,                      /* character number, location */
                   35298:          20, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   35299:           { 10,   22, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35300:             "\x80\x00\x82\x0f\x33\xc6\x09\x35\xf4\xc8\x23\x8f\x3c"
                   35301:             "\xf2\xc4\x13\x4f\x3c\xf1\xc2\x0b\x2b\xe4\x18\x33\x7c"
                   35302:             "\x10\x00" }  },
1.1       albertel 35303:       /* --- pixel bitmap for cmsy180 char#60 \Re --- */
1.2       albertel 35304:       {  60,77123,                      /* character number, location */
                   35305:          18, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   35306:           { 17,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35307:             "\x00\x1c\x38\x76\xc8\xc2\x08\x03\x13\x06\x46\x0c\x18"
                   35308:             "\x19\x30\x74\xc0\xe8\xc0\xd0\x7f\xb4\x63\x30\xc7\x00"
                   35309:             "\x86\x01\x0c\x03\x18\x86\x31\x0c\x62\x18\x49\xb0\x61"
                   35310:             "\xc0\x00" }  },
1.1       albertel 35311:       /* --- pixel bitmap for cmsy180 char#61 \Im --- */
1.2       albertel 35312:       {  61,78434,                      /* character number, location */
                   35313:          17, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   35314:           { 16,   17, 3,65, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35315:             "\x36\x91\x53\x61\x83\x22\xb3\x1f\x11\xe0\x10\x11\xa3"
                   35316:             "\x31\x82\x21\x33\x52\x21\xf1\xb2\x30\xc2\x23\x92\x43"
                   35317:             "\x82\x52\x62\x73\x33\x95\x43" }  },
1.1       albertel 35318:       /* --- pixel bitmap for cmsy180 char#62 \top --- */
1.2       albertel 35319:       {  62,79152,                      /* character number, location */
                   35320:          17, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   35321:           { 17,   17, 3,13, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35322:             "\x0e\x03\xfe\x81\x80\x81\x83" }  },
1.1       albertel 35323:       /* --- pixel bitmap for cmsy180 char#63 \bot --- */
1.2       albertel 35324:       {  63,79869,                      /* character number, location */
                   35325:          17, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   35326:           { 17,   17, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35327:             "\xfe\x81\x80\x81\x8e\x03" }  },
1.1       albertel 35328:       /* --- pixel bitmap for cmsy180 char#64 \aleph --- */
1.2       albertel 35329:       {  64,81104,                      /* character number, location */
                   35330:          17, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   35331:           { 13,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35332:             "\x01\x62\xc0\x08\x18\x03\xc6\xc0\x31\x38\x0e\x25\x23"
                   35333:             "\x44\xc4\x98\x18\x16\x83\x63\x60\x18\x18\x06\xc2\xc0"
                   35334:             "\x0f\x10" }  },
1.1       albertel 35335:       /* --- pixel bitmap for cmsy180 char#65 \calA --- */
1.2       albertel 35336:       {  65,  774,                      /* character number, location */
                   35337:          18, 0,   -2, 0,      /* topleft row,col, and botleft row,col */
                   35338:           { 19,   20, 3,83, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35339:             "\xe0\x11\xe0\x32\x30\xf1\xd3\x30\xf1\xc1\x12\x30\xf1"
                   35340:             "\xb1\x22\x30\xf1\xa1\x32\x30\x91\x42\xb2\x42\xb1\x52"
                   35341:             "\xaa\x82\x72\x81\x82\x21\x41\x92\x22\x22\x92\x25\xa4"
                   35342:             "\x13\xe0\x10" }  },
1.1       albertel 35343:       /* --- pixel bitmap for cmsy180 char#66 \calB --- */
1.2       albertel 35344:       {  66, 1544,                      /* character number, location */
                   35345:          18, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   35346:           { 16,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35347:             "\x30\x7c\x38\xe3\xb0\xc1\xf0\xc0\x70\xc0\x70\x60\x38"
                   35348:             "\x30\x38\x0c\x98\x1f\x18\x38\x18\x70\x0c\x60\x0c\x60"
                   35349:             "\x0c\x60\x0c\x60\x06\x30\x1e\x18\x3b\x0c\xf3\x03" }  },
1.1       albertel 35350:       /* --- pixel bitmap for cmsy180 char#67 \calC --- */
1.2       albertel 35351:       {  67, 2253,                      /* character number, location */
                   35352:          18, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   35353:           { 13,   19, 3,55, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35354:             "\x85\x62\x32\x42\x52\x32\x62\x32\x52\x32\x62\x22\x62"
                   35355:             "\x20\xf1\x12\xaf\x42\xb2\x82\x13\x62\x32\x62\x33\x32"
                   35356:             "\x65\x62" }  },
1.1       albertel 35357:       /* --- pixel bitmap for cmsy180 char#68 \calD --- */
1.2       albertel 35358:       {  68, 3083,                      /* character number, location */
                   35359:          17, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   35360:           { 17,   17, 3,61, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35361:             "\x49\x62\x22\x34\x22\x42\x53\x12\x42\x63\x62\x72\xf3"
                   35362:             "\x52\x82\x52\x72\x52\x82\x52\x72\x62\x62\x62\x62\x72"
                   35363:             "\x52\x82\x32\x87\x92" }  },
1.1       albertel 35364:       /* --- pixel bitmap for cmsy180 char#69 \calE --- */
1.2       albertel 35365:       {  69, 3770,                      /* character number, location */
                   35366:          18, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   35367:           { 14,   19, 3,57, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35368:             "\x85\x72\x33\x42\x62\x42\x52\x10\xf1\x32\x90\x33\xc3"
                   35369:             "\xc4\x92\xb2\xb2\xb2\xb2\xc2\x82\x22\x72\x33\x52\x53"
                   35370:             "\x32\x75\x72" }  },
1.1       albertel 35371:       /* --- pixel bitmap for cmsy180 char#70 \calF --- */
1.2       albertel 35372:       {  70, 4568,                      /* character number, location */
                   35373:          17, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
                   35374:           { 20,   18, 3,55, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35375:             "\x7d\x62\x22\x62\xf1\x42\x42\x80\xf2\x92\x90\xf1\x82"
                   35376:             "\xa0\x88\x40\xf2\x72\xb0\xf1\x62\xc2\x32\xd3\x22\xe4"
                   35377:             "\xe0\x15" }  },
1.1       albertel 35378:       /* --- pixel bitmap for cmsy180 char#71 \calG --- */
1.2       albertel 35379:       {  71, 5299,                      /* character number, location */
                   35380:          18, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   35381:           { 14,   21, 3,71, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35382:             "\x76\x62\x43\x42\x62\x32\x72\x22\x72\x22\x81\x32\xbf"
                   35383:             "\x12\xcf\x12\x92\x12\x83\x12\x82\x23\x63\x33\x32\x12"
                   35384:             "\x45\x22\xc2\xb2\x51\x62\x44\x32\x75\x72" }  },
1.1       albertel 35385:       /* --- pixel bitmap for cmsy180 char#72 \calH --- */
1.2       albertel 35386:       {  72, 6199,                      /* character number, location */
                   35387:          17, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   35388:           { 18,   19, 3,79, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35389:             "\x45\x72\x22\x32\x72\x12\x42\x62\x12\x52\x62\x82\x62"
                   35390:             "\x10\xf3\x62\x62\x20\x3c\x30\xf1\x52\x62\x30\x42\x72"
                   35391:             "\x30\xf1\x42\x62\x40\x32\x72\x40\xf1\x32\x72\x22\xc4"
                   35392:             "\x23" }  },
1.1       albertel 35393:       /* --- pixel bitmap for cmsy180 char#73 \calI --- */
1.2       albertel 35394:       {  73, 6938,                      /* character number, location */
                   35395:          17,-1,    0,-1,      /* topleft row,col, and botleft row,col */
                   35396:           { 17,   17, 3,43, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35397:             "\x5c\x32\x52\x72\x52\x72\x62\x60\xf3\x82\x70\xf3\x72"
                   35398:             "\x80\xf1\x62\x90\xf1\x52\x52\x3c\x52" }  },
1.1       albertel 35399:       /* --- pixel bitmap for cmsy180 char#74 \calJ --- */
1.2       albertel 35400:       {  74, 7646,                      /* character number, location */
                   35401:          17, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   35402:           { 20,   20, 3,65, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35403:             "\xb9\x92\x52\xa2\x52\xa2\x52\xa2\x62\xa2\x52\x50\xf1"
                   35404:             "\xd2\x50\xf2\xc2\x60\xf2\xb2\x70\x21\x82\x72\x82\x83"
                   35405:             "\x62\xa2\x62\xa3\x32\xd6\xc2" }  },
1.1       albertel 35406:       /* --- pixel bitmap for cmsy180 char#75 \calK --- */
1.2       albertel 35407:       {  75, 8467,                      /* character number, location */
                   35408:          18, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   35409:           { 17,   19, 3,79, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35410:             "\x42\x83\x33\x62\x12\x42\x42\x32\x42\x32\xa2\x22\xb2"
                   35411:             "\x12\xc4\x90\xf2\x34\xa0\x35\x90\xf1\x22\x22\x90\x22"
                   35412:             "\x23\x92\x42\x92\x43\x52\x12\x53\x44\x73\x22\x12\x84"
                   35413:             "\x33" }  },
1.1       albertel 35414:       /* --- pixel bitmap for cmsy180 char#76 \calL --- */
1.2       albertel 35415:       {  76, 9211,                      /* character number, location */
                   35416:          18, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   35417:           { 16,   19, 3,61, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35418:             "\xa4\xa2\x23\x10\xf1\x72\x42\x10\x62\x51\x82\x80\xf1"
                   35419:             "\x52\x90\xf3\x42\xa0\xf2\x32\xb0\x22\xa2\x16\x62\x13"
                   35420:             "\x25\x22\x22\x65\x33" }  },
1.1       albertel 35421:       /* --- pixel bitmap for cmsy180 char#77 \calM --- */
1.2       albertel 35422:       {  77,10310,                      /* character number, location */
                   35423:          18, 0,   -2, 0,      /* topleft row,col, and botleft row,col */
                   35424:           { 28,   20, 3,133, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   35425:             "\x92\xe0\x21\x92\xe0\x11\x93\xe2\x93\xd3\x94\xb4\x91"
                   35426:             "\x12\xb3\xa1\x12\xa1\x12\x91\x22\x92\x12\x91\x22\x82"
                   35427:             "\x22\x91\x23\x62\x32\x81\x42\x52\x42\x81\x42\x51\x42"
                   35428:             "\x91\x42\x41\x52\x81\x53\x22\x52\x81\x62\x12\x62\x81"
                   35429:             "\x64\x72\x71\x82\x82\x32\x12\xe0\x42\x34\xe0\x54\x22"
                   35430:             "\xe0\xb0" }  },
1.1       albertel 35431:       /* --- pixel bitmap for cmsy180 char#78 \calN --- */
1.2       albertel 35432:       {  78,11297,                      /* character number, location */
                   35433:          19,-1,   -2,-1,      /* topleft row,col, and botleft row,col */
                   35434:           { 26,   21, 3,113, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   35435:             "\xe0\x84\x82\xb5\x82\xa2\xc3\x91\xc1\x12\x91\xc1\x12"
                   35436:             "\x81\xd1\x13\x71\x60\xf1\x71\x22\x71\x60\x61\x33\x51"
                   35437:             "\x70\xf1\x61\x42\x51\x70\x61\x43\x41\xc1\x62\x31\xd1"
                   35438:             "\x63\x21\xd1\x72\x21\xc1\x83\x11\xc1\x93\x91\x21\xa3"
                   35439:             "\x94\xe0\x83\xe0\x92" }  },
1.1       albertel 35440:       /* --- pixel bitmap for cmsy180 char#79 \calO --- */
1.2       albertel 35441:       {  79,12160,                      /* character number, location */
                   35442:          18, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   35443:           { 18,   19, 3,77, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35444:             "\x62\x35\x72\x22\x33\x52\x22\x53\x32\x22\x72\xf1\x22"
                   35445:             "\x22\x82\x12\x31\x92\x12\xd2\x0f\x12\xe2\x0f\x12\xd2"
                   35446:             "\x1f\x12\xc2\x23\xa2\x42\x92\x53\x72\x73\x42\xa6\x91" }  },
1.1       albertel 35447:       /* --- pixel bitmap for cmsy180 char#80 \calP --- */
1.2       albertel 35448:       {  80,12951,                      /* character number, location */
                   35449:          17, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   35450:           { 17,   19, 3,65, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35451:             "\x4a\x52\x22\x44\x12\x42\x65\x42\x72\x62\x72\xf1\x52"
                   35452:             "\x82\x52\x72\x62\x62\x72\x52\x72\x43\x86\xb2\xb0\xf2"
                   35453:             "\x32\xc0\xf1\x22\xd0\x21\xe2" }  },
1.1       albertel 35454:       /* --- pixel bitmap for cmsy180 char#81 \calQ --- */
1.2       albertel 35455:       {  81,13806,                      /* character number, location */
                   35456:          18, 3,   -2, 3,      /* topleft row,col, and botleft row,col */
                   35457:           { 17,   20, 3,67, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35458:             "\x76\x92\x44\x62\x72\x52\x83\x32\xa2\x10\xf1\x12\xb2"
                   35459:             "\x1f\x22\xc2\x1f\x12\xb2\x23\x92\x43\x42\x12\x66\x32"
                   35460:             "\xd2\xe2\x87\x81\x46\x42\x97\x23" }  },
1.1       albertel 35461:       /* --- pixel bitmap for cmsy180 char#82 \calR --- */
1.2       albertel 35462:       {  82,14667,                      /* character number, location */
                   35463:          17, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   35464:           { 20,   18, 3,85, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35465:             "\x4b\x72\x22\x53\x42\x42\x63\x32\x42\x72\x92\x72\x82"
                   35466:             "\x82\x82\x72\x92\x62\xa2\x43\xb2\x13\xd2\x33\x80\xf1"
                   35467:             "\x42\x42\x80\x32\x53\xa2\x62\x52\x32\x63\x32\x32\x82"
                   35468:             "\x22\x42\x84\x42" }  },
1.1       albertel 35469:       /* --- pixel bitmap for cmsy180 char#83 \calS --- */
1.2       albertel 35470:       {  83,15447,                      /* character number, location */
                   35471:          18, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
                   35472:           { 16,   19, 3,57, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35473:             "\x86\x82\x44\x52\x72\x42\x82\x42\x81\x52\xe3\xe3\xe4"
                   35474:             "\xe4\xe3\xe3\x33\x82\x2f\x12\xa2\x22\x92\x33\x72\x53"
                   35475:             "\x52\x77\x70" }  },
1.1       albertel 35476:       /* --- pixel bitmap for cmsy180 char#84 \calT --- */
1.2       albertel 35477:       {  84,16147,                      /* character number, location */
                   35478:          18, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   35479:           { 20,   20, 3,55, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35480:             "\xe0\x51\x3e\x02\x32\x62\x92\x62\x9f\x12\x72\x90\x92"
                   35481:             "\x90\xf3\x82\xa0\xf3\x72\xb0\xf1\x62\xc0\xf1\x52\xd0"
                   35482:             "\x51\xe7" }  },
1.1       albertel 35483:       /* --- pixel bitmap for cmsy180 char#85 \calU --- */
1.2       albertel 35484:       {  85,16889,                      /* character number, location */
                   35485:          17, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
                   35486:           { 17,   18, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35487:             "\x3c\x80\x67\x00\xc3\x00\x83\x01\x86\x01\x0c\x03\x1c"
                   35488:             "\x03\x18\x06\x38\x0c\x78\x0c\x70\x18\xf0\x30\xb0\x31"
                   35489:             "\x60\x63\x60\xc3\x60\x86\x61\x0c\x67\x18\x3c\x70\x00" }  },
1.1       albertel 35490:       /* --- pixel bitmap for cmsy180 char#86 \calV --- */
1.2       albertel 35491:       {  86,17628,                      /* character number, location */
                   35492:          17, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   35493:           { 16,   18, 3,67, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35494:             "\x04\x92\x33\x83\x33\x82\x42\x91\x43\x81\x52\x81\x52"
                   35495:             "\x71\x62\x62\x62\x61\x72\x51\x82\x42\x82\x32\x92\x22"
                   35496:             "\xa2\x12\xa2\x12\xb4\xc3\xd1\xb2" }  },
1.1       albertel 35497:       /* --- pixel bitmap for cmsy180 char#87 \calW --- */
1.2       albertel 35498:       {  87,18637,                      /* character number, location */
                   35499:          17, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   35500:           { 25,   18, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35501:             "\x0f\x60\x80\x39\xc0\x81\x63\x80\x03\xc4\x81\x06\x08"
                   35502:             "\x03\x1d\x10\x06\x31\x20\x0c\x63\x20\x18\xc2\x40\x30"
                   35503:             "\x82\x41\x60\x06\xc7\xc0\x04\x8c\x80\x05\x98\x00\x0f"
                   35504:             "\xb0\x01\x0e\x60\x01\x0e\xc0\x01\x1c\x80\x03\x18\x00"
                   35505:             "\x03\x10\x00\x02\x00" }  },
1.1       albertel 35506:       /* --- pixel bitmap for cmsy180 char#88 \calX --- */
1.2       albertel 35507:       {  88,19490,                      /* character number, location */
                   35508:          17, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   35509:           { 19,   17, 3,71, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35510:             "\x63\x73\x42\x13\x72\x82\x72\x82\x62\x92\x52\xa3\x32"
                   35511:             "\xc2\x12\xe3\xe0\x13\xe0\x14\xd2\x22\xb2\x42\xa2\x52"
                   35512:             "\x92\x62\x82\x73\x72\x82\x12\x43\x74\x53" }  },
1.1       albertel 35513:       /* --- pixel bitmap for cmsy180 char#89 \calY --- */
1.2       albertel 35514:       {  89,20261,                      /* character number, location */
                   35515:          17, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   35516:           { 17,   20, 3,71, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35517:             "\x34\x72\x22\x23\x63\x63\x62\xf1\x72\x71\x73\x61\xf1"
                   35518:             "\x82\x51\x10\x82\x41\xa2\x32\xa2\x31\xb2\x21\xc2\x12"
                   35519:             "\xc4\xd3\xe2\x81\x52\x83\x23\xa6\xc3\xc3" }  },
1.1       albertel 35520:       /* --- pixel bitmap for cmsy180 char#90 \calZ --- */
1.2       albertel 35521:       {  90,21117,                      /* character number, location */
                   35522:          17, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   35523:           { 18,   17, 3,67, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35524:             "\x77\x22\x52\x55\x62\x72\x62\x82\xe0\x12\xe0\x12\xe0"
                   35525:             "\x12\xb8\xd2\x12\xc2\xe0\x12\xe0\x12\xe0\x12\x81\x62"
                   35526:             "\x82\x42\xa2\x38\x42\x32\x56\x56" }  },
1.1       albertel 35527:       /* --- pixel bitmap for cmsy180 char#91 \cup --- */
1.2       albertel 35528:       {  91,24796,                      /* character number, location */
                   35529:          16, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   35530:           { 15,   17, 3,17, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35531:             "\xfd\x01\xd1\x11\xb1\x32\x72\x67\x41" }  },
1.1       albertel 35532:       /* --- pixel bitmap for cmsy180 char#92 \cap --- */
1.2       albertel 35533:       {  92,25493,                      /* character number, location */
                   35534:          16, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   35535:           { 15,   17, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35536:             "\x47\x62\x72\x31\xb1\x1f\xd1\xd1" }  },
1.1       albertel 35537:       /* --- pixel bitmap for cmsy180 char#93 \uplus --- */
1.2       albertel 35538:       {  93,81871,                      /* character number, location */
                   35539:          16, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   35540:           { 15,   17, 3,39, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35541:             "\xf2\x01\xd1\x0f\x41\x61\x61\x01\x1b\x11\x0f\x41\x61"
                   35542:             "\x61\x11\xb1\x32\x72\x67\x41" }  },
1.1       albertel 35543:       /* --- pixel bitmap for cmsy180 char#94 \wedge --- */
1.2       albertel 35544:       {  94,26173,                      /* character number, location */
                   35545:          16, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   35546:           { 15,   17, 3,58, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35547:             "\xf1\x71\x70\xf1\x61\x11\x60\xf1\x51\x31\x50\xf1\x41"
                   35548:             "\x51\x40\xf2\x31\x71\x30\xf1\x21\x91\x20\xf1\x11\xb1"
                   35549:             "\x1f\x11\xd1" }  },
1.1       albertel 35550:       /* --- pixel bitmap for cmsy180 char#95 \vee --- */
1.2       albertel 35551:       {  95,26851,                      /* character number, location */
                   35552:          16, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   35553:           { 15,   17, 3,59, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35554:             "\xf1\x01\xd1\xf1\x11\xb1\x10\xf1\x21\x91\x20\xf2\x31"
                   35555:             "\x71\x30\xf1\x41\x51\x40\xf1\x51\x31\x50\xf1\x61\x11"
                   35556:             "\x60\xf1\x71\x71" }  },
1.1       albertel 35557:       /* --- pixel bitmap for cmsy180 char#96 \vdash --- */
1.2       albertel 35558:       {  96,82542,                      /* character number, location */
                   35559:          17, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   35560:           { 13,   17, 3,11, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35561:             "\xf7\x01\xcd\x0f\x71\xc1" }  },
1.1       albertel 35562:       /* --- pixel bitmap for cmsy180 char#97 \dashv --- */
1.2       albertel 35563:       {  97,83160,                      /* character number, location */
                   35564:          17, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   35565:           { 13,   17, 3,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35566:             "\xf7\xc1\x0d\xf7\xc1" }  },
1.1       albertel 35567:       /* --- pixel bitmap for cmsy180 char#98 \lfloor --- */
1.2       albertel 35568:       {  98,83688,                      /* character number, location */
                   35569:          19, 4,   -6, 4,      /* topleft row,col, and botleft row,col */
                   35570:           {  6,   25, 3,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35571:             "\xfe\x01\x5f\x81\x56" }  },
1.1       albertel 35572:       /* --- pixel bitmap for cmsy180 char#99 \rfloor --- */
1.2       albertel 35573:       {  99,84233,                      /* character number, location */
                   35574:          19, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   35575:           {  6,   25, 3,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35576:             "\xfe\x51\xf8\x51\x06" }  },
1.1       albertel 35577:       /* --- pixel bitmap for cmsy180 char#100 \lceil --- */
1.2       albertel 35578:       { 100,84779,                      /* character number, location */
                   35579:          19, 4,   -6, 4,      /* topleft row,col, and botleft row,col */
                   35580:           {  6,   25, 3,11, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35581:             "\x06\x0f\xe1\x5f\x81\x51" }  },
1.1       albertel 35582:       /* --- pixel bitmap for cmsy180 char#101 \rceil --- */
1.2       albertel 35583:       { 101,85326,                      /* character number, location */
                   35584:          19, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   35585:           {  6,   25, 3,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35586:             "\x06\xfe\x51\xf8\x51" }  },
                   35587:       /* --- pixel bitmap for cmsy180 char#102 \lbrace --- */
                   35588:       { 102,41109,                      /* character number, location */
                   35589:          19, 2,   -6, 2,      /* topleft row,col, and botleft row,col */
                   35590:           {  8,   25, 3,30, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35591:             "\x53\x42\x20\xf8\x32\x30\x22\x43\x72\x40\xf8\x32\x30"
                   35592:             "\x42\x73" }  },
                   35593:       /* --- pixel bitmap for cmsy180 char#103 \rbrace --- */
                   35594:       { 103,41962,                      /* character number, location */
                   35595:          19, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   35596:           { 10,   25, 3,31, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35597:             "\x03\xa2\x50\xf8\x42\x40\x52\xa3\x52\x30\xf8\x42\x40"
                   35598:             "\x32\x53\x71" }  },
1.1       albertel 35599:       /* --- pixel bitmap for cmsy180 char#104 \langle --- */
1.2       albertel 35600:       { 104,85844,                      /* character number, location */
                   35601:          19, 2,   -6, 2,      /* topleft row,col, and botleft row,col */
                   35602:           {  7,   25, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35603:             "\x40\x20\x08\x04\x41\x20\x08\x04\x81\x20\x10\x08\x08"
                   35604:             "\x04\x04\x02\x02\x01\x01\x81\x80\x40" }  },
1.1       albertel 35605:       /* --- pixel bitmap for cmsy180 char#105 \rangle --- */
1.2       albertel 35606:       { 105,86363,                      /* character number, location */
                   35607:          19, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   35608:           {  7,   25, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35609:             "\x81\x80\x40\x40\x40\x20\x20\x10\x10\x08\x08\x04\x82"
                   35610:             "\x40\x10\x08\x02\x41\x10\x08\x02\x01" }  },
1.1       albertel 35611:       /* --- pixel bitmap for cmsy180 char#106 \mid --- */
1.2       albertel 35612:       { 106,39177,                      /* character number, location */
                   35613:          19, 3,   -6, 3,      /* topleft row,col, and botleft row,col */
                   35614:           {  1,   25, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35615:             "\xff\xff\xff\x01" }  },
1.1       albertel 35616:       /* --- pixel bitmap for cmsy180 char#107 \parallel --- */
1.2       albertel 35617:       { 107,86972,                      /* character number, location */
                   35618:          19, 2,   -6, 2,      /* topleft row,col, and botleft row,col */
                   35619:           {  8,   25, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35620:             "\xfe\x01\x61\x0f\x91\x61" }  },
1.1       albertel 35621:       /* --- pixel bitmap for cmsy180 char#108 \updownarrow --- */
1.2       albertel 35622:       { 108,88190,                      /* character number, location */
                   35623:          20, 1,   -7, 1,      /* topleft row,col, and botleft row,col */
                   35624:           { 11,   27, 3,63, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35625:             "\xf2\x51\x50\x43\x75\x57\x2f\x1b\x19\x37\x20\xf1\x35"
                   35626:             "\x30\x43\x91\x93\x40\xf1\x35\x30\x27\x39\x1f\x1b\x27"
                   35627:             "\x55\x73\x40\xf2\x51\x51" }  },
1.1       albertel 35628:       /* --- pixel bitmap for cmsy180 char#109 \Updownarrow --- */
1.2       albertel 35629:       { 109,89271,                      /* character number, location */
                   35630:          20, 0,   -7, 0,      /* topleft row,col, and botleft row,col */
                   35631:           { 15,   27, 3,47, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35632:             "\xf1\x71\x70\x63\xb5\x97\x79\x4d\x1e\x01\xfa\x41\x51"
                   35633:             "\x4e\x01\x1d\x49\x77\x95\xb3\x60\xf1\x71\x7f" }  },
1.1       albertel 35634:       /* --- pixel bitmap for cmsy180 char#110 \setminus --- */
1.2       albertel 35635:       { 110,38731,                      /* character number, location */
                   35636:          19, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   35637:           { 10,   25, 3,58, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35638:             "\xf1\x01\x90\xf2\x11\x80\xf1\x21\x70\xf2\x31\x60\xf2"
                   35639:             "\x41\x50\xf1\x51\x40\xf2\x61\x30\xf1\x71\x20\xf2\x81"
                   35640:             "\x10\xf1\x91" }  },
1.1       albertel 35641:       /* --- pixel bitmap for cmsy180 char#111 \wr --- */
1.2       albertel 35642:       { 111,89774,                      /* character number, location */
                   35643:          14, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   35644:           {  5,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35645:             "\x87\x61\x08\x31\x23\x66\x84\x30\x0c\x07" }  },
1.1       albertel 35646:       /* --- pixel bitmap for cmsy180 char#112 \surd --- */
1.2       albertel 35647:       { 112,90630,                      /* character number, location */
                   35648:           1, 2,  -24, 2,      /* topleft row,col, and botleft row,col */
                   35649:           { 20,   25, 3,97, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35650:             "\xf1\xe0\x51\xf1\xe0\x41\x10\xf1\xe0\x31\x20\xf1\xe0"
                   35651:             "\x21\x30\xf1\xe0\x11\x40\xf1\xe1\x50\x21\xa1\x64\x91"
                   35652:             "\x82\x81\x93\x71\xa2\x61\xb3\x51\xc2\x41\xd3\x31\xe2"
                   35653:             "\x21\xe0\x13\x11\xa0\xf1\x63\xb0\x71\xc2" }  },
1.1       albertel 35654:       /* --- pixel bitmap for cmsy180 char#113 \amalg --- */
1.2       albertel 35655:       { 113,91838,                      /* character number, location */
                   35656:          17, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   35657:           { 19,   17, 3,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35658:             "\x08\x38\xfe\x32\x92\x3e\x05" }  },
1.1       albertel 35659:       /* --- pixel bitmap for cmsy180 char#114 \nabla --- */
1.2       albertel 35660:       { 114,92788,                      /* character number, location */
                   35661:          17, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   35662:           { 19,   18, 3,71, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35663:             "\x0e\x05\x1e\x03\x23\xd1\x32\xc1\x43\xb1\x20\xf1\x32"
                   35664:             "\xa1\x30\xf1\x42\x81\x40\xf1\x52\x61\x50\xf1\x62\x41"
                   35665:             "\x60\xf1\x72\x21\x70\xf1\x83\x80\x91\x91" }  },
                   35666:       /* --- pixel bitmap for cmsy180 char#115 \smallint --- */
                   35667:       { 115,44075,                      /* character number, location */
                   35668:          18, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   35669:           { 11,   24, 3,45, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35670:             "\x82\x10\xf1\x71\x12\xf4\x62\x30\x61\x40\xf5\x52\x40"
                   35671:             "\x51\x50\xf4\x42\x52\x21\x62\x12\x73\x71" }  },
1.1       albertel 35672:       /* --- pixel bitmap for cmsy180 char#116 \sqcup --- */
1.2       albertel 35673:       { 116,93478,                      /* character number, location */
                   35674:          16, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   35675:           { 13,   16, 3, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35676:             "\xfe\x01\xb1\x0d" }  },
1.1       albertel 35677:       /* --- pixel bitmap for cmsy180 char#117 \sqcap --- */
1.2       albertel 35678:       { 117,94175,                      /* character number, location */
                   35679:          16, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   35680:           { 13,   16, 3, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35681:             "\x0d\x0f\xe1\xb1" }  },
1.1       albertel 35682:       /* --- pixel bitmap for cmsy180 char#118 \sqsubseteq --- */
1.2       albertel 35683:       { 118,94944,                      /* character number, location */
                   35684:          16, 2,   -5, 2,      /* topleft row,col, and botleft row,col */
                   35685:           { 16,   21, 3,23, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35686:             "\x0e\x02\x0f\xc1\xe0\x1e\x02\xf4\xe0\x2e\x01\x11" }  },
1.1       albertel 35687:       /* --- pixel bitmap for cmsy180 char#119 \sqsupseteq --- */
1.2       albertel 35688:       { 119,95687,                      /* character number, location */
                   35689:          16, 1,   -5, 1,      /* topleft row,col, and botleft row,col */
                   35690:           { 16,   21, 3,24, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35691:             "\x0e\x02\xfc\xe0\x11\x1e\x01\xf4\xe0\x20\x1e\x01" }  },
1.1       albertel 35692:       /* --- pixel bitmap for cmsy180 char#120 \S --- */
1.2       albertel 35693:       { 120,96684,                      /* character number, location */
                   35694:          17, 2,   -5, 2,      /* topleft row,col, and botleft row,col */
                   35695:           {  7,   22, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35696:             "\x1c\xd1\x78\x3c\x10\x18\x18\xb2\xd1\x78\x2c\x36\x61"
                   35697:             "\x60\x20\xf0\x78\x2c\xe2\x00" }  },
1.1       albertel 35698:       /* --- pixel bitmap for cmsy180 char#121 \dag --- */
1.2       albertel 35699:       { 121,97502,                      /* character number, location */
                   35700:          17, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   35701:           { 10,   23, 3,17, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35702:             "\xf4\x42\x4f\x1a\xfe\x42\x40\x42\x42" }  },
1.1       albertel 35703:       /* --- pixel bitmap for cmsy180 char#122 \ddag --- */
1.2       albertel 35704:       { 122,98493,                      /* character number, location */
                   35705:          17, 1,   -5, 1,      /* topleft row,col, and botleft row,col */
                   35706:           { 10,   22, 3,27, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35707:             "\xf4\x42\x4a\xf4\x42\x40\xa0\xf3\x42\x4f\x1a\xf3\x42"
                   35708:             "\x41" }  },
1.1       albertel 35709:       /* --- pixel bitmap for cmsy180 char#123 \P --- */
1.2       albertel 35710:       { 123,99195,                      /* character number, location */
                   35711:          17, 1,   -5, 1,      /* topleft row,col, and botleft row,col */
                   35712:           { 13,   22, 3,43, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35713:             "\x49\x26\x21\x37\x21\x2f\x48\x21\x20\x17\x21\x46\x21"
                   35714:             "\x55\x21\x73\x21\x20\xf9\x71\x21\x22" }  },
1.1       albertel 35715:       /* --- pixel bitmap for cmsy180 char#124 \clubsuit --- */
1.2       albertel 35716:       { 124,100159,                     /* character number, location */
                   35717:          18, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   35718:           { 17,   21, 3,55, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35719:             "\x65\xb7\x50\xf5\x49\x40\x57\x73\x15\x13\x3e\x01\x1f"
                   35720:             "\x4e\x03\x07\x11\x17\x16\x11\x16\x34\x21\x24\x20\xf1"
                   35721:             "\x73\x72" }  },
1.1       albertel 35722:       /* --- pixel bitmap for cmsy180 char#125 \Diamond --- */
1.2       albertel 35723:       { 125,100876,                     /* character number, location */
                   35724:          18, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   35725:           { 17,   22, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35726:             "\x00\x01\x00\x05\x00\x0a\x00\x22\x00\x44\x00\x04\x01"
                   35727:             "\x04\x04\x04\x10\x08\x20\x08\x80\x08\x00\x16\x00\x44"
                   35728:             "\x00\x04\x01\x04\x02\x08\x08\x08\x20\x08\x80\x08\x00"
                   35729:             "\x11\x00\x14\x00\x28\x00\x20\x00" }  },
1.1       albertel 35730:       /* --- pixel bitmap for cmsy180 char#126 \Heart --- */
1.2       albertel 35731:       { 126,101707,                     /* character number, location */
                   35732:          18, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   35733:           { 17,   19, 3,77, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35734:             "\x24\x54\x31\x41\x31\x41\x11\x61\x11\x61\x0f\x11\x71"
                   35735:             "\x71\x0f\x31\xe0\x11\xf1\x11\xd1\x10\x21\xb1\x51\x91"
                   35736:             "\x71\x71\x91\x51\xb1\x31\x60\xf1\x71\x11\x70\x81\x81" }  },
1.1       albertel 35737:       /* --- pixel bitmap for cmsy180 char#127 \spadesuit --- */
1.2       albertel 35738:       { 127,102606,                     /* character number, location */
                   35739:          18, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   35740:           { 17,   21, 3,59, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35741:             "\xf1\x81\x80\xf1\x73\x70\x65\xb7\x99\x7b\x5d\x20\xf1"
                   35742:             "\x1e\x01\x1f\x4e\x03\xf1\x16\x11\x16\x10\x24\x21\x24"
                   35743:             "\x20\xf1\x73\x71" }  },
                   35744:       /* --- trailer  --- */
                   35745:       { -99, -999,  0,0,0,0, { 0,0,0,0, (pixbyte *)"\0" }  }
                   35746:    } ;
                   35747: 
                   35748: 
                   35749: /* --- size=6 for .210gf ---
                   35750:  * mf '\mode=preview; mag=magstep(-13.80488502080647873125); input cmsy10'
                   35751:  * --------------------------------------------------------------------- */
                   35752: /* --- fontdef for cmsy210 --- */
                   35753: static	chardef  cmsy210[] =
                   35754:    {
                   35755:       /* --- pixel bitmap for cmsy210 char#0 - --- */
                   35756:       {   0,22190,                      /* character number, location */
                   35757:           8, 2,    6, 2,      /* topleft row,col, and botleft row,col */
                   35758:           { 19,    2, 3, 6, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35759:             "\xf1\x0e\x05" }  },
                   35760:       /* --- pixel bitmap for cmsy210 char#1 \cdot --- */
                   35761:       {   1,40268,                      /* character number, location */
                   35762:           9, 3,    6, 3,      /* topleft row,col, and botleft row,col */
                   35763:           {  3,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35764:             "\xba\x00" }  },
                   35765:       /* --- pixel bitmap for cmsy210 char#2 \times --- */
                   35766:       {   2,45406,                      /* character number, location */
                   35767:          14, 4,    0, 4,      /* topleft row,col, and botleft row,col */
                   35768:           { 15,   14, 3,52, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35769:             "\x02\xb5\x93\x13\x73\x33\x53\x53\x33\x73\x13\x40\xf1"
                   35770:             "\x55\x50\x43\x13\x73\x33\x53\x53\x33\x73\x13\x95\xb2" }  },
                   35771:       /* --- pixel bitmap for cmsy210 char#3 \ast --- */
                   35772:       {   3,46057,                      /* character number, location */
                   35773:          14, 2,    1, 2,      /* topleft row,col, and botleft row,col */
                   35774:           { 11,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35775:             "\x20\x00\x01\x08\x46\xfc\x7a\xfe\xc0\x81\x3f\xaf\x1f"
                   35776:             "\x31\x08\x40\x00\x02" }  },
                   35777:       /* --- pixel bitmap for cmsy210 char#4 \div --- */
                   35778:       {   4,46906,                      /* character number, location */
                   35779:          16, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
                   35780:           { 18,   18, 3,43, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35781:             "\x82\x80\xf1\x74\x70\x82\x80\xf3\xe0\x4f\x1e\x04\xf3"
                   35782:             "\xe0\x40\x82\x80\xf1\x74\x70\x82\x83" }  },
                   35783:       /* --- pixel bitmap for cmsy210 char#5 \diamond --- */
                   35784:       {   5,40833,                      /* character number, location */
                   35785:          14, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   35786:           { 14,   14, 3,43, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35787:             "\x62\xb4\x96\x73\x23\x53\x43\x33\x63\x1f\x13\x83\x13"
                   35788:             "\x63\x33\x43\x53\x23\x76\x94\xb2\x60" }  },
                   35789:       /* --- pixel bitmap for cmsy210 char#6 \pm --- */
                   35790:       {   6,22889,                      /* character number, location */
                   35791:          19, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   35792:           { 19,   20, 3,20, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35793:             "\xf8\x92\x8f\x1e\x05\xf6\x92\x8f\x1e\x05" }  },
                   35794:       /* --- pixel bitmap for cmsy210 char#7 \mp --- */
                   35795:       {   7,47625,                      /* character number, location */
                   35796:          15, 2,   -5, 2,      /* topleft row,col, and botleft row,col */
                   35797:           { 19,   20, 3,21, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35798:             "\xf1\x0e\x05\xf6\x92\x8f\x1e\x05\xf8\x92\x8e" }  },
                   35799:       /* --- pixel bitmap for cmsy210 char#8 \oplus --- */
                   35800:       {   8,23656,                      /* character number, location */
                   35801:          17, 2,   -3, 2,      /* topleft row,col, and botleft row,col */
                   35802:           { 19,   20, 3,81, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35803:             "\x67\xa2\x31\x32\x71\x51\x51\x51\x61\x61\x20\xf2\x11"
                   35804:             "\x71\x71\x1f\x11\x81\x81\x0e\x05\x0f\x21\x81\x81\xf2"
                   35805:             "\x11\x71\x71\x10\x21\x61\x61\x51\x51\x51\x72\x31\x32"
                   35806:             "\xa7\x62" }  },
                   35807:       /* --- pixel bitmap for cmsy210 char#9 \ominus --- */
                   35808:       {   9,48393,                      /* character number, location */
                   35809:          17, 2,   -3, 2,      /* topleft row,col, and botleft row,col */
                   35810:           { 19,   20, 3,69, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35811:             "\x67\xa2\x72\x71\xb1\x51\xd1\x20\xf2\x11\xe0\x11\x1f"
                   35812:             "\x11\xe0\x31\x0e\x05\x0f\x21\xe0\x31\xf2\x11\xe0\x11"
                   35813:             "\x10\x21\xd1\x51\xb1\x72\x72\xa7\x62" }  },
                   35814:       /* --- pixel bitmap for cmsy210 char#10 \otimes --- */
                   35815:       {  10,24492,                      /* character number, location */
                   35816:          17, 2,   -3, 2,      /* topleft row,col, and botleft row,col */
                   35817:           { 19,   20, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35818:             "\xc0\x1f\x80\x01\x03\x02\x20\x18\x00\x23\x01\x24\x11"
                   35819:             "\x10\x09\x41\x28\x10\x81\x01\x05\x0c\x10\x60\x80\x00"
                   35820:             "\x03\x0a\x18\x88\x40\x21\x08\x89\x80\x48\x02\x48\x0c"
                   35821:             "\x80\x41\x00\x04\x0c\x18\x80\x3f\x00" }  },
                   35822:       /* --- pixel bitmap for cmsy210 char#11 \oslash --- */
                   35823:       {  11,49196,                      /* character number, location */
                   35824:          17, 2,   -3, 2,      /* topleft row,col, and botleft row,col */
                   35825:           { 19,   20, 3,93, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35826:             "\x67\xa2\x72\x71\xb1\x51\xc2\x31\xc1\x21\x21\xb1\x31"
                   35827:             "\x21\xa1\x41\x11\xa1\x62\x91\x71\x0f\x11\x81\x81\x01"
                   35828:             "\x71\x92\x61\xa1\x11\x41\xa1\x21\x31\xb1\x21\x21\xc1"
                   35829:             "\x32\xc1\x51\xb1\x72\x72\xa7\x61" }  },
                   35830:       /* --- pixel bitmap for cmsy210 char#12 \odot --- */
                   35831:       {  12,50022,                      /* character number, location */
                   35832:          17, 2,   -3, 2,      /* topleft row,col, and botleft row,col */
                   35833:           { 19,   20, 3,69, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35834:             "\x67\xa2\x72\x71\xb1\x51\xd1\x20\xf2\x11\xe0\x11\x11"
                   35835:             "\xe0\x31\x0f\x31\x73\x71\x01\xe0\x31\xf2\x11\xe0\x11"
                   35836:             "\x10\x21\xd1\x51\xb1\x72\x72\xa7\x61" }  },
                   35837:       /* --- pixel bitmap for cmsy210 char#13 \bigcirc --- */
                   35838:       {  13,50943,                      /* character number, location */
                   35839:          21, 2,   -7, 2,      /* topleft row,col, and botleft row,col */
                   35840:           { 25,   28, 3,113, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   35841:             "\x97\xe0\x2b\xc4\x74\x93\xb3\x73\xd3\x53\xe0\x13\x42"
                   35842:             "\xe0\x32\x33\xe0\x33\x10\xf1\x12\xe0\x52\x13\xe0\x53"
                   35843:             "\x0f\x52\xe0\x72\x03\xe0\x53\xf1\x12\xe0\x52\x10\x13"
                   35844:             "\xe0\x33\x32\xe0\x32\x43\xe0\x13\x53\xd3\x73\xb3\x94"
                   35845:             "\x74\xcb\xe0\x27\x92" }  },
                   35846:       /* --- pixel bitmap for cmsy210 char#14 \circ --- */
                   35847:       {  14,51639,                      /* character number, location */
                   35848:          13, 2,    2, 2,      /* topleft row,col, and botleft row,col */
                   35849:           { 11,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35850:             "\x70\xe0\x8f\xe3\x0e\x3e\xe0\x01\x0f\xf8\xe0\x8e\xe3"
                   35851:             "\x0f\x1c\x00" }  },
                   35852:       /* --- pixel bitmap for cmsy210 char#15 \bullet --- */
                   35853:       {  15,52258,                      /* character number, location */
                   35854:          13, 2,    2, 2,      /* topleft row,col, and botleft row,col */
                   35855:           { 11,   11, 3,17, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35856:             "\x43\x67\x39\x1f\x4b\x19\x37\x63\x42" }  },
                   35857:       /* --- pixel bitmap for cmsy210 char#16 \asymp --- */
                   35858:       {  16,52962,                      /* character number, location */
                   35859:          14, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   35860:           { 19,   14, 3,48, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35861:             "\x02\xe0\x15\xd3\x13\xb3\x35\x55\x6b\xb5\x70\xf1\xe0"
                   35862:             "\x50\x75\xbb\x65\x55\x33\xb3\x13\xd5\xe0\x12" }  },
                   35863:       /* --- pixel bitmap for cmsy210 char#17 \equiv --- */
                   35864:       {  17,38753,                      /* character number, location */
                   35865:          14, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   35866:           { 19,   14, 3,26, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35867:             "\xf1\x0e\x05\xf3\xe0\x5f\x1e\x05\xf3\xe0\x5f\x1e\x05" }  },
                   35868:       /* --- pixel bitmap for cmsy210 char#18 \subseteq --- */
                   35869:       {  18,53719,                      /* character number, location */
                   35870:          18, 2,   -6, 2,      /* topleft row,col, and botleft row,col */
                   35871:           { 19,   24, 3,64, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35872:             "\x7c\x5e\x34\xe3\xe0\x13\xe0\x22\xe0\x23\xe0\x2f\x32"
                   35873:             "\xe0\x33\xe0\x32\xe0\x33\xe0\x33\xe0\x34\xe0\x3e\x7c"
                   35874:             "\xf3\xe0\x50\xf1\x1e\x04" }  },
                   35875:       /* --- pixel bitmap for cmsy210 char#19 \supseteq --- */
                   35876:       {  19,54478,                      /* character number, location */
                   35877:          18, 2,   -6, 2,      /* topleft row,col, and botleft row,col */
                   35878:           { 19,   24, 3,65, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35879:             "\x0c\x7e\xe0\x34\xe0\x33\xe0\x33\xe0\x32\xe0\x33\xf3"
                   35880:             "\xe0\x32\xe0\x23\xe0\x22\xe0\x23\xe0\x13\xe4\x3e\x5c"
                   35881:             "\x70\xf3\xe0\x5f\x1e\x04\x13" }  },
                   35882:       /* --- pixel bitmap for cmsy210 char#20 \leq --- */
                   35883:       {  20,37271,                      /* character number, location */
                   35884:          18, 2,   -6, 2,      /* topleft row,col, and botleft row,col */
                   35885:           { 19,   24, 3,68, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35886:             "\xe0\x32\xe0\x14\xd4\xd4\xc5\xc5\xc4\xd4\xdf\x14\xe0"
                   35887:             "\x10\x24\xe0\x34\xe0\x35\xe0\x25\xe0\x34\xe0\x34\xe0"
                   35888:             "\x34\xe0\x32\xf3\xe0\x5f\x1e\x05" }  },
                   35889:       /* --- pixel bitmap for cmsy210 char#21 \geq --- */
                   35890:       {  21,38004,                      /* character number, location */
                   35891:          18, 2,   -6, 2,      /* topleft row,col, and botleft row,col */
                   35892:           { 19,   24, 3,70, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35893:             "\x02\xe0\x34\xe0\x34\xe0\x34\xe0\x35\xe0\x25\xe0\x34"
                   35894:             "\xe0\x34\x20\xf1\xe0\x14\xd4\xd4\xc5\xc5\xc4\xd4\xd4"
                   35895:             "\xe0\x12\xe0\x30\xf3\xe0\x5f\x1e\x05" }  },
                   35896:       /* --- pixel bitmap for cmsy210 char#22 \preceq --- */
                   35897:       {  22,55205,                      /* character number, location */
                   35898:          18, 2,   -6, 2,      /* topleft row,col, and botleft row,col */
                   35899:           { 19,   24, 3,70, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35900:             "\xf1\xe0\x32\xe0\x23\xe0\x22\xe0\x23\xe0\x13\xe4\xb6"
                   35901:             "\x5f\x1c\x70\x86\xe0\x34\xe0\x33\xe0\x33\xe0\x32\xe0"
                   35902:             "\x33\xf1\xe0\x32\xf3\xe0\x5f\x1e\x05" }  },
                   35903:       /* --- pixel bitmap for cmsy210 char#23 \succeq --- */
                   35904:       {  23,55931,                      /* character number, location */
                   35905:          18, 2,   -6, 2,      /* topleft row,col, and botleft row,col */
                   35906:           { 19,   24, 3,72, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35907:             "\xf1\x02\xe0\x33\xe0\x32\xe0\x33\xe0\x33\xe0\x34\xe0"
                   35908:             "\x36\x80\xf1\x7c\x56\xb4\xe3\xe0\x13\xe0\x22\xe0\x23"
                   35909:             "\xe0\x2f\x12\xe0\x30\xf3\xe0\x5f\x1e\x05" }  },
                   35910:       /* --- pixel bitmap for cmsy210 char#24 \sim --- */
                   35911:       {  24,56635,                      /* character number, location */
                   35912:          11, 2,    4, 2,      /* topleft row,col, and botleft row,col */
                   35913:           { 19,    7, 3,27, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35914:             "\x34\xb1\x18\x91\x19\x75\x45\x45\x79\x11\x98\x11\xb4"
                   35915:             "\x36" }  },
                   35916:       /* --- pixel bitmap for cmsy210 char#25 \approx --- */
                   35917:       {  25,57397,                      /* character number, location */
                   35918:          14, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   35919:           { 19,   14, 3,45, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35920:             "\x25\xb1\x18\x9d\x54\x5d\x89\x11\xb5\x20\xf1\xe0\x50"
                   35921:             "\x25\xb1\x18\x9d\x54\x5d\x89\x11\xb5\x20" }  },
                   35922:       /* --- pixel bitmap for cmsy210 char#26 \subset --- */
                   35923:       {  26,33261,                      /* character number, location */
                   35924:          16, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
                   35925:           { 19,   18, 3,52, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35926:             "\x7c\x5e\x34\xe3\xe0\x13\xe0\x22\xe0\x23\xe0\x2f\x32"
                   35927:             "\xe0\x33\xe0\x32\xe0\x33\xe0\x33\xe0\x34\xe0\x3e\x7c" }  },
                   35928:       /* --- pixel bitmap for cmsy210 char#27 \supset --- */
                   35929:       {  27,33979,                      /* character number, location */
                   35930:          16, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
                   35931:           { 19,   18, 3,53, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35932:             "\x0c\x7e\xe0\x34\xe0\x33\xe0\x33\xe0\x32\xe0\x33\xf3"
                   35933:             "\xe0\x32\xe0\x23\xe0\x22\xe0\x23\xe0\x13\xe4\x3e\x5c"
                   35934:             "\x70" }  },
                   35935:       /* --- pixel bitmap for cmsy210 char#28 \ll --- */
                   35936:       {  28,58242,                      /* character number, location */
                   35937:          17, 2,   -3, 2,      /* topleft row,col, and botleft row,col */
                   35938:           { 25,   20, 3,80, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35939:             "\xe2\x72\xc4\x54\xb3\x63\xb4\x54\xb3\x63\xb4\x54\xb3"
                   35940:             "\x63\xb4\x54\xb3\x63\xbf\x14\x54\xc0\x23\x63\xe4\x54"
                   35941:             "\xe3\x63\xe4\x54\xe3\x63\xe4\x54\xe3\x63\xe4\x54\xe2"
                   35942:             "\x72" }  },
                   35943:       /* --- pixel bitmap for cmsy210 char#29 \gg --- */
                   35944:       {  29,59120,                      /* character number, location */
                   35945:          17, 2,   -3, 2,      /* topleft row,col, and botleft row,col */
                   35946:           { 25,   20, 3,81, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35947:             "\x02\x72\xe4\x54\xe3\x63\xe4\x54\xe3\x63\xe4\x54\xe3"
                   35948:             "\x63\xe4\x54\xe3\x63\x20\xf1\xc4\x54\xb3\x63\xb4\x54"
                   35949:             "\xb3\x63\xb4\x54\xb3\x63\xb4\x54\xb3\x63\xb4\x54\xc2"
                   35950:             "\x72\xe3" }  },
                   35951:       /* --- pixel bitmap for cmsy210 char#30 \prec --- */
                   35952:       {  30,59845,                      /* character number, location */
                   35953:          16, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
                   35954:           { 19,   18, 3,60, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35955:             "\xf1\xe0\x32\xe0\x23\xe0\x22\xe0\x23\xe0\x13\xe4\xb6"
                   35956:             "\x5f\x1c\x70\x86\xe0\x34\xe0\x33\xe0\x33\xe0\x32\xe0"
                   35957:             "\x33\xf1\xe0\x32" }  },
                   35958:       /* --- pixel bitmap for cmsy210 char#31 \succ --- */
                   35959:       {  31,60525,                      /* character number, location */
                   35960:          16, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
                   35961:           { 19,   18, 3,61, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35962:             "\xf1\x02\xe0\x33\xe0\x32\xe0\x33\xe0\x33\xe0\x34\xe0"
                   35963:             "\x36\x80\xf1\x7c\x56\xb4\xe3\xe0\x13\xe0\x22\xe0\x23"
                   35964:             "\xe0\x2f\x12\xe0\x33" }  },
                   35965:       /* --- pixel bitmap for cmsy210 char#32 \leftarrow --- */
                   35966:       {  32,30084,                      /* character number, location */
                   35967:          15, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   35968:           { 25,   16, 3,65, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35969:             "\xf1\x62\xe0\x30\xf1\x52\xe0\x40\x43\xe0\x82\xe0\x73"
                   35970:             "\xe0\x60\xf1\x1e\x0a\x23\xe0\xa2\xe0\x93\xe0\x40\xf1"
                   35971:             "\x52\xe0\x40\xf1\x62\xe0\x35" }  },
                   35972:       /* --- pixel bitmap for cmsy210 char#33 \rightarrow --- */
                   35973:       {  33,31134,                      /* character number, location */
                   35974:          15, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   35975:           { 25,   16, 3,63, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35976:             "\xf1\xe0\x32\x60\xf1\xe0\x42\x50\xe0\x43\xe0\x92\xe0"
                   35977:             "\xa3\x2f\x1e\x0b\xe0\x63\xe0\x72\xe0\x83\x40\xf1\xe0"
                   35978:             "\x42\x50\xf1\xe0\x32\x60" }  },
                   35979:       /* --- pixel bitmap for cmsy210 char#34 \uparrow --- */
                   35980:       {  34,29003,                      /* character number, location */
                   35981:          20, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   35982:           { 14,   26, 3,43, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35983:             "\x71\x60\xf1\x62\x60\x54\x96\x78\x44\x12\x14\x13\x32"
                   35984:             "\x34\x52\x51\xfe\x62\x60\xf1\x62\x63" }  },
                   35985:       /* --- pixel bitmap for cmsy210 char#35 \downarrow --- */
                   35986:       {  35,28158,                      /* character number, location */
                   35987:          20, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   35988:           { 14,   26, 3,43, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35989:             "\xfe\x62\x60\xf1\x62\x61\x52\x54\x32\x33\x14\x12\x14"
                   35990:             "\x48\x76\x94\x50\xf1\x62\x60\x71\x63" }  },
                   35991:       /* --- pixel bitmap for cmsy210 char#36 \leftrightarrow --- */
                   35992:       {  36,32521,                      /* character number, location */
                   35993:          15, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   35994:           { 25,   16, 3,69, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   35995:             "\xf1\x62\x92\x60\xf1\x52\xb2\x50\x43\xb3\x82\xd2\x63"
                   35996:             "\xe0\x13\x20\xf1\x1e\x0a\x23\xe0\x13\x62\xd2\x83\xb3"
                   35997:             "\x40\xf1\x52\xb2\x50\xf1\x62\x92\x62" }  },
                   35998:       /* --- pixel bitmap for cmsy210 char#37 \nearrow --- */
                   35999:       {  37,61579,                      /* character number, location */
                   36000:          21, 2,   -5, 2,      /* topleft row,col, and botleft row,col */
                   36001:           { 26,   26, 3,117, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   36002:             "\xe0\x11\xe0\xa4\x52\xe0\x39\xe0\x56\xe0\x84\xe0\x75"
                   36003:             "\xe0\x63\x12\xe0\x53\x22\xe0\x43\x42\xe0\x23\x52\xe0"
                   36004:             "\x13\x72\xd3\x81\xd3\xe0\x83\xe0\x83\xe0\x83\xe0\x83"
                   36005:             "\xe0\x83\xe0\x83\xe0\x83\xe0\x83\xe0\x83\xe0\x83\xe0"
                   36006:             "\x83\xe0\x83\xe0\x92\xe0\xa2" }  },
                   36007:       /* --- pixel bitmap for cmsy210 char#38 \searrow --- */
                   36008:       {  38,62663,                      /* character number, location */
                   36009:          19, 2,   -7, 2,      /* topleft row,col, and botleft row,col */
                   36010:           { 26,   26, 3,117, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   36011:             "\x02\xe0\xa3\xe0\xa3\xe0\xa3\xe0\xa3\xe0\xa3\xe0\xa3"
                   36012:             "\xe0\xa3\xe0\xa3\xe0\xa3\xe0\xa3\xe0\xa3\xe0\xa3\xe0"
                   36013:             "\xa3\xe0\xa3\x81\xe0\x13\x72\xe0\x13\x52\xe0\x33\x42"
                   36014:             "\xe0\x43\x22\xe0\x63\x12\xe0\x75\xe0\x84\xe0\x66\xe0"
                   36015:             "\x49\xe0\x14\x52\xe0\x21\xa2" }  },
                   36016:       /* --- pixel bitmap for cmsy210 char#39 \simeq --- */
                   36017:       {  39,63427,                      /* character number, location */
                   36018:          13, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   36019:           { 19,   13, 3,30, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36020:             "\x25\xb1\x19\x8d\x54\x5d\x98\x11\xb5\x20\xf4\xe0\x5f"
                   36021:             "\x1e\x05" }  },
                   36022:       /* --- pixel bitmap for cmsy210 char#40 \Leftarrow --- */
                   36023:       {  40,64447,                      /* character number, location */
                   36024:          15, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   36025:           { 25,   16, 3,65, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36026:             "\x92\xe0\xf1\x82\xe0\x10\x72\xe0\x8e\x05\x4e\x07\x24"
                   36027:             "\xe0\x54\xe0\x93\xe0\xa2\xe0\xae\x06\x6e\x05\x72\xe0"
                   36028:             "\x20\xf1\x82\xe0\x10\x92\xe2" }  },
                   36029:       /* --- pixel bitmap for cmsy210 char#41 \Rightarrow --- */
                   36030:       {  41,65470,                      /* character number, location */
                   36031:          15, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   36032:           { 25,   16, 3,65, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36033:             "\xe2\x90\xf1\xe0\x12\x80\xe0\x22\x7e\x05\x6e\x07\xe0"
                   36034:             "\x94\xe0\x94\xe0\x63\xe0\x72\x4e\x06\x5e\x05\xe0\x82"
                   36035:             "\x70\xf1\xe0\x12\x80\xe2\x92" }  },
                   36036:       /* --- pixel bitmap for cmsy210 char#42 \Uparrow --- */
                   36037:       {  42,66308,                      /* character number, location */
                   36038:          20, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   36039:           { 17,   26, 3,53, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36040:             "\xf1\x81\x80\xf1\x73\x70\x62\x12\xb2\x32\x93\x33\x73"
                   36041:             "\x53\x54\x54\x23\x12\x52\x15\x22\x52\x22\xfe\x42\x52"
                   36042:             "\x40" }  },
                   36043:       /* --- pixel bitmap for cmsy210 char#43 \Downarrow --- */
                   36044:       {  43,67220,                      /* character number, location */
                   36045:          20, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   36046:           { 17,   26, 3,53, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36047:             "\xfe\x42\x52\x42\x22\x52\x25\x12\x52\x13\x24\x54\x53"
                   36048:             "\x53\x73\x33\x92\x32\xb2\x12\x60\xf1\x73\x70\xf1\x81"
                   36049:             "\x80" }  },
                   36050:       /* --- pixel bitmap for cmsy210 char#44 \Leftrightarrow --- */
                   36051:       {  44,68552,                      /* character number, location */
                   36052:          15, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   36053:           { 27,   16, 3,73, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36054:             "\xf1\x72\x92\x70\xf1\x62\xb2\x60\x5e\x03\x8e\x07\x53"
                   36055:             "\xe0\x33\x23\xe0\x73\x13\xe0\x53\x42\xe0\x32\x7e\x05"
                   36056:             "\x9e\x03\x50\xf1\x62\xb2\x60\xf1\x72\x92\x70" }  },
                   36057:       /* --- pixel bitmap for cmsy210 char#45 \nwarrow --- */
                   36058:       {  45,69626,                      /* character number, location */
                   36059:          21, 1,   -5, 1,      /* topleft row,col, and botleft row,col */
                   36060:           { 26,   26, 3,116, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   36061:             "\xa1\xe0\x22\x54\xe0\x19\xe0\x46\xe0\x64\xe0\x85\xe0"
                   36062:             "\x72\x13\xe0\x62\x23\xe0\x42\x43\xe0\x32\x53\xe0\x12"
                   36063:             "\x73\xe0\x11\x83\xe0\xa3\xe0\xa3\xe0\xa3\xe0\xa3\xe0"
                   36064:             "\xa3\xe0\xa3\xe0\xa3\xe0\xa3\xe0\xa3\xe0\xa3\xe0\xa3"
                   36065:             "\xe0\xa3\xe0\xa3\xe0\xa2" }  },
                   36066:       /* --- pixel bitmap for cmsy210 char#46 \swarrow --- */
                   36067:       {  46,70710,                      /* character number, location */
                   36068:          19, 1,   -7, 1,      /* topleft row,col, and botleft row,col */
                   36069:           { 26,   26, 3,117, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   36070:             "\xe0\xa2\xe0\x93\xe0\x83\xe0\x83\xe0\x83\xe0\x83\xe0"
                   36071:             "\x83\xe0\x83\xe0\x83\xe0\x83\xe0\x83\xe0\x83\xe0\x83"
                   36072:             "\xe0\x83\xd1\x83\xd2\x73\xe0\x12\x53\xe0\x22\x43\xe0"
                   36073:             "\x42\x23\xe0\x52\x13\xe0\x65\xe0\x74\xe0\x86\xe0\x59"
                   36074:             "\xe0\x32\x54\xe0\xa1\xe0\x12" }  },
                   36075:       /* --- pixel bitmap for cmsy210 char#47 \propto --- */
                   36076:       {  47,71806,                      /* character number, location */
                   36077:          13, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   36078:           { 19,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36079:             "\x78\x00\x67\x0f\x86\xc0\x18\x04\x6e\x10\x60\x81\x00"
                   36080:             "\x0e\x04\x70\x20\x80\x03\x01\x34\x10\xb0\x83\xc0\x18"
                   36081:             "\x08\x83\x87\x07\x70" }  },
                   36082:       /* --- pixel bitmap for cmsy210 char#48 \prime --- */
                   36083:       {  48,72364,                      /* character number, location */
                   36084:          16, 1,    1, 1,      /* topleft row,col, and botleft row,col */
                   36085:           {  7,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36086:             "\x20\x38\x1c\x87\xc3\x71\x38\x0c\x87\xc3\x60\x18\x0c"
                   36087:             "\x00" }  },
                   36088:       /* --- pixel bitmap for cmsy210 char#49 \infty --- */
                   36089:       {  49,43720,                      /* character number, location */
                   36090:          13, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   36091:           { 25,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36092:             "\xf8\x00\x3e\xb8\x03\xc6\x08\x0c\x02\x12\x30\x02\x14"
                   36093:             "\xc0\x02\x30\x00\x07\x60\x00\x0e\xc0\x00\x1c\x80\x01"
                   36094:             "\x68\x00\x05\x88\x01\x09\x08\x06\x62\x0c\xb8\x83\x0f"
                   36095:             "\xe0\x03" }  },
                   36096:       /* --- pixel bitmap for cmsy210 char#50 \in --- */
                   36097:       {  50,34652,                      /* character number, location */
                   36098:          16, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
                   36099:           { 15,   18, 3,38, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36100:             "\x78\x4b\x34\xa3\xb3\xc2\xc3\xc2\xdf\x1e\x01\x02\xd3"
                   36101:             "\xd2\xd3\xd3\xd4\xcb\x78" }  },
                   36102:       /* --- pixel bitmap for cmsy210 char#51 \ni --- */
                   36103:       {  51,73033,                      /* character number, location */
                   36104:          16, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
                   36105:           { 15,   18, 3,39, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36106:             "\x08\x7b\xc4\xd3\xd3\xd2\xd3\xd2\x0f\x1e\x01\xd2\xc3"
                   36107:             "\xc2\xc3\xb3\xa4\x3b\x48\x72" }  },
                   36108:       /* --- pixel bitmap for cmsy210 char#52 \triangle --- */
                   36109:       {  52,73767,                      /* character number, location */
                   36110:          21, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   36111:           { 22,   21, 3,84, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36112:             "\xa2\xa0\xf1\x94\x90\x86\xe0\x22\x22\xe0\x13\x23\xe2"
                   36113:             "\x42\xd3\x43\xc2\x62\xb3\x63\xa2\x82\x93\x83\x82\xa2"
                   36114:             "\x73\xa3\x62\xc2\x53\xc3\x42\xe2\x33\xe3\x22\xe0\x22"
                   36115:             "\x1f\x1e\x08" }  },
                   36116:       /* --- pixel bitmap for cmsy210 char#53 \bigtriangledown --- */
                   36117:       {  53,74546,                      /* character number, location */
                   36118:          14, 2,   -7, 2,      /* topleft row,col, and botleft row,col */
                   36119:           { 22,   21, 3,85, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36120:             "\xf1\x0e\x08\x12\xe0\x22\x23\xe3\x32\xe2\x43\xc3\x52"
                   36121:             "\xc2\x63\xa3\x72\xa2\x83\x83\x92\x82\xa3\x63\xb2\x62"
                   36122:             "\xc3\x43\xd2\x42\xe3\x23\xe0\x12\x22\xe0\x26\x80\xf1"
                   36123:             "\x94\x90\xa2\xa2" }  },
                   36124:       /* --- pixel bitmap for cmsy210 char#54 \boldslash --- */
                   36125:       {  54,74934,                      /* character number, location */
                   36126:          21, 4,   -7, 4,      /* topleft row,col, and botleft row,col */
                   36127:           { 15,   28, 3,61, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36128:             "\xd2\xc3\xc2\xc3\xc2\xc3\xc2\xc3\xc2\xc3\xc2\xc3\x50"
                   36129:             "\xf1\x72\x60\x63\xc2\xc3\xc2\xc3\xc2\xc3\xc2\xc3\xc2"
                   36130:             "\xc3\xc2\xc3\xc2\xd3" }  },
                   36131:       /* --- pixel bitmap for cmsy210 char#55 \' --- */
                   36132:       {  55,75315,                      /* character number, location */
                   36133:          13, 2,    1, 2,      /* topleft row,col, and botleft row,col */
                   36134:           {  3,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36135:             "\xdb\xb6\x7f\xdb\x06" }  },
                   36136:       /* --- pixel bitmap for cmsy210 char#56 \forall --- */
                   36137:       {  56,35266,                      /* character number, location */
                   36138:          20, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
                   36139:           { 16,   21, 3,75, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36140:             "\xf1\x02\xc2\x03\xa3\xf1\x12\xa2\x10\x13\x83\x10\xf1"
                   36141:             "\x2c\x20\xf1\x32\x62\x30\x33\x43\x30\xf1\x42\x42\x40"
                   36142:             "\x43\x23\x92\x22\xa6\x50\xf2\x64\x60\xf1\x72\x71" }  },
                   36143:       /* --- pixel bitmap for cmsy210 char#57 \exists --- */
                   36144:       {  57,35929,                      /* character number, location */
                   36145:          20, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   36146:           { 12,   20, 3,20, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36147:             "\xf1\x0c\xf6\xa2\x0f\x1c\xf6\xa2\x0f\x1c" }  },
                   36148:       /* --- pixel bitmap for cmsy210 char#58 \neg --- */
                   36149:       {  58,36565,                      /* character number, location */
                   36150:          11, 2,    2, 2,      /* topleft row,col, and botleft row,col */
                   36151:           { 15,    9, 3,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36152:             "\xf1\x0e\x01\xf6\xd2" }  },
                   36153:       /* --- pixel bitmap for cmsy210 char#59 \emptyset --- */
                   36154:       {  59,76030,                      /* character number, location */
                   36155:          23, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   36156:           { 13,   26, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36157:             "\x00\x06\xc0\xc0\x1f\x8c\x41\x70\x0c\x9e\xe0\x12\x4c"
                   36158:             "\x83\x79\x38\x0f\xe3\x61\x3c\x8e\xc7\xf0\x18\x1e\xc3"
                   36159:             "\x73\x78\x06\xcb\x20\x1f\xe6\xc1\x38\x08\xc6\xe0\x0f"
                   36160:             "\x0c\x80\x01\x00" }  },
                   36161:       /* --- pixel bitmap for cmsy210 char#60 \Re --- */
                   36162:       {  60,77901,                      /* character number, location */
                   36163:          21, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   36164:           { 20,   22, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36165:             "\x00\x70\x80\xc3\x0e\x64\xc2\x20\x2c\x18\x82\x81\x23"
                   36166:             "\x18\x30\x84\x01\x86\x18\x60\x90\x03\x0c\x39\x60\x90"
                   36167:             "\xff\x21\x39\x06\x92\x63\xc0\x38\x06\x80\x61\x00\x18"
                   36168:             "\x06\x80\x61\x20\x18\x06\x83\x61\x20\x08\x86\x44\x60"
                   36169:             "\x86\x03\x1c" }  },
                   36170:       /* --- pixel bitmap for cmsy210 char#61 \Im --- */
                   36171:       {  61,79234,                      /* character number, location */
                   36172:          20, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   36173:           { 18,   20, 3,77, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36174:             "\x46\xa2\x53\x71\x92\x51\xb2\x32\xd3\x1f\x11\xe0\x31"
                   36175:             "\xd3\x21\xb1\x31\x22\x82\x31\x43\x52\x31\xc2\x40\xf1"
                   36176:             "\xd2\x33\xb2\x43\x92\x62\x82\x72\x62\x93\x33\xb5\x50" }  },
                   36177:       /* --- pixel bitmap for cmsy210 char#62 \top --- */
                   36178:       {  62,79992,                      /* character number, location */
                   36179:          20, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   36180:           { 20,   20, 3,17, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36181:             "\xf1\x0e\x06\xfe\x92\x90\xf2\x92\x93" }  },
                   36182:       /* --- pixel bitmap for cmsy210 char#63 \bot --- */
                   36183:       {  63,80741,                      /* character number, location */
                   36184:          20, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   36185:           { 20,   20, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36186:             "\xfe\x92\x90\xf2\x92\x9f\x1e\x06" }  },
                   36187:       /* --- pixel bitmap for cmsy210 char#64 \aleph --- */
                   36188:       {  64,81982,                      /* character number, location */
                   36189:          20, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   36190:           { 14,   20, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36191:             "\x01\xc2\x80\x31\x40\x18\x30\x0c\x18\x02\xce\x81\xd3"
                   36192:             "\xa0\x62\x88\x30\x31\x4c\x0c\x16\x03\xc7\x80\x61\x40"
                   36193:             "\x18\x30\x0c\x18\x03\xcc\x00\x1f\x80" }  },
                   36194:       /* --- pixel bitmap for cmsy210 char#65 \calA --- */
                   36195:       {  65,  774,                      /* character number, location */
                   36196:          21, 0,   -2, 0,      /* topleft row,col, and botleft row,col */
                   36197:           { 22,   23, 3,101, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   36198:             "\xe0\x31\x40\xf1\xe0\x22\x40\xf1\xe0\x13\x40\xe1\x12"
                   36199:             "\xe0\x41\x13\x30\xf1\xd1\x32\x30\xf1\xc1\x42\x30\xb1"
                   36200:             "\x52\xd2\x52\xd1\x62\xc1\x72\xca\xb1\x82\xa2\x82\x92"
                   36201:             "\x92\x41\x41\xa3\x23\x21\xc2\x35\xc4\x23\xe0\x30" }  },
                   36202:       /* --- pixel bitmap for cmsy210 char#66 \calB --- */
                   36203:       {  66, 1580,                      /* character number, location */
                   36204:          21, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   36205:           { 19,   22, 3,91, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36206:             "\x52\x56\x53\x32\x43\x52\x12\x72\xf1\x54\x82\x44\x82"
                   36207:             "\x53\x92\x53\x72\x72\x62\x92\x34\x93\x54\x72\x83\x62"
                   36208:             "\x93\x52\xa2\x20\xf2\x22\xb2\x20\x22\xa2\x44\x92\x44"
                   36209:             "\x82\x42\x13\x52\x62\x27\x82" }  },
                   36210:       /* --- pixel bitmap for cmsy210 char#67 \calC --- */
                   36211:       {  67, 2301,                      /* character number, location */
                   36212:          21, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
                   36213:           { 15,   22, 3,59, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36214:             "\x96\x72\x42\x52\x62\x42\x72\xf1\x32\x72\x10\x22\x82"
                   36215:             "\x32\x71\x30\xf2\x12\xcf\x52\xd2\xa2\x13\x82\x33\x62"
                   36216:             "\x53\x42\x76\x60" }  },
                   36217:       /* --- pixel bitmap for cmsy210 char#68 \calD --- */
                   36218:       {  68, 3087,                      /* character number, location */
                   36219:          20, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   36220:           { 23,   20, 3,71, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36221:             "\x5c\x92\x32\x55\x52\x42\x83\x32\x52\x93\x12\x52\xb3"
                   36222:             "\xf3\x72\xc2\x62\xd2\xf2\x62\xc2\x10\x52\xc2\x72\xb2"
                   36223:             "\x82\xa2\x82\xa2\x92\x82\xb2\x53\xb9\xc2" }  },
                   36224:       /* --- pixel bitmap for cmsy210 char#69 \calE --- */
                   36225:       {  69, 3788,                      /* character number, location */
                   36226:          21, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   36227:           { 16,   22, 3,63, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36228:             "\x96\x82\x43\x62\x62\x52\x72\xf2\x42\xa0\x43\xe3\xe5"
                   36229:             "\xa2\xd2\xa0\xf1\x22\xc0\xf1\x12\xd2\xe2\xa2\x22\x92"
                   36230:             "\x33\x72\x53\x43\x76\x82" }  },
                   36231:       /* --- pixel bitmap for cmsy210 char#70 \calF --- */
                   36232:       {  70, 4566,                      /* character number, location */
                   36233:          20, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   36234:           { 24,   21, 3,81, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36235:             "\x9e\x82\x32\x73\x62\x32\x82\x62\x42\xe0\x12\x52\xb0"
                   36236:             "\xf1\xb2\xb0\xf2\xa2\xc0\x9a\xe2\xd0\xf2\x82\xe0\xf1"
                   36237:             "\x72\xe0\x10\x11\x42\xe0\x22\x42\xe0\x23\x22\xe0\x45"
                   36238:             "\xe0\x42" }  },
                   36239:       /* --- pixel bitmap for cmsy210 char#71 \calG --- */
                   36240:       {  71, 5309,                      /* character number, location */
                   36241:          21, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   36242:           { 17,   25, 3,91, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36243:             "\x97\x82\x53\x52\x82\x42\x92\x32\x92\x32\x92\x42\xd0"
                   36244:             "\xf1\x12\xe2\xe0\x12\xd1\x1f\x12\xb2\x2f\x12\xa3\x23"
                   36245:             "\x83\x42\x74\x44\x42\x12\x66\x22\xe0\x12\x40\xf1\xa2"
                   36246:             "\x50\x12\x62\x74\x32\xa5\x92" }  },
                   36247:       /* --- pixel bitmap for cmsy210 char#72 \calH --- */
                   36248:       {  72, 6195,                      /* character number, location */
                   36249:          20, 0,   -2, 0,      /* topleft row,col, and botleft row,col */
                   36250:           { 23,   22, 3,93, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36251:             "\x56\xa2\x32\x42\xa2\x22\x52\x92\x22\x62\x92\x12\x72"
                   36252:             "\x92\xa2\x82\x20\xf1\x82\x92\x20\xf1\x82\x82\x30\x72"
                   36253:             "\x92\x7e\x02\xa2\x82\x40\xf2\x62\x92\x40\xf2\x52\x92"
                   36254:             "\x50\xf1\x42\xa2\x32\xe0\x25\x25" }  },
                   36255:       /* --- pixel bitmap for cmsy210 char#73 \calI --- */
                   36256:       {  73, 6974,                      /* character number, location */
                   36257:          20, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   36258:           { 18,   20, 3,51, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36259:             "\x5d\x32\x62\x72\x62\x72\x72\x60\xf2\x92\x70\xf3\x82"
                   36260:             "\x80\xf3\x72\x90\xf1\x62\xa0\x52\x62\x72\x72\x3d\x52" }  },
                   36261:       /* --- pixel bitmap for cmsy210 char#74 \calJ --- */
                   36262:       {  74, 7714,                      /* character number, location */
                   36263:          20, 2,   -4, 2,      /* topleft row,col, and botleft row,col */
                   36264:           { 23,   24, 3,79, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36265:             "\xda\xa3\x52\xc2\x62\xc2\x72\xb2\x72\xc2\x62\xc2\x72"
                   36266:             "\xe0\x72\x60\xf2\xe2\x70\xf3\xd2\x80\xc2\xa1\xa2\x92"
                   36267:             "\xa2\x9f\x12\x92\xa2\x82\xb3\x62\xd3\x42\xe0\x16\xe0"
                   36268:             "\x10" }  },
                   36269:       /* --- pixel bitmap for cmsy210 char#75 \calK --- */
                   36270:       {  75, 8549,                      /* character number, location */
                   36271:          21, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   36272:           { 21,   22, 3,107, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   36273:             "\x52\xa4\x43\x82\x22\x52\x62\x42\x52\x42\x61\x62\x32"
                   36274:             "\xe2\x22\xe2\x22\xe0\x12\x12\xc0\xf1\x44\xd0\x32\x12"
                   36275:             "\xe0\x22\x13\xc0\xf1\x32\x22\xc0\x22\x33\xd2\x42\xd2"
                   36276:             "\x43\xb2\x62\xb2\x63\x62\x22\x73\x52\x12\x93\x32\x22"
                   36277:             "\xa5\x40" }  },
                   36278:       /* --- pixel bitmap for cmsy210 char#76 \calL --- */
                   36279:       {  76, 9339,                      /* character number, location */
                   36280:          21, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   36281:           { 18,   22, 3,65, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36282:             "\xb5\xc2\x23\xa2\x42\x92\x52\x82\x62\x82\x90\xf2\x62"
                   36283:             "\xa0\xf3\x52\xb0\xf2\x42\xc0\xf1\x32\xd0\x22\xc2\x17"
                   36284:             "\x72\x22\x35\x32\x22\x76\x32" }  },
                   36285:       /* --- pixel bitmap for cmsy210 char#77 \calM --- */
                   36286:       {  77,10470,                      /* character number, location */
                   36287:          21, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   36288:           { 32,   23, 3,155, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   36289:             "\xb2\xe0\x41\xf1\xa3\xe0\x32\xa3\xe0\x22\xb3\xe0\x13"
                   36290:             "\xb4\xd4\xb1\x12\xc2\x12\xa1\x22\xc1\x22\xa1\x22\xb1"
                   36291:             "\x22\xb1\x22\xa2\x22\xa1\x33\x82\x32\xa1\x42\x72\x42"
                   36292:             "\xa1\x42\x71\x52\x91\x52\x61\x52\xa1\x53\x42\x52\xa1"
                   36293:             "\x62\x32\x62\x91\x72\x22\x72\x91\x75\x82\x81\x93\x92"
                   36294:             "\x81\x92\xa2\x32\x22\xe0\x72\x35\xe0\x84\x23\xe0\xe0" }  },
                   36295:       /* --- pixel bitmap for cmsy210 char#78 \calN --- */
                   36296:       {  78,11477,                      /* character number, location */
                   36297:          22,-1,   -2,-1,      /* topleft row,col, and botleft row,col */
                   36298:           { 30,   24, 3,145, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   36299:             "\xe0\xc4\xa2\xd5\xa2\xc2\xd3\xc1\xe4\xa1\x60\xf1\x91"
                   36300:             "\x12\xa1\x60\x91\x13\x91\xe0\x11\x22\x81\xe0\x11\x32"
                   36301:             "\x81\xe0\x11\x33\x71\xe0\x11\x42\x71\xe0\x11\x43\x51"
                   36302:             "\x80\xf1\x71\x62\x51\x80\x71\x63\x31\xe0\x11\x82\x31"
                   36303:             "\xe0\x11\x83\x21\xe0\x11\x92\x21\xe1\xa3\x11\xe1\xb3"
                   36304:             "\xa2\x21\xc3\xa5\xe0\xc3\xe0\xc5" }  },
                   36305:       /* --- pixel bitmap for cmsy210 char#79 \calO --- */
                   36306:       {  79,12356,                      /* character number, location */
                   36307:          21, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   36308:           { 21,   22, 3,97, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36309:             "\x82\x35\xa2\x22\x34\x62\x32\x62\x52\x32\x73\xf1\x32"
                   36310:             "\x32\x92\x22\x32\xa2\x12\x41\xb2\xf1\x12\xe0\x22\x02"
                   36311:             "\xe0\x32\x0f\x22\xe0\x22\x12\xe0\x12\x22\xe2\x33\xd2"
                   36312:             "\x42\xc2\x53\xa2\x72\x92\x84\x52\xc7\xa0" }  },
                   36313:       /* --- pixel bitmap for cmsy210 char#80 \calP --- */
                   36314:       {  80,13135,                      /* character number, location */
                   36315:          20, 0,   -2, 0,      /* topleft row,col, and botleft row,col */
                   36316:           { 22,   22, 3,89, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36317:             "\x5d\x72\x32\x64\x42\x42\x83\x22\x52\x95\x52\xb2\xf1"
                   36318:             "\x72\xb2\xf1\x72\xa2\x10\x62\xa2\x82\x92\x92\x82\xa2"
                   36319:             "\x53\xb2\x24\x90\xf1\x52\xe0\x10\xf2\x42\xe0\x20\xf1"
                   36320:             "\x32\xe0\x30\x31\xe0\x42" }  },
                   36321:       /* --- pixel bitmap for cmsy210 char#81 \calQ --- */
                   36322:       {  81,14004,                      /* character number, location */
                   36323:          21, 4,   -3, 4,      /* topleft row,col, and botleft row,col */
                   36324:           { 19,   24, 3,91, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36325:             "\x96\xb2\x44\x72\x83\x52\xa2\x42\xb3\xf1\x22\xd2\xf1"
                   36326:             "\x12\xe2\x0f\x12\xe0\x12\x0f\x12\xe2\x12\xd2\x23\xc2"
                   36327:             "\x32\x71\x32\x44\x32\x32\x75\x42\xe0\x22\xe0\x12\x89"
                   36328:             "\x91\x45\x82\x75\x42\xb6\x34" }  },
                   36329:       /* --- pixel bitmap for cmsy210 char#82 \calR --- */
                   36330:       {  82,14857,                      /* character number, location */
                   36331:          20, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
                   36332:           { 25,   21, 3,107, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   36333:             "\x5e\x92\x32\x74\x62\x42\x93\x42\x52\xa2\x32\x52\xb2"
                   36334:             "\xa2\xb2\x30\xf1\x72\xa2\x40\x72\x92\xb2\x92\xc2\x72"
                   36335:             "\xe2\x25\xe0\x22\x42\xe0\x22\x53\xe0\x12\x62\xe0\x12"
                   36336:             "\x63\xd2\x82\xd2\x83\x62\x42\x92\x52\x42\xa3\x32\x52"
                   36337:             "\xb5\x41" }  },
                   36338:       /* --- pixel bitmap for cmsy210 char#83 \calS --- */
                   36339:       {  83,15677,                      /* character number, location */
                   36340:          21, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
                   36341:           { 18,   22, 3,79, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36342:             "\xa6\xa2\x44\x72\x72\x62\x82\x52\x92\xf1\x52\xb0\x53"
                   36343:             "\xe0\x23\xe0\x24\xe0\x24\xe0\x23\xe0\x23\x52\x93\x32"
                   36344:             "\xb2\x2f\x12\xc2\x22\xb2\x33\xa2\x43\x82\x63\x52\x97"
                   36345:             "\x83" }  },
                   36346:       /* --- pixel bitmap for cmsy210 char#84 \calT --- */
                   36347:       {  84,16413,                      /* character number, location */
                   36348:          21, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   36349:           { 23,   23, 3,61, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36350:             "\xe0\x72\x4e\x04\x32\x72\xb2\x82\xaf\x12\x82\xb0\xf1"
                   36351:             "\xa2\xb0\xf3\x92\xc0\xf3\x82\xd0\xf2\x72\xe0\xf2\x62"
                   36352:             "\xe0\x10\x52\xe0\x22" }  },
                   36353:       /* --- pixel bitmap for cmsy210 char#85 \calU --- */
                   36354:       {  85,17135,                      /* character number, location */
                   36355:          20, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
                   36356:           { 21,   21, 3,103, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   36357:             "\x34\xc2\x12\x22\xc2\xf1\x52\xb2\x10\x42\xb3\x52\xb2"
                   36358:             "\x62\xa3\x52\xb3\x52\xa3\x52\xb3\x52\xa4\x42\xa2\x12"
                   36359:             "\x42\xa4\x52\x92\x12\x42\x92\x22\x42\x82\x32\x42\x72"
                   36360:             "\x32\x52\x62\x42\x52\x52\x52\x53\x32\x62\x65\x83\x42" }  },
                   36361:       /* --- pixel bitmap for cmsy210 char#86 \calV --- */
                   36362:       {  86,17916,                      /* character number, location */
                   36363:          20, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   36364:           { 18,   21, 3,79, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36365:             "\x04\xa3\x33\x94\x33\xa2\xf1\x42\xb1\x43\xa1\xf1\x52"
                   36366:             "\x91\x10\x52\x81\x72\x72\x72\x71\x82\x61\x92\x52\x92"
                   36367:             "\x42\xa2\x32\xb2\x22\xc2\x12\xc2\x12\xd4\xe3\xe0\x11"
                   36368:             "\xd2" }  },
                   36369:       /* --- pixel bitmap for cmsy210 char#87 \calW --- */
                   36370:       {  87,18963,                      /* character number, location */
                   36371:          20, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   36372:           { 29,   21, 3,141, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   36373:             "\x04\xb2\x92\x33\xa2\x93\x32\xa3\x92\x32\x91\x12\xa1"
                   36374:             "\x33\x72\x12\xa1\x42\x71\x23\x91\xf1\x42\x61\x42\x81"
                   36375:             "\x10\x42\x51\x52\x71\x62\x42\x52\x71\x62\x41\x63\x51"
                   36376:             "\x72\x31\x82\x51\x72\x22\x82\x41\x82\x21\x92\x32\x82"
                   36377:             "\x11\xa2\x31\x94\xa2\x21\x92\x11\xb2\x12\x93\xc4\xa3"
                   36378:             "\xc3\xb2\xd2\xc1\xe1\xa3" }  },
                   36379:       /* --- pixel bitmap for cmsy210 char#88 \calX --- */
                   36380:       {  88,19868,                      /* character number, location */
                   36381:          20, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   36382:           { 21,   20, 3,93, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36383:             "\x74\x73\x52\x22\x82\x51\x32\x82\x93\x72\xa2\x62\xb2"
                   36384:             "\x42\xd2\x32\xe2\x12\xe0\x24\xe0\x32\xe0\x43\xe0\x22"
                   36385:             "\x12\xe0\x12\x23\xc2\x52\xb2\x62\x92\x82\x82\x92\x82"
                   36386:             "\x92\x32\x32\x93\x12\x43\x94\x51" }  },
                   36387:       /* --- pixel bitmap for cmsy210 char#89 \calY --- */
                   36388:       {  89,20629,                      /* character number, location */
                   36389:          20, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   36390:           { 20,   24, 3,99, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36391:             "\x25\x93\x22\x23\x84\x63\x92\x72\xa1\x73\x91\x82\x91"
                   36392:             "\xf1\x82\x81\x10\x83\x71\xa2\x61\xb2\x52\xb2\x51\xc2"
                   36393:             "\x41\xd2\x32\xd2\x22\xe2\x21\xe0\x12\x11\xe0\x24\xe0"
                   36394:             "\x23\x81\x73\x91\x62\xb2\x33\xc7\xe4\xe0\x12" }  },
                   36395:       /* --- pixel bitmap for cmsy210 char#90 \calZ --- */
                   36396:       {  90,21503,                      /* character number, location */
                   36397:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   36398:           { 22,   20, 3,85, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36399:             "\x97\x42\x72\x57\x72\xa2\x72\xa2\xe0\x52\xe0\x52\xe0"
                   36400:             "\x52\xe0\x52\xe0\x52\xe0\x29\xe0\x12\x31\xe0\x12\xe0"
                   36401:             "\x52\xe0\x52\xe0\x52\xe0\x52\xb2\x62\xb2\x52\xd2\x49"
                   36402:             "\x62\x42\x68\x61" }  },
                   36403:       /* --- pixel bitmap for cmsy210 char#91 \cup --- */
                   36404:       {  91,25236,                      /* character number, location */
                   36405:          18, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   36406:           { 15,   19, 3,23, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36407:             "\xfd\x02\xb2\x03\x93\x13\x73\x33\x53\x59\x85\x51" }  },
                   36408:       /* --- pixel bitmap for cmsy210 char#92 \cap --- */
                   36409:       {  92,25939,                      /* character number, location */
                   36410:          18, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   36411:           { 15,   19, 3,22, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36412:             "\x55\x89\x53\x53\x33\x73\x13\x93\x0f\xd2\xb2" }  },
                   36413:       /* --- pixel bitmap for cmsy210 char#93 \uplus --- */
                   36414:       {  93,82763,                      /* character number, location */
                   36415:          18, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   36416:           { 15,   19, 3,53, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36417:             "\xf5\x02\xb2\x0f\x12\x52\x42\x0f\x12\x27\x22\x0f\x12"
                   36418:             "\x52\x42\x0f\x12\xb2\x03\x93\x13\x73\x33\x53\x59\x85"
                   36419:             "\x51" }  },
                   36420:       /* --- pixel bitmap for cmsy210 char#94 \wedge --- */
                   36421:       {  94,26625,                      /* character number, location */
                   36422:          18, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   36423:           { 15,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36424:             "\xc0\x01\xe0\x00\x70\x00\x7c\x00\x36\x00\x1b\xc0\x1d"
                   36425:             "\x60\x0c\x38\x0e\x0c\x06\x06\x83\x83\xc3\x80\x61\xc0"
                   36426:             "\x38\xe0\x0c\x60\x07\xf0\x01\xf0\x00\x18" }  },
                   36427:       /* --- pixel bitmap for cmsy210 char#95 \vee --- */
                   36428:       {  95,27307,                      /* character number, location */
                   36429:          18, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   36430:           { 15,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36431:             "\x03\xe0\x01\xf0\x01\xdc\x00\xe6\x80\x63\xc0\x30\x60"
                   36432:             "\x38\x38\x18\x0c\x0c\x06\x8e\x03\xc6\x00\x77\x00\x1b"
                   36433:             "\x80\x0d\xc0\x07\xc0\x01\xe0\x00\x70\x00" }  },
                   36434:       /* --- pixel bitmap for cmsy210 char#96 \vdash --- */
                   36435:       {  96,83430,                      /* character number, location */
                   36436:          20, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   36437:           { 14,   20, 3,13, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36438:             "\xf8\x02\xcf\x1e\x0f\x82\xc2" }  },
                   36439:       /* --- pixel bitmap for cmsy210 char#97 \dashv --- */
                   36440:       {  97,84054,                      /* character number, location */
                   36441:          20, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   36442:           { 14,   20, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36443:             "\xf8\xc2\x0f\x1e\xf8\xc2" }  },
                   36444:       /* --- pixel bitmap for cmsy210 char#98 \lfloor --- */
                   36445:       {  98,84588,                      /* character number, location */
                   36446:          22, 5,   -8, 5,      /* topleft row,col, and botleft row,col */
                   36447:           {  8,   30, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36448:             "\xfe\x02\x6f\xc2\x6f\x18" }  },
                   36449:       /* --- pixel bitmap for cmsy210 char#99 \rfloor --- */
                   36450:       {  99,85143,                      /* character number, location */
                   36451:          22, 0,   -8, 0,      /* topleft row,col, and botleft row,col */
                   36452:           {  8,   30, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36453:             "\xfe\x62\xfc\x62\x0f\x18" }  },
                   36454:       /* --- pixel bitmap for cmsy210 char#100 \lceil --- */
                   36455:       { 100,85699,                      /* character number, location */
                   36456:          22, 5,   -8, 5,      /* topleft row,col, and botleft row,col */
                   36457:           {  8,   30, 3,13, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36458:             "\xf1\x08\x0f\xe2\x6f\xc2\x62" }  },
                   36459:       /* --- pixel bitmap for cmsy210 char#101 \rceil --- */
                   36460:       { 101,86256,                      /* character number, location */
                   36461:          22, 0,   -8, 0,      /* topleft row,col, and botleft row,col */
                   36462:           {  8,   30, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36463:             "\xf1\x08\xfe\x62\xfc\x62" }  },
                   36464:       /* --- pixel bitmap for cmsy210 char#102 \lbrace --- */
                   36465:       { 102,41679,                      /* character number, location */
                   36466:          22, 2,   -7, 2,      /* topleft row,col, and botleft row,col */
                   36467:           { 11,   29, 3,30, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36468:             "\x83\x62\x30\xfa\x52\x40\x33\x54\xa3\x50\xfa\x52\x40"
                   36469:             "\x62\xb3" }  },
                   36470:       /* --- pixel bitmap for cmsy210 char#103 \rbrace --- */
                   36471:       { 103,42540,                      /* character number, location */
                   36472:          22, 2,   -7, 2,      /* topleft row,col, and botleft row,col */
                   36473:           { 11,   29, 3,31, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36474:             "\x04\xa3\x50\xfa\x52\x40\x62\xb3\x62\x30\xfa\x52\x40"
                   36475:             "\x33\x54\x73" }  },
                   36476:       /* --- pixel bitmap for cmsy210 char#104 \langle --- */
                   36477:       { 104,86784,                      /* character number, location */
                   36478:          22, 2,   -8, 2,      /* topleft row,col, and botleft row,col */
                   36479:           {  7,   30, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36480:             "\x60\x30\x1c\x06\xc3\x61\x38\x0c\x86\xc3\x60\x38\x0c"
                   36481:             "\x06\x07\x83\xc1\xc1\x60\x70\x30\x38\x18\x0c\x0e\x06"
                   36482:             "\x03" }  },
                   36483:       /* --- pixel bitmap for cmsy210 char#105 \rangle --- */
                   36484:       { 105,87313,                      /* character number, location */
                   36485:          22, 2,   -8, 2,      /* topleft row,col, and botleft row,col */
                   36486:           {  7,   30, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36487:             "\x83\xc1\xc1\x60\x70\x30\x38\x18\x0c\x0e\x06\x83\x83"
                   36488:             "\xc1\x70\x18\x0c\x87\xc1\x70\x18\x0e\x83\xe1\x30\x18"
                   36489:             "\x00" }  },
                   36490:       /* --- pixel bitmap for cmsy210 char#106 \mid --- */
                   36491:       { 106,39735,                      /* character number, location */
                   36492:          22, 3,   -7, 3,      /* topleft row,col, and botleft row,col */
                   36493:           {  2,   29, 3, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36494:             "\xfe\x02\x0f\xd2" }  },
                   36495:       /* --- pixel bitmap for cmsy210 char#107 \parallel --- */
                   36496:       { 107,87932,                      /* character number, location */
                   36497:          22, 3,   -8, 3,      /* topleft row,col, and botleft row,col */
                   36498:           {  9,   30, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36499:             "\xfe\x02\x52\x0f\xe2\x52" }  },
                   36500:       /* --- pixel bitmap for cmsy210 char#108 \updownarrow --- */
                   36501:       { 108,89170,                      /* character number, location */
                   36502:          23, 1,   -8, 1,      /* topleft row,col, and botleft row,col */
                   36503:           { 14,   31, 3,69, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36504:             "\x71\x60\xf1\x62\x60\x54\x96\x78\x44\x12\x14\x13\x32"
                   36505:             "\x34\x52\x51\xfc\x62\x61\x52\x54\x32\x33\x14\x12\x14"
                   36506:             "\x48\x76\x94\x50\xf1\x62\x60\x71\x60" }  },
                   36507:       /* --- pixel bitmap for cmsy210 char#109 \Updownarrow --- */
                   36508:       { 109,90283,                      /* character number, location */
                   36509:          23, 1,   -8, 1,      /* topleft row,col, and botleft row,col */
                   36510:           { 17,   31, 3,79, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36511:             "\xf1\x81\x80\x73\xd2\x12\xb2\x32\x93\x33\x73\x53\x45"
                   36512:             "\x55\x13\x12\x52\x13\xfc\x42\x52\x43\x12\x52\x13\x15"
                   36513:             "\x55\x43\x53\x73\x33\x92\x32\xb2\x12\xd3\x70\xf1\x81"
                   36514:             "\x82" }  },
                   36515:       /* --- pixel bitmap for cmsy210 char#110 \setminus --- */
                   36516:       { 110,39281,                      /* character number, location */
                   36517:          22, 2,   -7, 2,      /* topleft row,col, and botleft row,col */
                   36518:           { 11,   29, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36519:             "\x03\x18\xc0\x01\x0c\x60\x00\x07\x30\x80\x01\x1c\xc0"
                   36520:             "\x00\x06\x70\x00\x03\x18\xc0\x01\x0c\x60\x00\x07\x30"
                   36521:             "\x80\x01\x1c\xc0\x00\x06\x70\x00\x03\x18\xc0\x01\x0c"
                   36522:             "\x60" }  },
                   36523:       /* --- pixel bitmap for cmsy210 char#111 \wr --- */
                   36524:       { 111,90830,                      /* character number, location */
                   36525:          17, 2,   -3, 2,      /* topleft row,col, and botleft row,col */
                   36526:           {  4,   20, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36527:             "\x03\x10\xf8\x13\x0f\x83\x10\x13" }  },
                   36528:       /* --- pixel bitmap for cmsy210 char#112 \surd --- */
                   36529:       { 112,91696,                      /* character number, location */
                   36530:           2, 2,  -28, 2,      /* topleft row,col, and botleft row,col */
                   36531:           { 24,   30, 3,125, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   36532:             "\xe0\x82\xe0\x73\xe0\x72\xe0\x73\xe0\x72\xe0\x73\xe0"
                   36533:             "\x72\xe0\x73\xe0\x72\xe0\x73\xe0\x72\xe0\x73\xe0\x72"
                   36534:             "\xe0\x73\xe0\x72\x92\xa3\x74\xa2\xb2\x83\xb2\x82\xd2"
                   36535:             "\x63\xd2\x62\xe2\x53\xe0\x12\x42\xe0\x22\x33\xe0\x32"
                   36536:             "\x22\xe0\x42\x13\xc0\xf1\x74\xd0\xf1\x82\xe3" }  },
                   36537:       /* --- pixel bitmap for cmsy210 char#113 \amalg --- */
                   36538:       { 113,92916,                      /* character number, location */
                   36539:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   36540:           { 20,   20, 3,22, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36541:             "\x08\x48\xfe\x32\xa2\x30\xf2\x32\xa2\x3e\x06" }  },
                   36542:       /* --- pixel bitmap for cmsy210 char#114 \nabla --- */
                   36543:       { 114,93878,                      /* character number, location */
                   36544:          20, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   36545:           { 22,   21, 3,87, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36546:             "\x0e\x08\x1e\x06\x23\xe0\x12\x32\xe0\x11\x43\xd2\x52"
                   36547:             "\xd1\x63\xc1\x72\xb1\x83\xa1\x92\x91\xa3\x81\xb2\x71"
                   36548:             "\xc3\x61\x60\xf1\x72\x51\x70\xf1\x82\x31\x80\xf1\x92"
                   36549:             "\x11\x90\xf1\xa2\xa3" }  },
                   36550:       /* --- pixel bitmap for cmsy210 char#115 \smallint --- */
                   36551:       { 115,44677,                      /* character number, location */
                   36552:          21, 2,   -7, 2,      /* topleft row,col, and botleft row,col */
                   36553:           { 11,   28, 3,41, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36554:             "\x82\x82\x11\xf1\x71\x12\xf5\x62\x30\xf7\x52\x40\xf5"
                   36555:             "\x42\x5f\x12\x21\x61\x21\x82\x83" }  },
                   36556:       /* --- pixel bitmap for cmsy210 char#116 \sqcup --- */
                   36557:       { 116,94582,                      /* character number, location */
                   36558:          18, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   36559:           { 15,   18, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36560:             "\xfe\x02\xb2\x02\xb2\x0f\x1e\x01" }  },
                   36561:       /* --- pixel bitmap for cmsy210 char#117 \sqcap --- */
                   36562:       { 117,95285,                      /* character number, location */
                   36563:          18, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   36564:           { 15,   18, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36565:             "\xf1\x0e\x01\x0f\xe2\xb2\x02\xb2" }  },
                   36566:       /* --- pixel bitmap for cmsy210 char#118 \sqsubseteq --- */
                   36567:       { 118,96060,                      /* character number, location */
                   36568:          18, 2,   -6, 2,      /* topleft row,col, and botleft row,col */
                   36569:           { 20,   24, 3,28, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36570:             "\xf1\x0e\x06\x0f\xd2\xe0\x4f\x1e\x06\xf3\xe0\x6f\x1e"
                   36571:             "\x06" }  },
                   36572:       /* --- pixel bitmap for cmsy210 char#119 \sqsupseteq --- */
                   36573:       { 119,96811,                      /* character number, location */
                   36574:          18, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   36575:           { 20,   24, 3,28, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36576:             "\xf1\x0e\x06\xfd\xe0\x42\x0f\x1e\x06\xf3\xe0\x6f\x1e"
                   36577:             "\x06" }  },
                   36578:       /* --- pixel bitmap for cmsy210 char#120 \S --- */
                   36579:       { 120,97816,                      /* character number, location */
                   36580:          20, 2,   -6, 2,      /* topleft row,col, and botleft row,col */
                   36581:           {  9,   26, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36582:             "\x78\x0c\x09\x1c\x3c\x60\x80\x00\x02\x18\xd8\x18\x1b"
                   36583:             "\x3c\x78\xf0\x60\x63\x6c\x60\x00\x01\x04\x18\xf0\xe0"
                   36584:             "\x40\xc2\x78\x00" }  },
                   36585:       /* --- pixel bitmap for cmsy210 char#121 \dag --- */
                   36586:       { 121,98646,                      /* character number, location */
                   36587:          20, 2,   -7, 2,      /* topleft row,col, and botleft row,col */
                   36588:           { 10,   27, 3,19, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36589:             "\xf5\x42\x4f\x1a\xfe\x42\x40\xf3\x42\x41" }  },
                   36590:       /* --- pixel bitmap for cmsy210 char#122 \ddag --- */
                   36591:       { 122,99645,                      /* character number, location */
                   36592:          20, 2,   -6, 2,      /* topleft row,col, and botleft row,col */
                   36593:           { 10,   26, 3,27, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36594:             "\xf5\x42\x4a\xf5\x42\x40\xa0\xf4\x42\x4f\x1a\xf4\x42"
                   36595:             "\x42" }  },
                   36596:       /* --- pixel bitmap for cmsy210 char#123 \P --- */
                   36597:       { 123,100355,                     /* character number, location */
                   36598:          20, 2,   -6, 2,      /* topleft row,col, and botleft row,col */
                   36599:           { 15,   26, 3,53, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36600:             "\x5a\x3c\x26\x32\x20\xf1\x17\x32\x2f\x38\x32\x20\xf1"
                   36601:             "\x17\x32\x20\x26\x32\x55\x32\x73\x32\x20\xfb\x62\x32"
                   36602:             "\x20" }  },
                   36603:       /* --- pixel bitmap for cmsy210 char#124 \clubsuit --- */
                   36604:       { 124,101359,                     /* character number, location */
                   36605:          21, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   36606:           { 22,   25, 3,63, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36607:             "\x94\xe0\x28\xda\x60\xf5\x5c\x50\x6a\x8e\x04\x3e\x06"
                   36608:             "\x1f\x5e\x08\x09\x12\x19\x18\x12\x18\x37\x12\x17\x63"
                   36609:             "\x32\x33\x40\xf2\x94\x91" }  },
                   36610:       /* --- pixel bitmap for cmsy210 char#125 \Diamond --- */
                   36611:       { 125,102110,                     /* character number, location */
                   36612:          21, 2,   -5, 2,      /* topleft row,col, and botleft row,col */
                   36613:           { 20,   26, 3,95, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36614:             "\x92\x90\xf1\x84\x80\x76\xe2\x22\xd3\x23\xb3\x43\xa2"
                   36615:             "\x62\x93\x63\x73\x83\x53\xa3\x33\xc3\x1f\x13\xe3\x13"
                   36616:             "\xc3\x33\xa3\x53\x83\x73\x63\x92\x62\xa3\x43\xb3\x23"
                   36617:             "\xd2\x22\xe6\x70\xf1\x84\x80\x92\x90" }  },
                   36618:       /* --- pixel bitmap for cmsy210 char#126 \Heart --- */
                   36619:       { 126,102971,                     /* character number, location */
                   36620:          21, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   36621:           { 20,   22, 3,89, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36622:             "\x25\x65\x38\x28\x22\x46\x42\x13\x54\x55\x64\x62\x0f"
                   36623:             "\x12\x72\x72\x0f\x12\xe0\x22\x03\xe3\x12\xe2\x23\xc3"
                   36624:             "\x32\xc2\x43\xa3\x53\x83\x73\x63\x93\x43\xb3\x23\xd6"
                   36625:             "\x70\xf1\x84\x80\x92\x94" }  },
                   36626:       /* --- pixel bitmap for cmsy210 char#127 \spadesuit --- */
                   36627:       { 127,103900,                     /* character number, location */
                   36628:          21, 2,   -4, 2,      /* topleft row,col, and botleft row,col */
                   36629:           { 20,   25, 3,71, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36630:             "\xf1\x92\x90\x84\x80\xf1\x76\x70\x68\xba\x9c\x7e\x5e"
                   36631:             "\x02\x20\xf1\x1e\x04\x1f\x5e\x06\x08\x12\x18\xf1\x17"
                   36632:             "\x12\x17\x10\x24\x32\x34\x20\xf2\x84\x83" }  },
1.1       albertel 36633:       /* --- trailer  --- */
1.2       albertel 36634:       { -99, -999,  0,0,0,0, { 0,0,0,0, (pixbyte *)"\0" }  }
1.1       albertel 36635:    } ;
                   36636: 
                   36637: 
1.2       albertel 36638: /* --- size=7 for .250gf ---
                   36639:  * mf '\mode=preview; mag=magstep(-12.84858895680446863032); input cmsy10'
                   36640:  * --------------------------------------------------------------------- */
                   36641: /* --- fontdef for cmsy250 --- */
                   36642: static	chardef  cmsy250[] =
                   36643:    {
                   36644:       /* --- pixel bitmap for cmsy250 char#0 - --- */
                   36645:       {   0,22600,                      /* character number, location */
                   36646:          10, 3,    8, 3,      /* topleft row,col, and botleft row,col */
                   36647:           { 21,    2, 3, 6, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36648:             "\xf1\x0e\x07" }  },
                   36649:       /* --- pixel bitmap for cmsy250 char#1 \cdot --- */
                   36650:       {   1,40920,                      /* character number, location */
                   36651:          11, 3,    7, 3,      /* topleft row,col, and botleft row,col */
                   36652:           {  4,    4, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36653:             "\xf6\x6f" }  },
                   36654:       /* --- pixel bitmap for cmsy250 char#2 \times --- */
                   36655:       {   2,46118,                      /* character number, location */
                   36656:          17, 5,    1, 5,      /* topleft row,col, and botleft row,col */
                   36657:           { 17,   16, 3,60, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36658:             "\x02\xd5\xb3\x13\x93\x33\x73\x53\x53\x73\x33\x93\x13"
                   36659:             "\x50\xf1\x65\x60\x53\x13\x93\x33\x73\x53\x53\x73\x33"
                   36660:             "\x93\x13\xb5\xd2" }  },
                   36661:       /* --- pixel bitmap for cmsy250 char#3 \ast --- */
                   36662:       {   3,46777,                      /* character number, location */
                   36663:          16, 2,    1, 2,      /* topleft row,col, and botleft row,col */
                   36664:           { 13,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36665:             "\x40\x00\x08\x00\x01\x21\x74\xc4\xbd\x1e\xfe\x00\x07"
                   36666:             "\xf8\xc3\xeb\x1d\x71\x21\x04\x04\x80\x00\x10\x00" }  },
                   36667:       /* --- pixel bitmap for cmsy250 char#4 \div --- */
                   36668:       {   4,47664,                      /* character number, location */
                   36669:          19, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   36670:           { 23,   20, 3,43, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36671:             "\xa3\xa0\xf2\x95\x90\xa3\xa0\xf3\xe0\x9f\x1e\x09\xf3"
                   36672:             "\xe0\x90\xa3\xa0\xf2\x95\x90\xa3\xa1" }  },
                   36673:       /* --- pixel bitmap for cmsy250 char#5 \diamond --- */
                   36674:       {   5,41487,                      /* character number, location */
                   36675:          17, 1,    1, 1,      /* topleft row,col, and botleft row,col */
                   36676:           { 16,   16, 3,51, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36677:             "\x72\xd4\xb6\x93\x23\x73\x43\x53\x63\x33\x83\x1f\x13"
                   36678:             "\xa3\x13\x83\x33\x63\x53\x43\x73\x23\x96\xb4\xd2\x72" }  },
                   36679:       /* --- pixel bitmap for cmsy250 char#6 \pm --- */
                   36680:       {   6,23299,                      /* character number, location */
                   36681:          23, 2,    1, 2,      /* topleft row,col, and botleft row,col */
                   36682:           { 23,   22, 3,20, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36683:             "\xf9\xb2\xaf\x1e\x09\xf7\xb2\xaf\x1e\x09" }  },
                   36684:       /* --- pixel bitmap for cmsy250 char#7 \mp --- */
                   36685:       {   7,48387,                      /* character number, location */
                   36686:          17, 2,   -5, 2,      /* topleft row,col, and botleft row,col */
                   36687:           { 23,   22, 3,21, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36688:             "\xf1\x0e\x09\xf7\xb2\xaf\x1e\x09\xf9\xb2\xae" }  },
                   36689:       /* --- pixel bitmap for cmsy250 char#8 \oplus --- */
                   36690:       {   8,24070,                      /* character number, location */
                   36691:          20, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
                   36692:           { 23,   22, 3,93, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36693:             "\x87\xe2\x31\x32\xa2\x51\x52\x71\x71\x71\x51\x81\x81"
                   36694:             "\x20\xf2\x11\x91\x91\x1f\x11\xa1\xa1\x0e\x09\x0f\x21"
                   36695:             "\xa1\xa1\xf2\x11\x91\x91\x10\x21\x81\x81\x51\x71\x71"
                   36696:             "\x72\x51\x52\xa2\x31\x32\xe7\x8e" }  },
                   36697:       /* --- pixel bitmap for cmsy250 char#9 \ominus --- */
                   36698:       {   9,49159,                      /* character number, location */
                   36699:          20, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
                   36700:           { 23,   22, 3,85, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36701:             "\x87\xe2\x72\xa2\xb2\x71\xe0\x11\x51\xe0\x31\x20\xf2"
                   36702:             "\x11\xe0\x51\x1f\x11\xe0\x71\x0e\x09\x0f\x21\xe0\x71"
                   36703:             "\xf2\x11\xe0\x51\x10\x21\xe0\x31\x51\xe0\x11\x72\xb2"
                   36704:             "\xa2\x72\xe7\x82" }  },
                   36705:       /* --- pixel bitmap for cmsy250 char#10 \otimes --- */
                   36706:       {  10,24918,                      /* character number, location */
                   36707:          20, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
                   36708:           { 23,   22, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36709:             "\x00\x7f\x00\x60\xc0\x00\x0c\x80\x01\x01\x00\x41\x01"
                   36710:             "\x40\x11\x01\x10\x09\x01\x84\x04\x01\x41\x01\x41\xc0"
                   36711:             "\x00\x11\x60\x00\x07\x30\x80\x03\x18\x20\x02\x0c\x08"
                   36712:             "\x02\x0a\x02\x82\x84\x00\x42\x22\x00\x22\x0a\x00\x0a"
                   36713:             "\x02\x00\x02\x06\xc0\x00\x0c\x18\x00\xf8\x03\x00" }  },
                   36714:       /* --- pixel bitmap for cmsy250 char#11 \oslash --- */
                   36715:       {  11,49970,                      /* character number, location */
                   36716:          20, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
                   36717:           { 23,   22, 3,115, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   36718:             "\x87\xe2\x72\xa2\xb2\x71\xe0\x11\x51\xe0\x11\x11\x31"
                   36719:             "\xe0\x11\x31\x21\xe1\x41\x21\xd1\x51\x11\xd1\x72\xc1"
                   36720:             "\x82\xa2\x92\x91\xb2\x81\xc2\x71\xd1\x11\x51\xd1\x21"
                   36721:             "\x41\xe1\x21\x31\xe0\x11\x31\x11\xe0\x11\x51\xe0\x11"
                   36722:             "\x72\xb2\xa2\x72\xe7\x81" }  },
                   36723:       /* --- pixel bitmap for cmsy250 char#12 \odot --- */
                   36724:       {  12,50808,                      /* character number, location */
                   36725:          20, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
                   36726:           { 23,   22, 3,85, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36727:             "\x87\xe2\x72\xa2\xb2\x71\xe0\x11\x51\xe0\x31\x20\xf2"
                   36728:             "\x11\xe0\x51\x11\x93\x91\x0f\x31\x85\x81\x01\x93\x91"
                   36729:             "\xf2\x11\xe0\x51\x10\x21\xe0\x31\x51\xe0\x11\x72\xb2"
                   36730:             "\xa2\x72\xe7\x81" }  },
                   36731:       /* --- pixel bitmap for cmsy250 char#13 \bigcirc --- */
                   36732:       {  13,51741,                      /* character number, location */
                   36733:          25, 2,   -8, 2,      /* topleft row,col, and botleft row,col */
                   36734:           { 31,   33, 3,145, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   36735:             "\xc7\xe0\x8b\xe0\x44\x74\xe4\xb4\xb3\xe0\x13\x93\xe0"
                   36736:             "\x33\x73\xe0\x53\x62\xe0\x72\x53\xe0\x73\x33\xe0\x93"
                   36737:             "\x10\xf1\x12\xe0\xb2\x13\xe0\xb3\x0f\x62\xe0\xd2\x03"
                   36738:             "\xe0\xb3\xf1\x12\xe0\xb2\x10\x13\xe0\x93\x33\xe0\x73"
                   36739:             "\x52\xe0\x72\x63\xe0\x53\x73\xe0\x33\x93\xe0\x13\xb4"
                   36740:             "\xb4\xe4\x74\xe0\x4b\xe0\x87\xc4" }  },
                   36741:       /* --- pixel bitmap for cmsy250 char#14 \circ --- */
                   36742:       {  14,52457,                      /* character number, location */
                   36743:          15, 2,    2, 2,      /* topleft row,col, and botleft row,col */
                   36744:           { 13,   13, 3,31, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36745:             "\x45\x69\x33\x53\x13\x73\x0f\x42\x92\x03\x73\x13\x53"
                   36746:             "\x39\x65\x40" }  },
                   36747:       /* --- pixel bitmap for cmsy250 char#15 \bullet --- */
                   36748:       {  15,53084,                      /* character number, location */
                   36749:          15, 2,    2, 2,      /* topleft row,col, and botleft row,col */
                   36750:           { 13,   13, 3,17, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36751:             "\x45\x69\x3b\x1f\x6d\x1b\x39\x65\x42" }  },
                   36752:       /* --- pixel bitmap for cmsy250 char#16 \asymp --- */
                   36753:       {  16,53792,                      /* character number, location */
                   36754:          17, 2,    1, 2,      /* topleft row,col, and botleft row,col */
                   36755:           { 23,   16, 3,52, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36756:             "\x02\xe0\x55\xe0\x33\x14\xd4\x45\x75\x8d\xd7\x80\xf3"
                   36757:             "\xe0\x90\x87\xdd\x85\x75\x44\xd4\x13\xe0\x35\xe0\x52" }  },
                   36758:       /* --- pixel bitmap for cmsy250 char#17 \equiv --- */
                   36759:       {  17,39381,                      /* character number, location */
                   36760:          18, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   36761:           { 23,   18, 3,26, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36762:             "\xf1\x0e\x09\xf5\xe0\x9f\x1e\x09\xf5\xe0\x9f\x1e\x09" }  },
                   36763:       /* --- pixel bitmap for cmsy250 char#18 \subseteq --- */
                   36764:       {  18,54549,                      /* character number, location */
                   36765:          22, 3,   -8, 3,      /* topleft row,col, and botleft row,col */
                   36766:           { 21,   30, 3,88, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36767:             "\x8d\x6e\x01\x44\xe0\x23\xe0\x33\xe0\x33\xe0\x30\xf1"
                   36768:             "\x12\xe0\x43\xe0\x4f\x32\xe0\x53\xe0\x40\xf1\x12\xe0"
                   36769:             "\x40\x13\xe0\x53\xe0\x53\xe0\x54\xe0\x5e\x01\x8d\xf5"
                   36770:             "\xe0\x70\xf1\x1e\x06" }  },
                   36771:       /* --- pixel bitmap for cmsy250 char#19 \supseteq --- */
                   36772:       {  19,55316,                      /* character number, location */
                   36773:          22, 3,   -8, 3,      /* topleft row,col, and botleft row,col */
                   36774:           { 21,   30, 3,89, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36775:             "\x0d\x8e\x01\xe0\x54\xe0\x53\xe0\x53\xe0\x53\x10\xf1"
                   36776:             "\xe0\x42\x10\xe0\x43\xf3\xe0\x52\xe0\x43\xf1\xe0\x42"
                   36777:             "\x10\xe0\x33\xe0\x33\xe0\x33\xe0\x24\x4e\x01\x6d\x80"
                   36778:             "\xf5\xe0\x7f\x1e\x06\x12" }  },
                   36779:       /* --- pixel bitmap for cmsy250 char#20 \leq --- */
                   36780:       {  20,37883,                      /* character number, location */
                   36781:          22, 3,   -8, 3,      /* topleft row,col, and botleft row,col */
                   36782:           { 21,   30, 3,98, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36783:             "\xe0\x52\xe0\x34\xe0\x14\xe0\x14\xe0\x14\xe0\x23\xe0"
                   36784:             "\x24\xe0\x14\xe0\x14\xe0\x14\xe0\x1f\x14\xe0\x30\x24"
                   36785:             "\xe0\x54\xe0\x54\xe0\x53\xe0\x54\xe0\x54\xe0\x54\xe0"
                   36786:             "\x54\xe0\x54\xe0\x52\xf5\xe0\x7f\x1e\x07" }  },
                   36787:       /* --- pixel bitmap for cmsy250 char#21 \geq --- */
                   36788:       {  21,38624,                      /* character number, location */
                   36789:          22, 3,   -8, 3,      /* topleft row,col, and botleft row,col */
                   36790:           { 21,   30, 3,100, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   36791:             "\x02\xe0\x54\xe0\x54\xe0\x54\xe0\x54\xe0\x53\xe0\x54"
                   36792:             "\xe0\x54\xe0\x54\xe0\x54\x20\xf1\xe0\x34\xe0\x14\xe0"
                   36793:             "\x14\xe0\x14\xe0\x23\xe0\x24\xe0\x14\xe0\x14\xe0\x14"
                   36794:             "\xe0\x14\xe0\x32\xe0\x50\xf5\xe0\x7f\x1e\x07" }  },
                   36795:       /* --- pixel bitmap for cmsy250 char#22 \preceq --- */
                   36796:       {  22,56051,                      /* character number, location */
                   36797:          22, 3,   -8, 3,      /* topleft row,col, and botleft row,col */
                   36798:           { 21,   30, 3,80, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36799:             "\xf2\xe0\x52\xe0\x43\xe0\x42\xe0\x43\xe0\x33\xe0\x33"
                   36800:             "\xe0\x15\xc7\x6f\x1c\x90\x87\xe0\x45\xe0\x53\xe0\x53"
                   36801:             "\xe0\x53\xe0\x52\xe0\x53\xf2\xe0\x52\xf5\xe0\x7f\x1e"
                   36802:             "\x07" }  },
                   36803:       /* --- pixel bitmap for cmsy250 char#23 \succeq --- */
                   36804:       {  23,56785,                      /* character number, location */
                   36805:          22, 3,   -8, 3,      /* topleft row,col, and botleft row,col */
                   36806:           { 21,   30, 3,82, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36807:             "\xf2\x02\xe0\x53\xe0\x52\xe0\x53\xe0\x53\xe0\x53\xe0"
                   36808:             "\x55\xe0\x47\x80\xf1\x9c\x67\xc5\xe0\x13\xe0\x33\xe0"
                   36809:             "\x33\xe0\x42\xe0\x43\xe0\x4f\x22\xe0\x50\xf5\xe0\x7f"
                   36810:             "\x1e\x07" }  },
                   36811:       /* --- pixel bitmap for cmsy250 char#24 \sim --- */
                   36812:       {  24,57497,                      /* character number, location */
                   36813:          13, 2,    5, 2,      /* topleft row,col, and botleft row,col */
                   36814:           { 23,    8, 3,31, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36815:             "\x35\xe1\x28\xc1\x1b\xa4\x55\x84\x85\x54\xba\x11\xc8"
                   36816:             "\x21\xe5\x37" }  },
                   36817:       /* --- pixel bitmap for cmsy250 char#25 \approx --- */
                   36818:       {  25,58265,                      /* character number, location */
                   36819:          17, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   36820:           { 23,   18, 3,69, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36821:             "\x35\xe1\x28\xc1\x1a\xb4\x55\x84\x85\x54\xab\x11\xc8"
                   36822:             "\x21\xe5\x30\xf1\xe0\x90\x35\xe1\x28\xc1\x1a\xb4\x55"
                   36823:             "\x84\x85\x54\xab\x11\xc8\x21\xe5\x30" }  },
                   36824:       /* --- pixel bitmap for cmsy250 char#26 \subset --- */
                   36825:       {  26,33795,                      /* character number, location */
                   36826:          20, 3,   -2, 3,      /* topleft row,col, and botleft row,col */
                   36827:           { 21,   22, 3,76, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36828:             "\x8d\x6e\x01\x44\xe0\x23\xe0\x33\xe0\x33\xe0\x30\xf1"
                   36829:             "\x12\xe0\x43\xe0\x4f\x32\xe0\x53\xe0\x40\xf1\x12\xe0"
                   36830:             "\x40\x13\xe0\x53\xe0\x53\xe0\x54\xe0\x5e\x01\x8d" }  },
                   36831:       /* --- pixel bitmap for cmsy250 char#27 \supset --- */
                   36832:       {  27,34521,                      /* character number, location */
                   36833:          20, 3,   -2, 3,      /* topleft row,col, and botleft row,col */
                   36834:           { 21,   22, 3,77, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36835:             "\x0d\x8e\x01\xe0\x54\xe0\x53\xe0\x53\xe0\x53\x10\xf1"
                   36836:             "\xe0\x42\x10\xe0\x43\xf3\xe0\x52\xe0\x43\xf1\xe0\x42"
                   36837:             "\x10\xe0\x33\xe0\x33\xe0\x33\xe0\x24\x4e\x01\x6d\x82" }  },
                   36838:       /* --- pixel bitmap for cmsy250 char#28 \ll --- */
                   36839:       {  28,59134,                      /* character number, location */
                   36840:          21, 2,   -3, 2,      /* topleft row,col, and botleft row,col */
                   36841:           { 31,   24, 3,140, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   36842:             "\xe0\x33\x83\xe0\x23\x83\xe0\x14\x74\xe0\x13\x83\xe0"
                   36843:             "\x14\x74\xe4\x74\xe0\x13\x83\xe0\x14\x74\xe0\x13\x83"
                   36844:             "\xe0\x14\x74\xe0\x13\x83\xe0\x1f\x14\x74\xe0\x20\x23"
                   36845:             "\x83\xe0\x44\x74\xe0\x43\x83\xe0\x44\x74\xe0\x43\x83"
                   36846:             "\xe0\x44\x74\xe0\x44\x74\xe0\x43\x83\xe0\x44\x74\xe0"
                   36847:             "\x43\x83\xe0\x43\x83" }  },
                   36848:       /* --- pixel bitmap for cmsy250 char#29 \gg --- */
                   36849:       {  29,60028,                      /* character number, location */
                   36850:          21, 2,   -3, 2,      /* topleft row,col, and botleft row,col */
                   36851:           { 31,   24, 3,141, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   36852:             "\x03\x83\xe0\x43\x83\xe0\x44\x74\xe0\x43\x83\xe0\x44"
                   36853:             "\x74\xe0\x44\x74\xe0\x43\x83\xe0\x44\x74\xe0\x43\x83"
                   36854:             "\xe0\x44\x74\xe0\x43\x83\x20\xf1\xe0\x24\x74\xe0\x13"
                   36855:             "\x83\xe0\x14\x74\xe0\x13\x83\xe0\x14\x74\xe0\x13\x83"
                   36856:             "\xe0\x14\x74\xe4\x74\xe0\x13\x83\xe0\x14\x74\xe0\x13"
                   36857:             "\x83\xe0\x23\x83\xe0\x30" }  },
                   36858:       /* --- pixel bitmap for cmsy250 char#30 \prec --- */
                   36859:       {  30,60769,                      /* character number, location */
                   36860:          19, 3,   -3, 3,      /* topleft row,col, and botleft row,col */
                   36861:           { 21,   22, 3,70, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36862:             "\xf2\xe0\x52\xe0\x43\xe0\x42\xe0\x43\xe0\x33\xe0\x33"
                   36863:             "\xe0\x15\xc7\x6f\x1c\x90\x87\xe0\x45\xe0\x53\xe0\x53"
                   36864:             "\xe0\x53\xe0\x52\xe0\x53\xf2\xe0\x52" }  },
                   36865:       /* --- pixel bitmap for cmsy250 char#31 \succ --- */
                   36866:       {  31,61457,                      /* character number, location */
                   36867:          19, 3,   -3, 3,      /* topleft row,col, and botleft row,col */
                   36868:           { 21,   22, 3,71, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36869:             "\xf2\x02\xe0\x53\xe0\x52\xe0\x53\xe0\x53\xe0\x53\xe0"
                   36870:             "\x55\xe0\x47\x80\xf1\x9c\x67\xc5\xe0\x13\xe0\x33\xe0"
                   36871:             "\x33\xe0\x42\xe0\x43\xe0\x4f\x22\xe0\x54" }  },
                   36872:       /* --- pixel bitmap for cmsy250 char#32 \leftarrow --- */
                   36873:       {  32,30602,                      /* character number, location */
                   36874:          18, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   36875:           { 31,   18, 3,71, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36876:             "\xf2\x72\xe0\x80\xf1\x62\xe0\x90\x52\xe0\xe2\xe0\xe2"
                   36877:             "\xe0\xc0\xf1\x1e\x0e\x02\x32\xe0\xe0\x22\xe0\xe0\x22"
                   36878:             "\xe0\xa0\xf1\x62\xe0\x90\xf2\x72\xe0\x83" }  },
                   36879:       /* --- pixel bitmap for cmsy250 char#33 \rightarrow --- */
                   36880:       {  33,31656,                      /* character number, location */
                   36881:          18, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   36882:           { 31,   18, 3,69, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36883:             "\xf2\xe0\x82\x70\xf1\xe0\x92\x60\xe0\xa2\xe0\xe0\x22"
                   36884:             "\xe0\xe0\x22\x3f\x1e\x0e\x03\xe0\xc2\xe0\xe2\xe0\xe2"
                   36885:             "\x50\xf1\xe0\x92\x60\xf2\xe0\x82\x70" }  },
                   36886:       /* --- pixel bitmap for cmsy250 char#34 \uparrow --- */
                   36887:       {  34,29507,                      /* character number, location */
                   36888:          24, 1,   -7, 1,      /* topleft row,col, and botleft row,col */
                   36889:           { 16,   31, 3,47, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36890:             "\x81\x70\xf2\x72\x70\x64\xb6\x92\x12\x12\x63\x22\x23"
                   36891:             "\x24\x32\x36\x52\x52\xfe\x72\x70\xf5\x72\x73" }  },
                   36892:       /* --- pixel bitmap for cmsy250 char#35 \downarrow --- */
                   36893:       {  35,28648,                      /* character number, location */
                   36894:          24, 1,   -7, 1,      /* topleft row,col, and botleft row,col */
                   36895:           { 16,   31, 3,47, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36896:             "\xfe\x72\x70\xf5\x72\x72\x52\x56\x32\x34\x23\x22\x23"
                   36897:             "\x62\x12\x12\x96\xb4\x60\xf2\x72\x70\x81\x73" }  },
                   36898:       /* --- pixel bitmap for cmsy250 char#36 \leftrightarrow --- */
                   36899:       {  36,33047,                      /* character number, location */
                   36900:          18, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   36901:           { 31,   18, 3,83, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36902:             "\xf2\x72\xd2\x70\xf1\x62\xe0\x12\x60\x52\xe0\x32\x92"
                   36903:             "\xe0\x52\x72\xe0\x72\x30\xf1\x1e\x0e\x02\x32\xe0\x72"
                   36904:             "\x72\xe0\x52\x92\xe0\x32\x50\xf1\x62\xe0\x12\x60\xf2"
                   36905:             "\x72\xd2\x73" }  },
                   36906:       /* --- pixel bitmap for cmsy250 char#37 \nearrow --- */
                   36907:       {  37,62519,                      /* character number, location */
                   36908:          25, 2,   -7, 2,      /* topleft row,col, and botleft row,col */
                   36909:           { 32,   32, 3,155, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   36910:             "\xe0\x51\xe0\xe0\x24\x72\xe0\x7b\xe0\x98\xe0\xe4\xe0"
                   36911:             "\xd5\xe0\xc3\x12\xe0\xb3\x22\xe0\xa3\x32\xe0\x93\x42"
                   36912:             "\xe0\x83\x62\xe0\x63\x72\xe0\x53\x92\xe0\x33\xa1\xe0"
                   36913:             "\x33\xe0\xe3\xe0\xe3\xe0\xe3\xe0\xe3\xe0\xe3\xe0\xe3"
                   36914:             "\xe0\xe3\xe0\xe3\xe0\xe3\xe0\xe3\xe0\xe3\xe0\xe3\xe0"
                   36915:             "\xe3\xe0\xe3\xe0\xe3\xe0\xe3\xe0\xe0\x12\xe0\xe0\x23" }  },
                   36916:       /* --- pixel bitmap for cmsy250 char#38 \searrow --- */
                   36917:       {  38,63619,                      /* character number, location */
                   36918:          24, 2,   -8, 2,      /* topleft row,col, and botleft row,col */
                   36919:           { 32,   32, 2,83, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36920:             "\x00\x02\x1e\x03\x1e\x03\x1e\x03\x1e\x03\x1e\x03\x1e"
                   36921:             "\x03\x1e\x03\x1e\x03\x1e\x03\x1e\x03\x1e\x03\x1e\x03"
                   36922:             "\x1e\x03\x1e\x03\x1e\x03\x1e\x03\x1e\x03\x1e\x03\x0a"
                   36923:             "\x01\x13\x03\x09\x02\x13\x03\x07\x02\x15\x03\x06\x02"
                   36924:             "\x16\x03\x04\x02\x18\x03\x03\x02\x19\x03\x02\x02\x1a"
                   36925:             "\x03\x01\x02\x1b\x05\x1c\x04\x18\x08\x16\x0b\x13\x04"
                   36926:             "\x07\x02\x14\x01\x0c" }  },
                   36927:       /* --- pixel bitmap for cmsy250 char#39 \simeq --- */
                   36928:       {  39,64399,                      /* character number, location */
                   36929:          16, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   36930:           { 23,   16, 3,38, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36931:             "\x35\xe1\x29\xb1\x1b\x95\x57\x55\x9b\x11\xb9\x21\xe5"
                   36932:             "\x30\xf6\xe0\x9f\x1e\x09" }  },
                   36933:       /* --- pixel bitmap for cmsy250 char#40 \Leftarrow --- */
                   36934:       {  40,65425,                      /* character number, location */
                   36935:          19, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   36936:           { 31,   20, 3,89, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36937:             "\xf1\xb2\xe0\x40\xa2\xe0\xe2\xe0\xe2\xe0\xee\x0a\x6e"
                   36938:             "\x0b\x43\xe0\xc4\xe0\xb4\xe0\xe0\x13\xe0\xe0\x23\xe0"
                   36939:             "\xe0\x13\xe0\xe0\x2e\x0a\x8e\x09\xf1\x92\xe0\x60\xa2"
                   36940:             "\xe0\x50\xf1\xb2\xe0\x40" }  },
                   36941:       /* --- pixel bitmap for cmsy250 char#41 \Rightarrow --- */
                   36942:       {  41,66456,                      /* character number, location */
                   36943:          19, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   36944:           { 31,   20, 3,93, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36945:             "\xf1\xe0\x42\xb0\xe0\x52\xe0\xe0\x22\xe0\xe0\x22\x8e"
                   36946:             "\x0a\x7e\x0b\xe0\xe0\x23\xe0\xe0\x14\xe0\xe0\x14\xe0"
                   36947:             "\xc3\xe0\xc3\xe0\xd3\x5e\x0a\x7e\x09\x80\xf1\xe0\x62"
                   36948:             "\x90\xe0\x52\xa0\xf1\xe0\x42\xb0" }  },
                   36949:       /* --- pixel bitmap for cmsy250 char#42 \Uparrow --- */
                   36950:       {  42,67302,                      /* character number, location */
                   36951:          24, 0,   -7, 0,      /* topleft row,col, and botleft row,col */
                   36952:           { 21,   31, 3,69, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36953:             "\xf1\xa1\xa0\xf1\x93\x90\xf1\x82\x12\x80\x72\x32\xd2"
                   36954:             "\x52\xb2\x72\x84\x74\x55\x75\x24\x12\x72\x16\x32\x72"
                   36955:             "\x32\xfe\x52\x72\x50\xf2\x52\x72\x59" }  },
                   36956:       /* --- pixel bitmap for cmsy250 char#43 \Downarrow --- */
                   36957:       {  43,68234,                      /* character number, location */
                   36958:          24, 0,   -7, 0,      /* topleft row,col, and botleft row,col */
                   36959:           { 21,   31, 3,69, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36960:             "\xfe\x52\x72\x50\xf2\x52\x72\x52\x32\x72\x36\x12\x72"
                   36961:             "\x14\x25\x75\x54\x74\x82\x72\xb2\x52\xd2\x32\x70\xf1"
                   36962:             "\x82\x12\x80\xf1\x93\x90\xf1\xa1\xa9" }  },
                   36963:       /* --- pixel bitmap for cmsy250 char#44 \Leftrightarrow --- */
                   36964:       {  44,69586,                      /* character number, location */
                   36965:          19, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   36966:           { 33,   20, 3,97, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36967:             "\xf1\x92\xb2\x90\xf1\x82\xd2\x80\x72\xe0\x12\xde\x07"
                   36968:             "\xbe\x09\x83\xe0\x73\x53\xe0\x93\x23\xe0\xd3\x13\xe0"
                   36969:             "\xb3\x43\xe0\x73\x73\xe0\x53\x9e\x09\xbe\x07\xd2\xe0"
                   36970:             "\x12\x70\xf1\x82\xd2\x80\xf1\x92\xb2\x93" }  },
                   36971:       /* --- pixel bitmap for cmsy250 char#45 \nwarrow --- */
                   36972:       {  45,70676,                      /* character number, location */
                   36973:          25, 1,   -7, 1,      /* topleft row,col, and botleft row,col */
                   36974:           { 32,   32, 2,82, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36975:             "\x0c\x01\x14\x02\x07\x04\x13\x0b\x16\x08\x18\x04\x1c"
                   36976:             "\x05\x1b\x02\x01\x03\x1a\x02\x02\x03\x19\x02\x03\x03"
                   36977:             "\x18\x02\x04\x03\x16\x02\x06\x03\x15\x02\x07\x03\x13"
                   36978:             "\x02\x09\x03\x13\x01\x0a\x03\x1e\x03\x1e\x03\x1e\x03"
                   36979:             "\x1e\x03\x1e\x03\x1e\x03\x1e\x03\x1e\x03\x1e\x03\x1e"
                   36980:             "\x03\x1e\x03\x1e\x03\x1e\x03\x1e\x03\x1e\x03\x1e\x03"
                   36981:             "\x1e\x03\x1e\x02" }  },
                   36982:       /* --- pixel bitmap for cmsy250 char#46 \swarrow --- */
                   36983:       {  46,71776,                      /* character number, location */
                   36984:          24, 1,   -8, 1,      /* topleft row,col, and botleft row,col */
                   36985:           { 32,   32, 3,155, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   36986:             "\xe0\xe0\x22\xe0\xe0\x13\xe0\xe3\xe0\xe3\xe0\xe3\xe0"
                   36987:             "\xe3\xe0\xe3\xe0\xe3\xe0\xe3\xe0\xe3\xe0\xe3\xe0\xe3"
                   36988:             "\xe0\xe3\xe0\xe3\xe0\xe3\xe0\xe3\xe0\xe3\xe0\xe3\xe0"
                   36989:             "\x31\xa3\xe0\x32\x93\xe0\x52\x73\xe0\x62\x63\xe0\x82"
                   36990:             "\x43\xe0\x92\x33\xe0\xa2\x23\xe0\xb2\x13\xe0\xc5\xe0"
                   36991:             "\xd4\xe0\xe8\xe0\x9b\xe0\x72\x74\xe0\xe0\x21\xe0\x53" }  },
                   36992:       /* --- pixel bitmap for cmsy250 char#47 \propto --- */
                   36993:       {  47,72888,                      /* character number, location */
                   36994:          15, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   36995:           { 23,   15, 3,76, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   36996:             "\x45\xa4\x32\x23\x82\x51\x62\x61\x61\x82\x41\x71\x92"
                   36997:             "\x21\x71\xb4\x71\xb3\x81\xc2\x81\xc3\x71\xb4\x81\xa1"
                   36998:             "\x22\x71\x91\x42\x71\x71\x62\x71\x42\x83\x65\xa4" }  },
                   36999:       /* --- pixel bitmap for cmsy250 char#48 \prime --- */
                   37000:       {  48,73454,                      /* character number, location */
                   37001:          19, 1,    1, 1,      /* topleft row,col, and botleft row,col */
                   37002:           {  8,   18, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   37003:             "\x60\xf0\xf0\xf0\x78\x78\x38\x3c\x1c\x1c\x1c\x0e\x0e"
                   37004:             "\x06\x06\x07\x03\x02" }  },
                   37005:       /* --- pixel bitmap for cmsy250 char#49 \infty --- */
                   37006:       {  49,44406,                      /* character number, location */
                   37007:          15, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   37008:           { 31,   15, 3,97, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   37009:             "\x45\xd5\x73\x14\x92\x42\x51\x72\x71\x81\x31\x92\x51"
                   37010:             "\xa1\x21\xa2\x31\xb1\x11\xc2\x11\xd1\x0f\x21\xd3\xd1"
                   37011:             "\x01\xd1\x12\xc1\x11\xb1\x32\xa1\x21\xa1\x52\x91\x31"
                   37012:             "\x81\x72\x71\x52\x42\x94\x13\x75\xd5\x40" }  },
                   37013:       /* --- pixel bitmap for cmsy250 char#50 \in --- */
                   37014:       {  50,35202,                      /* character number, location */
                   37015:          20, 3,   -2, 3,      /* topleft row,col, and botleft row,col */
                   37016:           { 17,   22, 3,64, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   37017:             "\x89\x6b\x44\xc3\xd3\xd3\xd0\xf1\x12\xe3\xe2\xe0\x1f"
                   37018:             "\x1e\x03\x02\xe0\x13\xe0\xf1\x12\xe0\x13\xe0\x13\xe0"
                   37019:             "\x13\xe0\x14\xe0\x1b\x89" }  },
                   37020:       /* --- pixel bitmap for cmsy250 char#51 \ni --- */
                   37021:       {  51,74129,                      /* character number, location */
                   37022:          20, 3,   -2, 3,      /* topleft row,col, and botleft row,col */
                   37023:           { 17,   22, 3,65, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   37024:             "\x09\x8b\xe0\x14\xe0\x13\xe0\x13\xe0\x13\x10\xf1\xe2"
                   37025:             "\x10\xe3\xe0\x12\x0f\x1e\x03\xe0\x12\xe3\xf1\xe2\x10"
                   37026:             "\xd3\xd3\xd3\xc4\x4b\x69\x82" }  },
                   37027:       /* --- pixel bitmap for cmsy250 char#52 \triangle --- */
                   37028:       {  52,74897,                      /* character number, location */
                   37029:          25, 3,    0, 3,      /* topleft row,col, and botleft row,col */
                   37030:           { 26,   25, 3,116, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   37031:             "\xc2\xc0\xf1\xb4\xb0\xa6\xe0\x62\x22\xe0\x53\x23\xe0"
                   37032:             "\x42\x42\xe0\x33\x43\xe0\x22\x62\xe0\x13\x63\xe2\x82"
                   37033:             "\xd3\x83\xc2\xa2\xb3\xa3\xa2\xc2\x93\xc3\x82\xe2\x73"
                   37034:             "\xe3\x62\xe0\x22\x53\xe0\x23\x42\xe0\x42\x33\xe0\x43"
                   37035:             "\x22\xe0\x62\x1f\x1e\x0c" }  },
                   37036:       /* --- pixel bitmap for cmsy250 char#53 \bigtriangledown --- */
                   37037:       {  53,75718,                      /* character number, location */
                   37038:          17, 3,   -8, 3,      /* topleft row,col, and botleft row,col */
                   37039:           { 26,   25, 3,117, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   37040:             "\xf1\x0e\x0c\x12\xe0\x62\x23\xe0\x43\x32\xe0\x42\x43"
                   37041:             "\xe0\x23\x52\xe0\x22\x63\xe3\x72\xe2\x83\xc3\x92\xc2"
                   37042:             "\xa3\xa3\xb2\xa2\xc3\x83\xd2\x82\xe3\x63\xe0\x12\x62"
                   37043:             "\xe0\x23\x43\xe0\x32\x42\xe0\x43\x23\xe0\x52\x22\xe0"
                   37044:             "\x66\xa0\xf1\xb4\xb0\xc2\xc3" }  },
                   37045:       /* --- pixel bitmap for cmsy250 char#54 \boldslash --- */
                   37046:       {  54,76122,                      /* character number, location */
                   37047:          25, 5,   -7, 5,      /* topleft row,col, and botleft row,col */
                   37048:           { 17,   32, 3,73, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   37049:             "\xe0\x12\xe3\xe2\xe3\xe2\xe3\xe2\xe3\xe2\xe3\xe2\xe3"
                   37050:             "\xe2\xe3\xe2\xe3\x70\xf1\x72\x80\x63\xe2\xe3\xe2\xe3"
                   37051:             "\xe2\xe3\xe2\xe3\xe2\xe3\xe2\xe3\xe2\xe0\x10" }  },
                   37052:       /* --- pixel bitmap for cmsy250 char#55 \' --- */
                   37053:       {  55,76511,                      /* character number, location */
                   37054:          16, 2,    2, 2,      /* topleft row,col, and botleft row,col */
                   37055:           {  3,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   37056:             "\xdb\xb6\xfd\xdb\xb6\x01" }  },
                   37057:       /* --- pixel bitmap for cmsy250 char#56 \forall --- */
                   37058:       {  56,35850,                      /* character number, location */
                   37059:          24, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
                   37060:           { 20,   25, 3,101, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   37061:             "\xf1\x02\xe0\x22\x03\xe3\x12\xe2\x23\xc3\x10\xf1\x22"
                   37062:             "\xc2\x20\x23\xa3\x20\xf1\x3e\x30\xf1\x42\x82\x40\x43"
                   37063:             "\x63\x40\xf1\x52\x62\x50\x53\x43\xb2\x42\xc3\x23\x60"
                   37064:             "\xf1\x72\x22\x70\x76\x70\xf1\x84\x80\xf1\x92\x91" }  },
                   37065:       /* --- pixel bitmap for cmsy250 char#57 \exists --- */
                   37066:       {  57,36531,                      /* character number, location */
                   37067:          24, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   37068:           { 15,   24, 3,26, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   37069:             "\xf1\x0e\x01\xf8\xd2\x0f\x1e\x01\xf8\xd2\x0f\x1e\x01" }  },
                   37070:       /* --- pixel bitmap for cmsy250 char#58 \neg --- */
                   37071:       {  58,37175,                      /* character number, location */
                   37072:          13, 2,    3, 2,      /* topleft row,col, and botleft row,col */
                   37073:           { 19,   10, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   37074:             "\xf1\x0e\x05\xf7\xe0\x32" }  },
                   37075:       /* --- pixel bitmap for cmsy250 char#59 \emptyset --- */
                   37076:       {  59,77230,                      /* character number, location */
                   37077:          27, 2,   -3, 2,      /* topleft row,col, and botleft row,col */
                   37078:           { 13,   30, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   37079:             "\x00\x06\xc0\xc0\x1f\x8c\xc3\x70\x08\x8e\xc1\x13\x5c"
                   37080:             "\x82\x69\x30\x0f\xe6\xe1\x3c\x8c\x87\xf1\x38\x1e\xc3"
                   37081:             "\x63\x78\x0c\xcf\xe1\x19\x3c\x83\x65\x90\x0e\xf2\x60"
                   37082:             "\x1c\x84\xc3\x70\x0c\xfe\xc0\x00\x18\x00" }  },
                   37083:       /* --- pixel bitmap for cmsy250 char#60 \Re --- */
                   37084:       {  60,79123,                      /* character number, location */
                   37085:          25, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   37086:           { 23,   26, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   37087:             "\x00\xc0\x03\x1e\xd8\x83\x18\xc3\x21\x58\xe0\x11\x3c"
                   37088:             "\xe0\x08\x0c\xf0\x0c\x0e\x70\x0c\x07\x70\x8c\x03\x38"
                   37089:             "\xc4\x01\x38\xe4\x00\x0c\x72\x80\x01\xf9\x3f\x88\x1c"
                   37090:             "\x0e\x44\x0e\x07\x12\x87\x03\x86\xc3\x01\xc0\xe1\x00"
                   37091:             "\xe0\x70\x00\x70\x38\x10\x18\x1c\x18\x0c\x0e\x08\x06"
                   37092:             "\x07\x85\x81\x63\x44\x80\x0b\x1c\x80\x03" }  },
                   37093:       /* --- pixel bitmap for cmsy250 char#61 \Im --- */
                   37094:       {  61,80484,                      /* character number, location */
                   37095:          24, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   37096:           { 22,   24, 3,97, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   37097:             "\x56\xe2\x53\xb1\x84\x81\xa4\x61\xc4\x42\xd3\x42\xe0"
                   37098:             "\x15\x1f\x11\xe0\x70\x11\xe4\x41\xc2\x31\x42\x93\x41"
                   37099:             "\x53\x63\x41\xf1\xe3\x50\xf1\xe0\x13\x45\xb3\x63\xb3"
                   37100:             "\x63\xa3\x74\x73\xa3\x63\xb3\x34\xd7\x63" }  },
                   37101:       /* --- pixel bitmap for cmsy250 char#62 \top --- */
                   37102:       {  62,81232,                      /* character number, location */
                   37103:          24, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   37104:           { 24,   24, 3,17, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   37105:             "\xf1\x0e\x0a\xfe\xb2\xb0\xf6\xb2\xb4" }  },
                   37106:       /* --- pixel bitmap for cmsy250 char#63 \bot --- */
                   37107:       {  63,81963,                      /* character number, location */
                   37108:          24, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   37109:           { 24,   24, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   37110:             "\xfe\xb2\xb0\xf6\xb2\xbf\x1e\x0a" }  },
                   37111:       /* --- pixel bitmap for cmsy250 char#64 \aleph --- */
                   37112:       {  64,83212,                      /* character number, location */
                   37113:          24, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   37114:           { 17,   24, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   37115:             "\x02\x10\x06\x30\x0c\xe0\x38\xc0\xe1\x00\x87\x01\x1c"
                   37116:             "\x06\x78\x1c\xd0\x78\xa0\xd1\x41\x31\x87\x20\x0c\x41"
                   37117:             "\x30\xc2\xe0\x82\x81\x07\x03\x0e\x06\x38\x1c\x60\x30"
                   37118:             "\x80\xe1\x00\x87\x03\x1c\x07\x30\x0e\xe0\x0f\x40" }  },
                   37119:       /* --- pixel bitmap for cmsy250 char#65 \calA --- */
                   37120:       {  65,  774,                      /* character number, location */
                   37121:          25, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   37122:           { 25,   27, 3,125, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   37123:             "\xe0\x62\xe0\x83\x30\xf1\xe0\x44\x30\xe0\x35\xe0\x61"
                   37124:             "\x13\xe0\x52\x13\xe0\x51\x23\xe0\x42\x23\xe0\x41\x33"
                   37125:             "\xe0\x32\x33\x30\xf1\xd2\x43\x30\xc2\x53\xe0\x11\x63"
                   37126:             "\xe2\x63\xd2\x73\xdc\xcd\xb2\x93\xa3\x93\xa2\xa4\x21"
                   37127:             "\x52\xb4\x22\x32\xd3\x27\xdb\xe4\x24\xe0\x60" }  },
                   37128:       /* --- pixel bitmap for cmsy250 char#66 \calB --- */
                   37129:       {  66, 1594,                      /* character number, location */
                   37130:          25, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   37131:           { 22,   26, 3,115, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   37132:             "\x72\x65\x83\x48\x55\x22\x45\x62\x22\x64\x62\x12\x83"
                   37133:             "\x55\x92\x64\xa2\x64\x92\x73\x92\x83\x73\x93\x53\xa3"
                   37134:             "\x38\x83\x39\x73\x85\x62\xa5\x52\xb4\x10\xf1\x33\xc3"
                   37135:             "\x10\x32\xd3\x42\xd2\x43\xd2\x42\xd2\x55\x92\x52\x15"
                   37136:             "\x53\x62\x1b\x72\x46\xa7" }  },
                   37137:       /* --- pixel bitmap for cmsy250 char#67 \calC --- */
                   37138:       {  67, 2307,                      /* character number, location */
                   37139:          25, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
                   37140:           { 19,   26, 3,85, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   37141:             "\xd5\xb9\x83\x44\x72\x73\x62\x82\x62\x92\x52\x92\x52"
                   37142:             "\xa2\x52\x92\x30\xf1\x22\xe0\x10\x13\xe0\x10\xf1\x12"
                   37143:             "\xe0\x2f\x43\xe0\x23\xd1\x24\xb2\x24\xa2\x44\x82\x56"
                   37144:             "\x52\x7a\xb6\x92" }  },
                   37145:       /* --- pixel bitmap for cmsy250 char#68 \calD --- */
                   37146:       {  68, 3155,                      /* character number, location */
                   37147:          24, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   37148:           { 25,   24, 3,97, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   37149:             "\x7c\xbe\x03\x62\x43\x47\x42\x52\x85\x22\x62\x94\x13"
                   37150:             "\x53\xa5\x73\xa4\xf1\x83\xb3\xf1\x82\xc3\xf1\x73\xc2"
                   37151:             "\x10\x72\xc3\x82\xc2\x83\xc2\x82\xc2\x92\xb2\x93\xa2"
                   37152:             "\xa2\xa2\xb2\x82\xc2\x63\xe9\xe8\xe0\x15" }  },
                   37153:       /* --- pixel bitmap for cmsy250 char#69 \calE --- */
                   37154:       {  69, 3896,                      /* character number, location */
                   37155:          25, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   37156:           { 19,   26, 3,89, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   37157:             "\xc6\xb9\x82\x54\xf1\x62\x82\x10\x52\x81\x82\xe0\x23"
                   37158:             "\xc0\xf1\x44\xb0\x55\xe8\xd5\xd2\xe0\x12\xe0\x22\xe0"
                   37159:             "\xf1\x22\xe0\x10\x12\xe0\x32\xc1\x33\xb2\x33\xa2\x44"
                   37160:             "\x82\x56\x52\x7a\xb6\xa3" }  },
                   37161:       /* --- pixel bitmap for cmsy250 char#70 \calF --- */
                   37162:       {  70, 4712,                      /* character number, location */
                   37163:          24, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
                   37164:           { 28,   25, 3,111, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   37165:             "\xce\x02\xae\x04\x82\x43\x83\x72\x53\xb0\xf1\x62\x62"
                   37166:             "\xc0\x51\x73\xe0\xb3\xc0\xf1\xd2\xd0\xc3\xe0\xb2\xe0"
                   37167:             "\xcb\xe0\x2a\xe0\x42\xe0\xb3\xe0\x10\xf1\xa2\xe0\x20"
                   37168:             "\xf1\x92\xe0\x30\x82\xe0\x53\x42\xe0\x45\x22\xe0\x67"
                   37169:             "\xe0\x84\xe0\x82" }  },
                   37170:       /* --- pixel bitmap for cmsy250 char#71 \calG --- */
                   37171:       {  71, 5461,                      /* character number, location */
                   37172:          25, 2,   -4, 2,      /* topleft row,col, and botleft row,col */
                   37173:           { 19,   29, 3,109, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   37174:             "\xb7\xaa\x72\x64\x62\x83\x52\x92\x52\xa2\x42\xa2\x42"
                   37175:             "\xa2\x52\xe0\x23\xe0\x10\xf1\x12\xe0\x23\xe1\x13\xc3"
                   37176:             "\x1f\x13\xc2\x23\xb3\x24\x94\x24\x93\x44\x74\x45\x42"
                   37177:             "\x12\x69\x22\x76\x33\xe0\x22\x50\xf1\xb2\x60\x14\x52"
                   37178:             "\x7a\xb6\xb0" }  },
                   37179:       /* --- pixel bitmap for cmsy250 char#72 \calH --- */
                   37180:       {  72, 6385,                      /* character number, location */
                   37181:          24, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   37182:           { 26,   26, 3,121, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   37183:             "\x75\xd1\x58\xa2\x42\x44\xa2\x32\x63\x93\x10\xf1\x12"
                   37184:             "\x73\x92\x21\x92\x93\xc2\x92\xc3\x92\xc3\x83\x30\xf1"
                   37185:             "\x92\x92\x40\x6e\x02\x8e\x04\xc2\x92\xc3\x92\x50\xf1"
                   37186:             "\x72\x93\x50\x63\x92\xc2\xa2\xc2\x93\xb3\x93\xb2\xa3"
                   37187:             "\x42\x52\xa3\x32\x52\xb7\xe0\x55\x44" }  },
                   37188:       /* --- pixel bitmap for cmsy250 char#73 \calI --- */
                   37189:       {  73, 7154,                      /* character number, location */
                   37190:          24,-1,    0,-1,      /* topleft row,col, and botleft row,col */
                   37191:           { 23,   24, 3,91, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   37192:             "\x8e\x01\x6e\x02\x52\x82\xa2\x82\xa2\x92\xa1\x92\xe0"
                   37193:             "\x72\x90\xf1\xb3\x90\xf1\xb2\xa0\xf1\xa3\xa0\xf1\xa2"
                   37194:             "\xb0\x93\xb0\xf1\x92\xc0\x83\xe0\x62\x91\x30\xf1\x72"
                   37195:             "\x82\x40\x2e\x01\x6e\x01\x82" }  },
                   37196:       /* --- pixel bitmap for cmsy250 char#74 \calJ --- */
                   37197:       {  74, 7906,                      /* character number, location */
                   37198:          24, 2,   -4, 2,      /* topleft row,col, and botleft row,col */
                   37199:           { 27,   28, 3,117, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   37200:             "\xe0\x2b\xec\xd2\x72\xe0\x12\x72\xe0\x12\x72\xe0\x12"
                   37201:             "\x82\x60\xf1\x82\x82\x70\x71\x92\xe0\xb2\xe0\xa3\x80"
                   37202:             "\xf1\xe0\x22\x90\xf1\xe0\x13\x90\xf1\xe0\x12\xa0\xf1"
                   37203:             "\xe3\xa0\xe2\xc2\xb2\xbf\x13\xa2\xc3\x92\xd4\x72\xe5"
                   37204:             "\x52\xe0\x29\xe0\x56\xe0\x50" }  },
                   37205:       /* --- pixel bitmap for cmsy250 char#75 \calK --- */
                   37206:       {  75, 8749,                      /* character number, location */
                   37207:          25, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   37208:           { 24,   26, 3,127, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   37209:             "\x72\xb4\x63\x92\x22\x45\x72\x42\x63\x52\x62\x63\x32"
                   37210:             "\xe0\x22\x32\xe0\x32\x22\xe0\x33\x12\xe0\x45\xe0\xf2"
                   37211:             "\x54\xe0\x10\x45\xe0\x56\xe0\xf1\x42\x22\xe0\x33\x23"
                   37212:             "\xe0\x22\x42\xe0\x22\x43\xe3\x52\xe2\x63\xd2\x72\x92"
                   37213:             "\x13\x73\x72\x22\x93\x62\x22\xa3\x32\x32\xc5\x50" }  },
                   37214:       /* --- pixel bitmap for cmsy250 char#76 \calL --- */
                   37215:       {  76, 9549,                      /* character number, location */
                   37216:          25, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   37217:           { 22,   26, 3,99, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   37218:             "\xe0\x15\xe0\x17\xd2\x44\xb3\x44\xb2\x63\xa2\x72\xa3"
                   37219:             "\x71\xb2\xc0\xf1\x73\xc0\x72\xd0\xf1\x63\xd0\x62\xe0"
                   37220:             "\xf2\x53\xe0\x52\xe0\x10\xf1\x43\xe0\x10\x42\xe0\x11"
                   37221:             "\x32\xe3\x28\x92\x3c\x42\x32\x4c\x32\x96\x52" }  },
                   37222:       /* --- pixel bitmap for cmsy250 char#77 \calM --- */
                   37223:       {  77,10692,                      /* character number, location */
                   37224:          25, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   37225:           { 37,   27, 3,191, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   37226:             "\xd2\xe0\x71\xc3\xe0\x71\xc3\xe0\x62\xc3\xe0\x53\xc4"
                   37227:             "\xe0\x34\xb5\xe0\x25\xb1\x13\xe0\x15\xc1\x13\xe0\x12"
                   37228:             "\x12\xc1\x13\xe2\x13\xc1\x14\xc2\x23\xb1\x24\xb3\x23"
                   37229:             "\xb1\x33\xa3\x33\xb1\x33\x93\x43\xa1\x44\x73\x53\xa1"
                   37230:             "\x44\x63\x62\xb1\x53\x62\x72\xa1\x63\x52\x73\xa1\x64"
                   37231:             "\x32\x83\x92\x64\x23\x83\x91\x87\x93\x91\x86\xa3\x81"
                   37232:             "\xa4\xb3\x72\xa3\xc3\x22\x32\xb1\xd3\x26\xe0\xca\xe0"
                   37233:             "\xd4\x24\xe0\xe0\x40" }  },
                   37234:       /* --- pixel bitmap for cmsy250 char#78 \calN --- */
                   37235:       {  78,11725,                      /* character number, location */
                   37236:          27, 0,   -2, 0,      /* topleft row,col, and botleft row,col */
                   37237:           { 34,   29, 3,171, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   37238:             "\xe0\xe0\x24\xe0\xe6\xc1\xe7\xa4\xd3\xe4\xd1\x60\xf1"
                   37239:             "\xa4\xc1\x70\xa5\xb1\xe0\x35\xa1\xe0\x41\x13\xa1\x80"
                   37240:             "\xf1\x91\x24\x91\x80\x91\x33\x81\xe0\x41\x34\x71\xe0"
                   37241:             "\x31\x44\x71\xe0\x31\x53\x71\x90\xf1\x81\x54\x51\xa0"
                   37242:             "\x71\x73\x51\xe0\x31\x74\x41\xe0\x31\x74\x31\xb0\xf1"
                   37243:             "\x61\x94\x21\xb0\x52\xa4\x11\xe0\x21\xb5\xc2\x22\xc4"
                   37244:             "\xc5\xd4\xc5\xe2\xe3\xe0\xe0\x21" }  },
                   37245:       /* --- pixel bitmap for cmsy250 char#79 \calO --- */
                   37246:       {  79,12624,                      /* character number, location */
                   37247:          25, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   37248:           { 25,   26, 3,129, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   37249:             "\xa1\x56\xb2\x49\x92\x42\x45\x72\x32\x74\x62\x42\x84"
                   37250:             "\x42\x42\x94\xf1\x32\x42\xb3\x22\x42\xc3\x22\x41\xd3"
                   37251:             "\x13\xe0\x43\x12\xe0\x53\x12\xe0\x52\x13\xe0\x52\x13"
                   37252:             "\xe0\x43\x1f\x13\xe0\x42\x23\xe0\x32\x3f\x14\xe0\x12"
                   37253:             "\x40\x13\xe2\x64\xc2\x75\x92\xa6\x53\xcb\xe0\x26\xe1" }  },
                   37254:       /* --- pixel bitmap for cmsy250 char#80 \calP --- */
                   37255:       {  80,13471,                      /* character number, location */
                   37256:          24, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   37257:           { 24,   26, 3,115, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   37258:             "\x7d\x9e\x03\x52\x42\x66\x32\x52\x85\x12\x53\x97\x53"
                   37259:             "\xa4\x73\xa3\x83\xa3\x83\xa2\x92\xb2\x92\xa2\x93\x92"
                   37260:             "\xa3\x82\xb2\x82\xc2\x63\xc3\x25\xe2\x23\xe0\x32\xe0"
                   37261:             "\x73\xe0\x20\xf1\x52\xe0\x30\x43\xe0\x30\xf1\x42\xe0"
                   37262:             "\x40\x33\xe0\x71\xe0\x65" }  },
                   37263:       /* --- pixel bitmap for cmsy250 char#81 \calQ --- */
                   37264:       {  81,14354,                      /* character number, location */
                   37265:          25, 4,   -4, 4,      /* topleft row,col, and botleft row,col */
                   37266:           { 23,   29, 3,123, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   37267:             "\xc6\xea\xb3\x55\x92\x85\x72\xa4\x62\xc4\x42\xd4\x10"
                   37268:             "\xf1\x22\xe0\x13\x10\x13\xe0\x13\x10\xf1\x12\xe0\x23"
                   37269:             "\x1f\x13\xe0\x22\x23\xe0\x13\x23\xe0\x12\x34\xe2\x35"
                   37270:             "\xc2\x55\x52\x32\x7a\x42\x86\x62\xe0\x62\xe0\x52\xe0"
                   37271:             "\x52\xd8\xb2\x1a\x92\x5a\x52\xac\xe7\x5b" }  },
                   37272:       /* --- pixel bitmap for cmsy250 char#82 \calR --- */
                   37273:       {  82,15245,                      /* character number, location */
                   37274:          24, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   37275:           { 28,   25, 3,127, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   37276:             "\x7e\xce\x04\x82\x42\x76\x62\x52\x94\x52\x53\xa3\x43"
                   37277:             "\x53\xa3\x41\x73\xa2\xd3\xa2\xd3\x92\xe2\xa2\xe2\x92"
                   37278:             "\xe3\x72\xe0\x23\x34\xe0\x42\x25\xe0\x52\x44\xe0\x33"
                   37279:             "\x44\xb0\xf1\x62\x64\xa0\x53\x74\xe2\x84\x81\x52\x93"
                   37280:             "\x62\x53\x94\x52\x52\xa5\x32\x62\xb7\x72\xd4\x66" }  },
                   37281:       /* --- pixel bitmap for cmsy250 char#83 \calS --- */
                   37282:       {  83,16057,                      /* character number, location */
                   37283:          25, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
                   37284:           { 22,   26, 3,93, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   37285:             "\xd7\xda\xa2\x65\x82\x84\x72\xa3\x72\xa2\x73\xa1\x83"
                   37286:             "\xe0\x54\xe0\x45\xe0\x46\xe0\x37\xe0\x37\xe0\x36\xe0"
                   37287:             "\x45\xe0\x45\x61\xb4\x42\xd3\x32\xe3\x2f\x13\xe2\x34"
                   37288:             "\xc2\x45\xa2\x66\x62\x9b\xd7\xb4" }  },
                   37289:       /* --- pixel bitmap for cmsy250 char#84 \calT --- */
                   37290:       {  84,16777,                      /* character number, location */
                   37291:          25, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   37292:           { 28,   27, 3,103, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   37293:             "\xe0\xc2\x7e\x06\x6e\x06\x62\x83\xe2\x93\xd3\x92\xe3"
                   37294:             "\x83\xd2\xa3\xe0\xb3\xe0\xb2\xe0\xf2\xb3\xe0\xb2\xe0"
                   37295:             "\x10\xf2\xa3\xe0\x10\xa2\xe0\x20\xf2\x93\xe0\x20\x92"
                   37296:             "\xe0\x30\xf1\x83\xe0\x30\x82\xe0\xb3\xe0\xb2\xe0\x53" }  },
                   37297:       /* --- pixel bitmap for cmsy250 char#85 \calU --- */
                   37298:       {  85,17535,                      /* character number, location */
                   37299:          24,-1,   -1,-1,      /* topleft row,col, and botleft row,col */
                   37300:           { 25,   25, 3,125, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   37301:             "\x54\xe2\x36\xd2\x31\x33\xd2\x73\xc3\x10\xf1\x62\xd2"
                   37302:             "\x20\x52\xd3\x72\xd2\x73\xc3\x72\xc4\x72\xc3\x40\xf1"
                   37303:             "\x32\xc4\x40\x22\xc5\x62\xb2\x12\x63\xa2\x22\x62\xb2"
                   37304:             "\x13\x62\xa2\x23\x53\x92\x32\x63\x82\x42\x63\x72\x43"
                   37305:             "\x63\x62\x53\x64\x42\x63\x68\x85\x55\xa3\x64" }  },
                   37306:       /* --- pixel bitmap for cmsy250 char#86 \calV --- */
                   37307:       {  86,18308,                      /* character number, location */
                   37308:          24, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   37309:           { 22,   25, 3,105, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   37310:             "\x14\xd2\x26\xb4\x35\xa5\x34\xc3\x44\xc2\x44\xd1\x53"
                   37311:             "\xd1\xf1\x54\xb1\x10\x63\xa2\x10\xf1\x63\x92\x20\x63"
                   37312:             "\x82\x93\x72\xa3\x63\xa3\x53\xb3\x43\xc3\x33\xd3\x23"
                   37313:             "\xe2\x23\xe0\x16\xe0\x16\xe0\x25\xe0\x33\xe0\x52\xe0"
                   37314:             "\x13" }  },
                   37315:       /* --- pixel bitmap for cmsy250 char#87 \calW --- */
                   37316:       {  87,19341,                      /* character number, location */
                   37317:          24, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   37318:           { 35,   25, 3,175, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   37319:             "\x13\xe0\x12\xa3\x16\xc3\xa4\x15\xc3\xa4\x34\xa5\xb2"
                   37320:             "\x34\x96\xc1\x44\x82\x13\xc1\x44\x72\x24\xb1\x53\x71"
                   37321:             "\x34\xa1\x63\x62\x43\xa1\x63\x61\x53\x92\x63\x52\x54"
                   37322:             "\x81\x73\x42\x64\x72\x73\x42\x73\x71\x83\x32\x83\x62"
                   37323:             "\x83\x22\x93\x52\x93\x22\x94\x33\x93\x12\xa4\x32\xa5"
                   37324:             "\xc3\x22\xb5\xc3\x12\xc4\xd6\xb4\xe5\xc3\xe0\x14\xd3"
                   37325:             "\xe0\x13\xe2\xe0\x22\xe0\x11\xe0\x32\xb6" }  },
                   37326:       /* --- pixel bitmap for cmsy250 char#88 \calX --- */
                   37327:       {  88,20238,                      /* character number, location */
                   37328:          24, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   37329:           { 26,   24, 3,117, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   37330:             "\x95\x93\x77\x84\x72\x23\x93\x61\x44\x82\xc4\x82\xd3"
                   37331:             "\x72\xe3\x62\xe0\x13\x42\xe0\x33\x32\xe0\x43\x12\xe0"
                   37332:             "\x64\xe0\x83\xe0\x85\xe0\x66\xe0\x42\x33\xe0\x22\x53"
                   37333:             "\xe0\x12\x63\xd2\x83\xc2\x93\xb2\xa3\xb2\xa4\x41\x43"
                   37334:             "\xa4\x22\x54\xa6\x63\xb4\x84" }  },
                   37335:       /* --- pixel bitmap for cmsy250 char#89 \calY --- */
                   37336:       {  89,21013,                      /* character number, location */
                   37337:          24, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   37338:           { 25,   28, 3,127, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   37339:             "\x54\xc2\x57\xa4\x32\x25\xb3\x75\xb2\x84\xc1\xf1\x94"
                   37340:             "\xb1\xf1\xa3\xa1\x10\xf1\xa4\x81\x20\xb3\x72\xd3\x71"
                   37341:             "\xe3\x61\xe0\x13\x52\xe0\x13\x51\xe0\x23\x41\xe0\x33"
                   37342:             "\x32\xe0\x33\x22\xe0\x43\x12\xe0\x55\xe0\x64\xe0\x73"
                   37343:             "\xc1\x83\xc2\x73\xe3\x33\xe0\x28\xe0\x54\xe0\x42" }  },
                   37344:       /* --- pixel bitmap for cmsy250 char#90 \calZ --- */
                   37345:       {  90,21901,                      /* character number, location */
                   37346:          24, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   37347:           { 26,   24, 3,101, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   37348:             "\xc7\x52\xae\x01\x92\x68\x92\xc2\x93\xb2\xa1\xc2\xe0"
                   37349:             "\x92\xe0\x92\xe0\x92\xe0\x92\xe0\x4a\xe0\x62\x23\xe0"
                   37350:             "\x42\xe0\x92\xe0\x92\xe0\x92\xe0\x92\xe0\x92\xd1\x92"
                   37351:             "\xc3\x82\xd3\x72\xe2\x7a\x62\x6e\x05\x62\x88\x80" }  },
                   37352:       /* --- pixel bitmap for cmsy250 char#91 \cup --- */
                   37353:       {  91,25678,                      /* character number, location */
                   37354:          21, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   37355:           { 19,   22, 3,33, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   37356:             "\xfe\x02\xe0\x12\x02\xe0\x15\xe2\x12\xd3\x13\xb3\x34"
                   37357:             "\x74\x6b\xa7\x61" }  },
                   37358:       /* --- pixel bitmap for cmsy250 char#92 \cap --- */
                   37359:       {  92,26393,                      /* character number, location */
                   37360:          21, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   37361:           { 19,   22, 3,34, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   37362:             "\x67\xab\x64\x74\x33\xb3\x13\xd2\x12\xe3\x0f\xe2\xe0"
                   37363:             "\x12\x02\xe0\x12" }  },
                   37364:       /* --- pixel bitmap for cmsy250 char#93 \uplus --- */
                   37365:       {  93,84013,                      /* character number, location */
                   37366:          21, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   37367:           { 19,   22, 3,53, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   37368:             "\xf4\x02\xe0\x12\x0f\x32\x72\x62\x0f\x12\x2b\x22\x0f"
                   37369:             "\x42\x72\x62\x03\xe2\x12\xd3\x13\xb3\x34\x74\x6b\xa7"
                   37370:             "\x61" }  },
                   37371:       /* --- pixel bitmap for cmsy250 char#94 \wedge --- */
                   37372:       {  94,27091,                      /* character number, location */
                   37373:          21, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   37374:           { 19,   22, 3,84, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   37375:             "\xf2\x83\x80\x75\xe2\x12\xd3\x13\x60\xf1\x62\x32\x60"
                   37376:             "\x53\x33\xa2\x52\x93\x53\x82\x72\x73\x73\x30\xf1\x32"
                   37377:             "\x92\x30\x23\x93\x42\xb2\x33\xb3\x22\xd2\x13\xd3\x0f"
                   37378:             "\x12\xe0\x12" }  },
                   37379:       /* --- pixel bitmap for cmsy250 char#95 \vee --- */
                   37380:       {  95,27785,                      /* character number, location */
                   37381:          21, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   37382:           { 19,   22, 3,85, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   37383:             "\xf1\x02\xe0\x12\x03\xd3\x12\xd2\x23\xb3\x32\xb2\x43"
                   37384:             "\x93\x20\xf1\x32\x92\x30\x33\x73\x72\x72\x83\x53\x92"
                   37385:             "\x52\xa3\x33\x50\xf1\x62\x32\x60\x63\x13\xd2\x12\xe5"
                   37386:             "\x70\xf2\x83\x81" }  },
                   37387:       /* --- pixel bitmap for cmsy250 char#96 \vdash --- */
                   37388:       {  96,84702,                      /* character number, location */
                   37389:          24, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   37390:           { 17,   24, 3,19, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   37391:             "\xfa\x02\xe0\x1f\x1e\x03\x0f\xa2\xe0\x12" }  },
                   37392:       /* --- pixel bitmap for cmsy250 char#97 \dashv --- */
                   37393:       {  97,85334,                      /* character number, location */
                   37394:          24, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   37395:           { 17,   24, 3,18, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   37396:             "\xfa\xe0\x12\x0f\x1e\x03\xfa\xe0\x12" }  },
                   37397:       /* --- pixel bitmap for cmsy250 char#98 \lfloor --- */
                   37398:       {  98,85876,                      /* character number, location */
                   37399:          26, 6,   -8, 6,      /* topleft row,col, and botleft row,col */
                   37400:           {  9,   34, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   37401:             "\xfe\x02\x7f\xe2\x7f\x12\x7f\x19" }  },
                   37402:       /* --- pixel bitmap for cmsy250 char#99 \rfloor --- */
                   37403:       {  99,86439,                      /* character number, location */
                   37404:          26, 0,   -8, 0,      /* topleft row,col, and botleft row,col */
                   37405:           {  9,   34, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   37406:             "\xfe\x72\xfe\x72\xf1\x72\x0f\x19" }  },
                   37407:       /* --- pixel bitmap for cmsy250 char#100 \lceil --- */
                   37408:       { 100,87003,                      /* character number, location */
                   37409:          26, 6,   -8, 6,      /* topleft row,col, and botleft row,col */
                   37410:           {  9,   34, 3,17, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   37411:             "\xf1\x09\x0f\xe2\x7f\xe2\x7f\x12\x72" }  },
                   37412:       /* --- pixel bitmap for cmsy250 char#101 \rceil --- */
                   37413:       { 101,87568,                      /* character number, location */
                   37414:          26, 0,   -8, 0,      /* topleft row,col, and botleft row,col */
                   37415:           {  9,   34, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   37416:             "\xf1\x09\xfe\x72\xfe\x72\xf1\x72" }  },
                   37417:       /* --- pixel bitmap for cmsy250 char#102 \lbrace --- */
                   37418:       { 102,42341,                      /* character number, location */
                   37419:          26, 2,   -9, 2,      /* topleft row,col, and botleft row,col */
                   37420:           { 13,   35, 3,38, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   37421:             "\xa3\x82\xa2\x40\xfb\x62\x50\x52\x93\x74\xc3\xc2\x60"
                   37422:             "\xfb\x62\x50\x72\xc2\xd3" }  },
                   37423:       /* --- pixel bitmap for cmsy250 char#103 \rbrace --- */
                   37424:       { 103,43214,                      /* character number, location */
                   37425:          26, 2,   -9, 2,      /* topleft row,col, and botleft row,col */
                   37426:           { 13,   35, 3,39, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   37427:             "\x04\xc3\xc2\x60\xfb\x62\x50\x72\xc2\xd3\x82\xa2\x40"
                   37428:             "\xfb\x62\x50\x52\x93\x74\x93" }  },
                   37429:       /* --- pixel bitmap for cmsy250 char#104 \langle --- */
                   37430:       { 104,88104,                      /* character number, location */
                   37431:          26, 3,   -8, 3,      /* topleft row,col, and botleft row,col */
                   37432:           {  8,   34, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   37433:             "\xc0\xc0\xe0\x60\x60\x70\x30\x38\x18\x18\x1c\x0c\x0e"
                   37434:             "\x06\x06\x07\x03\x03\x07\x06\x06\x0e\x0c\x1c\x18\x18"
                   37435:             "\x38\x30\x70\x60\x60\xe0\xc0\xc0" }  },
                   37436:       /* --- pixel bitmap for cmsy250 char#105 \rangle --- */
                   37437:       { 105,88641,                      /* character number, location */
                   37438:          26, 2,   -8, 2,      /* topleft row,col, and botleft row,col */
                   37439:           {  8,   34, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   37440:             "\x03\x03\x07\x06\x06\x0e\x0c\x1c\x18\x18\x38\x30\x70"
                   37441:             "\x60\x60\xe0\xc0\xc0\xe0\x60\x60\x70\x30\x38\x18\x18"
                   37442:             "\x1c\x0c\x0e\x06\x06\x07\x03\x03" }  },
                   37443:       /* --- pixel bitmap for cmsy250 char#106 \mid --- */
                   37444:       { 106,40375,                      /* character number, location */
                   37445:          26, 4,   -9, 4,      /* topleft row,col, and botleft row,col */
                   37446:           {  2,   35, 2, 4, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   37447:             "\xff\x22\x00\x02" }  },
                   37448:       /* --- pixel bitmap for cmsy250 char#107 \parallel --- */
                   37449:       { 107,89268,                      /* character number, location */
                   37450:          26, 3,   -8, 3,      /* topleft row,col, and botleft row,col */
                   37451:           { 11,   34, 2, 6, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   37452:             "\xff\x21\x00\x02\x07\x02" }  },
                   37453:       /* --- pixel bitmap for cmsy250 char#108 \updownarrow --- */
                   37454:       { 108,90522,                      /* character number, location */
                   37455:          27, 1,  -10, 1,      /* topleft row,col, and botleft row,col */
                   37456:           { 16,   37, 3,83, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   37457:             "\x81\x70\xf2\x72\x70\x64\xb6\x92\x12\x12\x63\x22\x23"
                   37458:             "\x24\x32\x36\x52\x52\xfe\x72\x70\xf1\x72\x72\x52\x56"
                   37459:             "\x32\x34\x23\x22\x23\x62\x12\x12\x96\xb4\x60\xf2\x72"
                   37460:             "\x70\x81\x73" }  },
                   37461:       /* --- pixel bitmap for cmsy250 char#109 \Updownarrow --- */
                   37462:       { 109,91655,                      /* character number, location */
                   37463:          27, 0,  -10, 0,      /* topleft row,col, and botleft row,col */
                   37464:           { 21,   37, 3,107, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   37465:             "\xf1\xa1\xa0\x93\xe0\x32\x12\xe0\x13\x13\xe2\x32\xc3"
                   37466:             "\x53\x93\x73\x65\x75\x24\x12\x72\x16\x32\x72\x32\xfe"
                   37467:             "\x52\x72\x52\x32\x72\x36\x12\x72\x14\x25\x75\x63\x73"
                   37468:             "\x93\x53\xc2\x32\xe3\x13\xe0\x12\x12\xe0\x33\x90\xf1"
                   37469:             "\xa1\xa5" }  },
                   37470:       /* --- pixel bitmap for cmsy250 char#110 \setminus --- */
                   37471:       { 110,39909,                      /* character number, location */
                   37472:          26, 2,   -9, 2,      /* topleft row,col, and botleft row,col */
                   37473:           { 13,   35, 3,110, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   37474:             "\xf1\x02\xb3\xa0\xf1\x12\xa0\x13\x90\xf1\x22\x90\x23"
                   37475:             "\x80\xf1\x32\x80\x33\x70\xf1\x42\x70\x43\x60\xf1\x52"
                   37476:             "\x60\x53\x50\xf1\x62\x50\x63\x40\xf1\x72\x40\x73\x30"
                   37477:             "\xf1\x82\x30\x83\x20\xf1\x92\x20\x93\x10\xf1\xa2\x10"
                   37478:             "\xa3\xf1\xb2" }  },
                   37479:       /* --- pixel bitmap for cmsy250 char#111 \wr --- */
                   37480:       { 111,92234,                      /* character number, location */
                   37481:          20, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
                   37482:           {  6,   22, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   37483:             "\x0f\xc7\xe1\x38\x8e\xe3\x38\xc7\x39\xce\x71\x1c\xc7"
                   37484:             "\x71\x38\x0e\x0f" }  },
                   37485:       /* --- pixel bitmap for cmsy250 char#112 \surd --- */
                   37486:       { 112,93104,                      /* character number, location */
                   37487:           2, 2,  -33, 2,      /* topleft row,col, and botleft row,col */
                   37488:           { 29,   35, 3,161, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   37489:             "\xe0\xd2\xe0\xc3\xe0\xc2\xe0\xc3\xe0\xc2\xe0\xc3\xe0"
                   37490:             "\xc2\xe0\xc3\xe0\xc2\xe0\xc3\xe0\xc2\xe0\xc3\xe0\xc2"
                   37491:             "\xe0\xc3\xe0\xc2\xe0\xc3\xe0\xc2\xb1\xe3\x93\xe2\x91"
                   37492:             "\x22\xc3\xc2\xc2\xe2\xa3\xe2\xa2\xe0\x22\x83\xe0\x22"
                   37493:             "\x82\xe0\x42\x63\xe0\x42\x62\xe0\x62\x43\xe0\x62\x42"
                   37494:             "\xe0\x82\x23\xe0\x82\x22\xe0\xa5\xe0\xa4\xe0\xc3\xe0"
                   37495:             "\xc2\xe0\x33" }  },
                   37496:       /* --- pixel bitmap for cmsy250 char#113 \amalg --- */
                   37497:       { 113,94342,                      /* character number, location */
                   37498:          24, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   37499:           { 26,   24, 3,22, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   37500:             "\x0b\x4b\xfe\x43\xc3\x40\xf6\x43\xc3\x4e\x0c" }  },
                   37501:       /* --- pixel bitmap for cmsy250 char#114 \nabla --- */
                   37502:       { 114,95320,                      /* character number, location */
                   37503:          24, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   37504:           { 25,   25, 3,115, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   37505:             "\xf1\x0e\x0b\x1e\x09\x24\xe0\x41\x33\xe0\x31\x44\xe0"
                   37506:             "\x21\x53\xe0\x11\x64\xe1\x73\xd1\x84\xc1\x93\xb1\xa4"
                   37507:             "\xa1\xb3\x91\xc4\x81\xd3\x71\xe4\x61\xe0\x13\x51\xe0"
                   37508:             "\x24\x41\xe0\x33\x31\xe0\x44\x21\xe0\x53\x11\xe0\x65"
                   37509:             "\xa0\xf1\xb3\xb0\xc1\xc2" }  },
                   37510:       /* --- pixel bitmap for cmsy250 char#115 \smallint --- */
                   37511:       { 115,45379,                      /* character number, location */
                   37512:          25, 2,   -8, 2,      /* topleft row,col, and botleft row,col */
                   37513:           { 14,   33, 3,61, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   37514:             "\xa3\xa1\x31\xf1\x82\x22\xf2\x81\x50\xf4\x72\x50\x71"
                   37515:             "\x60\xf6\x62\x60\x61\x70\xf4\x52\x70\xf2\x51\x8f\x12"
                   37516:             "\x22\x81\x31\xa3\xa1" }  },
                   37517:       /* --- pixel bitmap for cmsy250 char#116 \sqcup --- */
                   37518:       { 116,96034,                      /* character number, location */
                   37519:          21, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   37520:           { 19,   21, 2,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   37521:             "\xff\x12\x00\x02\x0f\x02\x00\xff\x01\x13" }  },
                   37522:       /* --- pixel bitmap for cmsy250 char#117 \sqcap --- */
                   37523:       { 117,96749,                      /* character number, location */
                   37524:          21, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   37525:           { 19,   21, 2,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   37526:             "\xff\x01\x00\x13\x00\xff\x12\x02\x0f\x02" }  },
                   37527:       /* --- pixel bitmap for cmsy250 char#118 \sqsubseteq --- */
                   37528:       { 118,97536,                      /* character number, location */
                   37529:          22, 3,   -8, 3,      /* topleft row,col, and botleft row,col */
                   37530:           { 22,   30, 3,34, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   37531:             "\xf1\x0e\x08\x0f\xe2\xe0\x6f\x22\xe0\x6f\x1e\x08\xf5"
                   37532:             "\xe0\x8f\x1e\x08" }  },
                   37533:       /* --- pixel bitmap for cmsy250 char#119 \sqsupseteq --- */
                   37534:       { 119,98295,                      /* character number, location */
                   37535:          22, 2,   -8, 2,      /* topleft row,col, and botleft row,col */
                   37536:           { 22,   30, 3,34, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   37537:             "\xf1\x0e\x08\xfe\xe0\x62\xf2\xe0\x62\x0f\x1e\x08\xf5"
                   37538:             "\xe0\x8f\x1e\x08" }  },
                   37539:       /* --- pixel bitmap for cmsy250 char#120 \S --- */
                   37540:       { 120,99308,                      /* character number, location */
                   37541:          24, 2,   -7, 2,      /* topleft row,col, and botleft row,col */
                   37542:           { 11,   31, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   37543:             "\x78\x60\x8c\x81\x06\x34\xb0\x01\x0c\xc0\x00\x04\x40"
                   37544:             "\x00\x1e\x18\x61\x90\x81\x0d\x78\xc0\x03\x36\x30\xc1"
                   37545:             "\x10\x03\x0f\x40\x00\x04\x60\x00\x06\xb0\x81\x05\x2c"
                   37546:             "\x30\xc6\xc0\x03" }  },
                   37547:       /* --- pixel bitmap for cmsy250 char#121 \dag --- */
                   37548:       { 121,100154,                     /* character number, location */
                   37549:          24, 2,   -8, 2,      /* topleft row,col, and botleft row,col */
                   37550:           { 12,   32, 3,19, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   37551:             "\xf7\x52\x5f\x1c\xfe\x52\x50\xf6\x52\x5f" }  },
                   37552:       /* --- pixel bitmap for cmsy250 char#122 \ddag --- */
                   37553:       { 122,101163,                     /* character number, location */
                   37554:          24, 2,   -7, 2,      /* topleft row,col, and botleft row,col */
                   37555:           { 12,   31, 3,25, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   37556:             "\xf6\x52\x5c\xf6\x52\x50\xc0\xf6\x52\x5c\xf6\x52\x52" }  },
                   37557:       /* --- pixel bitmap for cmsy250 char#123 \P --- */
                   37558:       { 123,101883,                     /* character number, location */
                   37559:          24, 2,   -7, 2,      /* topleft row,col, and botleft row,col */
                   37560:           { 18,   31, 3,59, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   37561:             "\x5d\x3e\x01\x28\x32\x30\xf1\x19\x32\x3f\x5a\x32\x30"
                   37562:             "\xf1\x19\x32\x30\x28\x32\x67\x32\x76\x32\xa3\x32\x30"
                   37563:             "\xfd\x82\x32\x31" }  },
                   37564:       /* --- pixel bitmap for cmsy250 char#124 \clubsuit --- */
                   37565:       { 124,102881,                     /* character number, location */
                   37566:          25, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   37567:           { 26,   29, 3,85, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   37568:             "\xb4\xe0\x68\xe0\x3a\x80\xf1\x7c\x70\xf3\x6e\x60\xf1"
                   37569:             "\x7c\x70\x8a\xc2\x38\x32\x6e\x08\x20\xf1\x1e\x0a\x1f"
                   37570:             "\x5e\x0c\xf1\x19\x22\x29\x10\x28\x22\x28\x64\x42\x44"
                   37571:             "\x40\xf2\xb4\xb1" }  },
                   37572:       /* --- pixel bitmap for cmsy250 char#125 \Diamond --- */
                   37573:       { 125,103618,                     /* character number, location */
                   37574:          25, 2,   -5, 2,      /* topleft row,col, and botleft row,col */
                   37575:           { 24,   30, 3,129, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   37576:             "\xb2\xb0\xf1\xa4\xa0\x96\xe0\x42\x22\xe0\x33\x23\xe0"
                   37577:             "\x13\x43\xd3\x63\xc2\x82\xb3\x83\x93\xa3\x73\xc3\x53"
                   37578:             "\xe3\x33\xe0\x23\x1f\x13\xe0\x43\x13\xe0\x23\x33\xe3"
                   37579:             "\x53\xc3\x73\xa3\x93\x83\xb2\x82\xc3\x63\xd3\x43\xe0"
                   37580:             "\x13\x23\xe0\x32\x22\xe0\x46\x90\xf1\xa4\xa0\xb2\xb2" }  },
                   37581:       /* --- pixel bitmap for cmsy250 char#126 \Heart --- */
                   37582:       { 126,104469,                     /* character number, location */
                   37583:          25, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   37584:           { 24,   26, 3,117, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   37585:             "\x44\x84\x68\x48\x33\x43\x23\x43\x22\x66\x62\x13\x74"
                   37586:             "\x75\x84\x82\x0f\x12\x92\x92\x0f\x22\xe0\x62\x03\xe0"
                   37587:             "\x43\x12\xe0\x42\x23\xe0\x23\x33\xe3\x52\xe2\x63\xc3"
                   37588:             "\x73\xa3\x94\x64\xc3\x43\xe0\x13\x23\xe0\x32\x22\xe0"
                   37589:             "\x46\xe0\x54\xa0\xf1\xb2\xb6" }  },
                   37590:       /* --- pixel bitmap for cmsy250 char#127 \spadesuit --- */
                   37591:       { 127,105392,                     /* character number, location */
                   37592:          25, 2,   -4, 2,      /* topleft row,col, and botleft row,col */
                   37593:           { 24,   29, 3,85, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   37594:             "\xf1\xb2\xb0\xf1\xa4\xa0\x96\x90\xf1\x88\x80\x7a\xce"
                   37595:             "\x9e\x02\x7e\x04\x30\xf1\x2e\x06\x20\xf1\x1e\x08\x1f"
                   37596:             "\x6e\x0a\x09\x22\x29\xf1\x18\x22\x28\x10\x25\x42\x45"
                   37597:             "\x20\xf2\xa4\xa4" }  },
                   37598:       /* --- trailer  --- */
                   37599:       { -99, -999,  0,0,0,0, { 0,0,0,0, (pixbyte *)"\0" }  }
                   37600:    } ;
1.1       albertel 37601: 
1.2       albertel 37602: 
1.5     ! raeburn  37603: /* --- size=8 for .325gf ---
        !          37604:  * mf '\mode=preview; mag=magstep(-11.40956951729850636869); input cmsy10'
        !          37605:  * --------------------------------------------------------------------- */
        !          37606: /* --- fontdef for cmsy325 --- */
        !          37607: static	chardef  cmsy325[] =
        !          37608:    {
        !          37609:       /* --- pixel bitmap for cmsy325 char#0 - --- */
        !          37610:       {   0,23588,                      /* character number, location */
        !          37611:          12, 4,   10, 4,      /* topleft row,col, and botleft row,col */
        !          37612:           { 27,    2, 3, 6, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          37613:             "\xf1\x0e\x0d" }  },
        !          37614:       /* --- pixel bitmap for cmsy325 char#1 \cdot --- */
        !          37615:       {   1,42366,                      /* character number, location */
        !          37616:          14, 4,    9, 4,      /* topleft row,col, and botleft row,col */
        !          37617:           {  5,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          37618:             "\xee\xff\xef\x00" }  },
        !          37619:       /* --- pixel bitmap for cmsy325 char#2 \times --- */
        !          37620:       {   2,47664,                      /* character number, location */
        !          37621:          22, 7,    0, 7,      /* topleft row,col, and botleft row,col */
        !          37622:           { 21,   22, 3,92, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          37623:             "\x02\xe0\x35\xe0\x13\x13\xd3\x33\xb3\x53\x93\x73\x73"
        !          37624:             "\x93\x53\xb3\x33\xd3\x13\xe0\x15\x80\xf1\x93\x90\x85"
        !          37625:             "\xe0\x13\x13\xd3\x33\xb3\x53\x93\x73\x73\x93\x53\xb3"
        !          37626:             "\x33\xd3\x13\xe0\x15\xe0\x32" }  },
        !          37627:       /* --- pixel bitmap for cmsy325 char#3 \ast --- */
        !          37628:       {   3,48343,                      /* character number, location */
        !          37629:          21, 3,    2, 3,      /* topleft row,col, and botleft row,col */
        !          37630:           { 16,   19, 3,59, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          37631:             "\xf3\x72\x72\x52\x55\x42\x43\x13\x32\x33\x43\x12\x13"
        !          37632:             "\x86\xc2\xc6\x83\x12\x13\x43\x32\x33\x13\x42\x45\x52"
        !          37633:             "\x52\xf3\x72\x73" }  },
        !          37634:       /* --- pixel bitmap for cmsy325 char#4 \div --- */
        !          37635:       {   4,49246,                      /* character number, location */
        !          37636:          24, 3,   -2, 3,      /* topleft row,col, and botleft row,col */
        !          37637:           { 28,   26, 3,43, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          37638:             "\xd2\xd0\xf3\xb6\xb0\xd2\xd0\xf5\xe0\xef\x1e\x0e\xf5"
        !          37639:             "\xe0\xe0\xd2\xd0\xf3\xb6\xb0\xd2\xd3" }  },
        !          37640:       /* --- pixel bitmap for cmsy325 char#5 \diamond --- */
        !          37641:       {   5,42909,                      /* character number, location */
        !          37642:          21, 1,    1, 1,      /* topleft row,col, and botleft row,col */
        !          37643:           { 20,   20, 3,75, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          37644:             "\x92\xe0\x34\xe0\x16\xd3\x23\xb3\x43\x93\x63\x73\x83"
        !          37645:             "\x53\xa3\x33\xc3\x1f\x13\xe3\x13\xc3\x33\xa3\x53\x83"
        !          37646:             "\x73\x63\x93\x43\xb3\x23\xd6\xe0\x14\xe0\x32\x90" }  },
        !          37647:       /* --- pixel bitmap for cmsy325 char#6 \pm --- */
        !          37648:       {   6,24287,                      /* character number, location */
        !          37649:          30, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          37650:           { 29,   30, 3,24, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          37651:             "\xfd\xe2\xdf\x1e\x0e\x01\xfb\xe2\xdf\x1e\x0e\x01" }  },
        !          37652:       /* --- pixel bitmap for cmsy325 char#7 \mp --- */
        !          37653:       {   7,49973,                      /* character number, location */
        !          37654:          22, 3,   -8, 3,      /* topleft row,col, and botleft row,col */
        !          37655:           { 29,   30, 3,25, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          37656:             "\xf1\x0e\x0e\x01\xfb\xe2\xdf\x1e\x0e\x01\xfd\xe2\xd5" }  },
        !          37657:       /* --- pixel bitmap for cmsy325 char#8 \oplus --- */
        !          37658:       {   8,25074,                      /* character number, location */
        !          37659:          26, 3,   -4, 3,      /* topleft row,col, and botleft row,col */
        !          37660:           { 29,   30, 3,131, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          37661:             "\xb7\xe0\x53\x31\x33\xe2\x61\x62\xb1\x81\x81\x91\x91"
        !          37662:             "\x91\x71\xa1\xa1\x30\xf1\x21\xb1\xb1\x20\xf2\x11\xc1"
        !          37663:             "\xc1\x1f\x21\xd1\xd1\x0e\x0e\x01\x0f\x31\xd1\xd1\xf2"
        !          37664:             "\x11\xc1\xc1\x10\xf1\x21\xb1\xb1\x20\x31\xa1\xa1\x71"
        !          37665:             "\x91\x91\x91\x81\x81\xb2\x61\x62\xe3\x31\x33\xe0\x57"
        !          37666:             "\xb2" }  },
        !          37667:       /* --- pixel bitmap for cmsy325 char#9 \ominus --- */
        !          37668:       {   9,50761,                      /* character number, location */
        !          37669:          26, 3,   -4, 3,      /* topleft row,col, and botleft row,col */
        !          37670:           { 29,   30, 3,123, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          37671:             "\xb7\xe0\x53\x73\xe2\xd2\xb1\xe0\x31\x91\xe0\x51\x71"
        !          37672:             "\xe0\x71\x30\xf1\x21\xe0\x91\x20\xf2\x11\xe0\xb1\x1f"
        !          37673:             "\x21\xe0\xd1\x0e\x0e\x01\x0f\x31\xe0\xd1\xf2\x11\xe0"
        !          37674:             "\xb1\x10\xf1\x21\xe0\x91\x20\x31\xe0\x71\x71\xe0\x51"
        !          37675:             "\x91\xe0\x31\xb2\xd2\xe3\x73\xe0\x57\xb3" }  },
        !          37676:       /* --- pixel bitmap for cmsy325 char#10 \otimes --- */
        !          37677:       {  10,25970,                      /* character number, location */
        !          37678:          26, 3,   -4, 3,      /* topleft row,col, and botleft row,col */
        !          37679:           { 29,   30, 3,201, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          37680:             "\xb7\xe0\x53\x73\xe2\xd2\xb1\xe0\x31\x91\xe0\x51\x71"
        !          37681:             "\x11\xe0\x31\x11\x51\x31\xe0\x11\x31\x41\x41\xd1\x41"
        !          37682:             "\x31\x61\xb1\x61\x21\x71\x91\x71\x21\x81\x71\x81\x11"
        !          37683:             "\xa1\x51\xa2\xb1\x31\xb2\xc1\x11\xc1\x0f\x11\xd1\xd1"
        !          37684:             "\x01\xc1\x11\xc2\xb1\x31\xb2\xa1\x51\xa1\x11\x81\x71"
        !          37685:             "\x81\x21\x71\x91\x71\x21\x61\xb1\x61\x31\x41\xd1\x41"
        !          37686:             "\x41\x31\xe0\x11\x31\x51\x11\xe0\x31\x11\x71\xe0\x51"
        !          37687:             "\x91\xe0\x31\xb2\xd2\xe3\x73\xe0\x57\xb4" }  },
        !          37688:       /* --- pixel bitmap for cmsy325 char#11 \oslash --- */
        !          37689:       {  11,51604,                      /* character number, location */
        !          37690:          26, 3,   -4, 3,      /* topleft row,col, and botleft row,col */
        !          37691:           { 29,   30, 3,189, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          37692:             "\xb7\xe0\x53\x73\xe2\xd2\xb1\xe0\x31\x91\xe0\x51\x71"
        !          37693:             "\xe0\x51\x11\x51\xe0\x51\x31\x41\xe0\x41\x41\x31\xe0"
        !          37694:             "\x41\x61\x21\xe0\x31\x71\x21\xe0\x21\x81\x11\xe0\x21"
        !          37695:             "\xa2\xe0\x11\xb2\xe1\xc1\x0f\x11\xd1\xd1\x01\xc1\xe2"
        !          37696:             "\xb1\xe0\x12\xa1\xe0\x21\x11\x81\xe0\x21\x21\x71\xe0"
        !          37697:             "\x31\x21\x61\xe0\x41\x31\x41\xe0\x41\x41\x31\xe0\x51"
        !          37698:             "\x51\x11\xe0\x51\x71\xe0\x51\x91\xe0\x31\xb2\xd2\xe3"
        !          37699:             "\x73\xe0\x57\xb2" }  },
        !          37700:       /* --- pixel bitmap for cmsy325 char#12 \odot --- */
        !          37701:       {  12,52486,                      /* character number, location */
        !          37702:          26, 3,   -4, 3,      /* topleft row,col, and botleft row,col */
        !          37703:           { 29,   30, 3,129, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          37704:             "\xb7\xe0\x53\x73\xe2\xd2\xb1\xe0\x31\x91\xe0\x51\x71"
        !          37705:             "\xe0\x71\x30\xf1\x21\xe0\x91\x20\xf2\x11\xe0\xb1\x11"
        !          37706:             "\xe0\xd2\xb5\xb1\x0f\x31\xa7\xa1\x01\xb5\xb2\xe0\xd1"
        !          37707:             "\xf2\x11\xe0\xb1\x10\xf1\x21\xe0\x91\x20\x31\xe0\x71"
        !          37708:             "\x71\xe0\x51\x91\xe0\x31\xb2\xd2\xe3\x73\xe0\x57\xb0" }  },
        !          37709:       /* --- pixel bitmap for cmsy325 char#13 \bigcirc --- */
        !          37710:       {  13,53451,                      /* character number, location */
        !          37711:          32, 3,  -10, 3,      /* topleft row,col, and botleft row,col */
        !          37712:           { 39,   42, 3,223, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          37713:             "\xe0\x19\xe0\xde\x01\xe0\x85\x95\xe0\x44\xe0\x14\xe0"
        !          37714:             "\x13\xe0\x53\xd3\xe0\x73\xb3\xe0\x93\x93\xe0\xb3\x82"
        !          37715:             "\xe0\xd2\x73\xe0\xd3\x53\xe0\xe0\x13\x42\xe0\xe0\x32"
        !          37716:             "\x33\xe0\xe0\x33\x10\xf2\x12\xe0\xe0\x52\x13\xe0\xe0"
        !          37717:             "\x53\x0f\x72\xe0\xe0\x72\x03\xe0\xe0\x53\xf2\x12\xe0"
        !          37718:             "\xe0\x52\x10\x13\xe0\xe0\x33\x32\xe0\xe0\x32\x43\xe0"
        !          37719:             "\xe0\x13\x53\xe0\xd3\x72\xe0\xd2\x83\xe0\xb3\x93\xe0"
        !          37720:             "\x93\xb3\xe0\x73\xd3\xe0\x53\xe0\x14\xe0\x14\xe0\x45"
        !          37721:             "\x95\xe0\x8e\x01\xe0\xd9\xe0\x10" }  },
        !          37722:       /* --- pixel bitmap for cmsy325 char#14 \circ --- */
        !          37723:       {  14,54203,                      /* character number, location */
        !          37724:          20, 2,    2, 2,      /* topleft row,col, and botleft row,col */
        !          37725:           { 18,   18, 3,55, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          37726:             "\x66\xaa\x73\x63\x53\x83\x33\xa3\x22\xc2\x13\xc3\x0f"
        !          37727:             "\x32\xe2\x03\xc3\x12\xc2\x23\xa3\x33\x83\x53\x63\x7a"
        !          37728:             "\xa6\x62" }  },
        !          37729:       /* --- pixel bitmap for cmsy325 char#15 \bullet --- */
        !          37730:       {  15,54850,                      /* character number, location */
        !          37731:          20, 2,    2, 2,      /* topleft row,col, and botleft row,col */
        !          37732:           { 18,   18, 3,39, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          37733:             "\x66\xaa\x7c\x5e\x20\xf1\x1e\x02\x1f\x5e\x04\xf1\x1e"
        !          37734:             "\x02\x10\x2e\x5c\x7a\xa6\x63" }  },
        !          37735:       /* --- pixel bitmap for cmsy325 char#16 \asymp --- */
        !          37736:       {  16,55568,                      /* character number, location */
        !          37737:          22, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          37738:           { 29,   22, 3,82, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          37739:             "\x02\xe0\xb5\xe0\x93\x13\xe0\x73\x34\xe0\x34\x64\xd4"
        !          37740:             "\xa5\x75\xed\xe0\x57\xb0\xf5\xe0\xe0\x10\xb7\xe0\x5d"
        !          37741:             "\xe5\x75\xa4\xd4\x64\xe0\x34\x33\xe0\x73\x13\xe0\x95"
        !          37742:             "\xe0\xb2" }  },
        !          37743:       /* --- pixel bitmap for cmsy325 char#17 \equiv --- */
        !          37744:       {  17,40787,                      /* character number, location */
        !          37745:          22, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          37746:           { 29,   22, 2,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          37747:             "\xff\x01\x00\x1d\xff\x07\x1d\xff\x01\x1d\xff\x07\x1d"
        !          37748:             "\xff\x01\x1d" }  },
        !          37749:       /* --- pixel bitmap for cmsy325 char#18 \subseteq --- */
        !          37750:       {  18,56341,                      /* character number, location */
        !          37751:          29, 4,   -9, 4,      /* topleft row,col, and botleft row,col */
        !          37752:           { 27,   38, 3,108, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          37753:             "\xae\x03\x7e\x06\x55\xe0\x73\xe0\x93\xe0\x93\xe0\xa2"
        !          37754:             "\xe0\xa3\xe0\x90\xf1\x12\xe0\xa3\xe0\xaf\x52\xe0\xb3"
        !          37755:             "\xe0\xa0\xf1\x12\xe0\xa0\x13\xe0\xb2\xe0\xb3\xe0\xb3"
        !          37756:             "\xe0\xb3\xe0\xb5\xe0\xae\x06\xae\x03\xf7\xe0\xd0\xf1"
        !          37757:             "\x1e\x0c" }  },
        !          37758:       /* --- pixel bitmap for cmsy325 char#19 \supseteq --- */
        !          37759:       {  19,57120,                      /* character number, location */
        !          37760:          29, 4,   -9, 4,      /* topleft row,col, and botleft row,col */
        !          37761:           { 27,   38, 3,109, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          37762:             "\x0e\x03\xae\x06\xe0\xa5\xe0\xb3\xe0\xb3\xe0\xb3\xe0"
        !          37763:             "\xb2\xe0\xb3\x10\xf1\xe0\xa2\x10\xe0\xa3\xf5\xe0\xb2"
        !          37764:             "\xe0\xa3\xf1\xe0\xa2\x10\xe0\x93\xe0\xa2\xe0\xa3\xe0"
        !          37765:             "\x93\xe0\x93\xe0\x75\x5e\x06\x7e\x03\xa0\xf7\xe0\xdf"
        !          37766:             "\x1e\x0c\x12" }  },
        !          37767:       /* --- pixel bitmap for cmsy325 char#20 \leq --- */
        !          37768:       {  20,39265,                      /* character number, location */
        !          37769:          29, 4,   -9, 4,      /* topleft row,col, and botleft row,col */
        !          37770:           { 27,   38, 3,122, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          37771:             "\xe0\xb2\xe0\x94\xe0\x74\xe0\x74\xe0\x74\xe0\x74\xe0"
        !          37772:             "\x74\xe0\x83\xe0\x84\xe0\x74\xe0\x74\xe0\x74\xe0\x74"
        !          37773:             "\xe0\x7f\x14\xe0\x90\x24\xe0\xb4\xe0\xb4\xe0\xb4\xe0"
        !          37774:             "\xb4\xe0\xb3\xe0\xb4\xe0\xb4\xe0\xb4\xe0\xb4\xe0\xb4"
        !          37775:             "\xe0\xb4\xe0\xb2\xf7\xe0\xdf\x1e\x0d" }  },
        !          37776:       /* --- pixel bitmap for cmsy325 char#21 \geq --- */
        !          37777:       {  21,40018,                      /* character number, location */
        !          37778:          29, 4,   -9, 4,      /* topleft row,col, and botleft row,col */
        !          37779:           { 27,   38, 3,124, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          37780:             "\x02\xe0\xb4\xe0\xb4\xe0\xb4\xe0\xb4\xe0\xb4\xe0\xb4"
        !          37781:             "\xe0\xb3\xe0\xb4\xe0\xb4\xe0\xb4\xe0\xb4\xe0\xb4\x20"
        !          37782:             "\xf1\xe0\x94\xe0\x74\xe0\x74\xe0\x74\xe0\x74\xe0\x74"
        !          37783:             "\xe0\x83\xe0\x84\xe0\x74\xe0\x74\xe0\x74\xe0\x74\xe0"
        !          37784:             "\x74\xe0\x92\xe0\xb0\xf7\xe0\xdf\x1e\x0d" }  },
        !          37785:       /* --- pixel bitmap for cmsy325 char#22 \preceq --- */
        !          37786:       {  22,57867,                      /* character number, location */
        !          37787:          29, 4,   -9, 4,      /* topleft row,col, and botleft row,col */
        !          37788:           { 27,   38, 3,108, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          37789:             "\xf2\xe0\xb2\xe0\xa3\xf1\xe0\xa2\x10\xe0\x93\xe0\x93"
        !          37790:             "\xe0\x93\xe0\x84\xe0\x74\xe0\x66\xe0\x28\xaf\x1e\xd0"
        !          37791:             "\x98\xe0\xa6\xe0\xa4\xe0\xb4\xe0\xb3\xe0\xb3\xe0\xb3"
        !          37792:             "\x10\xf1\xe0\xa2\x10\xe0\xa3\xf2\xe0\xb2\xf7\xe0\xdf"
        !          37793:             "\x1e\x0d" }  },
        !          37794:       /* --- pixel bitmap for cmsy325 char#23 \succeq --- */
        !          37795:       {  23,58613,                      /* character number, location */
        !          37796:          29, 4,   -9, 4,      /* topleft row,col, and botleft row,col */
        !          37797:           { 27,   38, 3,110, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          37798:             "\xf2\x02\xe0\xb3\xe0\xa0\xf1\x12\xe0\xa0\x13\xe0\xb3"
        !          37799:             "\xe0\xb3\xe0\xb4\xe0\xb4\xe0\xa6\xe0\xa8\x90\xf1\xde"
        !          37800:             "\xa8\xe0\x26\xe0\x64\xe0\x74\xe0\x83\xe0\x93\xe0\x93"
        !          37801:             "\xe0\x90\xf1\x12\xe0\xa3\xe0\xaf\x22\xe0\xb0\xf7\xe0"
        !          37802:             "\xdf\x1e\x0d" }  },
        !          37803:       /* --- pixel bitmap for cmsy325 char#24 \sim --- */
        !          37804:       {  24,59337,                      /* character number, location */
        !          37805:          16, 3,    6, 3,      /* topleft row,col, and botleft row,col */
        !          37806:           { 29,   10, 3,59, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          37807:             "\x55\xe0\x41\x39\xe0\x21\x2b\xe0\x11\x14\x55\xc2\x12"
        !          37808:             "\x94\xb4\xb4\x92\x12\xd4\x54\x11\xe0\x1b\x21\xe0\x29"
        !          37809:             "\x31\xe0\x45\x50" }  },
        !          37810:       /* --- pixel bitmap for cmsy325 char#25 \approx --- */
        !          37811:       {  25,60117,                      /* character number, location */
        !          37812:          22, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          37813:           { 29,   22, 3,127, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          37814:             "\x55\xe0\x41\x39\xe0\x21\x2b\xe0\x11\x14\x54\xd2\x12"
        !          37815:             "\x94\xb4\xb4\x92\x12\xc5\x54\x11\xe0\x1b\x21\xe0\x29"
        !          37816:             "\x31\xe0\x45\x50\xf1\xe0\xe0\x10\x55\xe0\x41\x39\xe0"
        !          37817:             "\x21\x2b\xe0\x11\x14\x54\xd2\x12\x94\xb4\xb4\x92\x12"
        !          37818:             "\xc5\x54\x11\xe0\x1b\x21\xe0\x29\x31\xe0\x45\x52" }  },
        !          37819:       /* --- pixel bitmap for cmsy325 char#26 \subset --- */
        !          37820:       {  26,35095,                      /* character number, location */
        !          37821:          25, 4,   -3, 4,      /* topleft row,col, and botleft row,col */
        !          37822:           { 27,   28, 3,96, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          37823:             "\xae\x03\x7e\x06\x55\xe0\x73\xe0\x93\xe0\x93\xe0\xa2"
        !          37824:             "\xe0\xa3\xe0\x90\xf1\x12\xe0\xa3\xe0\xaf\x52\xe0\xb3"
        !          37825:             "\xe0\xa0\xf1\x12\xe0\xa0\x13\xe0\xb2\xe0\xb3\xe0\xb3"
        !          37826:             "\xe0\xb3\xe0\xb5\xe0\xae\x06\xae\x03" }  },
        !          37827:       /* --- pixel bitmap for cmsy325 char#27 \supset --- */
        !          37828:       {  27,35833,                      /* character number, location */
        !          37829:          25, 4,   -3, 4,      /* topleft row,col, and botleft row,col */
        !          37830:           { 27,   28, 3,97, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          37831:             "\x0e\x03\xae\x06\xe0\xa5\xe0\xb3\xe0\xb3\xe0\xb3\xe0"
        !          37832:             "\xb2\xe0\xb3\x10\xf1\xe0\xa2\x10\xe0\xa3\xf5\xe0\xb2"
        !          37833:             "\xe0\xa3\xf1\xe0\xa2\x10\xe0\x93\xe0\xa2\xe0\xa3\xe0"
        !          37834:             "\x93\xe0\x93\xe0\x75\x5e\x06\x7e\x03\xa2" }  },
        !          37835:       /* --- pixel bitmap for cmsy325 char#28 \ll --- */
        !          37836:       {  28,61010,                      /* character number, location */
        !          37837:          26, 3,   -4, 3,      /* topleft row,col, and botleft row,col */
        !          37838:           { 39,   30, 3,178, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          37839:             "\xe0\x83\xb3\xe0\x73\xb3\xe0\x64\xa4\xe0\x54\xa4\xe0"
        !          37840:             "\x63\xb3\xe0\x64\xa4\xe0\x63\xb3\xe0\x64\xa4\xe0\x63"
        !          37841:             "\xb3\xe0\x64\xa4\xe0\x54\xa4\xe0\x63\xb3\xe0\x64\xa4"
        !          37842:             "\xe0\x63\xb3\xe0\x6f\x14\xa4\xe0\x70\x23\xb3\xe0\x94"
        !          37843:             "\xa4\xe0\x93\xb3\xe0\x94\xa4\xe0\x94\xa4\xe0\x93\xb3"
        !          37844:             "\xe0\x94\xa4\xe0\x93\xb3\xe0\x94\xa4\xe0\x93\xb3\xe0"
        !          37845:             "\x94\xa4\xe0\x94\xa4\xe0\x93\xb3\xe0\x93\xb3" }  },
        !          37846:       /* --- pixel bitmap for cmsy325 char#29 \gg --- */
        !          37847:       {  29,61928,                      /* character number, location */
        !          37848:          26, 3,   -4, 3,      /* topleft row,col, and botleft row,col */
        !          37849:           { 39,   30, 3,179, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          37850:             "\x03\xb3\xe0\x93\xb3\xe0\x94\xa4\xe0\x94\xa4\xe0\x93"
        !          37851:             "\xb3\xe0\x94\xa4\xe0\x93\xb3\xe0\x94\xa4\xe0\x93\xb3"
        !          37852:             "\xe0\x94\xa4\xe0\x94\xa4\xe0\x93\xb3\xe0\x94\xa4\xe0"
        !          37853:             "\x93\xb3\x20\xf1\xe0\x74\xa4\xe0\x63\xb3\xe0\x64\xa4"
        !          37854:             "\xe0\x63\xb3\xe0\x64\xa4\xe0\x54\xa4\xe0\x63\xb3\xe0"
        !          37855:             "\x64\xa4\xe0\x63\xb3\xe0\x64\xa4\xe0\x63\xb3\xe0\x64"
        !          37856:             "\xa4\xe0\x54\xa4\xe0\x63\xb3\xe0\x73\xb3\xe0\x83" }  },
        !          37857:       /* --- pixel bitmap for cmsy325 char#30 \prec --- */
        !          37858:       {  30,62693,                      /* character number, location */
        !          37859:          24, 4,   -4, 4,      /* topleft row,col, and botleft row,col */
        !          37860:           { 27,   28, 3,98, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          37861:             "\xf2\xe0\xb2\xe0\xa3\xf1\xe0\xa2\x10\xe0\x93\xe0\x93"
        !          37862:             "\xe0\x93\xe0\x84\xe0\x74\xe0\x66\xe0\x28\xaf\x1e\xd0"
        !          37863:             "\x98\xe0\xa6\xe0\xa4\xe0\xb4\xe0\xb3\xe0\xb3\xe0\xb3"
        !          37864:             "\x10\xf1\xe0\xa2\x10\xe0\xa3\xf2\xe0\xb2" }  },
        !          37865:       /* --- pixel bitmap for cmsy325 char#31 \succ --- */
        !          37866:       {  31,63393,                      /* character number, location */
        !          37867:          24, 4,   -4, 4,      /* topleft row,col, and botleft row,col */
        !          37868:           { 27,   28, 3,99, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          37869:             "\xf2\x02\xe0\xb3\xe0\xa0\xf1\x12\xe0\xa0\x13\xe0\xb3"
        !          37870:             "\xe0\xb3\xe0\xb4\xe0\xb4\xe0\xa6\xe0\xa8\x90\xf1\xde"
        !          37871:             "\xa8\xe0\x26\xe0\x64\xe0\x74\xe0\x83\xe0\x93\xe0\x93"
        !          37872:             "\xe0\x90\xf1\x12\xe0\xa3\xe0\xaf\x22\xe0\xb0" }  },
        !          37873:       /* --- pixel bitmap for cmsy325 char#32 \leftarrow --- */
        !          37874:       {  32,31854,                      /* character number, location */
        !          37875:          23, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          37876:           { 40,   24, 2,59, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          37877:             "\x0a\x01\x1d\x00\xff\x02\x09\x02\x1d\x00\xff\x01\x08"
        !          37878:             "\x02\x1e\x00\x07\x02\x25\x03\x25\x02\x24\x03\x24\x03"
        !          37879:             "\x22\x00\xff\x01\x01\x27\x03\x03\x26\x03\x27\x02\x26"
        !          37880:             "\x03\x26\x02\x1f\x00\xff\x01\x08\x02\x1e\x00\xff\x02"
        !          37881:             "\x09\x02\x1d\x00\x0a\x01\x1d" }  },
        !          37882:       /* --- pixel bitmap for cmsy325 char#33 \rightarrow --- */
        !          37883:       {  33,32920,                      /* character number, location */
        !          37884:          23, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          37885:           { 40,   24, 2,57, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          37886:             "\x1d\x01\x0a\x00\xff\x02\x1d\x02\x09\x00\xff\x01\x1e"
        !          37887:             "\x02\x08\x00\x1f\x02\x26\x03\x26\x02\x27\x03\x26\x03"
        !          37888:             "\x03\xff\x01\x28\x22\x03\x24\x03\x24\x02\x25\x03\x25"
        !          37889:             "\x02\x07\x00\xff\x01\x1e\x02\x08\x00\xff\x02\x1d\x02"
        !          37890:             "\x09\x00\x1d\x01\x0a" }  },
        !          37891:       /* --- pixel bitmap for cmsy325 char#34 \uparrow --- */
        !          37892:       {  34,30733,                      /* character number, location */
        !          37893:          31, 1,   -9, 1,      /* topleft row,col, and botleft row,col */
        !          37894:           { 20,   40, 3,63, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          37895:             "\xa1\x90\xf2\x92\x90\xf1\x84\x80\x76\xd2\x12\x12\xb2"
        !          37896:             "\x22\x22\x83\x32\x33\x44\x42\x44\x13\x62\x64\x82\x81"
        !          37897:             "\xfe\x92\x90\xfb\x92\x92" }  },
        !          37898:       /* --- pixel bitmap for cmsy325 char#35 \downarrow --- */
        !          37899:       {  35,29848,                      /* character number, location */
        !          37900:          31, 1,   -9, 1,      /* topleft row,col, and botleft row,col */
        !          37901:           { 20,   40, 3,63, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          37902:             "\xfe\x92\x90\xfb\x92\x91\x82\x84\x62\x63\x14\x42\x44"
        !          37903:             "\x43\x32\x33\x82\x22\x22\xb2\x12\x12\xd6\x70\xf1\x84"
        !          37904:             "\x80\xf2\x92\x90\xa1\x92" }  },
        !          37905:       /* --- pixel bitmap for cmsy325 char#36 \leftrightarrow --- */
        !          37906:       {  36,34323,                      /* character number, location */
        !          37907:          23, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          37908:           { 40,   24, 3,127, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          37909:             "\xa1\xe0\x41\xa0\xf2\x92\xe0\x42\x90\xf1\x82\xe0\x62"
        !          37910:             "\x80\x72\xe0\x82\xd3\xe0\x83\xc2\xe0\xa2\xa3\xe0\xc3"
        !          37911:             "\x73\xe0\xe3\x30\xf1\x1e\x0e\x0b\x33\xe0\xe3\x73\xe0"
        !          37912:             "\xc3\xa2\xe0\xa2\xc3\xe0\x83\xd2\xe0\x82\x70\xf1\x82"
        !          37913:             "\xe0\x62\x80\xf2\x92\xe0\x42\x90\xa1\xe0\x41\xa1" }  },
        !          37914:       /* --- pixel bitmap for cmsy325 char#37 \nearrow --- */
        !          37915:       {  37,64467,                      /* character number, location */
        !          37916:          32, 3,   -9, 3,      /* topleft row,col, and botleft row,col */
        !          37917:           { 41,   41, 2,107, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          37918:             "\x18\x02\x27\x04\x0a\x02\x1b\x0e\x1d\x0b\x25\x04\x24"
        !          37919:             "\x05\x23\x03\x01\x02\x22\x03\x02\x02\x21\x03\x03\x02"
        !          37920:             "\x20\x03\x04\x02\x1f\x03\x05\x02\x1e\x03\x06\x02\x1d"
        !          37921:             "\x03\x07\x02\x1c\x03\x09\x02\x1a\x03\x0a\x02\x19\x03"
        !          37922:             "\x0c\x02\x17\x03\x0d\x02\x16\x03\x25\x03\x25\x03\x25"
        !          37923:             "\x03\x25\x03\x25\x03\x25\x03\x25\x03\x25\x03\x25\x03"
        !          37924:             "\x25\x03\x25\x03\x25\x03\x25\x03\x25\x03\x25\x03\x25"
        !          37925:             "\x03\x25\x03\x25\x03\x25\x03\x25\x03\x25\x03\x25\x03"
        !          37926:             "\x26\x02\x27" }  },
        !          37927:       /* --- pixel bitmap for cmsy325 char#38 \searrow --- */
        !          37928:       {  38,65591,                      /* character number, location */
        !          37929:          31, 3,  -10, 3,      /* topleft row,col, and botleft row,col */
        !          37930:           { 41,   41, 2,107, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          37931:             "\x00\x02\x27\x03\x27\x03\x27\x03\x27\x03\x27\x03\x27"
        !          37932:             "\x03\x27\x03\x27\x03\x27\x03\x27\x03\x27\x03\x27\x03"
        !          37933:             "\x27\x03\x27\x03\x27\x03\x27\x03\x27\x03\x27\x03\x27"
        !          37934:             "\x03\x27\x03\x27\x03\x27\x03\x27\x03\x27\x03\x0d\x02"
        !          37935:             "\x18\x03\x0c\x02\x19\x03\x0a\x02\x1b\x03\x09\x02\x1c"
        !          37936:             "\x03\x07\x02\x1e\x03\x06\x02\x1f\x03\x05\x02\x20\x03"
        !          37937:             "\x04\x02\x21\x03\x03\x02\x22\x03\x02\x02\x23\x03\x01"
        !          37938:             "\x02\x24\x05\x25\x04\x1e\x0b\x1c\x0e\x19\x04\x0a\x02"
        !          37939:             "\x19\x02\x0f" }  },
        !          37940:       /* --- pixel bitmap for cmsy325 char#39 \simeq --- */
        !          37941:       {  39,66395,                      /* character number, location */
        !          37942:          21, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          37943:           { 29,   21, 3,74, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          37944:             "\x55\xe0\x41\x39\xe0\x21\x2b\xe0\x11\x14\x55\xc2\x12"
        !          37945:             "\x94\xb4\xb4\x92\x12\xd4\x54\x11\xe0\x1b\x21\xe0\x29"
        !          37946:             "\x31\xe0\x45\x50\xf8\xe0\xe0\x1f\x1e\x0e\x01" }  },
        !          37947:       /* --- pixel bitmap for cmsy325 char#40 \Leftarrow --- */
        !          37948:       {  40,67439,                      /* character number, location */
        !          37949:          24, 3,   -2, 3,      /* topleft row,col, and botleft row,col */
        !          37950:           { 39,   26, 2,61, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          37951:             "\x0f\x01\x25\x02\x17\x00\xff\x01\x0d\x02\x18\x00\x0c"
        !          37952:             "\x02\x24\x02\x24\x03\x23\x1e\x08\x1f\x07\x02\x23\x03"
        !          37953:             "\x21\x04\x21\x04\x25\x04\x25\x03\x26\x03\x25\x03\x26"
        !          37954:             "\x1e\x0a\x1d\x0b\x02\x25\x03\x25\x02\x26\x02\x18\x00"
        !          37955:             "\xff\x01\x0e\x02\x17\x00\x0f\x01\x17" }  },
        !          37956:       /* --- pixel bitmap for cmsy325 char#41 \Rightarrow --- */
        !          37957:       {  41,68482,                      /* character number, location */
        !          37958:          24, 3,   -2, 3,      /* topleft row,col, and botleft row,col */
        !          37959:           { 40,   26, 2,61, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          37960:             "\x18\x01\x27\x02\x0e\x00\xff\x01\x19\x02\x0d\x00\x1a"
        !          37961:             "\x02\x27\x02\x26\x03\x0a\x1f\x09\x20\x27\x02\x27\x03"
        !          37962:             "\x27\x04\x26\x04\x22\x04\x23\x03\x23\x03\x24\x03\x07"
        !          37963:             "\x1f\x09\x1e\x25\x02\x25\x03\x25\x02\x25\x02\x0d\x00"
        !          37964:             "\xff\x01\x18\x02\x0e\x00\x18\x01\x0f" }  },
        !          37965:       /* --- pixel bitmap for cmsy325 char#42 \Uparrow --- */
        !          37966:       {  42,69340,                      /* character number, location */
        !          37967:          31, 1,   -9, 1,      /* topleft row,col, and botleft row,col */
        !          37968:           { 25,   40, 3,87, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          37969:             "\xf1\xc1\xc0\xf1\xb3\xb0\xf1\xa2\x12\xa0\xf1\x92\x32"
        !          37970:             "\x90\x82\x52\xe0\x12\x72\xd2\x92\xb3\x93\x85\x95\x53"
        !          37971:             "\x12\x92\x13\x23\x32\x92\x35\x42\x92\x42\xfe\x62\x92"
        !          37972:             "\x60\xf8\x62\x92\x60" }  },
        !          37973:       /* --- pixel bitmap for cmsy325 char#43 \Downarrow --- */
        !          37974:       {  43,70312,                      /* character number, location */
        !          37975:          31, 1,   -9, 1,      /* topleft row,col, and botleft row,col */
        !          37976:           { 25,   40, 3,87, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          37977:             "\xfe\x62\x92\x60\xf8\x62\x92\x62\x42\x92\x45\x32\x92"
        !          37978:             "\x33\x23\x12\x92\x13\x55\x95\x83\x93\xb2\x92\xd2\x72"
        !          37979:             "\xe0\x12\x52\x80\xf1\x92\x32\x90\xf1\xa2\x12\xa0\xf1"
        !          37980:             "\xb3\xb0\xf1\xc1\xc0" }  },
        !          37981:       /* --- pixel bitmap for cmsy325 char#44 \Leftrightarrow --- */
        !          37982:       {  44,71704,                      /* character number, location */
        !          37983:          24, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
        !          37984:           { 42,   26, 3,155, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          37985:             "\xf1\xc2\xe2\xc0\xf1\xb2\xe0\x22\xb0\xa2\xe0\x42\xe0"
        !          37986:             "\x52\xe0\x62\xe0\x33\xe0\x63\xe0\x2e\x0c\xee\x0e\x02"
        !          37987:             "\xb3\xe0\xc3\x93\xe0\xe3\x63\xe0\xe0\x43\x24\xe0\xe0"
        !          37988:             "\x64\x23\xe0\xe0\x43\x53\xe0\xe0\x23\x82\xe0\xe2\xb2"
        !          37989:             "\xe0\xc2\xde\x0e\xe0\x1e\x0c\x80\xf1\x92\xe0\x62\x90"
        !          37990:             "\xa2\xe0\x42\xa0\xf1\xb2\xe0\x22\xb0\xf1\xc2\xe2\xc0" }  },
        !          37991:       /* --- pixel bitmap for cmsy325 char#45 \nwarrow --- */
        !          37992:       {  45,72818,                      /* character number, location */
        !          37993:          32, 2,   -9, 2,      /* topleft row,col, and botleft row,col */
        !          37994:           { 41,   41, 2,106, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          37995:             "\x0f\x02\x19\x02\x0a\x04\x19\x0e\x1c\x0b\x1e\x04\x25"
        !          37996:             "\x05\x24\x02\x01\x03\x23\x02\x02\x03\x22\x02\x03\x03"
        !          37997:             "\x21\x02\x04\x03\x20\x02\x05\x03\x1f\x02\x06\x03\x1e"
        !          37998:             "\x02\x07\x03\x1c\x02\x09\x03\x1b\x02\x0a\x03\x19\x02"
        !          37999:             "\x0c\x03\x18\x02\x0d\x03\x27\x03\x27\x03\x27\x03\x27"
        !          38000:             "\x03\x27\x03\x27\x03\x27\x03\x27\x03\x27\x03\x27\x03"
        !          38001:             "\x27\x03\x27\x03\x27\x03\x27\x03\x27\x03\x27\x03\x27"
        !          38002:             "\x03\x27\x03\x27\x03\x27\x03\x27\x03\x27\x03\x27\x03"
        !          38003:             "\x27\x02" }  },
        !          38004:       /* --- pixel bitmap for cmsy325 char#46 \swarrow --- */
        !          38005:       {  46,73942,                      /* character number, location */
        !          38006:          31, 2,  -10, 2,      /* topleft row,col, and botleft row,col */
        !          38007:           { 41,   41, 2,107, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          38008:             "\x27\x02\x26\x03\x25\x03\x25\x03\x25\x03\x25\x03\x25"
        !          38009:             "\x03\x25\x03\x25\x03\x25\x03\x25\x03\x25\x03\x25\x03"
        !          38010:             "\x25\x03\x25\x03\x25\x03\x25\x03\x25\x03\x25\x03\x25"
        !          38011:             "\x03\x25\x03\x25\x03\x25\x03\x25\x03\x16\x02\x0d\x03"
        !          38012:             "\x17\x02\x0c\x03\x19\x02\x0a\x03\x1a\x02\x09\x03\x1c"
        !          38013:             "\x02\x07\x03\x1d\x02\x06\x03\x1e\x02\x05\x03\x1f\x02"
        !          38014:             "\x04\x03\x20\x02\x03\x03\x21\x02\x02\x03\x22\x02\x01"
        !          38015:             "\x03\x23\x05\x24\x04\x25\x0b\x1d\x0e\x1b\x02\x0a\x04"
        !          38016:             "\x27\x02\x18" }  },
        !          38017:       /* --- pixel bitmap for cmsy325 char#47 \propto --- */
        !          38018:       {  47,75078,                      /* character number, location */
        !          38019:          19, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          38020:           { 30,   19, 3,112, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          38021:             "\x56\xe0\x14\x49\xb4\x52\x55\x82\x71\x94\x61\x81\xb4"
        !          38022:             "\x41\x91\xc4\x22\x81\xe3\x12\x91\xe5\xa1\xe0\x14\xa1"
        !          38023:             "\xe0\x23\xa1\xe0\x24\x91\xe0\x25\x81\xe0\x12\x13\x91"
        !          38024:             "\xd2\x24\x81\xd1\x44\x81\xb1\x64\x81\x82\x85\x72\x34"
        !          38025:             "\xb6\x56\xe0\x14" }  },
        !          38026:       /* --- pixel bitmap for cmsy325 char#48 \prime --- */
        !          38027:       {  48,75666,                      /* character number, location */
        !          38028:          25, 1,    2, 1,      /* topleft row,col, and botleft row,col */
        !          38029:           { 10,   23, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          38030:             "\xc0\x81\x0f\x3e\xf8\xf0\xc1\x07\x1f\x3c\xf8\xe0\x81"
        !          38031:             "\x07\x0e\x3c\xf0\xc0\x01\x07\x0e\x38\xe0\x80\x01\x07"
        !          38032:             "\x0c\x30\x00" }  },
        !          38033:       /* --- pixel bitmap for cmsy325 char#49 \infty --- */
        !          38034:       {  49,45884,                      /* character number, location */
        !          38035:          19, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          38036:           { 39,   19, 3,139, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          38037:             "\x66\xe0\x25\xaa\xba\x73\x37\x83\x81\x52\x76\x62\xb1"
        !          38038:             "\x32\xa5\x42\xd1\x21\xc5\x22\xe1\x12\xd7\xe0\x22\xe0"
        !          38039:             "\x16\xe0\x22\xe0\x15\xe0\x32\xe0\x25\xe0\x22\xe0\x35"
        !          38040:             "\xe0\x12\xe0\x26\xe0\x12\xe0\x27\xd2\x11\xe2\x25\xc1"
        !          38041:             "\x21\xd2\x45\xa2\x31\xb2\x66\x72\x51\x83\x87\x33\x7a"
        !          38042:             "\xba\xa5\xe0\x26\x60" }  },
        !          38043:       /* --- pixel bitmap for cmsy325 char#50 \in --- */
        !          38044:       {  50,36526,                      /* character number, location */
        !          38045:          25, 4,   -3, 4,      /* topleft row,col, and botleft row,col */
        !          38046:           { 22,   28, 3,104, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          38047:             "\xac\x7e\x01\x55\xe0\x23\xe0\x43\xe0\x43\xe0\x52\xe0"
        !          38048:             "\x53\xe0\x40\xf1\x12\xe0\x53\xe0\x5f\x12\xe0\x6f\x1e"
        !          38049:             "\x08\x0f\x12\xe0\x63\xe0\x50\xf1\x12\xe0\x50\x13\xe0"
        !          38050:             "\x62\xe0\x63\xe0\x63\xe0\x63\xe0\x65\xe0\x5e\x01\xac" }  },
        !          38051:       /* --- pixel bitmap for cmsy325 char#51 \ni --- */
        !          38052:       {  51,76351,                      /* character number, location */
        !          38053:          25, 4,   -3, 4,      /* topleft row,col, and botleft row,col */
        !          38054:           { 22,   28, 3,105, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          38055:             "\x0c\xae\x01\xe0\x55\xe0\x63\xe0\x63\xe0\x63\xe0\x62"
        !          38056:             "\xe0\x63\x10\xf1\xe0\x52\x10\xe0\x53\xf1\xe0\x62\x0f"
        !          38057:             "\x1e\x08\xf1\xe0\x62\xe0\x53\xf1\xe0\x52\x10\xe0\x43"
        !          38058:             "\xe0\x52\xe0\x53\xe0\x43\xe0\x43\xe0\x25\x5e\x01\x7c"
        !          38059:             "\xa6" }  },
        !          38060:       /* --- pixel bitmap for cmsy325 char#52 \triangle --- */
        !          38061:       {  52,77105,                      /* character number, location */
        !          38062:          32, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          38063:           { 34,   32, 3,184, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          38064:             "\xe0\x22\xe0\x20\xf1\xe0\x14\xe0\x10\xe6\xe0\xe2\x22"
        !          38065:             "\xe0\xd3\x23\xe0\xc2\x42\xe0\xb3\x43\xe0\xa2\x62\xe0"
        !          38066:             "\x93\x63\xe0\x82\x82\xe0\x73\x83\xe0\x62\xa2\xe0\x53"
        !          38067:             "\xa3\xe0\x42\xc2\xe0\x33\xc3\xe0\x13\xe3\xe2\xe0\x22"
        !          38068:             "\xd3\xe0\x23\xc2\xe0\x42\xb3\xe0\x43\xa2\xe0\x62\x93"
        !          38069:             "\xe0\x63\x82\xe0\x82\x73\xe0\x83\x62\xe0\xa2\x53\xe0"
        !          38070:             "\xa3\x42\xe0\xc2\x33\xe0\xc3\x22\xe0\xe2\x1f\x1e\x0e"
        !          38071:             "\x06" }  },
        !          38072:       /* --- pixel bitmap for cmsy325 char#53 \bigtriangledown --- */
        !          38073:       {  53,77928,                      /* character number, location */
        !          38074:          22, 3,  -10, 3,      /* topleft row,col, and botleft row,col */
        !          38075:           { 34,   32, 3,185, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          38076:             "\xf1\x0e\x0e\x06\x12\xe0\xe2\x23\xe0\xc3\x32\xe0\xc2"
        !          38077:             "\x43\xe0\xa3\x52\xe0\xa2\x63\xe0\x83\x72\xe0\x82\x83"
        !          38078:             "\xe0\x63\x92\xe0\x62\xa3\xe0\x43\xb2\xe0\x42\xc3\xe0"
        !          38079:             "\x23\xd2\xe0\x22\xe3\xe3\xe0\x13\xc3\xe0\x32\xc2\xe0"
        !          38080:             "\x43\xa3\xe0\x52\xa2\xe0\x63\x83\xe0\x72\x82\xe0\x83"
        !          38081:             "\x63\xe0\x92\x62\xe0\xa3\x43\xe0\xb2\x42\xe0\xc3\x23"
        !          38082:             "\xe0\xd2\x22\xe0\xe6\xe0\xf1\xe0\x14\xe0\x10\xe0\x22"
        !          38083:             "\xe0\x20" }  },
        !          38084:       /* --- pixel bitmap for cmsy325 char#54 \boldslash --- */
        !          38085:       {  54,78360,                      /* character number, location */
        !          38086:          32, 6,  -10, 6,      /* topleft row,col, and botleft row,col */
        !          38087:           { 23,   42, 2,85, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          38088:             "\x15\x02\x14\x03\x14\x02\x14\x03\x14\x02\x14\x03\x14"
        !          38089:             "\x02\x14\x03\x14\x02\x14\x03\x14\x02\x14\x03\x14\x02"
        !          38090:             "\x14\x03\x14\x02\x14\x03\x14\x02\x14\x03\x14\x02\x14"
        !          38091:             "\x03\x13\x03\x14\x02\x14\x03\x14\x02\x14\x03\x14\x02"
        !          38092:             "\x14\x03\x14\x02\x14\x03\x14\x02\x14\x03\x14\x02\x14"
        !          38093:             "\x03\x14\x02\x14\x03\x14\x02\x14\x03\x14\x02\x14\x03"
        !          38094:             "\x14\x02\x14\x03\x14\x02\x15" }  },
        !          38095:       /* --- pixel bitmap for cmsy325 char#55 \' --- */
        !          38096:       {  55,78769,                      /* character number, location */
        !          38097:          19, 3,    3, 3,      /* topleft row,col, and botleft row,col */
        !          38098:           {  3,   16, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          38099:             "\xdb\xb6\xed\xdf\xb6\x6d" }  },
        !          38100:       /* --- pixel bitmap for cmsy325 char#56 \forall --- */
        !          38101:       {  56,37186,                      /* character number, location */
        !          38102:          31, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
        !          38103:           { 26,   32, 3,149, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          38104:             "\xf1\x02\xe0\x82\x03\xe0\x63\x12\xe0\x62\x23\xe0\x43"
        !          38105:             "\x10\xf1\x22\xe0\x42\x20\x23\xe0\x23\x52\xe0\x22\x63"
        !          38106:             "\xe3\x72\xe2\x40\xf1\x4e\x04\x40\x52\xc2\xa3\xa3\x50"
        !          38107:             "\xf1\x62\xa2\x60\x63\x83\xd2\x82\xe3\x63\x70\xf1\x82"
        !          38108:             "\x62\x80\x83\x43\xe0\x32\x42\xe0\x43\x23\x90\xf1\xa2"
        !          38109:             "\x22\xa0\xa6\xa0\xf1\xb4\xb0\xf1\xc2\xc1" }  },
        !          38110:       /* --- pixel bitmap for cmsy325 char#57 \exists --- */
        !          38111:       {  57,37895,                      /* character number, location */
        !          38112:          31, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          38113:           { 19,   31, 3,32, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          38114:             "\xf1\x0e\x05\xfb\xe0\x32\x2e\x03\x1e\x04\xfc\xe0\x32"
        !          38115:             "\x0f\x1e\x05" }  },
        !          38116:       /* --- pixel bitmap for cmsy325 char#58 \neg --- */
        !          38117:       {  58,38553,                      /* character number, location */
        !          38118:          16, 3,    4, 3,      /* topleft row,col, and botleft row,col */
        !          38119:           { 24,   12, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          38120:             "\xf1\x0e\x0a\xf9\xe0\x82" }  },
        !          38121:       /* --- pixel bitmap for cmsy325 char#59 \emptyset --- */
        !          38122:       {  59,79492,                      /* character number, location */
        !          38123:          35, 2,   -3, 2,      /* topleft row,col, and botleft row,col */
        !          38124:           { 18,   38, 3,161, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          38125:             "\xf1\xd2\x30\xc3\x98\x92\x43\x73\x63\x62\x64\x30\xf1"
        !          38126:             "\x22\x72\x12\x20\x13\x72\x13\x22\x73\x22\x22\x72\x32"
        !          38127:             "\x13\x72\x36\x63\x33\x0f\x23\x62\x43\x03\x53\x43\x0f"
        !          38128:             "\x13\x52\x53\x03\x43\x53\x0f\x23\x42\x63\x03\x33\x63"
        !          38129:             "\x0f\x13\x32\x73\x12\x23\x72\x22\x22\x82\x23\x12\x73"
        !          38130:             "\x32\x12\x72\x45\x72\x53\x72\x63\x63\x73\x42\x89\x60"
        !          38131:             "\xf1\x32\xd0" }  },
        !          38132:       /* --- pixel bitmap for cmsy325 char#60 \Re --- */
        !          38133:       {  60,81431,                      /* character number, location */
        !          38134:          32, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          38135:           { 30,   33, 3,197, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          38136:             "\xe0\x54\xa5\x88\x81\x42\x52\x44\x71\x62\x31\x65\x52"
        !          38137:             "\x63\x11\x84\x51\x84\x85\x41\x83\xa5\x32\x74\xa4\x42"
        !          38138:             "\x64\xa5\x42\x54\xb4\x52\x44\xb5\x52\x34\xc4\x62\x25"
        !          38139:             "\xc4\x61\x25\xc3\x71\x25\xb2\x91\x2e\x02\xb1\x25\x44"
        !          38140:             "\x81\x42\x25\x44\x81\x41\x35\x44\x91\x22\x35\x44\xa2"
        !          38141:             "\x55\x44\xe0\x34\x54\x80\xf3\x94\x64\x70\x11\x74\x64"
        !          38142:             "\x82\x63\x74\x71\x11\x63\x74\x91\x62\x84\x51\x41\x43"
        !          38143:             "\x84\x32\x61\x32\xa6\x93\xe3\x53" }  },
        !          38144:       /* --- pixel bitmap for cmsy325 char#61 \Im --- */
        !          38145:       {  61,82830,                      /* character number, location */
        !          38146:          31, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          38147:           { 29,   31, 3,155, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          38148:             "\x68\xe0\x52\x64\xe0\x21\xa4\xd1\xc4\xb1\xe4\x91\xe0"
        !          38149:             "\x24\x81\xe0\x34\x62\xe0\x44\x41\x11\xe0\x66\x21\xe0"
        !          38150:             "\xe0\xf1\x11\xe0\xd0\x21\xe0\x45\x61\xe0\x22\x42\x53"
        !          38151:             "\xc3\x51\x84\x74\x61\xe0\x44\x61\xf1\xe0\x44\x70\xf1"
        !          38152:             "\xe0\x54\x60\xe0\x64\xe0\xc4\x46\xe0\x24\x65\xe4\x84"
        !          38153:             "\xd4\x95\xb4\xb4\x94\xd4\x74\xe0\x15\x35\xe0\x49\x84" }  },
        !          38154:       /* --- pixel bitmap for cmsy325 char#62 \top --- */
        !          38155:       {  62,83626,                      /* character number, location */
        !          38156:          30, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          38157:           { 30,   30, 2, 9, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          38158:             "\xff\x01\x00\x1e\xff\x1b\x0e\x02\x0e" }  },
        !          38159:       /* --- pixel bitmap for cmsy325 char#63 \bot --- */
        !          38160:       {  63,84395,                      /* character number, location */
        !          38161:          30, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          38162:           { 30,   30, 2, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          38163:             "\xff\x1b\x0e\x02\x0e\xff\x01\x1e" }  },
        !          38164:       /* --- pixel bitmap for cmsy325 char#64 \aleph --- */
        !          38165:       {  64,85656,                      /* character number, location */
        !          38166:          31, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          38167:           { 23,   31, 3,145, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          38168:             "\x11\xe1\x62\xd2\x62\xd3\x53\xc3\x53\xc4\x53\xc4\x53"
        !          38169:             "\xc4\x44\xc4\x44\xb5\x44\xa1\x13\x54\x91\x22\x55\x81"
        !          38170:             "\x22\x51\x14\x71\x21\x52\x24\x61\x82\x33\x61\x72\x53"
        !          38171:             "\x41\x82\x63\x31\x73\x64\x21\x73\x74\x11\x73\x85\x73"
        !          38172:             "\x94\x73\xa4\x63\xb4\x63\xb4\x54\xb3\x64\xb3\x54\xc3"
        !          38173:             "\x54\xb3\x54\xc2\x44\xd9\xe1\x10" }  },
        !          38174:       /* --- pixel bitmap for cmsy325 char#65 \calA --- */
        !          38175:       {  65,  774,                      /* character number, location */
        !          38176:          33, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
        !          38177:           { 33,   35, 3,191, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          38178:             "\xe0\xd1\xe0\xe0\x23\x50\xf2\xe0\xa4\x50\xf1\xe0\x95"
        !          38179:             "\x50\xf1\xe0\x81\x14\x50\xe0\x71\x24\xe0\xb2\x24\xe0"
        !          38180:             "\xb1\x34\xe0\xa2\x34\xe0\xa1\x44\xe0\x91\x54\xe0\x82"
        !          38181:             "\x55\xe0\x71\x65\xe0\x62\x74\xe0\x61\x84\xe0\x51\x94"
        !          38182:             "\xe0\x42\x94\xe0\x41\xa4\xe0\x32\xa4\xe0\x22\x1e\xe0"
        !          38183:             "\x2e\x03\xe0\x12\xc4\xe2\xd4\xd2\xe5\x41\x63\xe5\x32"
        !          38184:             "\x53\xe0\x24\x33\x33\xe0\x34\x38\xe0\x45\x27\xe0\x5d"
        !          38185:             "\xe0\x75\x24\xe0\xe0" }  },
        !          38186:       /* --- pixel bitmap for cmsy325 char#66 \calB --- */
        !          38187:       {  66, 1652,                      /* character number, location */
        !          38188:          32, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
        !          38189:           { 29,   33, 3,161, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          38190:             "\xa2\x86\xb4\x6a\x75\x52\x47\x83\x32\x85\x74\x22\xa4"
        !          38191:             "\x74\x12\xb4\x77\xb4\x76\xc3\x85\xd2\x95\xc2\x95\xc2"
        !          38192:             "\xa5\xb2\xb4\x93\xd4\x73\xe0\x14\x48\xc4\x4b\xa4\x97"
        !          38193:             "\x94\xb6\x83\xd6\x73\xe5\x20\xf1\x44\xe0\x14\x20\xf1"
        !          38194:             "\x43\xe0\x24\x20\x34\xe0\x23\x63\xe0\x33\x63\xe0\x23"
        !          38195:             "\x64\xe0\x22\x73\x22\xc2\x88\xa2\x83\x17\x62\xa3\x2c"
        !          38196:             "\xb2\x68\xd4" }  },
        !          38197:       /* --- pixel bitmap for cmsy325 char#67 \calC --- */
        !          38198:       {  67, 2423,                      /* character number, location */
        !          38199:          32, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
        !          38200:           { 23,   33, 3,109, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          38201:             "\xe0\x26\xea\xb3\x45\x92\x84\x82\x94\x72\xa3\x73\xa3"
        !          38202:             "\x63\xa4\x62\xb3\x63\xb3\x53\xb2\x73\xe0\x54\xe0\x30"
        !          38203:             "\xf1\x23\xe0\x40\xf1\x14\xe0\x40\xf1\x13\xe0\x5f\x54"
        !          38204:             "\xe0\x55\xe2\x25\xd2\x44\xc3\x45\xa3\x56\x82\x87\x52"
        !          38205:             "\xab\xe7\xb4" }  },
        !          38206:       /* --- pixel bitmap for cmsy325 char#68 \calD --- */
        !          38207:       {  68, 3265,                      /* character number, location */
        !          38208:          31, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          38209:           { 33,   31, 3,163, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          38210:             "\xae\x01\xe0\x1e\x07\xa3\x34\x68\x82\x54\x96\x53\x64"
        !          38211:             "\xa6\x33\x74\xb6\x23\x74\xc5\x12\x94\xd5\xb3\xe5\xb3"
        !          38212:             "\xe0\x14\xf2\xa4\xe0\x14\xa3\xe0\x24\xa3\xe0\x23\xa4"
        !          38213:             "\xe0\x23\xa4\xe0\x14\x10\xf1\x93\xe0\x23\x20\x84\xe0"
        !          38214:             "\x13\xb3\xe0\x22\xc3\xe0\x12\xc4\xe2\xd3\xe2\xe3\xd2"
        !          38215:             "\xe4\xc2\xe0\x13\xb2\xe0\x33\x93\xe0\x33\x74\xe0\x4c"
        !          38216:             "\xe0\x6a\xe0\x63" }  },
        !          38217:       /* --- pixel bitmap for cmsy325 char#69 \calE --- */
        !          38218:       {  69, 4036,                      /* character number, location */
        !          38219:          32, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          38220:           { 24,   33, 3,129, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          38221:             "\xe0\x17\xe0\x1b\xb2\x56\x92\x94\x82\xa3\x83\xa2\x83"
        !          38222:             "\xa2\x93\xe0\x10\xf2\x54\xe0\x10\x55\xe0\x56\xe0\x57"
        !          38223:             "\xe0\x49\xe0\x36\xe0\x32\xe0\x62\xe0\x72\xe0\x72\xe0"
        !          38224:             "\x73\xe0\x40\xf1\x23\xe0\x50\xf1\x13\xe0\x64\xe2\x44"
        !          38225:             "\xd2\x54\xc3\x55\xa3\x66\x82\x97\x52\xbb\xe0\x17\xd2" }  },
        !          38226:       /* --- pixel bitmap for cmsy325 char#70 \calF --- */
        !          38227:       {  70, 4844,                      /* character number, location */
        !          38228:          31, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
        !          38229:           { 36,   32, 3,171, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          38230:             "\xe0\x1e\x06\xee\x09\xb2\x54\x95\xa2\x63\xb2\xb2\x73"
        !          38231:             "\xe0\x93\x64\xe0\x83\x74\xe0\x82\x83\xe0\xe0\x53\xe0"
        !          38232:             "\x20\xf1\xe0\x24\xe0\x20\xf1\xe0\x23\xe0\x30\xe0\x14"
        !          38233:             "\xe0\xe0\x43\xe0\xe0\x5e\xe0\x7e\xe0\x83\xe0\xe0\x44"
        !          38234:             "\xe0\x50\xf1\xd3\xe0\x60\xf1\xc3\xe0\x70\xf1\xb3\xe0"
        !          38235:             "\x80\xf1\xa3\xe0\x90\x22\x53\xe0\xa5\x43\xe0\xa6\x23"
        !          38236:             "\xe0\xc8\xe0\xe0\x15\xe0\xe0\x18" }  },
        !          38237:       /* --- pixel bitmap for cmsy325 char#71 \calG --- */
        !          38238:       {  71, 5639,                      /* character number, location */
        !          38239:          32, 2,   -5, 2,      /* topleft row,col, and botleft row,col */
        !          38240:           { 25,   37, 3,155, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          38241:             "\xe0\x18\xed\xa3\x66\x92\xa4\x72\xc3\x72\xd3\x63\xc3"
        !          38242:             "\x63\xd2\x73\xc3\x63\xc2\x83\xe0\x50\xf1\x23\xe0\x60"
        !          38243:             "\x14\xe0\x73\xe0\x83\xe0\x41\x24\xe0\x23\x2f\x14\xe0"
        !          38244:             "\x13\x3f\x14\xe4\x34\xd4\x45\xc4\x45\xb5\x55\x95\x66"
        !          38245:             "\x72\x13\x76\x52\x14\x8a\x33\xa7\x53\x60\xf1\xe0\x13"
        !          38246:             "\x70\xe3\xe0\x82\xb3\x82\xb6\x52\xcb\xe0\x27\xe0\x13" }  },
        !          38247:       /* --- pixel bitmap for cmsy325 char#72 \calH --- */
        !          38248:       {  72, 6619,                      /* character number, location */
        !          38249:          31, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
        !          38250:           { 34,   33, 3,185, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          38251:             "\xa6\xe0\x22\x7a\xe2\x63\x45\xd3\x52\x74\xc4\x42\x84"
        !          38252:             "\xc3\x42\x94\xc3\x33\x93\xc4\x22\xb3\xc3\xe0\x14\xc3"
        !          38253:             "\xe0\x14\xb4\xe0\x14\xb3\xe0\x23\xc3\xe0\x23\xb4\x40"
        !          38254:             "\xf1\xb4\xb3\x50\xb3\xb4\xce\x07\xce\x08\x60\xf1\xa3"
        !          38255:             "\xb4\x60\x94\xb3\xe0\x23\xc3\xe0\x23\xb4\xe0\x14\xb4"
        !          38256:             "\xe0\x13\xc4\xe0\x13\xc3\xe0\x14\xc3\xe0\x13\xc4\xe0"
        !          38257:             "\x13\xc4\x71\x64\xc4\x53\x63\xd5\x33\x72\xe9\x82\xe0"
        !          38258:             "\x26\x55" }  },
        !          38259:       /* --- pixel bitmap for cmsy325 char#73 \calI --- */
        !          38260:       {  73, 7422,                      /* character number, location */
        !          38261:          31,-1,    0,-1,      /* topleft row,col, and botleft row,col */
        !          38262:           { 30,   31, 3,121, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          38263:             "\xbe\x05\x8e\x06\x83\xa2\xe2\xb2\xe2\xb3\xd3\xa3\xd3"
        !          38264:             "\xb3\xe0\xc4\xb0\xf1\xe0\x13\xc0\xe4\xc0\xf1\xe3\xd0"
        !          38265:             "\xf1\xd4\xd0\xf1\xd3\xe0\xf1\xc4\xe0\xf1\xc3\xe0\x10"
        !          38266:             "\xb4\xe0\x10\xf1\xb3\xe0\x20\xa3\xe0\xd3\xb1\xe3\xa3"
        !          38267:             "\xe2\xa3\xe2\xb2\x9e\x06\x9e\x04\xb3" }  },
        !          38268:       /* --- pixel bitmap for cmsy325 char#74 \calJ --- */
        !          38269:       {  74, 8192,                      /* character number, location */
        !          38270:          31, 2,   -5, 2,      /* topleft row,col, and botleft row,col */
        !          38271:           { 36,   36, 3,185, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          38272:             "\xe0\x8e\xe0\x5e\x01\xe0\x53\x92\xe0\x62\xa3\xe0\x62"
        !          38273:             "\xb2\xe0\x62\xb2\xe0\x63\xa3\x80\xf1\xb3\xa3\x90\xa3"
        !          38274:             "\xa4\xe0\x51\xc3\xe0\xe0\x53\xa0\xf1\xe0\x83\xb0\xf1"
        !          38275:             "\xe0\x74\xb0\xf1\xe0\x73\xc0\xe0\x64\xc0\xf1\xe0\x63"
        !          38276:             "\xd0\xf1\xe0\x54\xd0\xf1\xe0\x53\xe0\xe0\x44\xe0\x22"
        !          38277:             "\xe3\xe0\x23\xe3\xe0\x14\xd3\xe0\x24\xd2\xe0\x35\xb3"
        !          38278:             "\xe0\x35\xa3\xe0\x55\x82\xe0\x77\x52\xe0\x9b\xe0\xd7"
        !          38279:             "\xe0\xb5" }  },
        !          38280:       /* --- pixel bitmap for cmsy325 char#75 \calK --- */
        !          38281:       {  75, 9085,                      /* character number, location */
        !          38282:          32, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
        !          38283:           { 31,   33, 3,193, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          38284:             "\xa2\xe0\x14\x84\xd6\x66\xb2\x33\x83\xa2\x53\x83\x82"
        !          38285:             "\x72\x84\x72\xe0\x44\x52\xe0\x64\x42\xe0\x74\x32\xe0"
        !          38286:             "\x84\x22\xe0\x93\x22\xe0\xa3\x12\xe0\x40\xf1\x67\xe0"
        !          38287:             "\x40\x63\x13\xe0\xa3\x14\xe0\x84\x14\xe0\x84\x23\xe0"
        !          38288:             "\x83\x33\xe0\x83\x34\xe0\x64\x34\xe0\x20\xf1\x43\x54"
        !          38289:             "\xe0\x10\x34\x64\xe0\x33\x74\xe0\x33\x84\xe0\x14\x84"
        !          38290:             "\xb2\x23\xa4\x92\x33\xa5\x82\x24\xb4\x72\x33\xd5\x42"
        !          38291:             "\x43\xd9\x52\xe0\x35\x70" }  },
        !          38292:       /* --- pixel bitmap for cmsy325 char#76 \calL --- */
        !          38293:       {  76, 9923,                      /* character number, location */
        !          38294:          32, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
        !          38295:           { 28,   33, 3,149, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          38296:             "\xe0\x56\xe0\x69\xe0\x42\x35\xe0\x22\x65\xe3\x65\xd3"
        !          38297:             "\x84\xd3\x83\xd3\x92\xe3\xe0\xf1\xa3\xe0\x10\x94\xe0"
        !          38298:             "\x10\xf1\x93\xe0\x20\x84\xe0\x20\xf1\x83\xe0\x30\xf1"
        !          38299:             "\x74\xe0\x30\xf1\x73\xe0\x40\x64\xe0\x40\xf1\x63\xe0"
        !          38300:             "\x50\xf1\x53\xe0\x60\x43\xe0\x52\x43\xe0\x43\x39\xc3"
        !          38301:             "\x4c\x92\x42\x4b\x42\x43\x7d\x42\xd7\x64" }  },
        !          38302:       /* --- pixel bitmap for cmsy325 char#77 \calM --- */
        !          38303:       {  77,11086,                      /* character number, location */
        !          38304:          32, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
        !          38305:           { 49,   34, 3,303, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          38306:             "\xe0\x42\xe0\xe0\xe0\x34\xe0\xe1\xe0\x24\xe0\xd2\xe0"
        !          38307:             "\x25\xe0\xb3\xe0\x25\xe0\xa4\xe0\x16\xe0\x94\xe0\x21"
        !          38308:             "\x14\xe0\x94\xe0\x21\x14\xe0\x85\xe0\x21\x14\xe0\x76"
        !          38309:             "\xe0\x21\x15\xe0\x52\x14\xe0\x11\x25\xe0\x43\x14\xe0"
        !          38310:             "\x11\x34\xe0\x33\x23\xe0\x21\x34\xe0\x32\x33\xe0\x21"
        !          38311:             "\x35\xe0\x12\x34\xe0\x11\x45\xe2\x44\xe0\x11\x54\xd2"
        !          38312:             "\x54\xe0\x11\x54\xc3\x54\xe1\x64\xb3\x64\xe1\x65\x93"
        !          38313:             "\x74\xe1\x65\x83\x83\xe1\x84\x73\x93\xe1\x85\x62\x94"
        !          38314:             "\xe1\x85\x52\xa4\xd1\xa4\x42\xb4\xd1\xa5\x22\xc4\xc1"
        !          38315:             "\xb5\x13\xc4\xc1\xc7\xd4\xb1\xd6\xe4\xb1\xe4\xe0\x14"
        !          38316:             "\x43\x31\xe0\x13\xe0\x24\x47\xe0\xe0\x65\x36\xe0\xe0"
        !          38317:             "\x7e\xe0\xe0\x84\x44\xe0\xe0\xe0\x10" }  },
        !          38318:       /* --- pixel bitmap for cmsy325 char#78 \calN --- */
        !          38319:       {  78,12167,                      /* character number, location */
        !          38320:          35,-1,   -2,-1,      /* topleft row,col, and botleft row,col */
        !          38321:           { 46,   37, 3,261, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          38322:             "\xe0\xe0\xd5\xe0\xe0\xb7\xe0\xe0\xa7\xe0\x32\xe0\x58"
        !          38323:             "\xe0\x14\xe0\x53\xe0\x65\xe0\x32\x80\xf1\xe5\xe0\x31"
        !          38324:             "\x90\xe6\xe0\x11\xe0\x97\xe0\x11\xe0\x92\x14\xe0\x11"
        !          38325:             "\xe0\x91\x25\xe1\xe0\x91\x25\xd1\xb0\xf1\xd1\x34\xd1"
        !          38326:             "\xb0\xf1\xc1\x45\xb1\xc0\xf1\xc1\x55\xa1\xc0\xb1\x74"
        !          38327:             "\x91\xd0\xf1\xb1\x75\x81\xd0\xa1\x94\x81\xd0\xf1\xa1"
        !          38328:             "\x95\x61\xe0\xa1\xa4\x61\xe0\x91\xb5\x51\xe0\x91\xb5"
        !          38329:             "\x41\xe0\xa1\xc5\x31\xe0\x91\xd5\x31\xe0\x91\xe5\x21"
        !          38330:             "\xe0\x81\xe0\x15\x12\xe0\x22\x32\xe0\x26\xe0\x27\xe0"
        !          38331:             "\x36\xe0\x27\xe0\x45\xe0\x26\xe0\x62\xe0\x54\xe0\xe0"
        !          38332:             "\xd3" }  },
        !          38333:       /* --- pixel bitmap for cmsy325 char#79 \calO --- */
        !          38334:       {  79,13110,                      /* character number, location */
        !          38335:          32, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          38336:           { 32,   33, 3,185, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          38337:             "\xd2\x66\xe0\x22\x6a\xd2\x52\x47\xb2\x52\x76\x92\x52"
        !          38338:             "\x95\x82\x52\xb4\x72\x53\xb5\x52\x53\xc5\x43\x53\xd4"
        !          38339:             "\x33\x53\xe4\x33\x52\xe0\x14\x23\x52\xe0\x24\x23\xe0"
        !          38340:             "\x94\x14\xe0\x94\x14\xe0\x93\x23\xe0\xa3\x23\xe0\x94"
        !          38341:             "\x14\xe0\x94\x1f\x14\xe0\x93\x2f\x14\xe0\x83\x34\xe0"
        !          38342:             "\x73\x45\xe0\x62\x55\xe0\x53\x64\xe0\x43\x75\xe0\x32"
        !          38343:             "\x85\xe0\x22\xa5\xd2\xc7\xa2\xe8\x53\xe0\x4c\xe0\x87"
        !          38344:             "\xe0\x40" }  },
        !          38345:       /* --- pixel bitmap for cmsy325 char#80 \calP --- */
        !          38346:       {  80,13989,                      /* character number, location */
        !          38347:          31, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
        !          38348:           { 32,   33, 3,157, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          38349:             "\xae\x02\xde\x07\x93\x34\x78\x62\x54\x97\x33\x64\xb5"
        !          38350:             "\x10\xf1\x13\x74\xc5\x02\x94\xd4\xf1\xb3\xe4\xf1\xa4"
        !          38351:             "\xe3\x10\xa4\xd3\xc3\xe3\xc3\xd3\xc4\xd2\xd4\xc2\xe3"
        !          38352:             "\xb2\xe0\x23\xa2\xe0\x24\x73\xe0\x43\x36\xe0\x63\x15"
        !          38353:             "\xe0\x10\xf1\x74\xe0\x70\xf1\x73\xe0\x80\xf1\x63\xe0"
        !          38354:             "\x90\x54\xe0\x90\xf1\x53\xe0\xa0\x43\xe0\xe0\x12\xe0"
        !          38355:             "\xc5" }  },
        !          38356:       /* --- pixel bitmap for cmsy325 char#81 \calQ --- */
        !          38357:       {  81,14924,                      /* character number, location */
        !          38358:          32, 5,   -5, 5,      /* topleft row,col, and botleft row,col */
        !          38359:           { 30,   37, 3,175, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          38360:             "\xe0\x27\xe0\x6c\xe0\x23\x57\xd2\xa6\xb2\xc6\x92\xe5"
        !          38361:             "\x82\xe0\x24\x72\xe0\x35\x53\xe0\x35\x10\xf1\x33\xe0"
        !          38362:             "\x54\x10\xf1\x23\xe0\x64\x10\xf1\x13\xe0\x74\x1f\x14"
        !          38363:             "\xe0\x73\x24\xe0\x64\x2f\x14\xe0\x63\x3f\x15\xe0\x43"
        !          38364:             "\x40\x15\xe0\x23\x66\x91\x52\x86\x53\x53\x9b\x63\xb7"
        !          38365:             "\x92\xe0\xd2\xe0\xc2\xe0\xd2\xe0\xa4\xe0\x3b\xe2\x1c"
        !          38366:             "\xd3\x6b\xa2\xbb\x52\xe0\x1e\xe0\x68\x60" }  },
        !          38367:       /* --- pixel bitmap for cmsy325 char#82 \calR --- */
        !          38368:       {  82,15873,                      /* character number, location */
        !          38369:          31, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
        !          38370:           { 36,   32, 3,181, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          38371:             "\xae\x03\xe0\x2e\x08\xc3\x34\x88\x92\x54\xa7\x63\x64"
        !          38372:             "\xc5\x40\xf1\x13\x74\xd4\x42\x94\xd4\x40\xf1\xb3\xe3"
        !          38373:             "\x50\xa4\xd4\xe0\x14\xd3\xe0\x24\xd2\xe0\x33\xd2\xe0"
        !          38374:             "\x43\xc2\xe0\x44\xb2\xe0\x54\x83\xe0\x73\x46\xe0\x93"
        !          38375:             "\x36\xe0\x94\x46\xe0\x83\x65\xe0\x83\x75\xe0\x64\x75"
        !          38376:             "\xd0\xf1\x73\x95\xc0\x64\xa4\xb1\x63\xb5\x82\x73\xb5"
        !          38377:             "\x73\x64\xc5\x53\x73\xd6\x32\x93\xe9\x92\xe0\x35\x87" }  },
        !          38378:       /* --- pixel bitmap for cmsy325 char#83 \calS --- */
        !          38379:       {  83,16717,                      /* character number, location */
        !          38380:          32, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
        !          38381:           { 28,   33, 3,141, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          38382:             "\xe0\x38\xe0\x4c\xe2\x67\xc2\x95\xb2\xb4\xa2\xc4\x93"
        !          38383:             "\xc4\x84\xc2\x20\xf1\x84\xe0\x20\x85\xe0\x96\xe0\x96"
        !          38384:             "\xe0\x97\xe0\x88\xe0\x87\xe0\x97\xe0\x87\xe0\x96\xe0"
        !          38385:             "\x96\x72\xe5\x53\xe0\x24\x30\xf1\x13\xe0\x34\x3f\x14"
        !          38386:             "\xe0\x33\x44\xe0\x23\x55\xe0\x12\x66\xd2\x86\xb2\xa7"
        !          38387:             "\x63\xdd\xe0\x38\xe0\x14" }  },
        !          38388:       /* --- pixel bitmap for cmsy325 char#84 \calT --- */
        !          38389:       {  84,17459,                      /* character number, location */
        !          38390:          33, 2,   -3, 2,      /* topleft row,col, and botleft row,col */
        !          38391:           { 35,   36, 3,167, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          38392:             "\xe0\xe0\x61\xe0\xe0\x43\x8e\x0c\x7e\x0c\x72\xb3\xe0"
        !          38393:             "\x42\xb3\xe0\x42\xc3\xe0\x33\xb4\xe0\x24\xb4\xe0\x23"
        !          38394:             "\xc3\xe0\x31\xe3\xe0\x30\xf1\xe4\xe0\x30\xf1\xe3\xe0"
        !          38395:             "\x40\xf1\xd4\xe0\x40\xf1\xd3\xe0\x50\xf1\xc4\xe0\x50"
        !          38396:             "\xf1\xc3\xe0\x60\xf2\xb4\xe0\x60\xf1\xb3\xe0\x70\xa4"
        !          38397:             "\xe0\x70\xf1\xa3\xe0\x80\x94\xe0\x80\xf1\x93\xe0\x90"
        !          38398:             "\x83\xe0\xe0\x42\xe0\xb6" }  },
        !          38399:       /* --- pixel bitmap for cmsy325 char#85 \calU --- */
        !          38400:       {  85,18239,                      /* character number, location */
        !          38401:          31,-1,   -1,-1,      /* topleft row,col, and botleft row,col */
        !          38402:           { 31,   32, 3,185, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          38403:             "\x66\xe0\x41\x48\xe0\x23\x22\x44\xe0\x14\x12\x54\xe0"
        !          38404:             "\x13\x94\xe0\x13\x93\xe0\x14\x93\xe0\x13\x93\xe0\x23"
        !          38405:             "\x93\xe0\x14\x84\xe0\x13\x30\xf1\x63\xe0\x14\x30\x53"
        !          38406:             "\xe0\x14\x93\xe5\x83\xe0\x15\x83\xe6\x73\xe0\x15\x83"
        !          38407:             "\xe6\x74\xd7\x73\xe2\x14\x73\xd2\x23\x74\xc3\x23\x73"
        !          38408:             "\xc3\x24\x73\xc2\x34\x64\xb2\x43\x74\xa2\x53\x74\x92"
        !          38409:             "\x54\x74\x82\x64\x75\x62\x74\x76\x32\x94\x88\xb6\x75"
        !          38410:             "\xd4\x70" }  },
        !          38411:       /* --- pixel bitmap for cmsy325 char#86 \calV --- */
        !          38412:       {  86,19072,                      /* character number, location */
        !          38413:          31, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
        !          38414:           { 28,   33, 3,159, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          38415:             "\x24\xe0\x33\x28\xe5\x37\xd6\x45\xd6\x55\xe4\x55\xe0"
        !          38416:             "\x13\x65\xe0\x12\x65\xe0\x11\x10\xf1\x74\xe0\x11\x10"
        !          38417:             "\xf1\x75\xd1\x20\x84\xc2\xa4\xc1\xb4\xb2\xb4\xa2\xc4"
        !          38418:             "\x92\xd4\x83\xd4\x82\xe4\x72\xe0\x14\x62\xe0\x24\x52"
        !          38419:             "\xe0\x34\x43\xe0\x34\x33\xe0\x43\x24\xe0\x53\x14\xe0"
        !          38420:             "\x58\xe0\x67\xe0\x75\xe0\x94\xe0\xa3\xe0\xa3\xe0\xb2"
        !          38421:             "\xe0\x64" }  },
        !          38422:       /* --- pixel bitmap for cmsy325 char#87 \calW --- */
        !          38423:       {  87,20133,                      /* character number, location */
        !          38424:          31, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
        !          38425:           { 45,   33, 3,273, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          38426:             "\x24\xe0\x52\xe3\x18\xe0\x14\xd4\x36\xe0\x15\xc5\x45"
        !          38427:             "\xe5\xc5\x46\xd5\xe3\x55\xc1\x15\xd3\x64\xc1\x15\xe2"
        !          38428:             "\x64\xb1\x34\xe1\x75\xa1\x34\xe1\x75\x91\x45\xd1\x84"
        !          38429:             "\x82\x45\xc1\x94\x81\x64\xc1\x94\x72\x64\xc1\x94\x71"
        !          38430:             "\x75\xa1\xa4\x61\x85\xa1\xa4\x52\x94\x91\xb4\x51\xa4"
        !          38431:             "\x82\xb4\x42\xa4\x81\xc4\x32\xb4\x72\xc4\x31\xc4\x62"
        !          38432:             "\xd4\x22\xc5\x51\xe4\x12\xd5\x42\xe3\x12\xe0\x14\x32"
        !          38433:             "\xe0\x13\x12\xe0\x14\x22\xe0\x16\xe0\x24\x22\xe0\x15"
        !          38434:             "\xe0\x34\x12\xe0\x24\xe0\x46\xe0\x34\xe0\x45\xe0\x43"
        !          38435:             "\xe0\x55\xe0\x42\xe0\x64\xe0\x42\xe0\x73\xe0\x51\xe0"
        !          38436:             "\x82\xe0\x61\xe0\x81\xe0\x27" }  },
        !          38437:       /* --- pixel bitmap for cmsy325 char#88 \calX --- */
        !          38438:       {  88,21116,                      /* character number, location */
        !          38439:          31, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          38440:           { 34,   31, 3,169, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          38441:             "\xd5\xc3\xc7\xb5\x93\x25\xa5\x92\x35\xb4\xe0\x14\xb3"
        !          38442:             "\xe0\x24\xb2\xe0\x34\xa2\xe0\x44\x92\xe0\x55\x72\xe0"
        !          38443:             "\x65\x62\xe0\x84\x42\xe0\xa4\x22\xe0\xc4\x12\xe0\xd5"
        !          38444:             "\xd0\xf1\xe0\x24\xe0\xe6\xe0\xd2\x14\xe0\xb2\x34\xe0"
        !          38445:             "\xa2\x44\xe0\x82\x64\xe0\x62\x85\xe0\x42\x95\xe0\x32"
        !          38446:             "\xb4\xe0\x22\xc4\xe0\x12\xd4\xe3\xd4\xd4\xd5\x32\x75"
        !          38447:             "\xc5\x23\x75\xd7\xa3\xe5\xb5" }  },
        !          38448:       /* --- pixel bitmap for cmsy325 char#89 \calY --- */
        !          38449:       {  89,21919,                      /* character number, location */
        !          38450:          31, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
        !          38451:           { 31,   37, 3,187, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          38452:             "\x66\xe3\x69\xd4\x42\x36\xb6\x21\x66\xa6\xa5\xc4\xb5"
        !          38453:             "\xc3\xb5\xd2\xf1\xc5\xc1\x10\xf1\xd4\xc1\x10\xd4\xb1"
        !          38454:             "\xe0\x15\xa1\xe0\x15\x91\xe0\x34\x91\xe0\x34\x81\xe0"
        !          38455:             "\x44\x72\xe0\x44\x71\xe0\x54\x62\xe0\x54\x52\xe0\x64"
        !          38456:             "\x51\xe0\x74\x42\xe0\x74\x32\xe0\x84\x22\xe0\x94\x13"
        !          38457:             "\xe0\x97\xe0\xa6\xe0\xb5\xe0\xc4\xe0\xc4\xe0\x12\x94"
        !          38458:             "\xe0\x23\x74\xe0\x25\x45\xe0\x3c\xe0\x6a\xe0\x88\xe0"
        !          38459:             "\xa5\xe0\x92" }  },
        !          38460:       /* --- pixel bitmap for cmsy325 char#90 \calZ --- */
        !          38461:       {  90,22863,                      /* character number, location */
        !          38462:          31, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          38463:           { 33,   31, 3,175, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          38464:             "\xe0\x27\x91\xde\x32\xc3\x5c\xc2\xb8\xb3\xe0\x13\xb3"
        !          38465:             "\xe0\x22\xc2\xe0\x22\xe0\xe0\x22\xe0\xe0\x22\xe0\xe0"
        !          38466:             "\x22\xe0\xe0\x22\xe0\xe0\x22\xe0\xe0\x22\xe0\xac\xe0"
        !          38467:             "\x6e\xe0\xa2\x33\xe0\xa2\x51\xe0\xa2\xe0\xe0\x22\xe0"
        !          38468:             "\xe0\x22\xe0\xe0\x22\xe0\xe0\x22\xe0\xe0\x22\xe0\x31"
        !          38469:             "\xc2\xe0\x23\xb2\xe0\x24\x92\xe0\x43\x92\xe0\x52\x9a"
        !          38470:             "\xb3\x8e\x02\x52\x92\x6e\x01\x91\xd8\xaa" }  },
        !          38471:       /* --- pixel bitmap for cmsy325 char#91 \cup --- */
        !          38472:       {  91,26786,                      /* character number, location */
        !          38473:          27, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          38474:           { 24,   28, 3,53, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          38475:             "\xfe\x02\xe0\x62\x0f\x42\xe0\x62\x03\xe0\x43\x12\xe0"
        !          38476:             "\x42\x23\xe0\x23\x33\xe3\x53\xc3\x75\x65\xac\xe0\x16"
        !          38477:             "\x91" }  },
        !          38478:       /* --- pixel bitmap for cmsy325 char#92 \cap --- */
        !          38479:       {  92,27525,                      /* character number, location */
        !          38480:          27, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          38481:           { 24,   28, 3,52, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          38482:             "\x96\xe0\x1c\xa5\x65\x73\xc3\x53\xe3\x33\xe0\x23\x22"
        !          38483:             "\xe0\x42\x13\xe0\x43\x0f\xe2\xe0\x62\x0f\x42\xe0\x62" }  },
        !          38484:       /* --- pixel bitmap for cmsy325 char#93 \uplus --- */
        !          38485:       {  93,86491,                      /* character number, location */
        !          38486:          27, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          38487:           { 24,   28, 3,71, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          38488:             "\xf4\x02\xe0\x62\x0f\x62\x92\x92\x0f\x12\x2e\x02\x22"
        !          38489:             "\x0f\x52\x92\x92\x03\x82\x83\x12\xe0\x42\x23\xe0\x23"
        !          38490:             "\x33\xe3\x53\xc3\x75\x65\xac\xe0\x16\x93" }  },
        !          38491:       /* --- pixel bitmap for cmsy325 char#94 \wedge --- */
        !          38492:       {  94,28247,                      /* character number, location */
        !          38493:          27, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          38494:           { 24,   28, 3,124, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          38495:             "\xf1\xb2\xb0\xf1\xa4\xa0\x96\xe0\x42\x22\xe0\x33\x23"
        !          38496:             "\x80\xf1\x82\x42\x80\x73\x43\xe2\x62\xd3\x63\xc2\x82"
        !          38497:             "\xb3\x83\x50\xf1\x52\xa2\x50\x43\xa3\x82\xc2\x73\xc3"
        !          38498:             "\x30\xf1\x32\xe2\x30\x23\xe3\x42\xe0\x22\x33\xe0\x23"
        !          38499:             "\x22\xe0\x42\x13\xe0\x43\x0f\x12\xe0\x62" }  },
        !          38500:       /* --- pixel bitmap for cmsy325 char#95 \vee --- */
        !          38501:       {  95,28963,                      /* character number, location */
        !          38502:          27, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          38503:           { 24,   28, 3,125, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          38504:             "\xf1\x02\xe0\x62\x03\xe0\x43\x12\xe0\x42\x23\xe0\x23"
        !          38505:             "\x32\xe0\x22\x43\xe3\x20\xf1\x32\xe2\x30\x33\xc3\x72"
        !          38506:             "\xc2\x83\xa3\x40\xf1\x52\xa2\x50\x53\x83\xb2\x82\xc3"
        !          38507:             "\x63\xd2\x62\xe3\x43\x70\xf1\x82\x42\x80\x83\x23\xe0"
        !          38508:             "\x32\x22\xe0\x46\x90\xf1\xa4\xa0\xf1\xb2\xb1" }  },
        !          38509:       /* --- pixel bitmap for cmsy325 char#96 \vdash --- */
        !          38510:       {  96,87214,                      /* character number, location */
        !          38511:          31, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          38512:           { 23,   31, 3,21, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          38513:             "\xfd\x02\xe0\x7e\x08\x1e\x09\x0f\xe2\xe0\x7e" }  },
        !          38514:       /* --- pixel bitmap for cmsy325 char#97 \dashv --- */
        !          38515:       {  97,87860,                      /* character number, location */
        !          38516:          31, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          38517:           { 23,   31, 3,20, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          38518:             "\xfd\xe0\x72\x1e\x0e\x0e\x03\xfe\xe0\x72" }  },
        !          38519:       /* --- pixel bitmap for cmsy325 char#98 \lfloor --- */
        !          38520:       {  98,88416,                      /* character number, location */
        !          38521:          34, 8,  -12, 8,      /* topleft row,col, and botleft row,col */
        !          38522:           { 11,   46, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          38523:             "\xfe\x02\x9f\xe2\x9f\xd2\x9f\x1b" }  },
        !          38524:       /* --- pixel bitmap for cmsy325 char#99 \rfloor --- */
        !          38525:       {  99,89003,                      /* character number, location */
        !          38526:          34, 1,  -12, 1,      /* topleft row,col, and botleft row,col */
        !          38527:           { 11,   46, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          38528:             "\xfe\x92\xfe\x92\xfd\x92\x0f\x1b" }  },
        !          38529:       /* --- pixel bitmap for cmsy325 char#100 \lceil --- */
        !          38530:       { 100,89591,                      /* character number, location */
        !          38531:          34, 8,  -12, 8,      /* topleft row,col, and botleft row,col */
        !          38532:           { 11,   46, 3,17, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          38533:             "\xf1\x0b\x0f\xe2\x9f\xe2\x9f\xd2\x90" }  },
        !          38534:       /* --- pixel bitmap for cmsy325 char#101 \rceil --- */
        !          38535:       { 101,90180,                      /* character number, location */
        !          38536:          34, 1,  -12, 1,      /* topleft row,col, and botleft row,col */
        !          38537:           { 11,   46, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          38538:             "\xf1\x0b\xfe\x92\xfe\x92\xfd\x92" }  },
        !          38539:       /* --- pixel bitmap for cmsy325 char#102 \lbrace --- */
        !          38540:       { 102,43779,                      /* character number, location */
        !          38541:          34, 3,  -11, 3,      /* topleft row,col, and botleft row,col */
        !          38542:           { 16,   45, 3,50, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          38543:             "\xc4\xa3\xc2\xd3\x50\xfe\x73\x60\x63\xc3\xb4\x95\xe4"
        !          38544:             "\xe3\xe3\x70\xfe\x73\x60\x83\xe2\xe0\x13\xe0\x14" }  },
        !          38545:       /* --- pixel bitmap for cmsy325 char#103 \rbrace --- */
        !          38546:       { 103,44672,                      /* character number, location */
        !          38547:          34, 3,  -11, 3,      /* topleft row,col, and botleft row,col */
        !          38548:           { 16,   45, 3,51, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          38549:             "\x05\xe4\xe3\xe3\x70\xfe\x73\x60\x83\xe2\xe0\x13\xe0"
        !          38550:             "\x14\xa3\xc2\xd3\x50\xfe\x73\x60\x63\xc3\xb4\x95\xb3" }  },
        !          38551:       /* --- pixel bitmap for cmsy325 char#104 \langle --- */
        !          38552:       { 104,90740,                      /* character number, location */
        !          38553:          34, 4,  -12, 4,      /* topleft row,col, and botleft row,col */
        !          38554:           { 11,   46, 3,116, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          38555:             "\xf1\x92\x83\x82\x83\x10\xf1\x72\x20\x63\x82\x83\x82"
        !          38556:             "\x83\x40\xf1\x42\x50\x33\x82\x83\x60\xf1\x22\x70\x13"
        !          38557:             "\x82\x83\x8f\x12\x93\x92\x93\x70\xf1\x22\x70\x23\x92"
        !          38558:             "\x93\x50\xf1\x42\x50\x43\x92\x93\x92\x93\x20\xf1\x72"
        !          38559:             "\x20\x73\x92\x93\xf1\x92" }  },
        !          38560:       /* --- pixel bitmap for cmsy325 char#105 \rangle --- */
        !          38561:       { 105,91301,                      /* character number, location */
        !          38562:          34, 2,  -12, 2,      /* topleft row,col, and botleft row,col */
        !          38563:           { 11,   46, 3,117, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          38564:             "\xf1\x02\x93\x92\x93\x70\xf1\x22\x70\x23\x92\x93\x92"
        !          38565:             "\x93\x40\xf1\x52\x40\x53\x92\x93\x20\xf1\x72\x20\x73"
        !          38566:             "\x92\x93\xf1\x92\x83\x82\x83\x10\xf1\x72\x20\x63\x82"
        !          38567:             "\x83\x30\xf1\x52\x40\x43\x82\x83\x82\x83\x60\xf1\x22"
        !          38568:             "\x70\x13\x82\x83\x8f\x12\x94" }  },
        !          38569:       /* --- pixel bitmap for cmsy325 char#106 \mid --- */
        !          38570:       { 106,41801,                      /* character number, location */
        !          38571:          34, 5,  -11, 5,      /* topleft row,col, and botleft row,col */
        !          38572:           {  2,   45, 2, 4, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          38573:             "\xff\x2c\x00\x02" }  },
        !          38574:       /* --- pixel bitmap for cmsy325 char#107 \parallel --- */
        !          38575:       { 107,91952,                      /* character number, location */
        !          38576:          34, 5,  -12, 5,      /* topleft row,col, and botleft row,col */
        !          38577:           { 12,   46, 2, 6, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          38578:             "\xff\x2d\x00\x02\x08\x02" }  },
        !          38579:       /* --- pixel bitmap for cmsy325 char#108 \updownarrow --- */
        !          38580:       { 108,93254,                      /* character number, location */
        !          38581:          35, 1,  -12, 1,      /* topleft row,col, and botleft row,col */
        !          38582:           { 20,   47, 3,115, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          38583:             "\xa1\x90\xf2\x92\x90\xf1\x84\x80\x76\xd2\x12\x12\xb2"
        !          38584:             "\x22\x22\x83\x32\x33\x44\x42\x44\x13\x62\x64\x82\x81"
        !          38585:             "\xfe\x92\x90\xf5\x92\x91\x82\x84\x62\x63\x14\x42\x44"
        !          38586:             "\x43\x32\x33\x82\x22\x22\xb2\x12\x12\xd6\x70\xf1\x84"
        !          38587:             "\x80\xf2\x92\x90\xa1\x92" }  },
        !          38588:       /* --- pixel bitmap for cmsy325 char#109 \Updownarrow --- */
        !          38589:       { 109,94423,                      /* character number, location */
        !          38590:          35, 1,  -12, 1,      /* topleft row,col, and botleft row,col */
        !          38591:           { 25,   47, 3,151, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          38592:             "\xf1\xc1\xc0\xb3\xb0\xf1\xa2\x12\xa0\x92\x32\xe0\x32"
        !          38593:             "\x52\xe0\x12\x72\xd2\x92\xb3\x93\x85\x95\x44\x12\x92"
        !          38594:             "\x14\x13\x32\x92\x34\x52\x92\x51\xfe\x62\x92\x60\xf3"
        !          38595:             "\x62\x92\x61\x52\x92\x54\x32\x92\x33\x14\x12\x92\x14"
        !          38596:             "\x45\x95\x83\x93\xb2\x92\xd2\x72\xe0\x12\x52\xe0\x32"
        !          38597:             "\x32\x90\xf1\xa2\x12\xa0\xb3\xb0\xf1\xc1\xc0" }  },
        !          38598:       /* --- pixel bitmap for cmsy325 char#110 \setminus --- */
        !          38599:       { 110,41315,                      /* character number, location */
        !          38600:          34, 2,  -11, 2,      /* topleft row,col, and botleft row,col */
        !          38601:           { 18,   45, 3,162, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          38602:             "\xf1\x02\xe0\x23\xe0\x10\xf1\x12\xe0\x10\x13\xe0\x22"
        !          38603:             "\xe0\x23\xd0\xf1\x32\xd0\x33\xc0\xf1\x42\xc0\x43\xe0"
        !          38604:             "\x22\xe0\x23\xa0\xf1\x62\xa0\x63\x90\xf1\x72\x90\x73"
        !          38605:             "\xe0\x22\xe0\x23\x70\xf1\x92\x70\x93\x60\xf1\xa2\x60"
        !          38606:             "\xa3\xe0\x22\xe0\x23\x40\xf1\xc2\x40\xc3\x30\xf1\xd2"
        !          38607:             "\x30\xd3\xe0\x22\xe0\x23\x10\xf1\xe0\x12\x10\xe0\x13"
        !          38608:             "\xf1\xe0\x22" }  },
        !          38609:       /* --- pixel bitmap for cmsy325 char#111 \wr --- */
        !          38610:       { 111,95050,                      /* character number, location */
        !          38611:          26, 2,   -4, 2,      /* topleft row,col, and botleft row,col */
        !          38612:           {  8,   30, 3,54, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          38613:             "\x04\x64\x20\xf1\x43\x10\xf6\x53\xf1\x43\x10\xf1\x33"
        !          38614:             "\x20\xf1\x23\x30\xf1\x13\x4f\x63\x50\xf1\x13\x40\x24"
        !          38615:             "\x64" }  },
        !          38616:       /* --- pixel bitmap for cmsy325 char#112 \surd --- */
        !          38617:       { 112,95936,                      /* character number, location */
        !          38618:           2, 2,  -43, 2,      /* topleft row,col, and botleft row,col */
        !          38619:           { 37,   45, 2,129, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          38620:             "\x23\x02\x22\x03\x22\x02\x22\x03\x22\x02\x22\x03\x22"
        !          38621:             "\x02\x22\x03\x22\x02\x22\x03\x22\x02\x22\x03\x22\x02"
        !          38622:             "\x22\x03\x22\x02\x22\x03\x22\x02\x22\x03\x22\x02\x22"
        !          38623:             "\x03\x22\x02\x22\x03\x0f\x02\x11\x02\x0f\x03\x10\x03"
        !          38624:             "\x0e\x04\x10\x02\x0d\x02\x01\x04\x0e\x03\x0c\x01\x03"
        !          38625:             "\x04\x0e\x02\x12\x04\x0c\x03\x12\x04\x0c\x02\x14\x04"
        !          38626:             "\x0a\x03\x14\x04\x0a\x02\x16\x04\x08\x03\x16\x04\x08"
        !          38627:             "\x02\x18\x04\x06\x03\x18\x04\x06\x02\x1a\x04\x04\x03"
        !          38628:             "\x1a\x04\x04\x02\x1c\x04\x02\x03\x1c\x04\x02\x02\x1e"
        !          38629:             "\x07\x1e\x06\x20\x05\x20\x04\x22\x03\x22\x02\x16" }  },
        !          38630:       /* --- pixel bitmap for cmsy325 char#113 \amalg --- */
        !          38631:       { 113,97242,                      /* character number, location */
        !          38632:          31, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          38633:           { 32,   31, 3,24, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          38634:             "\x0e\x4e\xfe\x54\xe4\x50\xfd\x54\xe4\x5e\x0e\x04" }  },
        !          38635:       /* --- pixel bitmap for cmsy325 char#114 \nabla --- */
        !          38636:       { 114,98248,                      /* character number, location */
        !          38637:          31, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          38638:           { 33,   32, 3,181, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          38639:             "\x0e\x0e\x05\xf1\x1e\x0e\x03\x10\x24\xe0\xa1\x45\xe0"
        !          38640:             "\x91\x54\xe0\x81\x65\xe0\x71\x74\xe0\x61\x85\xe0\x51"
        !          38641:             "\x94\xe0\x41\xa5\xe0\x31\xb4\xe0\x21\xc5\xe0\x11\xd4"
        !          38642:             "\xe1\xe5\xd1\xe0\x14\xc1\xe0\x25\xb1\xe0\x34\xa1\xe0"
        !          38643:             "\x45\x91\xe0\x54\x81\xe0\x65\x71\xe0\x74\x61\xe0\x85"
        !          38644:             "\x51\xe0\x94\x41\xe0\xa5\x31\xe0\xb4\x21\xe0\xc5\x11"
        !          38645:             "\xd0\xf1\xe5\xe0\xf1\xe0\x13\xe0\x10\xe0\x21\xe0\x24" }  },
        !          38646:       /* --- pixel bitmap for cmsy325 char#115 \smallint --- */
        !          38647:       { 115,46899,                      /* character number, location */
        !          38648:          32, 3,  -10, 3,      /* topleft row,col, and botleft row,col */
        !          38649:           { 18,   42, 3,85, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          38650:             "\xd3\xe2\x21\xd1\x23\xf1\xb2\x14\xb2\x22\xb3\x50\xf4"
        !          38651:             "\xa2\x60\xf4\x93\x60\x92\x70\xf5\x83\x70\x82\x80\xf4"
        !          38652:             "\x73\x80\xf4\x72\x90\x63\xa2\x32\xaf\x14\x22\xa3\x22"
        !          38653:             "\xc1\x31\xe3\xd6" }  },
        !          38654:       /* --- pixel bitmap for cmsy325 char#116 \sqcup --- */
        !          38655:       { 116,98988,                      /* character number, location */
        !          38656:          27, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          38657:           { 24,   27, 2,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          38658:             "\xff\x18\x00\x02\x14\x02\x00\xff\x01\x18" }  },
        !          38659:       /* --- pixel bitmap for cmsy325 char#117 \sqcap --- */
        !          38660:       { 117,99727,                      /* character number, location */
        !          38661:          27, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          38662:           { 24,   27, 2,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          38663:             "\xff\x01\x00\x18\x00\xff\x18\x02\x14\x02" }  },
        !          38664:       /* --- pixel bitmap for cmsy325 char#118 \sqsubseteq --- */
        !          38665:       { 118,100538,                     /* character number, location */
        !          38666:          29, 4,   -9, 4,      /* topleft row,col, and botleft row,col */
        !          38667:           { 28,   38, 3,34, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          38668:             "\xf1\x0e\x0e\x0f\xe2\xe0\xcf\x82\xe0\xcf\x1e\x0e\xf7"
        !          38669:             "\xe0\xef\x1e\x0e" }  },
        !          38670:       /* --- pixel bitmap for cmsy325 char#119 \sqsupseteq --- */
        !          38671:       { 119,101309,                     /* character number, location */
        !          38672:          29, 3,   -9, 3,      /* topleft row,col, and botleft row,col */
        !          38673:           { 28,   38, 3,34, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          38674:             "\xf1\x0e\x0e\xfe\xe0\xc2\xf8\xe0\xc2\x0f\x1e\x0e\xf7"
        !          38675:             "\xe0\xef\x1e\x0e" }  },
        !          38676:       /* --- pixel bitmap for cmsy325 char#120 \S --- */
        !          38677:       { 120,102334,                     /* character number, location */
        !          38678:          31, 3,   -9, 3,      /* topleft row,col, and botleft row,col */
        !          38679:           { 14,   40, 3,119, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          38680:             "\x45\x82\x42\x52\x71\x33\x81\x1f\x13\x73\x13\x81\x2f"
        !          38681:             "\x13\xb0\x13\xc2\xd2\xd2\xc4\x92\x32\x62\x52\x43\x62"
        !          38682:             "\x23\x73\x1f\x33\x83\x13\x73\x22\x63\x42\x52\x62\x32"
        !          38683:             "\x94\xc2\xd2\xd2\xc3\x10\xf1\xb3\x21\x83\xf1\x13\x73"
        !          38684:             "\x11\x83\x31\x72\x52\x42\x85\x41" }  },
        !          38685:       /* --- pixel bitmap for cmsy325 char#121 \dag --- */
        !          38686:       { 121,103212,                     /* character number, location */
        !          38687:          31, 3,  -10, 3,      /* topleft row,col, and botleft row,col */
        !          38688:           { 15,   41, 3,57, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          38689:             "\x71\x70\xf5\x63\x60\xf3\x71\x70\x14\x21\x24\x1e\x01"
        !          38690:             "\x14\x21\x24\x10\xf1\x71\x70\xfe\x63\x60\xf3\x63\x60"
        !          38691:             "\xf5\x71\x7f" }  },
        !          38692:       /* --- pixel bitmap for cmsy325 char#122 \ddag --- */
        !          38693:       { 122,104247,                     /* character number, location */
        !          38694:          31, 3,   -9, 3,      /* topleft row,col, and botleft row,col */
        !          38695:           { 15,   40, 3,95, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          38696:             "\x71\x70\xf4\x63\x60\xf1\x71\x70\x11\x51\x51\x1f\x1e"
        !          38697:             "\x01\xf2\x71\x70\xf4\x63\x60\x71\xe0\xe0\x11\x70\xf4"
        !          38698:             "\x63\x60\xf1\x71\x70\x14\x21\x33\x1e\x01\x14\x21\x24"
        !          38699:             "\x10\xf1\x71\x70\xf4\x63\x60\x71\x71" }  },
        !          38700:       /* --- pixel bitmap for cmsy325 char#123 \P --- */
        !          38701:       { 123,104997,                     /* character number, location */
        !          38702:          31, 2,   -9, 2,      /* topleft row,col, and botleft row,col */
        !          38703:           { 24,   40, 3,81, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          38704:             "\x8e\x02\x6e\x04\x4a\x42\x7b\x42\x6c\x42\x40\xf1\x1d"
        !          38705:             "\x42\x4f\x6e\x42\x40\xf1\x1d\x42\x40\x2c\x42\x7b\x42"
        !          38706:             "\x8a\x42\xa8\x42\xd5\x42\x40\xfe\xc2\x42\x40\xf3\xc2"
        !          38707:             "\x42\x41" }  },
        !          38708:       /* --- pixel bitmap for cmsy325 char#124 \clubsuit --- */
        !          38709:       { 124,106057,                     /* character number, location */
        !          38710:          32, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
        !          38711:           { 34,   38, 3,119, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          38712:             "\xe6\xe0\xca\xe0\x9c\xb0\xf1\xae\xa0\xf6\x9e\x02\x90"
        !          38713:             "\xf1\xae\xa0\xbc\xe0\x9a\xe0\x34\x2c\x24\x8e\x0e\x5e"
        !          38714:             "\x0e\x02\x20\xf1\x1e\x0e\x04\x1f\x6e\x0e\x06\xf1\x1d"
        !          38715:             "\x22\x2d\x10\x2c\x22\x2c\x5a\x32\x3a\x86\x52\x56\xe0"
        !          38716:             "\x72\xe0\x20\xf3\xe0\x14\xe0\x11" }  },
        !          38717:       /* --- pixel bitmap for cmsy325 char#125 \Diamond --- */
        !          38718:       { 125,106842,                     /* character number, location */
        !          38719:          32, 3,   -7, 3,      /* topleft row,col, and botleft row,col */
        !          38720:           { 30,   39, 3,203, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          38721:             "\xe2\xe0\xf1\xd4\xd0\xc6\xe0\xa2\x22\xe0\x93\x23\xe0"
        !          38722:             "\x82\x42\xe0\x73\x43\xe0\x53\x63\xe0\x42\x82\xe0\x33"
        !          38723:             "\x83\xe0\x13\xa3\xd3\xc3\xb3\xe3\xa2\xe0\x22\x93\xe0"
        !          38724:             "\x23\x73\xe0\x43\x53\xe0\x63\x33\xe0\x83\x13\xe0\xa3"
        !          38725:             "\x13\xe0\x83\x33\xe0\x63\x53\xe0\x43\x73\xe0\x23\x92"
        !          38726:             "\xe0\x22\xa3\xe3\xb3\xc3\xd3\xa3\xe0\x13\x83\xe0\x32"
        !          38727:             "\x82\xe0\x43\x63\xe0\x53\x43\xe0\x72\x42\xe0\x83\x23"
        !          38728:             "\xe0\x92\x22\xe0\xa6\xc0\xf1\xd4\xd0\xe2\xe0" }  },
        !          38729:       /* --- pixel bitmap for cmsy325 char#126 \Heart --- */
        !          38730:       { 126,107755,                     /* character number, location */
        !          38731:          32, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          38732:           { 30,   33, 3,161, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          38733:             "\x55\xa5\x89\x69\x53\x53\x43\x53\x33\x73\x23\x73\x22"
        !          38734:             "\x96\x92\x22\xa4\xa2\x13\xa4\xa3\x0f\x12\xc2\xc2\x0f"
        !          38735:             "\x32\xe0\xc2\x03\xe0\xa3\xf1\x12\xe0\xa2\x10\x13\xe0"
        !          38736:             "\x83\x33\xe0\x63\x52\xe0\x62\x63\xe0\x43\x73\xe0\x23"
        !          38737:             "\x93\xe3\xb3\xc3\xd3\xa3\xe0\x13\x83\xe0\x33\x63\xe0"
        !          38738:             "\x53\x43\xe0\x73\x23\xe0\x92\x22\xe0\xa6\xe0\xb4\xd0"
        !          38739:             "\xf1\xe2\xe3" }  },
        !          38740:       /* --- pixel bitmap for cmsy325 char#127 \spadesuit --- */
        !          38741:       { 127,108736,                     /* character number, location */
        !          38742:          32, 3,   -6, 3,      /* topleft row,col, and botleft row,col */
        !          38743:           { 30,   38, 3,111, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          38744:             "\xf1\xe2\xe0\xf1\xd4\xd0\xc6\xc0\xf1\xb8\xb0\xaa\xe0"
        !          38745:             "\x5c\xe0\x3e\xe0\x1e\x02\xde\x04\xbe\x06\x9e\x08\x7e"
        !          38746:             "\x0a\x30\xf1\x2e\x0c\x20\xf1\x1e\x0e\x1f\x8e\x0e\x02"
        !          38747:             "\xf2\x1b\x22\x2b\x10\x29\x32\x39\x65\x52\x55\xe0\x42"
        !          38748:             "\xe0\xf3\xd4\xd3" }  },
        !          38749:       /* --- trailer  --- */
        !          38750:       { -99, -999,  0,0,0,0, { 0,0,0,0, (pixbyte *)"\0" }  }
        !          38751:    } ;
        !          38752: 
        !          38753: 
        !          38754: /* --- size=9 for .450gf ---
        !          38755:  * mf '\mode=preview; mag=magstep(-9.62468787106292402266); input cmsy10'
        !          38756:  * --------------------------------------------------------------------- */
        !          38757: /* --- fontdef for cmsy450 --- */
        !          38758: static	chardef  cmsy450[] =
        !          38759:    {
        !          38760:       /* --- pixel bitmap for cmsy450 char#0 - --- */
        !          38761:       {   0,24964,                      /* character number, location */
        !          38762:          17, 5,   14, 5,      /* topleft row,col, and botleft row,col */
        !          38763:           { 38,    3, 3, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          38764:             "\xf2\x0e\x0e\x0a" }  },
        !          38765:       /* --- pixel bitmap for cmsy450 char#1 \cdot --- */
        !          38766:       {   1,44380,                      /* character number, location */
        !          38767:          19, 5,   12, 5,      /* topleft row,col, and botleft row,col */
        !          38768:           {  7,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          38769:             "\x1c\xdf\xff\xff\xf7\x71\x00" }  },
        !          38770:       /* --- pixel bitmap for cmsy450 char#2 \times --- */
        !          38771:       {   2,49896,                      /* character number, location */
        !          38772:          30, 9,    1, 9,      /* topleft row,col, and botleft row,col */
        !          38773:           { 30,   29, 3,146, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          38774:             "\x12\xe0\xa7\xe0\x84\x14\xe0\x65\x24\xe0\x44\x54\xe0"
        !          38775:             "\x24\x74\xe4\x94\xc4\xb4\xa4\xd4\x84\xe0\x14\x64\xe0"
        !          38776:             "\x34\x44\xe0\x54\x24\xe0\x78\xe0\x96\xe0\xb4\xe0\xb6"
        !          38777:             "\xe0\x98\xe0\x74\x24\xe0\x54\x44\xe0\x34\x64\xe0\x14"
        !          38778:             "\x84\xd4\xa4\xb4\xc4\x94\xe4\x74\xe0\x24\x54\xe0\x44"
        !          38779:             "\x34\xe0\x69\xe0\x84\x12\xe0\xa3" }  },
        !          38780:       /* --- pixel bitmap for cmsy450 char#3 \ast --- */
        !          38781:       {   3,50601,                      /* character number, location */
        !          38782:          29, 4,    2, 4,      /* topleft row,col, and botleft row,col */
        !          38783:           { 23,   27, 3,83, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          38784:             "\xf5\xa3\xa3\x73\x77\x62\x79\x61\x65\x25\x41\x45\x64"
        !          38785:             "\x31\x34\xa4\x11\x14\xe7\xe0\x43\xe0\x47\xe4\x11\x14"
        !          38786:             "\xa4\x31\x34\x65\x41\x45\x25\x61\x69\x62\x77\x73\x73"
        !          38787:             "\xf5\xa3\xa0" }  },
        !          38788:       /* --- pixel bitmap for cmsy450 char#4 \div --- */
        !          38789:       {   4,51536,                      /* character number, location */
        !          38790:          34, 3,   -3, 3,      /* topleft row,col, and botleft row,col */
        !          38791:           { 41,   37, 2,45, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          38792:             "\x12\x05\x23\x07\x11\x00\xff\x04\x10\x09\x10\x00\x11"
        !          38793:             "\x07\x23\x05\x12\x00\xff\x07\x29\xff\x02\x29\xff\x07"
        !          38794:             "\x29\x00\x12\x05\x23\x07\x11\x00\xff\x04\x10\x09\x10"
        !          38795:             "\x00\x11\x07\x23\x05\x12" }  },
        !          38796:       /* --- pixel bitmap for cmsy450 char#5 \diamond --- */
        !          38797:       {   5,44927,                      /* character number, location */
        !          38798:          30, 1,    1, 1,      /* topleft row,col, and botleft row,col */
        !          38799:           { 29,   29, 3,137, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          38800:             "\xe2\xe0\xc4\xe0\xa6\xe0\x88\xe0\x64\x24\xe0\x44\x44"
        !          38801:             "\xe0\x24\x64\xe4\x84\xc4\xa4\xa4\xc4\x84\xe4\x64\xe0"
        !          38802:             "\x24\x44\xe0\x44\x24\xe0\x68\xe0\x83\x14\xe0\x64\x24"
        !          38803:             "\xe0\x44\x44\xe0\x24\x64\xe4\x84\xc4\xa4\xa4\xc4\x84"
        !          38804:             "\xe4\x64\xe0\x24\x44\xe0\x44\x24\xe0\x68\xe0\x86\xe0"
        !          38805:             "\xa4\xe0\xc2\xd3" }  },
        !          38806:       /* --- pixel bitmap for cmsy450 char#6 \pm --- */
        !          38807:       {   6,25665,                      /* character number, location */
        !          38808:          41, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          38809:           { 42,   41, 2,20, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          38810:             "\x14\x02\x14\x00\xff\x11\x14\x03\x13\xff\x02\x2a\xff"
        !          38811:             "\x0f\x14\x03\x13\xff\x02\x2a" }  },
        !          38812:       /* --- pixel bitmap for cmsy450 char#7 \mp --- */
        !          38813:       {   7,52277,                      /* character number, location */
        !          38814:          31, 3,  -10, 3,      /* topleft row,col, and botleft row,col */
        !          38815:           { 42,   41, 2,21, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          38816:             "\xff\x02\x00\x2a\xff\x0f\x14\x03\x13\xff\x02\x2a\xff"
        !          38817:             "\x11\x14\x03\x13\x00\x14\x02\x14" }  },
        !          38818:       /* --- pixel bitmap for cmsy450 char#8 \oplus --- */
        !          38819:       {   8,26474,                      /* character number, location */
        !          38820:          36, 3,   -5, 3,      /* topleft row,col, and botleft row,col */
        !          38821:           { 42,   41, 3,293, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          38822:             "\xe0\x38\xe0\xe0\x3e\xe0\xc5\x32\x35\xe0\x84\x62\x64"
        !          38823:             "\xe0\x44\x82\x84\xe0\x13\xa2\xa3\xd3\xb2\xb3\xb3\xc2"
        !          38824:             "\xc3\x93\xd2\xd3\x73\xe2\xe3\x62\xe0\x12\xe0\x12\x53"
        !          38825:             "\xe0\x12\xe0\x13\x42\xe0\x22\xe0\x22\x33\xe0\x22\xe0"
        !          38826:             "\x23\x10\xf1\x12\xe0\x32\xe0\x32\x13\xe0\x32\xe0\x33"
        !          38827:             "\x0f\x12\xe0\x42\xe0\x42\x0f\x1e\x0e\x0e\x0f\x22\xe0"
        !          38828:             "\x42\xe0\x42\x03\xe0\x32\xe0\x33\xf1\x12\xe0\x32\xe0"
        !          38829:             "\x32\x10\x13\xe0\x22\xe0\x23\x32\xe0\x22\xe0\x22\x43"
        !          38830:             "\xe0\x12\xe0\x13\x52\xe0\x12\xe0\x12\x63\xe2\xe3\x73"
        !          38831:             "\xd2\xd3\x93\xc2\xc3\xb3\xb2\xb3\xd3\xa2\xa3\xe0\x14"
        !          38832:             "\x82\x84\xe0\x44\x62\x64\xe0\x85\x32\x35\xe0\xce\xe0"
        !          38833:             "\xe0\x38\xe0\x30" }  },
        !          38834:       /* --- pixel bitmap for cmsy450 char#9 \ominus --- */
        !          38835:       {   9,53087,                      /* character number, location */
        !          38836:          36, 3,   -5, 3,      /* topleft row,col, and botleft row,col */
        !          38837:           { 42,   41, 3,261, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          38838:             "\xe0\x38\xe0\xe0\x3e\xe0\xc5\x85\xe0\x84\xe4\xe0\x44"
        !          38839:             "\xe0\x44\xe0\x13\xe0\x83\xd3\xe0\xa3\xb3\xe0\xc3\x93"
        !          38840:             "\xe0\xe3\x73\xe0\xe0\x23\x62\xe0\xe0\x42\x53\xe0\xe0"
        !          38841:             "\x43\x42\xe0\xe0\x62\x33\xe0\xe0\x63\x10\xf1\x12\xe0"
        !          38842:             "\xe0\x82\x13\xe0\xe0\x83\x0f\x12\xe0\xe0\xa2\x0f\x1e"
        !          38843:             "\x0e\x0e\x0f\x22\xe0\xe0\xa2\x03\xe0\xe0\x83\xf1\x12"
        !          38844:             "\xe0\xe0\x82\x10\x13\xe0\xe0\x63\x32\xe0\xe0\x62\x43"
        !          38845:             "\xe0\xe0\x43\x52\xe0\xe0\x42\x63\xe0\xe0\x23\x73\xe0"
        !          38846:             "\xe3\x93\xe0\xc3\xb3\xe0\xa3\xd3\xe0\x83\xe0\x14\xe0"
        !          38847:             "\x44\xe0\x44\xe4\xe0\x85\x85\xe0\xce\xe0\xe0\x38\xe0"
        !          38848:             "\x3b" }  },
        !          38849:       /* --- pixel bitmap for cmsy450 char#10 \otimes --- */
        !          38850:       {  10,27424,                      /* character number, location */
        !          38851:          36, 3,   -5, 3,      /* topleft row,col, and botleft row,col */
        !          38852:           { 42,   41, 3,307, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          38853:             "\xe0\x38\xe0\xe0\x3e\xe0\xc5\x85\xe0\x84\xe4\xe0\x44"
        !          38854:             "\xe0\x44\xe0\x13\xe0\x83\xd3\xe0\xa3\xb4\xe0\xa4\x96"
        !          38855:             "\xe0\x86\x73\x23\xe0\x63\x23\x62\x43\xe0\x43\x42\x53"
        !          38856:             "\x53\xe0\x23\x53\x42\x73\xe3\x72\x33\x83\xc3\x83\x22"
        !          38857:             "\xa3\xa3\xa2\x22\xb3\x83\xb2\x13\xc3\x63\xc5\xe3\x43"
        !          38858:             "\xe4\xe0\x13\x23\xe0\x14\xe0\x26\xe0\x24\xe0\x34\xe0"
        !          38859:             "\x34\xe0\x26\xe0\x24\xe0\x13\x23\xe0\x14\xe3\x43\xe5"
        !          38860:             "\xc3\x63\xc3\x12\xb3\x83\xb2\x22\xa3\xa3\xa2\x23\x83"
        !          38861:             "\xc3\x83\x32\x73\xe3\x72\x43\x53\xe0\x23\x53\x52\x43"
        !          38862:             "\xe0\x43\x42\x63\x23\xe0\x63\x23\x76\xe0\x86\x94\xe0"
        !          38863:             "\xa4\xb3\xe0\xa3\xd3\xe0\x83\xe0\x14\xe0\x44\xe0\x44"
        !          38864:             "\xe4\xe0\x85\x85\xe0\xce\xe0\xe0\x38\xe0\x3e" }  },
        !          38865:       /* --- pixel bitmap for cmsy450 char#11 \oslash --- */
        !          38866:       {  11,53968,                      /* character number, location */
        !          38867:          36, 3,   -5, 3,      /* topleft row,col, and botleft row,col */
        !          38868:           { 42,   41, 3,291, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          38869:             "\xe0\x38\xe0\xe0\x3e\xe0\xc5\x85\xe0\x84\xe4\xe0\x44"
        !          38870:             "\xe0\x44\xe0\x13\xe0\x83\xd3\xe0\xa3\xb3\xe0\xb4\x93"
        !          38871:             "\xe0\xb6\x73\xe0\xb3\x23\x62\xe0\xb3\x42\x53\xe0\xa3"
        !          38872:             "\x53\x42\xe0\xa3\x72\x33\xe0\x93\x83\x22\xe0\x93\xa2"
        !          38873:             "\x22\xe0\x83\xb2\x13\xe0\x73\xc5\xe0\x73\xe4\xe0\x63"
        !          38874:             "\xe0\x14\xe0\x53\xe0\x24\xe0\x34\xe0\x34\xe0\x23\xe0"
        !          38875:             "\x54\xe0\x13\xe0\x64\xe3\xe0\x75\xc3\xe0\x73\x12\xb3"
        !          38876:             "\xe0\x82\x22\xa3\xe0\x92\x23\x83\xe0\x93\x32\x73\xe0"
        !          38877:             "\xa2\x43\x53\xe0\xa3\x52\x43\xe0\xb2\x63\x23\xe0\xb3"
        !          38878:             "\x76\xe0\xb3\x94\xe0\xb3\xb3\xe0\xa3\xd3\xe0\x83\xe0"
        !          38879:             "\x14\xe0\x44\xe0\x44\xe4\xe0\x85\x85\xe0\xce\xe0\xe0"
        !          38880:             "\x38\xe0\x35" }  },
        !          38881:       /* --- pixel bitmap for cmsy450 char#12 \odot --- */
        !          38882:       {  12,54896,                      /* character number, location */
        !          38883:          36, 3,   -5, 3,      /* topleft row,col, and botleft row,col */
        !          38884:           { 42,   41, 3,261, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          38885:             "\xe0\x38\xe0\xe0\x3e\xe0\xc5\x85\xe0\x84\xe4\xe0\x44"
        !          38886:             "\xe0\x44\xe0\x13\xe0\x83\xd3\xe0\xa3\xb3\xe0\xc3\x93"
        !          38887:             "\xe0\xe3\x73\xe0\xe0\x23\x62\xe0\xe0\x42\x53\xe0\xe0"
        !          38888:             "\x43\x42\xe0\xe0\x62\x33\xe0\xe0\x63\x10\xf1\x12\xe0"
        !          38889:             "\xe0\x82\x13\xe0\x16\xe0\x15\xe0\x18\xe0\x12\x0f\x42"
        !          38890:             "\xea\xe2\x02\xe0\x18\xe0\x15\xe0\x16\xe0\x13\xf1\x12"
        !          38891:             "\xe0\xe0\x82\x10\x13\xe0\xe0\x63\x32\xe0\xe0\x62\x43"
        !          38892:             "\xe0\xe0\x43\x52\xe0\xe0\x42\x63\xe0\xe0\x23\x73\xe0"
        !          38893:             "\xe3\x93\xe0\xc3\xb3\xe0\xa3\xd3\xe0\x83\xe0\x14\xe0"
        !          38894:             "\x44\xe0\x44\xe4\xe0\x85\x85\xe0\xce\xe0\xe0\x38\xe0"
        !          38895:             "\x34" }  },
        !          38896:       /* --- pixel bitmap for cmsy450 char#13 \bigcirc --- */
        !          38897:       {  13,55907,                      /* character number, location */
        !          38898:          44, 3,  -13, 3,      /* topleft row,col, and botleft row,col */
        !          38899:           { 56,   57, 2,183, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          38900:             "\x16\x0c\x29\x12\x23\x18\x1e\x09\x0a\x09\x1b\x07\x10"
        !          38901:             "\x07\x18\x06\x16\x06\x15\x05\x1a\x05\x13\x05\x1c\x05"
        !          38902:             "\x11\x04\x20\x04\x0f\x04\x22\x04\x0d\x04\x24\x04\x0b"
        !          38903:             "\x04\x26\x04\x0a\x03\x28\x03\x09\x04\x28\x04\x07\x04"
        !          38904:             "\x2a\x04\x06\x03\x2c\x03\x05\x04\x2c\x04\x02\x00\xff"
        !          38905:             "\x01\x02\x03\x2e\x03\x02\x00\x01\x04\x2e\x04\x01\x00"
        !          38906:             "\xff\x02\x01\x03\x30\x03\x01\x04\x30\x04\x00\xff\x08"
        !          38907:             "\x03\x32\x03\x00\x04\x30\x04\xff\x02\x01\x03\x30\x03"
        !          38908:             "\x01\x00\x01\x04\x2e\x04\x01\x00\xff\x01\x02\x03\x2e"
        !          38909:             "\x03\x02\x00\x02\x04\x2c\x04\x05\x03\x2c\x03\x06\x04"
        !          38910:             "\x2a\x04\x07\x04\x28\x04\x09\x03\x28\x03\x0a\x04\x26"
        !          38911:             "\x04\x0b\x04\x24\x04\x0d\x04\x22\x04\x0f\x04\x20\x04"
        !          38912:             "\x11\x05\x1c\x05\x13\x05\x1a\x05\x15\x06\x16\x06\x18"
        !          38913:             "\x07\x10\x07\x1b\x09\x0a\x09\x1e\x18\x23\x12\x29\x0c"
        !          38914:             "\x16" }  },
        !          38915:       /* --- pixel bitmap for cmsy450 char#14 \circ --- */
        !          38916:       {  14,56715,                      /* character number, location */
        !          38917:          28, 3,    3, 3,      /* topleft row,col, and botleft row,col */
        !          38918:           { 25,   25, 3,101, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          38919:             "\x97\xe0\x2b\xce\x01\x96\x56\x75\x95\x54\xd4\x43\xe0"
        !          38920:             "\x13\x34\xe0\x14\x23\xe0\x33\x14\xe0\x34\x0f\x43\xe0"
        !          38921:             "\x53\x04\xe0\x34\x13\xe0\x33\x24\xe0\x14\x33\xe0\x13"
        !          38922:             "\x44\xd4\x55\x95\x76\x56\x9e\x01\xcb\xe0\x27\x90" }  },
        !          38923:       /* --- pixel bitmap for cmsy450 char#15 \bullet --- */
        !          38924:       {  15,57386,                      /* character number, location */
        !          38925:          28, 3,    3, 3,      /* topleft row,col, and botleft row,col */
        !          38926:           { 25,   25, 3,75, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          38927:             "\x97\xe0\x2b\xce\x01\x9e\x03\x7e\x05\x30\xf1\x2e\x07"
        !          38928:             "\x20\xf1\x1e\x09\x1f\x6e\x0b\xf1\x1e\x09\x10\xf1\x2e"
        !          38929:             "\x07\x20\x3e\x05\x7e\x03\x9e\x01\xcb\xe0\x27\x90" }  },
        !          38930:       /* --- pixel bitmap for cmsy450 char#16 \asymp --- */
        !          38931:       {  16,58118,                      /* character number, location */
        !          38932:          31, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          38933:           { 42,   31, 3,142, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          38934:             "\x03\xe0\xe0\x87\xe0\xe0\x69\xe0\xe0\x45\x25\xe0\xe5"
        !          38935:             "\x56\xe0\xa6\x77\xe0\x67\xa7\xe0\x27\xe9\x89\xe0\x4e"
        !          38936:             "\x08\xe0\x8e\x04\xe0\xea\xe0\x20\xf8\xe0\xe0\xe0\xe0"
        !          38937:             "\x2a\xe0\xee\x04\xe0\x8e\x08\xe0\x49\x89\xe7\xe0\x27"
        !          38938:             "\xa7\xe0\x67\x76\xe0\xa6\x55\xe0\xe5\x25\xe0\xe0\x49"
        !          38939:             "\xe0\xe0\x67\xe0\xe0\x83" }  },
        !          38940:       /* --- pixel bitmap for cmsy450 char#17 \equiv --- */
        !          38941:       {  17,42723,                      /* character number, location */
        !          38942:          31, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          38943:           { 42,   31, 2,22, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          38944:             "\xff\x01\x00\x2a\x01\x29\xff\x0a\x2a\xff\x02\x2a\xff"
        !          38945:             "\x0a\x2a\x00\x01\x29\x00\xff\x01\x2a" }  },
        !          38946:       /* --- pixel bitmap for cmsy450 char#18 \subseteq --- */
        !          38947:       {  18,58911,                      /* character number, location */
        !          38948:          40, 5,  -11, 5,      /* topleft row,col, and botleft row,col */
        !          38949:           { 38,   51, 2,80, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          38950:             "\x0f\x17\x0c\x1a\x0a\x1c\x08\x08\x1d\x06\x1f\x05\x20"
        !          38951:             "\x04\x21\x04\x21\x04\x22\x03\x22\x04\x21\x04\x21\x00"
        !          38952:             "\xff\x01\x01\x03\x22\x04\x22\xff\x06\x03\x23\x04\x22"
        !          38953:             "\x00\xff\x01\x01\x03\x22\x00\x01\x04\x23\x04\x23\x03"
        !          38954:             "\x23\x04\x23\x04\x23\x04\x23\x05\x22\x06\x21\x08\x20"
        !          38955:             "\x1c\x0c\x1a\x0f\x17\xff\x0a\x26\x00\x02\x24\x01\x25"
        !          38956:             "\x02\x24" }  },
        !          38957:       /* --- pixel bitmap for cmsy450 char#19 \supseteq --- */
        !          38958:       {  19,59710,                      /* character number, location */
        !          38959:          40, 5,  -11, 5,      /* topleft row,col, and botleft row,col */
        !          38960:           { 38,   51, 2,81, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          38961:             "\x01\x16\x0f\x1a\x0d\x1b\x20\x08\x21\x06\x22\x05\x23"
        !          38962:             "\x04\x23\x04\x23\x04\x23\x03\x23\x04\x23\x04\x01\x00"
        !          38963:             "\xff\x01\x22\x03\x01\x00\x22\x04\xff\x06\x23\x03\x22"
        !          38964:             "\x04\xff\x01\x22\x03\x01\x00\x21\x04\x21\x04\x22\x03"
        !          38965:             "\x22\x04\x21\x04\x21\x04\x20\x05\x1f\x06\x1d\x08\x09"
        !          38966:             "\x1b\x0a\x1a\x0d\x16\x0f\x00\xff\x0a\x26\x24\x02\x25"
        !          38967:             "\x01\x24\x02" }  },
        !          38968:       /* --- pixel bitmap for cmsy450 char#20 \leq --- */
        !          38969:       {  20,41161,                      /* character number, location */
        !          38970:          40, 5,  -11, 5,      /* topleft row,col, and botleft row,col */
        !          38971:           { 38,   51, 2,84, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          38972:             "\x23\x03\x21\x05\x1f\x07\x1d\x07\x1d\x07\x1d\x07\x1d"
        !          38973:             "\x07\x1d\x07\x1d\x07\x1c\x08\x1c\x08\x1c\x08\x1c\x07"
        !          38974:             "\x1d\x07\x1d\x07\x1d\x07\x1d\x07\x1d\x07\x1f\x05\x21"
        !          38975:             "\x07\x21\x07\x21\x07\x21\x07\x21\x07\x21\x07\x21\x07"
        !          38976:             "\x21\x08\x20\x08\x20\x08\x21\x07\x21\x07\x21\x07\x21"
        !          38977:             "\x07\x21\x07\x21\x07\x21\x05\x23\x03\xff\x0a\x26\x00"
        !          38978:             "\x01\x24\x01\xff\x01\x26" }  },
        !          38979:       /* --- pixel bitmap for cmsy450 char#21 \geq --- */
        !          38980:       {  21,41934,                      /* character number, location */
        !          38981:          40, 5,  -11, 5,      /* topleft row,col, and botleft row,col */
        !          38982:           { 38,   51, 2,86, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          38983:             "\x00\x03\x23\x05\x21\x07\x21\x07\x21\x07\x21\x07\x21"
        !          38984:             "\x07\x21\x07\x21\x07\x21\x08\x20\x08\x20\x08\x21\x07"
        !          38985:             "\x21\x07\x21\x07\x21\x07\x21\x07\x21\x07\x21\x05\x1f"
        !          38986:             "\x07\x1d\x07\x1d\x07\x1d\x07\x1d\x07\x1d\x07\x1d\x07"
        !          38987:             "\x1c\x08\x1c\x08\x1c\x08\x1c\x07\x1d\x07\x1d\x07\x1d"
        !          38988:             "\x07\x1d\x07\x1e\x06\x1f\x05\x21\x03\x23\x00\xff\x0a"
        !          38989:             "\x26\x00\x01\x24\x01\xff\x01\x26" }  },
        !          38990:       /* --- pixel bitmap for cmsy450 char#22 \preceq --- */
        !          38991:       {  22,60477,                      /* character number, location */
        !          38992:          40, 5,  -11, 5,      /* topleft row,col, and botleft row,col */
        !          38993:           { 38,   51, 2,76, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          38994:             "\x24\x02\xff\x02\x23\x03\x22\x04\x22\x03\x22\x04\x22"
        !          38995:             "\x03\x22\x04\x21\x04\x21\x04\x20\x05\x20\x05\x1e\x07"
        !          38996:             "\x1d\x07\x1b\x0a\x15\x0e\x0d\x17\x0f\x13\x13\x17\x1a"
        !          38997:             "\x0e\x1f\x0a\x20\x07\x21\x07\x22\x05\x22\x05\x23\x04"
        !          38998:             "\x23\x04\x23\x04\x23\x03\x23\x04\x23\x03\x23\x04\xff"
        !          38999:             "\x02\x23\x03\x24\x02\xff\x0a\x26\xff\x02\x26" }  },
        !          39000:       /* --- pixel bitmap for cmsy450 char#23 \succeq --- */
        !          39001:       {  23,61243,                      /* character number, location */
        !          39002:          40, 5,  -11, 5,      /* topleft row,col, and botleft row,col */
        !          39003:           { 38,   51, 2,76, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          39004:             "\x00\x02\x24\xff\x02\x03\x23\x04\x23\x03\x23\x04\x23"
        !          39005:             "\x03\x23\x04\x23\x04\x23\x04\x23\x05\x22\x05\x22\x07"
        !          39006:             "\x21\x07\x20\x0a\x1f\x0e\x1a\x17\x13\x13\x0f\x17\x0d"
        !          39007:             "\x0e\x15\x0a\x1b\x07\x1d\x07\x1e\x05\x20\x05\x20\x04"
        !          39008:             "\x21\x04\x21\x04\x22\x03\x22\x04\x22\x03\x22\x04\x22"
        !          39009:             "\xff\x03\x03\x23\x00\xff\x0a\x26\xff\x02\x26" }  },
        !          39010:       /* --- pixel bitmap for cmsy450 char#24 \sim --- */
        !          39011:       {  24,61987,                      /* character number, location */
        !          39012:          23, 3,    8, 3,      /* topleft row,col, and botleft row,col */
        !          39013:           { 42,   15, 3,107, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          39014:             "\x77\xe0\xc2\x5b\xe0\xa2\x4e\xe0\x82\x3e\x02\xe0\x72"
        !          39015:             "\x26\x57\xe0\x53\x24\x96\xe0\x43\x14\xc6\xe0\x22\x23"
        !          39016:             "\xe6\xe3\x22\xe0\x26\xc4\x13\xe0\x37\x94\x23\xe0\x57"
        !          39017:             "\x56\x22\xe0\x7e\x02\x32\xe0\x8e\x42\xe0\xab\x52\xe0"
        !          39018:             "\xc7\x7e" }  },
        !          39019:       /* --- pixel bitmap for cmsy450 char#25 \approx --- */
        !          39020:       {  25,62793,                      /* character number, location */
        !          39021:          30, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          39022:           { 42,   30, 3,211, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          39023:             "\x77\xe0\xc2\x5c\xe0\x92\x4e\xe0\x82\x3e\x03\xe0\x62"
        !          39024:             "\x26\x58\xe0\x43\x24\xa6\xe0\x33\x14\xc6\xe0\x13\x23"
        !          39025:             "\xe0\x16\xc4\x13\xe0\x36\xa4\x23\xe0\x48\x56\x22\xe0"
        !          39026:             "\x6e\x03\x32\xe0\x8e\x42\xe0\x9c\x52\xe0\xc7\x70\xf1"
        !          39027:             "\xe0\xe0\xe0\x77\xe0\xc2\x5c\xe0\x92\x4e\xe0\x82\x3e"
        !          39028:             "\x03\xe0\x62\x26\x58\xe0\x43\x24\xa6\xe0\x33\x14\xc6"
        !          39029:             "\xe0\x13\x23\xe0\x16\xc4\x13\xe0\x36\xa4\x23\xe0\x48"
        !          39030:             "\x56\x22\xe0\x6e\x03\x32\xe0\x8e\x42\xe0\x9c\x52\xe0"
        !          39031:             "\xc7\x74" }  },
        !          39032:       /* --- pixel bitmap for cmsy450 char#26 \subset --- */
        !          39033:       {  26,36885,                      /* character number, location */
        !          39034:          34, 5,   -3, 5,      /* topleft row,col, and botleft row,col */
        !          39035:           { 38,   37, 2,70, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          39036:             "\x0f\x17\x0c\x1a\x0a\x1c\x08\x08\x1d\x06\x1f\x05\x20"
        !          39037:             "\x04\x21\x04\x21\x04\x22\x03\x22\x04\x21\x04\x21\x00"
        !          39038:             "\xff\x01\x01\x03\x22\x04\x22\xff\x06\x03\x23\x04\x22"
        !          39039:             "\x00\xff\x01\x01\x03\x22\x00\x01\x04\x23\x04\x23\x03"
        !          39040:             "\x23\x04\x23\x04\x23\x04\x23\x05\x22\x06\x21\x08\x20"
        !          39041:             "\x1c\x0c\x1a\x0f\x17" }  },
        !          39042:       /* --- pixel bitmap for cmsy450 char#27 \supset --- */
        !          39043:       {  27,37641,                      /* character number, location */
        !          39044:          34, 5,   -3, 5,      /* topleft row,col, and botleft row,col */
        !          39045:           { 38,   37, 2,71, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          39046:             "\x01\x16\x0f\x1a\x0d\x1b\x20\x08\x21\x06\x22\x05\x23"
        !          39047:             "\x04\x23\x04\x23\x04\x23\x03\x23\x04\x23\x04\x01\x00"
        !          39048:             "\xff\x01\x22\x03\x01\x00\x22\x04\xff\x06\x23\x03\x22"
        !          39049:             "\x04\xff\x01\x22\x03\x01\x00\x21\x04\x21\x04\x22\x03"
        !          39050:             "\x22\x04\x21\x04\x21\x04\x20\x05\x1f\x06\x1d\x08\x09"
        !          39051:             "\x1b\x0a\x1a\x0d\x16\x0f" }  },
        !          39052:       /* --- pixel bitmap for cmsy450 char#28 \ll --- */
        !          39053:       {  28,63726,                      /* character number, location */
        !          39054:          36, 3,   -5, 3,      /* topleft row,col, and botleft row,col */
        !          39055:           { 56,   41, 3,326, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          39056:             "\xe0\xe0\x63\xe0\x23\xe0\xe0\x45\xe5\xe0\xe0\x36\xd6"
        !          39057:             "\xe0\xe0\x16\xd6\xe0\xe0\x16\xd6\xe0\xe0\x17\xc7\xe0"
        !          39058:             "\xe7\xc7\xe0\xe0\x16\xd6\xe0\xe0\x16\xd6\xe0\xe0\x16"
        !          39059:             "\xd6\xe0\xe0\x17\xc7\xe0\xe7\xc7\xe0\xe0\x16\xd6\xe0"
        !          39060:             "\xe0\x16\xd6\xe0\xe0\x16\xd6\xe0\xe0\x17\xc7\xe0\xe7"
        !          39061:             "\xc7\xe0\xe0\x16\xd6\xe0\xe0\x16\xd6\xe0\xe0\x16\xd6"
        !          39062:             "\xe0\xe0\x35\xe5\xe0\xe0\x46\xd6\xe0\xe0\x56\xd6\xe0"
        !          39063:             "\xe0\x56\xd6\xe0\xe0\x47\xc7\xe0\xe0\x47\xc7\xe0\xe0"
        !          39064:             "\x46\xd6\xe0\xe0\x56\xd6\xe0\xe0\x56\xd6\xe0\xe0\x47"
        !          39065:             "\xc7\xe0\xe0\x47\xc7\xe0\xe0\x46\xd6\xe0\xe0\x56\xd6"
        !          39066:             "\xe0\xe0\x56\xd6\xe0\xe0\x47\xc7\xe0\xe0\x47\xc7\xe0"
        !          39067:             "\xe0\x46\xd6\xe0\xe0\x56\xd6\xe0\xe0\x56\xd6\xe0\xe0"
        !          39068:             "\x45\xe5\xe0\xe0\x63\xe0\x23" }  },
        !          39069:       /* --- pixel bitmap for cmsy450 char#29 \gg --- */
        !          39070:       {  29,64688,                      /* character number, location */
        !          39071:          36, 3,   -5, 3,      /* topleft row,col, and botleft row,col */
        !          39072:           { 56,   41, 3,327, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          39073:             "\x03\xe0\x23\xe0\xe0\x65\xe5\xe0\xe0\x46\xd6\xe0\xe0"
        !          39074:             "\x56\xd6\xe0\xe0\x56\xd6\xe0\xe0\x47\xc7\xe0\xe0\x47"
        !          39075:             "\xc7\xe0\xe0\x46\xd6\xe0\xe0\x56\xd6\xe0\xe0\x56\xd6"
        !          39076:             "\xe0\xe0\x47\xc7\xe0\xe0\x47\xc7\xe0\xe0\x46\xd6\xe0"
        !          39077:             "\xe0\x56\xd6\xe0\xe0\x56\xd6\xe0\xe0\x47\xc7\xe0\xe0"
        !          39078:             "\x47\xc7\xe0\xe0\x46\xd6\xe0\xe0\x56\xd6\xe0\xe0\x56"
        !          39079:             "\xd6\xe0\xe0\x45\xe5\xe0\xe0\x36\xd6\xe0\xe0\x16\xd6"
        !          39080:             "\xe0\xe0\x16\xd6\xe0\xe0\x17\xc7\xe0\xe7\xc7\xe0\xe0"
        !          39081:             "\x16\xd6\xe0\xe0\x16\xd6\xe0\xe0\x16\xd6\xe0\xe0\x17"
        !          39082:             "\xc7\xe0\xe7\xc7\xe0\xe0\x16\xd6\xe0\xe0\x16\xd6\xe0"
        !          39083:             "\xe0\x16\xd6\xe0\xe0\x17\xc7\xe0\xe7\xc7\xe0\xe0\x16"
        !          39084:             "\xd6\xe0\xe0\x16\xd6\xe0\xe0\x16\xd6\xe0\xe0\x35\xe5"
        !          39085:             "\xe0\xe0\x43\xe0\x23\xe0\xe0\x60" }  },
        !          39086:       /* --- pixel bitmap for cmsy450 char#30 \prec --- */
        !          39087:       {  30,65497,                      /* character number, location */
        !          39088:          34, 5,   -3, 5,      /* topleft row,col, and botleft row,col */
        !          39089:           { 38,   37, 2,68, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          39090:             "\x24\x02\xff\x02\x23\x03\x22\x04\x22\x03\x22\x04\x22"
        !          39091:             "\x03\x22\x04\x21\x04\x21\x04\x20\x05\x20\x05\x1e\x07"
        !          39092:             "\x1d\x07\x1b\x0a\x15\x0e\x0d\x17\x0f\x13\x13\x17\x1a"
        !          39093:             "\x0e\x1f\x0a\x20\x07\x21\x07\x22\x05\x22\x05\x23\x04"
        !          39094:             "\x23\x04\x23\x04\x23\x03\x23\x04\x23\x03\x23\x04\xff"
        !          39095:             "\x03\x23\x03" }  },
        !          39096:       /* --- pixel bitmap for cmsy450 char#31 \succ --- */
        !          39097:       {  31,66215,                      /* character number, location */
        !          39098:          34, 5,   -3, 5,      /* topleft row,col, and botleft row,col */
        !          39099:           { 38,   37, 2,69, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          39100:             "\x00\x02\x24\xff\x02\x03\x23\x04\x23\x03\x23\x04\x23"
        !          39101:             "\x03\x23\x04\x23\x04\x23\x04\x23\x05\x22\x05\x22\x07"
        !          39102:             "\x21\x07\x20\x0a\x1f\x0e\x1a\x17\x13\x13\x0f\x17\x0d"
        !          39103:             "\x0e\x15\x0a\x1b\x07\x1d\x07\x1e\x05\x20\x05\x20\x04"
        !          39104:             "\x21\x04\x21\x04\x22\x03\x22\x04\x22\x03\x22\x04\x22"
        !          39105:             "\xff\x03\x03\x23" }  },
        !          39106:       /* --- pixel bitmap for cmsy450 char#32 \leftarrow --- */
        !          39107:       {  32,33590,                      /* character number, location */
        !          39108:          31, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          39109:           { 56,   31, 2,71, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          39110:             "\x0d\x03\x28\x00\xff\x02\x0c\x03\x29\x00\xff\x01\x0b"
        !          39111:             "\x03\x2a\x00\x0a\x04\x34\x03\x34\x03\x34\x04\x33\x04"
        !          39112:             "\x33\x04\x33\x04\x33\x04\x32\x35\x01\x38\x02\x35\x05"
        !          39113:             "\x04\x35\x04\x35\x04\x35\x04\x35\x04\x35\x03\x36\x03"
        !          39114:             "\x35\x04\x2a\x00\xff\x01\x0b\x03\x2a\x00\xff\x02\x0c"
        !          39115:             "\x03\x29\x00\x0d\x03\x28" }  },
        !          39116:       /* --- pixel bitmap for cmsy450 char#33 \rightarrow --- */
        !          39117:       {  33,34670,                      /* character number, location */
        !          39118:          31, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          39119:           { 56,   31, 2,71, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          39120:             "\x28\x03\x0d\x00\xff\x02\x29\x03\x0c\x00\xff\x01\x2a"
        !          39121:             "\x03\x0b\x00\x2a\x04\x35\x03\x36\x03\x35\x04\x35\x04"
        !          39122:             "\x35\x04\x35\x04\x35\x04\x05\x35\x02\x38\x01\x35\x32"
        !          39123:             "\x04\x33\x04\x33\x04\x33\x04\x33\x04\x34\x03\x34\x03"
        !          39124:             "\x34\x04\x0a\x00\xff\x01\x2a\x03\x0b\x00\xff\x02\x29"
        !          39125:             "\x03\x0c\x00\x28\x03\x0d" }  },
        !          39126:       /* --- pixel bitmap for cmsy450 char#34 \uparrow --- */
        !          39127:       {  34,32435,                      /* character number, location */
        !          39128:          43, 1,  -12, 1,      /* topleft row,col, and botleft row,col */
        !          39129:           { 29,   55, 3,91, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          39130:             "\xf2\xe1\xe0\xf1\xd3\xd0\xf1\xc5\xc0\xb7\xb0\xf1\xa9"
        !          39131:             "\xa0\x93\x13\x13\xe0\x24\x23\x24\xd4\x33\x34\xa5\x43"
        !          39132:             "\x45\x57\x53\x57\x16\x73\x7a\x93\x94\xfe\xd3\xd0\xfe"
        !          39133:             "\xd3\xd0\xf6\xd3\xd0\xe1\xe0" }  },
        !          39134:       /* --- pixel bitmap for cmsy450 char#35 \downarrow --- */
        !          39135:       {  35,31516,                      /* character number, location */
        !          39136:          43, 1,  -12, 1,      /* topleft row,col, and botleft row,col */
        !          39137:           { 29,   55, 3,91, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          39138:             "\xe1\xe0\xfe\xd3\xd0\xfe\xd3\xd0\xf6\xd3\xd4\x93\x9a"
        !          39139:             "\x73\x76\x17\x53\x57\x55\x43\x45\xa4\x33\x34\xd4\x23"
        !          39140:             "\x24\xe0\x23\x13\x13\x90\xf1\xa9\xa0\xb7\xb0\xf1\xc5"
        !          39141:             "\xc0\xf1\xd3\xd0\xf2\xe1\xe0" }  },
        !          39142:       /* --- pixel bitmap for cmsy450 char#36 \leftrightarrow --- */
        !          39143:       {  36,36087,                      /* character number, location */
        !          39144:          31, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          39145:           { 56,   31, 3,221, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          39146:             "\xd3\xe0\xa3\xd0\xf2\xc3\xe0\xc3\xc0\xf1\xb3\xe0\xe3"
        !          39147:             "\xb0\xa4\xe0\xe4\xe0\x63\xe0\xe0\x23\xe0\x53\xe0\xe0"
        !          39148:             "\x43\xe0\x34\xe0\xe0\x44\xe0\x14\xe0\xe0\x64\xd4\xe0"
        !          39149:             "\xe0\x84\xb4\xe0\xe0\xa4\x94\xe0\xe0\xc4\x6e\x0e\x0e"
        !          39150:             "\x0a\x2e\x0e\x0e\x0e\x2e\x0e\x0e\x0a\x64\xe0\xe0\xc4"
        !          39151:             "\x94\xe0\xe0\xa4\xb4\xe0\xe0\x84\xd4\xe0\xe0\x64\xe0"
        !          39152:             "\x14\xe0\xe0\x44\xe0\x33\xe0\xe0\x43\xe0\x53\xe0\xe0"
        !          39153:             "\x23\xe0\x64\xe0\xe4\xa0\xf1\xb3\xe0\xe3\xb0\xf2\xc3"
        !          39154:             "\xe0\xc3\xc0\xd3\xe0\xa3\xd3" }  },
        !          39155:       /* --- pixel bitmap for cmsy450 char#37 \nearrow --- */
        !          39156:       {  37,67307,                      /* character number, location */
        !          39157:          45, 3,  -13, 3,      /* topleft row,col, and botleft row,col */
        !          39158:           { 58,   58, 2,155, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          39159:             "\x23\x01\x38\x04\x36\x06\x0e\x02\x26\x08\x06\x06\x28"
        !          39160:             "\x11\x2b\x0f\x30\x04\x01\x05\x34\x06\x33\x03\x01\x02"
        !          39161:             "\x33\x03\x01\x03\x32\x03\x02\x03\x31\x03\x03\x03\x30"
        !          39162:             "\x03\x04\x03\x2f\x03\x06\x02\x2e\x03\x07\x03\x2c\x03"
        !          39163:             "\x08\x03\x2b\x03\x09\x03\x2a\x03\x0a\x03\x29\x03\x0c"
        !          39164:             "\x03\x27\x03\x0d\x03\x26\x03\x0f\x03\x24\x03\x10\x03"
        !          39165:             "\x23\x03\x12\x03\x21\x03\x13\x02\x21\x03\x36\x03\x36"
        !          39166:             "\x03\x36\x03\x36\x03\x36\x03\x36\x03\x36\x03\x36\x03"
        !          39167:             "\x36\x03\x36\x03\x36\x03\x36\x03\x36\x03\x36\x03\x36"
        !          39168:             "\x03\x36\x03\x36\x03\x36\x03\x36\x03\x36\x03\x36\x03"
        !          39169:             "\x36\x03\x36\x03\x36\x03\x36\x03\x36\x03\x36\x03\x36"
        !          39170:             "\x03\x36\x03\x36\x03\x36\x03\x36\x03\x38\x01\x38" }  },
        !          39171:       /* --- pixel bitmap for cmsy450 char#38 \searrow --- */
        !          39172:       {  38,68479,                      /* character number, location */
        !          39173:          44, 3,  -14, 3,      /* topleft row,col, and botleft row,col */
        !          39174:           { 58,   58, 2,155, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          39175:             "\x01\x01\x38\x03\x38\x03\x38\x03\x38\x03\x38\x03\x38"
        !          39176:             "\x03\x38\x03\x38\x03\x38\x03\x38\x03\x38\x03\x38\x03"
        !          39177:             "\x38\x03\x38\x03\x38\x03\x38\x03\x38\x03\x38\x03\x38"
        !          39178:             "\x03\x38\x03\x38\x03\x38\x03\x38\x03\x38\x03\x38\x03"
        !          39179:             "\x38\x03\x38\x03\x38\x03\x38\x03\x38\x03\x38\x03\x38"
        !          39180:             "\x03\x38\x03\x38\x03\x13\x02\x23\x03\x12\x03\x23\x03"
        !          39181:             "\x10\x03\x25\x03\x0f\x03\x26\x03\x0d\x03\x28\x03\x0c"
        !          39182:             "\x03\x29\x03\x0a\x03\x2b\x03\x09\x03\x2c\x03\x08\x03"
        !          39183:             "\x2d\x03\x07\x03\x2e\x03\x06\x02\x30\x03\x04\x03\x31"
        !          39184:             "\x03\x03\x03\x32\x03\x02\x03\x33\x03\x01\x03\x34\x03"
        !          39185:             "\x01\x02\x35\x06\x30\x04\x01\x05\x2b\x0f\x29\x11\x27"
        !          39186:             "\x08\x06\x06\x24\x06\x0e\x02\x24\x04\x37\x01\x16" }  },
        !          39187:       /* --- pixel bitmap for cmsy450 char#39 \simeq --- */
        !          39188:       {  39,69331,                      /* character number, location */
        !          39189:          29, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          39190:           { 42,   29, 3,124, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          39191:             "\x77\xe0\xc2\x5c\xe0\x92\x4e\xe0\x82\x3e\x03\xe0\x62"
        !          39192:             "\x26\x58\xe0\x43\x24\xa6\xe0\x33\x14\xc6\xe0\x13\x23"
        !          39193:             "\xe0\x16\xc4\x13\xe0\x36\xa4\x23\xe0\x48\x56\x22\xe0"
        !          39194:             "\x6e\x03\x32\xe0\x8e\x42\xe0\x9c\x52\xe0\xc7\x70\xfb"
        !          39195:             "\xe0\xe0\xe0\x1e\x0e\x0d\x0f\x1e\x0e\x0e" }  },
        !          39196:       /* --- pixel bitmap for cmsy450 char#40 \Leftarrow --- */
        !          39197:       {  40,70397,                      /* character number, location */
        !          39198:          33, 3,   -2, 3,      /* topleft row,col, and botleft row,col */
        !          39199:           { 56,   35, 2,79, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          39200:             "\x14\x03\x34\x03\x34\x04\x34\x03\x23\x00\xff\x01\x11"
        !          39201:             "\x03\x24\x00\x10\x03\x34\x03\x34\x03\x34\x2b\x0c\x2c"
        !          39202:             "\x0b\x2d\x0a\x03\x33\x04\x32\x05\x31\x06\x30\x06\x30"
        !          39203:             "\x06\x34\x06\x34\x06\x34\x05\x35\x04\x36\x03\x36\x2d"
        !          39204:             "\x0c\x2c\x0d\x2b\x0e\x03\x36\x03\x36\x03\x25\x00\xff"
        !          39205:             "\x01\x11\x03\x24\x00\x12\x03\x35\x04\x35\x03\x36\x03"
        !          39206:             "\x21" }  },
        !          39207:       /* --- pixel bitmap for cmsy450 char#41 \Rightarrow --- */
        !          39208:       {  41,71458,                      /* character number, location */
        !          39209:          33, 3,   -2, 3,      /* topleft row,col, and botleft row,col */
        !          39210:           { 56,   35, 2,79, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          39211:             "\x21\x03\x36\x03\x35\x04\x35\x03\x12\x00\xff\x01\x24"
        !          39212:             "\x03\x11\x00\x25\x03\x36\x03\x36\x03\x0e\x2b\x0d\x2c"
        !          39213:             "\x0c\x2d\x36\x03\x36\x04\x35\x05\x34\x06\x34\x06\x34"
        !          39214:             "\x06\x30\x06\x30\x06\x31\x05\x32\x04\x33\x03\x0a\x2d"
        !          39215:             "\x0b\x2c\x0c\x2b\x34\x03\x34\x03\x34\x03\x10\x00\xff"
        !          39216:             "\x01\x24\x03\x11\x00\x23\x03\x34\x04\x34\x03\x34\x03"
        !          39217:             "\x14" }  },
        !          39218:       /* --- pixel bitmap for cmsy450 char#42 \Uparrow --- */
        !          39219:       {  42,72334,                      /* character number, location */
        !          39220:          43, 2,  -12, 2,      /* topleft row,col, and botleft row,col */
        !          39221:           { 35,   55, 3,143, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          39222:             "\xf1\xe0\x31\xe0\x30\xf1\xe0\x23\xe0\x20\xf1\xe0\x15"
        !          39223:             "\xe0\x10\xf1\xe3\x13\xe0\xf1\xd3\x33\xd0\xc3\x53\xe0"
        !          39224:             "\x93\x73\xe0\x73\x93\xe0\x53\xb3\xe0\x34\xb4\xe0\x15"
        !          39225:             "\xb5\xd6\xb6\xa4\x13\xb3\x14\x65\x23\xb3\x25\x26\x33"
        !          39226:             "\xb3\x3a\x53\xb3\x56\x73\xb3\x72\xfe\x93\xb3\x90\xfe"
        !          39227:             "\x93\xb3\x90\xf2\x93\xb3\x90" }  },
        !          39228:       /* --- pixel bitmap for cmsy450 char#43 \Downarrow --- */
        !          39229:       {  43,73370,                      /* character number, location */
        !          39230:          43, 2,  -12, 2,      /* topleft row,col, and botleft row,col */
        !          39231:           { 35,   55, 3,147, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          39232:             "\xfe\x93\xb3\x90\xfe\x93\xb3\x90\xf2\x93\xb3\x92\x73"
        !          39233:             "\xb3\x76\x53\xb3\x5a\x33\xb3\x36\x25\x23\xb3\x25\x64"
        !          39234:             "\x13\xb3\x14\xa6\xb6\xd5\xb5\xe0\x14\xb4\xe0\x33\xb3"
        !          39235:             "\xe0\x53\x93\xe0\x73\x73\xe0\x93\x53\xe0\xb2\x52\xe0"
        !          39236:             "\xc3\x33\xd0\xf1\xe3\x13\xe0\xf1\xe0\x15\xe0\x10\xf1"
        !          39237:             "\xe0\x23\xe0\x20\xf1\xe0\x31\xe0\x36" }  },
        !          39238:       /* --- pixel bitmap for cmsy450 char#44 \Leftrightarrow --- */
        !          39239:       {  44,74826,                      /* character number, location */
        !          39240:          33, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
        !          39241:           { 58,   35, 2,129, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          39242:             "\xff\x01\x10\x03\x14\x03\x10\x00\xff\x01\x0f\x03\x16"
        !          39243:             "\x03\x0f\x00\xff\x01\x0e\x03\x18\x03\x0e\x00\x0d\x03"
        !          39244:             "\x1a\x03\x19\x03\x1c\x03\x17\x04\x1c\x04\x16\x24\x15"
        !          39245:             "\x26\x13\x28\x11\x03\x24\x03\x0e\x04\x26\x04\x0b\x04"
        !          39246:             "\x28\x04\x08\x05\x2a\x05\x05\x05\x2c\x05\x02\x05\x30"
        !          39247:             "\x05\x02\x05\x2c\x05\x05\x05\x2a\x05\x08\x04\x28\x04"
        !          39248:             "\x0b\x04\x26\x04\x0e\x03\x24\x03\x11\x28\x13\x26\x15"
        !          39249:             "\x24\x16\x04\x1c\x04\x17\x03\x1c\x03\x19\x03\x1a\x03"
        !          39250:             "\x0d\x00\xff\x01\x0e\x03\x18\x03\x0e\x00\xff\x01\x0f"
        !          39251:             "\x03\x16\x03\x0f\x00\xff\x01\x10\x03\x14\x03\x10" }  },
        !          39252:       /* --- pixel bitmap for cmsy450 char#45 \nwarrow --- */
        !          39253:       {  45,75972,                      /* character number, location */
        !          39254:          45, 1,  -13, 1,      /* topleft row,col, and botleft row,col */
        !          39255:           { 58,   58, 2,155, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          39256:             "\x16\x01\x37\x04\x24\x02\x0e\x06\x24\x06\x06\x08\x27"
        !          39257:             "\x11\x29\x0f\x2b\x05\x01\x04\x30\x06\x35\x02\x01\x03"
        !          39258:             "\x34\x03\x01\x03\x33\x03\x02\x03\x32\x03\x03\x03\x31"
        !          39259:             "\x03\x04\x03\x30\x02\x06\x03\x2e\x03\x07\x03\x2d\x03"
        !          39260:             "\x08\x03\x2c\x03\x09\x03\x2b\x03\x0a\x03\x29\x03\x0c"
        !          39261:             "\x03\x28\x03\x0d\x03\x26\x03\x0f\x03\x25\x03\x10\x03"
        !          39262:             "\x23\x03\x12\x03\x23\x02\x13\x03\x38\x03\x38\x03\x38"
        !          39263:             "\x03\x38\x03\x38\x03\x38\x03\x38\x03\x38\x03\x38\x03"
        !          39264:             "\x38\x03\x38\x03\x38\x03\x38\x03\x38\x03\x38\x03\x38"
        !          39265:             "\x03\x38\x03\x38\x03\x38\x03\x38\x03\x38\x03\x38\x03"
        !          39266:             "\x38\x03\x38\x03\x38\x03\x38\x03\x38\x03\x38\x03\x38"
        !          39267:             "\x03\x38\x03\x38\x03\x38\x03\x38\x03\x38\x01\x01" }  },
        !          39268:       /* --- pixel bitmap for cmsy450 char#46 \swarrow --- */
        !          39269:       {  46,77144,                      /* character number, location */
        !          39270:          44, 1,  -14, 1,      /* topleft row,col, and botleft row,col */
        !          39271:           { 58,   58, 2,155, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          39272:             "\x38\x01\x38\x03\x36\x03\x36\x03\x36\x03\x36\x03\x36"
        !          39273:             "\x03\x36\x03\x36\x03\x36\x03\x36\x03\x36\x03\x36\x03"
        !          39274:             "\x36\x03\x36\x03\x36\x03\x36\x03\x36\x03\x36\x03\x36"
        !          39275:             "\x03\x36\x03\x36\x03\x36\x03\x36\x03\x36\x03\x36\x03"
        !          39276:             "\x36\x03\x36\x03\x36\x03\x36\x03\x36\x03\x36\x03\x36"
        !          39277:             "\x03\x36\x03\x21\x02\x13\x03\x21\x03\x12\x03\x23\x03"
        !          39278:             "\x10\x03\x24\x03\x0f\x03\x26\x03\x0d\x03\x27\x03\x0c"
        !          39279:             "\x03\x29\x03\x0a\x03\x2a\x03\x09\x03\x2b\x03\x08\x03"
        !          39280:             "\x2c\x03\x07\x03\x2e\x02\x06\x03\x2f\x03\x04\x03\x30"
        !          39281:             "\x03\x03\x03\x31\x03\x02\x03\x32\x03\x01\x03\x33\x02"
        !          39282:             "\x01\x03\x33\x06\x34\x05\x01\x04\x30\x0f\x2b\x11\x28"
        !          39283:             "\x06\x06\x08\x26\x02\x0e\x06\x36\x04\x38\x01\x23" }  },
        !          39284:       /* --- pixel bitmap for cmsy450 char#47 \propto --- */
        !          39285:       {  47,78328,                      /* character number, location */
        !          39286:          28, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          39287:           { 42,   29, 3,208, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          39288:             "\x86\xe0\x95\x6b\xe0\x45\x11\x53\x46\xe0\x13\xa2\x85"
        !          39289:             "\xd2\xb2\xb5\xa2\xb2\xd5\x82\xc1\xe0\x14\x72\xc2\xe0"
        !          39290:             "\x24\x52\xd1\xe0\x35\x32\xe1\xe0\x45\x22\xd1\xe0\x64"
        !          39291:             "\x12\xe1\xe0\x67\xe1\xe0\x75\xe0\x11\xe0\x84\xe0\x11"
        !          39292:             "\xe0\x85\xe1\xe0\x94\xe1\xe0\x95\xd1\xe0\x87\xc1\xe0"
        !          39293:             "\x82\x14\xd1\xe0\x62\x25\xc1\xe0\x62\x35\xb1\xe0\x52"
        !          39294:             "\x54\xc1\xe0\x32\x74\xb1\xe0\x22\x85\xb1\xe2\xa5\xb1"
        !          39295:             "\xc2\xd5\xa1\x93\xe0\x16\x94\x15\xe0\x48\x86\xe0\x95" }  },
        !          39296:       /* --- pixel bitmap for cmsy450 char#48 \prime --- */
        !          39297:       {  48,78974,                      /* character number, location */
        !          39298:          35, 2,    3, 2,      /* topleft row,col, and botleft row,col */
        !          39299:           { 14,   32, 3,79, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          39300:             "\x94\x96\xf2\x77\xf2\x67\x10\x66\x77\x20\xf2\x56\x30"
        !          39301:             "\xf1\x46\x40\xf1\x45\x50\x36\x50\xf1\x35\x60\x34\x70"
        !          39302:             "\xf1\x25\x70\xf1\x24\x80\xf2\x14\x90\x13\xa4\xaf\x13"
        !          39303:             "\xb2" }  },
        !          39304:       /* --- pixel bitmap for cmsy450 char#49 \infty --- */
        !          39305:       {  49,48006,                      /* character number, location */
        !          39306:          28, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          39307:           { 56,   29, 3,275, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          39308:             "\x97\xe0\xb6\xe0\x2b\xe0\x6b\xce\x01\xe0\x24\x92\x93"
        !          39309:             "\x77\xe3\xc2\x73\xa7\xb3\xe2\x61\xe6\x93\xe0\x21\x52"
        !          39310:             "\xe0\x16\x73\xe0\x41\x41\xe0\x27\x53\xe0\x52\x21\xe0"
        !          39311:             "\x46\x43\xe0\x71\x21\xe0\x56\x32\xe0\x81\x12\xe0\x66"
        !          39312:             "\x12\xe0\xa2\xe0\x88\xe0\xa2\xe0\x87\xe0\xb2\xe0\x96"
        !          39313:             "\xe0\xb2\xe0\xa6\xe0\xa2\xe0\xb6\xe0\x92\xe0\xb7\xe0"
        !          39314:             "\x82\xe0\xa8\xe0\x82\xe0\xa2\x16\xe0\x62\x11\xe0\x82"
        !          39315:             "\x36\xe0\x51\x21\xe0\x73\x46\xe0\x41\x22\xe0\x53\x57"
        !          39316:             "\xe0\x21\x41\xe0\x43\x76\xe0\x12\x51\xe0\x23\x96\xe1"
        !          39317:             "\x62\xe3\xb7\xa3\x72\xc3\xe7\x73\x92\x94\xe0\x2e\x01"
        !          39318:             "\xcb\xe0\x6b\xe0\x26\xe0\xb7\x90" }  },
        !          39319:       /* --- pixel bitmap for cmsy450 char#50 \in --- */
        !          39320:       {  50,38352,                      /* character number, location */
        !          39321:          34, 5,   -3, 5,      /* topleft row,col, and botleft row,col */
        !          39322:           { 32,   37, 2,78, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          39323:             "\x0f\x11\x0c\x14\x0a\x16\x08\x08\x17\x06\x19\x05\x1a"
        !          39324:             "\x04\x1b\x04\x1b\x04\x1c\x03\x1c\x04\x1b\x04\x1b\x00"
        !          39325:             "\xff\x01\x01\x03\x1c\x04\x1c\xff\x01\x03\x1d\xff\x02"
        !          39326:             "\x20\x00\xff\x01\x03\x1d\x04\x1c\x00\xff\x01\x01\x03"
        !          39327:             "\x1c\x00\x01\x04\x1d\x04\x1d\x03\x1d\x04\x1d\x04\x1d"
        !          39328:             "\x04\x1d\x05\x1c\x06\x1b\x08\x1a\x16\x0c\x14\x0f\x11" }  },
        !          39329:       /* --- pixel bitmap for cmsy450 char#51 \ni --- */
        !          39330:       {  51,79677,                      /* character number, location */
        !          39331:          34, 5,   -3, 5,      /* topleft row,col, and botleft row,col */
        !          39332:           { 32,   37, 2,79, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          39333:             "\x01\x10\x0f\x14\x0d\x15\x1a\x08\x1b\x06\x1c\x05\x1d"
        !          39334:             "\x04\x1d\x04\x1d\x04\x1d\x03\x1d\x04\x1d\x04\x01\x00"
        !          39335:             "\xff\x01\x1c\x03\x01\x00\x1c\x04\xff\x01\x1d\x03\x00"
        !          39336:             "\xff\x02\x20\xff\x01\x1d\x03\x1c\x04\xff\x01\x1c\x03"
        !          39337:             "\x01\x00\x1b\x04\x1b\x04\x1c\x03\x1c\x04\x1b\x04\x1b"
        !          39338:             "\x04\x1a\x05\x19\x06\x17\x08\x09\x15\x0a\x14\x0d\x10"
        !          39339:             "\x0f" }  },
        !          39340:       /* --- pixel bitmap for cmsy450 char#52 \triangle --- */
        !          39341:       {  52,80449,                      /* character number, location */
        !          39342:          44, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          39343:           { 47,   44, 3,322, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          39344:             "\xf1\xe0\x83\xe0\x80\xf1\xe0\x75\xe0\x70\xe0\x67\xe0"
        !          39345:             "\xe0\xc3\x13\xe0\xe0\xb4\x14\xe0\xe0\xa3\x33\xe0\xe0"
        !          39346:             "\x94\x34\xe0\xe0\x74\x54\xe0\xe0\x63\x73\xe0\xe0\x54"
        !          39347:             "\x74\xe0\xe0\x43\x93\xe0\xe0\x34\x94\xe0\xe0\x23\xb3"
        !          39348:             "\xe0\xe0\x14\xb4\xe0\xe3\xd3\xe0\xd4\xd4\xe0\xc3\xe0"
        !          39349:             "\x13\xe0\xb4\xe0\x14\xe0\xa3\xe0\x33\xe0\x94\xe0\x34"
        !          39350:             "\xe0\x74\xe0\x54\xe0\x63\xe0\x73\xe0\x54\xe0\x74\xe0"
        !          39351:             "\x43\xe0\x93\xe0\x34\xe0\x94\xe0\x23\xe0\xb3\xe0\x14"
        !          39352:             "\xe0\xb4\xe3\xe0\xd3\xd4\xe0\xd4\xc3\xe0\xe0\x13\xb4"
        !          39353:             "\xe0\xe0\x14\xa3\xe0\xe0\x33\x94\xe0\xe0\x34\x74\xe0"
        !          39354:             "\xe0\x54\x63\xe0\xe0\x73\x54\xe0\xe0\x74\x43\xe0\xe0"
        !          39355:             "\x93\x34\xe0\xe0\x94\x23\xe0\xe0\xb3\x1f\x1e\x0e\x0e"
        !          39356:             "\x05\x1e\x0e\x0e\x04" }  },
        !          39357:       /* --- pixel bitmap for cmsy450 char#53 \bigtriangledown --- */
        !          39358:       {  53,81316,                      /* character number, location */
        !          39359:          31, 4,  -13, 4,      /* topleft row,col, and botleft row,col */
        !          39360:           { 47,   44, 3,323, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          39361:             "\x1e\x0e\x0e\x04\x0f\x1e\x0e\x0e\x05\x13\xe0\xe0\xb3"
        !          39362:             "\x24\xe0\xe0\x94\x33\xe0\xe0\x93\x44\xe0\xe0\x74\x53"
        !          39363:             "\xe0\xe0\x73\x64\xe0\xe0\x54\x74\xe0\xe0\x34\x93\xe0"
        !          39364:             "\xe0\x33\xa4\xe0\xe0\x14\xb3\xe0\xe0\x13\xc4\xe0\xd4"
        !          39365:             "\xd3\xe0\xd3\xe4\xe0\xb4\xe0\x13\xe0\xb3\xe0\x24\xe0"
        !          39366:             "\x94\xe0\x33\xe0\x93\xe0\x44\xe0\x74\xe0\x53\xe0\x73"
        !          39367:             "\xe0\x64\xe0\x54\xe0\x74\xe0\x34\xe0\x93\xe0\x33\xe0"
        !          39368:             "\xa4\xe0\x14\xe0\xb3\xe0\x13\xe0\xc4\xd4\xe0\xd3\xd3"
        !          39369:             "\xe0\xe4\xb4\xe0\xe0\x13\xb3\xe0\xe0\x24\x94\xe0\xe0"
        !          39370:             "\x33\x93\xe0\xe0\x44\x74\xe0\xe0\x53\x73\xe0\xe0\x64"
        !          39371:             "\x54\xe0\xe0\x74\x34\xe0\xe0\x93\x33\xe0\xe0\xa4\x14"
        !          39372:             "\xe0\xe0\xb3\x13\xe0\xe0\xc7\xe0\x60\xf1\xe0\x75\xe0"
        !          39373:             "\x70\xf1\xe0\x83\xe0\x80" }  },
        !          39374:       /* --- pixel bitmap for cmsy450 char#54 \boldslash --- */
        !          39375:       {  54,81792,                      /* character number, location */
        !          39376:          44, 9,  -13, 9,      /* topleft row,col, and botleft row,col */
        !          39377:           { 30,   57, 3,229, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          39378:             "\xf1\xe0\xd3\xe0\xc4\xe0\xc3\xe0\xc4\xe0\xc3\xe0\xc4"
        !          39379:             "\xe0\xc3\xe0\xc4\xe0\xc3\xe0\xc4\xe0\xc3\xe0\xc4\xe0"
        !          39380:             "\xc3\xe0\xc4\xe0\xc3\xe0\xc4\xe0\xc3\xe0\xc4\xe0\xc3"
        !          39381:             "\xe0\xc4\xe0\xc3\xe0\xc4\xe0\xc3\xe0\xc4\xe0\xc3\xe0"
        !          39382:             "\xc4\xe0\xc3\xe0\xc4\xe0\xc3\xe0\xc4\xe0\xc3\xe0\xc4"
        !          39383:             "\xe0\xc3\xe0\xc4\xe0\xc3\xe0\xc4\xe0\xc3\xe0\xc4\xe0"
        !          39384:             "\xc3\xe0\xc4\xe0\xc3\xe0\xc4\xe0\xc3\xe0\xc4\xe0\xc3"
        !          39385:             "\xe0\xc4\xe0\xc3\xe0\xc4\xe0\xc3\xe0\xc4\xe0\xc3\xe0"
        !          39386:             "\xc4\xe0\xc3\xe0\xc4\xe0\xc3\xe0\xe2\xe0\xd4" }  },
        !          39387:       /* --- pixel bitmap for cmsy450 char#55 \' --- */
        !          39388:       {  55,82231,                      /* character number, location */
        !          39389:          27, 3,    4, 3,      /* topleft row,col, and botleft row,col */
        !          39390:           {  5,   23, 3,13, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          39391:             "\xf9\x03\x24\x19\x1f\x93\x23" }  },
        !          39392:       /* --- pixel bitmap for cmsy450 char#56 \forall --- */
        !          39393:       {  56,39004,                      /* character number, location */
        !          39394:          43, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
        !          39395:           { 35,   44, 3,229, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          39396:             "\x12\xe0\xe0\x25\xe0\xe0\x17\xe0\xd4\xf1\x13\xe0\xd3"
        !          39397:             "\x10\x14\xe0\xb4\x33\xe0\xb3\x44\xe0\x94\x20\xf1\x33"
        !          39398:             "\xe0\x93\x30\x34\xe0\x74\x30\xf1\x43\xe0\x73\x40\x44"
        !          39399:             "\xe0\x54\x40\xf1\x5e\x0b\x50\x6e\x09\xc3\xe0\x33\xc4"
        !          39400:             "\xe0\x14\xd3\xe0\x13\xe4\xd4\x70\xf1\x83\xd3\x80\x84"
        !          39401:             "\xb4\xe0\x33\xb3\xe0\x44\x94\x90\xf1\xa3\x93\xa0\xa4"
        !          39402:             "\x74\xe0\x73\x73\xe0\x84\x54\xb0\xf1\xc3\x53\xc0\xc4"
        !          39403:             "\x34\xc0\xf1\xd3\x33\xd0\xd4\x14\xe0\xd3\x13\xe0\xe7"
        !          39404:             "\xe0\xf2\xe0\x15\xe0\x10\xf1\xe0\x23\xe0\x23" }  },
        !          39405:       /* --- pixel bitmap for cmsy450 char#57 \exists --- */
        !          39406:       {  57,39757,                      /* character number, location */
        !          39407:          43, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          39408:           { 27,   43, 2,20, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          39409:             "\xff\x02\x00\x1b\xff\x10\x18\x03\xff\x02\x01\x1a\xff"
        !          39410:             "\x10\x18\x03\x00\xff\x02\x1b" }  },
        !          39411:       /* --- pixel bitmap for cmsy450 char#58 \neg --- */
        !          39412:       {  58,40439,                      /* character number, location */
        !          39413:          23, 4,    6, 4,      /* topleft row,col, and botleft row,col */
        !          39414:           { 34,   17, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          39415:             "\xf2\x0e\x0e\x06\xfd\xe0\xe0\x33" }  },
        !          39416:       /* --- pixel bitmap for cmsy450 char#59 \emptyset --- */
        !          39417:       {  59,82968,                      /* character number, location */
        !          39418:          48, 3,   -4, 3,      /* topleft row,col, and botleft row,col */
        !          39419:           { 25,   52, 3,233, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          39420:             "\xe0\x52\x40\xf1\xe0\x43\x40\xe0\x34\xd7\x13\xc3\x55"
        !          39421:             "\xb2\x84\xa2\x94\x93\x95\x73\xa6\x62\xa4\x12\x30\xf1"
        !          39422:             "\x23\xa3\x23\x20\x23\x94\x23\x34\x93\x34\x10\xf1\x13"
        !          39423:             "\xa3\x43\x10\x13\x94\x43\x1f\x14\x93\x54\x04\x84\x54"
        !          39424:             "\x0f\x24\x83\x64\x04\x74\x64\x0f\x14\x73\x74\x04\x64"
        !          39425:             "\x74\x0f\x24\x63\x84\x04\x54\x84\x0f\x14\x53\x94\x04"
        !          39426:             "\x44\x94\xf2\x13\x43\xa3\x10\x14\x24\x94\x24\x23\xa4"
        !          39427:             "\x33\x23\xa3\x43\x14\xa3\x20\xf1\x36\xa3\x30\x45\x93"
        !          39428:             "\x94\x92\xa3\x92\xb5\x53\xb4\x17\x90\xf2\x43\xe0\x40" }  },
        !          39429:       /* --- pixel bitmap for cmsy450 char#60 \Re --- */
        !          39430:       {  60,84979,                      /* character number, location */
        !          39431:          44, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          39432:           { 42,   45, 3,293, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          39433:             "\x55\xe0\x26\xd2\x43\xba\xb2\x63\x85\x25\xa2\x83\x54"
        !          39434:             "\x56\x92\x84\x33\x86\x72\xa3\x22\xa6\x72\xa6\xc6\x62"
        !          39435:             "\xa6\xd5\x62\xb4\xe6\x53\xa4\xe0\x16\x53\x94\xe0\x25"
        !          39436:             "\x63\x85\xe0\x16\x63\x75\xe0\x26\x63\x65\xe0\x26\x63"
        !          39437:             "\x65\xe0\x36\x63\x55\xe0\x45\x72\x55\xe0\x46\x63\x45"
        !          39438:             "\xe0\x54\x82\x45\xe0\x43\xa2\x45\xe0\x23\xc2\x45\xd5"
        !          39439:             "\xd2\x4e\x07\xe0\x12\x4e\x04\xb2\x52\x45\x85\xbf\x12"
        !          39440:             "\x42\x55\x85\xb0\x11\x42\x55\x85\xc2\x22\x65\x85\xd4"
        !          39441:             "\x75\x85\xb0\xf4\xd5\x85\xb0\xf1\xd4\x95\xb0\x12\xa4"
        !          39442:             "\xa5\xb3\x94\x95\xb3\x94\xa5\xd2\x84\xb5\xc2\x83\xc5"
        !          39443:             "\x63\x42\x72\xd5\x53\x62\x53\xe5\x23\x92\x42\xe0\x28"
        !          39444:             "\xc4\xe0\x64\x73" }  },
        !          39445:       /* --- pixel bitmap for cmsy450 char#61 \Im --- */
        !          39446:       {  61,86454,                      /* character number, location */
        !          39447:          44, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          39448:           { 40,   45, 3,267, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          39449:             "\xa8\xe0\xe0\x13\x65\xe0\xa3\xa5\xe0\x72\xd6\xe0\x42"
        !          39450:             "\xe0\x16\xe0\x22\xe0\x36\xe2\xe0\x56\xd2\xe0\x66\xb2"
        !          39451:             "\xe0\x76\xb2\xe0\x86\x84\xe0\x96\x74\xe0\xa5\x62\x12"
        !          39452:             "\xe0\xc4\x42\x22\xe0\xe6\x42\xe0\xe0\xa0\xf1\x12\xe0"
        !          39453:             "\xe0\x90\x22\xe0\xc6\x72\xe0\x93\x43\x62\xe0\x74\x62"
        !          39454:             "\x63\xe0\x44\x72\x83\xe0\x24\x82\xa5\xa5\x82\xf2\xe0"
        !          39455:             "\xb5\xa0\xf1\xe0\xc5\x90\xe0\xd5\xe0\xe0\x85\x70\xf1"
        !          39456:             "\xe0\xe0\x15\x60\xe0\xe0\x25\x57\xe0\xa5\x77\xe0\x75"
        !          39457:             "\xa5\xe0\x65\xb5\xe0\x55\xc6\xe0\x35\xe5\xe0\x15\xe0"
        !          39458:             "\x25\xe5\xe0\x35\xc5\xe0\x55\xa5\xe0\x76\x75\xe0\xa6"
        !          39459:             "\x27\xe0\xda\xc5" }  },
        !          39460:       /* --- pixel bitmap for cmsy450 char#62 \top --- */
        !          39461:       {  62,87280,                      /* character number, location */
        !          39462:          43, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          39463:           { 43,   43, 2,13, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          39464:             "\x01\x55\x01\x2a\xff\x26\x14\x03\x14\x00\x15\x02\x14" }  },
        !          39465:       /* --- pixel bitmap for cmsy450 char#63 \bot --- */
        !          39466:       {  63,88049,                      /* character number, location */
        !          39467:          43, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          39468:           { 43,   43, 2,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          39469:             "\x15\x02\x14\x00\xff\x26\x14\x03\x14\x00\x01\x55\x01"
        !          39470:             "\x2a" }  },
        !          39471:       /* --- pixel bitmap for cmsy450 char#64 \aleph --- */
        !          39472:       {  64,89336,                      /* character number, location */
        !          39473:          43, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          39474:           { 32,   43, 3,251, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          39475:             "\x11\xe0\x61\x92\xe0\x52\x92\xe0\x53\x83\xe0\x44\x73"
        !          39476:             "\xe0\x45\x64\xe0\x35\x74\xe0\x35\x65\xe0\x35\x65\xe0"
        !          39477:             "\x35\x64\xe0\x45\x64\xe0\x36\x64\xe0\x27\x64\xe0\x12"
        !          39478:             "\x14\x65\xe2\x23\x75\xd2\x32\x67\xc2\x32\x62\x15\xb2"
        !          39479:             "\x31\x63\x25\xa2\xa2\x45\x82\xa3\x55\x72\xa3\x64\x72"
        !          39480:             "\x94\x74\x62\x93\x94\x52\x93\x95\x32\x94\xa5\x22\x94"
        !          39481:             "\xb5\x12\x94\xc7\x94\xd6\x94\xe5\x94\xe0\x15\x84\xe0"
        !          39482:             "\x24\x94\xe0\x24\x85\xe0\x24\x85\xe0\x24\x75\xe0\x25"
        !          39483:             "\x75\xe0\x25\x66\xe0\x24\x66\xe0\x34\xf1\x66\xe0\x33"
        !          39484:             "\x66\xe0\x42\x47\xe0\x5b\xe0\x71\x10" }  },
        !          39485:       /* --- pixel bitmap for cmsy450 char#65 \calA --- */
        !          39486:       {  65,  774,                      /* character number, location */
        !          39487:          45, 3,   -3, 3,      /* topleft row,col, and botleft row,col */
        !          39488:           { 47,   48, 3,321, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          39489:             "\xe0\xe0\x73\xe0\xe0\xe0\x14\xe0\xe0\xe5\x90\xf2\xe0"
        !          39490:             "\xe0\x46\x90\xf1\xe0\xe0\x37\x90\xe0\xe0\x28\xe0\xe0"
        !          39491:             "\xb2\x15\xe0\xe0\xa3\x15\xe0\xe0\xa2\x25\xe0\xe0\x93"
        !          39492:             "\x25\x90\xf1\xe0\xd3\x35\x90\xe0\xc3\x45\xe0\xe0\x72"
        !          39493:             "\x56\xe0\xe0\x53\x56\xe0\xe0\x52\x66\xe0\xe0\x43\x75"
        !          39494:             "\xe0\xe0\x42\x85\xe0\xe0\x33\x85\x80\xf1\xe0\x83\x95"
        !          39495:             "\x80\xe0\x73\xa5\xe0\xe0\x12\xb5\xe0\xe3\xb5\x80\xf1"
        !          39496:             "\xe0\x53\xc5\x80\xe0\x43\xd5\xe0\xb3\xe5\xe0\xbe\x08"
        !          39497:             "\xe0\xae\x0a\xe0\x8e\x0b\xe0\x83\xe0\x26\xe0\x73\xe0"
        !          39498:             "\x45\xe0\x63\xe0\x55\xe0\x54\xe0\x55\x82\x93\xe0\x66"
        !          39499:             "\x63\x83\xe0\x76\x64\x63\xe0\x86\x65\x44\xe0\x95\x6c"
        !          39500:             "\xe0\xa6\x3d\xe0\xbe\x07\xe0\xc9\x38\xe0\xe6\x66\xe0"
        !          39501:             "\xe0\xe4\xe0\xe0\xc0" }  },
        !          39502:       /* --- pixel bitmap for cmsy450 char#66 \calB --- */
        !          39503:       {  66, 1698,                      /* character number, location */
        !          39504:          44, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          39505:           { 40,   45, 3,265, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          39506:             "\xd3\xc8\xe0\x15\x9d\xb6\x7e\x03\x88\x65\x59\x69\x53"
        !          39507:             "\xa7\xa5\x34\xc6\xa5\x24\xe5\xa5\x14\xe0\x15\xa9\xe0"
        !          39508:             "\x25\xa9\xe0\x24\xa9\xe0\x25\xa8\xe0\x34\xb8\xe0\x24"
        !          39509:             "\xc7\xe0\x24\xd7\xe0\x14\xd7\xe4\xe0\x17\xc5\xe0\x26"
        !          39510:             "\xa6\xe0\x46\x77\xe0\x65\x6c\xe0\x26\x4e\x02\xe6\x4e"
        !          39511:             "\x03\xd5\xe9\xc5\xe0\x28\xb5\xe0\x37\xa5\xe0\x57\x30"
        !          39512:             "\xf1\x65\xe0\x66\x30\x64\xe0\x85\x30\xf2\x55\xe0\x85"
        !          39513:             "\x30\x54\xe0\x95\x75\xe0\x94\x85\xe0\x85\x84\xe0\x94"
        !          39514:             "\x85\xe0\x85\x85\xe0\x84\x94\x22\xe0\x44\x9a\xe0\x24"
        !          39515:             "\xac\xc4\xbe\x01\x76\xc4\x2e\x06\xd4\x5e\x01\xe0\x23"
        !          39516:             "\x8a\xe0\x50" }  },
        !          39517:       /* --- pixel bitmap for cmsy450 char#67 \calC --- */
        !          39518:       {  67, 2517,                      /* character number, location */
        !          39519:          44, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
        !          39520:           { 33,   45, 3,183, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          39521:             "\xe0\x89\xe0\x7d\xe0\x3e\x03\xe6\x67\xd4\xa6\xb4\xd5"
        !          39522:             "\xa4\xe5\x94\xe0\x14\x94\xe0\x15\x84\xe0\x25\x75\xe0"
        !          39523:             "\x24\x84\xe0\x25\x74\xe0\x34\x75\xe0\x25\x74\xe0\x33"
        !          39524:             "\x50\xf1\x35\xe0\xb0\x34\xe0\xe5\xe0\xe4\xe0\xd0\xf3"
        !          39525:             "\x15\xe0\xd0\x14\xe0\xef\x75\xe0\xe6\xe0\xd6\xe0\x83"
        !          39526:             "\x26\xe0\x74\x36\xe0\x54\x46\xe0\x44\x57\xe0\x24\x77"
        !          39527:             "\xe4\x88\xb4\xba\x65\xde\x04\xe0\x2e\x01\xe0\x79\xe0"
        !          39528:             "\x20" }  },
        !          39529:       /* --- pixel bitmap for cmsy450 char#68 \calD --- */
        !          39530:       {  68, 3419,                      /* character number, location */
        !          39531:          43, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          39532:           { 46,   43, 3,285, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          39533:             "\xe0\x1e\x04\xe0\xae\x0c\xe0\x4e\x0e\x02\xe6\x35\x7d"
        !          39534:             "\xb4\x65\xba\x84\x85\xd9\x64\x95\xe0\x18\x44\xa5\xe0"
        !          39535:             "\x27\x35\xa5\xe0\x37\x24\xb4\xe0\x56\x14\xb5\xe0\x59"
        !          39536:             "\xd5\xe0\x66\xe0\x15\xe0\x66\xf1\xe0\x15\xe0\x75\xe0"
        !          39537:             "\x14\xe0\x85\xf2\xe5\xe0\x85\xe4\xe0\x95\xd5\xe0\x94"
        !          39538:             "\x10\xf1\xd5\xe0\x85\x10\xd4\xe0\x94\xe5\xe0\x85\xe5"
        !          39539:             "\xe0\x84\xe0\x15\xe0\x75\xe0\x14\xe0\x84\xe0\x15\xe0"
        !          39540:             "\x75\xe0\x15\xe0\x74\xe0\x24\xe0\x74\xe0\x25\xe0\x64"
        !          39541:             "\xe0\x35\xe0\x54\xe0\x44\xe0\x54\xe0\x45\xe0\x44\xe0"
        !          39542:             "\x55\xe0\x24\xe0\x74\xe0\x15\xe0\x75\xd5\xe0\x94\xc5"
        !          39543:             "\xe0\xa5\x87\xe0\xbe\x05\xe0\xce\x03\xe0\xee\xe0\xec" }  },
        !          39544:       /* --- pixel bitmap for cmsy450 char#69 \calE --- */
        !          39545:       {  69, 4240,                      /* character number, location */
        !          39546:          44, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          39547:           { 33,   45, 3,203, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          39548:             "\xe0\x79\xe0\x7e\xe0\x2e\x04\xe5\x68\xc4\xb6\xb4\xd5"
        !          39549:             "\xa4\xe5\x94\xe0\x14\x95\xe5\x95\xe3\xb4\xe0\x70\xf1"
        !          39550:             "\x75\xe0\x70\xf1\x76\xe0\x60\x77\xe0\xd7\xe0\xc9\xe0"
        !          39551:             "\xbb\xe0\x9e\xe0\x7b\xe0\x8a\xe0\x76\xe0\xc4\xe0\xd4"
        !          39552:             "\xe0\xe4\xe0\xe4\xe0\xe4\xe0\xe4\xe0\xe5\xe0\xe4\xe0"
        !          39553:             "\xd0\xf1\x15\xe0\xd0\x14\xe0\xe5\xe0\x73\x45\xe0\x64"
        !          39554:             "\x45\xe0\x54\x56\xe0\x34\x66\xe0\x24\x77\xe4\x97\xb4"
        !          39555:             "\xba\x65\xde\x04\xe0\x2e\x01\xe0\x79\xe0\x45" }  },
        !          39556:       /* --- pixel bitmap for cmsy450 char#70 \calF --- */
        !          39557:       {  70, 5106,                      /* character number, location */
        !          39558:          43, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
        !          39559:           { 51,   45, 2,145, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          39560:             "\x16\x1c\x14\x20\x11\x22\x10\x04\x05\x05\x0f\x06\x0e"
        !          39561:             "\x04\x07\x05\x10\x04\x0e\x04\x08\x05\x10\x02\x0f\x04"
        !          39562:             "\x09\x04\x21\x04\x09\x05\x20\x05\x09\x05\x20\x04\x0a"
        !          39563:             "\x05\x1f\x04\x0b\x04\x20\x02\x0c\x05\x17\x00\xff\x01"
        !          39564:             "\x17\x05\x17\x00\x17\x04\x18\x00\xff\x01\x16\x05\x18"
        !          39565:             "\x00\x16\x04\x19\x00\xff\x01\x15\x05\x19\x00\x15\x04"
        !          39566:             "\x1a\x00\xff\x01\x14\x15\x0a\x00\x14\x13\x1f\x05\x2e"
        !          39567:             "\x04\x1c\x00\xff\x01\x12\x05\x1c\x00\x12\x04\x2e\x05"
        !          39568:             "\x2e\x04\x2e\x05\x2e\x04\x2e\x05\x2e\x04\x2e\x05\x2e"
        !          39569:             "\x04\x23\x03\x08\x05\x22\x04\x08\x04\x22\x06\x06\x05"
        !          39570:             "\x22\x07\x05\x04\x23\x09\x02\x04\x25\x0d\x27\x0a\x2b"
        !          39571:             "\x06\x29" }  },
        !          39572:       /* --- pixel bitmap for cmsy450 char#71 \calG --- */
        !          39573:       {  71, 5939,                      /* character number, location */
        !          39574:          44, 2,   -7, 2,      /* topleft row,col, and botleft row,col */
        !          39575:           { 36,   51, 3,275, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          39576:             "\xe0\x8b\xe0\x7e\x03\xe0\x2e\x07\xd7\x88\xc4\xe6\xb3"
        !          39577:             "\xe0\x35\x94\xe0\x45\x84\xe0\x54\x84\xe0\x54\x84\xe0"
        !          39578:             "\x55\x75\xe0\x54\x84\xe0\x54\x84\xe0\x54\x85\xe0\x44"
        !          39579:             "\x94\xe0\xe0\x10\xf1\x25\xe0\xe0\x10\x24\xe0\xe0\x20"
        !          39580:             "\xf1\x15\xe0\xe0\x20\x14\xe0\xe0\x35\xe0\xb3\x35\xe0"
        !          39581:             "\xa4\x3f\x25\xe0\x95\x3f\x15\xe0\x85\x46\xe0\x66\x4f"
        !          39582:             "\x16\xe0\x56\x50\x16\xe0\x37\x66\xe0\x28\x67\xe8\x87"
        !          39583:             "\xc9\x88\x94\x25\x99\x55\x34\xbe\x02\x45\xcd\x64\xe0"
        !          39584:             "\x19\x75\xe0\xe0\x34\xe0\xe0\x35\xe0\xe0\x34\xe0\xe0"
        !          39585:             "\x35\xe0\xe0\x34\xe0\x12\xe4\xe6\xb4\xea\x74\xe0\x1e"
        !          39586:             "\x05\xe0\x5e\x02\xe0\x9a\xe0\x60" }  },
        !          39587:       /* --- pixel bitmap for cmsy450 char#72 \calH --- */
        !          39588:       {  72, 6965,                      /* character number, location */
        !          39589:          43, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
        !          39590:           { 49,   46, 3,351, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          39591:             "\xe8\xe0\x93\xbd\xe0\x74\x9e\x01\xe0\x64\x95\x56\xe0"
        !          39592:             "\x55\x74\x95\xe0\x55\x64\xa5\xe0\x54\x64\xb5\xe0\x45"
        !          39593:             "\x54\xc5\xe0\x44\x55\xc5\xe0\x35\x54\xd4\xe0\x45\x44"
        !          39594:             "\xd5\xe0\x44\x52\xe0\x15\xe0\x35\xe0\x85\xe0\x35\xe0"
        !          39595:             "\x85\xe0\x34\xe0\x94\xe0\x35\xe0\x85\xe0\x35\xe0\x85"
        !          39596:             "\xe0\x34\x70\xf1\xe0\x25\xe0\x25\x70\xe0\x24\xe0\x34"
        !          39597:             "\x80\xf1\xe0\x15\xe0\x25\x80\xae\x0e\x03\xe0\x3e\x0e"
        !          39598:             "\x03\xe0\x3e\x0e\x04\xe0\x95\xe0\x25\xe0\x94\xe0\x35"
        !          39599:             "\xe0\x85\xe0\x34\xe0\x95\xe0\x25\xe0\x94\xe0\x35\xe0"
        !          39600:             "\x85\xe0\x35\xe0\x85\xe0\x34\xe0\x94\xe0\x35\xb0\xf1"
        !          39601:             "\xb5\xe0\x35\xb0\xb4\xe0\x45\xe0\x75\xe0\x44\xe0\x85"
        !          39602:             "\xe0\x35\xe0\x84\xe0\x45\xa2\x95\xe0\x45\x84\x95\xe0"
        !          39603:             "\x45\x74\xa4\xe0\x55\x65\x95\xe0\x56\x54\xa4\xe0\x6e"
        !          39604:             "\xa4\xe0\x7c\xc2\xe0\xa8\x80" }  },
        !          39605:       /* --- pixel bitmap for cmsy450 char#73 \calI --- */
        !          39606:       {  73, 7828,                      /* character number, location */
        !          39607:          43,-2,    0,-2,      /* topleft row,col, and botleft row,col */
        !          39608:           { 41,   43, 3,235, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          39609:             "\xe0\x3e\x0a\xde\x0d\xbe\x0e\x01\xb6\xa4\xe0\x54\xd4"
        !          39610:             "\xe0\x54\xd5\xe0\x44\xe4\xe0\x45\xd5\xe0\x44\xe5\xe0"
        !          39611:             "\x43\xe0\x14\xe0\xe0\x85\xe0\xe0\x84\xe0\x20\xf2\xe0"
        !          39612:             "\x65\xe0\x20\xe0\x64\xe0\x30\xf2\xe0\x55\xe0\x30\xe0"
        !          39613:             "\x54\xe0\x40\xf2\xe0\x45\xe0\x40\xe0\x44\xe0\x50\xf2"
        !          39614:             "\xe0\x35\xe0\x50\xe0\x34\xe0\x60\xf1\xe0\x25\xe0\x60"
        !          39615:             "\xe0\x24\xe0\x70\xf1\xe0\x15\xe0\x70\xe0\x14\xe0\xe0"
        !          39616:             "\x85\xe0\xe0\x84\xe0\x12\xe0\x55\xd4\xe0\x54\xd5\xe0"
        !          39617:             "\x44\xe4\xe0\x44\xe4\xae\x0e\x01\xbe\x0e\x01\xbe\x0d"
        !          39618:             "\xe5" }  },
        !          39619:       /* --- pixel bitmap for cmsy450 char#74 \calJ --- */
        !          39620:       {  74, 8628,                      /* character number, location */
        !          39621:          43, 3,   -7, 3,      /* topleft row,col, and botleft row,col */
        !          39622:           { 49,   50, 3,319, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          39623:             "\xe0\xe0\x2e\x05\xe0\xde\x08\xe0\xbe\x08\xe0\xb5\xb4"
        !          39624:             "\xe0\xe4\xc4\xe0\xd4\xd4\xe0\xd4\xd5\xe0\xc4\xe4\xe0"
        !          39625:             "\xc4\xe4\xe0\xc5\xd5\xe0\xc4\xe4\xe0\xc5\xd5\xe0\xc4"
        !          39626:             "\xe4\xe0\xc5\xd5\xe0\xc4\xe5\xe0\xe0\xe0\x24\xe0\xe0"
        !          39627:             "\xe0\x25\xe0\xe0\xe0\x24\xe0\xf1\xe0\xe0\x25\xe0\xe0"
        !          39628:             "\xe0\x24\xe0\x10\xf2\xe0\xe0\x15\xe0\x10\xe0\xe0\x14"
        !          39629:             "\xe0\x20\xf1\xe0\xe5\xe0\x20\xe0\xe4\xe0\x30\xf2\xe0"
        !          39630:             "\xd5\xe0\x30\xe0\xd4\xe0\x40\xf2\xe0\xc5\xe0\x40\x42"
        !          39631:             "\xe0\x64\xe0\x74\xe0\x55\xe0\x64\xe0\x64\xe0\x65\xe0"
        !          39632:             "\x55\xe0\x65\xe0\x54\xe0\x75\xe0\x45\xe0\x76\xe0\x34"
        !          39633:             "\xe0\x86\xe0\x24\xe0\x97\xe4\xe0\xb7\xc4\xe0\xc8\xa3"
        !          39634:             "\xe0\xe0\x1a\x54\xe0\xe0\x3e\x03\xe0\xe0\x5e\xe0\xe0"
        !          39635:             "\xa8\xe0\xe0\x60" }  },
        !          39636:       /* --- pixel bitmap for cmsy450 char#75 \calK --- */
        !          39637:       {  75, 9537,                      /* character number, location */
        !          39638:          44, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          39639:           { 44,   45, 3,305, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          39640:             "\xd3\xe0\x84\xd5\xe0\x58\xa7\xe0\x3b\x78\xe0\x25\x35"
        !          39641:             "\x69\xe4\x74\xa5\xd3\x93\xb5\xb4\xa1\xd5\xa3\xe0\xc5"
        !          39642:             "\x84\xe0\xd5\x73\xe0\xe0\x15\x54\xe0\xe0\x24\x53\xe0"
        !          39643:             "\xe0\x35\x43\xe0\xe0\x45\x33\xe0\xe0\x55\x23\xe0\xe0"
        !          39644:             "\x65\x13\xe0\xe0\x74\x13\xe0\xe0\x75\x13\xe0\xd0\xf1"
        !          39645:             "\x89\xe0\xd0\x84\x14\xe0\xd0\xf1\x75\x15\xe0\xc0\x75"
        !          39646:             "\x24\xe0\xe0\x54\x35\xe0\xe0\x35\x35\xe0\xe0\x35\x45"
        !          39647:             "\xe0\xe0\x24\x55\xe0\xa0\xf1\x55\x65\xe0\x90\x55\x75"
        !          39648:             "\xe0\xd4\x85\xe0\x80\xf1\x45\x95\xe0\x70\x44\xb5\xe0"
        !          39649:             "\x95\xb6\xe0\x32\x35\xc6\xe3\x44\xe5\xe3\x35\xe0\x15"
        !          39650:             "\xc4\x34\xe0\x26\xb3\x35\xe0\x36\x93\x45\xe0\x46\x55"
        !          39651:             "\x54\xe0\x6d\x64\xe0\x8a\x83\xe0\xa6\xb0" }  },
        !          39652:       /* --- pixel bitmap for cmsy450 char#76 \calL --- */
        !          39653:       {  76,10429,                      /* character number, location */
        !          39654:          44, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          39655:           { 39,   45, 3,217, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          39656:             "\xe0\xe6\xe0\xe0\x2a\xe0\xdd\xe0\xbe\xe0\x94\x58\xe0"
        !          39657:             "\x74\x77\xe0\x64\x87\xe0\x54\xa5\xe0\x55\xa5\xe0\x54"
        !          39658:             "\xb4\xe0\x55\xa4\xe0\x64\xe0\xe0\x65\xe0\xe0\x64\xe0"
        !          39659:             "\x70\xf1\xd5\xe0\x70\xf2\xc5\xe0\x80\xf2\xb5\xe0\x90"
        !          39660:             "\xf2\xa5\xe0\xa0\x96\xe0\xa0\xf2\x95\xe0\xb0\x86\xe0"
        !          39661:             "\xb0\xf1\x85\xe0\xc0\x84\xe0\xe0\x65\xe0\xe0\x64\xe0"
        !          39662:             "\xe0\x65\xe0\xb3\x64\xe0\xa4\x6b\xe0\x35\x6e\x01\xd5"
        !          39663:             "\x5e\x05\x95\x5e\x09\x64\x55\x4e\x0a\x55\x9e\x04\x73"
        !          39664:             "\xee\x73\xe0\x48\xa0" }  },
        !          39665:       /* --- pixel bitmap for cmsy450 char#77 \calM --- */
        !          39666:       {  77,11622,                      /* character number, location */
        !          39667:          44, 2,   -3, 2,      /* topleft row,col, and botleft row,col */
        !          39668:           { 68,   47, 3,517, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          39669:             "\xe0\x83\xe0\xe0\xd1\xe0\x84\xe0\xe0\xc2\xe0\x84\xe0"
        !          39670:             "\xe0\xb3\xe0\x75\xe0\xe0\xb3\xe0\x76\xe0\xe0\x94\xe0"
        !          39671:             "\x76\xe0\xe0\x84\xe0\x86\xe0\xe0\x75\x20\xf1\xe0\x66"
        !          39672:             "\xe0\xe0\x66\x20\xe0\x58\xe0\xe0\x47\xe0\x78\xe0\xe0"
        !          39673:             "\x37\xe0\x82\x15\xe0\xe0\x28\xe0\x82\x24\xe0\xe0\x19"
        !          39674:             "\xe0\x82\x24\xe0\xe4\x15\xe0\x73\x25\xe0\xc4\x25\xe0"
        !          39675:             "\x72\x35\xe0\xc3\x34\xe0\x82\x35\xe0\xb3\x35\xe0\x82"
        !          39676:             "\x44\xe0\xa3\x45\xe0\x73\x45\xe0\x84\x45\xe0\x72\x55"
        !          39677:             "\xe0\x74\x55\xe0\x72\x55\xe0\x64\x65\xe0\x72\x64\xe0"
        !          39678:             "\x63\x74\xe0\x72\x75\xe0\x43\x75\xe0\x72\x75\xe0\x33"
        !          39679:             "\x85\xe0\x72\x75\xe0\x24\x85\xe0\x62\x95\xe4\x95\xe0"
        !          39680:             "\x62\x95\xd4\xa5\xe0\x62\x95\xc4\xb5\xe0\x52\xb5\xa4"
        !          39681:             "\xc5\xe0\x52\xb5\x94\xd4\xe0\x62\xb5\x93\xd5\xe0\x52"
        !          39682:             "\xd5\x73\xe5\xe0\x52\xd5\x63\xe0\x15\xe0\x43\xd5\x54"
        !          39683:             "\xe0\x15\xe0\x42\xe0\x15\x34\xe0\x25\xe0\x42\xe0\x15"
        !          39684:             "\x24\xe0\x35\xe0\x32\xe0\x2a\xe0\x45\xe0\x32\xe0\x38"
        !          39685:             "\xe0\x55\xe0\x23\xe0\x37\xe0\x65\x72\x63\xe0\x55\xe0"
        !          39686:             "\x75\x65\x43\xe0\x63\xe0\x85\x6b\xe0\x72\xe0\x96\x3c"
        !          39687:             "\xe0\xe0\xe0\x5e\x07\xe0\xe0\xe0\x59\x29\xe0\xe0\xe0"
        !          39688:             "\x76\x57\xe0\xe0\xe0\xe0\x74\xe0\xe0\xe0\xe0\x50" }  },
        !          39689:       /* --- pixel bitmap for cmsy450 char#78 \calN --- */
        !          39690:       {  78,12811,                      /* character number, location */
        !          39691:          49,-2,   -3,-2,      /* topleft row,col, and botleft row,col */
        !          39692:           { 63,   52, 3,505, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          39693:             "\xe0\xe0\xe0\xe0\x16\xe0\xe0\xe0\xd8\xe0\xe0\xe0\xb9"
        !          39694:             "\xe0\xe0\xe0\xba\xe0\xe0\xe0\xab\xe0\x83\xe0\xcb\xe0"
        !          39695:             "\x84\xe0\xc5\xe0\xd5\xe0\xc3\xe0\xe0\x15\xe0\xb2\xc0"
        !          39696:             "\xf1\xe0\x56\xe0\xa2\xc0\xe0\x56\xe0\x92\xd0\xf1\xe0"
        !          39697:             "\x57\xe0\x82\xd0\xe0\x48\xe0\x72\xe0\xe0\x43\x15\xe0"
        !          39698:             "\x62\xe0\xe0\x42\x25\xe0\x62\xe0\xe0\x42\x25\xe0\x53"
        !          39699:             "\xe0\xe0\x42\x35\xe0\x42\xe0\x10\xf1\xe0\x33\x35\xe0"
        !          39700:             "\x42\xe0\x10\xe0\x32\x55\xe0\x23\xe0\xe0\x42\x55\xe0"
        !          39701:             "\x22\xe0\xe0\x52\x56\xe0\x12\xe0\xe0\x43\x65\xe0\x12"
        !          39702:             "\xe0\xe0\x42\x75\xe3\xe0\x20\xf1\xe0\x22\x85\xd2\xe0"
        !          39703:             "\x30\xe0\x13\x85\xd2\xe0\x30\xf1\xe0\x12\xa5\xb2\xe0"
        !          39704:             "\x40\xe0\x12\xa6\xa2\xe0\xe0\x42\xc5\x93\xe0\xe0\x42"
        !          39705:             "\xc5\x92\xe0\xe0\x52\xd5\x82\xe0\xe0\x42\xe5\x82\xe0"
        !          39706:             "\xe0\x42\xe6\x63\xe0\xe0\x42\xe0\x15\x63\xe0\xe0\x32"
        !          39707:             "\xe0\x26\x52\xe0\xe0\x42\xe0\x35\x52\xe0\xe0\x42\xe0"
        !          39708:             "\x36\x42\xe0\xe0\x32\xe0\x55\x33\xe0\xe0\x32\xe0\x56"
        !          39709:             "\x22\xe0\xe0\x33\xe0\x65\x22\xe0\x92\x62\xe0\x76\x12"
        !          39710:             "\xe0\x84\x43\xe0\x88\xe0\x8a\xe0\x97\xe0\x8b\xe0\xa6"
        !          39711:             "\xe0\x8a\xe0\xc5\xe0\x98\xe0\xd4\xe0\xb6\xe0\xe0\xe0"
        !          39712:             "\xe0\x24\xe0\xe0\xe0\xe0" }  },
        !          39713:       /* --- pixel bitmap for cmsy450 char#79 \calO --- */
        !          39714:       {  79,13826,                      /* character number, location */
        !          39715:          44, 4,   -1, 4,      /* topleft row,col, and botleft row,col */
        !          39716:           { 45,   45, 3,325, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          39717:             "\xe0\x43\x98\xe0\xa4\x6d\xe0\x64\x6e\x02\xe0\x44\x64"
        !          39718:             "\x59\xe0\x14\x64\x98\xd4\x64\xb7\xc4\x64\xd7\xa4\x64"
        !          39719:             "\xe0\x16\x94\x65\xe0\x16\x84\x74\xe0\x36\x64\x74\xe0"
        !          39720:             "\x46\x55\x65\xe0\x46\x54\x74\xe0\x65\x45\x65\xe0\x65"
        !          39721:             "\x44\x74\xe0\x75\x34\x83\xe0\x85\xf1\x25\xe0\xe0\x55"
        !          39722:             "\x24\xe0\xe0\x65\x15\xe0\xe0\x65\x15\xe0\xe0\x64\x25"
        !          39723:             "\xe0\xe0\x55\x24\xe0\xe0\x65\x15\xe0\xe0\x65\x15\xe0"
        !          39724:             "\xe0\x64\x25\xe0\xe0\x55\x25\xe0\xe0\x54\x35\xe0\xe0"
        !          39725:             "\x45\x35\xe0\xe0\x44\x45\xe0\xe0\x35\x46\xe0\xe0\x24"
        !          39726:             "\x56\xe0\xe0\x14\x66\xe0\xe5\x76\xe0\xd4\x86\xe0\xc4"
        !          39727:             "\x97\xe0\xa4\xb6\xe0\x94\xc7\xe0\x74\xe7\xe0\x53\xe0"
        !          39728:             "\x28\xe0\x24\xe0\x49\xc5\xe0\x6b\x66\xe0\x9e\x06\xe0"
        !          39729:             "\xde\x02\xe0\xe0\x49\xe0\xb2" }  },
        !          39730:       /* --- pixel bitmap for cmsy450 char#80 \calP --- */
        !          39731:       {  80,14757,                      /* character number, location */
        !          39732:          43, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
        !          39733:           { 45,   46, 3,311, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          39734:             "\xe0\x1e\x06\xe0\x7e\x0d\xe0\x2e\x0e\x03\xc6\x35\x9c"
        !          39735:             "\x94\x65\xca\x64\x85\xe9\x44\x95\xe0\x27\x34\xa5\xe0"
        !          39736:             "\x37\x15\xa5\xe0\x46\x14\xb4\xe0\x5a\xb5\xe0\x67\xd5"
        !          39737:             "\xe0\x65\xf1\xe0\x15\xe0\x65\xe0\x15\xe0\x64\xe0\x24"
        !          39738:             "\xe0\x65\xe0\x15\xe0\x64\xe0\x25\xe0\x54\xe0\x35\xe0"
        !          39739:             "\x45\xe0\x34\xe0\x54\xe0\x35\xe0\x44\xe0\x45\xe0\x34"
        !          39740:             "\xe0\x55\xe0\x24\xe0\x64\xe0\x23\xe0\x75\xe4\xe0\x85"
        !          39741:             "\xc5\xe0\x95\x96\xe0\xb4\x3b\xe0\xc5\x29\xe0\xe0\x15"
        !          39742:             "\x17\xe0\xe0\x44\xe0\xe0\x20\xf1\xa5\xe0\xe0\x20\xa4"
        !          39743:             "\xe0\xe0\x30\xf1\x95\xe0\xe0\x30\x94\xe0\xe0\x40\xf1"
        !          39744:             "\x85\xe0\xe0\x40\x84\xe0\xe0\x50\xf1\x75\xe0\xe0\x50"
        !          39745:             "\x74\xe0\xe0\xc5\xe0\xe0\xc3\xe0\xe0\xe1\xe0\xe0\xa0" }  },
        !          39746:       /* --- pixel bitmap for cmsy450 char#81 \calQ --- */
        !          39747:       {  81,15738,                      /* character number, location */
        !          39748:          44, 7,   -7, 7,      /* topleft row,col, and botleft row,col */
        !          39749:           { 42,   51, 3,327, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          39750:             "\xe0\x8a\xe0\xe0\x1e\x01\xe0\xae\x06\xe0\x75\x7a\xe0"
        !          39751:             "\x44\xc9\xe0\x24\xe0\x18\xd4\xe0\x47\xc4\xe0\x67\xa4"
        !          39752:             "\xe0\x86\x94\xe0\x96\x84\xe0\xb6\x65\xe0\xb6\x64\xe0"
        !          39753:             "\xc6\x54\xe0\xe5\x45\xe0\xe5\x44\xe0\xe0\x15\x35\xe0"
        !          39754:             "\xe0\x15\x34\xe0\xe0\x25\x10\xf1\x15\xe0\xe0\x25\x10"
        !          39755:             "\x14\xe0\xe0\x35\x15\xe0\xe0\x34\x2f\x15\xe0\xe0\x25"
        !          39756:             "\x25\xe0\xe0\x24\x3f\x15\xe0\xe0\x15\x35\xe0\xe0\x14"
        !          39757:             "\x46\xe0\xd5\x46\xe0\xd4\x57\xe0\xb4\x76\xe0\xa5\x77"
        !          39758:             "\xd3\x74\x97\xa4\x74\xaa\x55\x74\xce\x03\x84\xee\x94"
        !          39759:             "\xe0\x48\xb4\xe0\xe0\x84\xe0\xe0\x94\xe0\xe0\x75\xe0"
        !          39760:             "\xe0\x58\xe0\x8e\x03\xe0\x52\x2e\x02\xe0\x64\x2e\x03"
        !          39761:             "\xe0\x44\x8e\x01\xe5\xce\xb4\xe0\x2e\x01\x64\xe0\x6e"
        !          39762:             "\x06\xe0\xbe\x02\xe0\xe0\x29\x90" }  },
        !          39763:       /* --- pixel bitmap for cmsy450 char#82 \calR --- */
        !          39764:       {  82,16741,                      /* character number, location */
        !          39765:          43, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
        !          39766:           { 51,   44, 3,327, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          39767:             "\xe0\x1e\x06\xe0\xde\x0e\xe0\x7e\x0e\x04\xe0\x36\x35"
        !          39768:             "\x9c\xe0\x14\x65\xd9\xc4\x85\xe0\x17\xb4\x95\xe0\x27"
        !          39769:             "\x94\xa5\xe0\x36\x85\xa5\xe0\x36\x84\xb4\xe0\x55\x74"
        !          39770:             "\xb5\xe0\x55\x72\xd5\xe0\x55\xe0\x85\xe0\x54\xe0\x95"
        !          39771:             "\xe0\x45\xe0\x95\xe0\x44\xe0\xa4\xe0\x45\xe0\x95\xe0"
        !          39772:             "\x44\xe0\xa5\xe0\x34\xe0\xb5\xe0\x24\xe0\xc4\xe0\x24"
        !          39773:             "\xe0\xc5\xe0\x14\xe0\xd5\xd4\xe0\xe0\x15\xa6\xe0\xe0"
        !          39774:             "\x24\x69\xe0\xe0\x35\x48\xe0\xe0\x65\x49\xe0\xe0\x55"
        !          39775:             "\x67\xe0\xe0\x54\x87\xe0\x60\xf1\xb5\x97\xe0\x50\xb4"
        !          39776:             "\xb6\xe0\x50\xf1\xa5\xc6\xe0\x40\xa4\xd7\xe0\xc5\xe6"
        !          39777:             "\xe0\xc5\xe7\xd3\x94\xe0\x26\xb4\x95\xe0\x27\x95\x95"
        !          39778:             "\xe0\x36\x94\xa4\xe0\x47\x74\xa5\xe0\x57\x45\xb4\xe0"
        !          39779:             "\x6e\xc4\xe0\x8b\xe3\xe0\xa7\xb0" }  },
        !          39780:       /* --- pixel bitmap for cmsy450 char#83 \calS --- */
        !          39781:       {  83,17665,                      /* character number, location */
        !          39782:          44, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          39783:           { 38,   45, 3,253, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          39784:             "\xe0\x9a\xe0\xae\x02\xe0\x6e\x06\xe0\x35\x7a\xe4\xc8"
        !          39785:             "\xd4\xe0\x16\xc4\xe0\x35\xb5\xe0\x35\xb4\xe0\x45\xa5"
        !          39786:             "\xe0\x44\xb5\xe0\x43\x20\xf1\xa5\xe0\x90\xf1\xa6\xe0"
        !          39787:             "\x80\xa7\xe0\xe0\x47\xe0\xe0\x39\xe0\xe0\x2a\xe0\xe0"
        !          39788:             "\x1b\xe0\xe0\x1b\xe0\xe0\x1b\xe0\xe0\x1b\xe0\xe0\x1a"
        !          39789:             "\xe0\xe0\x29\xe0\xe0\x38\xe0\xe0\x37\xa3\xe0\x57\x75"
        !          39790:             "\xe0\x66\x64\xe0\x86\x55\xe0\x95\x54\xe0\xa5\x45\xe0"
        !          39791:             "\xa5\x45\xe0\xa4\x55\xe0\x95\x56\xe0\x85\x56\xe0\x84"
        !          39792:             "\x67\xe0\x64\x87\xe0\x44\x98\xe0\x24\xb9\xc4\xea\x76"
        !          39793:             "\xe0\x2e\x06\xe0\x6e\x01\xe0\xba\xe0\x67" }  },
        !          39794:       /* --- pixel bitmap for cmsy450 char#84 \calT --- */
        !          39795:       {  84,18469,                      /* character number, location */
        !          39796:          45, 2,   -4, 2,      /* topleft row,col, and botleft row,col */
        !          39797:           { 50,   49, 2,139, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          39798:             "\x2f\x03\x2e\x04\x0c\x25\x0a\x27\x09\x27\x0a\x25\x0b"
        !          39799:             "\x04\x10\x04\x19\x04\x10\x05\x18\x04\x11\x05\x17\x05"
        !          39800:             "\x10\x06\x17\x05\x10\x05\x17\x06\x10\x05\x17\x05\x11"
        !          39801:             "\x05\x17\x04\x11\x06\x17\x02\x13\x05\x18\x00\xff\x01"
        !          39802:             "\x15\x05\x18\x00\x14\x06\x18\x00\xff\x02\x14\x05\x19"
        !          39803:             "\x00\x13\x06\x19\x00\xff\x02\x13\x05\x1a\x00\x12\x06"
        !          39804:             "\x1a\x00\xff\x02\x12\x05\x1b\x00\x11\x06\x1b\x00\xff"
        !          39805:             "\x02\x11\x05\x1c\x00\xff\x02\x10\x05\x1d\x00\x0f\x06"
        !          39806:             "\x1d\x00\xff\x02\x0f\x05\x1e\x00\xff\x01\x0e\x05\x1f"
        !          39807:             "\x00\x0e\x04\x20\x00\xff\x01\x0d\x05\x20\x00\xff\x01"
        !          39808:             "\x0c\x05\x21\x00\x0c\x03\x2e\x03\x24" }  },
        !          39809:       /* --- pixel bitmap for cmsy450 char#85 \calU --- */
        !          39810:       {  85,19279,                      /* character number, location */
        !          39811:          43,-1,   -1,-1,      /* topleft row,col, and botleft row,col */
        !          39812:           { 44,   44, 3,287, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          39813:             "\x96\xe0\xc3\x6a\xe0\xa4\x4c\xe0\x95\x34\x36\xe0\x95"
        !          39814:             "\x23\x65\xe0\x85\x10\xf1\xb5\xe0\x85\x10\xb4\xe0\x85"
        !          39815:             "\xc5\xe0\x85\xc4\xe0\x94\x30\xf1\x95\xe0\x85\x30\x94"
        !          39816:             "\xe0\x85\xc5\xe0\x85\xc4\xe0\x86\xb5\xe0\x86\xb4\xe0"
        !          39817:             "\x86\xb5\xe0\x86\xb5\xe0\x77\xb4\xe0\x77\xb5\xe0\x77"
        !          39818:             "\xb4\xe0\x78\xa5\xe0\x69\xa4\xe0\x78\xa5\xe0\x69\xa4"
        !          39819:             "\xe0\x6a\x95\xe0\x64\x14\xa5\xe0\x54\x15\xa4\xe0\x54"
        !          39820:             "\x25\x95\xe0\x45\x25\x95\xe0\x44\x34\xa4\xe0\x44\x35"
        !          39821:             "\x95\xe0\x34\x45\x95\xe0\x24\x55\x95\xe0\x14\x65\x95"
        !          39822:             "\xe4\x74\xa5\xd4\x75\xa6\xb4\x85\xa6\xa3\xa5\xa7\x74"
        !          39823:             "\xb5\xb7\x45\xc6\x21\x7e\xe9\x8b\xe0\x28\xa7\xe0\x65"
        !          39824:             "\x90" }  },
        !          39825:       /* --- pixel bitmap for cmsy450 char#86 \calV --- */
        !          39826:       {  86,20170,                      /* character number, location */
        !          39827:          43, 2,   -3, 2,      /* topleft row,col, and botleft row,col */
        !          39828:           { 39,   46, 3,277, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          39829:             "\x25\xe0\xb4\x48\xe0\x86\x2a\xe0\x77\x48\xe0\x67\x67"
        !          39830:             "\xe0\x49\x66\xe0\x49\x76\xe0\x75\x85\xe0\x84\x85\xe0"
        !          39831:             "\x93\xf1\x95\xe0\x83\x95\xe0\x82\x10\xf1\xa4\xe0\x82"
        !          39832:             "\x10\xf1\xa5\xe0\x62\x20\xa5\xe0\x53\xd4\xe0\x52\xe4"
        !          39833:             "\xe0\x43\x30\xf1\xb4\xe0\x33\x40\xb4\xe0\x23\xe0\x24"
        !          39834:             "\xe0\x13\xe0\x34\xe4\xe0\x34\xd4\xe0\x44\xd3\xe0\x54"
        !          39835:             "\xc3\xe0\x64\xb3\xe0\x74\xa4\xe0\x74\x94\xe0\x84\x84"
        !          39836:             "\xe0\x94\x74\xe0\xa3\x74\xe0\xa4\x64\xe0\xb4\x54\xe0"
        !          39837:             "\xc4\x35\xe0\xd4\x25\xe0\xe4\x15\xe0\xe0\x19\xe0\xe0"
        !          39838:             "\x28\xe0\xe0\x37\xe0\xe0\x36\xe0\xe0\x55\xe0\xe0\x64"
        !          39839:             "\xe0\xe0\x73\xe0\xe0\x81\xe0\xe0\x10" }  },
        !          39840:       /* --- pixel bitmap for cmsy450 char#87 \calW --- */
        !          39841:       {  87,21307,                      /* character number, location */
        !          39842:          43, 2,   -3, 2,      /* topleft row,col, and botleft row,col */
        !          39843:           { 62,   46, 3,471, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          39844:             "\x25\xe0\xd3\xe0\x62\x48\xe0\xa4\xe0\x54\x2a\xe0\x94"
        !          39845:             "\xe0\x46\x48\xe0\x85\xe0\x36\x66\xe0\x76\xe0\x37\x66"
        !          39846:             "\xe0\x66\xe0\x37\x75\xe0\x58\xe0\x45\x76\xe0\x42\x15"
        !          39847:             "\xe0\x54\x85\xe0\x33\x15\xe0\x63\x85\xe0\x32\x34\xe0"
        !          39848:             "\x63\x94\xe0\x23\x34\xe0\x63\xf1\x95\xe3\x45\xe0\x52"
        !          39849:             "\x10\x95\xd3\x55\xe0\x52\xb4\xd2\x74\xe0\x42\xc4\xc3"
        !          39850:             "\x75\xe0\x32\xc4\xc2\x85\xe0\x23\xc4\xb3\x85\xe0\x22"
        !          39851:             "\xd4\xa3\xa4\xe0\x13\xd4\xa3\xa4\xe0\x12\xe4\x93\xb4"
        !          39852:             "\xe3\xe4\x83\xc5\xd2\xe0\x14\x83\xc5\xc3\xe0\x14\x73"
        !          39853:             "\xd5\xb3\xe0\x24\x63\xe0\x14\xb3\xe0\x24\x63\xe0\x14"
        !          39854:             "\xa3\xe0\x34\x53\xe0\x24\xa2\xe0\x43\x53\xe0\x34\x93"
        !          39855:             "\xe0\x34\x53\xe0\x34\x83\xe0\x44\x43\xe0\x44\x74\xe0"
        !          39856:             "\x44\x33\xe0\x55\x63\xe0\x54\x24\xe0\x55\x53\xe0\x64"
        !          39857:             "\x23\xe0\x65\x43\xe0\x74\x13\xe0\x84\x43\xe0\x77\xe0"
        !          39858:             "\x94\x33\xe0\x87\xe0\x94\x23\xe0\x87\xe0\xa4\x14\xe0"
        !          39859:             "\x86\xe0\xb8\xe0\x95\xe0\xc7\xe0\xa5\xe0\xc6\xe0\xb4"
        !          39860:             "\xe0\xd5\xe0\xc3\xe0\xe5\xe0\xb3\xe0\xe0\x14\xe0\xc2"
        !          39861:             "\xe0\xe0\x23\xe0\xd2\xe0\xe0\x22\xe0\xe1\xe0\xe0\x31"
        !          39862:             "\xe0\x8a" }  },
        !          39863:       /* --- pixel bitmap for cmsy450 char#88 \calX --- */
        !          39864:       {  88,22354,                      /* character number, location */
        !          39865:          43, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          39866:           { 47,   43, 3,307, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          39867:             "\xe0\x46\xe0\x44\xe0\x39\xe0\x26\xec\xe7\xd4\x27\xe0"
        !          39868:             "\x16\xc4\x46\xe0\x25\xc3\x65\xe0\x25\xe0\x76\xe0\x15"
        !          39869:             "\xe0\x76\xe0\x14\xe0\x86\xe4\xe0\xa5\xd4\xe0\xb5\xc4"
        !          39870:             "\xe0\xc5\xa4\xe0\xe5\x94\xe0\xe0\x15\x74\xe0\xe0\x35"
        !          39871:             "\x64\xe0\xe0\x46\x34\xe0\xe0\x66\x24\xe0\xe0\x7a\xe0"
        !          39872:             "\xe0\xa8\xe0\xe0\xb6\xe0\xe0\xd5\xe0\xe0\xc7\xe0\xe0"
        !          39873:             "\xb8\xe0\xe0\x94\x15\xe0\xe0\x75\x25\xe0\xe0\x64\x46"
        !          39874:             "\xe0\xe0\x34\x66\xe0\xe0\x24\x76\xe0\xe4\xa5\xe0\xd4"
        !          39875:             "\xb5\xe0\xb4\xd5\xe0\xa4\xe5\xe0\x84\xe0\x25\xe0\x74"
        !          39876:             "\xe0\x35\xe0\x64\xe0\x45\xe0\x54\xe0\x56\xe0\x35\xe0"
        !          39877:             "\x56\xe0\x35\xe0\x56\x63\x85\xe0\x66\x35\x86\xe0\x57"
        !          39878:             "\x24\x98\xe0\x3c\xa7\xe0\x59\xd5\xe0\x76\xe4" }  },
        !          39879:       /* --- pixel bitmap for cmsy450 char#89 \calY --- */
        !          39880:       {  89,23205,                      /* character number, location */
        !          39881:          43, 2,   -8, 2,      /* topleft row,col, and botleft row,col */
        !          39882:           { 43,   51, 3,339, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          39883:             "\x77\xe0\x84\x8b\xe0\x56\x6d\xe0\x47\x43\x48\xe0\x37"
        !          39884:             "\x33\x77\xe0\x28\xd6\xe0\x46\xe6\xe0\x45\xf1\xe0\x15"
        !          39885:             "\xe0\x54\xe0\x25\xe0\x53\xf1\xe0\x25\xe0\x52\x10\xe0"
        !          39886:             "\x35\xe0\x42\xe0\x45\xe0\x33\xe0\x45\xe0\x32\xe0\x64"
        !          39887:             "\xe0\x32\xe0\x64\xe0\x23\xe0\x64\xe0\x22\xe0\x75\xe3"
        !          39888:             "\xe0\x75\xe2\xe0\x85\xd3\xe0\x94\xd2\xe0\xa4\xc3\xe0"
        !          39889:             "\xa4\xc2\xe0\xb4\xb3\xe0\xb4\xa3\xe0\xc4\xa2\xe0\xd4"
        !          39890:             "\x93\xe0\xd4\x83\x90\xf1\xe0\x54\x73\xa0\xe0\x54\x63"
        !          39891:             "\xe0\xe0\x24\x53\xe0\xe0\x34\x43\xe0\xe0\x44\x34\xe0"
        !          39892:             "\xe0\x44\x24\xe0\xe0\x54\x14\xe0\xe0\x68\xe0\xe0\x77"
        !          39893:             "\xe0\xe0\x86\xe0\x61\xe0\x25\xe0\x63\xe5\xe0\x73\xd5"
        !          39894:             "\xe0\x84\xb5\xe0\x86\x86\xe0\x98\x46\xe0\xce\x02\xe0"
        !          39895:             "\xde\x01\xe0\xe0\x1c\xe0\xe0\x49\xe0\xe0\x85\xe0\xe0"
        !          39896:             "\x53" }  },
        !          39897:       /* --- pixel bitmap for cmsy450 char#90 \calZ --- */
        !          39898:       {  90,24207,                      /* character number, location */
        !          39899:          43, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          39900:           { 45,   43, 2,131, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          39901:             "\x17\x08\x0c\x02\x13\x11\x05\x04\x11\x1b\x11\x1b\x10"
        !          39902:             "\x04\x08\x10\x10\x04\x0e\x0a\x10\x04\x14\x04\x10\x04"
        !          39903:             "\x14\x05\x0f\x05\x14\x04\x10\x04\x14\x04\x10\x03\x15"
        !          39904:             "\x04\x28\x04\x28\x04\x28\x04\x28\x04\x28\x04\x28\x04"
        !          39905:             "\x28\x04\x20\x10\x1c\x12\x1a\x13\x21\x04\x04\x04\x20"
        !          39906:             "\x04\x06\x01\x21\x04\x28\x04\x28\x04\x28\x04\x28\x04"
        !          39907:             "\x28\x04\x28\x03\x28\x04\x17\x02\x0f\x04\x16\x04\x0e"
        !          39908:             "\x04\x16\x05\x0d\x04\x16\x05\x0d\x04\x17\x05\x0c\x04"
        !          39909:             "\x18\x04\x0c\x04\x18\x05\x0b\x0d\x10\x04\x0a\x16\x08"
        !          39910:             "\x04\x0a\x22\x0a\x21\x0b\x04\x09\x14\x0c\x02\x12\x0a"
        !          39911:             "\x0f" }  },
        !          39912:       /* --- pixel bitmap for cmsy450 char#91 \cup --- */
        !          39913:       {  91,28290,                      /* character number, location */
        !          39914:          38, 4,   -1, 4,      /* topleft row,col, and botleft row,col */
        !          39915:           { 34,   39, 3,81, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          39916:             "\x12\xe0\xe0\x12\x0f\xe3\xe0\xe3\x0f\xb3\xe0\xe3\x04"
        !          39917:             "\xe0\xc4\xf1\x13\xe0\xc3\x10\x14\xe0\xa4\x34\xe0\x84"
        !          39918:             "\x55\xe0\x45\x76\xe6\x98\x88\xce\x06\xe0\x2e\x02\xe0"
        !          39919:             "\x7a\xc0" }  },
        !          39920:       /* --- pixel bitmap for cmsy450 char#92 \cap --- */
        !          39921:       {  92,29071,                      /* character number, location */
        !          39922:          38, 4,   -1, 4,      /* topleft row,col, and botleft row,col */
        !          39923:           { 34,   39, 3,80, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          39924:             "\xca\xe0\x7e\x02\xe0\x2e\x06\xc8\x88\x96\xe6\x75\xe0"
        !          39925:             "\x45\x54\xe0\x84\x34\xe0\xa4\x10\xf1\x13\xe0\xc3\x14"
        !          39926:             "\xe0\xc4\x0f\xe3\xe0\xe3\x0f\xb3\xe0\xe3\x12\xe0\xe0"
        !          39927:             "\x12" }  },
        !          39928:       /* --- pixel bitmap for cmsy450 char#93 \uplus --- */
        !          39929:       {  93,90227,                      /* character number, location */
        !          39930:          38, 4,   -1, 4,      /* topleft row,col, and botleft row,col */
        !          39931:           { 34,   39, 3,115, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          39932:             "\x12\xe0\xe0\x12\x0f\x53\xe0\xe3\x03\xe1\xd3\x0f\x83"
        !          39933:             "\xd3\xc3\x03\x4e\x06\x46\x3e\x08\x36\x4e\x06\x43\x0f"
        !          39934:             "\x73\xd3\xc3\x04\xc3\xb4\xf1\x13\xe0\xc3\x10\x14\xe0"
        !          39935:             "\xa4\x34\xe0\x84\x55\xe0\x45\x76\xe6\x98\x88\xce\x06"
        !          39936:             "\xe0\x2e\x02\xe0\x7a\xc5" }  },
        !          39937:       /* --- pixel bitmap for cmsy450 char#94 \wedge --- */
        !          39938:       {  94,29835,                      /* character number, location */
        !          39939:          38, 4,   -1, 4,      /* topleft row,col, and botleft row,col */
        !          39940:           { 34,   39, 3,204, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          39941:             "\xe0\x22\xe0\x20\xf1\xe0\x14\xe0\x10\xf2\xe6\xe0\xd8"
        !          39942:             "\xe0\xc3\x23\xe0\xb4\x24\xe0\xa3\x43\xe0\x94\x44\xb0"
        !          39943:             "\xf1\xb3\x63\xb0\xa4\x64\xe0\x63\x83\xe0\x54\x84\xe0"
        !          39944:             "\x43\xa3\xe0\x34\xa4\x80\xf1\x83\xc3\x80\x74\xc4\xe3"
        !          39945:             "\xe3\xd4\xe4\xc3\xe0\x23\xb4\xe0\x24\x50\xf1\x53\xe0"
        !          39946:             "\x43\x50\x44\xe0\x44\x83\xe0\x63\x74\xe0\x64\x63\xe0"
        !          39947:             "\x83\x54\xe0\x84\x20\xf1\x23\xe0\xa3\x20\x14\xe0\xa4"
        !          39948:             "\x23\xe0\xc3\x14\xe0\xc7\xe0\xe6\xe0\xe0\x12" }  },
        !          39949:       /* --- pixel bitmap for cmsy450 char#95 \vee --- */
        !          39950:       {  95,30591,                      /* character number, location */
        !          39951:          38, 4,   -1, 4,      /* topleft row,col, and botleft row,col */
        !          39952:           { 34,   39, 3,205, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          39953:             "\x03\xe0\xe0\x15\xe0\xe7\xe0\xc4\x13\xe0\xc3\x24\xe0"
        !          39954:             "\xa4\x10\xf1\x23\xe0\xa3\x20\x24\xe0\x84\x53\xe0\x83"
        !          39955:             "\x64\xe0\x64\x73\xe0\x63\x84\xe0\x44\x40\xf1\x53\xe0"
        !          39956:             "\x43\x50\x54\xe0\x24\xb3\xe0\x23\xc4\xe4\xd3\xe3\xe4"
        !          39957:             "\xc4\x70\xf1\x83\xc3\x80\x84\xa4\xe0\x33\xa3\xe0\x44"
        !          39958:             "\x84\xe0\x53\x83\xe0\x64\x64\xa0\xf1\xb3\x63\xb0\xb4"
        !          39959:             "\x44\xe0\x93\x43\xe0\xa4\x24\xe0\xb3\x23\xe0\xc8\xd0"
        !          39960:             "\xf2\xe6\xe0\xf1\xe0\x14\xe0\x10\xe0\x22\xe0\x23" }  },
        !          39961:       /* --- pixel bitmap for cmsy450 char#96 \vdash --- */
        !          39962:       {  96,91004,                      /* character number, location */
        !          39963:          43, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          39964:           { 32,   43, 2,19, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          39965:             "\x01\x02\x1d\xff\x12\x03\x1d\xff\x02\x20\x00\xff\x12"
        !          39966:             "\x03\x1d\x00\x01\x02\x1d" }  },
        !          39967:       /* --- pixel bitmap for cmsy450 char#97 \dashv --- */
        !          39968:       {  97,91674,                      /* character number, location */
        !          39969:          43, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          39970:           { 32,   43, 2,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          39971:             "\x1e\x02\xff\x12\x1d\x03\x01\x3f\x01\x1f\xff\x12\x1d"
        !          39972:             "\x03\x1e\x02" }  },
        !          39973:       /* --- pixel bitmap for cmsy450 char#98 \lfloor --- */
        !          39974:       {  98,92254,                      /* character number, location */
        !          39975:          47,11,  -16,11,      /* topleft row,col, and botleft row,col */
        !          39976:           { 16,   63, 2,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          39977:             "\x01\x02\x0d\xff\x3a\x03\x0d\xff\x01\x10\x01\x0f" }  },
        !          39978:       /* --- pixel bitmap for cmsy450 char#99 \rfloor --- */
        !          39979:       {  99,92875,                      /* character number, location */
        !          39980:          47, 1,  -16, 1,      /* topleft row,col, and botleft row,col */
        !          39981:           { 16,   63, 2,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          39982:             "\x0e\x02\xff\x3a\x0d\x03\x00\xff\x02\x10" }  },
        !          39983:       /* --- pixel bitmap for cmsy450 char#100 \lceil --- */
        !          39984:       { 100,93497,                      /* character number, location */
        !          39985:          47,11,  -16,11,      /* topleft row,col, and botleft row,col */
        !          39986:           { 16,   63, 2,15, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          39987:             "\x01\x0f\x00\xff\x01\x10\x00\xff\x3a\x03\x0d\x00\x01"
        !          39988:             "\x02\x0d" }  },
        !          39989:       /* --- pixel bitmap for cmsy450 char#101 \rceil --- */
        !          39990:       { 101,94120,                      /* character number, location */
        !          39991:          47, 1,  -16, 1,      /* topleft row,col, and botleft row,col */
        !          39992:           { 16,   63, 2,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          39993:             "\xff\x02\x00\x10\xff\x3a\x0d\x03\x0e\x02" }  },
        !          39994:       /* --- pixel bitmap for cmsy450 char#102 \lbrace --- */
        !          39995:       { 102,45829,                      /* character number, location */
        !          39996:          47, 5,  -16, 5,      /* topleft row,col, and botleft row,col */
        !          39997:           { 21,   63, 3,104, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          39998:             "\xe0\x25\xe4\xe0\x14\xe0\x24\x60\xf1\xa4\x70\xfe\x94"
        !          39999:             "\x80\xf4\x94\x80\xf1\x84\x90\x74\xe0\x24\xe0\x14\xd5"
        !          40000:             "\xe0\x64\xe0\x54\xe0\x44\xa0\xf1\x84\x90\xfe\x94\x80"
        !          40001:             "\xf4\x94\x80\xf1\xa4\x70\xb4\xe0\x44\xe0\x54\xe0\x55" }  },
        !          40002:       /* --- pixel bitmap for cmsy450 char#103 \rbrace --- */
        !          40003:       { 103,46758,                      /* character number, location */
        !          40004:          47, 5,  -16, 5,      /* topleft row,col, and botleft row,col */
        !          40005:           { 21,   63, 3,105, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          40006:             "\x05\xe0\x64\xe0\x54\xe0\x44\xa0\xf1\x84\x90\xfe\x94"
        !          40007:             "\x80\xf4\x94\x80\xf1\xa4\x70\xb4\xe0\x44\xe0\x54\xe0"
        !          40008:             "\x55\xe4\xe0\x14\xe0\x24\x60\xf1\xa4\x70\xfe\x94\x80"
        !          40009:             "\xf4\x94\x80\xf1\x84\x90\x74\xe0\x24\xe0\x14\xd5\xe0"
        !          40010:             "\x24" }  },
        !          40011:       /* --- pixel bitmap for cmsy450 char#104 \langle --- */
        !          40012:       { 104,94714,                      /* character number, location */
        !          40013:          47, 6,  -16, 6,      /* topleft row,col, and botleft row,col */
        !          40014:           { 15,   63, 3,170, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          40015:             "\xd2\xc3\xb4\xf1\xb3\x10\xa4\xb3\xb4\x20\xf1\x93\x30"
        !          40016:             "\x84\xb3\xb4\x40\xf1\x73\x50\x64\xb3\xb4\x60\xf1\x53"
        !          40017:             "\x70\x44\xb3\xb4\x80\xf1\x33\x90\x24\xb3\xb4\xa0\xf1"
        !          40018:             "\x13\xb4\xb3\xc4\xb0\xf1\x13\xb0\x14\xc3\xc4\x90\xf1"
        !          40019:             "\x33\x90\x34\xc3\xc4\x70\xf1\x53\x70\x54\xc3\xc4\x50"
        !          40020:             "\xf1\x73\x50\x74\xc3\xc4\x30\xf1\x93\x30\x94\xc3\xc4"
        !          40021:             "\x10\xf1\xb3\x10\xb4\xc3\xd2" }  },
        !          40022:       /* --- pixel bitmap for cmsy450 char#105 \rangle --- */
        !          40023:       { 105,95309,                      /* character number, location */
        !          40024:          47, 3,  -16, 3,      /* topleft row,col, and botleft row,col */
        !          40025:           { 15,   63, 3,171, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          40026:             "\xf1\x03\xc4\xb0\xf1\x13\xb0\x14\xc3\xc4\x90\xf1\x33"
        !          40027:             "\x90\x34\xc3\xc4\x70\xf1\x53\x70\x54\xc3\xc4\x50\xf1"
        !          40028:             "\x73\x50\x74\xc3\xc4\x30\xf1\x93\x30\x94\xc3\xc4\x10"
        !          40029:             "\xf1\xb3\x10\xb4\xc3\xb4\xf1\xb3\x10\xa4\xb3\xb4\x20"
        !          40030:             "\xf1\x93\x30\x84\xb3\xb4\x40\xf1\x73\x50\x64\xb3\xb4"
        !          40031:             "\x60\xf1\x53\x70\x44\xb3\xb4\x80\xf1\x33\x90\x24\xb3"
        !          40032:             "\xb4\xa0\xf1\x13\xb4\xbf\x13\xc5" }  },
        !          40033:       /* --- pixel bitmap for cmsy450 char#106 \mid --- */
        !          40034:       { 106,43779,                      /* character number, location */
        !          40035:          47, 7,  -16, 7,      /* topleft row,col, and botleft row,col */
        !          40036:           {  3,   63, 2, 4, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          40037:             "\xff\x3e\x00\x03" }  },
        !          40038:       /* --- pixel bitmap for cmsy450 char#107 \parallel --- */
        !          40039:       { 107,95994,                      /* character number, location */
        !          40040:          47, 7,  -16, 7,      /* topleft row,col, and botleft row,col */
        !          40041:           { 17,   63, 2,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          40042:             "\x00\x02\x0d\x02\x00\xff\x3c\x03\x0b\x03\x00\x02\x0d"
        !          40043:             "\x02" }  },
        !          40044:       /* --- pixel bitmap for cmsy450 char#108 \updownarrow --- */
        !          40045:       { 108,97364,                      /* character number, location */
        !          40046:          48, 1,  -17, 1,      /* topleft row,col, and botleft row,col */
        !          40047:           { 29,   65, 3,155, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          40048:             "\xf2\xe1\xe0\xf1\xd3\xd0\xf1\xc5\xc0\xb7\xb0\xf1\xa9"
        !          40049:             "\xa0\x93\x13\x13\xe0\x24\x23\x24\xd4\x33\x34\xa5\x43"
        !          40050:             "\x45\x57\x53\x57\x16\x73\x7a\x93\x94\xfe\xd3\xd0\xfe"
        !          40051:             "\xd3\xd0\xd3\xd4\x93\x9a\x73\x76\x17\x53\x57\x55\x43"
        !          40052:             "\x45\xa4\x33\x34\xd4\x23\x24\xe0\x23\x13\x13\x90\xf1"
        !          40053:             "\xa9\xa0\xb7\xb0\xf1\xc5\xc0\xf1\xd3\xd0\xf2\xe1\xe3" }  },
        !          40054:       /* --- pixel bitmap for cmsy450 char#109 \Updownarrow --- */
        !          40055:       { 109,98577,                      /* character number, location */
        !          40056:          48, 2,  -17, 2,      /* topleft row,col, and botleft row,col */
        !          40057:           { 35,   65, 3,235, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          40058:             "\xf1\xe0\x31\xe0\x30\xe0\x23\xe0\x20\xf1\xe0\x15\xe0"
        !          40059:             "\x10\xe3\x13\xe0\xd4\x14\xe0\xc3\x33\xe0\xb3\x53\xe0"
        !          40060:             "\x93\x73\xe0\x73\x93\xe0\x44\xb4\xe0\x15\xb5\xd6\xb6"
        !          40061:             "\xa8\xb8\x65\x23\xb3\x25\x26\x33\xb3\x3a\x53\xb3\x56"
        !          40062:             "\x73\xb3\x72\xfe\x93\xb3\x90\xfb\x93\xb3\x92\x73\xb3"
        !          40063:             "\x76\x53\xb3\x5a\x33\xb3\x36\x25\x23\xb3\x25\x68\xb8"
        !          40064:             "\xa6\xb6\xd5\xb5\xe0\x14\xb4\xe0\x43\x93\xe0\x73\x73"
        !          40065:             "\xe0\x93\x53\xe0\xb3\x33\xe0\xc4\x14\xe0\xd3\x13\xe0"
        !          40066:             "\xf1\xe0\x15\xe0\x10\xe0\x23\xe0\x20\xf1\xe0\x31\xe0"
        !          40067:             "\x36" }  },
        !          40068:       /* --- pixel bitmap for cmsy450 char#110 \setminus --- */
        !          40069:       { 110,43257,                      /* character number, location */
        !          40070:          47, 3,  -16, 3,      /* topleft row,col, and botleft row,col */
        !          40071:           { 25,   63, 3,256, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          40072:             "\xf1\x03\xe0\x84\xe0\x70\xf1\x13\xe0\x70\x14\xe0\x60"
        !          40073:             "\xf1\x23\xe0\x60\x24\xe0\x50\xf1\x33\xe0\x50\x34\xe0"
        !          40074:             "\x83\xe0\x84\xe0\x30\xf1\x53\xe0\x30\x54\xe0\x20\xf1"
        !          40075:             "\x63\xe0\x20\x64\xe0\x83\xe0\x84\xe0\xf1\x83\xe0\x84"
        !          40076:             "\xd0\xf1\x93\xd0\x94\xc0\xf1\xa3\xc0\xa4\xe0\x83\xe0"
        !          40077:             "\x84\xa0\xf1\xc3\xa0\xc4\x90\xf1\xd3\x90\xd4\x80\xf1"
        !          40078:             "\xe3\x80\xe4\xe0\x83\xe0\x84\x60\xf1\xe0\x23\x60\xe0"
        !          40079:             "\x24\x50\xf1\xe0\x33\x50\xe0\x34\xe0\x83\xe0\x84\x30"
        !          40080:             "\xf1\xe0\x53\x30\xe0\x54\x20\xf1\xe0\x63\x20\xe0\x64"
        !          40081:             "\x10\xf1\xe0\x73\x10\xe0\x74\xe0\x83\xe0\x92" }  },
        !          40082:       /* --- pixel bitmap for cmsy450 char#111 \wr --- */
        !          40083:       { 111,99276,                      /* character number, location */
        !          40084:          36, 3,   -5, 3,      /* topleft row,col, and botleft row,col */
        !          40085:           { 11,   41, 3,74, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          40086:             "\x05\x67\x75\x75\x75\x10\xf1\x64\x10\x65\xf5\x74\x65"
        !          40087:             "\x64\x65\x64\x65\x64\x65\x64\x65\x64\x65\x64\x65\x6f"
        !          40088:             "\x54\x75\x60\xf1\x14\x60\x15\x75\x75\x77\x65" }  },
        !          40089:       /* --- pixel bitmap for cmsy450 char#112 \surd --- */
        !          40090:       { 112,100184,                     /* character number, location */
        !          40091:           3, 5,  -60, 5,      /* topleft row,col, and botleft row,col */
        !          40092:           { 49,   63, 2,195, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          40093:             "\x2f\x02\x2e\x03\x2d\x04\x2d\x03\x2d\x04\x2d\x03\x2d"
        !          40094:             "\x04\x2d\x03\x2d\x04\x2d\x03\x2d\x04\x2d\x03\x2d\x04"
        !          40095:             "\x2d\x03\x2d\x04\x06\x00\xff\x01\x27\x03\x07\x00\x26"
        !          40096:             "\x04\x2d\x03\x2d\x04\x2d\x03\x2d\x04\x2d\x03\x2d\x04"
        !          40097:             "\x2d\x03\x2d\x04\x2d\x03\x2d\x04\x2d\x03\x2d\x04\x2d"
        !          40098:             "\x03\x15\x02\x16\x04\x14\x03\x16\x03\x14\x04\x15\x04"
        !          40099:             "\x12\x07\x14\x03\x12\x01\x02\x05\x13\x04\x11\x01\x04"
        !          40100:             "\x05\x12\x03\x11\x01\x05\x05\x11\x04\x18\x05\x10\x03"
        !          40101:             "\x19\x05\x0f\x04\x19\x05\x0f\x03\x1b\x05\x0d\x04\x1b"
        !          40102:             "\x05\x0d\x03\x1d\x05\x0b\x04\x1d\x05\x0b\x03\x1f\x05"
        !          40103:             "\x09\x04\x15\x00\xff\x01\x0a\x05\x09\x03\x16\x00\x0b"
        !          40104:             "\x05\x07\x04\x21\x05\x07\x03\x23\x05\x05\x04\x23\x05"
        !          40105:             "\x05\x03\x25\x05\x03\x04\x25\x05\x03\x03\x27\x05\x01"
        !          40106:             "\x04\x27\x05\x01\x03\x28\x09\x1a\x00\xff\x01\x0f\x07"
        !          40107:             "\x1b\x00\xff\x01\x10\x05\x1c\x00\xff\x01\x11\x03\x1d" }  },
        !          40108:       /* --- pixel bitmap for cmsy450 char#113 \amalg --- */
        !          40109:       { 113,101570,                     /* character number, location */
        !          40110:          43, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          40111:           { 41,   43, 2,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          40112:             "\xff\x01\x00\x11\x07\x11\xff\x26\x06\x05\x13\x05\x06"
        !          40113:             "\xff\x01\x29" }  },
        !          40114:       /* --- pixel bitmap for cmsy450 char#114 \nabla --- */
        !          40115:       { 114,102622,                     /* character number, location */
        !          40116:          43, 3,   -2, 3,      /* topleft row,col, and botleft row,col */
        !          40117:           { 46,   45, 3,319, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          40118:             "\xf1\x0e\x0e\x0e\x04\xf1\x1e\x0e\x0e\x02\x10\x25\xe0"
        !          40119:             "\xe0\x72\x46\xe0\xe0\x53\x55\xe0\xe0\x52\x66\xe0\xe0"
        !          40120:             "\x33\x75\xe0\xe0\x32\x86\xe0\xe0\x13\x95\xe0\xe0\x12"
        !          40121:             "\xa6\xe0\xd3\xb5\xe0\xd2\xc6\xe0\xb3\xd5\xe0\xb2\xe6"
        !          40122:             "\xe0\x93\xe0\x15\xe0\x92\xe0\x26\xe0\x82\xe0\x35\xe0"
        !          40123:             "\x72\xe0\x46\xe0\x62\xe0\x55\xe0\x52\xe0\x66\xe0\x42"
        !          40124:             "\xe0\x75\xe0\x32\xe0\x86\xe0\x22\xe0\x95\xe0\x12\xe0"
        !          40125:             "\xa6\xe2\xe0\xb5\xd2\xe0\xc6\xc2\xe0\xd5\xb2\xe0\xe6"
        !          40126:             "\xa2\xe0\xe0\x15\x92\xe0\xe0\x26\x82\xe0\xe0\x35\x72"
        !          40127:             "\xe0\xe0\x46\x62\xe0\xe0\x55\x52\xe0\xe0\x66\x42\xe0"
        !          40128:             "\xe0\x75\x32\xe0\xe0\x86\x22\xe0\xe0\x95\x12\xe0\xe0"
        !          40129:             "\xa8\xe0\x50\xf1\xe0\x66\xe0\x60\xf1\xe0\x74\xe0\x70"
        !          40130:             "\xe0\x82\xe0\x84" }  },
        !          40131:       /* --- pixel bitmap for cmsy450 char#115 \smallint --- */
        !          40132:       { 115,49097,                      /* character number, location */
        !          40133:          44, 3,  -13, 3,      /* topleft row,col, and botleft row,col */
        !          40134:           { 27,   57, 3,143, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          40135:             "\xe0\x64\xe0\x72\x41\xe0\x53\x33\xe0\x42\x35\xf1\xe0"
        !          40136:             "\x23\x35\xe0\x23\x43\xe0\x24\x80\xf4\xe0\x13\x90\xf2"
        !          40137:             "\xe4\x90\xf2\xe3\xa0\xf5\xd4\xa0\xf6\xc4\xb0\xf5\xb4"
        !          40138:             "\xc0\xf2\xb3\xd0\xf2\xa4\xd0\xf4\xa3\xe0\x93\xe0\x23"
        !          40139:             "\x53\xe0\x15\x43\xe0\x15\x42\xe0\x25\x33\xe0\x33\x42"
        !          40140:             "\xe0\x51\x42\xe0\x75\xe0\x50" }  },
        !          40141:       /* --- pixel bitmap for cmsy450 char#116 \sqcup --- */
        !          40142:       { 116,103410,                     /* character number, location */
        !          40143:          38, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          40144:           { 34,   38, 2,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          40145:             "\xff\x22\x00\x03\x1c\x03\x00\xff\x01\x22\x01\x21" }  },
        !          40146:       /* --- pixel bitmap for cmsy450 char#117 \sqcap --- */
        !          40147:       { 117,104191,                     /* character number, location */
        !          40148:          38, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          40149:           { 34,   38, 2,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          40150:             "\xff\x02\x00\x22\x00\xff\x21\x03\x1c\x03\x01\x02\x1d"
        !          40151:             "\x02" }  },
        !          40152:       /* --- pixel bitmap for cmsy450 char#118 \sqsubseteq --- */
        !          40153:       { 118,105044,                     /* character number, location */
        !          40154:          40, 5,  -11, 5,      /* topleft row,col, and botleft row,col */
        !          40155:           { 40,   51, 2,31, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          40156:             "\x02\x25\x02\x27\x01\x26\x01\x00\xff\x1e\x01\x03\x24"
        !          40157:             "\x00\x01\x26\x02\x27\x01\x26\x01\x00\xff\x0a\x28\x00"
        !          40158:             "\x01\x26\x01\x4f\x01" }  },
        !          40159:       /* --- pixel bitmap for cmsy450 char#119 \sqsupseteq --- */
        !          40160:       { 119,105835,                     /* character number, location */
        !          40161:          40, 3,  -11, 3,      /* topleft row,col, and botleft row,col */
        !          40162:           { 40,   51, 2,30, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          40163:             "\x01\x26\x01\x27\x02\x26\x01\x00\xff\x1e\x24\x03\x01"
        !          40164:             "\x00\x01\x26\x01\x27\x02\x26\x01\x00\xff\x0a\x28\x00"
        !          40165:             "\x01\x4f\x01\x27" }  },
        !          40166:       /* --- pixel bitmap for cmsy450 char#120 \S --- */
        !          40167:       { 120,106880,                     /* character number, location */
        !          40168:          44, 4,  -13, 4,      /* topleft row,col, and botleft row,col */
        !          40169:           { 20,   57, 3,195, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          40170:             "\x76\xc3\x52\x83\x92\x54\xa2\x43\xb2\x34\xc2\x23\xb4"
        !          40171:             "\x1f\x14\xb4\x1f\x24\xe0\x20\x13\xe0\x34\xe0\x33\xe0"
        !          40172:             "\x43\xe0\x43\xe0\x52\xe0\x53\xe0\x26\xc3\x52\x93\x72"
        !          40173:             "\x73\x93\x44\xa3\x34\xa4\x14\xb4\x1f\x44\xc4\x14\xb4"
        !          40174:             "\x14\xa4\x33\xa4\x43\x93\x72\x73\x92\x53\xc6\xe0\x23"
        !          40175:             "\xe0\x52\xe0\x53\xe0\x43\xe0\x43\xe0\x34\xe0\x33\x10"
        !          40176:             "\xf2\xe0\x24\xf1\x14\xb4\x14\xb3\x22\xc4\x32\xb3\x42"
        !          40177:             "\xa4\x52\x93\x82\x53\xc6\x76" }  },
        !          40178:       /* --- pixel bitmap for cmsy450 char#121 \dag --- */
        !          40179:       { 121,107784,                     /* character number, location */
        !          40180:          44, 4,  -13, 4,      /* topleft row,col, and botleft row,col */
        !          40181:           { 20,   57, 3,59, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          40182:             "\x92\x90\xf6\x84\x80\xf6\x92\x90\x14\x42\x44\x1f\x1e"
        !          40183:             "\x06\x14\x42\x44\x10\xf4\x92\x90\xfe\x84\x80\xf8\x84"
        !          40184:             "\x80\xf8\x92\x90" }  },
        !          40185:       /* --- pixel bitmap for cmsy450 char#122 \ddag --- */
        !          40186:       { 122,108825,                     /* character number, location */
        !          40187:          44, 4,  -13, 4,      /* topleft row,col, and botleft row,col */
        !          40188:           { 20,   57, 3,105, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          40189:             "\x92\x90\xf5\x84\x80\xf4\x92\x90\x14\x42\x44\x1f\x1e"
        !          40190:             "\x06\x14\x42\x44\x10\xf4\x92\x90\xf5\x84\x80\x92\xe0"
        !          40191:             "\xe0\xa2\x90\xf5\x84\x80\xf4\x92\x90\x14\x42\x44\x1f"
        !          40192:             "\x1e\x06\x14\x42\x44\x10\xf4\x92\x90\xf5\x84\x80\x92"
        !          40193:             "\x94" }  },
        !          40194:       /* --- pixel bitmap for cmsy450 char#123 \P --- */
        !          40195:       { 123,109613,                     /* character number, location */
        !          40196:          43, 3,  -12, 3,      /* topleft row,col, and botleft row,col */
        !          40197:           { 33,   55, 3,139, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          40198:             "\xbe\x08\x8e\x0b\x6e\x0d\x5e\x01\x53\x9e\x02\x53\x8e"
        !          40199:             "\x03\x53\x50\xf1\x2e\x04\x53\x50\xf1\x1e\x05\x53\x5f"
        !          40200:             "\x7e\x06\x53\x50\xf1\x1e\x05\x53\x50\xf1\x2e\x04\x53"
        !          40201:             "\x50\x3e\x03\x53\x9e\x02\x53\xae\x01\x53\xbe\x53\xdc"
        !          40202:             "\x53\xe0\x1a\x53\xe0\x47\x53\x50\xfe\xe0\x33\x53\x50"
        !          40203:             "\xfa\xe0\x33\x53\x50" }  },
        !          40204:       /* --- pixel bitmap for cmsy450 char#124 \clubsuit --- */
        !          40205:       { 124,110705,                     /* character number, location */
        !          40206:          45, 2,   -8, 2,      /* topleft row,col, and botleft row,col */
        !          40207:           { 45,   53, 3,207, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          40208:             "\xe0\x57\xe0\xe0\x7d\xe0\xe0\x3e\x01\xe0\xe0\x1e\x03"
        !          40209:             "\xe0\xde\x05\xd0\xf2\xce\x07\xc0\xf7\xbe\x09\xb0\xf2"
        !          40210:             "\xce\x07\xc0\xde\x05\xe0\xde\x03\xe0\xe0\x1e\x01\xe0"
        !          40211:             "\x77\x2e\x01\x27\xaa\x1e\x01\x1a\x7e\x0e\x0b\x30\xf1"
        !          40212:             "\x2e\x0e\x0d\x20\xf1\x1e\x0e\x0e\x01\x1f\x8e\x0e\x0e"
        !          40213:             "\x03\xf1\x1e\x0e\x0e\x01\x10\xf1\x2e\x02\x33\x3e\x02"
        !          40214:             "\x20\x3e\x01\x33\x3e\x01\x7d\x43\x4d\x9b\x53\x5b\xc7"
        !          40215:             "\x65\x67\x70\xf3\xe0\x65\xe0\x60\xf2\xe0\x57\xe0\x56" }  },
        !          40216:       /* --- pixel bitmap for cmsy450 char#125 \Diamond --- */
        !          40217:       { 125,111502,                     /* character number, location */
        !          40218:          45, 3,  -10, 3,      /* topleft row,col, and botleft row,col */
        !          40219:           { 43,   55, 3,379, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          40220:             "\xf1\xe0\x63\xe0\x60\xf1\xe0\x55\xe0\x50\xe0\x47\xe0"
        !          40221:             "\xe0\x83\x13\xe0\xe0\x74\x14\xe0\xe0\x54\x34\xe0\xe0"
        !          40222:             "\x43\x53\xe0\xe0\x34\x54\xe0\xe0\x23\x73\xe0\xe0\x14"
        !          40223:             "\x74\xe0\xd4\x94\xe0\xb4\xb4\xe0\xa3\xd3\xe0\x94\xd4"
        !          40224:             "\xe0\x74\xe0\x14\xe0\x54\xe0\x34\xe0\x43\xe0\x53\xe0"
        !          40225:             "\x34\xe0\x54\xe0\x14\xe0\x74\xd4\xe0\x94\xb4\xe0\xb4"
        !          40226:             "\x94\xe0\xd4\x74\xe0\xe0\x14\x54\xe0\xe0\x34\x34\xe0"
        !          40227:             "\xe0\x59\xe0\xe0\x74\x14\xe0\xe0\x55\x24\xe0\xe0\x34"
        !          40228:             "\x54\xe0\xe0\x14\x74\xe0\xd4\x94\xe0\xb4\xb4\xe0\x94"
        !          40229:             "\xd4\xe0\x74\xe0\x14\xe0\x54\xe0\x33\xe0\x53\xe0\x44"
        !          40230:             "\xe0\x34\xe0\x54\xe0\x14\xe0\x74\xd4\xe0\x93\xd3\xe0"
        !          40231:             "\xa4\xb4\xe0\xb4\x94\xe0\xd4\x74\xe0\xe0\x13\x73\xe0"
        !          40232:             "\xe0\x24\x54\xe0\xe0\x33\x53\xe0\xe0\x44\x34\xe0\xe0"
        !          40233:             "\x54\x14\xe0\xe0\x73\x13\xe0\xe0\x87\xe0\x40\xf1\xe0"
        !          40234:             "\x55\xe0\x50\xf1\xe0\x63\xe0\x65" }  },
        !          40235:       /* --- pixel bitmap for cmsy450 char#126 \Heart --- */
        !          40236:       { 126,112449,                     /* character number, location */
        !          40237:          44, 3,   -2, 3,      /* topleft row,col, and botleft row,col */
        !          40238:           { 43,   46, 3,293, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          40239:             "\x77\xe0\x17\xcb\xbb\x9e\x7e\x75\x56\x56\x55\x54\x95"
        !          40240:             "\x35\x94\x43\xc4\x14\xc3\x34\xd7\xd4\x10\xf1\x13\xe0"
        !          40241:             "\x15\xe0\x13\x14\xe0\x23\xe0\x27\xe0\x33\xe0\x36\xe0"
        !          40242:             "\x42\xe0\x33\x0f\x43\xe0\xe0\x93\x04\xe0\xe0\x74\xf1"
        !          40243:             "\x13\xe0\xe0\x73\x10\x14\xe0\xe0\x54\x33\xe0\xe0\x53"
        !          40244:             "\x44\xe0\xe0\x34\x53\xe0\xe0\x33\x64\xe0\xe0\x14\x74"
        !          40245:             "\xe0\xd4\x94\xe0\xb4\xb4\xe0\x94\xd3\xe0\x93\xe4\xe0"
        !          40246:             "\x74\xe0\x14\xe0\x54\xe0\x34\xe0\x34\xe0\x55\xd5\xe0"
        !          40247:             "\x75\xb5\xe0\x95\x95\xe0\xc4\x74\xe0\xe0\x14\x54\xe0"
        !          40248:             "\xe0\x33\x53\xe0\xe0\x44\x34\xe0\xe0\x54\x14\xe0\xe0"
        !          40249:             "\x73\x13\xe0\xe0\x87\xe0\x40\xf1\xe0\x55\xe0\x50\xf1"
        !          40250:             "\xe0\x63\xe0\x64" }  },
        !          40251:       /* --- pixel bitmap for cmsy450 char#127 \spadesuit --- */
        !          40252:       { 127,113460,                     /* character number, location */
        !          40253:          45, 3,   -8, 3,      /* topleft row,col, and botleft row,col */
        !          40254:           { 43,   53, 3,239, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          40255:             "\xf1\xe0\x63\xe0\x60\xf1\xe0\x55\xe0\x50\xf1\xe0\x47"
        !          40256:             "\xe0\x40\xf1\xe0\x39\xe0\x30\xe0\x2b\xe0\x20\xf1\xe0"
        !          40257:             "\x1d\xe0\x10\xee\x01\xe0\xde\x03\xe0\xbe\x05\xe0\x9e"
        !          40258:             "\x07\xe0\x7e\x09\xe0\x5e\x0b\xe0\x3e\x0d\xe0\x1e\x0e"
        !          40259:             "\x01\xde\x0e\x03\xbe\x0e\x05\x9e\x0e\x07\x40\xf1\x3e"
        !          40260:             "\x0e\x09\x30\xf1\x2e\x0e\x0b\x20\xf1\x1e\x0e\x0d\x1f"
        !          40261:             "\x9e\x0e\x0e\x01\xf1\x1e\x0e\x0d\x10\x1e\x02\x33\x3e"
        !          40262:             "\x02\x10\xf1\x2e\x01\x33\x3e\x01\x20\x3d\x43\x4d\x7b"
        !          40263:             "\x53\x5b\x98\x65\x68\x50\xf3\xe0\x55\xe0\x50\xf2\xe0"
        !          40264:             "\x47\xe0\x43" }  },
        !          40265:       /* --- trailer  --- */
        !          40266:       { -99, -999,  0,0,0,0, { 0,0,0,0, (pixbyte *)"\0" }  }
        !          40267:    } ;
        !          40268: 
        !          40269: 
        !          40270: /* --- size=10 for .600gf ---
        !          40271:  * mf '\mode=preview; mag=magstep(-8.04680493988053835544); input cmsy10'
        !          40272:  * --------------------------------------------------------------------- */
        !          40273: /* --- fontdef for cmsy600 --- */
        !          40274: static	chardef  cmsy600[] =
        !          40275:    {
        !          40276:       /* --- pixel bitmap for cmsy600 char#0 - --- */
        !          40277:       {   0,26538,                      /* character number, location */
        !          40278:          23, 7,   19, 7,      /* topleft row,col, and botleft row,col */
        !          40279:           { 51,    4, 2, 9, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          40280:             "\x01\x31\x01\xff\x01\x33\x01\x31\x01" }  },
        !          40281:       /* --- pixel bitmap for cmsy600 char#1 \cdot --- */
        !          40282:       {   1,46888,                      /* character number, location */
        !          40283:          26, 7,   17, 7,      /* topleft row,col, and botleft row,col */
        !          40284:           {  9,    9, 3,13, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          40285:             "\x33\x47\x1f\x49\x17\x43\x34" }  },
        !          40286:       /* --- pixel bitmap for cmsy600 char#2 \times --- */
        !          40287:       {   2,52636,                      /* character number, location */
        !          40288:          41,12,    1,12,      /* topleft row,col, and botleft row,col */
        !          40289:           { 41,   40, 3,253, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          40290:             "\x12\xe0\xe0\x72\x15\xe0\xe0\x3b\xe0\xe0\x16\x16\xe0"
        !          40291:             "\xd6\x36\xe0\xb6\x56\xe0\x96\x76\xe0\x76\x96\xe0\x56"
        !          40292:             "\xb6\xe0\x36\xd6\xe0\x16\xe0\x16\xd6\xe0\x36\xb6\xe0"
        !          40293:             "\x56\x96\xe0\x76\x76\xe0\x96\x56\xe0\xb6\x36\xe0\xd6"
        !          40294:             "\x16\xe0\xe0\x1b\xe0\xe0\x39\xe0\x20\xf1\xe0\x37\xe0"
        !          40295:             "\x30\xe0\x29\xe0\xe0\x3b\xe0\xe0\x16\x16\xe0\xd6\x36"
        !          40296:             "\xe0\xb6\x56\xe0\x96\x76\xe0\x76\x96\xe0\x56\xb6\xe0"
        !          40297:             "\x36\xd6\xe0\x16\xe0\x16\xd6\xe0\x36\xb6\xe0\x56\x96"
        !          40298:             "\xe0\x76\x76\xe0\x96\x56\xe0\xb6\x36\xe0\xd6\x16\xe0"
        !          40299:             "\xe0\x1b\xe0\xe0\x35\x12\xe0\xe0\x72\x13" }  },
        !          40300:       /* --- pixel bitmap for cmsy600 char#3 \ast --- */
        !          40301:       {   3,53383,                      /* character number, location */
        !          40302:          39, 5,    3, 5,      /* topleft row,col, and botleft row,col */
        !          40303:           { 32,   36, 3,145, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          40304:             "\xf1\xe4\xe0\xe5\xd0\xf4\xe4\xe0\x14\x94\x94\x25\x84"
        !          40305:             "\x85\x17\x74\x77\x18\x54\x58\x38\x44\x48\x68\x32\x38"
        !          40306:             "\xa7\x22\x27\xe6\x12\x16\xe0\x4c\xa0\xf1\xd6\xd0\xac"
        !          40307:             "\xe0\x46\x12\x16\xe7\x22\x27\xa8\x32\x38\x68\x44\x48"
        !          40308:             "\x38\x54\x58\x17\x74\x77\x15\x84\x85\x24\x94\x94\x10"
        !          40309:             "\xf4\xe4\xe0\xe5\xd0\xf1\xe4\xe0" }  },
        !          40310:       /* --- pixel bitmap for cmsy600 char#4 \div --- */
        !          40311:       {   4,54352,                      /* character number, location */
        !          40312:          45, 5,   -3, 5,      /* topleft row,col, and botleft row,col */
        !          40313:           { 55,   48, 2,61, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          40314:             "\x19\x05\x31\x07\x2f\x09\x17\x00\xff\x04\x16\x0b\x16"
        !          40315:             "\x00\x17\x09\x2f\x07\x31\x05\x19\x00\xff\x0a\x37\x00"
        !          40316:             "\x01\x35\x01\xff\x01\x37\x01\x35\x01\x00\xff\x0a\x37"
        !          40317:             "\x00\x19\x05\x31\x07\x2f\x09\x17\x00\xff\x04\x16\x0b"
        !          40318:             "\x16\x00\x17\x09\x2f\x07\x31\x05\x19" }  },
        !          40319:       /* --- pixel bitmap for cmsy600 char#5 \diamond --- */
        !          40320:       {   5,47439,                      /* character number, location */
        !          40321:          41, 1,    1, 1,      /* topleft row,col, and botleft row,col */
        !          40322:           { 40,   40, 3,235, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          40323:             "\xe0\x52\xe0\xe0\x95\xe0\xe0\x67\xe0\xe0\x49\xe0\xe0"
        !          40324:             "\x2b\xe0\xe6\x16\xe0\xc6\x36\xe0\xa6\x56\xe0\x86\x76"
        !          40325:             "\xe0\x66\x96\xe0\x46\xb6\xe0\x26\xd6\xe6\xe0\x16\xc6"
        !          40326:             "\xe0\x36\xa6\xe0\x56\x86\xe0\x76\x66\xe0\x96\x46\xe0"
        !          40327:             "\xb6\x26\xe0\xd6\x0f\x16\xe0\xe0\x15\x16\xe0\xd6\x26"
        !          40328:             "\xe0\xb6\x46\xe0\x96\x66\xe0\x76\x86\xe0\x56\xa6\xe0"
        !          40329:             "\x36\xc6\xe0\x16\xe6\xd6\xe0\x26\xb6\xe0\x46\x96\xe0"
        !          40330:             "\x66\x76\xe0\x86\x56\xe0\xa6\x36\xe0\xc6\x16\xe0\xeb"
        !          40331:             "\xe0\xe0\x29\xe0\xe0\x47\xe0\xe0\x65\xe0\xe0\x82\xe0"
        !          40332:             "\x54" }  },
        !          40333:       /* --- pixel bitmap for cmsy600 char#6 \pm --- */
        !          40334:       {   6,27241,                      /* character number, location */
        !          40335:          55, 5,    1, 5,      /* topleft row,col, and botleft row,col */
        !          40336:           { 55,   54, 2,35, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          40337:             "\x1a\x03\x1a\x00\xff\x17\x1a\x04\x19\x00\x01\x35\x01"
        !          40338:             "\xff\x01\x37\x01\x35\x01\x00\xff\x14\x1a\x04\x19\x00"
        !          40339:             "\x01\x35\x01\xff\x01\x37\x01\x35\x01" }  },
        !          40340:       /* --- pixel bitmap for cmsy600 char#7 \mp --- */
        !          40341:       {   7,55103,                      /* character number, location */
        !          40342:          41, 5,  -13, 5,      /* topleft row,col, and botleft row,col */
        !          40343:           { 55,   54, 2,35, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          40344:             "\x01\x35\x01\xff\x01\x37\x01\x35\x01\x00\xff\x14\x1a"
        !          40345:             "\x04\x19\x00\x01\x35\x01\xff\x01\x37\x01\x35\x01\x00"
        !          40346:             "\xff\x17\x1a\x04\x19\x00\x1a\x03\x1a" }  },
        !          40347:       /* --- pixel bitmap for cmsy600 char#8 \oplus --- */
        !          40348:       {   8,28076,                      /* character number, location */
        !          40349:          48, 5,   -6, 5,      /* topleft row,col, and botleft row,col */
        !          40350:           { 55,   54, 3,439, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          40351:             "\xe0\x8b\xe0\xe0\xce\x05\xe0\xe0\x66\x52\x46\xe0\xe0"
        !          40352:             "\x24\x92\x84\xe0\xc4\xb2\xa4\xe0\x84\xd2\xc4\xe0\x53"
        !          40353:             "\xe0\x12\xe3\xe0\x33\xe0\x22\xe0\x13\xe0\x13\xe0\x32"
        !          40354:             "\xe0\x23\xd3\xe0\x42\xe0\x33\xb3\xe0\x52\xe0\x43\xa2"
        !          40355:             "\xe0\x62\xe0\x52\x93\xe0\x62\xe0\x53\x73\xe0\x72\xe0"
        !          40356:             "\x63\x62\xe0\x82\xe0\x72\x53\xe0\x82\xe0\x73\x20\xf1"
        !          40357:             "\x22\xe0\x92\xe0\x82\x20\x13\xe0\x92\xe0\x83\x10\xf1"
        !          40358:             "\x12\xe0\xa2\xe0\x92\x13\xe0\xa2\xe0\x93\x0f\x32\xe0"
        !          40359:             "\xb2\xe0\xa2\x0f\x1e\x0e\x0e\x0d\x0f\x32\xe0\xb2\xe0"
        !          40360:             "\xa2\x03\xe0\xa2\xe0\x93\xf1\x12\xe0\xa2\xe0\x92\x10"
        !          40361:             "\x13\xe0\x92\xe0\x83\x10\xf1\x22\xe0\x92\xe0\x82\x20"
        !          40362:             "\x23\xe0\x82\xe0\x73\x52\xe0\x82\xe0\x72\x63\xe0\x72"
        !          40363:             "\xe0\x63\x73\xe0\x62\xe0\x53\x92\xe0\x62\xe0\x52\xa3"
        !          40364:             "\xe0\x52\xe0\x43\xb3\xe0\x42\xe0\x33\xd3\xe0\x32\xe0"
        !          40365:             "\x23\xe0\x13\xe0\x22\xe0\x13\xe0\x33\xe0\x12\xe3\xe0"
        !          40366:             "\x54\xd2\xc4\xe0\x84\xb2\xa4\xe0\xc4\x92\x84\xe0\xe0"
        !          40367:             "\x26\x52\x46\xe0\xe0\x6e\x05\xe0\xe0\xcb\xe0\x80" }  },
        !          40368:       /* --- pixel bitmap for cmsy600 char#9 \ominus --- */
        !          40369:       {   9,55939,                      /* character number, location */
        !          40370:          48, 5,   -6, 5,      /* topleft row,col, and botleft row,col */
        !          40371:           { 55,   54, 2,189, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          40372:             "\x16\x0b\x28\x13\x22\x06\x0b\x06\x1e\x04\x13\x04\x1a"
        !          40373:             "\x04\x17\x04\x16\x04\x1b\x04\x13\x03\x1f\x03\x11\x03"
        !          40374:             "\x21\x03\x0f\x03\x23\x03\x0d\x03\x25\x03\x0b\x03\x27"
        !          40375:             "\x03\x0a\x02\x29\x02\x09\x03\x29\x03\x07\x03\x2b\x03"
        !          40376:             "\x06\x02\x2d\x02\x05\x03\x2d\x03\x02\x00\xff\x01\x02"
        !          40377:             "\x02\x2f\x02\x02\x00\x01\x03\x2f\x03\x01\x00\xff\x01"
        !          40378:             "\x01\x02\x31\x02\x01\x03\x31\x03\x00\xff\x03\x02\x33"
        !          40379:             "\x02\x00\xff\x01\x37\x00\xff\x03\x02\x33\x02\x00\x03"
        !          40380:             "\x31\x03\xff\x01\x01\x02\x31\x02\x01\x00\x01\x03\x2f"
        !          40381:             "\x03\x01\x00\xff\x01\x02\x02\x2f\x02\x02\x00\x02\x03"
        !          40382:             "\x2d\x03\x05\x02\x2d\x02\x06\x03\x2b\x03\x07\x03\x29"
        !          40383:             "\x03\x09\x02\x29\x02\x0a\x03\x27\x03\x0b\x03\x25\x03"
        !          40384:             "\x0d\x03\x23\x03\x0f\x03\x21\x03\x11\x03\x1f\x03\x13"
        !          40385:             "\x04\x1b\x04\x16\x04\x17\x04\x1a\x04\x13\x04\x1e\x06"
        !          40386:             "\x0b\x06\x22\x13\x28\x0b\x16" }  },
        !          40387:       /* --- pixel bitmap for cmsy600 char#10 \otimes --- */
        !          40388:       {  10,29104,                      /* character number, location */
        !          40389:          48, 5,   -6, 5,      /* topleft row,col, and botleft row,col */
        !          40390:           { 55,   54, 3,521, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          40391:             "\xe0\x8b\xe0\xe0\xce\x05\xe0\xe0\x66\xb6\xe0\xe0\x24"
        !          40392:             "\xe0\x54\xe0\xc4\xe0\x94\xe0\x84\xe0\xd4\xe0\x53\xe0"
        !          40393:             "\xe0\x33\xe0\x33\xe0\xe0\x53\xe0\x13\xe0\xe0\x73\xd5"
        !          40394:             "\xe0\xe0\x55\xb3\x13\xe0\xe0\x33\x13\xa2\x33\xe0\xe0"
        !          40395:             "\x13\x32\x93\x43\xe0\xd3\x43\x73\x63\xe0\xb3\x63\x62"
        !          40396:             "\x83\xe0\x93\x82\x53\x93\xe0\x73\x93\x42\xb3\xe0\x53"
        !          40397:             "\xb2\x42\xc3\xe0\x33\xc2\x33\xd3\xe0\x13\xd3\x22\xe0"
        !          40398:             "\x13\xd3\xe0\x12\x22\xe0\x23\xb3\xe0\x22\x13\xe0\x33"
        !          40399:             "\x93\xe0\x35\xe0\x53\x73\xe0\x54\xe0\x63\x53\xe0\x64"
        !          40400:             "\xe0\x73\x33\xe0\x74\xe0\x83\x13\xe0\x82\x0f\x12\xe0"
        !          40401:             "\x95\xe0\x92\x02\xe0\x83\x13\xe0\x84\xe0\x73\x33\xe0"
        !          40402:             "\x74\xe0\x63\x53\xe0\x64\xe0\x53\x73\xe0\x55\xe0\x33"
        !          40403:             "\x93\xe0\x33\x12\xe0\x23\xb3\xe0\x22\x22\xe0\x13\xd3"
        !          40404:             "\xe0\x12\x23\xd3\xe0\x13\xd3\x32\xc3\xe0\x33\xc2\x42"
        !          40405:             "\xb3\xe0\x53\xb2\x43\x93\xe0\x73\x93\x52\x83\xe0\x93"
        !          40406:             "\x82\x63\x63\xe0\xb3\x63\x73\x43\xe0\xd3\x43\x92\x33"
        !          40407:             "\xe0\xe0\x13\x32\xa3\x13\xe0\xe0\x33\x13\xb5\xe0\xe0"
        !          40408:             "\x55\xd3\xe0\xe0\x73\xe0\x13\xe0\xe0\x53\xe0\x33\xe0"
        !          40409:             "\xe0\x33\xe0\x54\xe0\xd4\xe0\x84\xe0\x94\xe0\xc4\xe0"
        !          40410:             "\x54\xe0\xe0\x26\xb6\xe0\xe0\x6e\x05\xe0\xe0\xcb\xe0"
        !          40411:             "\x80" }  },
        !          40412:       /* --- pixel bitmap for cmsy600 char#11 \oslash --- */
        !          40413:       {  11,56872,                      /* character number, location */
        !          40414:          48, 5,   -6, 5,      /* topleft row,col, and botleft row,col */
        !          40415:           { 55,   54, 3,503, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          40416:             "\xe0\x8b\xe0\xe0\xce\x05\xe0\xe0\x66\xb6\xe0\xe0\x24"
        !          40417:             "\xe0\x54\xe0\xc4\xe0\x94\xe0\x84\xe0\xd4\xe0\x53\xe0"
        !          40418:             "\xe0\x33\xe0\x33\xe0\xe0\x53\xe0\x13\xe0\xe0\x73\xd3"
        !          40419:             "\xe0\xe0\x75\xb3\xe0\xe0\x73\x13\xa2\xe0\xe0\x73\x32"
        !          40420:             "\x93\xe0\xe0\x63\x43\x73\xe0\xe0\x63\x63\x62\xe0\xe0"
        !          40421:             "\x63\x82\x53\xe0\xe0\x53\x93\x42\xe0\xe0\x53\xb2\x42"
        !          40422:             "\xe0\xe0\x43\xc2\x33\xe0\xe0\x33\xd3\x22\xe0\xe0\x33"
        !          40423:             "\xe0\x12\x22\xe0\xe0\x23\xe0\x22\x13\xe0\xe0\x13\xe0"
        !          40424:             "\x35\xe0\xe0\x13\xe0\x54\xe0\xe3\xe0\x64\xe0\xd3\xe0"
        !          40425:             "\x74\xe0\xc3\xe0\x84\xe0\xa4\xe0\x94\xe0\x93\xe0\xb4"
        !          40426:             "\xe0\x83\xe0\xc4\xe0\x73\xe0\xd4\xe0\x63\xe0\xe4\xe0"
        !          40427:             "\x53\xe0\xe0\x15\xe0\x33\xe0\xe0\x13\x12\xe0\x23\xe0"
        !          40428:             "\xe0\x22\x22\xe0\x13\xe0\xe0\x32\x23\xd3\xe0\xe0\x33"
        !          40429:             "\x32\xc3\xe0\xe0\x42\x42\xb3\xe0\xe0\x52\x43\x93\xe0"
        !          40430:             "\xe0\x53\x52\x83\xe0\xe0\x62\x63\x63\xe0\xe0\x63\x73"
        !          40431:             "\x43\xe0\xe0\x63\x92\x33\xe0\xe0\x72\xa3\x13\xe0\xe0"
        !          40432:             "\x73\xb5\xe0\xe0\x73\xd3\xe0\xe0\x73\xe0\x13\xe0\xe0"
        !          40433:             "\x53\xe0\x33\xe0\xe0\x33\xe0\x54\xe0\xd4\xe0\x84\xe0"
        !          40434:             "\x94\xe0\xc4\xe0\x54\xe0\xe0\x26\xb6\xe0\xe0\x6e\x05"
        !          40435:             "\xe0\xe0\xcb\xe0\x86" }  },
        !          40436:       /* --- pixel bitmap for cmsy600 char#12 \odot --- */
        !          40437:       {  12,57874,                      /* character number, location */
        !          40438:          48, 5,   -6, 5,      /* topleft row,col, and botleft row,col */
        !          40439:           { 55,   54, 2,209, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          40440:             "\x16\x0b\x28\x13\x22\x06\x0b\x06\x1e\x04\x13\x04\x1a"
        !          40441:             "\x04\x17\x04\x16\x04\x1b\x04\x13\x03\x1f\x03\x11\x03"
        !          40442:             "\x21\x03\x0f\x03\x23\x03\x0d\x03\x25\x03\x0b\x03\x27"
        !          40443:             "\x03\x0a\x02\x29\x02\x09\x03\x29\x03\x07\x03\x2b\x03"
        !          40444:             "\x06\x02\x2d\x02\x05\x03\x2d\x03\x02\x00\xff\x01\x02"
        !          40445:             "\x02\x2f\x02\x02\x00\x01\x03\x2f\x03\x01\x00\xff\x01"
        !          40446:             "\x01\x02\x31\x02\x01\x03\x16\x05\x16\x05\x16\x07\x16"
        !          40447:             "\x02\x00\xff\x01\x02\x15\x09\x15\x02\x00\xff\x03\x02"
        !          40448:             "\x14\x0b\x14\x02\x00\xff\x01\x02\x15\x09\x15\x02\x00"
        !          40449:             "\x02\x16\x07\x16\x05\x16\x05\x16\x03\xff\x01\x01\x02"
        !          40450:             "\x31\x02\x01\x00\x01\x03\x2f\x03\x01\x00\xff\x01\x02"
        !          40451:             "\x02\x2f\x02\x02\x00\x02\x03\x2d\x03\x05\x02\x2d\x02"
        !          40452:             "\x06\x03\x2b\x03\x07\x03\x29\x03\x09\x02\x29\x02\x0a"
        !          40453:             "\x03\x27\x03\x0b\x03\x25\x03\x0d\x03\x23\x03\x0f\x03"
        !          40454:             "\x21\x03\x11\x03\x1f\x03\x13\x04\x1b\x04\x16\x04\x17"
        !          40455:             "\x04\x1a\x04\x13\x04\x1e\x06\x0b\x06\x22\x13\x28\x0b"
        !          40456:             "\x16" }  },
        !          40457:       /* --- pixel bitmap for cmsy600 char#13 \bigcirc --- */
        !          40458:       {  13,58943,                      /* character number, location */
        !          40459:          60, 5,  -18, 5,      /* topleft row,col, and botleft row,col */
        !          40460:           { 73,   78, 2,259, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          40461:             "\x1e\x0d\x38\x15\x31\x1b\x2c\x1f\x28\x0c\x0b\x0c\x24"
        !          40462:             "\x0a\x13\x0a\x21\x08\x19\x08\x1f\x07\x1d\x07\x1c\x07"
        !          40463:             "\x21\x07\x19\x07\x23\x07\x17\x06\x27\x06\x15\x06\x29"
        !          40464:             "\x06\x13\x06\x2b\x06\x11\x06\x2d\x06\x10\x05\x2f\x05"
        !          40465:             "\x0f\x05\x31\x05\x0d\x06\x31\x06\x0c\x05\x33\x05\x0b"
        !          40466:             "\x05\x35\x05\x09\x06\x35\x06\x08\x05\x37\x05\x04\x00"
        !          40467:             "\xff\x01\x03\x05\x39\x05\x03\x00\x03\x04\x3b\x04\x03"
        !          40468:             "\x00\xff\x01\x02\x05\x3b\x05\x02\x00\x02\x04\x3d\x04"
        !          40469:             "\x02\x00\xff\x01\x01\x05\x3d\x05\x01\x00\xff\x01\x01"
        !          40470:             "\x04\x3f\x04\x01\xff\x01\x05\x3f\x05\x00\xff\x0b\x04"
        !          40471:             "\x41\x04\x00\xff\x01\x05\x3f\x05\xff\x01\x01\x04\x3f"
        !          40472:             "\x04\x01\x00\xff\x01\x01\x05\x3d\x05\x01\x00\x02\x04"
        !          40473:             "\x3d\x04\x02\x00\xff\x01\x02\x05\x3b\x05\x02\x00\x03"
        !          40474:             "\x04\x3b\x04\x03\x00\xff\x01\x03\x05\x39\x05\x03\x00"
        !          40475:             "\x04\x05\x37\x05\x08\x06\x35\x06\x09\x05\x35\x05\x0b"
        !          40476:             "\x05\x33\x05\x0c\x06\x31\x06\x0d\x05\x31\x05\x0f\x05"
        !          40477:             "\x2f\x05\x10\x06\x2d\x06\x11\x06\x2b\x06\x13\x06\x29"
        !          40478:             "\x06\x15\x06\x27\x06\x17\x07\x23\x07\x19\x07\x21\x07"
        !          40479:             "\x1c\x07\x1d\x07\x1f\x08\x19\x08\x21\x0a\x13\x0a\x24"
        !          40480:             "\x0c\x0b\x0c\x28\x1f\x2c\x1b\x31\x15\x38\x0d\x1e" }  },
        !          40481:       /* --- pixel bitmap for cmsy600 char#14 \circ --- */
        !          40482:       {  14,59843,                      /* character number, location */
        !          40483:          37, 5,    5, 5,      /* topleft row,col, and botleft row,col */
        !          40484:           { 32,   32, 3,141, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          40485:             "\xc8\xe0\x7e\xe0\x3e\x02\xee\x06\xb8\x68\x96\xc6\x76"
        !          40486:             "\xe6\x56\xe0\x26\x45\xe0\x45\x20\xf1\x15\xe0\x65\x10"
        !          40487:             "\x14\xe0\x84\x1f\x15\xe0\x85\x0f\x34\xe0\xa4\x0f\x15"
        !          40488:             "\xe0\x85\x14\xe0\x84\x10\xf1\x15\xe0\x65\x10\x25\xe0"
        !          40489:             "\x45\x46\xe0\x26\x56\xe6\x76\xc6\x98\x68\xbe\x06\xee"
        !          40490:             "\x02\xe0\x3e\xe0\x78\xc6" }  },
        !          40491:       /* --- pixel bitmap for cmsy600 char#15 \bullet --- */
        !          40492:       {  15,60538,                      /* character number, location */
        !          40493:          37, 5,    5, 5,      /* topleft row,col, and botleft row,col */
        !          40494:           { 32,   32, 3,101, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          40495:             "\xc8\xe0\x7e\xe0\x3e\x02\xee\x06\xbe\x08\x9e\x0a\x7e"
        !          40496:             "\x0c\x30\xf1\x2e\x0e\x20\xf2\x1e\x0e\x02\x1f\x7e\x0e"
        !          40497:             "\x04\xf2\x1e\x0e\x02\x10\xf1\x2e\x0e\x20\x3e\x0c\x7e"
        !          40498:             "\x0a\x9e\x08\xbe\x06\xee\x02\xe0\x3e\xe0\x78\xc5" }  },
        !          40499:       /* --- pixel bitmap for cmsy600 char#16 \asymp --- */
        !          40500:       {  16,61284,                      /* character number, location */
        !          40501:          40, 5,    2, 5,      /* topleft row,col, and botleft row,col */
        !          40502:           { 55,   38, 2,99, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          40503:             "\x01\x02\x31\x02\x01\x05\x2d\x0b\x2b\x06\x01\x06\x29"
        !          40504:             "\x06\x03\x07\x25\x07\x05\x08\x21\x08\x08\x08\x1d\x08"
        !          40505:             "\x0b\x09\x19\x09\x0e\x0a\x13\x0a\x12\x0c\x0b\x0c\x16"
        !          40506:             "\x1f\x1a\x1b\x1f\x15\x26\x0d\x15\x00\xff\x09\x37\x00"
        !          40507:             "\x15\x0d\x26\x15\x1f\x1b\x1a\x1f\x16\x0c\x0b\x0c\x12"
        !          40508:             "\x0a\x13\x0a\x0e\x09\x19\x09\x0b\x08\x1d\x08\x08\x08"
        !          40509:             "\x21\x08\x05\x07\x25\x07\x03\x06\x29\x06\x01\x06\x2b"
        !          40510:             "\x0b\x2d\x05\x01\x02\x31\x02\x01" }  },
        !          40511:       /* --- pixel bitmap for cmsy600 char#17 \equiv --- */
        !          40512:       {  17,45145,                      /* character number, location */
        !          40513:          41, 5,    1, 5,      /* topleft row,col, and botleft row,col */
        !          40514:           { 55,   40, 2,37, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          40515:             "\x01\x35\x01\xff\x01\x37\x01\x35\x01\x00\xff\x0d\x37"
        !          40516:             "\x00\x01\x35\x01\xff\x01\x37\x01\x35\x01\x00\xff\x0d"
        !          40517:             "\x37\x00\x01\x35\x01\xff\x01\x37\x01\x35\x01" }  },
        !          40518:       /* --- pixel bitmap for cmsy600 char#18 \subseteq --- */
        !          40519:       {  18,62097,                      /* character number, location */
        !          40520:          53, 7,  -15, 7,      /* topleft row,col, and botleft row,col */
        !          40521:           { 51,   68, 2,123, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          40522:             "\x14\x1e\x12\x22\x0e\x25\x0c\x26\x0c\x0a\x27\x09\x29"
        !          40523:             "\x07\x2b\x06\x2c\x06\x2c\x06\x2c\x06\x2d\x05\x2a\x00"
        !          40524:             "\xff\x01\x03\x05\x2b\x00\xff\x01\x02\x05\x2c\x00\xff"
        !          40525:             "\x01\x01\x05\x2d\x00\x01\x04\x2e\xff\x01\x05\x2e\xff"
        !          40526:             "\x07\x04\x2f\xff\x01\x05\x2e\x00\x01\x04\x2e\x00\xff"
        !          40527:             "\x01\x01\x05\x2d\x00\xff\x01\x02\x05\x2c\x00\xff\x01"
        !          40528:             "\x03\x05\x2b\x00\x04\x05\x2e\x06\x2e\x06\x2e\x06\x2e"
        !          40529:             "\x06\x2e\x07\x2d\x09\x2c\x0a\x2a\x26\x0f\x25\x11\x22"
        !          40530:             "\x14\x1e\x01\x00\xff\x0d\x33\x00\x03\x2f\x01\x00\xff"
        !          40531:             "\x01\x02\x31\x03\x2f\x01" }  },
        !          40532:       /* --- pixel bitmap for cmsy600 char#19 \supseteq --- */
        !          40533:       {  19,62924,                      /* character number, location */
        !          40534:          53, 7,  -15, 7,      /* topleft row,col, and botleft row,col */
        !          40535:           { 51,   68, 2,123, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          40536:             "\x01\x1e\x14\x22\x11\x25\x0f\x26\x2a\x0a\x2c\x09\x2d"
        !          40537:             "\x07\x2e\x06\x2e\x06\x2e\x06\x2e\x06\x2e\x05\x04\x00"
        !          40538:             "\xff\x01\x2b\x05\x03\x00\xff\x01\x2c\x05\x02\x00\xff"
        !          40539:             "\x01\x2d\x05\x01\x00\x2e\x04\x01\x00\xff\x01\x2e\x05"
        !          40540:             "\xff\x07\x2f\x04\xff\x01\x2e\x05\x2e\x04\x01\x00\xff"
        !          40541:             "\x01\x2d\x05\x01\x00\xff\x01\x2c\x05\x02\x00\xff\x01"
        !          40542:             "\x2b\x05\x03\x00\x2a\x05\x2d\x06\x2c\x06\x2c\x06\x2c"
        !          40543:             "\x06\x2b\x07\x29\x09\x27\x0a\x0c\x26\x0c\x25\x0e\x22"
        !          40544:             "\x12\x1e\x14\x00\xff\x0d\x33\x00\x01\x2f\x03\xff\x01"
        !          40545:             "\x31\x02\x00\x01\x2f\x03" }  },
        !          40546:       /* --- pixel bitmap for cmsy600 char#20 \leq --- */
        !          40547:       {  20,43527,                      /* character number, location */
        !          40548:          53, 7,  -15, 7,      /* topleft row,col, and botleft row,col */
        !          40549:           { 51,   68, 2,117, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          40550:             "\x2f\x03\x2e\x06\x2b\x08\x29\x09\x28\x09\x28\x09\x28"
        !          40551:             "\x09\x28\x09\x28\x09\x28\x09\x28\x09\x28\x09\x28\x09"
        !          40552:             "\x28\x09\x28\x09\x28\x09\x28\x09\x28\x09\x28\x09\x28"
        !          40553:             "\x09\x28\x09\x28\x09\x28\x09\x28\x09\x29\xff\x01\x08"
        !          40554:             "\x2b\x00\x01\x09\x2c\x09\x2c\x09\x2c\x09\x2c\x09\x2c"
        !          40555:             "\x09\x2c\x09\x2c\x09\x2c\x09\x2c\x09\x2c\x09\x2c\x09"
        !          40556:             "\x2c\x09\x2c\x09\x2c\x09\x2c\x09\x2c\x09\x2c\x09\x2c"
        !          40557:             "\x09\x2c\x09\x2c\x09\x2c\x08\x2d\x06\x2f\x03\x01\x00"
        !          40558:             "\xff\x0d\x33\x00\x01\x31\x01\xff\x01\x33\x01\x31\x01" }  },
        !          40559:       /* --- pixel bitmap for cmsy600 char#21 \geq --- */
        !          40560:       {  21,44328,                      /* character number, location */
        !          40561:          53, 7,  -15, 7,      /* topleft row,col, and botleft row,col */
        !          40562:           { 51,   68, 2,117, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          40563:             "\x01\x03\x2f\x06\x2d\x08\x2c\x09\x2c\x09\x2c\x09\x2c"
        !          40564:             "\x09\x2c\x09\x2c\x09\x2c\x09\x2c\x09\x2c\x09\x2c\x09"
        !          40565:             "\x2c\x09\x2c\x09\x2c\x09\x2c\x09\x2c\x09\x2c\x09\x2c"
        !          40566:             "\x09\x2c\x09\x2c\x09\x2c\x09\x2c\x09\x01\x00\xff\x01"
        !          40567:             "\x2b\x08\x29\x09\x28\x09\x28\x09\x28\x09\x28\x09\x28"
        !          40568:             "\x09\x28\x09\x28\x09\x28\x09\x28\x09\x28\x09\x28\x09"
        !          40569:             "\x28\x09\x28\x09\x28\x09\x28\x09\x28\x09\x28\x09\x28"
        !          40570:             "\x09\x28\x09\x28\x09\x29\x08\x2b\x06\x2e\x03\x2f\x00"
        !          40571:             "\xff\x0d\x33\x00\x01\x31\x01\xff\x01\x33\x01\x31\x01" }  },
        !          40572:       /* --- pixel bitmap for cmsy600 char#22 \preceq --- */
        !          40573:       {  22,63719,                      /* character number, location */
        !          40574:          53, 7,  -15, 7,      /* topleft row,col, and botleft row,col */
        !          40575:           { 51,   68, 2,129, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          40576:             "\x30\x02\x01\x00\xff\x02\x2f\x04\xff\x01\x2e\x05\x2e"
        !          40577:             "\x04\x01\x00\xff\x01\x2d\x05\x01\x00\xff\x01\x2c\x05"
        !          40578:             "\x02\x00\x2b\x05\x2d\x06\x2c\x06\x2c\x06\x2c\x06\x2b"
        !          40579:             "\x07\x2a\x08\x29\x08\x28\x0a\x25\x0c\x23\x0e\x1d\x14"
        !          40580:             "\x12\x1e\x14\xff\x01\x1b\x18\x00\x01\x1e\x22\x14\x27"
        !          40581:             "\x0e\x29\x0c\x2b\x0a\x2c\x08\x2d\x08\x2d\x07\x2e\x06"
        !          40582:             "\x2e\x06\x2e\x06\x2e\x06\x2e\x05\x03\x00\xff\x01\x2c"
        !          40583:             "\x05\x02\x00\xff\x01\x2d\x05\x01\x00\x2e\x04\x01\x00"
        !          40584:             "\xff\x01\x2e\x05\xff\x02\x2f\x04\x30\x02\x01\x00\xff"
        !          40585:             "\x0d\x33\x00\x01\x31\x01\xff\x01\x33\x01\x31\x01" }  },
        !          40586:       /* --- pixel bitmap for cmsy600 char#23 \succeq --- */
        !          40587:       {  23,64513,                      /* character number, location */
        !          40588:          53, 7,  -15, 7,      /* topleft row,col, and botleft row,col */
        !          40589:           { 51,   68, 2,129, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          40590:             "\x01\x02\x30\xff\x02\x04\x2f\xff\x01\x05\x2e\x00\x01"
        !          40591:             "\x04\x2e\x00\xff\x01\x01\x05\x2d\x00\xff\x01\x02\x05"
        !          40592:             "\x2c\x00\x03\x05\x2e\x06\x2e\x06\x2e\x06\x2e\x06\x2e"
        !          40593:             "\x07\x2d\x08\x2d\x08\x2c\x0a\x2b\x0c\x29\x0e\x27\x14"
        !          40594:             "\x22\x1e\x01\x00\xff\x01\x18\x1b\x14\x1e\x12\x14\x1d"
        !          40595:             "\x0e\x23\x0c\x25\x0a\x28\x08\x29\x08\x2a\x07\x2b\x06"
        !          40596:             "\x2c\x06\x2c\x06\x2c\x06\x2d\x05\x2b\x00\xff\x01\x02"
        !          40597:             "\x05\x2c\x00\xff\x01\x01\x05\x2d\x00\x01\x04\x2e\xff"
        !          40598:             "\x01\x05\x2e\xff\x02\x04\x2f\x00\x01\x02\x30\x00\xff"
        !          40599:             "\x0d\x33\x00\x01\x31\x01\xff\x01\x33\x01\x31\x01" }  },
        !          40600:       /* --- pixel bitmap for cmsy600 char#24 \sim --- */
        !          40601:       {  24,65285,                      /* character number, location */
        !          40602:          30, 5,   11, 5,      /* topleft row,col, and botleft row,col */
        !          40603:           { 55,   19, 3,167, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          40604:             "\xa7\xe0\xe0\x81\x9c\xe0\xe0\x43\x6e\x02\xe0\xe0\x23"
        !          40605:             "\x5e\x04\xe0\xe0\x13\x4e\x07\xe0\xd3\x3e\x09\xe0\xc3"
        !          40606:             "\x37\x7b\xe0\x94\x26\xc9\xe0\x83\x34\xe0\x28\xe0\x64"
        !          40607:             "\x24\xe0\x49\xe0\x44\x24\xe0\x68\xe0\x24\x33\xe0\x89"
        !          40608:             "\xc6\x24\xe0\xaa\x77\x33\xe0\xce\x09\x33\xe0\xde\x07"
        !          40609:             "\x43\xe0\xe0\x1e\x04\x53\xe0\xe0\x2e\x02\x63\xe0\xe0"
        !          40610:             "\x4c\x91\xe0\xe0\x87\xa0" }  },
        !          40611:       /* --- pixel bitmap for cmsy600 char#25 \approx --- */
        !          40612:       {  25,66107,                      /* character number, location */
        !          40613:          40, 5,    2, 5,      /* topleft row,col, and botleft row,col */
        !          40614:           { 55,   38, 3,317, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          40615:             "\xa7\xe0\xe0\x81\x9c\xe0\xe0\x43\x6e\x02\xe0\xe0\x23"
        !          40616:             "\x5e\x05\xe0\xe3\x4e\x07\xe0\xd3\x3e\x0a\xe0\xb3\x28"
        !          40617:             "\x7b\xe0\x94\x26\xca\xe0\x73\x25\xe0\x29\xe0\x54\x24"
        !          40618:             "\xe0\x59\xe0\x25\x23\xe0\x7a\xc6\x24\xe0\x9b\x78\x23"
        !          40619:             "\xe0\xbe\x0a\x33\xe0\xde\x07\x43\xe0\xee\x05\x53\xe0"
        !          40620:             "\xe0\x2e\x02\x63\xe0\xe0\x4c\x91\xe0\xe0\x87\xa0\xf1"
        !          40621:             "\xe0\xe0\xe0\xd0\xa7\xe0\xe0\x81\x9c\xe0\xe0\x43\x6e"
        !          40622:             "\x02\xe0\xe0\x23\x5e\x05\xe0\xe3\x4e\x07\xe0\xd3\x3e"
        !          40623:             "\x0a\xe0\xb3\x28\x7b\xe0\x94\x26\xca\xe0\x73\x25\xe0"
        !          40624:             "\x29\xe0\x54\x24\xe0\x59\xe0\x25\x23\xe0\x7a\xc6\x24"
        !          40625:             "\xe0\x9b\x78\x23\xe0\xbe\x0a\x33\xe0\xde\x07\x43\xe0"
        !          40626:             "\xee\x05\x53\xe0\xe0\x2e\x02\x63\xe0\xe0\x4c\x91\xe0"
        !          40627:             "\xe0\x87\xa0" }  },
        !          40628:       /* --- pixel bitmap for cmsy600 char#26 \subset --- */
        !          40629:       {  26,39077,                      /* character number, location */
        !          40630:          46, 7,   -4, 7,      /* topleft row,col, and botleft row,col */
        !          40631:           { 51,   50, 2,107, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          40632:             "\x14\x1e\x12\x22\x0e\x25\x0c\x26\x0c\x0a\x27\x09\x29"
        !          40633:             "\x07\x2b\x06\x2c\x06\x2c\x06\x2c\x06\x2d\x05\x2a\x00"
        !          40634:             "\xff\x01\x03\x05\x2b\x00\xff\x01\x02\x05\x2c\x00\xff"
        !          40635:             "\x01\x01\x05\x2d\x00\x01\x04\x2e\xff\x01\x05\x2e\xff"
        !          40636:             "\x07\x04\x2f\xff\x01\x05\x2e\x00\x01\x04\x2e\x00\xff"
        !          40637:             "\x01\x01\x05\x2d\x00\xff\x01\x02\x05\x2c\x00\xff\x01"
        !          40638:             "\x03\x05\x2b\x00\x04\x05\x2e\x06\x2e\x06\x2e\x06\x2e"
        !          40639:             "\x06\x2e\x07\x2d\x09\x2c\x0a\x2a\x26\x0f\x25\x11\x22"
        !          40640:             "\x14\x1e\x01" }  },
        !          40641:       /* --- pixel bitmap for cmsy600 char#27 \supset --- */
        !          40642:       {  27,39859,                      /* character number, location */
        !          40643:          46, 7,   -4, 7,      /* topleft row,col, and botleft row,col */
        !          40644:           { 51,   50, 2,107, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          40645:             "\x01\x1e\x14\x22\x11\x25\x0f\x26\x2a\x0a\x2c\x09\x2d"
        !          40646:             "\x07\x2e\x06\x2e\x06\x2e\x06\x2e\x06\x2e\x05\x04\x00"
        !          40647:             "\xff\x01\x2b\x05\x03\x00\xff\x01\x2c\x05\x02\x00\xff"
        !          40648:             "\x01\x2d\x05\x01\x00\x2e\x04\x01\x00\xff\x01\x2e\x05"
        !          40649:             "\xff\x07\x2f\x04\xff\x01\x2e\x05\x2e\x04\x01\x00\xff"
        !          40650:             "\x01\x2d\x05\x01\x00\xff\x01\x2c\x05\x02\x00\xff\x01"
        !          40651:             "\x2b\x05\x03\x00\x2a\x05\x2d\x06\x2c\x06\x2c\x06\x2c"
        !          40652:             "\x06\x2b\x07\x29\x09\x27\x0a\x0c\x26\x0c\x25\x0e\x22"
        !          40653:             "\x12\x1e\x14" }  },
        !          40654:       /* --- pixel bitmap for cmsy600 char#28 \ll --- */
        !          40655:       {  28,67072,                      /* character number, location */
        !          40656:          49, 5,   -6, 5,      /* topleft row,col, and botleft row,col */
        !          40657:           { 73,   55, 2,220, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          40658:             "\x2e\x01\x18\x01\x2d\x04\x15\x04\x2a\x06\x13\x06\x28"
        !          40659:             "\x08\x11\x08\x27\x08\x11\x08\x26\x08\x11\x08\x26\x08"
        !          40660:             "\x11\x08\x26\x08\x11\x08\x27\x08\x11\x08\x26\x08\x11"
        !          40661:             "\x08\x26\x08\x11\x08\x27\x07\x12\x07\x27\x08\x11\x08"
        !          40662:             "\x26\x08\x11\x08\x26\x08\x11\x08\x27\x08\x11\x08\x26"
        !          40663:             "\x08\x11\x08\x26\x08\x11\x08\x26\x08\x11\x08\x27\x08"
        !          40664:             "\x11\x08\x26\x08\x11\x08\x26\x08\x11\x08\x27\x07\x12"
        !          40665:             "\x07\x27\x08\x11\x08\x26\x08\x11\x08\x26\x08\x11\x08"
        !          40666:             "\x27\x08\x11\x08\x27\xff\x01\x07\x12\x07\x29\x00\x01"
        !          40667:             "\x08\x11\x08\x29\x08\x11\x08\x2a\x08\x11\x08\x2a\x08"
        !          40668:             "\x11\x08\x2a\x07\x12\x07\x2a\x08\x11\x08\x2a\x08\x11"
        !          40669:             "\x08\x2a\x08\x11\x08\x29\x08\x11\x08\x2a\x08\x11\x08"
        !          40670:             "\x2a\x08\x11\x08\x2a\x08\x11\x08\x29\x08\x11\x08\x2a"
        !          40671:             "\x08\x11\x08\x2a\x08\x11\x08\x2a\x07\x12\x07\x2a\x08"
        !          40672:             "\x11\x08\x2a\x08\x11\x08\x2a\x08\x11\x08\x29\x08\x11"
        !          40673:             "\x08\x2a\x08\x11\x08\x2a\x08\x11\x08\x2a\x08\x11\x08"
        !          40674:             "\x29\x08\x11\x08\x2a\x06\x13\x06\x2c\x04\x15\x04" }  },
        !          40675:       /* --- pixel bitmap for cmsy600 char#29 \gg --- */
        !          40676:       {  29,68090,                      /* character number, location */
        !          40677:          49, 5,   -6, 5,      /* topleft row,col, and botleft row,col */
        !          40678:           { 73,   55, 2,221, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          40679:             "\x01\x01\x18\x01\x2e\x04\x15\x04\x2c\x06\x13\x06\x2a"
        !          40680:             "\x08\x11\x08\x29\x08\x11\x08\x2a\x08\x11\x08\x2a\x08"
        !          40681:             "\x11\x08\x2a\x08\x11\x08\x29\x08\x11\x08\x2a\x08\x11"
        !          40682:             "\x08\x2a\x08\x11\x08\x2a\x07\x12\x07\x2a\x08\x11\x08"
        !          40683:             "\x2a\x08\x11\x08\x2a\x08\x11\x08\x29\x08\x11\x08\x2a"
        !          40684:             "\x08\x11\x08\x2a\x08\x11\x08\x2a\x08\x11\x08\x29\x08"
        !          40685:             "\x11\x08\x2a\x08\x11\x08\x2a\x08\x11\x08\x2a\x07\x12"
        !          40686:             "\x07\x2a\x08\x11\x08\x2a\x08\x11\x08\x2a\x08\x11\x08"
        !          40687:             "\x29\x08\x11\x08\x01\x00\xff\x01\x29\x07\x12\x07\x27"
        !          40688:             "\x08\x11\x08\x27\x08\x11\x08\x26\x08\x11\x08\x26\x08"
        !          40689:             "\x11\x08\x27\x07\x12\x07\x27\x08\x11\x08\x26\x08\x11"
        !          40690:             "\x08\x26\x08\x11\x08\x27\x08\x11\x08\x26\x08\x11\x08"
        !          40691:             "\x26\x08\x11\x08\x26\x08\x11\x08\x27\x08\x11\x08\x26"
        !          40692:             "\x08\x11\x08\x26\x08\x11\x08\x27\x07\x12\x07\x27\x08"
        !          40693:             "\x11\x08\x26\x08\x11\x08\x26\x08\x11\x08\x27\x08\x11"
        !          40694:             "\x08\x26\x08\x11\x08\x26\x08\x11\x08\x26\x08\x11\x08"
        !          40695:             "\x27\x08\x11\x08\x28\x06\x13\x06\x2a\x04\x15\x04\x2c" }  },
        !          40696:       /* --- pixel bitmap for cmsy600 char#30 \prec --- */
        !          40697:       {  30,68955,                      /* character number, location */
        !          40698:          45, 7,   -5, 7,      /* topleft row,col, and botleft row,col */
        !          40699:           { 51,   50, 2,115, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          40700:             "\x30\x02\x01\x00\xff\x02\x2f\x04\xff\x01\x2e\x05\x2e"
        !          40701:             "\x04\x01\x00\xff\x01\x2d\x05\x01\x00\xff\x01\x2c\x05"
        !          40702:             "\x02\x00\x2b\x05\x2d\x06\x2c\x06\x2c\x06\x2c\x06\x2b"
        !          40703:             "\x07\x2a\x08\x29\x08\x28\x0a\x25\x0c\x23\x0e\x1d\x14"
        !          40704:             "\x12\x1e\x14\xff\x01\x1b\x18\x00\x01\x1e\x22\x14\x27"
        !          40705:             "\x0e\x29\x0c\x2b\x0a\x2c\x08\x2d\x08\x2d\x07\x2e\x06"
        !          40706:             "\x2e\x06\x2e\x06\x2e\x06\x2e\x05\x03\x00\xff\x01\x2c"
        !          40707:             "\x05\x02\x00\xff\x01\x2d\x05\x01\x00\x2e\x04\x01\x00"
        !          40708:             "\xff\x01\x2e\x05\xff\x02\x2f\x04\x30\x02\x01" }  },
        !          40709:       /* --- pixel bitmap for cmsy600 char#31 \succ --- */
        !          40710:       {  31,69699,                      /* character number, location */
        !          40711:          45, 7,   -5, 7,      /* topleft row,col, and botleft row,col */
        !          40712:           { 51,   50, 2,115, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          40713:             "\x01\x02\x30\xff\x02\x04\x2f\xff\x01\x05\x2e\x00\x01"
        !          40714:             "\x04\x2e\x00\xff\x01\x01\x05\x2d\x00\xff\x01\x02\x05"
        !          40715:             "\x2c\x00\x03\x05\x2e\x06\x2e\x06\x2e\x06\x2e\x06\x2e"
        !          40716:             "\x07\x2d\x08\x2d\x08\x2c\x0a\x2b\x0c\x29\x0e\x27\x14"
        !          40717:             "\x22\x1e\x01\x00\xff\x01\x18\x1b\x14\x1e\x12\x14\x1d"
        !          40718:             "\x0e\x23\x0c\x25\x0a\x28\x08\x29\x08\x2a\x07\x2b\x06"
        !          40719:             "\x2c\x06\x2c\x06\x2c\x06\x2d\x05\x2b\x00\xff\x01\x02"
        !          40720:             "\x05\x2c\x00\xff\x01\x01\x05\x2d\x00\x01\x04\x2e\xff"
        !          40721:             "\x01\x05\x2e\xff\x02\x04\x2f\x00\x01\x02\x30" }  },
        !          40722:       /* --- pixel bitmap for cmsy600 char#32 \leftarrow --- */
        !          40723:       {  32,35668,                      /* character number, location */
        !          40724:          43, 5,   -1, 5,      /* topleft row,col, and botleft row,col */
        !          40725:           { 73,   44, 2,101, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          40726:             "\x12\x03\x34\x00\xff\x02\x11\x04\x34\x00\x10\x05\x34"
        !          40727:             "\x00\xff\x01\x10\x04\x35\x00\x0f\x05\x44\x04\x44\x05"
        !          40728:             "\x44\x04\x44\x05\x43\x05\x43\x06\x43\x05\x43\x05\x42"
        !          40729:             "\x06\x42\x06\x42\x06\x41\x07\x40\x46\x01\xff\x01\x49"
        !          40730:             "\x02\x46\x05\x07\x44\x06\x44\x06\x44\x06\x45\x05\x45"
        !          40731:             "\x05\x44\x06\x44\x05\x45\x05\x45\x04\x45\x05\x45\x04"
        !          40732:             "\x45\x05\x35\x00\xff\x01\x10\x04\x35\x00\x10\x05\x34"
        !          40733:             "\x00\xff\x02\x11\x04\x34\x00\x12\x03\x34" }  },
        !          40734:       /* --- pixel bitmap for cmsy600 char#33 \rightarrow --- */
        !          40735:       {  33,36778,                      /* character number, location */
        !          40736:          43, 5,   -1, 5,      /* topleft row,col, and botleft row,col */
        !          40737:           { 73,   44, 2,101, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          40738:             "\x34\x03\x12\x00\xff\x02\x34\x04\x11\x00\x34\x05\x10"
        !          40739:             "\x00\xff\x01\x35\x04\x10\x00\x35\x05\x45\x04\x45\x05"
        !          40740:             "\x45\x04\x45\x05\x45\x05\x44\x06\x44\x05\x45\x05\x45"
        !          40741:             "\x06\x44\x06\x44\x06\x44\x07\x05\x46\x02\xff\x01\x49"
        !          40742:             "\x01\x46\x40\x07\x41\x06\x42\x06\x42\x06\x42\x05\x43"
        !          40743:             "\x05\x43\x06\x43\x05\x43\x05\x44\x04\x44\x05\x44\x04"
        !          40744:             "\x44\x05\x0f\x00\xff\x01\x35\x04\x10\x00\x34\x05\x10"
        !          40745:             "\x00\xff\x02\x34\x04\x11\x00\x34\x03\x12" }  },
        !          40746:       /* --- pixel bitmap for cmsy600 char#34 \uparrow --- */
        !          40747:       {  34,34463,                      /* character number, location */
        !          40748:          58, 1,  -16, 1,      /* topleft row,col, and botleft row,col */
        !          40749:           { 40,   74, 3,175, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          40750:             "\xf2\xe0\x52\xe0\x50\xf2\xe0\x44\xe0\x40\xf1\xe0\x36"
        !          40751:             "\xe0\x30\xf1\xe0\x28\xe0\x20\xe0\x1a\xe0\xe0\x1c\xe0"
        !          40752:             "\xf1\xde\xd0\xc5\x14\x15\xe0\x86\x24\x26\xe0\x56\x34"
        !          40753:             "\x36\xe0\x36\x44\x46\xe7\x54\x57\x98\x74\x78\x3a\x84"
        !          40754:             "\x8e\x04\xa4\xae\xc4\xc6\x12\xe0\x14\xe0\x12\x10\xfe"
        !          40755:             "\xe0\x44\xe0\x40\xfe\xe0\x44\xe0\x40\xfe\xe0\x44\xe0"
        !          40756:             "\x40\xf3\xe0\x44\xe0\x40\xe0\x52\xe0\x50" }  },
        !          40757:       /* --- pixel bitmap for cmsy600 char#35 \downarrow --- */
        !          40758:       {  35,33494,                      /* character number, location */
        !          40759:          58, 1,  -16, 1,      /* topleft row,col, and botleft row,col */
        !          40760:           { 40,   74, 3,175, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          40761:             "\xe0\x52\xe0\x50\xfe\xe0\x44\xe0\x40\xfe\xe0\x44\xe0"
        !          40762:             "\x40\xfe\xe0\x44\xe0\x40\xf3\xe0\x44\xe0\x40\x12\xe0"
        !          40763:             "\x14\xe0\x12\x16\xc4\xce\xa4\xae\x04\x84\x8a\x38\x74"
        !          40764:             "\x78\x97\x54\x57\xe6\x44\x46\xe0\x36\x34\x36\xe0\x56"
        !          40765:             "\x24\x26\xe0\x85\x14\x15\xc0\xf1\xde\xd0\xec\xe0\xe0"
        !          40766:             "\x1a\xe0\x10\xf1\xe0\x28\xe0\x20\xf1\xe0\x36\xe0\x30"
        !          40767:             "\xf2\xe0\x44\xe0\x40\xf2\xe0\x52\xe0\x50" }  },
        !          40768:       /* --- pixel bitmap for cmsy600 char#36 \leftrightarrow --- */
        !          40769:       {  36,38225,                      /* character number, location */
        !          40770:          43, 5,   -1, 5,      /* topleft row,col, and botleft row,col */
        !          40771:           { 73,   44, 2,169, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          40772:             "\x12\x03\x1f\x03\x12\x00\xff\x02\x11\x04\x1f\x04\x11"
        !          40773:             "\x00\x10\x05\x1f\x05\x10\x00\xff\x01\x10\x04\x21\x04"
        !          40774:             "\x10\x00\x0f\x05\x21\x05\x1e\x04\x23\x04\x1d\x05\x23"
        !          40775:             "\x05\x1c\x04\x25\x04\x1b\x05\x25\x05\x19\x05\x27\x05"
        !          40776:             "\x17\x06\x27\x06\x16\x05\x29\x05\x15\x05\x2b\x05\x12"
        !          40777:             "\x06\x2d\x06\x0f\x06\x2f\x06\x0d\x06\x31\x06\x0a\x07"
        !          40778:             "\x33\x07\x06\x45\x02\xff\x01\x49\x02\x45\x06\x07\x33"
        !          40779:             "\x07\x0a\x06\x31\x06\x0d\x06\x2f\x06\x0f\x06\x2d\x06"
        !          40780:             "\x12\x05\x2b\x05\x15\x05\x29\x05\x16\x06\x27\x06\x17"
        !          40781:             "\x05\x27\x05\x19\x05\x25\x05\x1b\x04\x25\x04\x1c\x05"
        !          40782:             "\x23\x05\x1d\x04\x23\x04\x1e\x05\x21\x05\x0f\x00\xff"
        !          40783:             "\x01\x10\x04\x21\x04\x10\x00\x10\x05\x1f\x05\x10\x00"
        !          40784:             "\xff\x02\x11\x04\x1f\x04\x11\x00\x12\x03\x1f\x03\x12" }  },
        !          40785:       /* --- pixel bitmap for cmsy600 char#37 \nearrow --- */
        !          40786:       {  37,70817,                      /* character number, location */
        !          40787:          60, 5,  -15, 5,      /* topleft row,col, and botleft row,col */
        !          40788:           { 75,   75, 2,199, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          40789:             "\x2b\x04\x46\x06\x46\x07\x15\x02\x2e\x09\x0f\x05\x30"
        !          40790:             "\x0e\x01\x0c\x32\x18\x35\x16\x38\x13\x43\x07\x43\x08"
        !          40791:             "\x42\x09\x41\x05\x01\x04\x40\x05\x02\x04\x3f\x05\x03"
        !          40792:             "\x04\x3e\x05\x04\x03\x3e\x05\x05\x04\x3c\x05\x06\x04"
        !          40793:             "\x3b\x05\x07\x04\x3a\x05\x08\x04\x39\x05\x09\x04\x38"
        !          40794:             "\x05\x0a\x04\x37\x05\x0b\x05\x35\x05\x0d\x04\x34\x05"
        !          40795:             "\x0e\x04\x33\x05\x0f\x05\x31\x05\x11\x04\x30\x05\x12"
        !          40796:             "\x05\x2e\x05\x13\x05\x2d\x05\x15\x05\x2b\x05\x16\x05"
        !          40797:             "\x2a\x05\x18\x04\x29\x05\x1a\x03\x28\x05\x45\x05\x45"
        !          40798:             "\x05\x45\x05\x45\x05\x45\x05\x45\x05\x45\x05\x45\x05"
        !          40799:             "\x45\x05\x45\x05\x45\x05\x45\x05\x45\x05\x45\x05\x45"
        !          40800:             "\x05\x45\x05\x45\x05\x45\x05\x45\x05\x45\x05\x45\x05"
        !          40801:             "\x45\x05\x45\x05\x45\x05\x45\x05\x45\x05\x45\x05\x45"
        !          40802:             "\x05\x45\x05\x45\x05\x45\x05\x45\x05\x45\x05\x45\x05"
        !          40803:             "\x45\x05\x45\x05\x45\x05\x45\x05\x45\x05\x45\x05\x46"
        !          40804:             "\x04\x48\x02\x48" }  },
        !          40805:       /* --- pixel bitmap for cmsy600 char#38 \searrow --- */
        !          40806:       {  38,72033,                      /* character number, location */
        !          40807:          57, 5,  -18, 5,      /* topleft row,col, and botleft row,col */
        !          40808:           { 75,   75, 2,199, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          40809:             "\x01\x02\x48\x04\x47\x05\x47\x05\x47\x05\x47\x05\x47"
        !          40810:             "\x05\x47\x05\x47\x05\x47\x05\x47\x05\x47\x05\x47\x05"
        !          40811:             "\x47\x05\x47\x05\x47\x05\x47\x05\x47\x05\x47\x05\x47"
        !          40812:             "\x05\x47\x05\x47\x05\x47\x05\x47\x05\x47\x05\x47\x05"
        !          40813:             "\x47\x05\x47\x05\x47\x05\x47\x05\x47\x05\x47\x05\x47"
        !          40814:             "\x05\x47\x05\x47\x05\x47\x05\x47\x05\x47\x05\x47\x05"
        !          40815:             "\x47\x05\x47\x05\x47\x05\x47\x05\x47\x05\x1a\x03\x2a"
        !          40816:             "\x05\x18\x04\x2b\x05\x16\x05\x2c\x05\x15\x05\x2d\x05"
        !          40817:             "\x13\x05\x2f\x05\x12\x05\x30\x05\x11\x04\x32\x05\x0f"
        !          40818:             "\x05\x33\x05\x0e\x04\x35\x05\x0d\x04\x36\x05\x0b\x05"
        !          40819:             "\x37\x05\x0a\x04\x39\x05\x09\x04\x3a\x05\x08\x04\x3b"
        !          40820:             "\x05\x07\x04\x3c\x05\x06\x04\x3d\x05\x05\x04\x3e\x05"
        !          40821:             "\x04\x03\x40\x05\x03\x04\x40\x05\x02\x04\x41\x05\x01"
        !          40822:             "\x04\x42\x09\x43\x08\x44\x07\x39\x13\x35\x16\x33\x18"
        !          40823:             "\x31\x0e\x01\x0c\x2e\x09\x0f\x05\x2d\x07\x15\x02\x2c"
        !          40824:             "\x06\x46\x04\x1c" }  },
        !          40825:       /* --- pixel bitmap for cmsy600 char#39 \simeq --- */
        !          40826:       {  39,72929,                      /* character number, location */
        !          40827:          38, 5,    1, 5,      /* topleft row,col, and botleft row,col */
        !          40828:           { 55,   37, 2,93, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          40829:             "\x0a\x07\x24\x01\x08\x0d\x20\x03\x06\x10\x1e\x03\x05"
        !          40830:             "\x13\x1c\x03\x04\x16\x1a\x03\x03\x18\x18\x04\x02\x08"
        !          40831:             "\x07\x0c\x16\x04\x02\x05\x0d\x0b\x13\x04\x02\x05\x10"
        !          40832:             "\x0b\x10\x05\x02\x04\x13\x0b\x0d\x05\x02\x04\x16\x0c"
        !          40833:             "\x07\x08\x02\x04\x17\x19\x03\x03\x1a\x16\x04\x03\x1c"
        !          40834:             "\x13\x05\x03\x1e\x10\x06\x03\x20\x0d\x08\x01\x24\x07"
        !          40835:             "\x0a\x00\xff\x0f\x37\x00\x01\x35\x01\xff\x01\x37\x01"
        !          40836:             "\x35\x01" }  },
        !          40837:       /* --- pixel bitmap for cmsy600 char#40 \Leftarrow --- */
        !          40838:       {  40,74007,                      /* character number, location */
        !          40839:          45, 5,   -3, 5,      /* topleft row,col, and botleft row,col */
        !          40840:           { 73,   48, 2,99, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          40841:             "\x1b\x04\x44\x05\x44\x04\x44\x05\x44\x04\x44\x05\x43"
        !          40842:             "\x05\x44\x04\x44\x05\x43\x05\x43\x05\x43\x05\x43\x06"
        !          40843:             "\x42\x37\x11\x39\x0f\x3a\x0e\x3a\x0e\x05\x42\x06\x41"
        !          40844:             "\x07\x41\x06\x40\x08\x3f\x08\x3e\xff\x01\x09\x40\x00"
        !          40845:             "\x03\x08\x43\x08\x44\x06\x44\x07\x44\x06\x45\x05\x45"
        !          40846:             "\x3a\x10\x3a\x10\x39\x11\x37\x13\x06\x44\x05\x45\x05"
        !          40847:             "\x45\x05\x45\x05\x45\x04\x45\x05\x45\x05\x45\x04\x45"
        !          40848:             "\x05\x45\x04\x45\x05\x45\x04\x2a" }  },
        !          40849:       /* --- pixel bitmap for cmsy600 char#41 \Rightarrow --- */
        !          40850:       {  41,75094,                      /* character number, location */
        !          40851:          45, 5,   -3, 5,      /* topleft row,col, and botleft row,col */
        !          40852:           { 73,   48, 2,99, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          40853:             "\x2a\x04\x45\x05\x45\x04\x45\x05\x45\x04\x45\x05\x45"
        !          40854:             "\x05\x45\x04\x45\x05\x45\x05\x45\x05\x45\x05\x44\x06"
        !          40855:             "\x13\x37\x11\x39\x10\x3a\x10\x3a\x45\x05\x45\x06\x44"
        !          40856:             "\x07\x44\x06\x44\x08\x43\x08\x03\x00\xff\x01\x40\x09"
        !          40857:             "\x3e\x08\x3f\x08\x40\x06\x41\x07\x41\x06\x42\x05\x0e"
        !          40858:             "\x3a\x0e\x3a\x0f\x39\x11\x37\x42\x06\x43\x05\x43\x05"
        !          40859:             "\x43\x05\x43\x05\x44\x04\x44\x05\x43\x05\x44\x04\x44"
        !          40860:             "\x05\x44\x04\x44\x05\x44\x04\x1b" }  },
        !          40861:       /* --- pixel bitmap for cmsy600 char#42 \Uparrow --- */
        !          40862:       {  42,75996,                      /* character number, location */
        !          40863:          58, 2,  -16, 2,      /* topleft row,col, and botleft row,col */
        !          40864:           { 48,   74, 3,223, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          40865:             "\xf1\xe0\x92\xe0\x90\xf2\xe0\x84\xe0\x80\xf1\xe0\x76"
        !          40866:             "\xe0\x70\xf1\xe0\x68\xe0\x60\xe0\x5a\xe0\xe0\xa4\x24"
        !          40867:             "\xe0\xe0\x95\x25\xe0\xe0\x75\x45\xe0\xe0\x64\x64\xe0"
        !          40868:             "\xe0\x55\x65\xe0\xe0\x35\x85\xe0\xe0\x15\xa5\xe0\xe4"
        !          40869:             "\xc4\xe0\xd5\xc5\xe0\xb5\xe5\xe0\x87\xe7\xe0\x58\xe8"
        !          40870:             "\xe0\x39\xe9\xe0\x1a\xea\xc6\x24\xe4\x26\x96\x34\xe4"
        !          40871:             "\x36\x67\x44\xe4\x47\x27\x64\xe4\x6d\x74\xe4\x7a\x94"
        !          40872:             "\xe4\x96\xb4\xe4\xb2\xfe\xd4\xe4\xd0\xfe\xd4\xe4\xd0"
        !          40873:             "\xfb\xd4\xe4\xd0\xe2\xe0\x22\xe0" }  },
        !          40874:       /* --- pixel bitmap for cmsy600 char#43 \Downarrow --- */
        !          40875:       {  43,77108,                      /* character number, location */
        !          40876:          58, 2,  -16, 2,      /* topleft row,col, and botleft row,col */
        !          40877:           { 48,   74, 3,223, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          40878:             "\xe2\xe0\x22\xe0\xfe\xd4\xe4\xd0\xfe\xd4\xe4\xd0\xfb"
        !          40879:             "\xd4\xe4\xd2\xb4\xe4\xb6\x94\xe4\x9a\x74\xe4\x7d\x64"
        !          40880:             "\xe4\x67\x27\x44\xe4\x47\x66\x34\xe4\x36\x96\x24\xe4"
        !          40881:             "\x26\xca\xea\xe0\x19\xe9\xe0\x38\xe8\xe0\x57\xe7\xe0"
        !          40882:             "\x85\xe5\xe0\xb5\xc5\xe0\xd4\xc4\xe0\xe5\xa5\xe0\xe0"
        !          40883:             "\x15\x85\xe0\xe0\x35\x65\xe0\xe0\x54\x64\xe0\xe0\x65"
        !          40884:             "\x45\xe0\xe0\x75\x25\xe0\xe0\x94\x24\xe0\xe0\xaa\xe0"
        !          40885:             "\x50\xf1\xe0\x68\xe0\x60\xf1\xe0\x76\xe0\x70\xf2\xe0"
        !          40886:             "\x84\xe0\x80\xf1\xe0\x92\xe0\x90" }  },
        !          40887:       /* --- pixel bitmap for cmsy600 char#44 \Leftrightarrow --- */
        !          40888:       {  44,78640,                      /* character number, location */
        !          40889:          45, 3,   -3, 3,      /* topleft row,col, and botleft row,col */
        !          40890:           { 77,   48, 2,175, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          40891:             "\xff\x01\x16\x04\x19\x04\x16\x00\x15\x05\x19\x05\x2a"
        !          40892:             "\x04\x1b\x04\x29\x05\x1b\x05\x28\x04\x1d\x04\x27\x05"
        !          40893:             "\x1d\x05\x26\x04\x1f\x04\x25\x05\x1f\x05\x23\x05\x21"
        !          40894:             "\x05\x22\x04\x23\x04\x21\x05\x23\x05\x1f\x05\x25\x05"
        !          40895:             "\x1d\x31\x1b\x33\x19\x35\x17\x37\x15\x06\x2d\x06\x13"
        !          40896:             "\x06\x2f\x06\x10\x06\x33\x06\x0d\x06\x35\x06\x0a\x07"
        !          40897:             "\x37\x07\x06\x07\x3b\x07\x02\xff\x01\x08\x3d\x08\x02"
        !          40898:             "\x07\x3b\x07\x06\x07\x37\x07\x0a\x06\x35\x06\x0d\x06"
        !          40899:             "\x33\x06\x10\x06\x2f\x06\x13\x06\x2d\x06\x15\x37\x17"
        !          40900:             "\x35\x19\x33\x1b\x31\x1d\x05\x25\x05\x1f\x05\x23\x05"
        !          40901:             "\x21\x04\x23\x04\x22\x05\x21\x05\x23\x05\x1f\x05\x25"
        !          40902:             "\x04\x1f\x04\x26\x05\x1d\x05\x27\x04\x1d\x04\x28\x05"
        !          40903:             "\x1b\x05\x29\x04\x1b\x04\x2a\x05\x19\x05\x15\x00\xff"
        !          40904:             "\x01\x16\x04\x19\x04\x16" }  },
        !          40905:       /* --- pixel bitmap for cmsy600 char#45 \nwarrow --- */
        !          40906:       {  45,79834,                      /* character number, location */
        !          40907:          60, 3,  -15, 3,      /* topleft row,col, and botleft row,col */
        !          40908:           { 75,   75, 2,199, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          40909:             "\x1c\x04\x46\x06\x2c\x02\x15\x07\x2d\x05\x0f\x09\x2e"
        !          40910:             "\x0c\x01\x0e\x31\x18\x33\x16\x35\x13\x39\x07\x44\x08"
        !          40911:             "\x43\x09\x42\x04\x01\x05\x41\x04\x02\x05\x40\x04\x03"
        !          40912:             "\x05\x40\x03\x04\x05\x3e\x04\x05\x05\x3d\x04\x06\x05"
        !          40913:             "\x3c\x04\x07\x05\x3b\x04\x08\x05\x3a\x04\x09\x05\x39"
        !          40914:             "\x04\x0a\x05\x37\x05\x0b\x05\x36\x04\x0d\x05\x35\x04"
        !          40915:             "\x0e\x05\x33\x05\x0f\x05\x32\x04\x11\x05\x30\x05\x12"
        !          40916:             "\x05\x2f\x05\x13\x05\x2d\x05\x15\x05\x2c\x05\x16\x05"
        !          40917:             "\x2b\x04\x18\x05\x2a\x03\x1a\x05\x47\x05\x47\x05\x47"
        !          40918:             "\x05\x47\x05\x47\x05\x47\x05\x47\x05\x47\x05\x47\x05"
        !          40919:             "\x47\x05\x47\x05\x47\x05\x47\x05\x47\x05\x47\x05\x47"
        !          40920:             "\x05\x47\x05\x47\x05\x47\x05\x47\x05\x47\x05\x47\x05"
        !          40921:             "\x47\x05\x47\x05\x47\x05\x47\x05\x47\x05\x47\x05\x47"
        !          40922:             "\x05\x47\x05\x47\x05\x47\x05\x47\x05\x47\x05\x47\x05"
        !          40923:             "\x47\x05\x47\x05\x47\x05\x47\x05\x47\x05\x47\x05\x47"
        !          40924:             "\x04\x48\x02\x01" }  },
        !          40925:       /* --- pixel bitmap for cmsy600 char#46 \swarrow --- */
        !          40926:       {  46,81050,                      /* character number, location */
        !          40927:          57, 3,  -18, 3,      /* topleft row,col, and botleft row,col */
        !          40928:           { 75,   75, 2,199, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          40929:             "\x48\x02\x48\x04\x46\x05\x45\x05\x45\x05\x45\x05\x45"
        !          40930:             "\x05\x45\x05\x45\x05\x45\x05\x45\x05\x45\x05\x45\x05"
        !          40931:             "\x45\x05\x45\x05\x45\x05\x45\x05\x45\x05\x45\x05\x45"
        !          40932:             "\x05\x45\x05\x45\x05\x45\x05\x45\x05\x45\x05\x45\x05"
        !          40933:             "\x45\x05\x45\x05\x45\x05\x45\x05\x45\x05\x45\x05\x45"
        !          40934:             "\x05\x45\x05\x45\x05\x45\x05\x45\x05\x45\x05\x45\x05"
        !          40935:             "\x45\x05\x45\x05\x45\x05\x45\x05\x28\x03\x1a\x05\x29"
        !          40936:             "\x04\x18\x05\x2a\x05\x16\x05\x2b\x05\x15\x05\x2d\x05"
        !          40937:             "\x13\x05\x2e\x05\x12\x05\x30\x04\x11\x05\x31\x05\x0f"
        !          40938:             "\x05\x33\x04\x0e\x05\x34\x04\x0d\x05\x35\x05\x0b\x05"
        !          40939:             "\x37\x04\x0a\x05\x38\x04\x09\x05\x39\x04\x08\x05\x3a"
        !          40940:             "\x04\x07\x05\x3b\x04\x06\x05\x3c\x04\x05\x05\x3e\x03"
        !          40941:             "\x04\x05\x3e\x04\x03\x05\x3f\x04\x02\x05\x40\x04\x01"
        !          40942:             "\x05\x41\x09\x42\x08\x43\x07\x43\x13\x38\x16\x35\x18"
        !          40943:             "\x32\x0c\x01\x0e\x30\x05\x0f\x09\x2e\x02\x15\x07\x46"
        !          40944:             "\x06\x46\x04\x2b" }  },
        !          40945:       /* --- pixel bitmap for cmsy600 char#47 \propto --- */
        !          40946:       {  47,82279,                      /* character number, location */
        !          40947:          37, 5,   -1, 5,      /* topleft row,col, and botleft row,col */
        !          40948:           { 56,   38, 3,320, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          40949:             "\xb7\xe0\xe0\x37\x9c\xe0\xba\x7e\x02\xe0\x7c\x6e\x05"
        !          40950:             "\xe0\x36\xd5\x79\xe0\x15\xe4\xb8\xd5\xe4\xd8\xb5\xe0"
        !          40951:             "\x13\xe0\x18\x94\xe0\x23\xe0\x38\x75\xe0\x23\xe0\x48"
        !          40952:             "\x64\xe0\x23\xe0\x68\x44\xe0\x33\xe0\x77\x34\xe0\x42"
        !          40953:             "\xe0\x97\x24\xe0\x42\xe0\x9c\xe0\x43\xe0\xaa\xe0\x52"
        !          40954:             "\xe0\xc9\xe0\x52\xe0\xc8\xe0\x62\xe0\xd7\xe0\x62\xe0"
        !          40955:             "\xd8\xe0\x52\xe0\xe8\xe0\x42\xe0\xe0\x17\xe0\x42\xe0"
        !          40956:             "\xe0\x18\xe0\x32\xe0\xe9\xe0\x33\xe0\xda\xe0\x23\xe0"
        !          40957:             "\xcc\xe0\x22\xe0\xb4\x27\xe0\x22\xe0\xb4\x37\xe0\x13"
        !          40958:             "\xe0\x94\x48\xe0\x12\xe0\x84\x68\xe3\xe0\x65\x78\xe2"
        !          40959:             "\xe0\x64\x98\xd3\xe0\x35\xb8\xd3\xe0\x15\xd8\xd3\xd5"
        !          40960:             "\xe0\x19\xc4\x96\xe0\x3e\x7e\x02\xe0\x7c\x9c\xe0\xba"
        !          40961:             "\xb7\xe0\xe0\x37" }  },
        !          40962:       /* --- pixel bitmap for cmsy600 char#48 \prime --- */
        !          40963:       {  48,82959,                      /* character number, location */
        !          40964:          46, 2,    4, 2,      /* topleft row,col, and botleft row,col */
        !          40965:           { 20,   42, 3,121, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          40966:             "\xd5\xe7\x10\xf2\xb9\xf1\xaa\xf1\xa9\x10\xf1\x99\x20"
        !          40967:             "\x98\x30\xf1\x89\x30\x88\xb9\x40\xf1\x78\x50\x77\xc8"
        !          40968:             "\x60\xf1\x67\x70\x58\x70\xf1\x57\x80\xf1\x47\x90\xf1"
        !          40969:             "\x46\xa0\xf2\x36\xb0\xf1\x26\xc0\x25\xe6\xd0\xf1\x15"
        !          40970:             "\xe0\x14\xe0\x1f\x15\xe0\x14\xe0\x23" }  },
        !          40971:       /* --- pixel bitmap for cmsy600 char#49 \infty --- */
        !          40972:       {  49,50638,                      /* character number, location */
        !          40973:          37, 5,   -1, 5,      /* topleft row,col, and botleft row,col */
        !          40974:           { 73,   38, 3,405, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          40975:             "\xc8\xe0\xe0\x58\xe0\x8d\xe0\xec\xe0\x4e\x03\xe0\xae"
        !          40976:             "\x02\xee\x07\xe0\x67\x85\xb7\x5b\xe0\x36\xd4\x95\xba"
        !          40977:             "\xe5\xe0\x24\x84\xda\xc5\xe0\x43\x74\xe0\x1a\xa5\xe0"
        !          40978:             "\x63\x54\xe0\x3a\x85\xe0\x83\x43\xe0\x5a\x65\xe0\x93"
        !          40979:             "\x42\xe0\x79\x64\xe0\xb3\x23\xe0\x89\x44\xe0\xc3\x22"
        !          40980:             "\xe0\xa9\x25\xe0\xd2\x22\xe0\xbe\xe0\xe2\x13\xe0\xcc"
        !          40981:             "\xe0\xe0\x15\xe0\xdc\xe0\xe0\x24\xe0\xea\xe0\xe0\x34"
        !          40982:             "\xe0\xe0\x19\xe0\xe0\x32\x0f\x12\xe0\xe0\x29\xe0\xe0"
        !          40983:             "\x22\x02\xe0\xe0\x39\xe0\xe0\x14\xe0\xe0\x3a\xe0\xe4"
        !          40984:             "\xe0\xe0\x2c\xe0\xd5\xe0\xe0\x1c\xe0\xc3\x12\xe0\xee"
        !          40985:             "\xe0\xb2\x22\xe0\xd5\x29\xe0\xa2\x23\xe0\xc4\x49\xe0"
        !          40986:             "\x83\x23\xe0\xb4\x69\xe0\x72\x43\xe0\x95\x6a\xe0\x53"
        !          40987:             "\x43\xe0\x85\x8a\xe0\x34\x53\xe0\x65\xaa\xe0\x14\x73"
        !          40988:             "\xe0\x45\xca\xd4\x84\xe0\x25\xea\xb5\x94\xd6\xe0\x3b"
        !          40989:             "\x57\xb5\x87\xe0\x6e\x07\xee\x02\xe0\xae\x03\xe0\x4c"
        !          40990:             "\xe0\xed\xe0\x88\xe0\xe0\x58\xc0" }  },
        !          40991:       /* --- pixel bitmap for cmsy600 char#50 \in --- */
        !          40992:       {  50,40596,                      /* character number, location */
        !          40993:          46, 7,   -4, 7,      /* topleft row,col, and botleft row,col */
        !          40994:           { 41,   50, 2,119, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          40995:             "\x14\x14\x11\x19\x0e\x1b\x0c\x1c\x0c\x0a\x1d\x08\x20"
        !          40996:             "\x07\x21\x06\x22\x06\x22\x06\x22\x06\x23\x05\x20\x00"
        !          40997:             "\xff\x01\x03\x05\x21\x00\xff\x01\x02\x05\x22\x00\xff"
        !          40998:             "\x01\x01\x05\x23\x00\x01\x04\x24\xff\x01\x05\x24\xff"
        !          40999:             "\x01\x04\x25\x28\x01\xff\x01\x29\x00\x28\x01\xff\x01"
        !          41000:             "\x04\x25\xff\x01\x05\x24\x00\x01\x04\x24\x00\xff\x01"
        !          41001:             "\x01\x05\x23\x00\xff\x01\x02\x05\x22\x00\xff\x01\x03"
        !          41002:             "\x05\x21\x00\x04\x05\x24\x06\x24\x06\x24\x06\x24\x06"
        !          41003:             "\x24\x07\x23\x08\x23\x0a\x20\x1c\x0f\x1b\x10\x19\x14"
        !          41004:             "\x14\x01" }  },
        !          41005:       /* --- pixel bitmap for cmsy600 char#51 \ni --- */
        !          41006:       {  51,83682,                      /* character number, location */
        !          41007:          46, 7,   -4, 7,      /* topleft row,col, and botleft row,col */
        !          41008:           { 41,   50, 2,119, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          41009:             "\x01\x14\x14\x19\x10\x1b\x0f\x1c\x20\x0a\x23\x08\x23"
        !          41010:             "\x07\x24\x06\x24\x06\x24\x06\x24\x06\x24\x05\x04\x00"
        !          41011:             "\xff\x01\x21\x05\x03\x00\xff\x01\x22\x05\x02\x00\xff"
        !          41012:             "\x01\x23\x05\x01\x00\x24\x04\x01\x00\xff\x01\x24\x05"
        !          41013:             "\xff\x01\x25\x04\x01\x28\x00\xff\x01\x29\x01\x28\xff"
        !          41014:             "\x01\x25\x04\xff\x01\x24\x05\x24\x04\x01\x00\xff\x01"
        !          41015:             "\x23\x05\x01\x00\xff\x01\x22\x05\x02\x00\xff\x01\x21"
        !          41016:             "\x05\x03\x00\x20\x05\x23\x06\x22\x06\x22\x06\x22\x06"
        !          41017:             "\x21\x07\x20\x08\x1d\x0a\x0c\x1c\x0c\x1b\x0e\x19\x11"
        !          41018:             "\x14\x14" }  },
        !          41019:       /* --- pixel bitmap for cmsy600 char#52 \triangle --- */
        !          41020:       {  52,84480,                      /* character number, location */
        !          41021:          60, 5,    0, 5,      /* topleft row,col, and botleft row,col */
        !          41022:           { 64,   60, 3,425, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          41023:             "\xe0\xe0\x32\xe0\xe0\xe0\xe0\x54\xe0\xe0\x20\xf1\xe0"
        !          41024:             "\xe0\x16\xe0\xe0\x10\xf1\xe0\xe8\xe0\xe0\xf1\xe0\xda"
        !          41025:             "\xe0\xd0\xe0\xc5\x25\xe0\xe0\xe0\x96\x26\xe0\xe0\xe0"
        !          41026:             "\x85\x45\xe0\xb0\xf1\xe0\xa5\x65\xe0\xa0\xf1\xe0\x95"
        !          41027:             "\x85\xe0\x90\xf1\xe0\x85\xa5\xe0\x80\xf1\xe0\x75\xc5"
        !          41028:             "\xe0\x70\xf1\xe0\x65\xe5\xe0\x60\xe0\x55\xe0\x25\xe0"
        !          41029:             "\xe0\x96\xe0\x26\xe0\xe0\x85\xe0\x45\xe0\x40\xf1\xe0"
        !          41030:             "\x35\xe0\x65\xe0\x30\xf1\xe0\x25\xe0\x85\xe0\x20\xf1"
        !          41031:             "\xe0\x15\xe0\xa5\xe0\x10\xf1\xe5\xe0\xc5\xe0\xf1\xd5"
        !          41032:             "\xe0\xe5\xd0\xf1\xc5\xe0\xe0\x25\xc0\xb5\xe0\xe0\x45"
        !          41033:             "\xe0\x76\xe0\xe0\x46\xe0\x65\xe0\xe0\x65\xa0\xf1\x95"
        !          41034:             "\xe0\xe0\x85\x90\xf1\x85\xe0\xe0\xa5\x80\xf1\x75\xe0"
        !          41035:             "\xe0\xc5\x70\xf1\x65\xe0\xe0\xe5\x60\xf1\x55\xe0\xe0"
        !          41036:             "\xe0\x25\x50\x45\xe0\xe0\xe0\x45\x76\xe0\xe0\xe0\x46"
        !          41037:             "\x65\xe0\xe0\xe0\x65\x30\xf1\x25\xe0\xe0\xe0\x85\x20"
        !          41038:             "\xf1\x15\xe0\xe0\xe0\xa5\x1f\x2e\x0e\x0e\x0e\x08\x1e"
        !          41039:             "\x0e\x0e\x0e\x06\x10" }  },
        !          41040:       /* --- pixel bitmap for cmsy600 char#53 \bigtriangledown --- */
        !          41041:       {  53,85406,                      /* character number, location */
        !          41042:          42, 5,  -18, 5,      /* topleft row,col, and botleft row,col */
        !          41043:           { 64,   60, 3,425, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          41044:             "\x1e\x0e\x0e\x0e\x06\x1f\x2e\x0e\x0e\x0e\x08\xf1\x15"
        !          41045:             "\xe0\xe0\xe0\xa5\x10\xf1\x25\xe0\xe0\xe0\x85\x20\x35"
        !          41046:             "\xe0\xe0\xe0\x65\x66\xe0\xe0\xe0\x46\x75\xe0\xe0\xe0"
        !          41047:             "\x45\x40\xf1\x55\xe0\xe0\xe0\x25\x50\xf1\x65\xe0\xe0"
        !          41048:             "\xe5\x60\xf1\x75\xe0\xe0\xc5\x70\xf1\x85\xe0\xe0\xa5"
        !          41049:             "\x80\xf1\x95\xe0\xe0\x85\x90\xa5\xe0\xe0\x65\xe0\x66"
        !          41050:             "\xe0\xe0\x46\xe0\x75\xe0\xe0\x45\xb0\xf1\xc5\xe0\xe0"
        !          41051:             "\x25\xc0\xf1\xd5\xe0\xe5\xd0\xf1\xe5\xe0\xc5\xe0\xf1"
        !          41052:             "\xe0\x15\xe0\xa5\xe0\x10\xf1\xe0\x25\xe0\x85\xe0\x20"
        !          41053:             "\xf1\xe0\x35\xe0\x65\xe0\x30\xe0\x45\xe0\x45\xe0\xe0"
        !          41054:             "\x86\xe0\x26\xe0\xe0\x95\xe0\x25\xe0\x50\xf1\xe0\x65"
        !          41055:             "\xe5\xe0\x60\xf1\xe0\x75\xc5\xe0\x70\xf1\xe0\x85\xa5"
        !          41056:             "\xe0\x80\xf1\xe0\x95\x85\xe0\x90\xf1\xe0\xa5\x65\xe0"
        !          41057:             "\xa0\xe0\xb5\x45\xe0\xe0\xe0\x86\x26\xe0\xe0\xe0\x95"
        !          41058:             "\x25\xe0\xc0\xf1\xe0\xda\xe0\xd0\xf1\xe0\xe8\xe0\xe0"
        !          41059:             "\xf1\xe0\xe0\x16\xe0\xe0\x10\xe0\xe0\x24\xe0\xe0\xe0"
        !          41060:             "\xe0\x52\xe0\xe0\x30" }  },
        !          41061:       /* --- pixel bitmap for cmsy600 char#54 \boldslash --- */
        !          41062:       {  54,85941,                      /* character number, location */
        !          41063:          60,12,  -18,12,      /* topleft row,col, and botleft row,col */
        !          41064:           { 41,   78, 3,361, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          41065:             "\xe0\xe0\xa2\xe0\xe0\xa4\xf1\xe0\xe0\x85\xf1\xe0\xe0"
        !          41066:             "\x75\x10\xf1\xe0\xe0\x65\x20\xf1\xe0\xe0\x55\x30\xf1"
        !          41067:             "\xe0\xe0\x45\x40\xf1\xe0\xe0\x35\x50\xf1\xe0\xe0\x25"
        !          41068:             "\x60\xf1\xe0\xe0\x15\x70\xf1\xe0\xe5\x80\xf1\xe0\xd5"
        !          41069:             "\x90\xf1\xe0\xc5\xa0\xf1\xe0\xb5\xb0\xf1\xe0\xa5\xc0"
        !          41070:             "\xf1\xe0\x95\xd0\xf1\xe0\x85\xe0\xf1\xe0\x75\xe0\x10"
        !          41071:             "\xf1\xe0\x65\xe0\x20\xf1\xe0\x55\xe0\x30\xf1\xe0\x45"
        !          41072:             "\xe0\x40\xf1\xe0\x35\xe0\x50\xf1\xe0\x25\xe0\x60\xf1"
        !          41073:             "\xe0\x15\xe0\x70\xf1\xe5\xe0\x80\xf1\xd5\xe0\x90\xf1"
        !          41074:             "\xc5\xe0\xa0\xf1\xb5\xe0\xb0\xf1\xa5\xe0\xc0\xf1\x95"
        !          41075:             "\xe0\xd0\xf1\x85\xe0\xe0\xf1\x75\xe0\xe0\x10\xf1\x65"
        !          41076:             "\xe0\xe0\x20\xf1\x55\xe0\xe0\x30\xf1\x45\xe0\xe0\x40"
        !          41077:             "\xf1\x35\xe0\xe0\x50\xf1\x25\xe0\xe0\x60\xf1\x15\xe0"
        !          41078:             "\xe0\x7f\x15\xe0\xe0\x84\xe0\xe0\xa2\xe0\xe0\xa0" }  },
        !          41079:       /* --- pixel bitmap for cmsy600 char#55 \' --- */
        !          41080:       {  55,86422,                      /* character number, location */
        !          41081:          37, 5,    5, 5,      /* topleft row,col, and botleft row,col */
        !          41082:           {  6,   32, 3,19, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          41083:             "\x12\x3f\xc4\x2f\x36\x0f\xc4\x20\x12\x35" }  },
        !          41084:       /* --- pixel bitmap for cmsy600 char#56 \forall --- */
        !          41085:       {  56,41274,                      /* character number, location */
        !          41086:          58, 0,   -2, 0,      /* topleft row,col, and botleft row,col */
        !          41087:           { 46,   60, 3,339, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          41088:             "\x12\xe0\xe0\xc2\x14\xe0\xe0\xa4\x0f\x15\xe0\xe0\x85"
        !          41089:             "\x14\xe0\xe0\x84\x10\xf1\x15\xe0\xe0\x65\x10\x24\xe0"
        !          41090:             "\xe0\x64\x20\xf1\x25\xe0\xe0\x45\x20\xf1\x35\xe0\xe0"
        !          41091:             "\x25\x30\x44\xe0\xe0\x24\x40\xf1\x45\xe0\xe5\x40\x54"
        !          41092:             "\xe0\xe4\x50\xf1\x55\xe0\xc5\x50\xf1\x65\xe0\xa5\x60"
        !          41093:             "\xf2\x7e\x0e\x04\x70\x8e\x0e\x02\x80\xf1\x85\xe0\x65"
        !          41094:             "\x80\xf1\x95\xe0\x45\x90\xa4\xe0\x44\xa0\xf1\xa5\xe0"
        !          41095:             "\x25\xa0\xb4\xe0\x24\xb0\xf1\xb5\xe5\xb0\xf1\xc5\xc5"
        !          41096:             "\xc0\xd4\xc4\xd0\xf1\xd5\xa5\xd0\xe4\xa4\xe0\xf1\xe5"
        !          41097:             "\x85\xe0\xf1\xe0\x15\x65\xe0\x10\xe0\x24\x64\xe0\x20"
        !          41098:             "\xf1\xe0\x25\x45\xe0\x20\xe0\x34\x44\xe0\x30\xf1\xe0"
        !          41099:             "\x35\x25\xe0\x30\xf1\xe0\x4a\xe0\x40\xf2\xe0\x58\xe0"
        !          41100:             "\x50\xf2\xe0\x66\xe0\x60\xe0\x74\xe0\xe0\xe0\x12\xe0"
        !          41101:             "\x80" }  },
        !          41102:       /* --- pixel bitmap for cmsy600 char#57 \exists --- */
        !          41103:       {  57,42081,                      /* character number, location */
        !          41104:          58, 5,    0, 5,      /* topleft row,col, and botleft row,col */
        !          41105:           { 36,   58, 2,33, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          41106:             "\x01\x22\x01\xff\x01\x24\x01\x23\xff\x16\x20\x04\x02"
        !          41107:             "\x22\xff\x01\x01\x23\x02\x22\xff\x16\x20\x04\x01\x23"
        !          41108:             "\x00\xff\x01\x24\x01\x22\x01" }  },
        !          41109:       /* --- pixel bitmap for cmsy600 char#58 \neg --- */
        !          41110:       {  58,42793,                      /* character number, location */
        !          41111:          30, 5,    7, 5,      /* topleft row,col, and botleft row,col */
        !          41112:           { 45,   23, 2,15, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          41113:             "\x01\x2b\x01\xff\x01\x2d\x01\x2c\xff\x11\x29\x04\x2a"
        !          41114:             "\x02\x01" }  },
        !          41115:       /* --- pixel bitmap for cmsy600 char#59 \emptyset --- */
        !          41116:       {  59,87177,                      /* character number, location */
        !          41117:          64, 4,   -7, 4,      /* topleft row,col, and botleft row,col */
        !          41118:           { 34,   71, 3,345, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          41119:             "\xe0\xc2\x60\xf1\xe0\xb4\x50\xe0\xa5\xe0\x48\x35\xe0"
        !          41120:             "\x2c\x14\xe0\x15\x68\xe4\xa6\xd4\xc4\xd4\xc6\xb4\xd7"
        !          41121:             "\x95\xd8\x84\xe8\x75\xda\x64\xe5\x14\x64\xe4\x24\x30"
        !          41122:             "\xf1\x25\xd5\x25\x20\x25\xd4\x35\x36\xc5\x36\x25\xd5"
        !          41123:             "\x45\x10\xf1\x15\xd4\x55\x10\xf1\x15\xc5\x55\x16\xc4"
        !          41124:             "\x66\x0f\x16\xb5\x66\x06\xb4\x76\x0f\x16\xa5\x76\x0f"
        !          41125:             "\x16\xa4\x86\x0f\x16\x95\x86\x06\x94\x96\x0f\x16\x85"
        !          41126:             "\x96\x0f\x16\x84\xa6\x0f\x16\x75\xa6\x06\x74\xb6\x0f"
        !          41127:             "\x16\x65\xb6\x06\x64\xc6\xf1\x15\x55\xc5\x10\x15\x54"
        !          41128:             "\xd5\x26\x44\xc6\x26\x35\xc6\x35\x35\xc5\x45\x34\xd5"
        !          41129:             "\x45\x25\xd5\x54\x25\xd4\x65\x14\xd5\x6a\xd5\x79\xd4"
        !          41130:             "\x88\xd5\x97\xd4\xb6\xc4\xd5\xb4\xe5\xa4\xe8\x65\xe0"
        !          41131:             "\x1e\x03\xe0\x34\x38\xd0\xf1\x55\xe0\xa0\xf1\x54\xe0"
        !          41132:             "\xb0\x62\xe0\xc0" }  },
        !          41133:       /* --- pixel bitmap for cmsy600 char#60 \Re --- */
        !          41134:       {  60,89278,                      /* character number, location */
        !          41135:          60, 4,   -2, 4,      /* topleft row,col, and botleft row,col */
        !          41136:           { 56,   62, 3,445, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          41137:             "\xe0\xe0\x87\xe0\x66\xe0\x5c\xe0\x3a\xe0\x1e\xe0\x23"
        !          41138:             "\x55\xbe\x03\xe3\x75\x87\x48\xd3\x95\x65\x88\xc3\xa5"
        !          41139:             "\x44\xa9\xb2\xb5\x34\xc8\xa3\xc5\x14\xd9\x93\xc9\xe0"
        !          41140:             "\x18\x93\xc8\xe0\x38\x83\xd7\xe0\x39\x73\xd6\xe0\x58"
        !          41141:             "\x73\xd6\xe0\x59\x73\xc7\xe0\x58\x74\xb7\xe0\x59\x74"
        !          41142:             "\xa7\xe0\x68\x84\x97\xe0\x78\x75\x87\xe0\x79\x75\x77"
        !          41143:             "\xe0\x88\x84\x77\xe0\x89\x84\x67\xe0\x98\x93\x68\xe0"
        !          41144:             "\x98\x84\x58\xe0\x98\x93\x58\xe0\xa5\xb3\x58\xe0\x86"
        !          41145:             "\xc3\x58\xe0\x66\xe3\x58\xe0\x37\xe0\x23\x5e\x0e\x02"
        !          41146:             "\xe0\x43\x5e\x0e\xe0\x63\x5e\x0b\xe0\x93\x58\x97\xe0"
        !          41147:             "\x10\xf1\x12\x63\x58\x97\xe0\x10\x12\x62\x68\x97\xe0"
        !          41148:             "\x22\x53\x68\x97\xe0\x23\x43\x68\x97\xe0\x32\x33\x78"
        !          41149:             "\x98\xe0\x27\x88\xa7\xe0\x44\x97\xb7\xe0\xf8\xe0\x37"
        !          41150:             "\xb7\xe0\x12\xe6\xc7\xe0\xf1\x15\xb6\xc7\xe4\xd5\xd7"
        !          41151:             "\xe1\x13\xb6\xd7\xe0\x32\xb5\xe7\x94\x43\xa5\xe8\x75"
        !          41152:             "\x52\x95\xe0\x27\x65\x63\x85\xe0\x28\x35\x93\x65\xe0"
        !          41153:             "\x48\x15\xb4\x44\xe0\x6b\xe0\x19\xe0\x89\xe0\x45\xe0"
        !          41154:             "\xd4\xa0" }  },
        !          41155:       /* --- pixel bitmap for cmsy600 char#61 \Im --- */
        !          41156:       {  61,90851,                      /* character number, location */
        !          41157:          59, 5,   -1, 5,      /* topleft row,col, and botleft row,col */
        !          41158:           { 53,   60, 3,443, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          41159:             "\xe9\xe0\xe0\xde\x02\xe0\xe0\x75\x78\xe0\xe0\x34\xc8"
        !          41160:             "\xe0\xd4\xe0\x19\xe0\xa3\xe0\x49\xe0\x83\xe0\x69\xe0"
        !          41161:             "\x72\xe0\x89\xe0\x53\xe0\x99\xe0\x33\xe0\xb9\xe0\x22"
        !          41162:             "\xe0\xd9\xe0\x12\xe0\xe9\xd3\xe0\xe9\xb4\xe0\xe0\x29"
        !          41163:             "\xa4\xe0\xe0\x38\x95\xe0\xe0\x57\x82\x12\xe0\xe0\x67"
        !          41164:             "\x54\x12\xe0\xe0\x8c\x32\xe0\xe0\xa8\x53\xe0\xe0\xe0"
        !          41165:             "\x80\xf1\x12\xe0\xe0\xe0\x80\x13\xe0\xe0\xe0\x93\xe0"
        !          41166:             "\xe0\x77\x92\xe0\xe0\x5b\x73\xe0\xe0\x26\x54\x63\xe0"
        !          41167:             "\xe6\x83\x64\xe0\xb7\x92\x84\xe0\x96\xa3\x95\xe0\x57"
        !          41168:             "\xb2\xb8\xe7\xb2\xe5\xe7\xb2\xf2\xe0\xe0\x57\xd0\xe0"
        !          41169:             "\xe0\x58\xe0\xe0\xe0\x47\xe0\xe0\xe0\x48\xe0\xe0\xe0"
        !          41170:             "\x48\xe0\xe0\xe0\x47\xe0\xe0\xe0\x48\xe0\xe0\xe0\x48"
        !          41171:             "\xe0\xe0\xe0\x48\x79\xe0\xe0\x27\x7c\xe0\xd8\xaa\xe0"
        !          41172:             "\xc7\xd8\xe0\xb7\xe8\xe0\xa7\xe0\x18\xe0\x97\xe0\x29"
        !          41173:             "\xe0\x77\xe0\x48\xe0\x58\xe0\x58\xe0\x47\xe0\x78\xe0"
        !          41174:             "\x28\xe0\x88\xe0\x17\xe0\xa8\xd8\xe0\xb8\xa9\xe0\xd9"
        !          41175:             "\x78\xe0\xe0\x39\x2a\xe0\xe0\x5e\x04\xe0\xe0\xac\xe0"
        !          41176:             "\x34" }  },
        !          41177:       /* --- pixel bitmap for cmsy600 char#62 \top --- */
        !          41178:       {  62,91735,                      /* character number, location */
        !          41179:          56, 5,    0, 5,      /* topleft row,col, and botleft row,col */
        !          41180:           { 56,   56, 2,19, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          41181:             "\x01\x36\x01\xff\x01\x38\x01\x36\x01\x00\xff\x32\x1a"
        !          41182:             "\x04\x1a\x00\x1b\x02\x1b" }  },
        !          41183:       /* --- pixel bitmap for cmsy600 char#63 \bot --- */
        !          41184:       {  63,92530,                      /* character number, location */
        !          41185:          56, 5,    0, 5,      /* topleft row,col, and botleft row,col */
        !          41186:           { 56,   56, 2,19, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          41187:             "\x1b\x02\x1b\x00\xff\x32\x1a\x04\x1a\x00\x01\x36\x01"
        !          41188:             "\xff\x01\x38\x01\x36\x01" }  },
        !          41189:       /* --- pixel bitmap for cmsy600 char#64 \aleph --- */
        !          41190:       {  64,93843,                      /* character number, location */
        !          41191:          58, 5,    0, 5,      /* topleft row,col, and botleft row,col */
        !          41192:           { 41,   58, 3,339, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          41193:             "\x12\xe0\xb2\xc2\xe0\xb3\xa4\xe0\x94\xaf\x14\xe0\x95"
        !          41194:             "\x9f\x15\xe0\x86\x86\xe0\x77\x86\xe0\x77\x77\xe0\x67"
        !          41195:             "\x86\xe0\x77\x77\xe0\x77\x77\xe0\x77\x77\xe0\x77\x77"
        !          41196:             "\xe0\x77\x77\xe0\x68\x68\xe0\x58\x77\xe0\x58\x87\xe0"
        !          41197:             "\x33\x15\x97\xe0\x22\x34\x89\xe0\x12\x34\x8a\xe2\x34"
        !          41198:             "\xf1\x73\x27\xd2\x42\x10\x64\x37\xc2\xd3\x57\xa3\xc4"
        !          41199:             "\x67\x92\xd4\x77\x82\x80\xf1\x45\x87\x72\x80\x35\xa7"
        !          41200:             "\x53\xb5\xb7\x42\xc5\xc7\x32\xb6\xd7\x22\x90\xf1\x26"
        !          41201:             "\xe7\x12\x90\x26\xe0\x19\xb6\xe0\x28\xb6\xe0\x37\xb6"
        !          41202:             "\xe0\x47\xa7\xe0\x47\x97\xe0\x48\x97\xe0\x47\x97\xe0"
        !          41203:             "\x57\x97\xe0\x57\x88\xe0\x57\x88\xe0\x57\x78\xe0\x66"
        !          41204:             "\x88\xe0\x57\x78\xe0\x66\x88\xe0\x66\xf1\x78\xe0\x75"
        !          41205:             "\xf1\x78\xe0\x84\x5a\xe0\x8e\x03\xe0\xb2\x1b\xe0\xd2"
        !          41206:             "\x17" }  },
        !          41207:       /* --- pixel bitmap for cmsy600 char#65 \calA --- */
        !          41208:       {  65,  774,                      /* character number, location */
        !          41209:          60, 3,   -4, 3,      /* topleft row,col, and botleft row,col */
        !          41210:           { 63,   64, 2,257, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          41211:             "\x31\x03\x3a\x05\x39\x06\x0b\x00\xff\x02\x2d\x07\x0b"
        !          41212:             "\x00\xff\x01\x2c\x08\x0b\x00\xff\x01\x2b\x09\x0b\x00"
        !          41213:             "\x2a\x0a\x35\x02\x01\x07\x34\x03\x01\x07\x34\x02\x02"
        !          41214:             "\x07\x33\x03\x02\x07\x33\x02\x03\x07\x32\x03\x03\x07"
        !          41215:             "\x32\x02\x04\x07\x31\x03\x04\x07\x0b\x00\xff\x01\x25"
        !          41216:             "\x03\x05\x07\x0b\x00\x24\x03\x06\x07\x2f\x02\x07\x07"
        !          41217:             "\x2e\x03\x07\x07\x2e\x02\x08\x07\x2d\x03\x08\x07\x0b"
        !          41218:             "\x00\xff\x01\x21\x03\x09\x07\x0b\x00\x20\x03\x0a\x07"
        !          41219:             "\x2b\x02\x0b\x08\x29\x03\x0b\x08\x0a\x00\xff\x01\x1e"
        !          41220:             "\x03\x0c\x08\x0a\x00\x1d\x03\x0e\x07\x0a\x00\xff\x01"
        !          41221:             "\x1c\x03\x0f\x07\x0a\x00\x1b\x03\x10\x07\x24\x04\x10"
        !          41222:             "\x07\x24\x03\x11\x07\x23\x03\x12\x07\x22\x04\x12\x07"
        !          41223:             "\x22\x03\x13\x07\x21\x03\x02\x19\x20\x1f\x0a\x00\xff"
        !          41224:             "\x01\x15\x21\x09\x00\x14\x04\x16\x08\x1c\x04\x17\x08"
        !          41225:             "\x09\x00\xff\x01\x12\x04\x19\x07\x09\x00\x11\x04\x1a"
        !          41226:             "\x07\x0b\x01\x0d\x04\x1b\x08\x09\x02\x0c\x04\x1c\x08"
        !          41227:             "\x09\x03\x0a\x05\x1c\x08\x08\x05\x08\x05\x1d\x08\x08"
        !          41228:             "\x07\x04\x06\x1f\x08\x07\x10\x20\x08\x07\x10\x20\x08"
        !          41229:             "\x05\x11\x21\x09\x02\x12\x23\x0c\x03\x0c\x24\x0b\x05"
        !          41230:             "\x0a\x25\x09\x08\x08\x27\x06\x0c\x04\x36" }  },
        !          41231:       /* --- pixel bitmap for cmsy600 char#66 \calB --- */
        !          41232:       {  66, 1764,                      /* character number, location */
        !          41233:          59, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
        !          41234:           { 53,   61, 3,459, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          41235:             "\xe0\x43\xe0\x39\xe0\x85\xee\x01\xe0\x37\xce\x04\xe9"
        !          41236:             "\xae\x07\xca\x85\x6c\xa4\x17\x74\xba\x83\x36\x64\xe9"
        !          41237:             "\xe6\x54\xe0\x28\xe6\x44\xe0\x38\xd7\x34\xe0\x57\xd7"
        !          41238:             "\x24\xe0\x67\xd7\x15\xe0\x66\xe6\x15\xe0\x76\xeb\xe0"
        !          41239:             "\x85\xe0\x1b\xe0\x76\xeb\xe0\x85\xe0\x1a\xe0\x85\xe0"
        !          41240:             "\x2a\xe0\x84\xe0\x39\xe0\x84\xe0\x49\xe0\x74\xe0\x58"
        !          41241:             "\xe0\x64\xe0\x69\xe0\x45\xe0\x78\xe0\x35\xe0\x98\xe0"
        !          41242:             "\x15\xe0\xb8\xc6\xe0\xd7\xb9\xe0\xb8\x8e\x01\xe0\x88"
        !          41243:             "\x7e\x04\xe0\x67\x6e\x08\xe0\x47\x62\x6e\x01\xe0\x36"
        !          41244:             "\xe0\x4d\xe0\x17\xe0\x6c\xe7\xe0\x8a\xe6\xe0\xaa\xd6"
        !          41245:             "\xe0\xb9\x40\xf1\x87\xe0\xc9\x30\xf1\x86\xe0\xe8\x30"
        !          41246:             "\x86\xe0\xe0\x17\xa7\xe0\xe0\x17\x30\xf1\x76\xe0\xe0"
        !          41247:             "\x27\x30\x76\xe0\xe0\x26\x40\xf1\x66\xe0\xe0\x36\x40"
        !          41248:             "\x66\xe0\xe0\x26\xa6\xe0\xe0\x36\xa6\xe0\xe0\x35\xb6"
        !          41249:             "\xe0\xe0\x25\xb6\xe0\xe0\x34\xc6\x33\xe0\xa4\xd5\x25"
        !          41250:             "\xe0\x94\xd6\x17\xe0\x74\xe5\x19\xe0\x44\xe0\x16\x1b"
        !          41251:             "\xe5\xe0\x26\x1e\x77\xe0\x36\x3e\x0b\xe0\x55\x5e\x08"
        !          41252:             "\xe0\x74\x8e\x03\xe0\x93\xda\xe0\xd0" }  },
        !          41253:       /* --- pixel bitmap for cmsy600 char#67 \calC --- */
        !          41254:       {  67, 2671,                      /* character number, location */
        !          41255:          59, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
        !          41256:           { 43,   61, 3,303, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          41257:             "\xe0\xe0\x39\xe0\xe0\x2e\x01\xe0\xce\x04\xe0\x9e\x06"
        !          41258:             "\xe0\x76\x6a\xe0\x55\xb8\xe0\x44\xe7\xe0\x24\xe0\x27"
        !          41259:             "\xe0\x14\xe0\x36\xe0\x14\xe0\x46\xe4\xe0\x56\xd4\xe0"
        !          41260:             "\x56\xd5\xe0\x56\xc5\xe0\x65\xc5\xe0\x66\xc5\xe0\x65"
        !          41261:             "\xc5\xe0\x66\xb6\xe0\x65\xc5\xe0\x65\xc6\xe0\x64\xd5"
        !          41262:             "\xe0\x63\xe6\xe0\xe0\x95\xe0\xe0\x50\xf1\x46\xe0\xe0"
        !          41263:             "\x50\xf2\x36\xe0\xe0\x60\xf2\x26\xe0\xe0\x70\xf1\x17"
        !          41264:             "\xe0\xe0\x70\xf2\x16\xe0\xe0\x8f\x77\xe0\xe0\x8f\x18"
        !          41265:             "\xe0\xe0\x78\xe0\xe4\x38\xe0\xd4\x40\xf1\x18\xe0\xa5"
        !          41266:             "\x50\x19\xe0\x85\x79\xe0\x75\x99\xe0\x64\xaa\xe0\x44"
        !          41267:             "\xca\xe0\x24\xdc\xc4\xe0\x2e\x66\xe0\x4e\x09\xe0\x7e"
        !          41268:             "\x06\xe0\xbe\x02\xe0\xe0\x29\xe0\x90" }  },
        !          41269:       /* --- pixel bitmap for cmsy600 char#68 \calD --- */
        !          41270:       {  68, 3595,                      /* character number, location */
        !          41271:          57, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          41272:           { 63,   57, 2,221, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          41273:             "\x16\x16\x24\x20\x1d\x25\x17\x2a\x13\x08\x04\x06\x09"
        !          41274:             "\x12\x11\x04\x09\x06\x0e\x0f\x0d\x04\x0a\x07\x11\x0d"
        !          41275:             "\x0b\x04\x0b\x07\x13\x0c\x09\x04\x0c\x07\x14\x0c\x07"
        !          41276:             "\x05\x0c\x07\x16\x0a\x06\x05\x0d\x07\x17\x0a\x04\x06"
        !          41277:             "\x0d\x07\x18\x0a\x03\x05\x0e\x06\x1a\x09\x02\x05\x0f"
        !          41278:             "\x06\x1a\x09\x02\x04\x10\x06\x1b\x0b\x12\x07\x1c\x08"
        !          41279:             "\xff\x01\x14\x07\x1c\x08\xff\x02\x14\x06\x1e\x07\x13"
        !          41280:             "\x07\x1e\x07\xff\x02\x13\x06\x1f\x07\xff\x01\x12\x07"
        !          41281:             "\x1f\x06\x01\x00\x12\x06\x20\x06\x13\x06\x1f\x07\x13"
        !          41282:             "\x06\x1f\x06\x13\x07\x1f\x06\x13\x06\x20\x05\x14\x06"
        !          41283:             "\x1f\x06\x14\x06\x1f\x05\x14\x06\x1f\x06\x14\x06\x1f"
        !          41284:             "\x05\x15\x06\x1e\x05\x15\x06\x1f\x05\x15\x06\x1e\x05"
        !          41285:             "\x16\x06\x1d\x05\x16\x06\x1e\x04\x17\x06\x1d\x04\x18"
        !          41286:             "\x06\x1c\x04\x18\x06\x1c\x04\x19\x06\x1b\x04\x1a\x06"
        !          41287:             "\x1a\x03\x1b\x06\x19\x04\x1c\x06\x17\x05\x1d\x06\x16"
        !          41288:             "\x04\x1e\x06\x15\x04\x20\x06\x12\x06\x21\x05\x10\x07"
        !          41289:             "\x22\x06\x0b\x09\x24\x19\x24\x18\x26\x16\x28\x12\x28" }  },
        !          41290:       /* --- pixel bitmap for cmsy600 char#69 \calE --- */
        !          41291:       {  69, 4488,                      /* character number, location */
        !          41292:          59, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
        !          41293:           { 44,   61, 2,177, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          41294:             "\x1e\x09\x1f\x10\x1a\x13\x17\x16\x14\x06\x06\x0c\x13"
        !          41295:             "\x04\x0c\x09\x11\x04\x0f\x08\x10\x04\x11\x07\x0f\x04"
        !          41296:             "\x12\x07\x0e\x05\x12\x06\x0e\x05\x13\x05\x0e\x06\x13"
        !          41297:             "\x04\x0f\x06\x12\x04\x04\x00\xff\x02\x0b\x06\x1b\x00"
        !          41298:             "\xff\x02\x0a\x07\x1b\x00\xff\x01\x0a\x08\x1a\x00\x0a"
        !          41299:             "\x09\x23\x0a\x23\x0a\x22\x0c\x21\x0f\x1e\x13\x1a\x11"
        !          41300:             "\x1d\x0d\x20\x0a\x20\x06\x24\x05\x26\x04\x26\x04\x27"
        !          41301:             "\x04\x27\x04\x27\x04\x27\x05\x26\x05\x22\x00\xff\x01"
        !          41302:             "\x04\x05\x23\x00\x03\x05\x24\x00\xff\x01\x02\x06\x24"
        !          41303:             "\x00\xff\x01\x01\x06\x25\x00\x01\x06\x1c\x04\x05\x07"
        !          41304:             "\x1b\x04\x06\x07\x19\x05\x07\x07\x19\x04\x08\x08\x17"
        !          41305:             "\x04\x09\x08\x16\x04\x0a\x09\x14\x04\x0b\x0a\x12\x04"
        !          41306:             "\x0d\x0a\x10\x03\x0f\x0c\x0c\x04\x11\x0e\x07\x05\x13"
        !          41307:             "\x17\x16\x14\x1a\x10\x1f\x0a\x19" }  },
        !          41308:       /* --- pixel bitmap for cmsy600 char#70 \calF --- */
        !          41309:       {  70, 5396,                      /* character number, location */
        !          41310:          57, 2,   -3, 2,      /* topleft row,col, and botleft row,col */
        !          41311:           { 67,   60, 2,187, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          41312:             "\x1e\x22\x1e\x27\x1a\x2a\x16\x2d\x15\x05\x07\x07\x11"
        !          41313:             "\x0a\x14\x03\x0a\x06\x14\x06\x14\x04\x0b\x06\x15\x04"
        !          41314:             "\x14\x04\x0c\x06\x15\x02\x15\x04\x0c\x07\x2b\x05\x0c"
        !          41315:             "\x06\x2b\x05\x0d\x06\x2a\x06\x0d\x06\x2a\x06\x0c\x07"
        !          41316:             "\x29\x05\x0e\x07\x29\x04\x0f\x06\x2a\x02\x11\x06\x3d"
        !          41317:             "\x06\x1e\x00\xff\x02\x1e\x06\x1f\x00\x1d\x07\x1f\x00"
        !          41318:             "\xff\x02\x1d\x06\x20\x00\xff\x02\x1c\x06\x21\x00\x1b"
        !          41319:             "\x06\x3d\x1c\x27\x1b\x27\x1b\x28\x19\x10\x00\xff\x01"
        !          41320:             "\x19\x06\x24\x00\x19\x05\x25\x00\xff\x01\x18\x06\x25"
        !          41321:             "\x00\xff\x01\x17\x06\x26\x00\x17\x05\x3d\x06\x3d\x05"
        !          41322:             "\x3d\x06\x3d\x05\x29\x00\xff\x01\x14\x06\x29\x00\xff"
        !          41323:             "\x01\x13\x06\x2a\x00\x13\x05\x30\x02\x0b\x05\x2e\x05"
        !          41324:             "\x0b\x05\x2d\x06\x0a\x05\x2d\x08\x08\x06\x2d\x09\x07"
        !          41325:             "\x05\x2e\x0a\x05\x05\x2f\x0c\x03\x04\x31\x11\x33\x0e"
        !          41326:             "\x36\x0c\x39\x07\x37" }  },
        !          41327:       /* --- pixel bitmap for cmsy600 char#71 \calG --- */
        !          41328:       {  71, 6271,                      /* character number, location */
        !          41329:          59, 4,  -10, 4,      /* topleft row,col, and botleft row,col */
        !          41330:           { 46,   69, 3,427, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          41331:             "\xe0\xe0\x2b\xe0\xe0\x3e\x04\xe0\xbe\x08\xe0\x8e\x0b"
        !          41332:             "\xe0\x57\x8c\xe0\x35\xe0\x19\xe0\x24\xe0\x48\xe0\x13"
        !          41333:             "\xe0\x77\xd4\xe0\x86\xd4\xe0\x96\xc4\xe0\xa5\xc4\xe0"
        !          41334:             "\xa6\xb5\xe0\xa5\xb5\xe0\xa5\xb5\xe0\xb5\xb5\xe0\xa5"
        !          41335:             "\xb5\xe0\xa5\xb6\xe0\xa4\xc5\xe0\xa3\xd6\xe0\xe0\xc5"
        !          41336:             "\xe0\xe0\x90\xf1\x36\xe0\xe0\x90\xf2\x26\xe0\xe0\xa0"
        !          41337:             "\xf1\x17\xe0\xe0\xa0\x16\xe0\xe0\x71\x46\xe0\xe0\x44"
        !          41338:             "\x46\xe0\xe0\x35\x37\xe0\xe0\x26\x3f\x17\xe0\xe0\x16"
        !          41339:             "\x47\xe0\xe7\x47\xe0\xe6\x5f\x17\xe0\xd7\x58\xe0\xb8"
        !          41340:             "\x58\xe0\xb7\x68\xe0\xa8\x69\xe0\x89\x78\xe0\x89\x79"
        !          41341:             "\xe0\x69\x89\xe0\x5a\x99\xe0\x34\x16\x9a\xe0\x13\x26"
        !          41342:             "\xbb\xb4\x36\xbd\x75\x46\xce\x08\x56\xee\x05\x76\xe0"
        !          41343:             "\x2e\x01\x95\xe0\x5a\xb6\xe0\xe0\xc5\xe0\xe0\xc6\xe0"
        !          41344:             "\xe0\xc5\xe0\xe0\xc6\xe0\xe0\xc5\xe0\xe0\xc6\xe0\xe0"
        !          41345:             "\xc5\xe0\xe0\xc5\xe0\x63\xe0\x44\xe0\x57\xe0\x14\xe0"
        !          41346:             "\x5a\xc4\xe0\x5e\x84\xe0\x6e\x0a\xe0\xae\x07\xe0\xde"
        !          41347:             "\x02\xe0\xe0\x5b\xe0\xd0" }  },
        !          41348:       /* --- pixel bitmap for cmsy600 char#72 \calH --- */
        !          41349:       {  72, 7307,                      /* character number, location */
        !          41350:          57, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
        !          41351:           { 66,   61, 3,491, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          41352:             "\xe0\x69\xe0\xe0\x53\xe0\x3e\xe0\xe0\x24\xe0\x2e\x03"
        !          41353:             "\xe0\xe5\xee\x05\xe0\xd5\xd6\x69\xe0\xc6\xc4\xa8\xe0"
        !          41354:             "\xc6\xa4\xd7\xe0\xb6\xa4\xe7\xe0\xb6\x94\xe0\x17\xe0"
        !          41355:             "\xb6\x85\xe0\x16\xe0\xb6\x85\xe0\x26\xe0\xb6\x76\xe0"
        !          41356:             "\x26\xe0\xb6\x75\xe0\x27\xe0\xa6\x75\xe0\x37\xe0\xa6"
        !          41357:             "\x74\xe0\x47\xe0\xa6\x62\xe0\x77\xe0\x96\x70\xf1\xe0"
        !          41358:             "\x96\xe0\xa6\x70\xe0\x96\xe0\x96\x80\xf1\xe0\x87\xe0"
        !          41359:             "\x96\x80\xe0\x86\xe0\x97\x80\xf1\xe0\x86\xe0\x96\x90"
        !          41360:             "\xe0\x77\xe0\x96\x90\xf2\xe0\x76\xe0\x96\xa0\xe0\x66"
        !          41361:             "\xe0\x97\xe0\xbe\x0e\x0c\xe0\xae\x0e\x0e\xe0\x9e\x0e"
        !          41362:             "\x0e\x01\xe0\x8e\x0e\x08\x17\xb0\xf1\xe0\x56\xe0\x96"
        !          41363:             "\xc0\xe0\x46\xe0\xa6\xe0\xe0\x26\xe0\x97\xe0\xe0\x26"
        !          41364:             "\xe0\x96\xe0\xe0\x27\xe0\x96\xe0\xe0\x26\xe0\xa6\xd0"
        !          41365:             "\xf1\xe0\x36\xe0\x97\xd0\xf2\xe0\x26\xe0\xa6\xe0\xf1"
        !          41366:             "\xe0\x16\xe0\xa7\xe0\xe0\x15\xe0\xb7\xe0\xf1\xe6\xe0"
        !          41367:             "\xb6\xe0\x10\xd6\xe0\xc6\xe0\xe6\xe0\xb7\xe0\xe6\xe0"
        !          41368:             "\xb7\xb4\xc6\xe0\xc7\xa4\xd6\xe0\xc7\x86\xd6\xe0\xc8"
        !          41369:             "\x75\xd6\xe0\xd9\x55\xe5\xe0\xee\x04\xe0\x14\xe0\xe0"
        !          41370:             "\x1e\x02\xe0\x24\xe0\xe0\x3d\xe0\xe0\xe0\xc9\xb0" }  },
        !          41371:       /* --- pixel bitmap for cmsy600 char#73 \calI --- */
        !          41372:       {  73, 8260,                      /* character number, location */
        !          41373:          57,-2,    0,-2,      /* topleft row,col, and botleft row,col */
        !          41374:           { 55,   57, 2,161, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          41375:             "\x18\x1f\x13\x23\x11\x25\x10\x25\x10\x08\x0f\x04\x1a"
        !          41376:             "\x05\x13\x05\x19\x04\x14\x05\x19\x04\x14\x05\x19\x05"
        !          41377:             "\x14\x05\x18\x06\x13\x05\x18\x06\x13\x06\x18\x05\x14"
        !          41378:             "\x06\x18\x03\x15\x06\x31\x06\x31\x05\x15\x00\xff\x01"
        !          41379:             "\x1c\x06\x15\x00\x1b\x07\x15\x00\xff\x02\x1b\x06\x16"
        !          41380:             "\x00\xff\x02\x1a\x06\x17\x00\x19\x07\x17\x00\xff\x02"
        !          41381:             "\x19\x06\x18\x00\x18\x07\x18\x00\xff\x02\x18\x06\x19"
        !          41382:             "\x00\xff\x02\x17\x06\x1a\x00\x16\x07\x1a\x00\xff\x02"
        !          41383:             "\x16\x06\x1b\x00\xff\x02\x15\x06\x1c\x00\xff\x01\x14"
        !          41384:             "\x06\x1d\x00\x14\x05\x31\x06\x31\x05\x16\x02\x19\x05"
        !          41385:             "\x15\x03\x1a\x05\x13\x05\x19\x05\x13\x05\x19\x05\x13"
        !          41386:             "\x05\x1a\x04\x14\x04\x1a\x04\x14\x04\x10\x25\x10\x26"
        !          41387:             "\x10\x24\x12\x23\x14" }  },
        !          41388:       /* --- pixel bitmap for cmsy600 char#74 \calJ --- */
        !          41389:       {  74, 9096,                      /* character number, location */
        !          41390:          57, 4,  -10, 4,      /* topleft row,col, and botleft row,col */
        !          41391:           { 66,   67, 2,211, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          41392:             "\x2a\x18\x26\x1b\x25\x1c\x24\x1c\x24\x06\x0f\x04\x27"
        !          41393:             "\x05\x11\x04\x27\x04\x12\x04\x26\x04\x13\x05\x25\x04"
        !          41394:             "\x13\x05\x25\x04\x13\x05\x25\x04\x14\x05\x24\x05\x13"
        !          41395:             "\x05\x24\x05\x13\x06\x23\x05\x14\x05\x24\x05\x13\x06"
        !          41396:             "\x23\x06\x13\x05\x23\x06\x13\x06\x23\x05\x14\x05\x24"
        !          41397:             "\x04\x14\x06\x23\x04\x15\x06\x11\x00\xff\x02\x2a\x06"
        !          41398:             "\x12\x00\xff\x02\x29\x06\x13\x00\xff\x02\x28\x06\x14"
        !          41399:             "\x00\xff\x02\x27\x06\x15\x00\x26\x07\x15\x00\xff\x02"
        !          41400:             "\x26\x06\x16\x00\x25\x07\x16\x00\xff\x02\x25\x06\x17"
        !          41401:             "\x00\x24\x07\x17\x00\xff\x02\x24\x06\x18\x00\x23\x07"
        !          41402:             "\x18\x00\xff\x01\x23\x06\x19\x00\x04\x03\x1c\x06\x1b"
        !          41403:             "\x05\x1b\x06\x1b\x06\x1b\x06\x1a\x07\x1b\x05\x1b\x07"
        !          41404:             "\x1a\x06\x1b\x07\x1a\x05\x1c\x07\x19\x05\x1d\x08\x18"
        !          41405:             "\x05\x1d\x08\x17\x05\x1e\x09\x15\x05\x1f\x09\x15\x04"
        !          41406:             "\x21\x09\x13\x04\x22\x0a\x11\x04\x24\x0a\x0f\x04\x25"
        !          41407:             "\x0c\x0b\x04\x28\x0d\x07\x05\x2a\x16\x2d\x13\x31\x0f"
        !          41408:             "\x35\x0a\x2f" }  },
        !          41409:       /* --- pixel bitmap for cmsy600 char#75 \calK --- */
        !          41410:       {  75,10055,                      /* character number, location */
        !          41411:          59, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
        !          41412:           { 59,   61, 3,525, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          41413:             "\xe0\x43\xe0\xe0\x26\xe0\x45\xe0\xda\xe0\x17\xe0\xbd"
        !          41414:             "\xc9\xe0\x95\x37\xba\xe0\x75\x66\x94\x17\xe0\x55\x95"
        !          41415:             "\x83\x37\xe0\x35\xb5\xe7\xe0\x15\xd4\xe0\x17\xe4\xe0"
        !          41416:             "\x13\xe0\x26\xd4\xe0\xe0\x86\xc4\xe0\xe0\x96\xb3\xe0"
        !          41417:             "\xe0\xa7\x94\xe0\xe0\xb7\x84\xe0\xe0\xc7\x73\xe0\xe0"
        !          41418:             "\xe7\x54\xe0\xe0\xe0\x16\x54\xe0\xe0\xe0\x26\x44\xe0"
        !          41419:             "\xe0\xe0\x36\x34\xe0\xe0\xe0\x37\x24\xe0\xe0\xe0\x47"
        !          41420:             "\x14\xe0\xe0\xe0\x56\x15\xe0\xe0\xe0\x56\x14\xe0\xe0"
        !          41421:             "\xe0\x6b\xe0\xe0\xe0\x5c\xe0\xe0\x80\xf1\xb6\x15\xe0"
        !          41422:             "\xe0\x80\xb6\x16\xe0\xe0\xe0\x37\x16\xe0\xe0\xe0\x36"
        !          41423:             "\x26\xe0\xe0\xe0\x36\x35\xe0\xe0\xe0\x36\x36\xe0\xe0"
        !          41424:             "\x60\xf1\x96\x46\xe0\xe0\x60\x96\x56\xe0\xe0\xd7\x56"
        !          41425:             "\xe0\xe0\xd6\x67\xe0\xe0\x40\xf1\x86\x76\xe0\xe0\x40"
        !          41426:             "\xf1\x76\x96\xe0\xe0\x30\x76\x97\xe0\xe0\x86\xb6\xe0"
        !          41427:             "\xe0\x86\xb7\xe0\xe0\x76\xc6\xe0\xe0\x66\xd7\xe0\xe0"
        !          41428:             "\x56\xe6\xe0\xe0\x56\xe7\xe0\xe0\x36\xe0\x27\xe0\x92"
        !          41429:             "\x56\xe0\x27\xe0\x74\x56\xe0\x37\xe0\x55\x46\xe0\x57"
        !          41430:             "\xe0\x44\x56\xe0\x57\xe0\x35\x56\xe0\x67\xe0\x24\x56"
        !          41431:             "\xe0\x87\xe4\x66\xe0\x88\xc4\x75\xe0\xa8\x94\x86\xe0"
        !          41432:             "\xb9\x55\x95\xe0\xde\x02\xa5\xe0\xe0\x1d\xc3\xe0\xe0"
        !          41433:             "\x58\xe0\x10" }  },
        !          41434:       /* --- pixel bitmap for cmsy600 char#76 \calL --- */
        !          41435:       {  76,11025,                      /* character number, location */
        !          41436:          59, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
        !          41437:           { 52,   61, 3,379, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          41438:             "\xe0\xe0\xb7\xe0\xe0\xeb\xe0\xe0\xae\x01\xe0\xe0\x7e"
        !          41439:             "\x03\xe0\xe0\x6e\x05\xe0\xe0\x34\x6b\xe0\xe0\x24\x8a"
        !          41440:             "\xe0\xe0\x14\xa9\xe0\xe5\xa9\xe0\xd5\xc8\xe0\xc5\xd8"
        !          41441:             "\xe0\xb6\xd8\xe0\xb5\xe7\xe0\xb6\xe6\xe0\xb6\xe0\x14"
        !          41442:             "\xe0\xd6\xe0\x12\x90\xf1\xe0\x56\xe0\xd0\xf1\xe0\x46"
        !          41443:             "\xe0\xe0\xe0\x37\xe0\xe0\xe0\x36\xe0\xe0\x10\xf1\xe0"
        !          41444:             "\x27\xe0\xe0\x10\xe0\x26\xe0\xe0\x20\xf1\xe0\x17\xe0"
        !          41445:             "\xe0\x20\xe0\x16\xe0\xe0\x30\xf2\xe7\xe0\xe0\x30\xf3"
        !          41446:             "\xd7\xe0\xe0\x40\xf3\xc7\xe0\xe0\x50\xf2\xb7\xe0\xe0"
        !          41447:             "\x60\xb6\xe0\xe0\xe0\x37\xe0\xe0\x70\xf1\xa6\xe0\xe0"
        !          41448:             "\x80\x96\xe0\xe0\xe0\x46\xe0\xe0\x81\x86\xe0\xe0\x64"
        !          41449:             "\x86\xe0\xe0\x55\x76\xe0\xe0\x46\x85\x18\xe0\x97\x7e"
        !          41450:             "\x05\xe0\x56\x8e\x09\xe0\x15\x8e\x0d\xb5\x8e\x0e\x05"
        !          41451:             "\x64\x94\x5e\x0e\x05\x94\xae\x0d\xa4\xe0\x1e\x08\xa3"
        !          41452:             "\xe0\x6e\x02\xc2\xe0\xd8\xe0\x10" }  },
        !          41453:       /* --- pixel bitmap for cmsy600 char#77 \calM --- */
        !          41454:       {  77,12294,                      /* character number, location */
        !          41455:          59, 3,   -4, 3,      /* topleft row,col, and botleft row,col */
        !          41456:           { 90,   63, 2,405, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          41457:             "\x20\x02\x36\x01\x1f\x04\x35\x02\x1e\x06\x33\x03\x1d"
        !          41458:             "\x07\x33\x03\x1d\x07\x32\x04\x1d\x07\x31\x04\x1e\x07"
        !          41459:             "\x30\x05\x1e\x07\x2f\x06\x1e\x08\x2d\x07\x1d\x09\x2c"
        !          41460:             "\x08\x1d\x09\x2c\x07\x1e\x09\x2b\x08\x1e\x02\x01\x06"
        !          41461:             "\x2a\x09\x1e\x02\x01\x07\x28\x0a\x1d\x03\x01\x07\x27"
        !          41462:             "\x0b\x1d\x03\x01\x07\x26\x0c\x1d\x02\x02\x07\x25\x05"
        !          41463:             "\x01\x06\x1e\x02\x03\x06\x25\x04\x02\x06\x1e\x02\x03"
        !          41464:             "\x07\x23\x05\x02\x06\x1d\x03\x03\x07\x22\x05\x02\x07"
        !          41465:             "\x1d\x02\x04\x07\x21\x05\x03\x07\x1d\x02\x04\x07\x20"
        !          41466:             "\x05\x04\x07\x1d\x02\x05\x07\x1e\x05\x05\x07\x1c\x02"
        !          41467:             "\x06\x07\x1d\x05\x06\x06\x05\x00\xff\x01\x18\x02\x06"
        !          41468:             "\x07\x1c\x05\x07\x06\x05\x00\x17\x03\x07\x07\x1a\x05"
        !          41469:             "\x07\x07\x1c\x02\x08\x07\x19\x05\x08\x07\x1c\x02\x08"
        !          41470:             "\x07\x18\x05\x09\x07\x1c\x02\x08\x07\x17\x05\x0a\x07"
        !          41471:             "\x1b\x02\x0a\x07\x15\x05\x0b\x07\x1b\x02\x0a\x07\x14"
        !          41472:             "\x05\x0c\x06\x1c\x02\x0a\x07\x13\x05\x0d\x06\x1b\x02"
        !          41473:             "\x0b\x07\x12\x06\x0d\x06\x1b\x02\x0c\x07\x11\x05\x0d"
        !          41474:             "\x07\x1b\x02\x0c\x07\x10\x05\x0e\x07\x1a\x02\x0d\x07"
        !          41475:             "\x0f\x05\x0f\x07\x1a\x02\x0d\x07\x0e\x05\x10\x07\x19"
        !          41476:             "\x03\x0e\x07\x0c\x05\x11\x07\x19\x02\x0f\x07\x0b\x05"
        !          41477:             "\x12\x07\x19\x02\x0f\x07\x0a\x05\x13\x06\x19\x02\x10"
        !          41478:             "\x08\x08\x05\x14\x06\x19\x02\x11\x07\x07\x06\x14\x06"
        !          41479:             "\x18\x03\x11\x08\x05\x06\x14\x07\x18\x02\x12\x08\x04"
        !          41480:             "\x06\x15\x07\x18\x02\x13\x07\x03\x06\x16\x07\x17\x02"
        !          41481:             "\x14\x08\x01\x06\x17\x07\x17\x02\x15\x0d\x18\x07\x16"
        !          41482:             "\x03\x15\x0c\x19\x07\x16\x02\x16\x0b\x1a\x07\x15\x03"
        !          41483:             "\x17\x09\x1b\x07\x15\x02\x18\x08\x1c\x07\x14\x03\x19"
        !          41484:             "\x06\x1d\x07\x09\x02\x08\x03\x1a\x05\x1e\x07\x08\x05"
        !          41485:             "\x05\x04\x1b\x03\x1f\x07\x08\x0d\x1c\x02\x20\x08\x06"
        !          41486:             "\x0e\x3e\x08\x04\x0f\x3f\x09\x01\x03\x01\x0c\x40\x0c"
        !          41487:             "\x02\x0c\x41\x0a\x03\x0b\x42\x08\x07\x08\x44\x05\x0b"
        !          41488:             "\x05\x51" }  },
        !          41489:       /* --- pixel bitmap for cmsy600 char#78 \calN --- */
        !          41490:       {  78,13597,                      /* character number, location */
        !          41491:          65,-2,   -4,-2,      /* topleft row,col, and botleft row,col */
        !          41492:           { 83,   69, 2,351, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          41493:             "\x4d\x06\x49\x0a\x47\x0c\x46\x0d\x45\x0d\x45\x0e\x1e"
        !          41494:             "\x03\x24\x0d\x1e\x04\x23\x0e\x1c\x06\x23\x08\x22\x07"
        !          41495:             "\x21\x05\x26\x07\x21\x03\x28\x07\x21\x02\x0f\x00\xff"
        !          41496:             "\x02\x19\x09\x1f\x02\x10\x00\xff\x01\x19\x0a\x1d\x02"
        !          41497:             "\x11\x00\x19\x02\x01\x07\x1d\x02\x2a\x02\x01\x07\x1c"
        !          41498:             "\x02\x2b\x02\x02\x07\x1b\x02\x2a\x03\x02\x07\x1b\x02"
        !          41499:             "\x2a\x03\x02\x07\x1a\x03\x2a\x02\x03\x08\x19\x02\x13"
        !          41500:             "\x00\xff\x01\x18\x02\x04\x07\x19\x02\x13\x00\x17\x03"
        !          41501:             "\x04\x08\x17\x02\x2b\x03\x05\x07\x17\x02\x2b\x02\x06"
        !          41502:             "\x07\x17\x02\x2b\x02\x06\x08\x15\x03\x2b\x02\x07\x07"
        !          41503:             "\x15\x02\x2b\x03\x07\x07\x15\x02\x2b\x03\x07\x08\x14"
        !          41504:             "\x02\x2b\x02\x09\x07\x13\x03\x2b\x02\x09\x07\x13\x02"
        !          41505:             "\x2c\x02\x09\x08\x12\x02\x2b\x03\x0a\x07\x12\x02\x2b"
        !          41506:             "\x02\x0b\x07\x11\x02\x2c\x02\x0b\x08\x10\x02\x2c\x02"
        !          41507:             "\x0c\x07\x10\x02\x2b\x02\x0d\x08\x0e\x03\x2b\x02\x0d"
        !          41508:             "\x08\x0e\x02\x2c\x02\x0e\x07\x0e\x02\x2b\x03\x0e\x08"
        !          41509:             "\x0d\x02\x2b\x02\x10\x07\x0c\x03\x2b\x02\x10\x07\x0c"
        !          41510:             "\x02\x2c\x02\x10\x08\x0b\x02\x2b\x02\x12\x07\x0b\x02"
        !          41511:             "\x2b\x02\x12\x08\x09\x03\x2b\x02\x12\x08\x09\x02\x1a"
        !          41512:             "\x00\xff\x01\x11\x02\x14\x08\x08\x02\x1a\x00\x11\x02"
        !          41513:             "\x15\x07\x07\x03\x2a\x02\x16\x08\x06\x03\x2a\x02\x17"
        !          41514:             "\x07\x06\x02\x2b\x02\x17\x08\x05\x02\x2a\x02\x18\x08"
        !          41515:             "\x05\x02\x2a\x02\x19\x08\x03\x03\x29\x03\x19\x09\x02"
        !          41516:             "\x02\x1e\x01\x0b\x02\x1b\x08\x02\x02\x1e\x02\x09\x03"
        !          41517:             "\x1b\x09\x01\x02\x1d\x05\x06\x03\x1d\x0b\x1d\x0e\x1e"
        !          41518:             "\x09\x1d\x0e\x1f\x09\x1d\x0e\x20\x08\x1d\x0d\x21\x08"
        !          41519:             "\x1d\x0c\x23\x05\x20\x0b\x24\x03\x22\x09\x4c\x06\x49" }  },
        !          41520:       /* --- pixel bitmap for cmsy600 char#79 \calO --- */
        !          41521:       {  79,14707,                      /* character number, location */
        !          41522:          59, 5,   -2, 5,      /* topleft row,col, and botleft row,col */
        !          41523:           { 59,   61, 3,487, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          41524:             "\xe0\xb3\xc9\xe0\xe0\x54\xae\xe0\xe0\x24\x9e\x04\xe0"
        !          41525:             "\xc4\x9e\x07\xe0\xa4\x94\x6d\xe0\x83\x94\xac\xe0\x54"
        !          41526:             "\x94\xda\xe0\x44\x94\xe0\x1a\xe0\x24\x94\xe0\x39\xe0"
        !          41527:             "\x14\x95\xe0\x49\xd4\x95\xe0\x59\xc4\x95\xe0\x78\xb5"
        !          41528:             "\x95\xe0\x78\xa5\x95\xe0\x98\x85\x96\xe0\x98\x85\x95"
        !          41529:             "\xe0\xa8\x75\x96\xe0\xa8\x66\x95\xe0\xc7\x65\x96\xe0"
        !          41530:             "\xc7\x56\x95\xe0\xd7\x55\x95\xe0\xe7\x46\x93\xe0\xe0"
        !          41531:             "\x27\x45\xe0\xe0\xe0\x17\xf1\x36\xe0\xe0\xe0\x17\xf2"
        !          41532:             "\x26\xe0\xe0\xe0\x26\x10\x17\xe0\xe0\xe0\x17\x26\xe0"
        !          41533:             "\xe0\xe0\x27\x10\xf1\x16\xe0\xe0\xe0\x26\x27\xe0\xe0"
        !          41534:             "\xe0\x26\x2f\x17\xe0\xe0\xe0\x16\x37\xe0\xe0\xe0\x15"
        !          41535:             "\x47\xe0\xe0\xe6\x47\xe0\xe0\xe5\x57\xe0\xe0\xd6\x57"
        !          41536:             "\xe0\xe0\xd5\x67\xe0\xe0\xc6\x68\xe0\xe0\xb5\x7f\x18"
        !          41537:             "\xe0\xe0\xa5\x88\xe0\xe0\x95\xa8\xe0\xe0\x75\xb8\xe0"
        !          41538:             "\xe0\x74\xc8\xe0\xe0\x64\xd9\xe0\xe0\x44\xe0\x19\xe0"
        !          41539:             "\xe0\x24\xe0\x29\xe0\xe0\x14\xe0\x3a\xe0\xd4\xe0\x5a"
        !          41540:             "\xe0\xb3\xe0\x8a\xe0\x84\xe0\x9c\xe0\x45\xe0\xbd\xe5"
        !          41541:             "\xe0\xee\x01\x86\xe0\xe0\x3e\x0c\xe0\xe0\x7e\x08\xe0"
        !          41542:             "\xe0\xbe\x03\xe0\xe0\xe0\x3b\xe0\xe0\x60" }  },
        !          41543:       /* --- pixel bitmap for cmsy600 char#80 \calP --- */
        !          41544:       {  80,15684,                      /* character number, location */
        !          41545:          57, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
        !          41546:           { 60,   61, 3,429, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          41547:             "\xe0\x8e\x0a\xe0\xe0\x3e\x0e\x05\xe0\xbe\x0e\x0a\xe0"
        !          41548:             "\x5e\x0e\x0e\xe0\x28\x46\xbe\x03\xd4\x96\xe0\x1e\xa4"
        !          41549:             "\xa7\xe0\x4c\x84\xb7\xe0\x5c\x64\xc7\xe0\x7a\x55\xc7"
        !          41550:             "\xe0\x89\x45\xd7\xe0\x99\x26\xd6\xe0\xb8\x25\xe6\xe0"
        !          41551:             "\xb8\x15\xe0\x16\xe0\xb8\x14\xe0\x17\xe0\xc9\xe0\x47"
        !          41552:             "\xe0\xc7\xe0\x67\xe0\xc7\xf2\xe0\x66\xe0\xd6\x10\xf1"
        !          41553:             "\xe0\x57\xe0\xc6\x20\xe0\x56\xe0\xd5\x30\xf1\xe0\x56"
        !          41554:             "\xe0\xc5\x40\xe0\x47\xe0\xb5\xe0\x97\xe0\xa5\xe0\xa6"
        !          41555:             "\xe0\xb4\xe0\xb6\xe0\xa4\xe0\xc6\xe0\x94\xe0\xc7\xe0"
        !          41556:             "\x84\xe0\xd6\xe0\x83\xe0\xe0\x16\xe0\x64\xe0\xe0\x26"
        !          41557:             "\xe0\x45\xe0\xe0\x26\xe0\x26\xe0\xe0\x46\xc8\xe0\xe0"
        !          41558:             "\x66\x6c\xe0\xe0\x77\x4b\xe0\xe0\xa6\x3a\xe0\xe0\xd6"
        !          41559:             "\x27\xe0\xe0\xe0\x36\xe0\xe0\xb0\xf2\xe6\xe0\xe0\xc0"
        !          41560:             "\xf2\xd6\xe0\xe0\xd0\xf2\xc6\xe0\xe0\xe0\xf1\xb6\xe0"
        !          41561:             "\xe0\xe0\x10\xb5\xe0\xe0\xe0\x20\xf1\xa6\xe0\xe0\xe0"
        !          41562:             "\x20\xf2\x96\xe0\xe0\xe0\x30\x86\xe0\xe0\xe0\xc4\xe0"
        !          41563:             "\xe0\xe0\xe2\xe0\xe0\xe0\x80" }  },
        !          41564:       /* --- pixel bitmap for cmsy600 char#81 \calQ --- */
        !          41565:       {  81,16719,                      /* character number, location */
        !          41566:          59, 9,  -10, 9,      /* topleft row,col, and botleft row,col */
        !          41567:           { 56,   69, 2,247, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          41568:             "\x1f\x0b\x29\x12\x24\x15\x20\x1a\x1c\x07\x08\x0e\x1a"
        !          41569:             "\x04\x0f\x0c\x17\x04\x12\x0c\x15\x04\x15\x0a\x13\x04"
        !          41570:             "\x18\x0a\x11\x04\x1a\x0a\x0f\x04\x1c\x09\x0e\x04\x1d"
        !          41571:             "\x0a\x0c\x04\x1f\x09\x0b\x05\x20\x08\x0a\x05\x21\x08"
        !          41572:             "\x02\x00\xff\x01\x07\x05\x23\x08\x01\x00\x06\x05\x24"
        !          41573:             "\x08\x06\x05\x25\x08\x06\x05\x26\x07\x05\x05\x27\x07"
        !          41574:             "\x01\x00\xff\x01\x03\x06\x27\x07\x01\x00\xff\x02\x02"
        !          41575:             "\x06\x28\x07\x01\x00\x01\x07\x28\x06\x02\x00\xff\x01"
        !          41576:             "\x01\x06\x29\x06\x02\x00\x01\x06\x28\x07\x02\x07\x28"
        !          41577:             "\x07\x02\xff\x02\x07\x28\x06\x03\xff\x01\x07\x27\x06"
        !          41578:             "\x04\x08\x26\x05\x05\x08\x25\x06\x05\x08\x25\x05\x06"
        !          41579:             "\x09\x23\x06\x07\x08\x23\x05\x08\x09\x21\x05\x09\x0a"
        !          41580:             "\x20\x04\x0b\x0a\x11\x03\x0a\x05\x0b\x0c\x0d\x04\x0a"
        !          41581:             "\x05\x0d\x0d\x08\x06\x0a\x05\x0f\x18\x0c\x04\x11\x15"
        !          41582:             "\x0d\x04\x14\x10\x0f\x04\x17\x0b\x11\x04\x33\x04\x33"
        !          41583:             "\x03\x33\x04\x32\x05\x31\x05\x30\x06\x2d\x09\x20\x16"
        !          41584:             "\x19\x03\x04\x15\x1b\x04\x03\x14\x1b\x05\x03\x18\x17"
        !          41585:             "\x06\x09\x14\x15\x05\x0e\x13\x11\x05\x13\x13\x0d\x04"
        !          41586:             "\x17\x14\x08\x04\x1a\x1c\x1f\x18\x24\x11\x2b\x0b\x0d" }  },
        !          41587:       /* --- pixel bitmap for cmsy600 char#82 \calR --- */
        !          41588:       {  82,17732,                      /* character number, location */
        !          41589:          57, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
        !          41590:           { 69,   59, 3,547, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          41591:             "\xe0\x8e\x0c\xe0\xe0\xae\x0e\x08\xe0\xe0\x3e\x0e\x0c"
        !          41592:             "\xe0\xce\x0e\x0e\x03\xe0\x88\x46\xde\x03\xe0\x64\x96"
        !          41593:             "\xe0\x4d\xe0\x34\xa7\xe0\x6b\xe0\x24\xb7\xe0\x8a\xe4"
        !          41594:             "\xc7\xe0\x99\xd5\xc7\xe0\xa8\xc5\xd7\xe0\xa8\xb6\xd6"
        !          41595:             "\xe0\xc7\xb5\xe6\xe0\xc7\xa5\xe0\x16\xe0\xc7\xa4\xe0"
        !          41596:             "\x17\xe0\xc6\xa2\xe0\x47\xe0\xc6\xe0\xe0\x27\xe0\xc6"
        !          41597:             "\xa0\xf1\xe0\x66\xe0\xc6\xb0\xe0\x66\xe0\xc5\xe0\xe0"
        !          41598:             "\x37\xe0\xb6\xe0\xe0\x37\xe0\xb5\xe0\xe0\x46\xe0\xb5"
        !          41599:             "\xe0\xe0\x56\xe0\xb4\xe0\xe0\x66\xe0\xa4\xe0\xe0\x67"
        !          41600:             "\xe0\x94\xe0\xe0\x77\xe0\x83\xe0\xe0\x96\xe0\x74\xe0"
        !          41601:             "\xe0\xa6\xe0\x55\xe0\xe0\xb6\xe0\x17\xe0\xe0\xc7\x8c"
        !          41602:             "\xe0\xe0\xe6\x7b\xe0\xe0\xe0\x36\x6b\xe0\xe0\xe0\x46"
        !          41603:             "\x5d\xe0\xe0\xe0\x26\x8b\xe0\xe0\xe0\x26\xaa\xe0\xe0"
        !          41604:             "\xe0\x16\xb9\xe0\xe0\xe7\xc9\xe0\xe0\xd6\xd9\xe0\xc0"
        !          41605:             "\xf1\xe0\x16\xe9\xe0\xb0\xf1\xe6\xe0\x29\xe0\xa0\xe6"
        !          41606:             "\xe0\x38\xe0\xe0\x96\xe0\x49\xe0\xe0\x86\xe0\x58\xe0"
        !          41607:             "\xe0\x86\xe0\x59\xe0\x71\xc6\xe0\x69\xe0\x44\xc6\xe0"
        !          41608:             "\x79\xe0\x24\xd5\xe0\x89\xe0\x14\xd6\xe0\x99\xd4\xe6"
        !          41609:             "\xe0\x99\xc4\xe6\xe0\xb9\xa4\xe0\x16\xe0\xba\x84\xe0"
        !          41610:             "\x25\xe0\xdb\x44\xe0\x36\xe0\xde\x04\xe0\x45\xe0\xe0"
        !          41611:             "\x1e\x01\xe0\x55\xe0\xe0\x3c\xe0\x73\xe0\xe0\x77\xe0"
        !          41612:             "\x22" }  },
        !          41613:       /* --- pixel bitmap for cmsy600 char#83 \calS --- */
        !          41614:       {  83,18700,                      /* character number, location */
        !          41615:          59, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
        !          41616:           { 53,   61, 2,191, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          41617:             "\x22\x0b\x26\x12\x21\x16\x1d\x19\x1a\x06\x08\x0e\x18"
        !          41618:             "\x04\x0e\x0b\x16\x04\x12\x0a\x14\x04\x14\x09\x13\x05"
        !          41619:             "\x15\x08\x12\x05\x16\x08\x11\x06\x17\x07\x11\x05\x18"
        !          41620:             "\x06\x11\x06\x18\x05\x12\x06\x18\x04\x12\x07\x17\x04"
        !          41621:             "\x04\x00\xff\x01\x0f\x07\x1f\x00\xff\x01\x0f\x08\x1e"
        !          41622:             "\x00\x0f\x09\x2c\x0a\x2c\x0a\x2b\x0b\x2b\x0c\x2a\x0d"
        !          41623:             "\x29\x0e\x28\x0f\x28\x0f\x28\x0f\x28\x0e\x29\x0e\x29"
        !          41624:             "\x0d\x2a\x0c\x2a\x0c\x2b\x0b\x2b\x0a\x2c\x09\x10\x03"
        !          41625:             "\x1a\x09\x0d\x04\x1c\x08\x0b\x05\x1d\x08\x0a\x04\x1f"
        !          41626:             "\x08\x09\x05\x20\x07\x08\x06\x20\x07\x07\x06\x21\x07"
        !          41627:             "\x06\x00\xff\x01\x01\x06\x21\x06\x07\x07\x21\x05\x08"
        !          41628:             "\x07\x20\x06\x08\x08\x1f\x05\x09\x08\x1e\x05\x0a\x09"
        !          41629:             "\x1d\x04\x0b\x0a\x1b\x04\x0d\x0a\x19\x04\x0e\x0b\x17"
        !          41630:             "\x04\x10\x0c\x13\x04\x13\x0d\x0f\x05\x15\x0f\x08\x07"
        !          41631:             "\x18\x1b\x1c\x17\x20\x12\x26\x0b\x1e" }  },
        !          41632:       /* --- pixel bitmap for cmsy600 char#84 \calT --- */
        !          41633:       {  84,19552,                      /* character number, location */
        !          41634:          60, 3,   -6, 3,      /* topleft row,col, and botleft row,col */
        !          41635:           { 66,   66, 2,159, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          41636:             "\x41\x01\x3e\x04\x3d\x04\x13\x2e\x11\x30\x0f\x31\x0f"
        !          41637:             "\x31\x10\x2f\x11\x04\x14\x06\x23\x04\x14\x07\x22\x04"
        !          41638:             "\x15\x07\x21\x05\x14\x07\x21\x05\x15\x07\x20\x06\x15"
        !          41639:             "\x07\x1f\x07\x15\x07\x1f\x07\x14\x07\x1f\x07\x15\x07"
        !          41640:             "\x1f\x06\x16\x07\x1f\x04\x18\x07\x1f\x01\x1a\x07\x20"
        !          41641:             "\x00\xff\x02\x1b\x07\x20\x00\xff\x03\x1a\x07\x21\x00"
        !          41642:             "\xff\x03\x19\x07\x22\x00\xff\x03\x18\x07\x23\x00\xff"
        !          41643:             "\x03\x17\x07\x24\x00\xff\x03\x16\x07\x25\x00\xff\x03"
        !          41644:             "\x15\x07\x26\x00\xff\x02\x14\x07\x27\x00\x14\x06\x28"
        !          41645:             "\x00\xff\x01\x13\x07\x28\x00\x13\x06\x29\x00\xff\x01"
        !          41646:             "\x12\x07\x29\x00\x12\x06\x3b\x07\x2a\x00\xff\x01\x11"
        !          41647:             "\x06\x2b\x00\x10\x07\x3b\x06\x3b\x06\x3c\x05\x3d\x03"
        !          41648:             "\x3e\x01\x33" }  },
        !          41649:       /* --- pixel bitmap for cmsy600 char#85 \calU --- */
        !          41650:       {  85,20403,                      /* character number, location */
        !          41651:          57,-1,   -2,-1,      /* topleft row,col, and botleft row,col */
        !          41652:           { 59,   59, 3,529, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          41653:             "\xc8\xe0\xe0\x83\xab\xe0\xe0\x54\x8e\xe0\xe0\x45\x6e"
        !          41654:             "\x02\xe0\xe0\x36\x54\x58\xe0\xe0\x27\x43\x87\xe0\xe0"
        !          41655:             "\x26\x42\xa7\xe0\xe0\x26\x20\xf1\xe6\xe0\xe0\x26\x30"
        !          41656:             "\xe6\xe0\xe0\x25\xe0\x37\xe0\xe0\x16\xe0\x36\xe0\xe0"
        !          41657:             "\x26\xe0\x36\xe0\xe0\x16\xe0\x45\xe0\xe0\x26\xe0\x36"
        !          41658:             "\xe0\xe0\x26\xe0\x36\xe0\xe0\x16\xe0\x36\xe0\xe0\x26"
        !          41659:             "\xe0\x36\xe0\xe0\x17\xe0\x35\xe0\xe0\x26\xe0\x36\xe0"
        !          41660:             "\xe0\x17\xe0\x35\xe0\xe0\x18\xe0\x26\xe0\xe0\x17\xe0"
        !          41661:             "\x36\xe0\xe8\xe0\x26\xe0\xe0\x18\xe0\x26\xe0\xe8\xe0"
        !          41662:             "\x35\xe0\xe0\x18\xe0\x26\xe0\xe9\xe0\x25\xe0\xea\xe0"
        !          41663:             "\x16\xe0\xe9\xe0\x26\xe0\xda\xe0\x16\xe0\xdb\xe0\x16"
        !          41664:             "\xe0\xda\xe0\x25\xe0\xdb\xe0\x16\xe0\xc5\x16\xe0\x16"
        !          41665:             "\xe0\xc4\x17\xe6\xe0\xc5\x16\xe0\x16\xe0\xb5\x26\xe0"
        !          41666:             "\x16\xe0\xa5\x36\xe6\xe0\xb4\x36\xe0\x16\xe0\xa4\x46"
        !          41667:             "\xe0\x16\xe0\x95\x46\xe6\xe0\x95\x47\xe6\xe0\x85\x56"
        !          41668:             "\xe0\x16\xe0\x84\x66\xe7\xe0\x74\x76\xe7\xe0\x64\x77"
        !          41669:             "\xe7\xe0\x54\x87\xe7\xe0\x44\x97\xe7\xe0\x34\xa6\xe0"
        !          41670:             "\x18\xe0\x14\xb6\xe0\x18\xe4\xc6\xe0\x18\xd3\xd7\xe0"
        !          41671:             "\x19\xa4\xe7\xe0\x29\x84\xe0\x17\xe0\x2b\x44\xe0\x38"
        !          41672:             "\x32\xae\x04\xe0\x4d\xbe\x01\xe0\x6b\xec\xe0\x8a\xe0"
        !          41673:             "\x37\xe0\xc6\xe0\x10" }  },
        !          41674:       /* --- pixel bitmap for cmsy600 char#86 \calV --- */
        !          41675:       {  86,21370,                      /* character number, location */
        !          41676:          57, 3,   -4, 3,      /* topleft row,col, and botleft row,col */
        !          41677:           { 52,   61, 3,447, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          41678:             "\x36\xe0\xe0\x63\x89\xe0\xe0\x36\x4d\xe0\xe0\x17\x3e"
        !          41679:             "\xe0\xe8\x5c\xe0\xca\x6b\xe0\xba\x89\xe0\xbb\x89\xe0"
        !          41680:             "\xab\x98\xe0\xd8\xa8\xe0\xe6\xa8\xe0\xe0\x15\xf1\xb8"
        !          41681:             "\xe0\xe0\x14\xc7\xe0\xe0\x23\xc7\xe0\xe0\x22\x10\xf1"
        !          41682:             "\xd7\xe0\xe0\x12\x10\xf1\xd7\xe0\xe2\x20\xe6\xe0\xd3"
        !          41683:             "\xe0\x26\xe0\xd2\xe0\x37\xe0\xb3\xe0\x37\xe0\xb2\xe0"
        !          41684:             "\x47\xe0\xa3\xe0\x47\xe0\x93\xe0\x66\xe0\x93\xe0\x66"
        !          41685:             "\xe0\x83\xe0\x76\xe0\x74\xe0\x76\xe0\x64\x70\xf1\xe0"
        !          41686:             "\x16\xe0\x54\x80\xe0\x16\xe0\x44\xe0\xa6\xe0\x34\xe0"
        !          41687:             "\xb6\xe0\x25\xe0\xb6\xe0\x15\xe0\xc6\xe5\xe0\xd6\xd5"
        !          41688:             "\xe0\xe6\xc5\xe0\xe0\x16\xb6\xe0\xe0\x16\xa6\xe0\xe0"
        !          41689:             "\x25\xa6\xe0\xe0\x35\x96\xe0\xe0\x45\x86\xe0\xe0\x46"
        !          41690:             "\x76\xe0\xe0\x56\x66\xe0\xe0\x66\x47\xe0\xe0\x76\x37"
        !          41691:             "\xe0\xe0\x86\x27\xe0\xe0\x95\x27\xe0\xe0\xa5\x17\xe0"
        !          41692:             "\xe0\xbc\xe0\xe0\xbc\xe0\xe0\xcb\xe0\xe0\xd9\xe0\xe0"
        !          41693:             "\xe0\x18\xe0\xe0\xe0\x27\xe0\xe0\xe0\x27\xe0\xe0\xe0"
        !          41694:             "\x36\xe0\xe0\xe0\x44\xe0\xe0\xe0\x63\xe0\xe0\xe0\x72"
        !          41695:             "\xe0\xe0\xa4" }  },
        !          41696:       /* --- pixel bitmap for cmsy600 char#87 \calW --- */
        !          41697:       {  87,22561,                      /* character number, location */
        !          41698:          57, 3,   -4, 3,      /* topleft row,col, and botleft row,col */
        !          41699:           { 83,   61, 3,733, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          41700:             "\x36\xe0\xe0\x93\xe0\xd3\x6a\xe0\xe0\x54\xe0\xd4\x3d"
        !          41701:             "\xe0\xe0\x27\xe0\xb6\x2e\xe0\xe0\x17\xe0\xb7\x4c\xe0"
        !          41702:             "\xe7\xe0\xa8\x79\xe0\xe8\xe0\x99\x79\xe0\xd8\xe0\x99"
        !          41703:             "\x88\xe0\xc9\xe0\x99\x98\xe0\xba\xe0\xb6\x98\xe0\xa3"
        !          41704:             "\x17\xe0\xc5\xa7\xe0\xa2\x27\xe0\xd4\xa8\xe0\x83\x28"
        !          41705:             "\xe0\xc4\xb7\xe0\x82\x47\xe0\xd3\xb7\xe0\x73\x47\xe0"
        !          41706:             "\xd3\xb7\xe0\x72\x57\xe0\xd2\xd6\xe0\x63\x67\xe0\xc2"
        !          41707:             "\xd7\xe0\x43\x77\xe0\xc2\xd7\xe0\x43\x77\xe0\xb2\xe7"
        !          41708:             "\xe0\x33\x87\xe0\xb2\xe7\xe0\x32\xa7\xe0\xa2\xe0\x16"
        !          41709:             "\xe0\x23\xa7\xe0\x92\xe0\x26\xe0\x13\xb7\xe0\x92\xe0"
        !          41710:             "\x26\xe0\x13\xb7\xe0\x83\xe0\x26\xe3\xd6\xe0\x82\xe0"
        !          41711:             "\x36\xe3\xd7\xe0\x63\xe0\x36\xd3\xe7\xe0\x62\xe0\x46"
        !          41712:             "\xc3\xe0\x17\xe0\x53\xe0\x46\xc3\xe0\x17\xe0\x52\xe0"
        !          41713:             "\x56\xb3\xe0\x36\xe0\x43\x60\xf1\xd6\xa3\xe0\x47\xe0"
        !          41714:             "\x23\x70\xd6\x93\xe0\x57\xe0\x13\xe0\x76\x84\xe0\x57"
        !          41715:             "\xe3\xe0\x86\x83\xe0\x76\xe3\xe0\x86\x73\xe0\x86\xd3"
        !          41716:             "\xe0\x95\x74\xe0\x86\xc4\xe0\x95\x64\xe0\x97\xb3\xe0"
        !          41717:             "\xa5\x63\xe0\xa7\xa3\xe0\xa6\x54\xe0\xa7\x94\xe0\xa6"
        !          41718:             "\x44\xe0\xb7\x84\xe0\xb6\x43\xe0\xd6\x83\xe0\xc6\x34"
        !          41719:             "\xe0\xd6\x74\xe0\xc6\x24\xe0\xe6\x64\xe0\xd5\x24\xe0"
        !          41720:             "\xe0\x16\x54\xe0\xe5\x14\xe0\xe0\x26\x54\xe0\xe5\x14"
        !          41721:             "\xe0\xe0\x26\x44\xe0\xea\xe0\xe0\x37\x24\xe0\xe0\x19"
        !          41722:             "\xe0\xe0\x47\x14\xe0\xe0\x29\xe0\xe0\x4c\xe0\xe0\x28"
        !          41723:             "\xe0\xe0\x5b\xe0\xe0\x37\xe0\xe0\x79\xe0\xe0\x46\xe0"
        !          41724:             "\xe0\x88\xe0\xe0\x46\xe0\xe0\x98\xe0\xe0\x46\xe0\xe0"
        !          41725:             "\x97\xe0\xe0\x55\xe0\xe0\xa6\xe0\xe0\x64\xe0\xe0\xb5"
        !          41726:             "\xe0\xe0\x64\xe0\xe0\xc4\xe0\xc0\xf1\x93\xe0\xe0\xd3"
        !          41727:             "\xe0\xd0\x92\xe0\xe0\xe2\xe0\xe0\x91\xe0\xe0\xe0\x11"
        !          41728:             "\xe0\xe0\x10" }  },
        !          41729:       /* --- pixel bitmap for cmsy600 char#88 \calX --- */
        !          41730:       {  88,23736,                      /* character number, location */
        !          41731:          57, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          41732:           { 63,   57, 2,235, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          41733:             "\x18\x08\x19\x05\x16\x0c\x16\x08\x14\x0e\x14\x09\x12"
        !          41734:             "\x10\x13\x0a\x11\x05\x03\x0a\x14\x08\x10\x05\x05\x09"
        !          41735:             "\x15\x07\x0f\x05\x07\x08\x15\x07\x0f\x03\x09\x08\x15"
        !          41736:             "\x06\x1d\x07\x15\x06\x1d\x07\x15\x05\x1e\x08\x13\x05"
        !          41737:             "\x1f\x08\x13\x04\x20\x08\x12\x04\x21\x08\x11\x04\x23"
        !          41738:             "\x07\x10\x03\x25\x07\x0e\x04\x26\x07\x0d\x04\x27\x07"
        !          41739:             "\x0b\x04\x29\x07\x0a\x04\x2a\x07\x08\x04\x2c\x08\x06"
        !          41740:             "\x04\x2d\x08\x04\x04\x2f\x08\x02\x05\x30\x08\x01\x04"
        !          41741:             "\x33\x0a\x35\x09\x18\x00\xff\x01\x1e\x07\x1a\x00\x1d"
        !          41742:             "\x08\x36\x09\x34\x0b\x32\x05\x01\x08\x30\x04\x03\x08"
        !          41743:             "\x2e\x04\x05\x08\x2c\x05\x06\x08\x2b\x04\x09\x07\x29"
        !          41744:             "\x04\x0b\x07\x28\x04\x0c\x07\x26\x04\x0e\x07\x25\x04"
        !          41745:             "\x0f\x07\x23\x04\x11\x07\x22\x04\x12\x08\x20\x03\x14"
        !          41746:             "\x08\x1e\x04\x15\x08\x1d\x04\x16\x08\x1c\x04\x18\x07"
        !          41747:             "\x1b\x05\x18\x07\x1a\x05\x19\x07\x19\x06\x19\x08\x18"
        !          41748:             "\x06\x19\x08\x09\x03\x0b\x07\x19\x08\x07\x05\x0b\x07"
        !          41749:             "\x19\x09\x05\x05\x0c\x08\x19\x09\x03\x05\x0d\x0a\x17"
        !          41750:             "\x10\x0e\x09\x18\x0e\x10\x08\x1a\x0b\x13\x05\x1d\x08"
        !          41751:             "\x14" }  },
        !          41752:       /* --- pixel bitmap for cmsy600 char#89 \calY --- */
        !          41753:       {  89,24671,                      /* character number, location */
        !          41754:          57, 2,  -11, 2,      /* topleft row,col, and botleft row,col */
        !          41755:           { 57,   68, 2,255, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          41756:             "\x0b\x07\x1e\x04\x0e\x0b\x1c\x06\x0a\x0f\x19\x08\x08"
        !          41757:             "\x11\x18\x09\x05\x04\x04\x0c\x16\x0a\x05\x03\x07\x0b"
        !          41758:             "\x15\x0b\x03\x02\x0b\x0a\x14\x0b\x11\x09\x18\x07\x12"
        !          41759:             "\x09\x19\x05\x13\x08\x1a\x04\x14\x08\x19\x04\x14\x08"
        !          41760:             "\x1a\x03\xff\x01\x15\x08\x19\x03\xff\x01\x16\x07\x19"
        !          41761:             "\x02\x01\x00\x17\x07\x18\x02\x01\x00\xff\x02\x17\x07"
        !          41762:             "\x17\x02\x02\x00\xff\x01\x18\x07\x15\x02\x03\x00\x18"
        !          41763:             "\x07\x14\x03\x1b\x07\x14\x02\x1d\x06\x13\x03\x1d\x06"
        !          41764:             "\x13\x02\x1e\x06\x12\x03\x1e\x07\x11\x02\x1f\x07\x10"
        !          41765:             "\x03\x1f\x07\x10\x02\x20\x07\x0f\x03\x07\x00\xff\x01"
        !          41766:             "\x1a\x06\x0e\x03\x08\x00\x1a\x06\x0d\x03\x09\x00\xff"
        !          41767:             "\x01\x1a\x06\x0c\x03\x0a\x00\x1a\x06\x0b\x03\x25\x06"
        !          41768:             "\x0a\x03\x26\x06\x09\x04\x26\x06\x08\x04\x27\x06\x08"
        !          41769:             "\x03\x28\x06\x07\x04\x28\x06\x06\x04\x29\x06\x05\x04"
        !          41770:             "\x2a\x06\x04\x04\x2b\x06\x03\x04\x2c\x06\x02\x05\x2c"
        !          41771:             "\x06\x01\x05\x2d\x0b\x2e\x0a\x2f\x09\x30\x08\x31\x07"
        !          41772:             "\x1a\x01\x17\x06\x1b\x01\x16\x06\x1b\x03\x14\x06\x1c"
        !          41773:             "\x03\x12\x07\x1c\x05\x10\x07\x1d\x06\x0d\x08\x1e\x07"
        !          41774:             "\x0a\x08\x20\x0a\x05\x09\x22\x16\x23\x15\x25\x12\x28"
        !          41775:             "\x10\x2a\x0d\x2d\x0a\x32\x05\x2c" }  },
        !          41776:       /* --- pixel bitmap for cmsy600 char#90 \calZ --- */
        !          41777:       {  90,25735,                      /* character number, location */
        !          41778:          57, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          41779:           { 61,   57, 2,177, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          41780:             "\x1f\x0b\x11\x02\x1c\x15\x07\x04\x1a\x22\x19\x23\x18"
        !          41781:             "\x24\x17\x05\x0a\x17\x16\x04\x13\x09\x01\x05\x16\x05"
        !          41782:             "\x1c\x05\x16\x05\x1c\x05\x16\x06\x1c\x04\x16\x06\x1c"
        !          41783:             "\x04\x17\x05\x1c\x04\x17\x05\x1c\x05\x17\x04\x1c\x05"
        !          41784:             "\x18\x01\x1e\x05\x37\x05\x38\x04\x38\x04\x38\x04\x38"
        !          41785:             "\x04\x38\x04\x38\x04\x38\x04\x38\x04\x2c\x15\x27\x18"
        !          41786:             "\x24\x19\x2f\x04\x03\x07\x2e\x04\x06\x04\x2e\x04\x07"
        !          41787:             "\x03\x2e\x04\x38\x04\x38\x04\x38\x04\x38\x04\x37\x04"
        !          41788:             "\x38\x04\x38\x04\x38\x04\x38\x04\x38\x04\x1f\x02\x17"
        !          41789:             "\x04\x1e\x04\x16\x04\x1d\x06\x15\x04\x1d\x06\x14\x04"
        !          41790:             "\x1e\x07\x13\x04\x1f\x06\x13\x04\x20\x06\x12\x04\x20"
        !          41791:             "\x06\x12\x04\x21\x05\x12\x04\x21\x05\x11\x04\x01\x0e"
        !          41792:             "\x14\x04\x11\x1d\x0a\x04\x11\x2b\x11\x2a\x12\x2a\x12"
        !          41793:             "\x03\x0d\x19\x13\x02\x18\x0d\x16" }  },
        !          41794:       /* --- pixel bitmap for cmsy600 char#91 \cup --- */
        !          41795:       {  91,30068,                      /* character number, location */
        !          41796:          50, 5,   -2, 5,      /* topleft row,col, and botleft row,col */
        !          41797:           { 45,   52, 2,65, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          41798:             "\x01\x02\x27\x02\x01\xff\x22\x04\x25\x04\x00\x04\x24"
        !          41799:             "\x0a\x23\x0a\x23\x04\x01\x00\xff\x01\x01\x05\x21\x05"
        !          41800:             "\x01\x00\x02\x05\x1f\x05\x04\x06\x1d\x06\x05\x06\x1b"
        !          41801:             "\x06\x07\x06\x19\x06\x09\x07\x15\x07\x0b\x08\x11\x08"
        !          41802:             "\x0e\x0a\x09\x0a\x11\x1b\x14\x17\x18\x13\x1e\x0b\x11" }  },
        !          41803:       /* --- pixel bitmap for cmsy600 char#92 \cap --- */
        !          41804:       {  92,30899,                      /* character number, location */
        !          41805:          50, 5,   -2, 5,      /* topleft row,col, and botleft row,col */
        !          41806:           { 45,   52, 2,65, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          41807:             "\x11\x0b\x1e\x13\x18\x17\x14\x1b\x11\x0a\x09\x0a\x0e"
        !          41808:             "\x08\x11\x08\x0b\x07\x15\x07\x09\x06\x19\x06\x07\x06"
        !          41809:             "\x1b\x06\x05\x06\x1d\x06\x04\x05\x1f\x05\x02\x00\xff"
        !          41810:             "\x01\x01\x05\x21\x05\x01\x00\x01\x04\x23\x0a\x23\x0a"
        !          41811:             "\x24\x04\x00\xff\x22\x04\x25\x04\x01\x02\x27\x02\x01" }  },
        !          41812:       /* --- pixel bitmap for cmsy600 char#93 \uplus --- */
        !          41813:       {  93,94804,                      /* character number, location */
        !          41814:          50, 5,   -2, 5,      /* topleft row,col, and botleft row,col */
        !          41815:           { 45,   52, 3,191, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          41816:             "\x12\xe0\xe0\xb2\x1f\x84\xe0\xe0\x94\x04\xe0\x42\xe0"
        !          41817:             "\x34\x0f\xb4\xe0\x34\xe0\x24\x04\x5e\x0d\x54\x0f\x14"
        !          41818:             "\x4e\x0e\x01\x44\x04\x5e\x0d\x54\x0f\x84\xe0\x34\xe0"
        !          41819:             "\x24\x04\xe0\x34\xe0\x1a\xe0\x24\xe0\x1a\xe0\x32\xe0"
        !          41820:             "\x24\x10\xf1\x15\xe0\xe0\x55\x10\x25\xe0\xe0\x35\x46"
        !          41821:             "\xe0\xe0\x16\x56\xe0\xd6\x76\xe0\xb6\x97\xe0\x77\xb8"
        !          41822:             "\xe0\x38\xea\x9a\xe0\x3e\x0d\xe0\x6e\x09\xe0\xae\x05"
        !          41823:             "\xe0\xe0\x2b\xe0\x35" }  },
        !          41824:       /* --- pixel bitmap for cmsy600 char#94 \wedge --- */
        !          41825:       {  94,31713,                      /* character number, location */
        !          41826:          50, 5,   -2, 5,      /* topleft row,col, and botleft row,col */
        !          41827:           { 45,   52, 3,289, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          41828:             "\xe0\x73\xe0\x70\xf1\xe0\x65\xe0\x60\xf2\xe0\x57\xe0"
        !          41829:             "\x50\xf1\xe0\x49\xe0\x40\xf1\xe0\x35\x15\xe0\x30\xf1"
        !          41830:             "\xe0\x25\x35\xe0\x20\xe0\x24\x54\xe0\x20\xf1\xe0\x15"
        !          41831:             "\x55\xe0\x10\xf1\xe5\x75\xe0\xf1\xd5\x95\xd0\xd4\xb4"
        !          41832:             "\xd0\xf1\xc5\xb5\xc0\xf1\xb5\xd5\xb0\xf1\xa5\xe0\x15"
        !          41833:             "\xa0\xa4\xe0\x34\xa0\xf1\x95\xe0\x35\x90\xf1\x85\xe0"
        !          41834:             "\x55\x80\xf1\x75\xe0\x75\x70\x74\xe0\x94\x70\xf1\x65"
        !          41835:             "\xe0\x95\x60\xf1\x55\xe0\xb5\x50\xf1\x45\xe0\xd5\x40"
        !          41836:             "\x44\xe0\xe0\x14\x40\xf1\x35\xe0\xe0\x15\x30\xf1\x25"
        !          41837:             "\xe0\xe0\x35\x20\xf1\x15\xe0\xe0\x55\x10\x14\xe0\xe0"
        !          41838:             "\x74\x1f\x15\xe0\xe0\x75\x04\xe0\xe0\x94\x12\xe0\xe0"
        !          41839:             "\xb2\x10" }  },
        !          41840:       /* --- pixel bitmap for cmsy600 char#95 \vee --- */
        !          41841:       {  95,32519,                      /* character number, location */
        !          41842:          50, 5,   -2, 5,      /* topleft row,col, and botleft row,col */
        !          41843:           { 45,   52, 3,289, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          41844:             "\x12\xe0\xe0\xb2\x14\xe0\xe0\x94\x0f\x15\xe0\xe0\x75"
        !          41845:             "\x14\xe0\xe0\x74\x10\xf1\x15\xe0\xe0\x55\x10\xf1\x25"
        !          41846:             "\xe0\xe0\x35\x20\xf1\x35\xe0\xe0\x15\x30\x44\xe0\xe0"
        !          41847:             "\x14\x40\xf1\x45\xe0\xd5\x40\xf1\x55\xe0\xb5\x50\xf1"
        !          41848:             "\x65\xe0\x95\x60\x74\xe0\x94\x70\xf1\x75\xe0\x75\x70"
        !          41849:             "\xf1\x85\xe0\x55\x80\xf1\x95\xe0\x35\x90\xa4\xe0\x34"
        !          41850:             "\xa0\xf1\xa5\xe0\x15\xa0\xf1\xb5\xd5\xb0\xf1\xc5\xb5"
        !          41851:             "\xc0\xd4\xb4\xd0\xf1\xd5\x95\xd0\xf1\xe5\x75\xe0\xf1"
        !          41852:             "\xe0\x15\x55\xe0\x10\xe0\x24\x54\xe0\x20\xf1\xe0\x25"
        !          41853:             "\x35\xe0\x20\xf1\xe0\x35\x15\xe0\x30\xf1\xe0\x49\xe0"
        !          41854:             "\x40\xf2\xe0\x57\xe0\x50\xf1\xe0\x65\xe0\x60\xe0\x73"
        !          41855:             "\xe0\x70" }  },
        !          41856:       /* --- pixel bitmap for cmsy600 char#96 \vdash --- */
        !          41857:       {  96,95645,                      /* character number, location */
        !          41858:          58, 5,    0, 5,      /* topleft row,col, and botleft row,col */
        !          41859:           { 41,   58, 2,23, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          41860:             "\x01\x02\x26\xff\x19\x04\x25\x28\x01\xff\x01\x29\x00"
        !          41861:             "\x28\x01\xff\x19\x04\x25\x00\x01\x02\x26" }  },
        !          41862:       /* --- pixel bitmap for cmsy600 char#97 \dashv --- */
        !          41863:       {  97,96345,                      /* character number, location */
        !          41864:          58, 5,    0, 5,      /* topleft row,col, and botleft row,col */
        !          41865:           { 41,   58, 2,23, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          41866:             "\x26\x02\x01\x00\xff\x19\x25\x04\x01\x28\x00\xff\x01"
        !          41867:             "\x29\x01\x28\xff\x19\x25\x04\x26\x02\x01" }  },
        !          41868:       /* --- pixel bitmap for cmsy600 char#98 \lfloor --- */
        !          41869:       {  98,96955,                      /* character number, location */
        !          41870:          62,14,  -20,14,      /* topleft row,col, and botleft row,col */
        !          41871:           { 21,   82, 2,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          41872:             "\x01\x02\x12\xff\x4c\x04\x11\xff\x02\x15\x01\x14" }  },
        !          41873:       /* --- pixel bitmap for cmsy600 char#99 \rfloor --- */
        !          41874:       {  99,97614,                      /* character number, location */
        !          41875:          62, 2,  -20, 2,      /* topleft row,col, and botleft row,col */
        !          41876:           { 21,   82, 2,15, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          41877:             "\x12\x02\x01\x00\xff\x4c\x11\x04\x00\xff\x02\x15\x00"
        !          41878:             "\x14\x01" }  },
        !          41879:       /* --- pixel bitmap for cmsy600 char#100 \lceil --- */
        !          41880:       { 100,98274,                      /* character number, location */
        !          41881:          62,14,  -20,14,      /* topleft row,col, and botleft row,col */
        !          41882:           { 21,   82, 2,15, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          41883:             "\x01\x14\x00\xff\x02\x15\x00\xff\x4c\x04\x11\x00\x01"
        !          41884:             "\x02\x12" }  },
        !          41885:       /* --- pixel bitmap for cmsy600 char#101 \rceil --- */
        !          41886:       { 101,98935,                      /* character number, location */
        !          41887:          62, 2,  -20, 2,      /* topleft row,col, and botleft row,col */
        !          41888:           { 21,   82, 2,13, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          41889:             "\x00\x14\x01\xff\x02\x15\xff\x4c\x11\x04\x12\x02\x01" }  },
        !          41890:       /* --- pixel bitmap for cmsy600 char#102 \lbrace --- */
        !          41891:       { 102,48381,                      /* character number, location */
        !          41892:          62, 6,  -21, 6,      /* topleft row,col, and botleft row,col */
        !          41893:           { 30,   83, 3,156, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          41894:             "\xe0\xa6\xe0\x6a\xe0\x47\xe0\x77\xe0\x86\xe0\x96\xe0"
        !          41895:             "\x97\xe0\x96\xe0\x97\xb0\xfe\xc6\xc0\xf9\xc6\xc0\xb7"
        !          41896:             "\xe0\x96\xe0\x97\xe0\x87\xe0\x87\xe0\x77\xe0\x4a\xe0"
        !          41897:             "\x58\xe0\x9a\xe0\xb7\xe0\xb7\xe0\xa7\xe0\xa7\xe0\xa6"
        !          41898:             "\xe0\xa7\xc0\xfe\xc6\xc0\xf9\xc6\xc0\xc7\xe0\xa6\xe0"
        !          41899:             "\xa7\xe0\xa6\xe0\xb6\xe0\xb7\xe0\xb7\xe0\xba\xe0\xa6" }  },
        !          41900:       /* --- pixel bitmap for cmsy600 char#103 \rbrace --- */
        !          41901:       { 103,49350,                      /* character number, location */
        !          41902:          62, 6,  -21, 6,      /* topleft row,col, and botleft row,col */
        !          41903:           { 30,   83, 3,157, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          41904:             "\x06\xe0\xaa\xe0\xb7\xe0\xb7\xe0\xb6\xe0\xb6\xe0\xa7"
        !          41905:             "\xe0\xa6\xe0\xa7\xc0\xfe\xc6\xc0\xf9\xc6\xc0\xc7\xe0"
        !          41906:             "\xa6\xe0\xa7\xe0\xa7\xe0\xa7\xe0\xb7\xe0\xba\xe0\x98"
        !          41907:             "\xe0\x5a\xe0\x47\xe0\x77\xe0\x87\xe0\x87\xe0\x96\xe0"
        !          41908:             "\x97\xb0\xfe\xc6\xc0\xf9\xc6\xc0\xb7\xe0\x96\xe0\x97"
        !          41909:             "\xe0\x96\xe0\x96\xe0\x87\xe0\x77\xe0\x4a\xe0\x66\xe0"
        !          41910:             "\xa6" }  },
        !          41911:       /* --- pixel bitmap for cmsy600 char#104 \langle --- */
        !          41912:       { 104,99567,                      /* character number, location */
        !          41913:          62, 8,  -20, 8,      /* topleft row,col, and botleft row,col */
        !          41914:           { 19,   82, 3,257, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          41915:             "\xe0\x22\xe0\x24\xf1\xe5\xe4\x10\xf1\xd5\x10\xd4\x20"
        !          41916:             "\xf1\xc5\x20\xf1\xb5\x30\xb4\x40\xf1\xa5\x40\xf1\x95"
        !          41917:             "\x50\x94\x60\xf1\x85\x60\xf1\x75\x70\x74\x80\xf1\x65"
        !          41918:             "\x80\x64\x90\xf1\x55\x90\xf1\x45\xa0\x44\xb0\xf1\x35"
        !          41919:             "\xb0\xf1\x25\xc0\x24\xd0\xf1\x15\xd0\x14\xef\x35\xe0"
        !          41920:             "\x14\xe0\xf1\x15\xd0\x24\xd0\xf1\x25\xc0\xf1\x35\xb0"
        !          41921:             "\x44\xb0\xf1\x45\xa0\xf1\x55\x90\x64\x90\xf1\x65\x80"
        !          41922:             "\x74\x80\xf1\x75\x70\xf1\x85\x60\x94\x60\xf1\x95\x50"
        !          41923:             "\xf1\xa5\x40\xb4\x40\xf1\xb5\x30\xf1\xc5\x20\xd4\x20"
        !          41924:             "\xf1\xd5\x10\xe4\x10\xf1\xe5\xe0\x14\xe0\x22\x17" }  },
        !          41925:       /* --- pixel bitmap for cmsy600 char#105 \rangle --- */
        !          41926:       { 105,100200,                     /* character number, location */
        !          41927:          62, 5,  -20, 5,      /* topleft row,col, and botleft row,col */
        !          41928:           { 19,   82, 3,257, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          41929:             "\x12\xe0\x24\xe0\x1f\x15\xe0\x14\xe0\xf1\x15\xd0\x24"
        !          41930:             "\xd0\xf1\x25\xc0\xf1\x35\xb0\x44\xb0\xf1\x45\xa0\xf1"
        !          41931:             "\x55\x90\x64\x90\xf1\x65\x80\xf1\x75\x70\x84\x70\xf1"
        !          41932:             "\x85\x60\x94\x60\xf1\x95\x50\xf1\xa5\x40\xb4\x40\xf1"
        !          41933:             "\xb5\x30\xf1\xc5\x20\xd4\x20\xf1\xd5\x10\xe4\x10\xf3"
        !          41934:             "\xe5\xe4\x10\xf1\xd5\x10\xd4\x20\xf1\xc5\x20\xf1\xb5"
        !          41935:             "\x30\xb4\x40\xf1\xa5\x40\xf1\x95\x50\x94\x60\xf1\x85"
        !          41936:             "\x60\x84\x70\xf1\x75\x70\xf1\x65\x80\x64\x90\xf1\x55"
        !          41937:             "\x90\xf1\x45\xa0\x44\xb0\xf1\x35\xb0\xf1\x25\xc0\x24"
        !          41938:             "\xd0\xf1\x15\xd0\x14\xef\x15\xe4\xe0\x22\xe0\x27" }  },
        !          41939:       /* --- pixel bitmap for cmsy600 char#106 \mid --- */
        !          41940:       { 106,46247,                      /* character number, location */
        !          41941:          62,10,  -21,10,      /* topleft row,col, and botleft row,col */
        !          41942:           {  4,   83, 2, 9, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          41943:             "\x01\x02\x01\xff\x50\x04\x01\x02\x01" }  },
        !          41944:       /* --- pixel bitmap for cmsy600 char#107 \parallel --- */
        !          41945:       { 107,100923,                     /* character number, location */
        !          41946:          62,10,  -20,10,      /* topleft row,col, and botleft row,col */
        !          41947:           { 22,   82, 2,15, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          41948:             "\x01\x02\x10\x02\x01\xff\x4f\x04\x0e\x04\x01\x02\x10"
        !          41949:             "\x02\x01" }  },
        !          41950:       /* --- pixel bitmap for cmsy600 char#108 \updownarrow --- */
        !          41951:       { 108,102369,                     /* character number, location */
        !          41952:          64, 1,  -23, 1,      /* topleft row,col, and botleft row,col */
        !          41953:           { 40,   87, 3,285, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          41954:             "\xf2\xe0\x52\xe0\x50\xf2\xe0\x44\xe0\x40\xf1\xe0\x36"
        !          41955:             "\xe0\x30\xf1\xe0\x28\xe0\x20\xe0\x1a\xe0\xe0\x1c\xe0"
        !          41956:             "\xf1\xde\xd0\xc5\x14\x15\xe0\x86\x24\x26\xe0\x56\x34"
        !          41957:             "\x36\xe0\x36\x44\x46\xe7\x54\x57\x98\x74\x78\x3a\x84"
        !          41958:             "\x8e\x04\xa4\xae\xc4\xc6\x12\xe0\x14\xe0\x12\x10\xfe"
        !          41959:             "\xe0\x44\xe0\x40\xfe\xe0\x44\xe0\x40\xf8\xe0\x44\xe0"
        !          41960:             "\x40\x12\xe0\x14\xe0\x12\x16\xc4\xce\xa4\xae\x04\x84"
        !          41961:             "\x8a\x38\x74\x78\x97\x54\x57\xe6\x44\x46\xe0\x36\x34"
        !          41962:             "\x36\xe0\x56\x24\x26\xe0\x85\x14\x15\xc0\xf1\xde\xd0"
        !          41963:             "\xec\xe0\xe0\x1a\xe0\x10\xf1\xe0\x28\xe0\x20\xf1\xe0"
        !          41964:             "\x36\xe0\x30\xf2\xe0\x44\xe0\x40\xf2\xe0\x52\xe0\x56" }  },
        !          41965:       /* --- pixel bitmap for cmsy600 char#109 \Updownarrow --- */
        !          41966:       { 109,103650,                     /* character number, location */
        !          41967:          64, 2,  -23, 2,      /* topleft row,col, and botleft row,col */
        !          41968:           { 48,   87, 3,359, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          41969:             "\xf1\xe0\x92\xe0\x90\xf1\xe0\x84\xe0\x80\xe0\x76\xe0"
        !          41970:             "\x70\xf1\xe0\x68\xe0\x60\xe0\x5a\xe0\x50\xf1\xe0\x45"
        !          41971:             "\x25\xe0\x40\xe0\x35\x45\xe0\xe0\x55\x65\xe0\xe0\x35"
        !          41972:             "\x85\xe0\xe0\x16\x86\xe0\xd6\xa6\xe0\xb6\xc6\xe0\x96"
        !          41973:             "\xe6\xe0\x77\xe7\xe0\x49\xe9\xe0\x1a\xea\xc7\x14\xe4"
        !          41974:             "\x17\x87\x34\xe4\x37\x39\x44\xe4\x4e\x02\x64\xe4\x6c"
        !          41975:             "\x84\xe4\x88\xa4\xe4\xa3\xfe\xd4\xe4\xd0\xfe\xd4\xe4"
        !          41976:             "\xd0\xf4\xd4\xe4\xd3\xa4\xe4\xa8\x84\xe4\x8c\x64\xe4"
        !          41977:             "\x6e\x02\x44\xe4\x49\x37\x34\xe4\x37\x87\x14\xe4\x17"
        !          41978:             "\xca\xea\xe0\x19\xe9\xe0\x47\xe7\xe0\x76\xe6\xe0\x96"
        !          41979:             "\xc6\xe0\xb6\xa6\xe0\xd6\x86\xe0\xe0\x15\x85\xe0\xe0"
        !          41980:             "\x35\x65\xe0\xe0\x55\x45\xe0\x30\xf1\xe0\x45\x25\xe0"
        !          41981:             "\x40\xe0\x5a\xe0\x50\xf1\xe0\x68\xe0\x60\xe0\x76\xe0"
        !          41982:             "\x70\xf1\xe0\x84\xe0\x80\xf1\xe0\x92\xe0\x97" }  },
        !          41983:       /* --- pixel bitmap for cmsy600 char#110 \setminus --- */
        !          41984:       { 110,45685,                      /* character number, location */
        !          41985:          62, 5,  -21, 5,      /* topleft row,col, and botleft row,col */
        !          41986:           { 32,   83, 3,375, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          41987:             "\x12\xe0\xe0\x14\xe0\xef\x15\xe0\xd0\x14\xe0\xd0\xf1"
        !          41988:             "\x15\xe0\xc0\x24\xe0\xc0\xf1\x25\xe0\xb0\x34\xe0\xb0"
        !          41989:             "\xf1\x35\xe0\xa0\x44\xe0\xa0\xf1\x45\xe0\x90\x54\xe0"
        !          41990:             "\x90\xf1\x55\xe0\x80\xf1\x65\xe0\x70\x74\xe0\x70\xf1"
        !          41991:             "\x75\xe0\x60\x84\xe0\x60\xf1\x85\xe0\x50\x94\xe0\x50"
        !          41992:             "\xf1\x95\xe0\x40\xa4\xe0\x40\xf1\xa5\xe0\x30\xf1\xb5"
        !          41993:             "\xe0\x20\xc4\xe0\x20\xf1\xc5\xe0\x10\xd4\xe0\x10\xf1"
        !          41994:             "\xd5\xe0\xe4\xe0\xf1\xe5\xd0\xe0\x14\xd0\xf1\xe0\x15"
        !          41995:             "\xc0\xe0\x24\xc0\xf1\xe0\x25\xb0\xf1\xe0\x35\xa0\xe0"
        !          41996:             "\x44\xa0\xf1\xe0\x45\x90\xe0\x54\x90\xf1\xe0\x55\x80"
        !          41997:             "\xe0\x64\x80\xf1\xe0\x65\x70\xe0\x74\x70\xf1\xe0\x75"
        !          41998:             "\x60\xf1\xe0\x85\x50\xe0\x94\x50\xf1\xe0\x95\x40\xe0"
        !          41999:             "\xa4\x40\xf1\xe0\xa5\x30\xe0\xb4\x30\xf1\xe0\xb5\x20"
        !          42000:             "\xe0\xc4\x20\xf1\xe0\xc5\x10\xe0\xd4\x10\xf1\xe0\xd5"
        !          42001:             "\xe0\xe4\xe0\xe0\x12\x1e" }  },
        !          42002:       /* --- pixel bitmap for cmsy600 char#111 \wr --- */
        !          42003:       { 111,104441,                     /* character number, location */
        !          42004:          49, 5,   -7, 5,      /* topleft row,col, and botleft row,col */
        !          42005:           { 13,   56, 3,87, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          42006:             "\x15\x78\x68\x86\x30\xf1\x56\x20\xf2\x66\x10\xf9\x76"
        !          42007:             "\xf3\x66\x10\xf2\x56\x20\xf1\x46\x30\xf1\x36\x40\xf2"
        !          42008:             "\x26\x50\xf3\x16\x6f\x96\x70\xf2\x16\x60\xf1\x26\x50"
        !          42009:             "\x36\x88\x68\x75\x16" }  },
        !          42010:       /* --- pixel bitmap for cmsy600 char#112 \surd --- */
        !          42011:       { 112,105379,                     /* character number, location */
        !          42012:           4, 6,  -80, 6,      /* topleft row,col, and botleft row,col */
        !          42013:           { 66,   84, 2,293, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          42014:             "\x3f\x02\x3f\x04\xff\x01\x3d\x05\xff\x01\x3c\x05\x01"
        !          42015:             "\x00\xff\x01\x3b\x05\x02\x00\xff\x01\x3a\x05\x03\x00"
        !          42016:             "\xff\x01\x39\x05\x04\x00\xff\x01\x38\x05\x05\x00\xff"
        !          42017:             "\x01\x37\x05\x06\x00\xff\x01\x36\x05\x07\x00\xff\x01"
        !          42018:             "\x35\x05\x08\x00\xff\x01\x34\x05\x09\x00\x34\x04\x0a"
        !          42019:             "\x00\xff\x01\x33\x05\x0a\x00\xff\x01\x32\x05\x0b\x00"
        !          42020:             "\xff\x01\x31\x05\x0c\x00\xff\x01\x30\x05\x0d\x00\xff"
        !          42021:             "\x01\x2f\x05\x0e\x00\xff\x01\x2e\x05\x0f\x00\xff\x01"
        !          42022:             "\x2d\x05\x10\x00\xff\x01\x2c\x05\x11\x00\xff\x01\x2b"
        !          42023:             "\x05\x12\x00\x0a\x02\x1e\x05\x1b\x04\x1e\x05\x1a\x05"
        !          42024:             "\x1d\x05\x19\x08\x1c\x05\x18\x09\x1b\x05\x18\x0b\x1a"
        !          42025:             "\x05\x16\x04\x02\x07\x19\x05\x16\x03\x04\x08\x18\x05"
        !          42026:             "\x16\x02\x06\x07\x17\x05\x1f\x08\x16\x05\x17\x00\xff"
        !          42027:             "\x01\x09\x07\x15\x05\x18\x00\x09\x08\x13\x05\x23\x07"
        !          42028:             "\x13\x05\x23\x08\x11\x05\x25\x07\x11\x05\x25\x08\x0f"
        !          42029:             "\x05\x27\x07\x0f\x05\x27\x08\x0d\x05\x29\x07\x0d\x05"
        !          42030:             "\x29\x08\x0c\x04\x1d\x00\xff\x01\x0e\x07\x0b\x05\x1d"
        !          42031:             "\x00\x0e\x08\x09\x05\x2d\x07\x09\x05\x2d\x08\x07\x05"
        !          42032:             "\x2f\x07\x07\x05\x2f\x08\x05\x05\x31\x07\x05\x05\x31"
        !          42033:             "\x08\x03\x05\x33\x07\x03\x05\x33\x07\x02\x05\x34\x08"
        !          42034:             "\x01\x05\x22\x00\xff\x01\x13\x0c\x23\x00\xff\x01\x14"
        !          42035:             "\x0a\x24\x00\xff\x01\x15\x08\x25\x00\xff\x01\x16\x06"
        !          42036:             "\x26\x00\x17\x04\x3e\x03\x28" }  },
        !          42037:       /* --- pixel bitmap for cmsy600 char#113 \amalg --- */
        !          42038:       { 113,106823,                     /* character number, location */
        !          42039:          57, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          42040:           { 58,   57, 2,28, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          42041:             "\xff\x02\x00\x19\x08\x19\x08\x09\x18\x09\x08\x00\xff"
        !          42042:             "\x30\x09\x07\x1a\x07\x09\x00\x08\x08\x1a\x08\x08\xff"
        !          42043:             "\x02\x3a" }  },
        !          42044:       /* --- pixel bitmap for cmsy600 char#114 \nabla --- */
        !          42045:       { 114,107929,                     /* character number, location */
        !          42046:          57, 4,   -3, 4,      /* topleft row,col, and botleft row,col */
        !          42047:           { 61,   60, 2,225, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          42048:             "\xff\x01\x00\x3d\xff\x01\x01\x3b\x01\x00\xff\x01\x02"
        !          42049:             "\x39\x02\x00\xff\x01\x03\x08\x2d\x02\x03\x00\xff\x01"
        !          42050:             "\x04\x08\x2b\x02\x04\x00\xff\x01\x05\x08\x29\x02\x05"
        !          42051:             "\x00\xff\x01\x06\x08\x27\x02\x06\x00\xff\x01\x07\x08"
        !          42052:             "\x25\x02\x07\x00\xff\x01\x08\x08\x23\x02\x08\x00\xff"
        !          42053:             "\x01\x09\x08\x21\x02\x09\x00\x0a\x07\x20\x02\x14\x08"
        !          42054:             "\x1f\x02\x15\x07\x1e\x02\x16\x08\x1d\x02\x17\x07\x1c"
        !          42055:             "\x02\x18\x08\x1b\x02\x19\x07\x1a\x02\x1a\x08\x19\x02"
        !          42056:             "\x1b\x07\x18\x02\x1c\x08\x17\x02\x1d\x07\x16\x02\x1e"
        !          42057:             "\x08\x15\x02\x1f\x07\x14\x02\x20\x08\x13\x02\x21\x07"
        !          42058:             "\x12\x02\x22\x08\x11\x02\x23\x07\x10\x02\x24\x08\x0f"
        !          42059:             "\x02\x25\x07\x0e\x02\x26\x08\x0d\x02\x27\x07\x0c\x02"
        !          42060:             "\x28\x08\x0b\x02\x29\x07\x0a\x02\x2a\x08\x09\x02\x2b"
        !          42061:             "\x07\x08\x02\x2c\x08\x07\x02\x2d\x07\x06\x02\x2e\x08"
        !          42062:             "\x05\x02\x2f\x07\x04\x02\x30\x08\x03\x02\x31\x07\x02"
        !          42063:             "\x02\x32\x08\x01\x02\x19\x00\xff\x01\x1a\x09\x1a\x00"
        !          42064:             "\xff\x01\x1b\x07\x1b\x00\xff\x01\x1c\x05\x1c\x00\xff"
        !          42065:             "\x01\x1d\x03\x1d" }  },
        !          42066:       /* --- pixel bitmap for cmsy600 char#115 \smallint --- */
        !          42067:       { 115,51783,                      /* character number, location */
        !          42068:          60, 5,  -18, 5,      /* topleft row,col, and botleft row,col */
        !          42069:           { 34,   78, 3,213, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          42070:             "\xe0\xb5\xe0\xe8\xe0\xa4\x43\xe0\x93\x62\xe0\x84\x45"
        !          42071:             "\xf2\xe0\x64\x37\xf1\xe0\x54\x47\xe0\x54\x63\xe0\x74"
        !          42072:             "\xb0\xf3\xe0\x45\xb0\xe0\x44\xc0\xf5\xe0\x35\xc0\xf2"
        !          42073:             "\xe0\x26\xc0\xf2\xe0\x25\xd0\xf5\xe0\x16\xd0\xe7\xd0"
        !          42074:             "\xf5\xe6\xe0\xd7\xe0\xf5\xd6\xe0\x10\xf2\xd5\xe0\x20"
        !          42075:             "\xf2\xc6\xe0\x20\xf5\xc5\xe0\x30\xc4\xe0\x40\xf3\xb5"
        !          42076:             "\xe0\x40\xb4\xe0\x73\x64\xe0\x5f\x17\x44\xe0\x5f\x27"
        !          42077:             "\x34\xe0\x65\x44\xe0\x82\x63\xe0\x93\x44\xe0\xa8\xe0"
        !          42078:             "\xe5\xe0\xb0" }  },
        !          42079:       /* --- pixel bitmap for cmsy600 char#116 \sqcup --- */
        !          42080:       { 116,108769,                     /* character number, location */
        !          42081:          50, 5,    0, 5,      /* topleft row,col, and botleft row,col */
        !          42082:           { 45,   50, 2,17, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          42083:             "\x01\x02\x27\x02\x01\xff\x2c\x04\x25\x04\x00\xff\x02"
        !          42084:             "\x2d\x01\x2b\x01" }  },
        !          42085:       /* --- pixel bitmap for cmsy600 char#117 \sqcap --- */
        !          42086:       { 117,109596,                     /* character number, location */
        !          42087:          50, 5,    0, 5,      /* topleft row,col, and botleft row,col */
        !          42088:           { 45,   50, 2,17, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          42089:             "\x01\x2b\x01\xff\x02\x2d\x00\xff\x2c\x04\x25\x04\x01"
        !          42090:             "\x02\x27\x02\x01" }  },
        !          42091:       /* --- pixel bitmap for cmsy600 char#118 \sqsubseteq --- */
        !          42092:       { 118,110495,                     /* character number, location */
        !          42093:          53, 7,  -15, 7,      /* topleft row,col, and botleft row,col */
        !          42094:           { 53,   68, 2,43, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          42095:             "\x02\x32\x01\x00\xff\x01\x01\x34\x01\x33\x01\x00\xff"
        !          42096:             "\x29\x01\x04\x30\x00\x01\x33\x01\x00\xff\x01\x01\x34"
        !          42097:             "\x02\x32\x01\x00\xff\x0d\x35\x00\x01\x33\x01\xff\x01"
        !          42098:             "\x35\x01\x33\x01" }  },
        !          42099:       /* --- pixel bitmap for cmsy600 char#119 \sqsupseteq --- */
        !          42100:       { 119,111314,                     /* character number, location */
        !          42101:          53, 5,  -15, 5,      /* topleft row,col, and botleft row,col */
        !          42102:           { 53,   68, 2,43, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          42103:             "\x01\x32\x02\xff\x01\x34\x01\x00\x01\x33\x01\x00\xff"
        !          42104:             "\x29\x30\x04\x01\x00\x01\x33\x01\xff\x01\x34\x01\x00"
        !          42105:             "\x01\x32\x02\x00\xff\x0d\x35\x00\x01\x33\x01\xff\x01"
        !          42106:             "\x35\x01\x33\x01" }  },
        !          42107:       /* --- pixel bitmap for cmsy600 char#120 \S --- */
        !          42108:       { 120,112387,                     /* character number, location */
        !          42109:          59, 6,  -17, 6,      /* topleft row,col, and botleft row,col */
        !          42110:           { 25,   76, 3,261, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          42111:             "\x97\xe0\x2b\xc5\x64\x95\x93\x75\xb3\x55\xd3\x35\xe0"
        !          42112:             "\x12\x35\xe4\x25\xc6\x1f\x25\xd6\x15\xe4\x2f\x25\xe0"
        !          42113:             "\x60\xf2\x15\xe0\x50\x25\xe0\x75\xe0\x74\xe0\x84\xe0"
        !          42114:             "\x85\xe0\x84\xe0\x76\xe0\x3a\xe4\x54\xa5\x74\x94\x95"
        !          42115:             "\x65\xa5\x30\xf1\x15\xc5\x20\x15\xd5\x15\xe5\x1f\x55"
        !          42116:             "\xe0\x15\x15\xe5\x15\xd5\x10\xf1\x25\xc5\x10\x35\xa5"
        !          42117:             "\x65\x94\x94\x75\xa4\x54\xea\xe0\x36\xe0\x74\xe0\x85"
        !          42118:             "\xe0\x84\xe0\x84\xe0\x75\xe0\x75\x20\xf2\xe0\x55\x10"
        !          42119:             "\xf2\xe0\x65\x24\xe5\xf2\x16\xd5\x16\xc5\x24\xe5\x32"
        !          42120:             "\xe0\x15\x33\xd5\x53\xb5\x73\x95\x94\x65\xcb\xe0\x27"
        !          42121:             "\x90" }  },
        !          42122:       /* --- pixel bitmap for cmsy600 char#121 \dag --- */
        !          42123:       { 121,113377,                     /* character number, location */
        !          42124:          59, 5,  -18, 5,      /* topleft row,col, and botleft row,col */
        !          42125:           { 28,   77, 3,89, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          42126:             "\xc4\xc0\xf8\xb6\xb0\xf6\xc4\xc0\xf2\xd2\xd0\x16\x62"
        !          42127:             "\x66\x1a\x32\x3a\x0f\x1e\x0e\x0a\x32\x3a\x16\x62\x66"
        !          42128:             "\x10\xf1\xd2\xd0\xf4\xc4\xc0\xfe\xb6\xb0\xf9\xb6\xb0"
        !          42129:             "\xfc\xc4\xc0\xf5\xd2\xd0" }  },
        !          42130:       /* --- pixel bitmap for cmsy600 char#122 \ddag --- */
        !          42131:       { 122,114492,                     /* character number, location */
        !          42132:          59, 5,  -17, 5,      /* topleft row,col, and botleft row,col */
        !          42133:           { 28,   76, 3,143, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          42134:             "\xc4\xc0\xf7\xb6\xb0\xf4\xc4\xc0\xf1\xd2\xd0\x16\x62"
        !          42135:             "\x66\x1a\x32\x3a\x0f\x1e\x0e\x0a\x32\x3a\x16\x62\x66"
        !          42136:             "\x10\xf1\xd2\xd0\xf4\xc4\xc0\xf7\xb6\xb0\xc4\xe0\xe0"
        !          42137:             "\xe0\xa4\xc0\xf7\xb6\xb0\xf4\xc4\xc0\xf1\xd2\xd0\x18"
        !          42138:             "\x42\x57\x1f\x2e\x0e\x18\x42\x48\x10\xf1\xd2\xd0\xf4"
        !          42139:             "\xc4\xc0\xf7\xb6\xb0\xc4\xc0" }  },
        !          42140:       /* --- pixel bitmap for cmsy600 char#123 \P --- */
        !          42141:       { 123,115326,                     /* character number, location */
        !          42142:          58, 5,  -16, 5,      /* topleft row,col, and botleft row,col */
        !          42143:           { 44,   74, 3,213, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          42144:             "\xe0\x2e\x0d\xde\x0e\x04\xae\x0e\x06\x9e\x0e\x06\x8e"
        !          42145:             "\x06\x64\xde\x07\x64\xce\x08\x64\xbe\x09\x64\x70\xf1"
        !          42146:             "\x3e\x0a\x64\x70\xf1\x2e\x0b\x64\x70\xf1\x1e\x0c\x64"
        !          42147:             "\x7f\x9e\x0d\x64\x70\xf2\x1e\x0c\x64\x70\xf1\x2e\x0b"
        !          42148:             "\x64\x70\x3e\x0a\x64\xbe\x09\x64\xce\x08\x64\xde\x07"
        !          42149:             "\x64\xe0\x1e\x05\x64\xe0\x2e\x04\x64\xe0\x4e\x02\x64"
        !          42150:             "\xe0\x6e\x64\xe0\x8c\x64\xe0\xc8\x64\x70\xfe\xe0\x94"
        !          42151:             "\x64\x70\xfe\xe0\x94\x64\x70\xf3\xe0\x94\x64\x70\xe0"
        !          42152:             "\xa2\x82\x85" }  },
        !          42153:       /* --- pixel bitmap for cmsy600 char#124 \clubsuit --- */
        !          42154:       { 124,116492,                     /* character number, location */
        !          42155:          61, 2,  -11, 2,      /* topleft row,col, and botleft row,col */
        !          42156:           { 62,   72, 2,165, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          42157:             "\x1b\x08\x34\x0c\x31\x0e\x2e\x12\x2b\x14\x29\x16\x27"
        !          42158:             "\x18\x13\x00\xff\x01\x12\x1a\x12\x00\xff\x02\x11\x1c"
        !          42159:             "\x11\x00\xff\x08\x10\x1e\x10\x00\xff\x02\x11\x1c\x11"
        !          42160:             "\x00\xff\x01\x12\x1a\x12\x00\x13\x18\x27\x16\x29\x14"
        !          42161:             "\x2b\x12\x1f\x07\x05\x14\x05\x07\x10\x0b\x03\x14\x03"
        !          42162:             "\x0b\x0c\x34\x09\x36\x07\x38\x03\x00\xff\x01\x02\x3a"
        !          42163:             "\x02\x00\xff\x03\x01\x3c\x01\xff\x0a\x3e\xff\x01\x01"
        !          42164:             "\x3c\x01\x00\x01\x18\x04\x04\x04\x18\x01\x00\xff\x01"
        !          42165:             "\x02\x17\x04\x04\x04\x17\x02\x00\x03\x16\x04\x04\x04"
        !          42166:             "\x16\x07\x15\x04\x04\x04\x15\x09\x13\x05\x04\x05\x13"
        !          42167:             "\x0c\x10\x06\x04\x06\x10\x0f\x0d\x07\x06\x07\x0d\x12"
        !          42168:             "\x09\x09\x06\x09\x09\x0a\x00\xff\x03\x1c\x06\x1c\x00"
        !          42169:             "\xff\x03\x1b\x08\x1b\x00\x1c\x06\x1c" }  },
        !          42170:       /* --- pixel bitmap for cmsy600 char#125 \Diamond --- */
        !          42171:       { 125,117339,                     /* character number, location */
        !          42172:          61, 5,  -14, 5,      /* topleft row,col, and botleft row,col */
        !          42173:           { 56,   75, 2,285, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          42174:             "\x1b\x02\x35\x04\x1a\x00\xff\x01\x19\x06\x19\x00\xff"
        !          42175:             "\x01\x18\x08\x18\x00\xff\x01\x17\x0a\x17\x00\x16\x05"
        !          42176:             "\x02\x05\x2b\x06\x02\x06\x2a\x05\x04\x05\x15\x00\xff"
        !          42177:             "\x01\x14\x05\x06\x05\x14\x00\x13\x05\x08\x05\x25\x06"
        !          42178:             "\x08\x06\x24\x05\x0a\x05\x23\x05\x0c\x05\x21\x06\x0c"
        !          42179:             "\x06\x20\x05\x0e\x05\x1f\x05\x10\x05\x1d\x06\x10\x06"
        !          42180:             "\x1b\x06\x12\x06\x1a\x05\x14\x05\x19\x05\x16\x05\x17"
        !          42181:             "\x06\x16\x06\x15\x06\x18\x06\x13\x06\x1a\x06\x12\x05"
        !          42182:             "\x1c\x05\x11\x05\x1e\x05\x0f\x06\x1e\x06\x0d\x06\x20"
        !          42183:             "\x06\x0b\x06\x22\x06\x09\x06\x24\x06\x07\x06\x26\x06"
        !          42184:             "\x05\x06\x28\x06\x03\x06\x2a\x06\x01\x06\x2c\x0b\x2e"
        !          42185:             "\x0b\x2c\x06\x01\x06\x2a\x06\x03\x06\x28\x06\x05\x06"
        !          42186:             "\x26\x06\x07\x06\x24\x06\x09\x06\x22\x06\x0b\x06\x20"
        !          42187:             "\x06\x0d\x06\x1e\x06\x0f\x05\x1e\x05\x11\x05\x1c\x05"
        !          42188:             "\x12\x06\x1a\x06\x13\x06\x18\x06\x15\x06\x16\x06\x17"
        !          42189:             "\x05\x16\x05\x19\x05\x14\x05\x1a\x06\x12\x06\x1b\x06"
        !          42190:             "\x10\x06\x1d\x05\x10\x05\x1f\x05\x0e\x05\x20\x06\x0c"
        !          42191:             "\x06\x21\x05\x0c\x05\x23\x05\x0a\x05\x24\x06\x08\x06"
        !          42192:             "\x25\x05\x08\x05\x13\x00\xff\x01\x14\x05\x06\x05\x14"
        !          42193:             "\x00\x15\x05\x04\x05\x2a\x06\x02\x06\x2b\x05\x02\x05"
        !          42194:             "\x16\x00\xff\x01\x17\x0a\x17\x00\xff\x01\x18\x08\x18"
        !          42195:             "\x00\xff\x01\x19\x06\x19\x00\x1a\x04\x35\x02\x1b" }  },
        !          42196:       /* --- pixel bitmap for cmsy600 char#126 \Heart --- */
        !          42197:       { 126,118354,                     /* character number, location */
        !          42198:          60, 5,   -3, 5,      /* topleft row,col, and botleft row,col */
        !          42199:           { 56,   63, 3,441, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          42200:             "\xa8\xe0\x68\xe0\x4c\xe0\x2c\xee\x02\xce\x02\xbe\x05"
        !          42201:             "\x8e\x05\x97\x68\x68\x67\x76\xa7\x47\xa6\x65\xd6\x26"
        !          42202:             "\xd5\x55\xe0\x1c\xe0\x15\x45\xe0\x2a\xe0\x25\x20\xf1"
        !          42203:             "\x15\xe0\x48\xe0\x45\x10\x14\xe0\x66\xe0\x64\x1f\x15"
        !          42204:             "\xe0\x66\xe0\x65\x0f\x14\xe0\x84\xe0\x84\x04\xe0\x92"
        !          42205:             "\xe0\x94\x0f\x54\xe0\xe0\xe0\x64\x0f\x15\xe0\xe0\xe0"
        !          42206:             "\x45\xf1\x14\xe0\xe0\xe0\x44\x10\xf1\x15\xe0\xe0\xe0"
        !          42207:             "\x25\x10\xf1\x25\xe0\xe0\xe5\x20\x35\xe0\xe0\xc5\x66"
        !          42208:             "\xe0\xe0\xa6\x75\xe0\xe0\xa5\x95\xe0\xe0\x85\xa6\xe0"
        !          42209:             "\xe0\x66\xb5\xe0\xe0\x65\xd5\xe0\xe0\x45\xe6\xe0\xe0"
        !          42210:             "\x26\xe0\x16\xe0\xe6\xe0\x36\xe0\xc6\xe0\x56\xe0\xa6"
        !          42211:             "\xe0\x76\xe0\x86\xe0\x96\xe0\x66\xe0\xb6\xe0\x46\xe0"
        !          42212:             "\xd6\xe0\x26\xe0\xe0\x16\xe6\xe0\xe0\x36\xc6\xe0\xe0"
        !          42213:             "\x56\xa6\xe0\xe0\x76\x86\xe0\xe0\x96\x66\xe0\xe0\xb5"
        !          42214:             "\x65\xe0\xe0\xd5\x45\xe0\xe0\xe6\x26\xe0\xe0\xe0\x15"
        !          42215:             "\x25\xe0\x80\xf1\xe0\x9a\xe0\x90\xf1\xe0\xa8\xe0\xa0"
        !          42216:             "\xf1\xe0\xb6\xe0\xb0\xe0\xc4\xe0\xe0\xe0\xb2\xe0\xd5" }  },
        !          42217:       /* --- pixel bitmap for cmsy600 char#127 \spadesuit --- */
        !          42218:       { 127,119435,                     /* character number, location */
        !          42219:          61, 5,  -11, 5,      /* topleft row,col, and botleft row,col */
        !          42220:           { 56,   72, 2,179, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          42221:             "\x1b\x02\x35\x04\x1a\x00\xff\x02\x19\x06\x19\x00\xff"
        !          42222:             "\x01\x18\x08\x18\x00\xff\x01\x17\x0a\x17\x00\x16\x0c"
        !          42223:             "\x16\x00\xff\x01\x15\x0e\x15\x00\x14\x10\x14\x00\xff"
        !          42224:             "\x01\x13\x12\x13\x00\x12\x14\x23\x16\x21\x18\x1f\x1a"
        !          42225:             "\x1d\x1c\x1b\x1e\x19\x20\x17\x22\x15\x24\x13\x26\x11"
        !          42226:             "\x28\x0f\x2a\x0d\x2c\x06\x00\xff\x01\x05\x2e\x05\x00"
        !          42227:             "\x04\x30\x04\x00\xff\x01\x03\x32\x03\x00\xff\x01\x02"
        !          42228:             "\x34\x02\x00\xff\x02\x01\x36\x01\xff\x0c\x38\xff\x02"
        !          42229:             "\x01\x36\x01\x00\x01\x15\x04\x04\x04\x15\x01\x00\xff"
        !          42230:             "\x01\x02\x14\x04\x04\x04\x14\x02\x00\x03\x13\x04\x04"
        !          42231:             "\x04\x13\x06\x12\x05\x04\x05\x12\x07\x10\x06\x04\x06"
        !          42232:             "\x10\x09\x0e\x07\x04\x07\x0e\x0c\x0a\x08\x06\x08\x0a"
        !          42233:             "\x0f\x07\x0a\x06\x0a\x07\x08\x00\xff\x03\x19\x06\x19"
        !          42234:             "\x00\xff\x03\x18\x08\x18\x00\x19\x06\x19" }  },
        !          42235:       /* --- trailer  --- */
        !          42236:       { -99, -999,  0,0,0,0, { 0,0,0,0, (pixbyte *)"\0" }  }
        !          42237:    } ;
        !          42238: 
        !          42239: 
1.2       albertel 42240: /* ------------------------------------------------------------------------
1.5     ! raeburn  42241: font sizes 0-10 for cmex10
1.2       albertel 42242: ------------------------------------------------------------------------ */
                   42243: 
                   42244: /* --- size=0 for .83gf ---
                   42245:  * mf '\mode=eighthre;  input cmex10'
                   42246:  * --------------------------------------------------------------------- */
1.1       albertel 42247: /* --- fontdef for cmex83 --- */
                   42248: static	chardef  cmex83[] =
                   42249:    {
1.2       albertel 42250:       /* --- pixel bitmap for cmex83 char#0 \big( --- */
1.1       albertel 42251:       {   0,   35,                      /* character number, location */
1.2       albertel 42252:           0, 2,  -12, 2,      /* topleft row,col, and botleft row,col */
                   42253:           {  2,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42254:             "\x5a\x55\xa5" }  },
                   42255:       /* --- pixel bitmap for cmex83 char#1 \big) --- */
1.1       albertel 42256:       {   1,  457,                      /* character number, location */
1.2       albertel 42257:           0, 0,  -12, 0,      /* topleft row,col, and botleft row,col */
                   42258:           {  2,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42259:             "\xa5\xaa\x5a" }  },
                   42260:       /* --- pixel bitmap for cmex83 char#2 \big[ --- */
1.1       albertel 42261:       {   2,  879,                      /* character number, location */
1.2       albertel 42262:           0, 2,  -12, 2,      /* topleft row,col, and botleft row,col */
                   42263:           {  2,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42264:             "\x57\x55\xd5" }  },
                   42265:       /* --- pixel bitmap for cmex83 char#3 \big] --- */
1.1       albertel 42266:       {   3, 1316,                      /* character number, location */
1.2       albertel 42267:           0, 0,  -12, 0,      /* topleft row,col, and botleft row,col */
                   42268:           {  2,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42269:             "\xab\xaa\xea" }  },
1.1       albertel 42270:       /* --- pixel bitmap for cmex83 char#4 (noname) --- */
                   42271:       {   4, 1753,                      /* character number, location */
1.2       albertel 42272:           0, 2,  -12, 2,      /* topleft row,col, and botleft row,col */
                   42273:           {  2,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42274:             "\x55\x55\xd5" }  },
1.1       albertel 42275:       /* --- pixel bitmap for cmex83 char#5 (noname) --- */
                   42276:       {   5, 2037,                      /* character number, location */
1.2       albertel 42277:           0, 0,  -12, 0,      /* topleft row,col, and botleft row,col */
                   42278:           {  2,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42279:             "\xaa\xaa\xea" }  },
1.1       albertel 42280:       /* --- pixel bitmap for cmex83 char#6 (noname) --- */
                   42281:       {   6, 2321,                      /* character number, location */
1.2       albertel 42282:           0, 2,  -12, 2,      /* topleft row,col, and botleft row,col */
                   42283:           {  2,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42284:             "\x57\x55\x55" }  },
1.1       albertel 42285:       /* --- pixel bitmap for cmex83 char#7 (noname) --- */
                   42286:       {   7, 2605,                      /* character number, location */
1.2       albertel 42287:           0, 0,  -12, 0,      /* topleft row,col, and botleft row,col */
                   42288:           {  2,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42289:             "\xab\xaa\xaa" }  },
                   42290:       /* --- pixel bitmap for cmex83 char#8 \big{ --- */
1.1       albertel 42291:       {   8, 2889,                      /* character number, location */
1.2       albertel 42292:           0, 0,  -12, 0,      /* topleft row,col, and botleft row,col */
                   42293:           {  6,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42294:             "\x30\x82\x20\x88\x61\x20\x08\x82\xc0" }  },
                   42295:       /* --- pixel bitmap for cmex83 char#9 \big} --- */
1.1       albertel 42296:       {   9, 3316,                      /* character number, location */
1.2       albertel 42297:           0, 0,  -12, 0,      /* topleft row,col, and botleft row,col */
                   42298:           {  6,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42299:             "\x07\x82\x20\x08\x8e\x23\x08\x82\x1c" }  },
                   42300:       /* --- pixel bitmap for cmex83 char#10 \big< --- */
1.1       albertel 42301:       {  10, 3786,                      /* character number, location */
1.2       albertel 42302:           0, 1,  -13, 1,      /* topleft row,col, and botleft row,col */
                   42303:           {  3,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42304:             "\xa4\xa4\x24\x92\x48" }  },
                   42305:       /* --- pixel bitmap for cmex83 char#11 \big> --- */
1.1       albertel 42306:       {  11, 4074,                      /* character number, location */
1.2       albertel 42307:           0, 0,  -13, 0,      /* topleft row,col, and botleft row,col */
                   42308:           {  3,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42309:             "\x89\x24\x92\x92\x12" }  },
1.1       albertel 42310:       /* --- pixel bitmap for cmex83 char#12 (noname) --- */
                   42311:       {  12, 4930,                      /* character number, location */
1.2       albertel 42312:           1, 1,   -8, 1,      /* topleft row,col, and botleft row,col */
                   42313:           {  1,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42314:             "\xff\x01" }  },
1.1       albertel 42315:       /* --- pixel bitmap for cmex83 char#13 (noname) --- */
                   42316:       {  13, 4955,                      /* character number, location */
1.2       albertel 42317:           1, 1,   -8, 1,      /* topleft row,col, and botleft row,col */
                   42318:           {  3,    9, 3, 6, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42319:             "\xf8\x01\x11" }  },
1.1       albertel 42320:       /* --- pixel bitmap for cmex83 char#14 (noname) --- */
                   42321:       {  14, 4362,                      /* character number, location */
1.2       albertel 42322:           0, 1,  -12, 1,      /* topleft row,col, and botleft row,col */
                   42323:           {  4,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42324:             "\x88\x44\x44\x22\x22\x11" }  },
1.1       albertel 42325:       /* --- pixel bitmap for cmex83 char#15 (noname) --- */
                   42326:       {  15, 4646,                      /* character number, location */
1.2       albertel 42327:           0, 1,  -12, 1,      /* topleft row,col, and botleft row,col */
                   42328:           {  4,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42329:             "\x11\x22\x22\x44\x44\x88" }  },
                   42330:       /* --- pixel bitmap for cmex83 char#16 \Big( --- */
1.1       albertel 42331:       {  16,   85,                      /* character number, location */
1.2       albertel 42332:           0, 2,  -19, 2,      /* topleft row,col, and botleft row,col */
                   42333:           {  4,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42334:             "\x48\x24\x12\x11\x11\x11\x11\x22\x44\x08" }  },
                   42335:       /* --- pixel bitmap for cmex83 char#17 \Big) --- */
1.1       albertel 42336:       {  17,  507,                      /* character number, location */
1.2       albertel 42337:           0, 0,  -19, 0,      /* topleft row,col, and botleft row,col */
                   42338:           {  4,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42339:             "\x21\x42\x84\x88\x88\x88\x88\x44\x22\x01" }  },
                   42340:       /* --- pixel bitmap for cmex83 char#18 \bigg( --- */
1.1       albertel 42341:       {  18,  149,                      /* character number, location */
1.2       albertel 42342:           0, 3,  -26, 3,      /* topleft row,col, and botleft row,col */
                   42343:           {  4,   26, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42344:             "\x48\x24\x22\x12\x11\x11\x11\x11\x11\x21\x22\x42\x84" }  },
                   42345:       /* --- pixel bitmap for cmex83 char#19 \bigg) --- */
1.1       albertel 42346:       {  19,  571,                      /* character number, location */
1.2       albertel 42347:           0, 0,  -26, 0,      /* topleft row,col, and botleft row,col */
                   42348:           {  4,   26, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42349:             "\x21\x42\x44\x84\x88\x88\x88\x88\x88\x48\x44\x24\x12" }  },
                   42350:       /* --- pixel bitmap for cmex83 char#20 \bigg[ --- */
1.1       albertel 42351:       {  20,  993,                      /* character number, location */
1.2       albertel 42352:           0, 3,  -26, 3,      /* topleft row,col, and botleft row,col */
                   42353:           {  2,   26, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42354:             "\x02\x0f\xe1\x1f\x81\x12" }  },
                   42355:       /* --- pixel bitmap for cmex83 char#21 \bigg] --- */
1.1       albertel 42356:       {  21, 1430,                      /* character number, location */
1.2       albertel 42357:           0, 0,  -26, 0,      /* topleft row,col, and botleft row,col */
                   42358:           {  2,   26, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42359:             "\x02\xfe\x11\xf8\x11\x02" }  },
1.1       albertel 42360:       /* --- pixel bitmap for cmex83 char#22 (noname) --- */
                   42361:       {  22, 1867,                      /* character number, location */
1.2       albertel 42362:           0, 3,  -26, 3,      /* topleft row,col, and botleft row,col */
                   42363:           {  3,   26, 3,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42364:             "\xfe\x01\x2f\x91\x23" }  },
1.1       albertel 42365:       /* --- pixel bitmap for cmex83 char#23 (noname) --- */
                   42366:       {  23, 2151,                      /* character number, location */
1.2       albertel 42367:           0, 0,  -26, 0,      /* topleft row,col, and botleft row,col */
                   42368:           {  3,   26, 3,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42369:             "\xfe\x21\xf9\x21\x03" }  },
1.1       albertel 42370:       /* --- pixel bitmap for cmex83 char#24 (noname) --- */
                   42371:       {  24, 2435,                      /* character number, location */
1.2       albertel 42372:           0, 3,  -26, 3,      /* topleft row,col, and botleft row,col */
                   42373:           {  3,   26, 3,11, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42374:             "\x03\x0f\xe1\x2f\x91\x21" }  },
1.1       albertel 42375:       /* --- pixel bitmap for cmex83 char#25 (noname) --- */
                   42376:       {  25, 2719,                      /* character number, location */
1.2       albertel 42377:           0, 0,  -26, 0,      /* topleft row,col, and botleft row,col */
                   42378:           {  3,   26, 3,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42379:             "\x03\xfe\x21\xf9\x21" }  },
                   42380:       /* --- pixel bitmap for cmex83 char#26 \bigg{ --- */
1.1       albertel 42381:       {  26, 3003,                      /* character number, location */
1.2       albertel 42382:           0, 1,  -26, 1,      /* topleft row,col, and botleft row,col */
                   42383:           {  6,   26, 3,36, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42384:             "\x51\x41\x10\xf8\x31\x20\x21\x30\xf1\x11\x40\x21\x30"
                   42385:             "\xf8\x31\x20\x41\x61" }  },
                   42386:       /* --- pixel bitmap for cmex83 char#27 \bigg} --- */
1.1       albertel 42387:       {  27, 3430,                      /* character number, location */
1.2       albertel 42388:           0, 1,  -26, 1,      /* topleft row,col, and botleft row,col */
                   42389:           {  6,   26, 3,29, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42390:             "\x02\x61\x30\xf9\x31\x20\x42\x41\x10\xf9\x31\x20\x21"
                   42391:             "\x32\x41" }  },
                   42392:       /* --- pixel bitmap for cmex83 char#28 \bigg< --- */
1.1       albertel 42393:       {  28, 3902,                      /* character number, location */
1.2       albertel 42394:           0, 2,  -27, 2,      /* topleft row,col, and botleft row,col */
                   42395:           {  5,   27, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42396:             "\x10\x22\x84\x08\x21\x44\x08\x11\x42\x10\x42\x10\x42"
1.1       albertel 42397:             "\x08\x42\x08\x42" }  },
1.2       albertel 42398:       /* --- pixel bitmap for cmex83 char#29 \bigg> --- */
1.1       albertel 42399:       {  29, 4190,                      /* character number, location */
1.2       albertel 42400:           0, 1,  -27, 1,      /* topleft row,col, and botleft row,col */
                   42401:           {  5,   27, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42402:             "\x21\x08\x21\x08\x21\x04\x21\x04\x21\x44\x08\x11\x42"
1.1       albertel 42403:             "\x88\x10\x22\x04" }  },
                   42404:       /* --- pixel bitmap for cmex83 char#30 (noname) --- */
                   42405:       {  30, 4476,                      /* character number, location */
1.2       albertel 42406:           0, 1,  -26, 1,      /* topleft row,col, and botleft row,col */
                   42407:           {  9,   26, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42408:             "\x00\x01\x02\x06\x04\x08\x18\x10\x20\x60\x40\x80\x80"
1.1       albertel 42409:             "\x01\x01\x02\x06\x04\x08\x18\x10\x20\x60\x40\x80\x80"
                   42410:             "\x01\x01\x02\x00" }  },
                   42411:       /* --- pixel bitmap for cmex83 char#31 (noname) --- */
                   42412:       {  31, 4760,                      /* character number, location */
1.2       albertel 42413:           0, 1,  -26, 1,      /* topleft row,col, and botleft row,col */
                   42414:           {  9,   26, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42415:             "\x01\x02\x0c\x10\x20\xc0\x00\x01\x02\x0c\x10\x20\xc0"
1.1       albertel 42416:             "\x00\x01\x02\x0c\x10\x20\xc0\x00\x01\x02\x0c\x10\x20"
                   42417:             "\xc0\x00\x01\x02" }  },
1.2       albertel 42418:       /* --- pixel bitmap for cmex83 char#32 \Bigg( --- */
1.1       albertel 42419:       {  32,  227,                      /* character number, location */
1.2       albertel 42420:           0, 3,  -33, 3,      /* topleft row,col, and botleft row,col */
                   42421:           {  5,   33, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42422:             "\x10\x21\x42\x84\x10\x22\x84\x10\x42\x08\x21\x84\x10"
1.1       albertel 42423:             "\x42\x08\x42\x08\x41\x08\x42\x10" }  },
1.2       albertel 42424:       /* --- pixel bitmap for cmex83 char#33 \Bigg) --- */
1.1       albertel 42425:       {  33,  649,                      /* character number, location */
1.2       albertel 42426:           0, 0,  -33, 0,      /* topleft row,col, and botleft row,col */
                   42427:           {  5,   33, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42428:             "\x41\x08\x42\x10\x42\x08\x42\x08\x21\x84\x10\x42\x08"
1.1       albertel 42429:             "\x21\x84\x08\x21\x44\x88\x10\x01" }  },
1.2       albertel 42430:       /* --- pixel bitmap for cmex83 char#34 \Bigg[ --- */
1.1       albertel 42431:       {  34, 1071,                      /* character number, location */
1.2       albertel 42432:           0, 3,  -33, 3,      /* topleft row,col, and botleft row,col */
                   42433:           {  3,   33, 3,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42434:             "\x03\x0f\xe1\x2f\xe1\x21\x23" }  },
                   42435:       /* --- pixel bitmap for cmex83 char#35 \Bigg] --- */
1.1       albertel 42436:       {  35, 1508,                      /* character number, location */
1.2       albertel 42437:           0, 0,  -33, 0,      /* topleft row,col, and botleft row,col */
                   42438:           {  3,   33, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42439:             "\x03\xfe\x21\xfe\x21\x24" }  },
1.1       albertel 42440:       /* --- pixel bitmap for cmex83 char#36 (noname) --- */
                   42441:       {  36, 1945,                      /* character number, location */
1.2       albertel 42442:           0, 3,  -33, 3,      /* topleft row,col, and botleft row,col */
                   42443:           {  3,   33, 2, 6, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42444:             "\xff\x1f\x00\x01\x02\x03" }  },
1.1       albertel 42445:       /* --- pixel bitmap for cmex83 char#37 (noname) --- */
                   42446:       {  37, 2229,                      /* character number, location */
1.2       albertel 42447:           0, 0,  -33, 0,      /* topleft row,col, and botleft row,col */
                   42448:           {  3,   33, 2, 6, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42449:             "\xff\x1f\x02\x01\x00\x03" }  },
1.1       albertel 42450:       /* --- pixel bitmap for cmex83 char#38 (noname) --- */
                   42451:       {  38, 2513,                      /* character number, location */
1.2       albertel 42452:           0, 3,  -33, 3,      /* topleft row,col, and botleft row,col */
                   42453:           {  3,   33, 2, 7, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42454:             "\x00\x03\x00\xff\x1f\x01\x02" }  },
1.1       albertel 42455:       /* --- pixel bitmap for cmex83 char#39 (noname) --- */
                   42456:       {  39, 2797,                      /* character number, location */
1.2       albertel 42457:           0, 0,  -33, 0,      /* topleft row,col, and botleft row,col */
                   42458:           {  3,   33, 2, 6, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42459:             "\x00\x03\xff\x1f\x02\x01" }  },
                   42460:       /* --- pixel bitmap for cmex83 char#40 \Bigg{ --- */
1.1       albertel 42461:       {  40, 3081,                      /* character number, location */
1.2       albertel 42462:           0, 1,  -33, 1,      /* topleft row,col, and botleft row,col */
                   42463:           {  6,   33, 3,34, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42464:             "\x51\x32\x41\x20\xfb\x21\x30\x11\x41\x61\x40\xfb\x21"
                   42465:             "\x30\x31\x52\x61" }  },
                   42466:       /* --- pixel bitmap for cmex83 char#41 \Bigg} --- */
1.1       albertel 42467:       {  41, 3508,                      /* character number, location */
1.2       albertel 42468:           0, 1,  -33, 1,      /* topleft row,col, and botleft row,col */
                   42469:           {  6,   33, 3,35, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42470:             "\x01\x61\x40\xfb\x21\x30\x31\x52\x61\x32\x41\x20\xfb"
                   42471:             "\x21\x30\x11\x41\x51" }  },
                   42472:       /* --- pixel bitmap for cmex83 char#42 \Bigg< --- */
1.1       albertel 42473:       {  42, 3982,                      /* character number, location */
1.2       albertel 42474:           0, 2,  -33, 2,      /* topleft row,col, and botleft row,col */
                   42475:           {  5,   33, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42476:             "\x10\x42\x84\x10\x22\x84\x08\x21\x44\x08\x21\x04\x21"
1.1       albertel 42477:             "\x84\x20\x84\x20\x84\x10\x84\x10" }  },
1.2       albertel 42478:       /* --- pixel bitmap for cmex83 char#43 \Bigg> --- */
1.1       albertel 42479:       {  43, 4270,                      /* character number, location */
1.2       albertel 42480:           0, 1,  -33, 1,      /* topleft row,col, and botleft row,col */
                   42481:           {  5,   33, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42482:             "\x21\x04\x21\x84\x20\x84\x20\x84\x10\x84\x10\x42\x84"
1.1       albertel 42483:             "\x10\x22\x84\x08\x21\x44\x08\x01" }  },
1.2       albertel 42484:       /* --- pixel bitmap for cmex83 char#44 / --- */
1.1       albertel 42485:       {  44, 4554,                      /* character number, location */
1.2       albertel 42486:           0, 1,  -33, 1,      /* topleft row,col, and botleft row,col */
                   42487:           { 12,   33, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42488:             "\x00\x08\xc0\x00\x04\x40\x00\x06\x20\x00\x02\x30\x00"
1.1       albertel 42489:             "\x01\x10\x80\x01\x08\x80\x00\x0c\x40\x00\x04\x60\x00"
                   42490:             "\x02\x20\x00\x03\x10\x00\x01\x18\x80\x00\x08\xc0\x00"
                   42491:             "\x04\x40\x00\x06\x20\x00\x02\x30\x00\x01\x00" }  },
1.2       albertel 42492:       /* --- pixel bitmap for cmex83 char#45 \ --- */
1.1       albertel 42493:       {  45, 4838,                      /* character number, location */
1.2       albertel 42494:           0, 1,  -33, 1,      /* topleft row,col, and botleft row,col */
                   42495:           { 12,   33, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42496:             "\x01\x30\x00\x02\x20\x00\x06\x40\x00\x04\xc0\x00\x08"
1.1       albertel 42497:             "\x80\x00\x18\x00\x01\x10\x00\x03\x20\x00\x02\x60\x00"
                   42498:             "\x04\x40\x00\x0c\x80\x00\x08\x80\x01\x10\x00\x01\x30"
                   42499:             "\x00\x02\x20\x00\x06\x40\x00\x04\xc0\x00\x08" }  },
1.2       albertel 42500:       /* --- pixel bitmap for cmex83 char#46 / --- */
1.1       albertel 42501:       {  46, 4412,                      /* character number, location */
1.2       albertel 42502:           0, 1,  -19, 1,      /* topleft row,col, and botleft row,col */
                   42503:           {  6,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42504:             "\x20\x08\x43\x10\x86\x20\x08\x43\x10\x84\x21\x08\x43"
1.1       albertel 42505:             "\x10\x00" }  },
1.2       albertel 42506:       /* --- pixel bitmap for cmex83 char#47 \ --- */
1.1       albertel 42507:       {  47, 4696,                      /* character number, location */
1.2       albertel 42508:           0, 1,  -19, 1,      /* topleft row,col, and botleft row,col */
                   42509:           {  6,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42510:             "\x41\x30\x08\x82\x41\x10\x04\x83\x20\x08\x06\x41\x30"
1.1       albertel 42511:             "\x08\x02" }  },
1.2       albertel 42512:       /* --- pixel bitmap for cmex83 char#48 \leftparentop --- */
1.1       albertel 42513:       {  48,  319,                      /* character number, location */
1.2       albertel 42514:          -1, 4,  -21, 4,      /* topleft row,col, and botleft row,col */
                   42515:           {  5,   20, 3,23, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42516:             "\x41\xf1\x31\x10\xf2\x21\x20\xf3\x11\x3f\x91\x40" }  },
                   42517:       /* --- pixel bitmap for cmex83 char#49 \rightparentop --- */
1.1       albertel 42518:       {  49,  741,                      /* character number, location */
1.2       albertel 42519:          -1, 0,  -21, 0,      /* topleft row,col, and botleft row,col */
                   42520:           {  5,   20, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42521:             "\x41\x08\x42\x08\x42\x08\x41\x08\x21\x84\x10\x42\x08" }  },
1.1       albertel 42522:       /* --- pixel bitmap for cmex83 char#50 (noname) --- */
                   42523:       {  50, 1163,                      /* character number, location */
1.2       albertel 42524:          -1, 4,  -20, 4,      /* topleft row,col, and botleft row,col */
                   42525:           {  3,   19, 3,11, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42526:             "\x03\x0f\xe1\x2f\x21\x21" }  },
1.1       albertel 42527:       /* --- pixel bitmap for cmex83 char#51 (noname) --- */
                   42528:       {  51, 1600,                      /* character number, location */
1.2       albertel 42529:          -1, 0,  -20, 0,      /* topleft row,col, and botleft row,col */
                   42530:           {  3,   19, 3,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42531:             "\x03\xfe\x21\xf2\x21" }  },
1.1       albertel 42532:       /* --- pixel bitmap for cmex83 char#52 (noname) --- */
                   42533:       {  52, 1227,                      /* character number, location */
1.2       albertel 42534:           0, 4,  -19, 4,      /* topleft row,col, and botleft row,col */
                   42535:           {  3,   19, 3,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42536:             "\xfe\x01\x2f\x21\x23" }  },
1.1       albertel 42537:       /* --- pixel bitmap for cmex83 char#53 (noname) --- */
                   42538:       {  53, 1664,                      /* character number, location */
1.2       albertel 42539:           0, 0,  -19, 0,      /* topleft row,col, and botleft row,col */
                   42540:           {  3,   19, 3,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42541:             "\xfe\x21\xf2\x21\x03" }  },
1.1       albertel 42542:       /* --- pixel bitmap for cmex83 char#54 (noname) --- */
                   42543:       {  54, 1291,                      /* character number, location */
1.2       albertel 42544:           1, 4,   -8, 4,      /* topleft row,col, and botleft row,col */
                   42545:           {  1,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42546:             "\xff\x01" }  },
1.1       albertel 42547:       /* --- pixel bitmap for cmex83 char#55 (noname) --- */
                   42548:       {  55, 1728,                      /* character number, location */
1.2       albertel 42549:           1, 2,   -8, 2,      /* topleft row,col, and botleft row,col */
                   42550:           {  1,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42551:             "\xff\x01" }  },
                   42552:       /* --- pixel bitmap for cmex83 char#56 \leftbracetop --- */
1.1       albertel 42553:       {  56, 3173,                      /* character number, location */
1.2       albertel 42554:          -1, 4,  -11, 4,      /* topleft row,col, and botleft row,col */
                   42555:           {  4,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42556:             "\x48\x32\x33\x33\x33" }  },
                   42557:       /* --- pixel bitmap for cmex83 char#57 \rightbracetop --- */
1.1       albertel 42558:       {  57, 3600,                      /* character number, location */
1.2       albertel 42559:          -1, 1,  -11, 1,      /* topleft row,col, and botleft row,col */
                   42560:           {  5,   10, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42561:             "\x02\x42\x42\x10\xf6\x32" }  },
                   42562:       /* --- pixel bitmap for cmex83 char#58 \leftbracebot --- */
1.1       albertel 42563:       {  58, 3219,                      /* character number, location */
1.2       albertel 42564:           1, 4,   -9, 4,      /* topleft row,col, and botleft row,col */
                   42565:           {  4,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42566:             "\x33\x33\x33\x23\x84" }  },
                   42567:       /* --- pixel bitmap for cmex83 char#59 \rightbracebot --- */
1.1       albertel 42568:       {  59, 3646,                      /* character number, location */
1.2       albertel 42569:           1, 1,   -9, 1,      /* topleft row,col, and botleft row,col */
                   42570:           {  5,   10, 3,11, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42571:             "\xf6\x32\x22\x22\x22\x32" }  },
                   42572:       /* --- pixel bitmap for cmex83 char#60 \leftbracemid --- */
1.1       albertel 42573:       {  60, 3246,                      /* character number, location */
1.2       albertel 42574:           1, 1,  -22, 1,      /* topleft row,col, and botleft row,col */
                   42575:           {  5,   23, 3,24, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42576:             "\xf7\x32\x31\x32\x22\x21\x52\x42\x41\x10\xf7\x32" }  },
                   42577:       /* --- pixel bitmap for cmex83 char#61 \rightbracemid --- */
1.1       albertel 42578:       {  61, 3673,                      /* character number, location */
1.2       albertel 42579:           1, 4,  -22, 4,      /* topleft row,col, and botleft row,col */
                   42580:           {  4,   23, 3,21, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42581:             "\xf8\x02\x20\x12\x31\x41\x21\x22\x1f\x82\x21" }  },
                   42582:       /* --- pixel bitmap for cmex83 char#62 \leftbracebar --- */
1.1       albertel 42583:       {  62, 3299,                      /* character number, location */
1.2       albertel 42584:           1, 4,   -4, 4,      /* topleft row,col, and botleft row,col */
                   42585:           {  2,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42586:             "\xff\x03" }  },
1.1       albertel 42587:       /* --- pixel bitmap for cmex83 char#63 (noname) --- */
                   42588:       {  63, 5086,                      /* character number, location */
1.2       albertel 42589:           1, 3,   -8, 3,      /* topleft row,col, and botleft row,col */
                   42590:           {  1,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42591:             "\xff\x01" }  },
                   42592:       /* --- pixel bitmap for cmex83 char#64 \leftparenbot --- */
1.1       albertel 42593:       {  64,  385,                      /* character number, location */
1.2       albertel 42594:           1, 4,  -19, 4,      /* topleft row,col, and botleft row,col */
                   42595:           {  5,   20, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42596:             "\x21\x84\x10\x42\x08\x21\x08\x21\x04\x21\x04\x21\x08" }  },
                   42597:       /* --- pixel bitmap for cmex83 char#65 \rightparenbot --- */
1.1       albertel 42598:       {  65,  807,                      /* character number, location */
1.2       albertel 42599:           1, 0,  -19, 0,      /* topleft row,col, and botleft row,col */
                   42600:           {  5,   20, 3,23, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42601:             "\xf9\x41\xf3\x31\x10\xf2\x21\x20\xf1\x11\x31\x49" }  },
                   42602:       /* --- pixel bitmap for cmex83 char#66 \leftparenbar --- */
1.1       albertel 42603:       {  66,  432,                      /* character number, location */
1.2       albertel 42604:           1, 4,   -8, 4,      /* topleft row,col, and botleft row,col */
                   42605:           {  1,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42606:             "\xff\x01" }  },
                   42607:       /* --- pixel bitmap for cmex83 char#67 \rightparenbar --- */
1.1       albertel 42608:       {  67,  854,                      /* character number, location */
1.2       albertel 42609:           1, 4,   -8, 4,      /* topleft row,col, and botleft row,col */
                   42610:           {  1,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42611:             "\xff\x01" }  },
                   42612:       /* --- pixel bitmap for cmex83 char#68 \Big< --- */
1.1       albertel 42613:       {  68, 3838,                      /* character number, location */
1.2       albertel 42614:           0, 1,  -19, 1,      /* topleft row,col, and botleft row,col */
                   42615:           {  4,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42616:             "\x88\x44\x24\x22\x11\x21\x22\x44\x84\x08" }  },
                   42617:       /* --- pixel bitmap for cmex83 char#69 \Big> --- */
1.1       albertel 42618:       {  69, 4126,                      /* character number, location */
1.2       albertel 42619:           0, 1,  -19, 1,      /* topleft row,col, and botleft row,col */
                   42620:           {  4,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42621:             "\x11\x22\x42\x44\x88\x48\x44\x22\x12\x01" }  },
1.1       albertel 42622:       /* --- pixel bitmap for cmex83 char#70 \bigsqcup --- */
                   42623:       {  70, 5675,                      /* character number, location */
1.2       albertel 42624:           0, 1,  -11, 1,      /* topleft row,col, and botleft row,col */
                   42625:           {  7,   11, 3, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42626:             "\xf9\x01\x51\x07" }  },
1.1       albertel 42627:       /* --- pixel bitmap for cmex83 char#71 \Bigsqcup --- */
                   42628:       {  71, 5743,                      /* character number, location */
1.2       albertel 42629:           0, 1,  -16, 1,      /* topleft row,col, and botleft row,col */
                   42630:           { 10,   16, 3, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42631:             "\xfe\x01\x81\x0a" }  },
                   42632:       /* --- pixel bitmap for cmex83 char#72 \oint --- */
1.1       albertel 42633:       {  72, 6951,                      /* character number, location */
1.2       albertel 42634:           0, 0,  -13, 0,      /* topleft row,col, and botleft row,col */
                   42635:           {  6,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42636:             "\x10\x8a\x20\x18\xcb\x62\x08\x82\x14\x06" }  },
1.1       albertel 42637:       /* --- pixel bitmap for cmex83 char#73 \Bigoint --- */
                   42638:       {  73, 7011,                      /* character number, location */
1.2       albertel 42639:           0, 1,  -26, 1,      /* topleft row,col, and botleft row,col */
                   42640:           {  8,   26, 3,49, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42641:             "\x71\x62\xf2\x61\x10\xf4\x51\x20\x34\x10\xf3\x21\x11"
                   42642:             "\x21\x34\x10\xf4\x31\x40\xf2\x21\x51\x11\x52\x61" }  },
1.1       albertel 42643:       /* --- pixel bitmap for cmex83 char#74 \bigodot --- */
                   42644:       {  74, 5831,                      /* character number, location */
1.2       albertel 42645:           0, 1,  -11, 1,      /* topleft row,col, and botleft row,col */
                   42646:           { 10,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42647:             "\x78\x10\x22\x50\x80\x01\xc6\x18\x60\x80\x02\x11\x82"
1.1       albertel 42648:             "\x07" }  },
                   42649:       /* --- pixel bitmap for cmex83 char#75 \Bigodot --- */
                   42650:       {  75, 5899,                      /* character number, location */
1.2       albertel 42651:           0, 1,  -16, 1,      /* topleft row,col, and botleft row,col */
                   42652:           { 14,   16, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42653:             "\xe0\x01\x86\x41\x80\x08\x40\x02\x50\x00\x18\x00\x06"
1.1       albertel 42654:             "\x83\xc1\x60\x00\x18\x00\x0a\x40\x02\x10\x01\x82\x61"
                   42655:             "\x80\x07" }  },
                   42656:       /* --- pixel bitmap for cmex83 char#76 \bigoplus --- */
                   42657:       {  76, 5989,                      /* character number, location */
1.2       albertel 42658:           0, 1,  -11, 1,      /* topleft row,col, and botleft row,col */
                   42659:           { 10,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42660:             "\x78\x90\x22\x52\x88\x21\xfe\x1f\x62\x88\x22\x91\x82"
1.1       albertel 42661:             "\x07" }  },
                   42662:       /* --- pixel bitmap for cmex83 char#77 \Bigoplus --- */
                   42663:       {  77, 6069,                      /* character number, location */
1.2       albertel 42664:           0, 1,  -16, 1,      /* topleft row,col, and botleft row,col */
                   42665:           { 14,   16, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42666:             "\xe0\x01\xa6\x41\x88\x08\x42\x82\x50\x20\x18\x08\xfe"
1.1       albertel 42667:             "\xff\x81\x60\x20\x18\x08\x0a\x42\x82\x10\x21\x82\x69"
                   42668:             "\x80\x07" }  },
                   42669:       /* --- pixel bitmap for cmex83 char#78 \bigotimes --- */
                   42670:       {  78, 6179,                      /* character number, location */
1.2       albertel 42671:           0, 1,  -11, 1,      /* topleft row,col, and botleft row,col */
                   42672:           { 10,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42673:             "\x78\x10\x62\x58\x92\x31\x46\x18\x63\x92\x86\x11\x82"
1.1       albertel 42674:             "\x07" }  },
                   42675:       /* --- pixel bitmap for cmex83 char#79 \Bigotimes --- */
                   42676:       {  79, 6259,                      /* character number, location */
1.2       albertel 42677:           0, 1,  -16, 1,      /* topleft row,col, and botleft row,col */
                   42678:           { 14,   16, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42679:             "\xe0\x01\x86\x41\x80\x28\x50\x0a\x54\x84\x18\x12\x06"
1.1       albertel 42680:             "\x83\xc1\x60\x48\x18\x21\x2a\x50\x0a\x14\x01\x82\x61"
                   42681:             "\x80\x07" }  },
1.2       albertel 42682:       /* --- pixel bitmap for cmex83 char#80 \sum --- */
1.1       albertel 42683:       {  80, 6381,                      /* character number, location */
1.2       albertel 42684:           0, 1,  -11, 1,      /* topleft row,col, and botleft row,col */
                   42685:           {  9,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42686:             "\xff\x06\x09\x24\x80\x00\x02\x02\x06\x04\x05\xfd\x03" }  },
                   42687:       /* --- pixel bitmap for cmex83 char#81 \prod --- */
1.1       albertel 42688:       {  81, 6507,                      /* character number, location */
1.2       albertel 42689:           0, 1,  -11, 1,      /* topleft row,col, and botleft row,col */
                   42690:           {  8,   11, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42691:             "\x08\xf8\x11\x41\x13\x23" }  },
                   42692:       /* --- pixel bitmap for cmex83 char#82 \int --- */
1.1       albertel 42693:       {  82, 6815,                      /* character number, location */
1.2       albertel 42694:           0, 0,  -13, 0,      /* topleft row,col, and botleft row,col */
                   42695:           {  6,   13, 3,17, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42696:             "\x41\x41\x11\xf8\x31\x21\x11\x42\x33" }  },
1.1       albertel 42697:       /* --- pixel bitmap for cmex83 char#83 \bigcup --- */
                   42698:       {  83, 7107,                      /* character number, location */
1.2       albertel 42699:           0, 1,  -11, 1,      /* topleft row,col, and botleft row,col */
                   42700:           {  7,   11, 3,13, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42701:             "\xf8\x01\x51\x11\x31\x33\x21" }  },
1.1       albertel 42702:       /* --- pixel bitmap for cmex83 char#84 \bigcap --- */
                   42703:       {  84, 7263,                      /* character number, location */
1.2       albertel 42704:           0, 1,  -11, 1,      /* topleft row,col, and botleft row,col */
                   42705:           {  7,   11, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42706:             "\x23\x31\x31\x1f\x81\x51" }  },
1.1       albertel 42707:       /* --- pixel bitmap for cmex83 char#85 \biguplus --- */
                   42708:       {  85, 7419,                      /* character number, location */
1.2       albertel 42709:           0, 1,  -11, 1,      /* topleft row,col, and botleft row,col */
                   42710:           {  7,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42711:             "\xc1\x60\x30\x98\xec\x26\x83\x41\x11\x07" }  },
1.1       albertel 42712:       /* --- pixel bitmap for cmex83 char#86 \bigwedge --- */
                   42713:       {  86, 7591,                      /* character number, location */
1.2       albertel 42714:           0, 1,  -11, 1,      /* topleft row,col, and botleft row,col */
                   42715:           {  7,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42716:             "\x08\x04\x85\x42\x11\x89\x44\xa2\x60\x10" }  },
1.1       albertel 42717:       /* --- pixel bitmap for cmex83 char#87 \bigvee --- */
                   42718:       {  87, 7739,                      /* character number, location */
1.2       albertel 42719:           0, 1,  -11, 1,      /* topleft row,col, and botleft row,col */
                   42720:           {  7,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42721:             "\xc1\xa0\x48\x24\x12\x51\x28\x14\x04\x02" }  },
1.1       albertel 42722:       /* --- pixel bitmap for cmex83 char#88 \Bigsum --- */
                   42723:       {  88, 6437,                      /* character number, location */
1.2       albertel 42724:           0, 1,  -16, 1,      /* topleft row,col, and botleft row,col */
                   42725:           { 14,   16, 3,45, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42726:             "\x0d\x12\x92\x22\x92\x22\x91\x32\xc3\xc2\xd2\xd1\xc1"
                   42727:             "\xc2\xb2\xc1\x91\x21\x92\x12\x82\x1d\x11" }  },
1.1       albertel 42728:       /* --- pixel bitmap for cmex83 char#89 \Bigprod --- */
                   42729:       {  89, 6575,                      /* character number, location */
1.2       albertel 42730:           0, 1,  -16, 1,      /* topleft row,col, and botleft row,col */
                   42731:           { 12,   16, 3,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42732:             "\x0c\xfd\x22\x42\x2c" }  },
1.1       albertel 42733:       /* --- pixel bitmap for cmex83 char#90 \Bigint --- */
                   42734:       {  90, 6871,                      /* character number, location */
1.2       albertel 42735:           0, 1,  -26, 1,      /* topleft row,col, and botleft row,col */
                   42736:           {  8,   26, 3,39, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42737:             "\x71\x62\xf2\x61\x10\xf4\x51\x20\xf5\x41\x30\xf4\x31"
                   42738:             "\x40\xf2\x21\x51\x11\x52\x62" }  },
1.1       albertel 42739:       /* --- pixel bitmap for cmex83 char#91 \Bigcup --- */
                   42740:       {  91, 7175,                      /* character number, location */
1.2       albertel 42741:           0, 1,  -16, 1,      /* topleft row,col, and botleft row,col */
                   42742:           { 10,   16, 3,17, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42743:             "\xfc\x01\x81\x11\x61\x31\x41\x54\x34" }  },
1.1       albertel 42744:       /* --- pixel bitmap for cmex83 char#92 \Bigcap --- */
                   42745:       {  92, 7331,                      /* character number, location */
1.2       albertel 42746:           0, 1,  -16, 1,      /* topleft row,col, and botleft row,col */
                   42747:           { 10,   16, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42748:             "\x34\x51\x41\x31\x61\x1f\xc1\x81" }  },
1.1       albertel 42749:       /* --- pixel bitmap for cmex83 char#93 \Biguplus --- */
                   42750:       {  93, 7493,                      /* character number, location */
1.2       albertel 42751:           0, 1,  -16, 1,      /* topleft row,col, and botleft row,col */
                   42752:           { 10,   16, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42753:             "\x01\x06\x18\x60\x80\x01\x86\x18\x62\xbf\x21\x86\x18"
1.1       albertel 42754:             "\x60\x80\x01\x0a\x44\x08\x1e" }  },
                   42755:       /* --- pixel bitmap for cmex83 char#94 \Bigwedge --- */
                   42756:       {  94, 7657,                      /* character number, location */
1.2       albertel 42757:           0, 1,  -16, 1,      /* topleft row,col, and botleft row,col */
                   42758:           { 10,   16, 3,38, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42759:             "\x51\x40\xf2\x42\x40\xf2\x31\x21\x30\xf2\x21\x41\x20"
                   42760:             "\xf3\x11\x61\x1f\x11\x81" }  },
1.1       albertel 42761:       /* --- pixel bitmap for cmex83 char#95 \Bigvee --- */
                   42762:       {  95, 7805,                      /* character number, location */
1.2       albertel 42763:           0, 1,  -16, 1,      /* topleft row,col, and botleft row,col */
                   42764:           { 10,   16, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42765:             "\x01\x06\x28\x90\x40\x02\x09\x44\x08\x21\x84\x20\x81"
1.1       albertel 42766:             "\x04\x12\x30\xc0\x00\x03\x08" }  },
1.2       albertel 42767:       /* --- pixel bitmap for cmex83 char#96 \coprod --- */
1.1       albertel 42768:       {  96, 6661,                      /* character number, location */
1.2       albertel 42769:           0, 1,  -11, 1,      /* topleft row,col, and botleft row,col */
                   42770:           {  8,   11, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42771:             "\x03\x23\xf8\x11\x41\x18" }  },
1.1       albertel 42772:       /* --- pixel bitmap for cmex83 char#97 \Bigcoprod --- */
                   42773:       {  97, 6729,                      /* character number, location */
1.2       albertel 42774:           0, 1,  -16, 1,      /* topleft row,col, and botleft row,col */
                   42775:           { 12,   16, 3,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42776:             "\x0c\xfd\x22\x42\x2c" }  },
1.1       albertel 42777:       /* --- pixel bitmap for cmex83 char#98 ^ --- */
                   42778:       {  98, 7887,                      /* character number, location */
1.2       albertel 42779:           8, 0,    6, 0,      /* topleft row,col, and botleft row,col */
                   42780:           {  5,    2, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42781:             "\x6e\x03" }  },
1.1       albertel 42782:       /* --- pixel bitmap for cmex83 char#99 ^ --- */
                   42783:       {  99, 7900,                      /* character number, location */
1.2       albertel 42784:           9, 0,    6, 0,      /* topleft row,col, and botleft row,col */
                   42785:           { 10,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42786:             "\x30\x38\x17\x20" }  },
1.1       albertel 42787:       /* --- pixel bitmap for cmex83 char#100 ^ --- */
                   42788:       { 100, 7917,                      /* character number, location */
1.2       albertel 42789:           9, 0,    6, 0,      /* topleft row,col, and botleft row,col */
                   42790:           { 16,    3, 3,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42791:             "\x64\x75\x45\x11\xe1" }  },
1.1       albertel 42792:       /* --- pixel bitmap for cmex83 char#101 ~ --- */
                   42793:       { 101, 7934,                      /* character number, location */
1.2       albertel 42794:           8, 0,    6, 0,      /* topleft row,col, and botleft row,col */
                   42795:           {  5,    2, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42796:             "\xb6\x01" }  },
1.1       albertel 42797:       /* --- pixel bitmap for cmex83 char#102 ~ --- */
                   42798:       { 102, 7949,                      /* character number, location */
1.2       albertel 42799:           9, 0,    7, 0,      /* topleft row,col, and botleft row,col */
                   42800:           { 10,    2, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42801:             "\x3e\xcf\x07" }  },
1.1       albertel 42802:       /* --- pixel bitmap for cmex83 char#103 ~ --- */
                   42803:       { 103, 7964,                      /* character number, location */
1.2       albertel 42804:           9, 0,    7, 0,      /* topleft row,col, and botleft row,col */
                   42805:           { 16,    2, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42806:             "\xfe\xc1\x83\x7f" }  },
                   42807:       /* --- pixel bitmap for cmex83 char#104 \Big[ --- */
1.1       albertel 42808:       { 104,  929,                      /* character number, location */
1.2       albertel 42809:           0, 2,  -19, 2,      /* topleft row,col, and botleft row,col */
                   42810:           {  2,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42811:             "\x57\x55\x55\x55\x35" }  },
                   42812:       /* --- pixel bitmap for cmex83 char#105 \Big] --- */
1.1       albertel 42813:       { 105, 1366,                      /* character number, location */
1.2       albertel 42814:           0, 0,  -19, 0,      /* topleft row,col, and botleft row,col */
                   42815:           {  2,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42816:             "\xab\xaa\xaa\xaa\x3a" }  },
1.1       albertel 42817:       /* --- pixel bitmap for cmex83 char#106 (noname) --- */
                   42818:       { 106, 1803,                      /* character number, location */
1.2       albertel 42819:           0, 2,  -19, 2,      /* topleft row,col, and botleft row,col */
                   42820:           {  3,   19, 3,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42821:             "\xfe\x01\x2f\x21\x23" }  },
1.1       albertel 42822:       /* --- pixel bitmap for cmex83 char#107 (noname) --- */
                   42823:       { 107, 2087,                      /* character number, location */
1.2       albertel 42824:           0, 0,  -19, 0,      /* topleft row,col, and botleft row,col */
                   42825:           {  3,   19, 3,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42826:             "\xfe\x21\xf2\x21\x03" }  },
1.1       albertel 42827:       /* --- pixel bitmap for cmex83 char#108 (noname) --- */
                   42828:       { 108, 2371,                      /* character number, location */
1.2       albertel 42829:           0, 2,  -19, 2,      /* topleft row,col, and botleft row,col */
                   42830:           {  3,   19, 3,11, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42831:             "\x03\x0f\xe1\x2f\x21\x21" }  },
1.1       albertel 42832:       /* --- pixel bitmap for cmex83 char#109 (noname) --- */
                   42833:       { 109, 2655,                      /* character number, location */
1.2       albertel 42834:           0, 0,  -19, 0,      /* topleft row,col, and botleft row,col */
                   42835:           {  3,   19, 3,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42836:             "\x03\xfe\x21\xf2\x21" }  },
                   42837:       /* --- pixel bitmap for cmex83 char#110 \Big{ --- */
1.1       albertel 42838:       { 110, 2939,                      /* character number, location */
1.2       albertel 42839:           0, 1,  -19, 1,      /* topleft row,col, and botleft row,col */
                   42840:           {  5,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42841:             "\x90\x11\x42\x08\x21\x26\x18\x42\x08\x21\x84\x41" }  },
                   42842:       /* --- pixel bitmap for cmex83 char#111 \Big} --- */
1.1       albertel 42843:       { 111, 3366,                      /* character number, location */
1.2       albertel 42844:           0, 1,  -19, 1,      /* topleft row,col, and botleft row,col */
                   42845:           {  5,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42846:             "\xc1\x10\x42\x08\x21\x0c\x32\x42\x08\x21\xc4\x04" }  },
1.1       albertel 42847:       /* --- pixel bitmap for cmex83 char#112 (noname) --- */
                   42848:       { 112, 5250,                      /* character number, location */
1.2       albertel 42849:           1, 1,  -13, 1,      /* topleft row,col, and botleft row,col */
                   42850:           { 10,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42851:             "\x00\x02\x08\x10\x40\x80\x00\x02\x84\x10\x23\x88\x40"
1.1       albertel 42852:             "\x01\x05\x0c\x20\x00" }  },
                   42853:       /* --- pixel bitmap for cmex83 char#113 (noname) --- */
                   42854:       { 113, 5295,                      /* character number, location */
1.2       albertel 42855:           1, 1,  -20, 1,      /* topleft row,col, and botleft row,col */
                   42856:           { 10,   21, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42857:             "\x00\x02\x08\x10\x40\x00\x01\x02\x08\x20\x80\x00\x01"
1.1       albertel 42858:             "\x84\x10\x23\x88\x20\x02\x05\x14\x50\x40\x01\x02\x08"
                   42859:             "\x00" }  },
                   42860:       /* --- pixel bitmap for cmex83 char#114 (noname) --- */
                   42861:       { 114, 5360,                      /* character number, location */
1.2       albertel 42862:           1, 1,  -27, 1,      /* topleft row,col, and botleft row,col */
                   42863:           { 10,   28, 3,61, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42864:             "\xf2\x91\xf3\x81\x10\xf4\x71\x20\xf1\x61\x30\xf1\x11"
                   42865:             "\x41\x32\x31\x40\xf2\x11\x31\x40\x21\x21\x40\xf3\x21"
                   42866:             "\x11\x50\xf2\x31\x60" }  },
1.1       albertel 42867:       /* --- pixel bitmap for cmex83 char#115 (noname) --- */
                   42868:       { 115, 5445,                      /* character number, location */
1.2       albertel 42869:           1, 1,  -34, 1,      /* topleft row,col, and botleft row,col */
                   42870:           { 10,   35, 3,61, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42871:             "\xf2\x91\xf5\x81\x10\xf5\x71\x20\xf2\x61\x30\xf1\x11"
                   42872:             "\x41\x32\x31\x40\xf3\x11\x31\x40\x21\x21\x40\xf5\x21"
                   42873:             "\x11\x50\xf2\x31\x60" }  },
1.1       albertel 42874:       /* --- pixel bitmap for cmex83 char#116 (noname) --- */
                   42875:       { 116, 5550,                      /* character number, location */
1.2       albertel 42876:           1, 1,  -21, 1,      /* topleft row,col, and botleft row,col */
                   42877:           {  7,   22, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42878:             "\x40\x20\x10\x28\x34\x1a\x8b\x44\x24\x12\x09\x85\x42"
1.1       albertel 42879:             "\xa1\x60\x30\x18\x0c\x04\x02" }  },
                   42880:       /* --- pixel bitmap for cmex83 char#117 (noname) --- */
                   42881:       { 117, 5627,                      /* character number, location */
1.2       albertel 42882:           1, 7,   -8, 7,      /* topleft row,col, and botleft row,col */
                   42883:           {  1,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42884:             "\xff\x01" }  },
1.1       albertel 42885:       /* --- pixel bitmap for cmex83 char#118 (noname) --- */
                   42886:       { 118, 5652,                      /* character number, location */
1.2       albertel 42887:           1, 7,   -7, 7,      /* topleft row,col, and botleft row,col */
                   42888:           {  5,    8, 3, 7, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42889:             "\x05\x0f\x61\x41" }  },
1.1       albertel 42890:       /* --- pixel bitmap for cmex83 char#119 (noname) --- */
                   42891:       { 119, 5207,                      /* character number, location */
1.2       albertel 42892:           1, 2,   -8, 2,      /* topleft row,col, and botleft row,col */
                   42893:           {  4,    9, 3, 6, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42894:             "\xf8\x01\x21" }  },
1.1       albertel 42895:       /* --- pixel bitmap for cmex83 char#120 (noname) --- */
                   42896:       { 120, 4998,                      /* character number, location */
1.2       albertel 42897:           0, 1,   -7, 1,      /* topleft row,col, and botleft row,col */
                   42898:           {  5,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42899:             "\xc4\x55\x42\x08\x01" }  },
1.1       albertel 42900:       /* --- pixel bitmap for cmex83 char#121 (noname) --- */
                   42901:       { 121, 5042,                      /* character number, location */
1.2       albertel 42902:           0, 1,   -7, 1,      /* topleft row,col, and botleft row,col */
                   42903:           {  5,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42904:             "\x84\x10\x52\x1d\x01" }  },
1.1       albertel 42905:       /* --- pixel bitmap for cmex83 char#122 (noname) --- */
                   42906:       { 122, 3726,                      /* character number, location */
1.2       albertel 42907:           2,-1,   -2,-1,      /* topleft row,col, and botleft row,col */
                   42908:           {  7,    4, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42909:             "\x70\xbe\x21\x00" }  },
1.1       albertel 42910:       /* --- pixel bitmap for cmex83 char#123 (noname) --- */
                   42911:       { 123, 3741,                      /* character number, location */
1.2       albertel 42912:           2,-1,   -2,-1,      /* topleft row,col, and botleft row,col */
                   42913:           {  7,    4, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42914:             "\x87\x0f\x0c\x08" }  },
1.1       albertel 42915:       /* --- pixel bitmap for cmex83 char#124 (noname) --- */
                   42916:       { 124, 3756,                      /* character number, location */
1.2       albertel 42917:           4,-1,    0,-1,      /* topleft row,col, and botleft row,col */
                   42918:           {  7,    4, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42919:             "\x01\x03\x1f\x0e" }  },
1.1       albertel 42920:       /* --- pixel bitmap for cmex83 char#125 (noname) --- */
                   42921:       { 125, 3771,                      /* character number, location */
1.2       albertel 42922:           4,-1,    0,-1,      /* topleft row,col, and botleft row,col */
                   42923:           {  7,    4, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42924:             "\x40\xd8\xe7\x00" }  },
1.1       albertel 42925:       /* --- pixel bitmap for cmex83 char#126 (noname) --- */
                   42926:       { 126, 5111,                      /* character number, location */
1.2       albertel 42927:          -1, 0,   -7, 0,      /* topleft row,col, and botleft row,col */
                   42928:           {  8,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42929:             "\x18\x24\xe7\x24\x24\x24" }  },
1.1       albertel 42930:       /* --- pixel bitmap for cmex83 char#127 (noname) --- */
                   42931:       { 127, 5159,                      /* character number, location */
1.2       albertel 42932:           0, 0,   -6, 0,      /* topleft row,col, and botleft row,col */
                   42933:           {  8,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42934:             "\x24\x24\x24\xe7\x24\x18" }  },
1.1       albertel 42935:       /* --- trailer  --- */
1.2       albertel 42936:       { -99, -999,  0,0,0,0, { 0,0,0,0, (pixbyte *)"\0" }  }
1.1       albertel 42937:    } ;
                   42938: 
                   42939: 
1.2       albertel 42940: /* --- size=1 for .100gf ---
                   42941:  * mf '\mode=preview; mag=magstep(-17.87427405946994351363); input cmex10'
                   42942:  * --------------------------------------------------------------------- */
1.1       albertel 42943: /* --- fontdef for cmex100 --- */
                   42944: static	chardef  cmex100[] =
                   42945:    {
1.2       albertel 42946:       /* --- pixel bitmap for cmex100 char#0 \big( --- */
                   42947:       {   0,  635,                      /* character number, location */
                   42948:           1, 2,  -15, 2,      /* topleft row,col, and botleft row,col */
                   42949:           {  4,   16, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42950:             "\x48\x22\x11\x11\x11\x11\x22\x84" }  },
                   42951:       /* --- pixel bitmap for cmex100 char#1 \big) --- */
                   42952:       {   1, 6116,                      /* character number, location */
                   42953:           1, 0,  -15, 0,      /* topleft row,col, and botleft row,col */
                   42954:           {  4,   16, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42955:             "\x21\x44\x88\x88\x88\x88\x44\x12" }  },
                   42956:       /* --- pixel bitmap for cmex100 char#2 \big[ --- */
                   42957:       {   2,11565,                      /* character number, location */
                   42958:           1, 3,  -15, 3,      /* topleft row,col, and botleft row,col */
                   42959:           {  3,   16, 3, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42960:             "\x03\x0f\xd1\x23" }  },
                   42961:       /* --- pixel bitmap for cmex100 char#3 \big] --- */
                   42962:       {   3,17191,                      /* character number, location */
                   42963:           1, 0,  -15, 0,      /* topleft row,col, and botleft row,col */
                   42964:           {  3,   16, 3, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42965:             "\x03\xfd\x21\x03" }  },
1.1       albertel 42966:       /* --- pixel bitmap for cmex100 char#4 (noname) --- */
1.2       albertel 42967:       {   4,22654,                      /* character number, location */
                   42968:           1, 3,  -15, 3,      /* topleft row,col, and botleft row,col */
                   42969:           {  4,   16, 3, 6, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42970:             "\xfe\x01\x34" }  },
1.1       albertel 42971:       /* --- pixel bitmap for cmex100 char#5 (noname) --- */
1.2       albertel 42972:       {   5,26001,                      /* character number, location */
                   42973:           1, 0,  -15, 0,      /* topleft row,col, and botleft row,col */
                   42974:           {  4,   16, 3, 6, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42975:             "\xfe\x31\x04" }  },
1.1       albertel 42976:       /* --- pixel bitmap for cmex100 char#6 (noname) --- */
1.2       albertel 42977:       {   6,29324,                      /* character number, location */
                   42978:           1, 3,  -15, 3,      /* topleft row,col, and botleft row,col */
                   42979:           {  4,   16, 3, 7, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42980:             "\x04\x0f\xe1\x31" }  },
1.1       albertel 42981:       /* --- pixel bitmap for cmex100 char#7 (noname) --- */
1.2       albertel 42982:       {   7,32679,                      /* character number, location */
                   42983:           1, 0,  -15, 0,      /* topleft row,col, and botleft row,col */
                   42984:           {  4,   16, 3, 6, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42985:             "\x04\xfe\x31" }  },
                   42986:       /* --- pixel bitmap for cmex100 char#8 \big{ --- */
                   42987:       {   8,36129,                      /* character number, location */
                   42988:           1, 2,  -15, 2,      /* topleft row,col, and botleft row,col */
                   42989:           {  4,   16, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42990:             "\x48\x44\x44\x24\x42\x44\x44\x84" }  },
                   42991:       /* --- pixel bitmap for cmex100 char#9 \big} --- */
                   42992:       {   9,43640,                      /* character number, location */
                   42993:           1, 2,  -15, 2,      /* topleft row,col, and botleft row,col */
                   42994:           {  4,   16, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   42995:             "\x43\x44\x44\xc4\x44\x44\x44\x34" }  },
                   42996:       /* --- pixel bitmap for cmex100 char#10 \big< --- */
                   42997:       {  10,52198,                      /* character number, location */
                   42998:           1, 2,  -16, 2,      /* topleft row,col, and botleft row,col */
                   42999:           {  4,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43000:             "\x88\x44\x22\x12\x11\x22\x42\x84\x08" }  },
                   43001:       /* --- pixel bitmap for cmex100 char#11 \big> --- */
                   43002:       {  11,54875,                      /* character number, location */
                   43003:           1, 1,  -16, 1,      /* topleft row,col, and botleft row,col */
                   43004:           {  4,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43005:             "\x11\x22\x44\x84\x88\x44\x24\x12\x01" }  },
1.1       albertel 43006:       /* --- pixel bitmap for cmex100 char#12 (noname) --- */
1.2       albertel 43007:       {  12,63349,                      /* character number, location */
                   43008:           1, 2,   -9, 2,      /* topleft row,col, and botleft row,col */
                   43009:           {  1,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43010:             "\xff\x03" }  },
1.1       albertel 43011:       /* --- pixel bitmap for cmex100 char#13 (noname) --- */
1.2       albertel 43012:       {  13,63936,                      /* character number, location */
                   43013:           1, 2,   -9, 2,      /* topleft row,col, and botleft row,col */
                   43014:           {  4,   10, 3, 6, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43015:             "\xf9\x01\x21" }  },
1.1       albertel 43016:       /* --- pixel bitmap for cmex100 char#14 (noname) --- */
1.2       albertel 43017:       {  14,57538,                      /* character number, location */
                   43018:           1, 1,  -15, 1,      /* topleft row,col, and botleft row,col */
                   43019:           {  6,   16, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43020:             "\x20\x08\x41\x10\x82\x20\x04\x41\x08\x82\x10\x04" }  },
1.1       albertel 43021:       /* --- pixel bitmap for cmex100 char#15 (noname) --- */
1.2       albertel 43022:       {  15,60488,                      /* character number, location */
                   43023:           1, 1,  -15, 1,      /* topleft row,col, and botleft row,col */
                   43024:           {  6,   16, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43025:             "\x41\x20\x08\x02\x41\x10\x08\x82\x40\x10\x04\x82" }  },
                   43026:       /* --- pixel bitmap for cmex100 char#16 \Big( --- */
                   43027:       {  16, 1352,                      /* character number, location */
                   43028:           1, 3,  -23, 3,      /* topleft row,col, and botleft row,col */
                   43029:           {  5,   24, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43030:             "\x10\x11\x22\x84\x08\x21\x84\x10\x42\x08\x41\x08\x41"
                   43031:             "\x08\x82" }  },
                   43032:       /* --- pixel bitmap for cmex100 char#17 \Big) --- */
                   43033:       {  17, 6820,                      /* character number, location */
                   43034:           1, 0,  -23, 0,      /* topleft row,col, and botleft row,col */
                   43035:           {  5,   24, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43036:             "\x41\x10\x82\x10\x82\x10\x42\x08\x21\x84\x10\x21\x44"
                   43037:             "\x88\x08" }  },
                   43038:       /* --- pixel bitmap for cmex100 char#18 \bigg( --- */
                   43039:       {  18, 2138,                      /* character number, location */
                   43040:           1, 3,  -32, 3,      /* topleft row,col, and botleft row,col */
                   43041:           {  7,   33, 3,54, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43042:             "\x61\x51\x51\x20\xf1\x31\x30\xf1\x21\x40\xf3\x11\x5f"
                   43043:             "\xa1\x60\xf3\x11\x50\xf1\x21\x40\xf1\x31\x30\x41\x71"
                   43044:             "\x71" }  },
                   43045:       /* --- pixel bitmap for cmex100 char#19 \bigg) --- */
                   43046:       {  19, 7593,                      /* character number, location */
                   43047:           1, 0,  -32, 0,      /* topleft row,col, and botleft row,col */
                   43048:           {  7,   33, 3,55, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43049:             "\x01\x71\x71\x40\xf1\x31\x30\xf1\x41\x20\xf3\x51\x10"
                   43050:             "\xfa\x61\xf3\x51\x10\xf1\x41\x20\xf1\x31\x30\x21\x51"
                   43051:             "\x51\x61" }  },
                   43052:       /* --- pixel bitmap for cmex100 char#20 \bigg[ --- */
                   43053:       {  20,13186,                      /* character number, location */
                   43054:           1, 3,  -32, 3,      /* topleft row,col, and botleft row,col */
                   43055:           {  4,   33, 3,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43056:             "\x04\x0f\xe1\x3f\xe1\x31\x34" }  },
                   43057:       /* --- pixel bitmap for cmex100 char#21 \bigg] --- */
                   43058:       {  21,18760,                      /* character number, location */
                   43059:           1, 0,  -32, 0,      /* topleft row,col, and botleft row,col */
                   43060:           {  4,   33, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43061:             "\x04\xfe\x31\xfe\x31\x35" }  },
1.1       albertel 43062:       /* --- pixel bitmap for cmex100 char#22 (noname) --- */
1.2       albertel 43063:       {  22,24313,                      /* character number, location */
                   43064:           1, 3,  -32, 3,      /* topleft row,col, and botleft row,col */
                   43065:           {  5,   33, 2, 6, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43066:             "\xff\x1f\x00\x01\x04\x05" }  },
1.1       albertel 43067:       /* --- pixel bitmap for cmex100 char#23 (noname) --- */
1.2       albertel 43068:       {  23,27634,                      /* character number, location */
                   43069:           1, 0,  -32, 0,      /* topleft row,col, and botleft row,col */
                   43070:           {  5,   33, 2, 6, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43071:             "\xff\x1f\x04\x01\x00\x05" }  },
1.1       albertel 43072:       /* --- pixel bitmap for cmex100 char#24 (noname) --- */
1.2       albertel 43073:       {  24,30987,                      /* character number, location */
                   43074:           1, 3,  -32, 3,      /* topleft row,col, and botleft row,col */
                   43075:           {  5,   33, 2, 7, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43076:             "\x00\x05\x00\xff\x1f\x01\x04" }  },
1.1       albertel 43077:       /* --- pixel bitmap for cmex100 char#25 (noname) --- */
1.2       albertel 43078:       {  25,34316,                      /* character number, location */
                   43079:           1, 0,  -32, 0,      /* topleft row,col, and botleft row,col */
                   43080:           {  5,   33, 2, 6, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43081:             "\x00\x05\xff\x1f\x04\x01" }  },
                   43082:       /* --- pixel bitmap for cmex100 char#26 \bigg{ --- */
                   43083:       {  26,38060,                      /* character number, location */
                   43084:           1, 2,  -32, 2,      /* topleft row,col, and botleft row,col */
                   43085:           {  6,   33, 3,34, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43086:             "\x51\x32\x41\x20\xfb\x21\x30\x11\x41\x61\x40\xfb\x21"
                   43087:             "\x30\x31\x52\x61" }  },
                   43088:       /* --- pixel bitmap for cmex100 char#27 \bigg} --- */
                   43089:       {  27,45573,                      /* character number, location */
                   43090:           1, 2,  -32, 2,      /* topleft row,col, and botleft row,col */
                   43091:           {  6,   33, 3,35, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43092:             "\x01\x61\x40\xfb\x21\x30\x31\x52\x61\x32\x41\x20\xfb"
                   43093:             "\x21\x30\x11\x41\x51" }  },
                   43094:       /* --- pixel bitmap for cmex100 char#28 \bigg< --- */
                   43095:       {  28,53517,                      /* character number, location */
                   43096:           1, 2,  -32, 2,      /* topleft row,col, and botleft row,col */
                   43097:           {  7,   33, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43098:             "\x40\x20\x08\x04\x82\x40\x10\x08\x04\x81\x20\x10\x08"
                   43099:             "\x02\x81\x80\x40\x20\x20\x10\x10\x08\x04\x04\x02\x02"
                   43100:             "\x81\x80\x40" }  },
                   43101:       /* --- pixel bitmap for cmex100 char#29 \bigg> --- */
                   43102:       {  29,56196,                      /* character number, location */
                   43103:           1, 1,  -32, 1,      /* topleft row,col, and botleft row,col */
                   43104:           {  7,   33, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43105:             "\x81\x80\x40\x20\x20\x10\x10\x08\x04\x04\x02\x02\x81"
                   43106:             "\x80\x40\x20\x08\x04\x82\x40\x10\x08\x04\x81\x20\x10"
                   43107:             "\x08\x02\x01" }  },
1.1       albertel 43108:       /* --- pixel bitmap for cmex100 char#30 (noname) --- */
1.2       albertel 43109:       {  30,58977,                      /* character number, location */
                   43110:           1, 1,  -32, 1,      /* topleft row,col, and botleft row,col */
                   43111:           { 12,   33, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43112:             "\x00\x08\xc0\x00\x04\x40\x00\x06\x20\x00\x02\x30\x00"
                   43113:             "\x01\x10\x80\x01\x08\x80\x00\x0c\x40\x00\x04\x60\x00"
                   43114:             "\x02\x20\x00\x03\x10\x00\x01\x18\x80\x00\x08\xc0\x00"
                   43115:             "\x04\x40\x00\x06\x20\x00\x02\x30\x00\x01\x00" }  },
1.1       albertel 43116:       /* --- pixel bitmap for cmex100 char#31 (noname) --- */
1.2       albertel 43117:       {  31,61935,                      /* character number, location */
                   43118:           1, 1,  -32, 1,      /* topleft row,col, and botleft row,col */
                   43119:           { 12,   33, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43120:             "\x01\x30\x00\x02\x20\x00\x06\x40\x00\x04\xc0\x00\x08"
                   43121:             "\x80\x00\x18\x00\x01\x10\x00\x03\x20\x00\x02\x60\x00"
                   43122:             "\x04\x40\x00\x0c\x80\x00\x08\x80\x01\x10\x00\x01\x30"
                   43123:             "\x00\x02\x20\x00\x06\x40\x00\x04\xc0\x00\x08" }  },
                   43124:       /* --- pixel bitmap for cmex100 char#32 \Bigg( --- */
                   43125:       {  32, 2968,                      /* character number, location */
                   43126:           1, 3,  -40, 3,      /* topleft row,col, and botleft row,col */
                   43127:           {  8,   41, 3,66, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43128:             "\x71\x61\x61\x20\xf1\x41\x30\xf1\x31\x40\xf2\x21\x50"
                   43129:             "\xf3\x11\x6f\xc1\x70\xf3\x11\x60\xf2\x21\x50\xf1\x31"
                   43130:             "\x40\xf1\x41\x30\x51\x81\x81" }  },
                   43131:       /* --- pixel bitmap for cmex100 char#33 \Bigg) --- */
                   43132:       {  33, 8384,                      /* character number, location */
                   43133:           1, 0,  -40, 0,      /* topleft row,col, and botleft row,col */
                   43134:           {  8,   41, 3,67, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43135:             "\x01\x81\x81\x50\xf1\x31\x40\xf1\x41\x30\xf2\x51\x20"
                   43136:             "\xf3\x61\x10\xfc\x71\xf3\x61\x10\xf2\x51\x20\xf1\x41"
                   43137:             "\x30\xf1\x31\x40\x21\x61\x61\x70" }  },
                   43138:       /* --- pixel bitmap for cmex100 char#34 \Bigg[ --- */
                   43139:       {  34,14049,                      /* character number, location */
                   43140:           1, 4,  -40, 4,      /* topleft row,col, and botleft row,col */
                   43141:           {  4,   41, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43142:             "\x04\x0f\xe1\x3f\xe1\x3f\x81\x34" }  },
                   43143:       /* --- pixel bitmap for cmex100 char#35 \Bigg] --- */
                   43144:       {  35,19584,                      /* character number, location */
                   43145:           1, 0,  -40, 0,      /* topleft row,col, and botleft row,col */
                   43146:           {  4,   41, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43147:             "\x04\xfe\x31\xfe\x31\xf8\x31\x04" }  },
1.1       albertel 43148:       /* --- pixel bitmap for cmex100 char#36 (noname) --- */
1.2       albertel 43149:       {  36,25208,                      /* character number, location */
                   43150:           1, 4,  -40, 4,      /* topleft row,col, and botleft row,col */
                   43151:           {  5,   41, 2, 6, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43152:             "\xff\x27\x00\x01\x04\x05" }  },
1.1       albertel 43153:       /* --- pixel bitmap for cmex100 char#37 (noname) --- */
1.2       albertel 43154:       {  37,28490,                      /* character number, location */
                   43155:           1, 0,  -40, 0,      /* topleft row,col, and botleft row,col */
                   43156:           {  5,   41, 2, 6, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43157:             "\xff\x27\x04\x01\x00\x05" }  },
1.1       albertel 43158:       /* --- pixel bitmap for cmex100 char#38 (noname) --- */
1.2       albertel 43159:       {  38,31884,                      /* character number, location */
                   43160:           1, 4,  -40, 4,      /* topleft row,col, and botleft row,col */
                   43161:           {  5,   41, 2, 7, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43162:             "\x00\x05\x00\xff\x27\x01\x04" }  },
1.1       albertel 43163:       /* --- pixel bitmap for cmex100 char#39 (noname) --- */
1.2       albertel 43164:       {  39,35174,                      /* character number, location */
                   43165:           1, 0,  -40, 0,      /* topleft row,col, and botleft row,col */
                   43166:           {  5,   41, 2, 6, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43167:             "\x00\x05\xff\x27\x04\x01" }  },
                   43168:       /* --- pixel bitmap for cmex100 char#40 \Bigg{ --- */
                   43169:       {  40,39078,                      /* character number, location */
                   43170:           1, 2,  -40, 2,      /* topleft row,col, and botleft row,col */
                   43171:           {  7,   41, 3,38, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43172:             "\x61\x51\x51\x20\xfe\x31\x30\x21\x51\x51\x71\x71\x40"
                   43173:             "\xfe\x31\x30\x41\x71\x71" }  },
                   43174:       /* --- pixel bitmap for cmex100 char#41 \Bigg} --- */
                   43175:       {  41,46592,                      /* character number, location */
                   43176:           1, 2,  -40, 2,      /* topleft row,col, and botleft row,col */
                   43177:           {  7,   41, 3,39, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43178:             "\x01\x71\x71\x40\xfe\x31\x30\x41\x71\x71\x51\x51\x20"
                   43179:             "\xfe\x31\x30\x21\x51\x51\x61" }  },
                   43180:       /* --- pixel bitmap for cmex100 char#42 \Bigg< --- */
                   43181:       {  42,54253,                      /* character number, location */
                   43182:           1, 2,  -40, 2,      /* topleft row,col, and botleft row,col */
                   43183:           {  8,   41, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43184:             "\x80\x80\x40\x40\x40\x20\x20\x20\x10\x10\x08\x08\x08"
                   43185:             "\x04\x04\x04\x02\x02\x02\x01\x01\x01\x02\x02\x02\x04"
                   43186:             "\x04\x04\x08\x08\x08\x10\x10\x20\x20\x20\x40\x40\x40"
                   43187:             "\x80\x80" }  },
                   43188:       /* --- pixel bitmap for cmex100 char#43 \Bigg> --- */
                   43189:       {  43,56933,                      /* character number, location */
                   43190:           1, 1,  -40, 1,      /* topleft row,col, and botleft row,col */
                   43191:           {  8,   41, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43192:             "\x01\x01\x02\x02\x02\x04\x04\x04\x08\x08\x10\x10\x10"
                   43193:             "\x20\x20\x20\x40\x40\x40\x80\x80\x80\x40\x40\x40\x20"
                   43194:             "\x20\x20\x10\x10\x10\x08\x08\x04\x04\x04\x02\x02\x02"
                   43195:             "\x01\x01" }  },
                   43196:       /* --- pixel bitmap for cmex100 char#44 / --- */
                   43197:       {  44,59879,                      /* character number, location */
                   43198:           1, 1,  -40, 1,      /* topleft row,col, and botleft row,col */
                   43199:           { 16,   41, 3,123, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   43200:             "\xe0\x11\xe2\xf1\xe1\x10\xd2\x10\xf1\xd1\x20\xc2\xe1"
                   43201:             "\xe2\x30\xf1\xb1\x40\xa2\x40\xf1\xa1\x50\x92\xe1\xe2"
                   43202:             "\x60\xf1\x81\x70\x72\x70\xf1\x71\x80\x62\xe1\xe2\x90"
                   43203:             "\xf1\x51\xa0\x42\xa0\xf1\x41\xb0\x32\xe1\xe2\xc0\xf1"
                   43204:             "\x21\xd0\x12\xd0\xf1\x11\xe2\xe1\xe0\x10" }  },
                   43205:       /* --- pixel bitmap for cmex100 char#45 \ --- */
                   43206:       {  45,62841,                      /* character number, location */
                   43207:           1, 1,  -40, 1,      /* topleft row,col, and botleft row,col */
                   43208:           { 16,   41, 3,142, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   43209:             "\x01\xe0\x12\xe0\xf1\x11\xe0\x12\xd0\xf1\x21\xd0\x22"
                   43210:             "\xe0\x11\xe0\x12\xb0\xf1\x41\xb0\x42\xa0\xf1\x51\xa0"
                   43211:             "\x52\xe0\x11\xe0\x12\x80\xf1\x71\x80\x72\x70\xf1\x81"
                   43212:             "\x70\x82\xe0\x11\xe0\x12\x50\xf1\xa1\x50\xa2\x40\xf1"
                   43213:             "\xb1\x40\xb2\xe0\x11\xe0\x12\x20\xf1\xd1\x20\xd2\x10"
                   43214:             "\xf1\xe1\x10\xe2\xe0\x11" }  },
                   43215:       /* --- pixel bitmap for cmex100 char#46 / --- */
                   43216:       {  46,58197,                      /* character number, location */
                   43217:           1, 1,  -23, 1,      /* topleft row,col, and botleft row,col */
                   43218:           {  9,   24, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43219:             "\x00\x01\x03\x02\x04\x0c\x08\x10\x30\x20\x40\xc0\x80"
                   43220:             "\x00\x01\x03\x02\x04\x0c\x08\x10\x30\x20\x40\xc0\x80"
                   43221:             "\x00" }  },
                   43222:       /* --- pixel bitmap for cmex100 char#47 \ --- */
                   43223:       {  47,61151,                      /* character number, location */
                   43224:           1, 1,  -23, 1,      /* topleft row,col, and botleft row,col */
                   43225:           {  9,   24, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43226:             "\x01\x06\x08\x10\x60\x80\x00\x01\x06\x08\x10\x60\x80"
                   43227:             "\x00\x01\x06\x08\x10\x60\x80\x00\x01\x06\x08\x10\x60"
                   43228:             "\x80" }  },
                   43229:       /* --- pixel bitmap for cmex100 char#48 \leftparentop --- */
                   43230:       {  48, 3830,                      /* character number, location */
                   43231:           0, 4,  -25, 4,      /* topleft row,col, and botleft row,col */
                   43232:           {  8,   25, 3,41, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43233:             "\x71\x61\x62\x61\x62\x61\x62\x61\x40\xf1\x22\x40\x21"
                   43234:             "\x50\xf3\x12\x50\x11\x6f\x82\x60" }  },
                   43235:       /* --- pixel bitmap for cmex100 char#49 \rightparentop --- */
                   43236:       {  49, 9207,                      /* character number, location */
                   43237:           0, 0,  -25, 0,      /* topleft row,col, and botleft row,col */
                   43238:           {  8,   25, 3,42, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43239:             "\x01\x81\x72\x71\x72\x71\x72\x71\x30\xf1\x42\x20\x51"
                   43240:             "\x20\xf3\x52\x10\x61\x10\xf8\x62" }  },
1.1       albertel 43241:       /* --- pixel bitmap for cmex100 char#50 (noname) --- */
1.2       albertel 43242:       {  50,14897,                      /* character number, location */
                   43243:           0, 4,  -24, 4,      /* topleft row,col, and botleft row,col */
                   43244:           {  5,   24, 3,11, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43245:             "\x05\x0f\xe1\x4f\x71\x4f" }  },
1.1       albertel 43246:       /* --- pixel bitmap for cmex100 char#51 (noname) --- */
1.2       albertel 43247:       {  51,20393,                      /* character number, location */
                   43248:           0, 0,  -24, 0,      /* topleft row,col, and botleft row,col */
                   43249:           {  5,   24, 3,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43250:             "\x05\xfe\x41\xf7\x41" }  },
1.1       albertel 43251:       /* --- pixel bitmap for cmex100 char#52 (noname) --- */
1.2       albertel 43252:       {  52,15733,                      /* character number, location */
                   43253:           1, 4,  -23, 4,      /* topleft row,col, and botleft row,col */
                   43254:           {  5,   24, 3,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43255:             "\xfe\x01\x4f\x71\x45" }  },
1.1       albertel 43256:       /* --- pixel bitmap for cmex100 char#53 (noname) --- */
1.2       albertel 43257:       {  53,21190,                      /* character number, location */
                   43258:           1, 0,  -23, 0,      /* topleft row,col, and botleft row,col */
                   43259:           {  5,   24, 3,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43260:             "\xfe\x41\xf7\x41\x05" }  },
1.1       albertel 43261:       /* --- pixel bitmap for cmex100 char#54 (noname) --- */
1.2       albertel 43262:       {  54,16466,                      /* character number, location */
                   43263:           1, 4,   -9, 4,      /* topleft row,col, and botleft row,col */
                   43264:           {  1,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43265:             "\xff\x03" }  },
1.1       albertel 43266:       /* --- pixel bitmap for cmex100 char#55 (noname) --- */
1.2       albertel 43267:       {  55,21884,                      /* character number, location */
                   43268:           1, 4,   -9, 4,      /* topleft row,col, and botleft row,col */
                   43269:           {  1,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43270:             "\xff\x03" }  },
                   43271:       /* --- pixel bitmap for cmex100 char#56 \leftbracetop --- */
                   43272:       {  56,40013,                      /* character number, location */
                   43273:          -1, 5,  -13, 5,      /* topleft row,col, and botleft row,col */
                   43274:           {  4,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43275:             "\x48\x36\x33\x33\x33\x33" }  },
                   43276:       /* --- pixel bitmap for cmex100 char#57 \rightbracetop --- */
                   43277:       {  57,47528,                      /* character number, location */
                   43278:          -1, 3,  -13, 3,      /* topleft row,col, and botleft row,col */
                   43279:           {  4,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43280:             "\x21\xc6\xcc\xcc\xcc\xcc" }  },
                   43281:       /* --- pixel bitmap for cmex100 char#58 \leftbracebot --- */
                   43282:       {  58,40912,                      /* character number, location */
                   43283:           1, 5,  -11, 5,      /* topleft row,col, and botleft row,col */
                   43284:           {  4,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43285:             "\x33\x33\x33\x33\x63\x84" }  },
                   43286:       /* --- pixel bitmap for cmex100 char#59 \rightbracebot --- */
                   43287:       {  59,48428,                      /* character number, location */
                   43288:           1, 3,  -11, 3,      /* topleft row,col, and botleft row,col */
                   43289:           {  4,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43290:             "\xcc\xcc\xcc\xcc\x6c\x12" }  },
                   43291:       /* --- pixel bitmap for cmex100 char#60 \leftbracemid --- */
                   43292:       {  60,41886,                      /* character number, location */
                   43293:           1, 3,  -26, 3,      /* topleft row,col, and botleft row,col */
                   43294:           {  4,   27, 3,24, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43295:             "\xf9\x22\x21\x22\x21\x21\x41\x32\x31\x10\xf9\x22" }  },
                   43296:       /* --- pixel bitmap for cmex100 char#61 \rightbracemid --- */
                   43297:       {  61,49403,                      /* character number, location */
                   43298:           1, 5,  -26, 5,      /* topleft row,col, and botleft row,col */
                   43299:           {  4,   27, 3,25, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43300:             "\xf9\x02\x20\x11\x32\x31\x41\x21\x22\x21\x2f\x92\x20" }  },
                   43301:       /* --- pixel bitmap for cmex100 char#62 \leftbracebar --- */
                   43302:       {  62,42754,                      /* character number, location */
                   43303:           1, 5,   -5, 5,      /* topleft row,col, and botleft row,col */
                   43304:           {  2,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43305:             "\xff\x0f" }  },
1.1       albertel 43306:       /* --- pixel bitmap for cmex100 char#63 (noname) --- */
1.2       albertel 43307:       {  63,66405,                      /* character number, location */
                   43308:           1, 4,   -9, 4,      /* topleft row,col, and botleft row,col */
                   43309:           {  1,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43310:             "\xff\x03" }  },
                   43311:       /* --- pixel bitmap for cmex100 char#64 \leftparenbot --- */
                   43312:       {  64, 4682,                      /* character number, location */
                   43313:           2, 4,  -23, 4,      /* topleft row,col, and botleft row,col */
                   43314:           {  8,   25, 3,42, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43315:             "\xf8\x02\x60\x11\x60\xf3\x12\x50\x21\x50\xf1\x22\x40"
                   43316:             "\x31\x72\x71\x72\x71\x72\x71\x81" }  },
                   43317:       /* --- pixel bitmap for cmex100 char#65 \rightparenbot --- */
                   43318:       {  65,10020,                      /* character number, location */
                   43319:           2, 0,  -23, 0,      /* topleft row,col, and botleft row,col */
                   43320:           {  8,   25, 3,41, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43321:             "\xf8\x62\x61\x10\xf3\x52\x10\x51\x20\xf1\x42\x20\x41"
                   43322:             "\x62\x61\x62\x61\x62\x61\x61\x72" }  },
                   43323:       /* --- pixel bitmap for cmex100 char#66 \leftparenbar --- */
                   43324:       {  66, 5528,                      /* character number, location */
                   43325:           1, 4,   -9, 4,      /* topleft row,col, and botleft row,col */
                   43326:           {  2,   10, 3, 4, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43327:             "\xf9\x02" }  },
                   43328:       /* --- pixel bitmap for cmex100 char#67 \rightparenbar --- */
                   43329:       {  67,10827,                      /* character number, location */
                   43330:           1, 6,   -9, 6,      /* topleft row,col, and botleft row,col */
                   43331:           {  2,   10, 3, 4, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43332:             "\xf9\x02" }  },
                   43333:       /* --- pixel bitmap for cmex100 char#68 \Big< --- */
                   43334:       {  68,52823,                      /* character number, location */
                   43335:           1, 2,  -24, 2,      /* topleft row,col, and botleft row,col */
                   43336:           {  5,   25, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43337:             "\x10\x22\x84\x08\x21\x42\x88\x10\x82\x10\x82\x10\x82"
                   43338:             "\x10\x82\x10" }  },
                   43339:       /* --- pixel bitmap for cmex100 char#69 \Big> --- */
                   43340:       {  69,55501,                      /* character number, location */
                   43341:           1, 1,  -24, 1,      /* topleft row,col, and botleft row,col */
                   43342:           {  5,   25, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43343:             "\x21\x08\x21\x08\x21\x08\x21\x08\x21\x42\x88\x10\x22"
                   43344:             "\x84\x08\x01" }  },
1.1       albertel 43345:       /* --- pixel bitmap for cmex100 char#70 \bigsqcup --- */
1.2       albertel 43346:       {  70,76500,                      /* character number, location */
                   43347:           0, 1,  -14, 1,      /* topleft row,col, and botleft row,col */
                   43348:           { 10,   14, 3, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43349:             "\xfc\x01\x81\x0a" }  },
1.1       albertel 43350:       /* --- pixel bitmap for cmex100 char#71 \Bigsqcup --- */
1.2       albertel 43351:       {  71,77385,                      /* character number, location */
                   43352:           0, 1,  -19, 1,      /* topleft row,col, and botleft row,col */
                   43353:           { 13,   19, 3,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43354:             "\xfe\x01\xb1\x0f\x21\xb1\x0d" }  },
                   43355:       /* --- pixel bitmap for cmex100 char#72 \oint --- */
                   43356:       {  72,95543,                      /* character number, location */
                   43357:           0, 1,  -15, 1,      /* topleft row,col, and botleft row,col */
                   43358:           {  8,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43359:             "\x40\xa0\x20\x10\x78\x94\x94\x94\x94\x78\x10\x10\x08"
                   43360:             "\x09\x06" }  },
1.1       albertel 43361:       /* --- pixel bitmap for cmex100 char#73 \Bigoint --- */
1.2       albertel 43362:       {  73,96579,                      /* character number, location */
                   43363:           0, 1,  -31, 1,      /* topleft row,col, and botleft row,col */
                   43364:           { 12,   31, 3,79, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43365:             "\xa1\xa1\x11\xc0\xf2\x81\x30\xf2\x71\x40\xf1\x62\x40"
                   43366:             "\x44\x71\x23\x30\xf3\x21\x22\x21\x20\x31\x12\x11\x74"
                   43367:             "\x40\xf2\x42\x60\xf2\x41\x70\xf2\x31\x80\xc1\x11\xa1"
                   43368:             "\xa1" }  },
1.1       albertel 43369:       /* --- pixel bitmap for cmex100 char#74 \bigodot --- */
1.2       albertel 43370:       {  74,78345,                      /* character number, location */
                   43371:           0, 1,  -14, 1,      /* topleft row,col, and botleft row,col */
                   43372:           { 13,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43373:             "\xf0\x01\x41\x10\x10\x01\x14\x00\x03\x60\x10\x0c\x82"
                   43374:             "\x01\x30\x00\x0a\x20\x02\x82\x20\xe0\x03" }  },
1.1       albertel 43375:       /* --- pixel bitmap for cmex100 char#75 \Bigodot --- */
1.2       albertel 43376:       {  75,79472,                      /* character number, location */
                   43377:           0, 1,  -19, 1,      /* topleft row,col, and botleft row,col */
                   43378:           { 19,   19, 3,79, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43379:             "\x75\xc2\x52\x82\x92\x30\xf1\x21\xd1\x20\xf1\x11\xe0"
                   43380:             "\x11\x11\xe0\x32\x81\x82\x73\x72\x81\x82\xe0\x31\xf1"
                   43381:             "\x11\xe0\x11\x10\xf1\x21\xd1\x20\x32\x92\x82\x52\xc5"
                   43382:             "\x72" }  },
1.1       albertel 43383:       /* --- pixel bitmap for cmex100 char#76 \bigoplus --- */
1.2       albertel 43384:       {  76,80437,                      /* character number, location */
                   43385:           0, 1,  -14, 1,      /* topleft row,col, and botleft row,col */
                   43386:           { 13,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43387:             "\xf0\x01\x49\x10\x11\x21\x14\x04\x83\xe0\xff\x0f\x82"
                   43388:             "\x41\x30\x08\x0a\x21\x22\x82\x24\xe0\x03" }  },
1.1       albertel 43389:       /* --- pixel bitmap for cmex100 char#77 \Bigoplus --- */
1.2       albertel 43390:       {  77,81581,                      /* character number, location */
                   43391:           0, 1,  -19, 1,      /* topleft row,col, and botleft row,col */
                   43392:           { 19,   19, 3,89, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43393:             "\x75\xc2\x21\x22\x82\x41\x42\x30\xf1\x21\x61\x61\x20"
                   43394:             "\xf1\x11\x71\x71\x1f\x11\x81\x81\x0e\x05\x0f\x11\x81"
                   43395:             "\x81\xf1\x11\x71\x71\x10\xf1\x21\x61\x61\x20\x32\x41"
                   43396:             "\x42\x82\x21\x22\xc5\x72" }  },
1.1       albertel 43397:       /* --- pixel bitmap for cmex100 char#78 \bigotimes --- */
1.2       albertel 43398:       {  78,82571,                      /* character number, location */
                   43399:           0, 1,  -14, 1,      /* topleft row,col, and botleft row,col */
                   43400:           { 13,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43401:             "\xf0\x01\x41\x10\x10\x05\x15\x11\x43\x61\x10\x0c\x82"
                   43402:             "\xa1\x30\x22\x2a\x28\x02\x82\x20\xe0\x03" }  },
1.1       albertel 43403:       /* --- pixel bitmap for cmex100 char#79 \Bigotimes --- */
1.2       albertel 43404:       {  79,83724,                      /* character number, location */
                   43405:           0, 1,  -19, 1,      /* topleft row,col, and botleft row,col */
                   43406:           { 19,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43407:             "\x80\x0f\x00\x83\x01\x06\x30\x18\x00\x43\x01\x14\x11"
                   43408:             "\x10\x09\x41\x28\x10\x81\x01\x05\x0c\x10\x60\x40\x01"
                   43409:             "\x03\x11\x28\x04\x21\x11\x10\x51\x00\x85\x01\x30\x18"
                   43410:             "\xc0\x00\x83\x01\xe0\x03\x00" }  },
                   43411:       /* --- pixel bitmap for cmex100 char#80 \sum --- */
                   43412:       {  80,85060,                      /* character number, location */
                   43413:           0, 1,  -14, 1,      /* topleft row,col, and botleft row,col */
                   43414:           { 13,   14, 3,41, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43415:             "\x0c\x12\x82\x22\x82\x21\x91\x31\xd1\xc2\xc1\xb1\xb1"
                   43416:             "\xb2\x81\x21\x82\x11\x82\x1c\x11" }  },
                   43417:       /* --- pixel bitmap for cmex100 char#81 \prod --- */
                   43418:       {  81,87926,                      /* character number, location */
                   43419:           0, 1,  -14, 1,      /* topleft row,col, and botleft row,col */
                   43420:           { 11,   14, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43421:             "\x0b\xfb\x11\x71\x13\x53" }  },
                   43422:       /* --- pixel bitmap for cmex100 char#82 \int --- */
                   43423:       {  82,93534,                      /* character number, location */
                   43424:           0, 1,  -15, 1,      /* topleft row,col, and botleft row,col */
                   43425:           {  8,   15, 3,25, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43426:             "\x61\x61\x11\x51\x20\xf8\x41\x30\x31\x41\x21\x52\x53" }  },
1.1       albertel 43427:       /* --- pixel bitmap for cmex100 char#83 \bigcup --- */
1.2       albertel 43428:       {  83,97373,                      /* character number, location */
                   43429:           0, 1,  -14, 1,      /* topleft row,col, and botleft row,col */
                   43430:           { 10,   14, 3,17, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43431:             "\xfa\x01\x81\x11\x61\x31\x41\x54\x31" }  },
1.1       albertel 43432:       /* --- pixel bitmap for cmex100 char#84 \bigcap --- */
1.2       albertel 43433:       {  84,99053,                      /* character number, location */
                   43434:           0, 1,  -14, 1,      /* topleft row,col, and botleft row,col */
                   43435:           { 10,   14, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43436:             "\x34\x51\x41\x31\x61\x1f\xa1\x81" }  },
1.1       albertel 43437:       /* --- pixel bitmap for cmex100 char#85 \biguplus --- */
1.2       albertel 43438:       {  85,100798,                     /* character number, location */
                   43439:           0, 1,  -14, 1,      /* topleft row,col, and botleft row,col */
                   43440:           { 10,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43441:             "\x01\x06\x18\x60\x80\x21\x86\xd8\x6f\x88\x21\x06\x18"
                   43442:             "\xa0\x40\x84\xe0\x01" }  },
1.1       albertel 43443:       /* --- pixel bitmap for cmex100 char#86 \bigwedge --- */
1.2       albertel 43444:       {  86,102540,                     /* character number, location */
                   43445:           0, 1,  -14, 1,      /* topleft row,col, and botleft row,col */
                   43446:           { 10,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43447:             "\x20\xc0\x00\x03\x12\x48\x20\x41\x08\x21\x84\x08\x24"
                   43448:             "\x90\x40\x01\x06\x08" }  },
1.1       albertel 43449:       /* --- pixel bitmap for cmex100 char#87 \bigvee --- */
1.2       albertel 43450:       {  87,104160,                     /* character number, location */
                   43451:           0, 1,  -14, 1,      /* topleft row,col, and botleft row,col */
                   43452:           { 10,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43453:             "\x01\x06\x28\x90\x40\x02\x11\x42\x08\x21\x48\x20\x81"
                   43454:             "\x04\x0c\x30\x80\x00" }  },
1.1       albertel 43455:       /* --- pixel bitmap for cmex100 char#88 \Bigsum --- */
1.2       albertel 43456:       {  88,86507,                      /* character number, location */
                   43457:           0, 1,  -19, 1,      /* topleft row,col, and botleft row,col */
                   43458:           { 18,   19, 3,77, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43459:             "\x0e\x02\x23\xb3\x23\xc1\x32\xd1\x32\xe0\x32\xe0\x23"
                   43460:             "\xe0\x23\xe0\x22\xe0\x32\xe0\x21\xe0\x22\xe0\x12\xe0"
                   43461:             "\x12\xe0\x21\xe0\x21\xd1\x22\xc1\x22\xb3\x1e\x02\x21" }  },
1.1       albertel 43462:       /* --- pixel bitmap for cmex100 char#89 \Bigprod --- */
1.2       albertel 43463:       {  89,89508,                      /* character number, location */
                   43464:           0, 1,  -19, 1,      /* topleft row,col, and botleft row,col */
                   43465:           { 16,   19, 3,22, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43466:             "\x0e\x02\xfe\x22\x82\x20\xf1\x22\x82\x26\x46" }  },
1.1       albertel 43467:       /* --- pixel bitmap for cmex100 char#90 \Bigint --- */
1.2       albertel 43468:       {  90,94546,                      /* character number, location */
                   43469:           0, 1,  -31, 1,      /* topleft row,col, and botleft row,col */
                   43470:           { 12,   31, 3,57, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43471:             "\xa1\xa1\x11\xc0\xf2\x81\x30\xf2\x71\x40\xf3\x62\x40"
                   43472:             "\xf4\x52\x50\xf3\x42\x60\xf2\x41\x70\xf2\x31\x80\xc1"
                   43473:             "\x11\xa1\xa1" }  },
1.1       albertel 43474:       /* --- pixel bitmap for cmex100 char#91 \Bigcup --- */
1.2       albertel 43475:       {  91,98266,                      /* character number, location */
                   43476:           0, 1,  -19, 1,      /* topleft row,col, and botleft row,col */
                   43477:           { 13,   19, 3,21, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43478:             "\xfe\x01\xb1\x11\x91\x31\x71\x51\x51\x75\x41" }  },
1.1       albertel 43479:       /* --- pixel bitmap for cmex100 char#92 \Bigcap --- */
1.2       albertel 43480:       {  92,99953,                      /* character number, location */
                   43481:           0, 1,  -19, 1,      /* topleft row,col, and botleft row,col */
                   43482:           { 13,   19, 3,20, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43483:             "\x45\x71\x51\x51\x71\x31\x91\x1f\xe1\xb1" }  },
1.1       albertel 43484:       /* --- pixel bitmap for cmex100 char#93 \Biguplus --- */
1.2       albertel 43485:       {  93,101766,                     /* character number, location */
                   43486:           0, 1,  -19, 1,      /* topleft row,col, and botleft row,col */
                   43487:           { 13,   19, 3,49, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43488:             "\xf3\x01\xb1\x0f\x31\x51\x51\x01\x19\x11\x0f\x31\x51"
                   43489:             "\x51\x0f\x11\xb1\x11\x91\x31\x71\x51\x51\x75\x41" }  },
1.1       albertel 43490:       /* --- pixel bitmap for cmex100 char#94 \Bigwedge --- */
1.2       albertel 43491:       {  94,103405,                     /* character number, location */
                   43492:           0, 1,  -19, 1,      /* topleft row,col, and botleft row,col */
                   43493:           { 13,   19, 3,50, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43494:             "\xf1\x61\x60\xf2\x51\x11\x50\xf2\x41\x31\x40\xf2\x31"
                   43495:             "\x51\x30\xf2\x21\x71\x20\xf2\x11\x91\x1f\x11\xb1" }  },
1.1       albertel 43496:       /* --- pixel bitmap for cmex100 char#95 \Bigvee --- */
1.2       albertel 43497:       {  95,105026,                     /* character number, location */
                   43498:           0, 1,  -19, 1,      /* topleft row,col, and botleft row,col */
                   43499:           { 13,   19, 3,51, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43500:             "\xf1\x01\xb1\xf2\x11\x91\x10\xf2\x21\x71\x20\xf2\x31"
                   43501:             "\x51\x30\xf2\x41\x31\x40\xf2\x51\x11\x50\xf1\x61\x64" }  },
                   43502:       /* --- pixel bitmap for cmex100 char#96 \coprod --- */
                   43503:       {  96,90953,                      /* character number, location */
                   43504:           0, 1,  -14, 1,      /* topleft row,col, and botleft row,col */
                   43505:           { 11,   14, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43506:             "\x03\x53\xfb\x11\x71\x1b" }  },
1.1       albertel 43507:       /* --- pixel bitmap for cmex100 char#97 \Bigcoprod --- */
1.2       albertel 43508:       {  97,92537,                      /* character number, location */
                   43509:           0, 1,  -19, 1,      /* topleft row,col, and botleft row,col */
                   43510:           { 16,   19, 3,22, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43511:             "\x06\x46\xfe\x22\x82\x20\xf1\x22\x82\x2e\x02" }  },
1.1       albertel 43512:       /* --- pixel bitmap for cmex100 char#98 ^ --- */
1.2       albertel 43513:       {  98,105743,                     /* character number, location */
                   43514:          10, 0,    7, 0,      /* topleft row,col, and botleft row,col */
                   43515:           {  8,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43516:             "\x18\xe7\x81" }  },
1.1       albertel 43517:       /* --- pixel bitmap for cmex100 char#99 ^ --- */
1.2       albertel 43518:       {  99,106588,                     /* character number, location */
                   43519:          10, 0,    7, 0,      /* topleft row,col, and botleft row,col */
                   43520:           { 14,    3, 3,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43521:             "\x54\x64\x44\x11\xc1" }  },
1.1       albertel 43522:       /* --- pixel bitmap for cmex100 char#100 ^ --- */
1.2       albertel 43523:       { 100,107642,                     /* character number, location */
                   43524:          10, 0,    7, 0,      /* topleft row,col, and botleft row,col */
                   43525:           { 20,    3, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43526:             "\x76\x86\x66\x11\xe0\x41" }  },
1.1       albertel 43527:       /* --- pixel bitmap for cmex100 char#101 ~ --- */
1.2       albertel 43528:       { 101,108325,                     /* character number, location */
                   43529:          10, 0,    8, 0,      /* topleft row,col, and botleft row,col */
                   43530:           {  8,    2, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43531:             "\xde\x7b" }  },
1.1       albertel 43532:       /* --- pixel bitmap for cmex100 char#102 ~ --- */
1.2       albertel 43533:       { 102,109215,                     /* character number, location */
                   43534:          10, 0,    8, 0,      /* topleft row,col, and botleft row,col */
                   43535:           { 14,    2, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43536:             "\xfe\xf0\xf0\x07" }  },
1.1       albertel 43537:       /* --- pixel bitmap for cmex100 char#103 ~ --- */
1.2       albertel 43538:       { 103,110314,                     /* character number, location */
                   43539:          10, 0,    8, 0,      /* topleft row,col, and botleft row,col */
                   43540:           { 20,    2, 3, 7, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43541:             "\x29\x74\x79\x21" }  },
                   43542:       /* --- pixel bitmap for cmex100 char#104 \Big[ --- */
                   43543:       { 104,12367,                      /* character number, location */
                   43544:           1, 3,  -23, 3,      /* topleft row,col, and botleft row,col */
                   43545:           {  4,   24, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43546:             "\x04\x0f\xe1\x3f\x61\x34" }  },
                   43547:       /* --- pixel bitmap for cmex100 char#105 \Big] --- */
                   43548:       { 105,17954,                      /* character number, location */
                   43549:           1, 0,  -23, 0,      /* topleft row,col, and botleft row,col */
                   43550:           {  4,   24, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43551:             "\x04\xfe\x31\xf6\x31\x04" }  },
1.1       albertel 43552:       /* --- pixel bitmap for cmex100 char#106 (noname) --- */
1.2       albertel 43553:       { 106,23462,                      /* character number, location */
                   43554:           1, 3,  -23, 3,      /* topleft row,col, and botleft row,col */
                   43555:           {  4,   24, 3,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43556:             "\xfe\x01\x3f\x71\x34" }  },
1.1       albertel 43557:       /* --- pixel bitmap for cmex100 char#107 (noname) --- */
1.2       albertel 43558:       { 107,26796,                      /* character number, location */
                   43559:           1, 0,  -23, 0,      /* topleft row,col, and botleft row,col */
                   43560:           {  4,   24, 3,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43561:             "\xfe\x31\xf7\x31\x04" }  },
1.1       albertel 43562:       /* --- pixel bitmap for cmex100 char#108 (noname) --- */
1.2       albertel 43563:       { 108,30134,                      /* character number, location */
                   43564:           1, 3,  -23, 3,      /* topleft row,col, and botleft row,col */
                   43565:           {  4,   24, 3,11, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43566:             "\x04\x0f\xe1\x3f\x71\x31" }  },
1.1       albertel 43567:       /* --- pixel bitmap for cmex100 char#109 (noname) --- */
1.2       albertel 43568:       { 109,33476,                      /* character number, location */
                   43569:           1, 0,  -23, 0,      /* topleft row,col, and botleft row,col */
                   43570:           {  4,   24, 3,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43571:             "\x04\xfe\x31\xf7\x31" }  },
                   43572:       /* --- pixel bitmap for cmex100 char#110 \Big{ --- */
                   43573:       { 110,37086,                      /* character number, location */
                   43574:           1, 2,  -23, 2,      /* topleft row,col, and botleft row,col */
                   43575:           {  5,   24, 3,28, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43576:             "\x41\x31\x10\xf8\x21\x20\xf1\x11\x30\xf8\x21\x20\x31"
                   43577:             "\x51" }  },
                   43578:       /* --- pixel bitmap for cmex100 char#111 \Big} --- */
                   43579:       { 111,44598,                      /* character number, location */
                   43580:           1, 2,  -23, 2,      /* topleft row,col, and botleft row,col */
                   43581:           {  5,   24, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43582:             "\x41\x10\x42\x08\x21\x84\x10\x8c\x08\x21\x84\x10\x42"
                   43583:             "\x88\x08" }  },
1.1       albertel 43584:       /* --- pixel bitmap for cmex100 char#112 (noname) --- */
1.2       albertel 43585:       { 112,70256,                      /* character number, location */
                   43586:           1, 2,  -16, 2,      /* topleft row,col, and botleft row,col */
                   43587:           { 13,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43588:             "\x00\x10\x00\x01\x20\x00\x02\x40\x00\x04\x80\x00\x08"
1.1       albertel 43589:             "\x00\x61\x10\x08\x02\x22\x40\x04\x50\x00\x0a\xc0\x00"
                   43590:             "\x10\x00" }  },
                   43591:       /* --- pixel bitmap for cmex100 char#113 (noname) --- */
1.2       albertel 43592:       { 113,71185,                      /* character number, location */
                   43593:           1, 2,  -24, 2,      /* topleft row,col, and botleft row,col */
                   43594:           { 13,   25, 3,67, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43595:             "\xf1\xc1\xf2\xb1\x10\xf2\xa1\x20\xf2\x91\x30\xf1\x81"
                   43596:             "\x40\x11\x61\x42\x51\x61\x51\x71\x41\x50\xf2\x21\x31"
                   43597:             "\x60\xf2\x31\x11\x70\xf1\x41\x81" }  },
1.1       albertel 43598:       /* --- pixel bitmap for cmex100 char#114 (noname) --- */
1.2       albertel 43599:       { 114,72139,                      /* character number, location */
                   43600:           1, 2,  -33, 2,      /* topleft row,col, and botleft row,col */
                   43601:           { 13,   34, 3,81, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43602:             "\xf2\xc1\xf3\xb1\x10\xf3\xa1\x20\xf3\x91\x30\xf1\x81"
                   43603:             "\x40\x11\x61\x42\x61\x42\x51\x50\xf1\x11\x51\x50\x21"
                   43604:             "\x41\x50\xf3\x21\x31\x60\xf3\x31\x11\x70\x32\x80\xf1"
                   43605:             "\x41\x82" }  },
1.1       albertel 43606:       /* --- pixel bitmap for cmex100 char#115 (noname) --- */
1.2       albertel 43607:       { 115,73119,                      /* character number, location */
                   43608:           1, 2,  -41, 2,      /* topleft row,col, and botleft row,col */
                   43609:           { 13,   42, 3,83, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43610:             "\xf2\xc1\xf4\xb1\x10\xf4\xa1\x20\xf4\x91\x30\xf2\x81"
                   43611:             "\x40\xf1\x11\x61\x42\x61\x40\xf2\x11\x51\x50\xf1\x21"
                   43612:             "\x41\x50\xf3\x21\x31\x60\x31\x21\x60\xf4\x31\x11\x70"
                   43613:             "\xf2\x41\x80" }  },
1.1       albertel 43614:       /* --- pixel bitmap for cmex100 char#116 (noname) --- */
1.2       albertel 43615:       { 116,74163,                      /* character number, location */
                   43616:           1, 1,  -25, 1,      /* topleft row,col, and botleft row,col */
                   43617:           { 10,   26, 3,56, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43618:             "\xf3\x91\x11\x71\x12\x62\x11\x61\x21\x61\xf1\x31\x51"
                   43619:             "\xf2\x41\x41\xf2\x51\x31\xf2\x61\x21\xf2\x71\x11\xf2"
                   43620:             "\x82\x91" }  },
1.1       albertel 43621:       /* --- pixel bitmap for cmex100 char#117 (noname) --- */
1.2       albertel 43622:       { 117,75016,                      /* character number, location */
                   43623:           1,10,   -9,10,      /* topleft row,col, and botleft row,col */
                   43624:           {  1,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43625:             "\xff\x03" }  },
1.1       albertel 43626:       /* --- pixel bitmap for cmex100 char#118 (noname) --- */
1.2       albertel 43627:       { 118,75801,                      /* character number, location */
                   43628:           1,10,   -9,10,      /* topleft row,col, and botleft row,col */
                   43629:           {  6,   10, 3, 7, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43630:             "\x06\x0f\x81\x51" }  },
1.1       albertel 43631:       /* --- pixel bitmap for cmex100 char#119 (noname) --- */
1.2       albertel 43632:       { 119,69333,                      /* character number, location */
                   43633:           1, 4,   -9, 4,      /* topleft row,col, and botleft row,col */
                   43634:           {  4,   10, 3, 6, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43635:             "\xf9\x01\x21" }  },
1.1       albertel 43636:       /* --- pixel bitmap for cmex100 char#120 (noname) --- */
1.2       albertel 43637:       { 120,64827,                      /* character number, location */
                   43638:           0, 1,   -8, 1,      /* topleft row,col, and botleft row,col */
                   43639:           {  7,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43640:             "\x08\xce\x1a\x81\x40\x20\x10" }  },
1.1       albertel 43641:       /* --- pixel bitmap for cmex100 char#121 (noname) --- */
1.2       albertel 43642:       { 121,65720,                      /* character number, location */
                   43643:           0, 1,   -8, 1,      /* topleft row,col, and botleft row,col */
                   43644:           {  7,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43645:             "\x08\x04\x02\x81\x58\x73\x10" }  },
1.1       albertel 43646:       /* --- pixel bitmap for cmex100 char#122 (noname) --- */
1.2       albertel 43647:       { 122,49998,                      /* character number, location */
                   43648:           2,-1,   -3,-1,      /* topleft row,col, and botleft row,col */
                   43649:           {  8,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43650:             "\xe0\xf8\x0c\x02\x01" }  },
1.1       albertel 43651:       /* --- pixel bitmap for cmex100 char#123 (noname) --- */
1.2       albertel 43652:       { 123,50550,                      /* character number, location */
                   43653:           2,-1,   -3,-1,      /* topleft row,col, and botleft row,col */
                   43654:           {  8,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43655:             "\x07\x1f\x30\x40\x80" }  },
1.1       albertel 43656:       /* --- pixel bitmap for cmex100 char#124 (noname) --- */
1.2       albertel 43657:       { 124,51099,                      /* character number, location */
                   43658:           5,-1,    0,-1,      /* topleft row,col, and botleft row,col */
                   43659:           {  8,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43660:             "\x01\x02\x0c\xf8\xe0" }  },
1.1       albertel 43661:       /* --- pixel bitmap for cmex100 char#125 (noname) --- */
1.2       albertel 43662:       { 125,51649,                      /* character number, location */
                   43663:           5,-1,    0,-1,      /* topleft row,col, and botleft row,col */
                   43664:           {  8,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43665:             "\x80\x40\x30\x1f\x07" }  },
1.1       albertel 43666:       /* --- pixel bitmap for cmex100 char#126 (noname) --- */
1.2       albertel 43667:       { 126,67429,                      /* character number, location */
                   43668:          -1, 1,   -8, 1,      /* topleft row,col, and botleft row,col */
                   43669:           { 10,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43670:             "\x30\x20\xc1\xcc\xd2\x48\x20\x81\x04" }  },
1.1       albertel 43671:       /* --- pixel bitmap for cmex100 char#127 (noname) --- */
1.2       albertel 43672:       { 127,68485,                      /* character number, location */
                   43673:           0, 1,   -7, 1,      /* topleft row,col, and botleft row,col */
                   43674:           { 10,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43675:             "\x48\x20\x81\xc4\xd2\xcc\x20\x01\x03" }  },
1.1       albertel 43676:       /* --- trailer  --- */
1.2       albertel 43677:       { -99, -999,  0,0,0,0, { 0,0,0,0, (pixbyte *)"\0" }  }
1.1       albertel 43678:    } ;
                   43679: 
                   43680: 
1.2       albertel 43681: /* --- size=2 for .118gf ---
                   43682:  * mf '\mode=preview; mag=magstep(-16.96645799324018499600); input cmex10'
                   43683:  * --------------------------------------------------------------------- */
1.1       albertel 43684: /* --- fontdef for cmex118 --- */
                   43685: static	chardef  cmex118[] =
                   43686:    {
1.2       albertel 43687:       /* --- pixel bitmap for cmex118 char#0 \big( --- */
                   43688:       {   0,  635,                      /* character number, location */
                   43689:           1, 2,  -18, 2,      /* topleft row,col, and botleft row,col */
                   43690:           {  4,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43691:             "\x48\x24\x12\x11\x11\x11\x11\x22\x44\x08" }  },
                   43692:       /* --- pixel bitmap for cmex118 char#1 \big) --- */
                   43693:       {   1, 6234,                      /* character number, location */
                   43694:           1, 1,  -18, 1,      /* topleft row,col, and botleft row,col */
                   43695:           {  4,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43696:             "\x21\x42\x84\x88\x88\x88\x88\x44\x22\x01" }  },
                   43697:       /* --- pixel bitmap for cmex118 char#2 \big[ --- */
                   43698:       {   2,11853,                      /* character number, location */
                   43699:           1, 3,  -18, 3,      /* topleft row,col, and botleft row,col */
                   43700:           {  4,   19, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43701:             "\x04\x0f\xe1\x3f\x11\x34" }  },
                   43702:       /* --- pixel bitmap for cmex118 char#3 \big] --- */
                   43703:       {   3,17571,                      /* character number, location */
                   43704:           1, 0,  -18, 0,      /* topleft row,col, and botleft row,col */
                   43705:           {  4,   19, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43706:             "\x04\xfe\x31\xf1\x31\x04" }  },
1.1       albertel 43707:       /* --- pixel bitmap for cmex118 char#4 (noname) --- */
1.2       albertel 43708:       {   4,23204,                      /* character number, location */
                   43709:           1, 3,  -18, 3,      /* topleft row,col, and botleft row,col */
                   43710:           {  5,   19, 3,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43711:             "\xfe\x01\x4f\x21\x45" }  },
1.1       albertel 43712:       /* --- pixel bitmap for cmex118 char#5 (noname) --- */
1.2       albertel 43713:       {   5,26671,                      /* character number, location */
                   43714:           1, 0,  -18, 0,      /* topleft row,col, and botleft row,col */
                   43715:           {  5,   19, 3,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43716:             "\xfe\x41\xf2\x41\x05" }  },
1.1       albertel 43717:       /* --- pixel bitmap for cmex118 char#6 (noname) --- */
1.2       albertel 43718:       {   6,30062,                      /* character number, location */
                   43719:           1, 3,  -18, 3,      /* topleft row,col, and botleft row,col */
                   43720:           {  5,   19, 3,11, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43721:             "\x05\x0f\xe1\x4f\x21\x41" }  },
1.1       albertel 43722:       /* --- pixel bitmap for cmex118 char#7 (noname) --- */
1.2       albertel 43723:       {   7,33537,                      /* character number, location */
                   43724:           1, 0,  -18, 0,      /* topleft row,col, and botleft row,col */
                   43725:           {  5,   19, 3,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43726:             "\x05\xfe\x41\xf2\x41" }  },
                   43727:       /* --- pixel bitmap for cmex118 char#8 \big{ --- */
                   43728:       {   8,37081,                      /* character number, location */
                   43729:           1, 2,  -18, 2,      /* topleft row,col, and botleft row,col */
                   43730:           {  6,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43731:             "\x20\x86\x20\x08\x82\x20\xc4\x40\x20\x08\x82\x20\x08"
                   43732:             "\x06\x02" }  },
                   43733:       /* --- pixel bitmap for cmex118 char#9 \big} --- */
                   43734:       {   9,44708,                      /* character number, location */
                   43735:           1, 2,  -18, 2,      /* topleft row,col, and botleft row,col */
                   43736:           {  6,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43737:             "\x03\x81\x20\x08\x82\x20\x18\x88\x21\x08\x82\x20\x08"
                   43738:             "\x31\x00" }  },
                   43739:       /* --- pixel bitmap for cmex118 char#10 \big< --- */
                   43740:       {  10,53380,                      /* character number, location */
                   43741:           1, 2,  -18, 2,      /* topleft row,col, and botleft row,col */
                   43742:           {  5,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43743:             "\x10\x22\x44\x88\x10\x21\x04\x21\x08\x41\x08\x42" }  },
                   43744:       /* --- pixel bitmap for cmex118 char#11 \big> --- */
                   43745:       {  11,56175,                      /* character number, location */
                   43746:           1, 1,  -18, 1,      /* topleft row,col, and botleft row,col */
                   43747:           {  5,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43748:             "\x21\x08\x41\x08\x42\x10\x42\x84\x08\x11\x22\x04" }  },
1.1       albertel 43749:       /* --- pixel bitmap for cmex118 char#12 (noname) --- */
1.2       albertel 43750:       {  12,64825,                      /* character number, location */
                   43751:           1, 2,  -11, 2,      /* topleft row,col, and botleft row,col */
                   43752:           {  1,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43753:             "\xff\x0f" }  },
1.1       albertel 43754:       /* --- pixel bitmap for cmex118 char#13 (noname) --- */
1.2       albertel 43755:       {  13,65416,                      /* character number, location */
                   43756:           1, 2,  -11, 2,      /* topleft row,col, and botleft row,col */
                   43757:           {  5,   12, 3, 6, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43758:             "\xfb\x01\x31" }  },
1.1       albertel 43759:       /* --- pixel bitmap for cmex118 char#14 (noname) --- */
1.2       albertel 43760:       {  14,58930,                      /* character number, location */
                   43761:           1, 1,  -18, 1,      /* topleft row,col, and botleft row,col */
                   43762:           {  7,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43763:             "\x40\x20\x08\x04\x82\x40\x20\x08\x04\x82\x40\x20\x08"
                   43764:             "\x04\x82\x40\x00" }  },
1.1       albertel 43765:       /* --- pixel bitmap for cmex118 char#15 (noname) --- */
1.2       albertel 43766:       {  15,61922,                      /* character number, location */
                   43767:           1, 1,  -18, 1,      /* topleft row,col, and botleft row,col */
                   43768:           {  7,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43769:             "\x81\x80\x40\x20\x20\x10\x08\x08\x04\x02\x02\x81\x80"
                   43770:             "\x40\x20\x20\x10" }  },
                   43771:       /* --- pixel bitmap for cmex118 char#16 \Big( --- */
                   43772:       {  16, 1358,                      /* character number, location */
                   43773:           1, 3,  -28, 3,      /* topleft row,col, and botleft row,col */
                   43774:           {  6,   29, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43775:             "\x20\x84\x20\x04\x21\x08\x42\x10\x04\x41\x10\x04\x41"
                   43776:             "\x10\x04\x82\x20\x10\x04\x82\x40\x20" }  },
                   43777:       /* --- pixel bitmap for cmex118 char#17 \Big) --- */
                   43778:       {  17, 6944,                      /* character number, location */
                   43779:           1, 1,  -28, 1,      /* topleft row,col, and botleft row,col */
                   43780:           {  6,   29, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43781:             "\x81\x40\x10\x08\x02\x41\x10\x08\x82\x20\x08\x82\x20"
                   43782:             "\x08\x82\x10\x04\x21\x08\x41\x08\x01" }  },
                   43783:       /* --- pixel bitmap for cmex118 char#18 \bigg( --- */
                   43784:       {  18, 2154,                      /* character number, location */
                   43785:           1, 3,  -38, 3,      /* topleft row,col, and botleft row,col */
                   43786:           {  8,   39, 3,66, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43787:             "\x71\x61\x61\x20\xf1\x41\x30\xf1\x31\x40\xf1\x21\x50"
                   43788:             "\xf3\x11\x6f\xc1\x70\xf3\x11\x60\xf1\x21\x50\xf1\x31"
                   43789:             "\x40\xf1\x41\x30\x51\x81\x81" }  },
                   43790:       /* --- pixel bitmap for cmex118 char#19 \bigg) --- */
                   43791:       {  19, 7727,                      /* character number, location */
                   43792:           1, 1,  -38, 1,      /* topleft row,col, and botleft row,col */
                   43793:           {  8,   39, 3,67, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43794:             "\x01\x81\x81\x50\xf1\x31\x40\xf1\x41\x30\xf1\x51\x20"
                   43795:             "\xf3\x61\x10\xfc\x71\xf3\x61\x10\xf1\x51\x20\xf1\x41"
                   43796:             "\x30\xf1\x31\x40\x21\x61\x61\x71" }  },
                   43797:       /* --- pixel bitmap for cmex118 char#20 \bigg[ --- */
                   43798:       {  20,13490,                      /* character number, location */
                   43799:           1, 4,  -38, 4,      /* topleft row,col, and botleft row,col */
                   43800:           {  5,   39, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43801:             "\x05\x0f\xe1\x4f\xe1\x4f\x61\x45" }  },
                   43802:       /* --- pixel bitmap for cmex118 char#21 \bigg] --- */
                   43803:       {  21,19156,                      /* character number, location */
                   43804:           1, 0,  -38, 0,      /* topleft row,col, and botleft row,col */
                   43805:           {  5,   39, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43806:             "\x05\xfe\x41\xfe\x41\xf6\x41\x05" }  },
1.1       albertel 43807:       /* --- pixel bitmap for cmex118 char#22 (noname) --- */
1.2       albertel 43808:       {  22,24905,                      /* character number, location */
                   43809:           1, 4,  -38, 4,      /* topleft row,col, and botleft row,col */
                   43810:           {  6,   39, 2, 6, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43811:             "\xff\x25\x00\x01\x05\x06" }  },
1.1       albertel 43812:       /* --- pixel bitmap for cmex118 char#23 (noname) --- */
1.2       albertel 43813:       {  23,28320,                      /* character number, location */
                   43814:           1, 0,  -38, 0,      /* topleft row,col, and botleft row,col */
                   43815:           {  6,   39, 2, 6, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43816:             "\xff\x25\x05\x01\x00\x06" }  },
1.1       albertel 43817:       /* --- pixel bitmap for cmex118 char#24 (noname) --- */
1.2       albertel 43818:       {  24,31767,                      /* character number, location */
                   43819:           1, 4,  -38, 4,      /* topleft row,col, and botleft row,col */
                   43820:           {  6,   39, 2, 7, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43821:             "\x00\x06\x00\xff\x25\x01\x05" }  },
1.1       albertel 43822:       /* --- pixel bitmap for cmex118 char#25 (noname) --- */
1.2       albertel 43823:       {  25,35190,                      /* character number, location */
                   43824:           1, 0,  -38, 0,      /* topleft row,col, and botleft row,col */
                   43825:           {  6,   39, 2, 6, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43826:             "\x00\x06\xff\x25\x05\x01" }  },
                   43827:       /* --- pixel bitmap for cmex118 char#26 \bigg{ --- */
                   43828:       {  26,39054,                      /* character number, location */
                   43829:           1, 2,  -38, 2,      /* topleft row,col, and botleft row,col */
                   43830:           {  8,   39, 3,38, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43831:             "\x62\x51\x61\x30\xfd\x31\x40\x21\x61\x61\x81\x81\x50"
                   43832:             "\xfd\x31\x40\x41\x81\x82" }  },
                   43833:       /* --- pixel bitmap for cmex118 char#27 \bigg} --- */
                   43834:       {  27,46683,                      /* character number, location */
                   43835:           1, 2,  -38, 2,      /* topleft row,col, and botleft row,col */
                   43836:           {  8,   39, 3,39, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43837:             "\x01\x81\x81\x50\xfd\x31\x40\x41\x81\x82\x51\x61\x30"
                   43838:             "\xfd\x31\x40\x21\x61\x61\x72" }  },
                   43839:       /* --- pixel bitmap for cmex118 char#28 \bigg< --- */
                   43840:       {  28,54763,                      /* character number, location */
                   43841:           1, 2,  -38, 2,      /* topleft row,col, and botleft row,col */
                   43842:           {  9,   39, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43843:             "\x00\x01\x02\x02\x04\x04\x08\x08\x10\x20\x20\x40\x40"
                   43844:             "\x80\x00\x01\x01\x02\x02\x04\x04\x08\x10\x40\x80\x00"
                   43845:             "\x02\x04\x10\x20\x40\x00\x01\x02\x08\x10\x20\x80\x00"
                   43846:             "\x01\x04\x08\x20\x40" }  },
                   43847:       /* --- pixel bitmap for cmex118 char#29 \bigg> --- */
                   43848:       {  29,57560,                      /* character number, location */
                   43849:           1, 1,  -38, 1,      /* topleft row,col, and botleft row,col */
                   43850:           {  9,   39, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43851:             "\x01\x02\x08\x10\x40\x80\x00\x02\x04\x08\x20\x40\x00"
                   43852:             "\x01\x02\x04\x10\x20\x80\x00\x01\x04\x08\x10\x10\x20"
                   43853:             "\x20\x40\x40\x80\x00\x01\x01\x02\x02\x04\x08\x08\x10"
                   43854:             "\x10\x20\x20\x40\x00" }  },
1.1       albertel 43855:       /* --- pixel bitmap for cmex118 char#30 (noname) --- */
1.2       albertel 43856:       {  30,60385,                      /* character number, location */
                   43857:           1, 1,  -38, 1,      /* topleft row,col, and botleft row,col */
                   43858:           { 15,   39, 3,115, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   43859:             "\xe1\xd2\xf1\xd1\x10\xc2\x10\xf1\xc1\x20\xb2\xd1\xd2"
                   43860:             "\x30\xf1\xa1\x40\x92\x40\xf1\x91\x50\x82\x50\xf1\x81"
                   43861:             "\x60\x72\xd1\xd2\x70\xf1\x61\x80\x52\x80\xf1\x51\x90"
                   43862:             "\x42\x90\xf1\x41\xa0\x32\xd1\xd2\xb0\xf1\x21\xc0\x12"
                   43863:             "\xc0\xf1\x11\xd2\xd1\xe0" }  },
1.1       albertel 43864:       /* --- pixel bitmap for cmex118 char#31 (noname) --- */
1.2       albertel 43865:       {  31,63385,                      /* character number, location */
                   43866:           1, 1,  -38, 1,      /* topleft row,col, and botleft row,col */
                   43867:           { 15,   39, 3,118, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   43868:             "\x01\xe2\xd0\xf1\x11\xd0\x12\xc0\xf1\x21\xc0\x22\xe1"
                   43869:             "\xe2\xa0\xf1\x41\xa0\x42\x90\xf1\x51\x90\x52\x80\xf1"
                   43870:             "\x61\x80\x62\xe1\xe2\x60\xf1\x81\x60\x82\x50\xf1\x91"
                   43871:             "\x50\x92\x40\xf1\xa1\x40\xa2\xe1\xe2\x20\xf1\xc1\x20"
                   43872:             "\xc2\x10\xf1\xd1\x10\xd2\xe1" }  },
                   43873:       /* --- pixel bitmap for cmex118 char#32 \Bigg( --- */
                   43874:       {  32, 3022,                      /* character number, location */
                   43875:           1, 4,  -47, 4,      /* topleft row,col, and botleft row,col */
                   43876:           {  8,   48, 3,78, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43877:             "\x71\x61\x62\x61\x62\x61\x62\x61\x40\xf1\x22\x40\x21"
                   43878:             "\x50\xf3\x12\x50\x11\x6f\xe2\x62\x71\x60\xf3\x12\x50"
                   43879:             "\x21\x50\xf1\x22\x40\x31\x72\x71\x72\x71\x72\x71\x81" }  },
                   43880:       /* --- pixel bitmap for cmex118 char#33 \Bigg) --- */
                   43881:       {  33, 8556,                      /* character number, location */
                   43882:           1, 1,  -47, 1,      /* topleft row,col, and botleft row,col */
                   43883:           {  8,   48, 3,81, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43884:             "\x01\x81\x72\x71\x72\x71\x72\x71\x30\xf1\x42\x20\x51"
                   43885:             "\x20\xf3\x52\x10\x61\x10\xfe\x62\x62\x61\x10\xf3\x52"
                   43886:             "\x10\x51\x20\xf1\x42\x20\x41\x62\x61\x62\x61\x62\x61"
                   43887:             "\x61\x70" }  },
                   43888:       /* --- pixel bitmap for cmex118 char#34 \Bigg[ --- */
                   43889:       {  34,14391,                      /* character number, location */
                   43890:           1, 5,  -47, 5,      /* topleft row,col, and botleft row,col */
                   43891:           {  5,   48, 2, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43892:             "\x00\x05\x00\xff\x2d\x01\x04\x05" }  },
                   43893:       /* --- pixel bitmap for cmex118 char#35 \Bigg] --- */
                   43894:       {  35,20018,                      /* character number, location */
                   43895:           1, 0,  -47, 0,      /* topleft row,col, and botleft row,col */
                   43896:           {  5,   48, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43897:             "\x05\xfe\x41\xfe\x41\xfe\x41\x46" }  },
1.1       albertel 43898:       /* --- pixel bitmap for cmex118 char#36 (noname) --- */
1.2       albertel 43899:       {  36,25838,                      /* character number, location */
                   43900:           1, 5,  -47, 5,      /* topleft row,col, and botleft row,col */
                   43901:           {  5,   48, 2, 6, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43902:             "\xff\x2e\x00\x01\x04\x05" }  },
1.1       albertel 43903:       /* --- pixel bitmap for cmex118 char#37 (noname) --- */
1.2       albertel 43904:       {  37,29214,                      /* character number, location */
                   43905:           1, 0,  -47, 0,      /* topleft row,col, and botleft row,col */
                   43906:           {  5,   48, 2, 6, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43907:             "\xff\x2e\x04\x01\x00\x05" }  },
1.1       albertel 43908:       /* --- pixel bitmap for cmex118 char#38 (noname) --- */
1.2       albertel 43909:       {  38,32702,                      /* character number, location */
                   43910:           1, 5,  -47, 5,      /* topleft row,col, and botleft row,col */
                   43911:           {  5,   48, 2, 7, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43912:             "\x00\x05\x00\xff\x2e\x01\x04" }  },
1.1       albertel 43913:       /* --- pixel bitmap for cmex118 char#39 (noname) --- */
1.2       albertel 43914:       {  39,36086,                      /* character number, location */
                   43915:           1, 0,  -47, 0,      /* topleft row,col, and botleft row,col */
                   43916:           {  5,   48, 2, 6, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43917:             "\x00\x05\xff\x2e\x04\x01" }  },
                   43918:       /* --- pixel bitmap for cmex118 char#40 \Bigg{ --- */
                   43919:       {  40,40084,                      /* character number, location */
                   43920:           1, 2,  -47, 2,      /* topleft row,col, and botleft row,col */
                   43921:           {  9,   48, 3,68, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43922:             "\x81\x62\x10\xf1\x52\x20\xfe\x42\x30\x42\x30\xf1\x32"
                   43923:             "\x40\x22\x50\xf1\x11\x70\x22\x50\xf1\x32\x40\xfe\x42"
                   43924:             "\x30\x42\x30\xf1\x52\x20\x62\x91" }  },
                   43925:       /* --- pixel bitmap for cmex118 char#41 \Bigg} --- */
                   43926:       {  41,47714,                      /* character number, location */
                   43927:           1, 2,  -47, 2,      /* topleft row,col, and botleft row,col */
                   43928:           {  9,   48, 3,53, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43929:             "\x02\x82\x91\x82\x40\xfe\x42\x30\x42\x81\x82\x81\x92"
                   43930:             "\x71\x71\x72\x71\x30\xfe\x42\x30\x42\x62\x71\x62\x62"
                   43931:             "\x70" }  },
                   43932:       /* --- pixel bitmap for cmex118 char#42 \Bigg< --- */
                   43933:       {  42,55511,                      /* character number, location */
                   43934:           1, 2,  -48, 2,      /* topleft row,col, and botleft row,col */
                   43935:           { 10,   49, 3,108, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   43936:             "\xf1\x91\xf2\x81\x10\xf1\x71\x20\xf2\x61\x30\xf1\x51"
                   43937:             "\x40\xf2\x41\x50\xf2\x31\x60\xf1\x21\x70\xf2\x11\x8f"
                   43938:             "\x21\x90\xf2\x11\x80\xf1\x21\x70\xf2\x31\x60\xf2\x41"
                   43939:             "\x50\xf1\x51\x40\xf2\x61\x30\xf1\x71\x20\xf2\x81\x10"
                   43940:             "\xf1\x91" }  },
                   43941:       /* --- pixel bitmap for cmex118 char#43 \Bigg> --- */
                   43942:       {  43,58309,                      /* character number, location */
                   43943:           1, 1,  -48, 1,      /* topleft row,col, and botleft row,col */
                   43944:           { 10,   49, 3,109, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   43945:             "\xf1\x01\x90\xf2\x11\x80\xf1\x21\x70\xf2\x31\x60\xf1"
                   43946:             "\x41\x50\xf2\x51\x40\xf2\x61\x30\xf1\x71\x20\xf2\x81"
                   43947:             "\x10\xf2\x91\xf2\x81\x10\xf1\x71\x20\xf2\x61\x30\xf2"
                   43948:             "\x51\x40\xf1\x41\x50\xf2\x31\x60\xf1\x21\x70\xf2\x11"
                   43949:             "\x8f\x11\x90" }  },
                   43950:       /* --- pixel bitmap for cmex118 char#44 / --- */
                   43951:       {  44,61299,                      /* character number, location */
                   43952:           1, 1,  -47, 1,      /* topleft row,col, and botleft row,col */
                   43953:           { 19,   48, 3,185, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   43954:             "\xe0\x41\xe0\x32\xf1\xe0\x31\x10\xe0\x22\x10\xf1\xe0"
                   43955:             "\x21\x20\xe0\x12\xe0\x31\xe0\x32\x30\xf1\xe1\x40\xd2"
                   43956:             "\xe0\x31\xe0\x32\x50\xf1\xc1\x60\xb2\x60\xf1\xb1\x70"
                   43957:             "\xa2\xe0\x31\xe0\x32\x80\xf1\x91\x90\x82\xe0\x31\xe0"
                   43958:             "\x32\xa0\xf1\x71\xb0\x62\xb0\xf1\x61\xc0\x52\xe0\x31"
                   43959:             "\xe0\x32\xd0\xf1\x41\xe0\x32\xe0\x31\xe0\x32\xe0\x10"
                   43960:             "\xf1\x21\xe0\x20\x12\xe0\x20\xf1\x11\xe0\x32\xe0\x31"
                   43961:             "\xe0\x40" }  },
                   43962:       /* --- pixel bitmap for cmex118 char#45 \ --- */
                   43963:       {  45,64303,                      /* character number, location */
                   43964:           1, 1,  -47, 1,      /* topleft row,col, and botleft row,col */
                   43965:           { 19,   48, 3,184, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   43966:             "\x01\xe0\x42\xe0\x30\xf1\x11\xe0\x30\x12\xe0\x20\xf1"
                   43967:             "\x21\xe0\x20\x22\xe0\x41\xe0\x42\xe0\xf1\x41\xe0\x42"
                   43968:             "\xe0\x41\xe0\x42\xc0\xf1\x61\xc0\x62\xb0\xf1\x71\xb0"
                   43969:             "\x72\xe0\x41\xe0\x42\x90\xf1\x91\x90\x92\xe0\x41\xe0"
                   43970:             "\x42\x70\xf1\xb1\x70\xb2\x60\xf1\xc1\x60\xc2\xe0\x41"
                   43971:             "\xe0\x42\x40\xf1\xe1\x40\xe2\xe0\x41\xe0\x42\x20\xf1"
                   43972:             "\xe0\x21\x20\xe0\x22\x10\xf1\xe0\x31\x10\xe0\x32\xe0"
                   43973:             "\x41" }  },
                   43974:       /* --- pixel bitmap for cmex118 char#46 / --- */
                   43975:       {  46,59595,                      /* character number, location */
                   43976:           1, 1,  -28, 1,      /* topleft row,col, and botleft row,col */
                   43977:           { 11,   29, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43978:             "\x00\x04\x30\x80\x00\x04\x30\x80\x00\x04\x30\x80\x00"
                   43979:             "\x04\x30\x80\x00\x04\x30\x80\x00\x06\x10\x80\x00\x06"
                   43980:             "\x10\x80\x00\x06\x10\x80\x00\x06\x10\x80\x00\x06\x10"
                   43981:             "\x00" }  },
                   43982:       /* --- pixel bitmap for cmex118 char#47 \ --- */
                   43983:       {  47,62591,                      /* character number, location */
                   43984:           1, 1,  -28, 1,      /* topleft row,col, and botleft row,col */
                   43985:           { 11,   29, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43986:             "\x01\x18\x80\x00\x04\x60\x00\x02\x10\x80\x01\x08\x40"
                   43987:             "\x00\x06\x20\x00\x01\x18\x80\x00\x0c\x40\x00\x02\x30"
                   43988:             "\x00\x01\x08\xc0\x00\x04\x20\x00\x03\x10\x80\x00\x0c"
                   43989:             "\x40" }  },
                   43990:       /* --- pixel bitmap for cmex118 char#48 \leftparentop --- */
                   43991:       {  48, 3898,                      /* character number, location */
                   43992:           0, 5,  -30, 5,      /* topleft row,col, and botleft row,col */
                   43993:           {  9,   30, 3,49, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   43994:             "\x81\x71\x72\x71\x72\x71\x72\x71\x72\x40\xf1\x31\x50"
                   43995:             "\xf1\x22\x50\x21\x60\xf4\x12\x60\x11\x7f\x92\x72" }  },
                   43996:       /* --- pixel bitmap for cmex118 char#49 \rightparentop --- */
                   43997:       {  49, 9419,                      /* character number, location */
                   43998:           0, 0,  -30, 0,      /* topleft row,col, and botleft row,col */
                   43999:           {  9,   30, 3,50, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44000:             "\x01\x91\x82\x81\x82\x81\x82\x81\x82\x30\xf1\x51\x30"
                   44001:             "\xf1\x52\x20\x61\x20\xf4\x62\x10\x71\x10\xf9\x72" }  },
1.1       albertel 44002:       /* --- pixel bitmap for cmex118 char#50 (noname) --- */
1.2       albertel 44003:       {  50,15253,                      /* character number, location */
                   44004:           0, 6,  -29, 6,      /* topleft row,col, and botleft row,col */
                   44005:           {  5,   29, 3,11, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44006:             "\x05\x0f\xe1\x4f\xc1\x4f" }  },
1.1       albertel 44007:       /* --- pixel bitmap for cmex118 char#51 (noname) --- */
1.2       albertel 44008:       {  51,20867,                      /* character number, location */
                   44009:           0, 0,  -29, 0,      /* topleft row,col, and botleft row,col */
                   44010:           {  5,   29, 3,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44011:             "\x05\xfe\x41\xfc\x41" }  },
1.1       albertel 44012:       /* --- pixel bitmap for cmex118 char#52 (noname) --- */
1.2       albertel 44013:       {  52,16099,                      /* character number, location */
                   44014:           1, 6,  -28, 6,      /* topleft row,col, and botleft row,col */
                   44015:           {  5,   29, 3,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44016:             "\xfe\x01\x4f\xc1\x45" }  },
1.1       albertel 44017:       /* --- pixel bitmap for cmex118 char#53 (noname) --- */
1.2       albertel 44018:       {  53,21700,                      /* character number, location */
                   44019:           1, 0,  -28, 0,      /* topleft row,col, and botleft row,col */
                   44020:           {  5,   29, 3,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44021:             "\xfe\x41\xfc\x41\x05" }  },
1.1       albertel 44022:       /* --- pixel bitmap for cmex118 char#54 (noname) --- */
1.2       albertel 44023:       {  54,16842,                      /* character number, location */
                   44024:           1, 6,  -11, 6,      /* topleft row,col, and botleft row,col */
                   44025:           {  1,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44026:             "\xff\x0f" }  },
1.1       albertel 44027:       /* --- pixel bitmap for cmex118 char#55 (noname) --- */
1.2       albertel 44028:       {  55,22430,                      /* character number, location */
                   44029:           1, 4,  -11, 4,      /* topleft row,col, and botleft row,col */
                   44030:           {  1,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44031:             "\xff\x0f" }  },
                   44032:       /* --- pixel bitmap for cmex118 char#56 \leftbracetop --- */
                   44033:       {  56,41033,                      /* character number, location */
                   44034:          -1, 7,  -16, 7,      /* topleft row,col, and botleft row,col */
                   44035:           {  5,   15, 3,15, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44036:             "\x41\x31\x31\x32\x31\x3f\x92\x32" }  },
                   44037:       /* --- pixel bitmap for cmex118 char#57 \rightbracetop --- */
                   44038:       {  57,48664,                      /* character number, location */
                   44039:          -1, 3,  -16, 3,      /* topleft row,col, and botleft row,col */
                   44040:           {  6,   15, 3,18, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44041:             "\x01\x62\x52\x20\xf1\x32\x10\xf9\x42" }  },
                   44042:       /* --- pixel bitmap for cmex118 char#58 \leftbracebot --- */
                   44043:       {  58,41938,                      /* character number, location */
                   44044:           1, 7,  -14, 7,      /* topleft row,col, and botleft row,col */
                   44045:           {  5,   15, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44046:             "\xf9\x02\x30\x11\x42\x41\x51\x51" }  },
                   44047:       /* --- pixel bitmap for cmex118 char#59 \rightbracebot --- */
                   44048:       {  59,49570,                      /* character number, location */
                   44049:           1, 3,  -14, 3,      /* topleft row,col, and botleft row,col */
                   44050:           {  6,   15, 3,17, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44051:             "\xf9\x42\xf1\x32\x10\x22\x32\x31\x52" }  },
                   44052:       /* --- pixel bitmap for cmex118 char#60 \leftbracemid --- */
                   44053:       {  60,42918,                      /* character number, location */
                   44054:           1, 3,  -30, 3,      /* topleft row,col, and botleft row,col */
                   44055:           {  6,   31, 3,32, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44056:             "\xfa\x42\xf1\x32\x10\x22\x32\x31\x62\x52\x20\xf1\x32"
                   44057:             "\x10\xfa\x42" }  },
                   44058:       /* --- pixel bitmap for cmex118 char#61 \rightbracemid --- */
                   44059:       {  61,50551,                      /* character number, location */
                   44060:           1, 7,  -30, 7,      /* topleft row,col, and botleft row,col */
                   44061:           {  5,   31, 3,29, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44062:             "\xfa\x02\x30\x11\x42\x41\x51\x51\x31\x31\x32\x31\x3f"
                   44063:             "\xa2\x31" }  },
                   44064:       /* --- pixel bitmap for cmex118 char#62 \leftbracebar --- */
                   44065:       {  62,43794,                      /* character number, location */
                   44066:           1, 7,   -6, 7,      /* topleft row,col, and botleft row,col */
                   44067:           {  2,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44068:             "\xff\x3f" }  },
1.1       albertel 44069:       /* --- pixel bitmap for cmex118 char#63 (noname) --- */
1.2       albertel 44070:       {  63,67901,                      /* character number, location */
                   44071:           1, 5,  -11, 5,      /* topleft row,col, and botleft row,col */
                   44072:           {  1,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44073:             "\xff\x0f" }  },
                   44074:       /* --- pixel bitmap for cmex118 char#64 \leftparenbot --- */
                   44075:       {  64, 4760,                      /* character number, location */
                   44076:           2, 5,  -28, 5,      /* topleft row,col, and botleft row,col */
                   44077:           {  9,   30, 3,50, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44078:             "\xf9\x02\x70\x11\x70\xf4\x12\x60\x21\x60\xf1\x22\x50"
                   44079:             "\xf1\x31\x50\x32\x81\x82\x81\x82\x81\x82\x81\x91" }  },
                   44080:       /* --- pixel bitmap for cmex118 char#65 \rightparenbot --- */
                   44081:       {  65,10268,                      /* character number, location */
                   44082:           2, 0,  -28, 0,      /* topleft row,col, and botleft row,col */
                   44083:           {  9,   30, 3,49, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44084:             "\xf9\x72\x71\x10\xf4\x62\x10\x61\x20\xf1\x52\x20\xf1"
                   44085:             "\x51\x30\x42\x71\x72\x71\x72\x71\x72\x71\x71\x82" }  },
                   44086:       /* --- pixel bitmap for cmex118 char#66 \leftparenbar --- */
                   44087:       {  66, 5616,                      /* character number, location */
                   44088:           1, 5,  -11, 5,      /* topleft row,col, and botleft row,col */
                   44089:           {  2,   12, 3, 4, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44090:             "\xfb\x02" }  },
                   44091:       /* --- pixel bitmap for cmex118 char#67 \rightparenbar --- */
                   44092:       {  67,11111,                      /* character number, location */
                   44093:           1, 7,  -11, 7,      /* topleft row,col, and botleft row,col */
                   44094:           {  2,   12, 3, 4, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44095:             "\xfb\x02" }  },
                   44096:       /* --- pixel bitmap for cmex118 char#68 \Big< --- */
                   44097:       {  68,54035,                      /* character number, location */
                   44098:           1, 2,  -28, 2,      /* topleft row,col, and botleft row,col */
                   44099:           {  7,   29, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44100:             "\x40\x20\x08\x04\x81\x20\x10\x08\x02\x41\x20\x08\x04"
                   44101:             "\x02\x02\x01\x81\x80\x40\x20\x20\x10\x10\x08\x08\x04" }  },
                   44102:       /* --- pixel bitmap for cmex118 char#69 \Big> --- */
                   44103:       {  69,56831,                      /* character number, location */
                   44104:           1, 1,  -28, 1,      /* topleft row,col, and botleft row,col */
                   44105:           {  7,   29, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44106:             "\x81\x80\x40\x40\x20\x20\x10\x08\x08\x04\x04\x02\x02"
                   44107:             "\x81\x20\x10\x04\x82\x40\x20\x08\x04\x81\x20\x10\x00" }  },
1.1       albertel 44108:       /* --- pixel bitmap for cmex118 char#70 \bigsqcup --- */
1.2       albertel 44109:       {  70,78108,                      /* character number, location */
                   44110:           0, 1,  -16, 1,      /* topleft row,col, and botleft row,col */
                   44111:           { 12,   16, 3, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44112:             "\xfe\x01\xa1\x0c" }  },
1.1       albertel 44113:       /* --- pixel bitmap for cmex118 char#71 \Bigsqcup --- */
1.2       albertel 44114:       {  71,79001,                      /* character number, location */
                   44115:           0, 1,  -23, 1,      /* topleft row,col, and botleft row,col */
                   44116:           { 16,   23, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44117:             "\xfe\x01\xe1\x0f\x61\xe1\x0e\x02" }  },
                   44118:       /* --- pixel bitmap for cmex118 char#72 \oint --- */
                   44119:       {  72,97441,                      /* character number, location */
                   44120:           0, 1,  -18, 1,      /* topleft row,col, and botleft row,col */
                   44121:           {  9,   18, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44122:             "\xc0\x40\x82\x00\x01\x01\x02\x0e\x2a\x92\x24\x51\xc1"
                   44123:             "\x01\x01\x02\x02\x04\x09\x0c\x00" }  },
1.1       albertel 44124:       /* --- pixel bitmap for cmex118 char#73 \Bigoint --- */
1.2       albertel 44125:       {  73,98483,                      /* character number, location */
                   44126:           0, 1,  -36, 1,      /* topleft row,col, and botleft row,col */
                   44127:           { 14,   36, 3,107, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   44128:             "\xb2\xc1\x11\xf1\xa1\x12\xf2\x91\x40\xf1\x82\x40\xf1"
                   44129:             "\x81\x50\xf1\x72\x50\x55\x81\x22\x11\x61\x31\x31\x20"
                   44130:             "\xf3\x31\x22\x31\x20\x41\x11\x31\x85\x40\xf2\x52\x70"
                   44131:             "\xf1\x51\x80\xf1\x42\x80\xf2\x41\x9f\x12\x11\xa1\x11"
                   44132:             "\xc2\xb1" }  },
1.1       albertel 44133:       /* --- pixel bitmap for cmex118 char#74 \bigodot --- */
1.2       albertel 44134:       {  74,79977,                      /* character number, location */
                   44135:           0, 1,  -16, 1,      /* topleft row,col, and botleft row,col */
                   44136:           { 16,   16, 3,57, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44137:             "\x56\x82\x62\x51\xa1\x20\xf1\x11\xc1\x1f\x11\xe1\x0f"
                   44138:             "\x11\x62\x61\x0f\x11\xe1\xf1\x11\xc1\x10\x21\xa1\x52"
                   44139:             "\x62\x86\x51" }  },
1.1       albertel 44140:       /* --- pixel bitmap for cmex118 char#75 \Bigodot --- */
1.2       albertel 44141:       {  75,81138,                      /* character number, location */
                   44142:           0, 1,  -23, 1,      /* topleft row,col, and botleft row,col */
                   44143:           { 23,   23, 3,103, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   44144:             "\x87\xe2\x72\xb1\xb1\x82\xd2\x61\xe0\x11\x51\xe0\x31"
                   44145:             "\x20\xf1\x11\xe0\x51\x1f\x11\xe0\x71\x01\xa1\xa2\x93"
                   44146:             "\x92\xa1\xa1\x0f\x11\xe0\x71\xf1\x11\xe0\x51\x10\x21"
                   44147:             "\xe0\x31\x51\xe0\x11\x62\xd2\x81\xb1\xb2\x72\xe7\x80" }  },
1.1       albertel 44148:       /* --- pixel bitmap for cmex118 char#76 \bigoplus --- */
1.2       albertel 44149:       {  76,82119,                      /* character number, location */
                   44150:           0, 1,  -16, 1,      /* topleft row,col, and botleft row,col */
                   44151:           { 16,   16, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44152:             "\xe0\x07\x18\x19\x04\x21\x02\x41\x02\x41\x01\x81\x01"
                   44153:             "\x81\xff\xff\x01\x81\x01\x81\x01\x81\x02\x41\x02\x41"
                   44154:             "\x04\x21\x18\x19\xe0\x07" }  },
1.1       albertel 44155:       /* --- pixel bitmap for cmex118 char#77 \Bigoplus --- */
1.2       albertel 44156:       {  77,83301,                      /* character number, location */
                   44157:           0, 1,  -23, 1,      /* topleft row,col, and botleft row,col */
                   44158:           { 23,   23, 3,105, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   44159:             "\x87\xe2\x31\x32\xb1\x51\x51\x82\x61\x62\x61\x71\x71"
                   44160:             "\x51\x81\x81\x20\xf1\x11\x91\x91\x1f\x21\xa1\xa1\x0e"
                   44161:             "\x09\x0f\x21\xa1\xa1\xf1\x11\x91\x91\x10\x21\x81\x81"
                   44162:             "\x51\x71\x71\x62\x61\x62\x81\x51\x51\xb2\x31\x32\xe7"
                   44163:             "\x82" }  },
1.1       albertel 44164:       /* --- pixel bitmap for cmex118 char#78 \bigotimes --- */
1.2       albertel 44165:       {  78,84315,                      /* character number, location */
                   44166:           0, 1,  -16, 1,      /* topleft row,col, and botleft row,col */
                   44167:           { 16,   16, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44168:             "\xe0\x07\x18\x18\x04\x20\x0a\x50\x12\x48\x21\x84\x41"
                   44169:             "\x82\x81\x81\x81\x81\x41\x82\x21\x84\x12\x48\x0a\x50"
                   44170:             "\x04\x20\x18\x18\xe0\x07" }  },
1.1       albertel 44171:       /* --- pixel bitmap for cmex118 char#79 \Bigotimes --- */
1.2       albertel 44172:       {  79,85510,                      /* character number, location */
                   44173:           0, 1,  -23, 1,      /* topleft row,col, and botleft row,col */
                   44174:           { 23,   23, 3,131, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   44175:             "\x87\xe2\x72\xb1\xb1\x50\xf1\x32\xd2\x30\x21\x21\xb1"
                   44176:             "\x21\x31\x41\x91\x41\x21\x51\x71\x51\x11\x71\x51\x72"
                   44177:             "\x81\x31\x82\x91\x11\x92\xa1\xa2\x91\x11\x92\x81\x31"
                   44178:             "\x82\x71\x51\x71\x11\x51\x71\x51\x21\x41\x91\x41\x31"
                   44179:             "\x21\xb1\x21\x20\xf1\x32\xd2\x30\x51\xb1\xb2\x72\xe7"
                   44180:             "\x80" }  },
                   44181:       /* --- pixel bitmap for cmex118 char#80 \sum --- */
                   44182:       {  80,86870,                      /* character number, location */
                   44183:           0, 1,  -16, 1,      /* topleft row,col, and botleft row,col */
                   44184:           { 15,   16, 3,49, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44185:             "\x0e\x12\xa2\x21\xb2\x21\xb1\x31\xe0\x11\xe2\x90\xf2"
                   44186:             "\x51\x90\x41\xd1\xd2\xa1\x21\xa2\x11\xa2\x1e\x11" }  },
                   44187:       /* --- pixel bitmap for cmex118 char#81 \prod --- */
                   44188:       {  81,89752,                      /* character number, location */
                   44189:           0, 1,  -16, 1,      /* topleft row,col, and botleft row,col */
                   44190:           { 13,   16, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44191:             "\x0d\xfd\x22\x52\x26\x16" }  },
                   44192:       /* --- pixel bitmap for cmex118 char#82 \int --- */
                   44193:       {  82,95408,                      /* character number, location */
                   44194:           0, 1,  -18, 1,      /* topleft row,col, and botleft row,col */
                   44195:           {  9,   18, 3,29, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44196:             "\x62\x61\x21\xf1\x51\x30\xf9\x41\x40\xf1\x31\x51\x21"
                   44197:             "\x62\x63" }  },
1.1       albertel 44198:       /* --- pixel bitmap for cmex118 char#83 \bigcup --- */
1.2       albertel 44199:       {  83,99301,                      /* character number, location */
                   44200:           0, 1,  -16, 1,      /* topleft row,col, and botleft row,col */
                   44201:           { 12,   16, 3,17, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44202:             "\xfc\x01\xa1\x11\x81\x32\x42\x64\x40" }  },
1.1       albertel 44203:       /* --- pixel bitmap for cmex118 char#84 \bigcap --- */
1.2       albertel 44204:       {  84,101005,                     /* character number, location */
                   44205:           0, 1,  -16, 1,      /* topleft row,col, and botleft row,col */
                   44206:           { 12,   16, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44207:             "\x44\x62\x42\x31\x81\x1f\xc1\xa1" }  },
1.1       albertel 44208:       /* --- pixel bitmap for cmex118 char#85 \biguplus --- */
1.2       albertel 44209:       {  85,102774,                     /* character number, location */
                   44210:           0, 1,  -16, 1,      /* topleft row,col, and botleft row,col */
                   44211:           { 12,   16, 3,45, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44212:             "\xf3\x01\xa1\x0f\x21\x51\x41\x01\x18\x11\x0f\x21\x51"
                   44213:             "\x41\x0f\x11\xa1\x11\x81\x32\x42\x64\x41" }  },
1.1       albertel 44214:       /* --- pixel bitmap for cmex118 char#86 \bigwedge --- */
1.2       albertel 44215:       {  86,104548,                     /* character number, location */
                   44216:           0, 1,  -16, 1,      /* topleft row,col, and botleft row,col */
                   44217:           { 12,   16, 3,46, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44218:             "\x61\x50\xf1\x52\x50\xf2\x41\x21\x40\xf2\x31\x41\x30"
                   44219:             "\xf1\x21\x61\x20\xf2\x11\x81\x1f\x11\xa1" }  },
1.1       albertel 44220:       /* --- pixel bitmap for cmex118 char#87 \bigvee --- */
1.2       albertel 44221:       {  87,106190,                     /* character number, location */
                   44222:           0, 1,  -16, 1,      /* topleft row,col, and botleft row,col */
                   44223:           { 12,   16, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44224:             "\x01\x18\x80\x02\x24\x40\x02\x44\x20\x04\x82\x10\x08"
                   44225:             "\x81\x10\x90\x00\x09\x90\x00\x06\x60\x00\x04" }  },
1.1       albertel 44226:       /* --- pixel bitmap for cmex118 char#88 \Bigsum --- */
1.2       albertel 44227:       {  88,88321,                      /* character number, location */
                   44228:           0, 1,  -23, 1,      /* topleft row,col, and botleft row,col */
                   44229:           { 22,   23, 3,105, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   44230:             "\x0e\x06\x23\xe4\x23\xe0\x12\x33\xe0\x11\x43\xe0\x11"
                   44231:             "\x33\xe0\x63\xe0\x63\xe0\x63\xe0\x62\xe0\x63\xe0\x63"
                   44232:             "\xe0\x61\xe0\x61\xe0\x61\xe0\x62\xe0\x52\xe0\x52\xe0"
                   44233:             "\x11\x41\xe0\x11\x41\xe0\x12\x32\xd4\x2e\x05\x2e\x06"
                   44234:             "\x21" }  },
1.1       albertel 44235:       /* --- pixel bitmap for cmex118 char#89 \Bigprod --- */
1.2       albertel 44236:       {  89,91342,                      /* character number, location */
                   44237:           0, 1,  -23, 1,      /* topleft row,col, and botleft row,col */
                   44238:           { 19,   23, 3,34, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44239:             "\x0e\x05\x23\x93\x20\xfe\x32\x92\x30\xf3\x32\x92\x30"
                   44240:             "\x24\x74\x28\x38" }  },
1.1       albertel 44241:       /* --- pixel bitmap for cmex118 char#90 \Bigint --- */
1.2       albertel 44242:       {  90,96426,                      /* character number, location */
                   44243:           0, 1,  -36, 1,      /* topleft row,col, and botleft row,col */
                   44244:           { 14,   36, 3,85, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44245:             "\xb2\xc1\x11\xf1\xa1\x12\xf2\x91\x40\xf1\x82\x40\xf1"
                   44246:             "\x81\x50\xf3\x72\x50\x71\x60\xf3\x62\x60\x61\x70\xf3"
                   44247:             "\x52\x70\xf1\x51\x80\xf1\x42\x80\xf2\x41\x9f\x12\x11"
                   44248:             "\xa1\x11\xc2\xb1" }  },
1.1       albertel 44249:       /* --- pixel bitmap for cmex118 char#91 \Bigcup --- */
1.2       albertel 44250:       {  91,100202,                     /* character number, location */
                   44251:           0, 1,  -23, 1,      /* topleft row,col, and botleft row,col */
                   44252:           { 16,   23, 3,31, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44253:             "\xfe\x01\xe1\x0f\x21\xe1\xf1\x11\xc1\x10\x21\xa1\x52"
                   44254:             "\x62\x86\x51" }  },
1.1       albertel 44255:       /* --- pixel bitmap for cmex118 char#92 \Bigcap --- */
1.2       albertel 44256:       {  92,101913,                     /* character number, location */
                   44257:           0, 1,  -23, 1,      /* topleft row,col, and botleft row,col */
                   44258:           { 16,   23, 3,30, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44259:             "\x56\x82\x62\x51\xa1\x20\xf1\x11\xc1\x1f\xe1\xe1\x0f"
                   44260:             "\x21\xe1" }  },
1.1       albertel 44261:       /* --- pixel bitmap for cmex118 char#93 \Biguplus --- */
1.2       albertel 44262:       {  93,103754,                     /* character number, location */
                   44263:           0, 1,  -23, 1,      /* topleft row,col, and botleft row,col */
                   44264:           { 16,   23, 3,53, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44265:             "\xf4\x01\xe1\x0f\x41\x71\x61\x01\x1c\x11\x0f\x41\x71"
                   44266:             "\x61\x0f\x11\xe1\xf1\x11\xc1\x10\x21\xa1\x52\x62\x86"
                   44267:             "\x53" }  },
1.1       albertel 44268:       /* --- pixel bitmap for cmex118 char#94 \Bigwedge --- */
1.2       albertel 44269:       {  94,105421,                     /* character number, location */
                   44270:           0, 1,  -23, 1,      /* topleft row,col, and botleft row,col */
                   44271:           { 16,   23, 3,62, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44272:             "\x81\x70\xf1\x72\x70\xf2\x61\x21\x60\xf2\x51\x41\x50"
                   44273:             "\xf2\x41\x61\x40\xf2\x31\x81\x30\xf2\x21\xa1\x20\xf2"
                   44274:             "\x11\xc1\x1f\x11\xe1" }  },
1.1       albertel 44275:       /* --- pixel bitmap for cmex118 char#95 \Bigvee --- */
1.2       albertel 44276:       {  95,107064,                     /* character number, location */
                   44277:           0, 1,  -23, 1,      /* topleft row,col, and botleft row,col */
                   44278:           { 16,   23, 3,63, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44279:             "\xf1\x01\xe1\xf2\x11\xc1\x10\xf2\x21\xa1\x20\xf2\x31"
                   44280:             "\x81\x30\xf2\x41\x61\x40\xf2\x51\x41\x50\xf2\x61\x21"
                   44281:             "\x60\xf1\x72\x70\x81\x71" }  },
                   44282:       /* --- pixel bitmap for cmex118 char#96 \coprod --- */
                   44283:       {  96,92803,                      /* character number, location */
                   44284:           0, 1,  -16, 1,      /* topleft row,col, and botleft row,col */
                   44285:           { 13,   16, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44286:             "\x06\x16\xfd\x22\x52\x2d" }  },
1.1       albertel 44287:       /* --- pixel bitmap for cmex118 char#97 \Bigcoprod --- */
1.2       albertel 44288:       {  97,94395,                      /* character number, location */
                   44289:           0, 1,  -23, 1,      /* topleft row,col, and botleft row,col */
                   44290:           { 19,   23, 3,34, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44291:             "\x08\x38\x24\x74\x20\xfe\x32\x92\x30\xf3\x32\x92\x30"
                   44292:             "\x23\x93\x2e\x05" }  },
1.1       albertel 44293:       /* --- pixel bitmap for cmex118 char#98 ^ --- */
1.2       albertel 44294:       {  98,107795,                     /* character number, location */
                   44295:          12, 0,    9, 0,      /* topleft row,col, and botleft row,col */
                   44296:           {  9,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44297:             "\x38\xdc\x0d\x06" }  },
1.1       albertel 44298:       /* --- pixel bitmap for cmex118 char#99 ^ --- */
1.2       albertel 44299:       {  99,108640,                     /* character number, location */
                   44300:          12, 0,    9, 0,      /* topleft row,col, and botleft row,col */
                   44301:           { 16,    3, 3,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44302:             "\x64\x93\x43\x33\xa3" }  },
1.1       albertel 44303:       /* --- pixel bitmap for cmex118 char#100 ^ --- */
1.2       albertel 44304:       { 100,109694,                     /* character number, location */
                   44305:          12, 0,    9, 0,      /* topleft row,col, and botleft row,col */
                   44306:           { 24,    3, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44307:             "\x96\xd5\x65\x44\xe0\x24" }  },
1.1       albertel 44308:       /* --- pixel bitmap for cmex118 char#101 ~ --- */
1.2       albertel 44309:       { 101,110377,                     /* character number, location */
                   44310:          12, 0,   10, 0,      /* topleft row,col, and botleft row,col */
                   44311:           {  9,    2, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44312:             "\xbe\xf7\x01" }  },
1.1       albertel 44313:       /* --- pixel bitmap for cmex118 char#102 ~ --- */
1.2       albertel 44314:       { 102,111267,                     /* character number, location */
                   44315:          12, 0,    9, 0,      /* topleft row,col, and botleft row,col */
                   44316:           { 16,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44317:             "\xf0\x80\x8e\x71\x01\x0f" }  },
1.1       albertel 44318:       /* --- pixel bitmap for cmex118 char#103 ~ --- */
1.2       albertel 44319:       { 103,112372,                     /* character number, location */
                   44320:          12, 0,    9, 0,      /* topleft row,col, and botleft row,col */
                   44321:           { 24,    3, 3,15, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44322:             "\x57\xa2\x24\x44\x44\x22\xa7\x52" }  },
                   44323:       /* --- pixel bitmap for cmex118 char#104 \Big[ --- */
                   44324:       { 104,12661,                      /* character number, location */
                   44325:           1, 4,  -28, 4,      /* topleft row,col, and botleft row,col */
                   44326:           {  4,   29, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44327:             "\x04\x0f\xe1\x3f\xb1\x34" }  },
                   44328:       /* --- pixel bitmap for cmex118 char#105 \Big] --- */
                   44329:       { 105,18340,                      /* character number, location */
                   44330:           1, 0,  -28, 0,      /* topleft row,col, and botleft row,col */
                   44331:           {  4,   29, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44332:             "\x04\xfe\x31\xfb\x31\x04" }  },
1.1       albertel 44333:       /* --- pixel bitmap for cmex118 char#106 (noname) --- */
1.2       albertel 44334:       { 106,24044,                      /* character number, location */
                   44335:           1, 4,  -28, 4,      /* topleft row,col, and botleft row,col */
                   44336:           {  5,   29, 3,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44337:             "\xfe\x01\x4f\xc1\x45" }  },
1.1       albertel 44338:       /* --- pixel bitmap for cmex118 char#107 (noname) --- */
1.2       albertel 44339:       { 107,27472,                      /* character number, location */
                   44340:           1, 0,  -28, 0,      /* topleft row,col, and botleft row,col */
                   44341:           {  5,   29, 3,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44342:             "\xfe\x41\xfc\x41\x05" }  },
1.1       albertel 44343:       /* --- pixel bitmap for cmex118 char#108 (noname) --- */
1.2       albertel 44344:       { 108,30904,                      /* character number, location */
                   44345:           1, 4,  -28, 4,      /* topleft row,col, and botleft row,col */
                   44346:           {  5,   29, 3,11, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44347:             "\x05\x0f\xe1\x4f\xc1\x41" }  },
1.1       albertel 44348:       /* --- pixel bitmap for cmex118 char#109 (noname) --- */
1.2       albertel 44349:       { 109,34340,                      /* character number, location */
                   44350:           1, 0,  -28, 0,      /* topleft row,col, and botleft row,col */
                   44351:           {  5,   29, 3,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44352:             "\x05\xfe\x41\xfc\x41" }  },
                   44353:       /* --- pixel bitmap for cmex118 char#110 \Big{ --- */
                   44354:       { 110,38044,                      /* character number, location */
                   44355:           1, 2,  -28, 2,      /* topleft row,col, and botleft row,col */
                   44356:           {  7,   29, 3,30, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44357:             "\x52\x41\x20\xfa\x31\x30\x21\x42\x71\x40\xfa\x31\x30"
                   44358:             "\x41\x72" }  },
                   44359:       /* --- pixel bitmap for cmex118 char#111 \Big} --- */
                   44360:       { 111,45672,                      /* character number, location */
                   44361:           1, 2,  -28, 2,      /* topleft row,col, and botleft row,col */
                   44362:           {  7,   29, 3,31, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44363:             "\x02\x71\x40\xfa\x31\x30\x41\x72\x41\x20\xfa\x31\x30"
                   44364:             "\x21\x42\x52" }  },
1.1       albertel 44365:       /* --- pixel bitmap for cmex118 char#112 (noname) --- */
1.2       albertel 44366:       { 112,71780,                      /* character number, location */
                   44367:           1, 2,  -19, 2,      /* topleft row,col, and botleft row,col */
                   44368:           { 15,   20, 3,67, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44369:             "\xf1\xe1\xf1\xd1\x10\xf1\xc1\x20\xf1\xb1\x30\xf1\xa1"
                   44370:             "\x40\x11\x71\x53\x61\x50\xf1\x21\x51\x60\xf1\x31\x31"
                   44371:             "\x70\xf1\x41\x11\x80\x42\xe1\x90" }  },
1.1       albertel 44372:       /* --- pixel bitmap for cmex118 char#113 (noname) --- */
1.2       albertel 44373:       { 113,72719,                      /* character number, location */
                   44374:           1, 2,  -29, 2,      /* topleft row,col, and botleft row,col */
                   44375:           { 15,   30, 3,77, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44376:             "\xf1\xe1\xf2\xd1\x10\xf3\xc1\x20\xf2\xb1\x30\xf2\xa1"
                   44377:             "\x40\x91\x61\x71\x51\x11\x61\x50\xf2\x21\x51\x60\xf2"
                   44378:             "\x31\x31\x70\x41\x21\x70\xf2\x41\x11\x80\xf1\x51\x90" }  },
1.1       albertel 44379:       /* --- pixel bitmap for cmex118 char#114 (noname) --- */
1.2       albertel 44380:       { 114,73689,                      /* character number, location */
                   44381:           1, 2,  -39, 2,      /* topleft row,col, and botleft row,col */
                   44382:           { 15,   40, 3,85, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44383:             "\xf2\xe1\xf3\xd1\x10\xf3\xc1\x20\xf4\xb1\x30\xf3\xa1"
                   44384:             "\x40\x91\x61\x71\x52\x71\x51\x11\x61\x50\xf3\x21\x51"
                   44385:             "\x60\x31\x41\x60\xf3\x31\x31\x70\xf3\x41\x11\x80\x42"
                   44386:             "\x90\xf1\x51\x90" }  },
1.1       albertel 44387:       /* --- pixel bitmap for cmex118 char#115 (noname) --- */
1.2       albertel 44388:       { 115,74687,                      /* character number, location */
                   44389:           1, 2,  -48, 2,      /* topleft row,col, and botleft row,col */
                   44390:           { 15,   49, 3,91, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44391:             "\xf2\xe1\xf5\xd1\x10\xf4\xc1\x20\xf4\xb1\x30\xf5\xa1"
                   44392:             "\x40\xf1\x11\x71\x52\x71\x51\x11\x61\x71\x61\x50\xf3"
                   44393:             "\x21\x51\x60\x31\x41\x60\xf4\x31\x31\x70\x41\x21\x70"
                   44394:             "\xf4\x41\x11\x80\xf2\x51\x91" }  },
1.1       albertel 44395:       /* --- pixel bitmap for cmex118 char#116 (noname) --- */
1.2       albertel 44396:       { 116,75753,                      /* character number, location */
                   44397:           1, 2,  -29, 2,      /* topleft row,col, and botleft row,col */
                   44398:           { 10,   30, 3,58, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44399:             "\xf4\x91\xf1\x12\x61\x01\x11\x61\x21\x61\xf2\x31\x51"
                   44400:             "\xf2\x41\x41\xf3\x51\x31\xf2\x61\x21\xf2\x71\x11\xf2"
                   44401:             "\x82\xf1\x91" }  },
1.1       albertel 44402:       /* --- pixel bitmap for cmex118 char#117 (noname) --- */
1.2       albertel 44403:       { 117,76618,                      /* character number, location */
                   44404:           1,11,  -11,11,      /* topleft row,col, and botleft row,col */
                   44405:           {  1,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44406:             "\xff\x0f" }  },
1.1       albertel 44407:       /* --- pixel bitmap for cmex118 char#118 (noname) --- */
1.2       albertel 44408:       { 118,77407,                      /* character number, location */
                   44409:           1,11,  -10,11,      /* topleft row,col, and botleft row,col */
                   44410:           {  7,   11, 3, 7, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44411:             "\x07\x0f\x91\x62" }  },
1.1       albertel 44412:       /* --- pixel bitmap for cmex118 char#119 (noname) --- */
1.2       albertel 44413:       { 119,70849,                      /* character number, location */
                   44414:           1, 5,  -11, 5,      /* topleft row,col, and botleft row,col */
                   44415:           {  4,   12, 3, 6, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44416:             "\xfb\x01\x21" }  },
1.1       albertel 44417:       /* --- pixel bitmap for cmex118 char#120 (noname) --- */
1.2       albertel 44418:       { 120,66315,                      /* character number, location */
                   44419:           0, 2,  -10, 2,      /* topleft row,col, and botleft row,col */
                   44420:           {  7,   10, 3,15, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44421:             "\x31\x53\x22\x11\x12\xf6\x31\x30" }  },
1.1       albertel 44422:       /* --- pixel bitmap for cmex118 char#121 (noname) --- */
1.2       albertel 44423:       { 121,67212,                      /* character number, location */
                   44424:           0, 2,  -10, 2,      /* topleft row,col, and botleft row,col */
                   44425:           {  7,   10, 3,15, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44426:             "\xf6\x31\x32\x11\x12\x23\x51\x30" }  },
1.1       albertel 44427:       /* --- pixel bitmap for cmex118 char#122 (noname) --- */
1.2       albertel 44428:       { 122,51154,                      /* character number, location */
                   44429:           2,-1,   -3,-1,      /* topleft row,col, and botleft row,col */
                   44430:           {  9,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44431:             "\xe0\xf1\x33\x10\x10\x00" }  },
1.1       albertel 44432:       /* --- pixel bitmap for cmex118 char#123 (noname) --- */
1.2       albertel 44433:       { 123,51706,                      /* character number, location */
                   44434:           2,-1,   -3,-1,      /* topleft row,col, and botleft row,col */
                   44435:           {  9,    5, 3,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44436:             "\x04\x56\x82\x91\x91" }  },
1.1       albertel 44437:       /* --- pixel bitmap for cmex118 char#124 (noname) --- */
1.2       albertel 44438:       { 124,52255,                      /* character number, location */
                   44439:           5,-1,    0,-1,      /* topleft row,col, and botleft row,col */
                   44440:           {  9,    5, 3,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44441:             "\x01\x91\x93\x76\x54" }  },
1.1       albertel 44442:       /* --- pixel bitmap for cmex118 char#125 (noname) --- */
1.2       albertel 44443:       { 125,52805,                      /* character number, location */
                   44444:           5,-1,    0,-1,      /* topleft row,col, and botleft row,col */
                   44445:           {  9,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44446:             "\x00\x01\xc1\xf9\xf1\x00" }  },
1.1       albertel 44447:       /* --- pixel bitmap for cmex118 char#126 (noname) --- */
1.2       albertel 44448:       { 126,68929,                      /* character number, location */
                   44449:          -1, 2,  -10, 2,      /* topleft row,col, and botleft row,col */
                   44450:           { 10,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44451:             "\x30\x20\xc1\xcc\xd2\x48\x20\x81\x04\x12\x48\x00" }  },
1.1       albertel 44452:       /* --- pixel bitmap for cmex118 char#127 (noname) --- */
1.2       albertel 44453:       { 127,69993,                      /* character number, location */
                   44454:           0, 2,   -9, 2,      /* topleft row,col, and botleft row,col */
                   44455:           { 10,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44456:             "\x48\x20\x81\x04\x12\x48\x2c\xcd\x0c\x12\x30\x00" }  },
1.1       albertel 44457:       /* --- trailer  --- */
1.2       albertel 44458:       { -99, -999,  0,0,0,0, { 0,0,0,0, (pixbyte *)"\0" }  }
1.1       albertel 44459:    } ;
                   44460: 
                   44461: 
1.2       albertel 44462: /* --- size=3 for .131gf ---
                   44463:  * mf '\mode=preview; mag=magstep(-16.39322518098640003469); input cmex10'
                   44464:  * --------------------------------------------------------------------- */
1.1       albertel 44465: /* --- fontdef for cmex131 --- */
                   44466: static	chardef  cmex131[] =
                   44467:    {
1.2       albertel 44468:       /* --- pixel bitmap for cmex131 char#0 \big( --- */
                   44469:       {   0,  661,                      /* character number, location */
                   44470:           1, 3,  -20, 3,      /* topleft row,col, and botleft row,col */
                   44471:           {  4,   21, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44472:             "\x48\x24\x22\x11\x11\x11\x11\x21\x22\x44\x08" }  },
                   44473:       /* --- pixel bitmap for cmex131 char#1 \big) --- */
                   44474:       {   1, 6356,                      /* character number, location */
                   44475:           1, 1,  -20, 1,      /* topleft row,col, and botleft row,col */
                   44476:           {  4,   21, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44477:             "\x21\x42\x44\x88\x88\x88\x88\x48\x44\x22\x01" }  },
                   44478:       /* --- pixel bitmap for cmex131 char#2 \big[ --- */
                   44479:       {   2,12071,                      /* character number, location */
                   44480:           1, 4,  -20, 4,      /* topleft row,col, and botleft row,col */
                   44481:           {  4,   21, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44482:             "\x04\x0f\xe1\x3f\x31\x34" }  },
                   44483:       /* --- pixel bitmap for cmex131 char#3 \big] --- */
                   44484:       {   3,17833,                      /* character number, location */
                   44485:           1, 0,  -20, 0,      /* topleft row,col, and botleft row,col */
                   44486:           {  4,   21, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44487:             "\x04\xfe\x31\xf3\x31\x04" }  },
1.1       albertel 44488:       /* --- pixel bitmap for cmex131 char#4 (noname) --- */
1.2       albertel 44489:       {   4,23562,                      /* character number, location */
                   44490:           1, 4,  -20, 4,      /* topleft row,col, and botleft row,col */
                   44491:           {  5,   21, 3,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44492:             "\xfe\x01\x4f\x41\x45" }  },
1.1       albertel 44493:       /* --- pixel bitmap for cmex131 char#5 (noname) --- */
1.2       albertel 44494:       {   5,27059,                      /* character number, location */
                   44495:           1, 0,  -20, 0,      /* topleft row,col, and botleft row,col */
                   44496:           {  5,   21, 3,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44497:             "\xfe\x41\xf4\x41\x05" }  },
1.1       albertel 44498:       /* --- pixel bitmap for cmex131 char#6 (noname) --- */
1.2       albertel 44499:       {   6,30532,                      /* character number, location */
                   44500:           1, 4,  -20, 4,      /* topleft row,col, and botleft row,col */
                   44501:           {  5,   21, 3,11, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44502:             "\x05\x0f\xe1\x4f\x41\x41" }  },
1.1       albertel 44503:       /* --- pixel bitmap for cmex131 char#7 (noname) --- */
1.2       albertel 44504:       {   7,34037,                      /* character number, location */
                   44505:           1, 0,  -20, 0,      /* topleft row,col, and botleft row,col */
                   44506:           {  5,   21, 3,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44507:             "\x05\xfe\x41\xf4\x41" }  },
                   44508:       /* --- pixel bitmap for cmex131 char#8 \big{ --- */
                   44509:       {   8,37611,                      /* character number, location */
                   44510:           1, 2,  -20, 2,      /* topleft row,col, and botleft row,col */
                   44511:           {  7,   21, 3,30, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44512:             "\x52\x41\x20\xf6\x31\x30\x21\x42\x71\x40\xf6\x31\x30"
                   44513:             "\x41\x72" }  },
                   44514:       /* --- pixel bitmap for cmex131 char#9 \big} --- */
                   44515:       {   9,45124,                      /* character number, location */
                   44516:           1, 2,  -20, 2,      /* topleft row,col, and botleft row,col */
                   44517:           {  7,   21, 3,31, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44518:             "\x02\x71\x40\xf6\x31\x30\x41\x72\x41\x20\xf6\x31\x30"
                   44519:             "\x21\x42\x53" }  },
                   44520:       /* --- pixel bitmap for cmex131 char#10 \big< --- */
                   44521:       {  10,53820,                      /* character number, location */
                   44522:           1, 2,  -20, 2,      /* topleft row,col, and botleft row,col */
                   44523:           {  6,   21, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44524:             "\x20\x08\x41\x08\x41\x08\x42\x10\x04\x82\x40\x10\x08"
                   44525:             "\x04\x81\x20" }  },
                   44526:       /* --- pixel bitmap for cmex131 char#11 \big> --- */
                   44527:       {  11,56595,                      /* character number, location */
                   44528:           1, 2,  -20, 2,      /* topleft row,col, and botleft row,col */
                   44529:           {  5,   21, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44530:             "\x21\x08\x41\x08\x41\x08\x42\x88\x10\x21\x44\x88\x10"
1.1       albertel 44531:             "\x00" }  },
                   44532:       /* --- pixel bitmap for cmex131 char#12 (noname) --- */
1.2       albertel 44533:       {  12,65389,                      /* character number, location */
                   44534:           1, 3,  -12, 3,      /* topleft row,col, and botleft row,col */
                   44535:           {  1,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44536:             "\xff\x1f" }  },
1.1       albertel 44537:       /* --- pixel bitmap for cmex131 char#13 (noname) --- */
1.2       albertel 44538:       {  13,66008,                      /* character number, location */
                   44539:           1, 3,  -12, 3,      /* topleft row,col, and botleft row,col */
                   44540:           {  4,   13, 3, 6, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44541:             "\xfc\x01\x21" }  },
1.1       albertel 44542:       /* --- pixel bitmap for cmex131 char#14 (noname) --- */
1.2       albertel 44543:       {  14,59356,                      /* character number, location */
                   44544:           1, 1,  -20, 1,      /* topleft row,col, and botleft row,col */
                   44545:           {  8,   21, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44546:             "\x80\x80\x40\x40\x40\x20\x20\x20\x10\x10\x08\x08\x08"
1.1       albertel 44547:             "\x04\x04\x04\x02\x02\x02\x01\x01" }  },
                   44548:       /* --- pixel bitmap for cmex131 char#15 (noname) --- */
1.2       albertel 44549:       {  15,62404,                      /* character number, location */
                   44550:           1, 1,  -20, 1,      /* topleft row,col, and botleft row,col */
                   44551:           {  8,   21, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44552:             "\x01\x01\x02\x02\x02\x04\x04\x04\x08\x08\x08\x10\x10"
1.1       albertel 44553:             "\x20\x20\x20\x40\x40\x40\x80\x80" }  },
1.2       albertel 44554:       /* --- pixel bitmap for cmex131 char#16 \Big( --- */
                   44555:       {  16, 1388,                      /* character number, location */
                   44556:           1, 3,  -31, 3,      /* topleft row,col, and botleft row,col */
                   44557:           {  7,   32, 3,54, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44558:             "\x61\x51\x51\x20\xf1\x31\x30\xf1\x21\x40\xf3\x11\x5f"
                   44559:             "\x91\x60\xf3\x11\x50\xf1\x21\x40\xf1\x31\x30\x41\x71"
                   44560:             "\x71" }  },
                   44561:       /* --- pixel bitmap for cmex131 char#17 \Big) --- */
                   44562:       {  17, 7070,                      /* character number, location */
                   44563:           1, 1,  -31, 1,      /* topleft row,col, and botleft row,col */
                   44564:           {  7,   32, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44565:             "\x01\x01\x01\x81\x80\x40\x40\x20\x10\x08\x08\x04\x02"
                   44566:             "\x81\x40\x20\x10\x08\x04\x81\x40\x20\x08\x04\x81\x20"
                   44567:             "\x08\x02" }  },
                   44568:       /* --- pixel bitmap for cmex131 char#18 \bigg( --- */
                   44569:       {  18, 2216,                      /* character number, location */
                   44570:           1, 4,  -42, 4,      /* topleft row,col, and botleft row,col */
                   44571:           {  8,   43, 3,82, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44572:             "\x71\x61\x10\xf1\x51\x20\x41\x62\x61\x40\xf1\x22\x40"
                   44573:             "\x21\x50\xf3\x12\x50\x11\x6f\xc2\x60\x11\x60\xf3\x12"
                   44574:             "\x50\x21\x50\xf1\x22\x40\x31\x72\x71\x30\xf1\x51\x20"
                   44575:             "\x61\x81" }  },
                   44576:       /* --- pixel bitmap for cmex131 char#19 \bigg) --- */
                   44577:       {  19, 7885,                      /* character number, location */
                   44578:           1, 1,  -42, 1,      /* topleft row,col, and botleft row,col */
                   44579:           {  8,   43, 3,83, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44580:             "\x01\x81\x60\xf1\x21\x50\x31\x72\x71\x30\xf1\x42\x20"
                   44581:             "\x51\x20\xf3\x52\x10\x61\x10\xfc\x62\x61\x10\xf3\x52"
                   44582:             "\x10\x51\x20\xf1\x42\x20\x41\x62\x61\x40\xf1\x21\x50"
                   44583:             "\x11\x61\x72" }  },
                   44584:       /* --- pixel bitmap for cmex131 char#20 \bigg[ --- */
                   44585:       {  20,13718,                      /* character number, location */
                   44586:           1, 5,  -42, 5,      /* topleft row,col, and botleft row,col */
                   44587:           {  5,   43, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44588:             "\x05\x0f\xe1\x4f\xe1\x4f\xa1\x45" }  },
                   44589:       /* --- pixel bitmap for cmex131 char#21 \bigg] --- */
                   44590:       {  21,19454,                      /* character number, location */
                   44591:           1, 0,  -42, 0,      /* topleft row,col, and botleft row,col */
                   44592:           {  5,   43, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44593:             "\x05\xfe\x41\xfe\x41\xfa\x41\x05" }  },
1.1       albertel 44594:       /* --- pixel bitmap for cmex131 char#22 (noname) --- */
1.2       albertel 44595:       {  22,25273,                      /* character number, location */
                   44596:           1, 5,  -42, 5,      /* topleft row,col, and botleft row,col */
                   44597:           {  6,   43, 2, 6, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44598:             "\xff\x29\x00\x01\x05\x06" }  },
1.1       albertel 44599:       /* --- pixel bitmap for cmex131 char#23 (noname) --- */
1.2       albertel 44600:       {  23,28744,                      /* character number, location */
                   44601:           1, 0,  -42, 0,      /* topleft row,col, and botleft row,col */
                   44602:           {  6,   43, 2, 6, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44603:             "\xff\x29\x05\x01\x00\x06" }  },
1.1       albertel 44604:       /* --- pixel bitmap for cmex131 char#24 (noname) --- */
1.2       albertel 44605:       {  24,32247,                      /* character number, location */
                   44606:           1, 5,  -42, 5,      /* topleft row,col, and botleft row,col */
                   44607:           {  6,   43, 2, 7, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44608:             "\x00\x06\x00\xff\x29\x01\x05" }  },
1.1       albertel 44609:       /* --- pixel bitmap for cmex131 char#25 (noname) --- */
1.2       albertel 44610:       {  25,35726,                      /* character number, location */
                   44611:           1, 0,  -42, 0,      /* topleft row,col, and botleft row,col */
                   44612:           {  6,   43, 2, 6, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44613:             "\x00\x06\xff\x29\x05\x01" }  },
                   44614:       /* --- pixel bitmap for cmex131 char#26 \bigg{ --- */
                   44615:       {  26,39516,                      /* character number, location */
                   44616:           1, 2,  -42, 2,      /* topleft row,col, and botleft row,col */
                   44617:           { 10,   43, 3,46, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44618:             "\x82\x72\x71\x82\x30\xfd\x42\x40\x32\x81\x72\x72\x92"
                   44619:             "\xa1\x92\x50\xfd\x42\x40\x52\x91\xa2\x92" }  },
                   44620:       /* --- pixel bitmap for cmex131 char#27 \bigg} --- */
                   44621:       {  27,47031,                      /* character number, location */
                   44622:           1, 2,  -42, 2,      /* topleft row,col, and botleft row,col */
                   44623:           { 10,   43, 3,47, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44624:             "\x02\x92\xa1\x92\x50\xfd\x42\x40\x52\x91\xa2\x92\x72"
                   44625:             "\x71\x82\x30\xfd\x42\x40\x32\x81\x72\x72\x82" }  },
                   44626:       /* --- pixel bitmap for cmex131 char#28 \bigg< --- */
                   44627:       {  28,55137,                      /* character number, location */
                   44628:           1, 2,  -42, 2,      /* topleft row,col, and botleft row,col */
                   44629:           { 10,   43, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44630:             "\x00\x02\x08\x10\x40\x80\x00\x02\x04\x10\x40\x80\x00"
1.1       albertel 44631:             "\x02\x04\x10\x20\x80\x00\x02\x04\x10\x20\x80\x00\x01"
                   44632:             "\x04\x10\x80\x00\x02\x10\x40\x00\x02\x08\x20\x00\x01"
                   44633:             "\x04\x20\x80\x00\x04\x10\x40\x00\x02\x08\x40\x00\x01"
                   44634:             "\x08\x20" }  },
1.2       albertel 44635:       /* --- pixel bitmap for cmex131 char#29 \bigg> --- */
                   44636:       {  29,57914,                      /* character number, location */
                   44637:           1, 2,  -42, 2,      /* topleft row,col, and botleft row,col */
                   44638:           { 10,   43, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44639:             "\x01\x04\x20\x80\x00\x04\x10\x80\x00\x02\x08\x40\x00"
                   44640:             "\x01\x08\x20\x00\x01\x04\x10\x80\x00\x02\x10\x40\x00"
                   44641:             "\x02\x08\x20\x40\x00\x01\x02\x08\x10\x40\x00\x01\x02"
                   44642:             "\x08\x10\x40\x80\x00\x02\x08\x10\x40\x80\x00\x02\x04"
                   44643:             "\x10\x00" }  },
1.1       albertel 44644:       /* --- pixel bitmap for cmex131 char#30 (noname) --- */
1.2       albertel 44645:       {  30,60821,                      /* character number, location */
                   44646:           1, 1,  -42, 1,      /* topleft row,col, and botleft row,col */
                   44647:           { 17,   43, 3,155, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   44648:             "\xe0\x21\xe0\x12\xf1\xe0\x11\x10\xe2\x10\xf1\xe1\x20"
                   44649:             "\xd2\xe0\x11\xe0\x12\x30\xf1\xc1\x40\xb2\xe0\x11\xe0"
                   44650:             "\x12\x50\xf1\xa1\x60\x92\x60\xf1\x91\x70\x82\xe0\x11"
                   44651:             "\xe0\x12\x80\xf1\x71\x90\x62\x90\xf1\x61\xa0\x52\xe0"
                   44652:             "\x11\xe0\x12\xb0\xf1\x41\xc0\x32\xe0\x11\xe0\x12\xd0"
                   44653:             "\xf1\x21\xe0\x12\xe0\xf1\x11\xe0\x12\xe0\x11\xe0\x20" }  },
1.1       albertel 44654:       /* --- pixel bitmap for cmex131 char#31 (noname) --- */
1.2       albertel 44655:       {  31,63877,                      /* character number, location */
                   44656:           1, 1,  -42, 1,      /* topleft row,col, and botleft row,col */
                   44657:           { 17,   43, 3,158, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   44658:             "\x01\xe0\x22\xe0\x10\xf1\x11\xe0\x10\x12\xe0\xf1\x21"
                   44659:             "\xe0\x22\xe0\x21\xe0\x22\xc0\xf1\x41\xc0\x42\xe0\x21"
                   44660:             "\xe0\x22\xa0\xf1\x61\xa0\x62\x90\xf1\x71\x90\x72\xe0"
                   44661:             "\x21\xe0\x22\x70\xf1\x91\x70\x92\x60\xf1\xa1\x60\xa2"
                   44662:             "\xe0\x21\xe0\x22\x40\xf1\xc1\x40\xc2\xe0\x21\xe0\x22"
                   44663:             "\x20\xf1\xe1\x20\xe2\x10\xf1\xe0\x11\x10\xe0\x12\xe0"
                   44664:             "\x21" }  },
                   44665:       /* --- pixel bitmap for cmex131 char#32 \Bigg( --- */
                   44666:       {  32, 3092,                      /* character number, location */
                   44667:           1, 4,  -53, 4,      /* topleft row,col, and botleft row,col */
                   44668:           {  9,   54, 3,94, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44669:             "\x81\x71\x72\x71\x71\x72\x71\x40\xf1\x32\x40\x31\x50"
                   44670:             "\xf1\x22\x50\x21\x60\xf4\x12\x60\x11\x7f\xe2\x72\x81"
                   44671:             "\x70\xf4\x12\x60\x21\x60\xf1\x22\x50\x31\x50\xf1\x32"
                   44672:             "\x40\x41\x82\x81\x91\x82\x81\x91" }  },
                   44673:       /* --- pixel bitmap for cmex131 char#33 \Bigg) --- */
                   44674:       {  33, 8722,                      /* character number, location */
                   44675:           1, 1,  -53, 1,      /* topleft row,col, and botleft row,col */
                   44676:           {  9,   54, 3,97, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44677:             "\x01\x91\x82\x81\x91\x82\x81\x40\xf1\x42\x30\x51\x30"
                   44678:             "\xf1\x52\x20\x61\x20\xf4\x62\x10\x71\x10\xfe\x72\x72"
                   44679:             "\x71\x10\xf4\x62\x10\x61\x20\xf1\x52\x20\x51\x30\xf1"
                   44680:             "\x42\x30\x41\x72\x71\x71\x72\x71\x71\x80" }  },
                   44681:       /* --- pixel bitmap for cmex131 char#34 \Bigg[ --- */
                   44682:       {  34,14601,                      /* character number, location */
                   44683:           1, 5,  -53, 5,      /* topleft row,col, and botleft row,col */
                   44684:           {  6,   54, 2, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44685:             "\x00\x06\x00\xff\x33\x01\x05\x06" }  },
                   44686:       /* --- pixel bitmap for cmex131 char#35 \Bigg] --- */
                   44687:       {  35,20324,                      /* character number, location */
                   44688:           1, 0,  -53, 0,      /* topleft row,col, and botleft row,col */
                   44689:           {  6,   54, 2, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44690:             "\x00\x06\xff\x33\x05\x01\x00\x06" }  },
1.1       albertel 44691:       /* --- pixel bitmap for cmex131 char#36 (noname) --- */
1.2       albertel 44692:       {  36,26188,                      /* character number, location */
                   44693:           1, 5,  -53, 5,      /* topleft row,col, and botleft row,col */
                   44694:           {  7,   54, 2, 6, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44695:             "\xff\x34\x00\x01\x06\x07" }  },
1.1       albertel 44696:       /* --- pixel bitmap for cmex131 char#37 (noname) --- */
1.2       albertel 44697:       {  37,29646,                      /* character number, location */
                   44698:           1, 0,  -53, 0,      /* topleft row,col, and botleft row,col */
                   44699:           {  7,   54, 2, 6, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44700:             "\xff\x34\x06\x01\x00\x07" }  },
1.1       albertel 44701:       /* --- pixel bitmap for cmex131 char#38 (noname) --- */
1.2       albertel 44702:       {  38,33164,                      /* character number, location */
                   44703:           1, 5,  -53, 5,      /* topleft row,col, and botleft row,col */
                   44704:           {  7,   54, 2, 7, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44705:             "\x00\x07\x00\xff\x34\x01\x06" }  },
1.1       albertel 44706:       /* --- pixel bitmap for cmex131 char#39 (noname) --- */
1.2       albertel 44707:       {  39,36630,                      /* character number, location */
                   44708:           1, 0,  -53, 0,      /* topleft row,col, and botleft row,col */
                   44709:           {  7,   54, 2, 6, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44710:             "\x00\x07\xff\x34\x06\x01" }  },
                   44711:       /* --- pixel bitmap for cmex131 char#40 \Bigg{ --- */
                   44712:       {  40,40606,                      /* character number, location */
                   44713:           1, 3,  -53, 3,      /* topleft row,col, and botleft row,col */
                   44714:           {  9,   54, 3,64, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44715:             "\x81\x71\x71\x72\x20\xfe\x42\x30\xf3\x42\x30\x32\x71"
                   44716:             "\x71\x60\xf1\x11\x70\x21\x91\x82\x40\xfe\x42\x30\xf3"
                   44717:             "\x42\x30\x52\x81\x91\x91" }  },
                   44718:       /* --- pixel bitmap for cmex131 char#41 \Bigg} --- */
                   44719:       {  41,48122,                      /* character number, location */
                   44720:           1, 3,  -53, 3,      /* topleft row,col, and botleft row,col */
                   44721:           {  9,   54, 3,71, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44722:             "\x01\x92\x82\x82\x81\x40\xfe\x42\x30\xf2\x42\x30\xf1"
                   44723:             "\x52\x20\x62\x10\xf1\x72\x62\x10\xf1\x52\x20\xfe\x42"
                   44724:             "\x30\xf2\x42\x30\x41\x72\x62\x62\x61\x80" }  },
                   44725:       /* --- pixel bitmap for cmex131 char#42 \Bigg< --- */
                   44726:       {  42,55945,                      /* character number, location */
                   44727:           1, 3,  -54, 3,      /* topleft row,col, and botleft row,col */
                   44728:           { 10,   55, 3,108, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   44729:             "\xf1\x91\xf2\x81\x10\xf2\x71\x20\xf2\x61\x30\xf2\x51"
                   44730:             "\x40\xf2\x41\x50\xf2\x31\x60\xf2\x21\x70\xf2\x11\x8f"
                   44731:             "\x21\x90\xf2\x11\x80\xf2\x21\x70\xf2\x31\x60\xf2\x41"
                   44732:             "\x50\xf2\x51\x40\xf2\x61\x30\xf2\x71\x20\xf2\x81\x10"
                   44733:             "\xf1\x91" }  },
                   44734:       /* --- pixel bitmap for cmex131 char#43 \Bigg> --- */
                   44735:       {  43,58723,                      /* character number, location */
                   44736:           1, 2,  -54, 2,      /* topleft row,col, and botleft row,col */
                   44737:           { 10,   55, 3,109, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   44738:             "\xf1\x01\x90\xf2\x11\x80\xf2\x21\x70\xf2\x31\x60\xf2"
                   44739:             "\x41\x50\xf2\x51\x40\xf2\x61\x30\xf2\x71\x20\xf2\x81"
                   44740:             "\x10\xf2\x91\xf2\x81\x10\xf2\x71\x20\xf2\x61\x30\xf2"
                   44741:             "\x51\x40\xf2\x41\x50\xf2\x31\x60\xf2\x21\x70\xf2\x11"
                   44742:             "\x8f\x11\x90" }  },
                   44743:       /* --- pixel bitmap for cmex131 char#44 / --- */
                   44744:       {  44,61769,                      /* character number, location */
                   44745:           1, 1,  -53, 1,      /* topleft row,col, and botleft row,col */
                   44746:           { 21,   54, 3,217, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   44747:             "\xe0\x61\xe0\x52\xf1\xe0\x51\x10\xe0\x42\x10\xf1\xe0"
                   44748:             "\x41\x20\xe0\x32\xe0\x51\xe0\x52\x30\xf1\xe0\x21\x40"
                   44749:             "\xe0\x12\x40\xf1\xe0\x11\x50\xe2\xe0\x51\xe0\x52\x60"
                   44750:             "\xf1\xd1\x70\xc2\x70\xf1\xc1\x80\xb2\xe0\x51\xe0\x52"
                   44751:             "\x90\xf1\xa1\xa0\x92\xe0\x51\xe0\x52\xb0\xf1\x81\xc0"
                   44752:             "\x72\xc0\xf1\x71\xd0\x62\xe0\x51\xe0\x52\xe0\xf1\x51"
                   44753:             "\xe0\x10\x42\xe0\x10\xf1\x41\xe0\x20\x32\xe0\x51\xe0"
                   44754:             "\x52\xe0\x30\xf1\x21\xe0\x40\x12\xe0\x40\xf1\x11\xe0"
                   44755:             "\x52\xe0\x51\xe0\x60" }  },
                   44756:       /* --- pixel bitmap for cmex131 char#45 \ --- */
                   44757:       {  45,64829,                      /* character number, location */
                   44758:           1, 1,  -53, 1,      /* topleft row,col, and botleft row,col */
                   44759:           { 21,   54, 3,220, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   44760:             "\x01\xe0\x62\xe0\x50\xf1\x11\xe0\x50\x12\xe0\x40\xf1"
                   44761:             "\x21\xe0\x40\x22\xe0\x61\xe0\x62\xe0\x20\xf1\x41\xe0"
                   44762:             "\x20\x42\xe0\x10\xf1\x51\xe0\x10\x52\xe0\x61\xe0\x62"
                   44763:             "\xd0\xf1\x71\xd0\x72\xc0\xf1\x81\xc0\x82\xe0\x61\xe0"
                   44764:             "\x62\xa0\xf1\xa1\xa0\xa2\xe0\x61\xe0\x62\x80\xf1\xc1"
                   44765:             "\x80\xc2\x70\xf1\xd1\x70\xd2\xe0\x61\xe0\x62\x50\xf1"
                   44766:             "\xe0\x11\x50\xe0\x12\x40\xf1\xe0\x21\x40\xe0\x22\xe0"
                   44767:             "\x61\xe0\x62\x20\xf1\xe0\x41\x20\xe0\x42\x10\xf1\xe0"
                   44768:             "\x51\x10\xe0\x52\xe0\x61" }  },
                   44769:       /* --- pixel bitmap for cmex131 char#46 / --- */
                   44770:       {  46,60025,                      /* character number, location */
                   44771:           1, 1,  -31, 1,      /* topleft row,col, and botleft row,col */
                   44772:           { 13,   32, 3,89, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44773:             "\xc1\xb2\xf1\xb1\x10\xa2\xb1\xb2\x20\xf1\x91\x30\x82"
                   44774:             "\x30\xf1\x81\x40\x72\xb1\xb2\x50\xf1\x61\x60\x52\xb1"
                   44775:             "\xb2\x70\xf1\x41\x80\x32\x80\xf1\x31\x90\x22\xb1\xb2"
                   44776:             "\xa0\xf1\x11\xb2\xb1\xc2" }  },
                   44777:       /* --- pixel bitmap for cmex131 char#47 \ --- */
                   44778:       {  47,63077,                      /* character number, location */
                   44779:           1, 1,  -31, 1,      /* topleft row,col, and botleft row,col */
                   44780:           { 13,   32, 3,92, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44781:             "\x01\xc2\xb0\xf1\x11\xb0\x12\xc1\xc2\x90\xf1\x31\x90"
                   44782:             "\x32\x80\xf1\x41\x80\x42\xc1\xc2\x60\xf1\x61\x60\x62"
                   44783:             "\xc1\xc2\x40\xf1\x81\x40\x82\x30\xf1\x91\x30\x92\xc1"
                   44784:             "\xc2\x10\xf1\xb1\x10\xb2\xc1" }  },
                   44785:       /* --- pixel bitmap for cmex131 char#48 \leftparentop --- */
                   44786:       {  48, 3980,                      /* character number, location */
                   44787:           0, 5,  -33, 5,      /* topleft row,col, and botleft row,col */
                   44788:           { 10,   33, 3,57, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44789:             "\x91\x81\x82\x81\x20\xf1\x61\x30\x51\x40\xf1\x42\x40"
                   44790:             "\x41\x82\x50\xf1\x31\x60\xf1\x22\x60\x21\x70\xf5\x12"
                   44791:             "\x7f\xa2\x82" }  },
                   44792:       /* --- pixel bitmap for cmex131 char#49 \rightparentop --- */
                   44793:       {  49, 9597,                      /* character number, location */
                   44794:           0, 1,  -33, 1,      /* topleft row,col, and botleft row,col */
                   44795:           { 10,   33, 3,58, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44796:             "\x01\xa1\x92\x91\x70\xf1\x31\x60\x41\x50\xf1\x42\x40"
                   44797:             "\x51\x92\x30\xf1\x61\x30\xf1\x62\x20\x71\x20\xf5\x72"
                   44798:             "\x10\xfa\x82" }  },
1.1       albertel 44799:       /* --- pixel bitmap for cmex131 char#50 (noname) --- */
1.2       albertel 44800:       {  50,15475,                      /* character number, location */
                   44801:           0, 6,  -32, 6,      /* topleft row,col, and botleft row,col */
                   44802:           {  6,   32, 3,13, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44803:             "\x06\x0f\xe1\x5f\xe1\x51\x51" }  },
1.1       albertel 44804:       /* --- pixel bitmap for cmex131 char#51 (noname) --- */
1.2       albertel 44805:       {  51,21185,                      /* character number, location */
                   44806:           0, 0,  -32, 0,      /* topleft row,col, and botleft row,col */
                   44807:           {  6,   32, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44808:             "\x06\xfe\x51\xfe\x51\x51" }  },
1.1       albertel 44809:       /* --- pixel bitmap for cmex131 char#52 (noname) --- */
1.2       albertel 44810:       {  52,16327,                      /* character number, location */
                   44811:           1, 6,  -31, 6,      /* topleft row,col, and botleft row,col */
                   44812:           {  6,   32, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44813:             "\xfe\x01\x5f\xe1\x51\x56" }  },
1.1       albertel 44814:       /* --- pixel bitmap for cmex131 char#53 (noname) --- */
1.2       albertel 44815:       {  53,22024,                      /* character number, location */
                   44816:           1, 0,  -31, 0,      /* topleft row,col, and botleft row,col */
                   44817:           {  6,   32, 3,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44818:             "\xfe\x51\xfe\x51\x57" }  },
1.1       albertel 44819:       /* --- pixel bitmap for cmex131 char#54 (noname) --- */
1.2       albertel 44820:       {  54,17076,                      /* character number, location */
                   44821:           1, 6,  -12, 6,      /* topleft row,col, and botleft row,col */
                   44822:           {  1,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44823:             "\xff\x1f" }  },
1.1       albertel 44824:       /* --- pixel bitmap for cmex131 char#55 (noname) --- */
1.2       albertel 44825:       {  55,22760,                      /* character number, location */
                   44826:           1, 5,  -12, 5,      /* topleft row,col, and botleft row,col */
                   44827:           {  1,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44828:             "\xff\x1f" }  },
                   44829:       /* --- pixel bitmap for cmex131 char#56 \leftbracetop --- */
                   44830:       {  56,41541,                      /* character number, location */
                   44831:          -1, 7,  -17, 7,      /* topleft row,col, and botleft row,col */
                   44832:           {  6,   16, 3,15, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44833:             "\x51\x32\x32\x33\x32\x3f\xa3\x30" }  },
                   44834:       /* --- pixel bitmap for cmex131 char#57 \rightbracetop --- */
                   44835:       {  57,49058,                      /* character number, location */
                   44836:          -1, 3,  -17, 3,      /* topleft row,col, and botleft row,col */
                   44837:           {  7,   16, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44838:             "\x02\x62\x62\x62\x53\x10\xfa\x43" }  },
                   44839:       /* --- pixel bitmap for cmex131 char#58 \leftbracebot --- */
                   44840:       {  58,42422,                      /* character number, location */
                   44841:           1, 7,  -15, 7,      /* topleft row,col, and botleft row,col */
                   44842:           {  6,   16, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44843:             "\xfa\x03\x30\x12\x43\x42\x52\x61" }  },
                   44844:       /* --- pixel bitmap for cmex131 char#59 \rightbracebot --- */
                   44845:       {  59,49940,                      /* character number, location */
                   44846:           1, 3,  -15, 3,      /* topleft row,col, and botleft row,col */
                   44847:           {  7,   16, 3,15, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44848:             "\xfa\x43\x33\x42\x42\x42\x42\x53" }  },
                   44849:       /* --- pixel bitmap for cmex131 char#60 \leftbracemid --- */
                   44850:       {  60,43378,                      /* character number, location */
                   44851:           1, 3,  -34, 3,      /* topleft row,col, and botleft row,col */
                   44852:           {  7,   35, 3,32, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44853:             "\xfb\x43\x42\x43\x42\x42\x42\x41\x72\x62\x62\x53\x52"
                   44854:             "\x10\xfb\x43" }  },
                   44855:       /* --- pixel bitmap for cmex131 char#61 \rightbracemid --- */
                   44856:       {  61,50897,                      /* character number, location */
                   44857:           1, 7,  -34, 7,      /* topleft row,col, and botleft row,col */
                   44858:           {  6,   35, 3,41, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44859:             "\xfb\x03\x30\x12\x43\x20\xf1\x22\x20\x32\x61\x32\x10"
                   44860:             "\xf1\x22\x20\x13\x32\x3f\xb3\x30" }  },
                   44861:       /* --- pixel bitmap for cmex131 char#62 \leftbracebar --- */
                   44862:       {  62,44236,                      /* character number, location */
                   44863:           1, 7,   -6, 7,      /* topleft row,col, and botleft row,col */
                   44864:           {  3,    7, 3, 4, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44865:             "\xf6\x03" }  },
1.1       albertel 44866:       /* --- pixel bitmap for cmex131 char#63 (noname) --- */
1.2       albertel 44867:       {  63,68579,                      /* character number, location */
                   44868:           1, 6,  -12, 6,      /* topleft row,col, and botleft row,col */
                   44869:           {  1,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44870:             "\xff\x1f" }  },
                   44871:       /* --- pixel bitmap for cmex131 char#64 \leftparenbot --- */
                   44872:       {  64, 4848,                      /* character number, location */
                   44873:           2, 5,  -31, 5,      /* topleft row,col, and botleft row,col */
                   44874:           { 10,   33, 3,58, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44875:             "\xfa\x02\x80\xf5\x12\x70\x21\x70\xf1\x22\x60\xf1\x31"
                   44876:             "\x60\x32\x91\x50\xf1\x42\x40\x51\x40\xf1\x61\x30\x71"
                   44877:             "\x92\x91\xa1" }  },
                   44878:       /* --- pixel bitmap for cmex131 char#65 \rightparenbot --- */
                   44879:       {  65,10452,                      /* character number, location */
                   44880:           2, 1,  -31, 1,      /* topleft row,col, and botleft row,col */
                   44881:           { 10,   33, 3,57, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44882:             "\xfa\x82\xf5\x72\x10\x71\x20\xf1\x62\x20\xf1\x61\x30"
                   44883:             "\x52\x81\x40\xf1\x42\x40\x41\x50\xf1\x31\x60\x21\x82"
                   44884:             "\x81\x81\x92" }  },
                   44885:       /* --- pixel bitmap for cmex131 char#66 \leftparenbar --- */
                   44886:       {  66, 5710,                      /* character number, location */
                   44887:           1, 5,  -12, 5,      /* topleft row,col, and botleft row,col */
                   44888:           {  2,   13, 3, 4, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44889:             "\xfc\x02" }  },
                   44890:       /* --- pixel bitmap for cmex131 char#67 \rightparenbar --- */
                   44891:       {  67,11301,                      /* character number, location */
                   44892:           1, 9,  -12, 9,      /* topleft row,col, and botleft row,col */
                   44893:           {  2,   13, 3, 4, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44894:             "\xfc\x02" }  },
                   44895:       /* --- pixel bitmap for cmex131 char#68 \Big< --- */
                   44896:       {  68,54453,                      /* character number, location */
                   44897:           1, 2,  -32, 2,      /* topleft row,col, and botleft row,col */
                   44898:           {  8,   33, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44899:             "\x80\x80\x40\x40\x20\x20\x10\x10\x08\x08\x08\x04\x04"
                   44900:             "\x02\x02\x01\x01\x01\x02\x02\x04\x04\x08\x08\x08\x10"
                   44901:             "\x10\x20\x20\x40\x40\x80\x80" }  },
                   44902:       /* --- pixel bitmap for cmex131 char#69 \Big> --- */
                   44903:       {  69,57229,                      /* character number, location */
                   44904:           1, 2,  -32, 2,      /* topleft row,col, and botleft row,col */
                   44905:           {  7,   33, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44906:             "\x81\x80\x40\x20\x20\x10\x10\x08\x04\x04\x02\x02\x81"
1.1       albertel 44907:             "\x80\x40\x20\x08\x04\x82\x40\x10\x08\x04\x81\x20\x10"
                   44908:             "\x08\x02\x01" }  },
                   44909:       /* --- pixel bitmap for cmex131 char#70 \bigsqcup --- */
1.2       albertel 44910:       {  70,79158,                      /* character number, location */
                   44911:           0, 1,  -18, 1,      /* topleft row,col, and botleft row,col */
                   44912:           { 13,   18, 3,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44913:             "\xfe\x01\xb1\x0f\x11\xb1\x0d" }  },
1.1       albertel 44914:       /* --- pixel bitmap for cmex131 char#71 \Bigsqcup --- */
1.2       albertel 44915:       {  71,80085,                      /* character number, location */
                   44916:           0, 1,  -25, 1,      /* topleft row,col, and botleft row,col */
                   44917:           { 18,   25, 2, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44918:             "\xff\x17\x00\x01\x10\x01\x00\x12" }  },
                   44919:       /* --- pixel bitmap for cmex131 char#72 \oint --- */
                   44920:       {  72,98887,                      /* character number, location */
                   44921:           0, 1,  -20, 1,      /* topleft row,col, and botleft row,col */
                   44922:           { 11,   20, 3,53, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44923:             "\x73\x81\x21\xf3\x61\x40\x43\x71\x11\x11\x30\xf3\x21"
                   44924:             "\x21\x21\x20\x31\x11\x11\x73\x40\xf3\x41\x61\x21\x83"
                   44925:             "\x72" }  },
1.1       albertel 44926:       /* --- pixel bitmap for cmex131 char#73 \Bigoint --- */
1.2       albertel 44927:       {  73,99941,                      /* character number, location */
                   44928:           0, 1,  -40, 1,      /* topleft row,col, and botleft row,col */
                   44929:           { 16,   40, 3,129, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   44930:             "\xd2\xd1\x21\xb2\x12\xb1\x22\xb1\x40\xf1\xa2\x40\xf1"
                   44931:             "\xa1\x50\xf2\x92\x50\x91\x60\xf1\x82\x60\x64\xb1\x23"
                   44932:             "\x91\x31\x21\x40\xf3\x31\x32\x31\x30\x41\x21\x31\x93"
                   44933:             "\x21\xb4\x60\xf1\x62\x80\x61\x90\xf2\x52\x90\xf1\x51"
                   44934:             "\xa0\xf1\x42\xa0\x41\xb2\x21\xb2\x12\xb1\x21\xd2\xd1" }  },
1.1       albertel 44935:       /* --- pixel bitmap for cmex131 char#74 \bigodot --- */
1.2       albertel 44936:       {  74,81095,                      /* character number, location */
                   44937:           0, 1,  -18, 1,      /* topleft row,col, and botleft row,col */
                   44938:           { 18,   18, 3,69, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44939:             "\x66\xa2\x62\x71\xa1\x51\xc1\x20\xf1\x11\xe1\x1f\x11"
                   44940:             "\xe0\x21\x0f\x11\x72\x71\x0f\x11\xe0\x21\xf1\x11\xe1"
                   44941:             "\x10\x21\xc1\x51\xa1\x72\x62\xa6\x61" }  },
1.1       albertel 44942:       /* --- pixel bitmap for cmex131 char#75 \Bigodot --- */
1.2       albertel 44943:       {  75,82264,                      /* character number, location */
                   44944:           0, 1,  -25, 1,      /* topleft row,col, and botleft row,col */
                   44945:           { 25,   25, 3,113, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   44946:             "\x97\xe0\x22\x72\xc2\xb2\x91\xe0\x11\x71\xe0\x31\x30"
                   44947:             "\xf1\x21\xe0\x51\x20\xf1\x11\xe0\x71\x1f\x11\xe0\x91"
                   44948:             "\x0f\x21\xa3\xa1\x0f\x11\xe0\x91\xf1\x11\xe0\x71\x10"
                   44949:             "\xf1\x21\xe0\x51\x20\x31\xe0\x31\x71\xe0\x11\x92\xb2"
                   44950:             "\xc2\x72\xe0\x27\x90" }  },
1.1       albertel 44951:       /* --- pixel bitmap for cmex131 char#76 \bigoplus --- */
1.2       albertel 44952:       {  76,83279,                      /* character number, location */
                   44953:           0, 1,  -18, 1,      /* topleft row,col, and botleft row,col */
                   44954:           { 18,   18, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44955:             "\xc0\x0f\xc0\xc8\x80\x20\x04\x81\x20\x02\x02\x09\x08"
                   44956:             "\x14\x20\x60\x80\x80\xff\xff\x07\x08\x18\x20\x60\x80"
                   44957:             "\x80\x02\x02\x09\x08\x44\x20\x08\x82\x10\x30\x32\x00"
                   44958:             "\x3f\x00" }  },
1.1       albertel 44959:       /* --- pixel bitmap for cmex131 char#77 \Bigoplus --- */
1.2       albertel 44960:       {  77,84473,                      /* character number, location */
                   44961:           0, 1,  -25, 1,      /* topleft row,col, and botleft row,col */
                   44962:           { 25,   25, 3,117, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   44963:             "\x97\xe0\x22\x31\x32\xc2\x51\x52\x91\x71\x71\x71\x81"
                   44964:             "\x81\x30\xf1\x21\x91\x91\x20\xf1\x11\xa1\xa1\x1f\x21"
                   44965:             "\xb1\xb1\x0e\x0b\x0f\x21\xb1\xb1\xf1\x11\xa1\xa1\x10"
                   44966:             "\xf1\x21\x91\x91\x20\x31\x81\x81\x71\x71\x71\x92\x51"
                   44967:             "\x52\xc2\x31\x32\xe0\x27\x90" }  },
1.1       albertel 44968:       /* --- pixel bitmap for cmex131 char#78 \bigotimes --- */
1.2       albertel 44969:       {  78,85525,                      /* character number, location */
                   44970:           0, 1,  -18, 1,      /* topleft row,col, and botleft row,col */
                   44971:           { 18,   18, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44972:             "\xc0\x0f\xc0\xc0\x80\x00\x04\x03\x30\x12\x20\x89\x40"
                   44973:             "\x14\x84\x60\x20\x81\x01\x03\x06\x0c\x18\x48\x60\x10"
                   44974:             "\x82\x22\x10\x49\x80\xc4\x00\x0c\x02\x10\x30\x30\x00"
                   44975:             "\x3f\x00" }  },
1.1       albertel 44976:       /* --- pixel bitmap for cmex131 char#79 \Bigotimes --- */
1.2       albertel 44977:       {  79,86728,                      /* character number, location */
                   44978:           0, 1,  -25, 1,      /* topleft row,col, and botleft row,col */
                   44979:           { 25,   25, 3,155, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   44980:             "\x97\xe0\x22\x72\xc2\xb2\x91\xe0\x11\x72\xe0\x12\x51"
                   44981:             "\x21\xd1\x21\x41\x31\xb1\x31\x31\x51\x91\x51\x21\x61"
                   44982:             "\x71\x61\x11\x81\x51\x82\x91\x31\x92\xa1\x11\xa2\xb1"
                   44983:             "\xb2\xa1\x11\xa2\x91\x31\x92\x81\x51\x81\x11\x61\x71"
                   44984:             "\x61\x21\x51\x91\x51\x31\x31\xb1\x31\x41\x21\xd1\x21"
                   44985:             "\x52\xe0\x12\x71\xe0\x11\x92\xb2\xc2\x72\xe0\x27\x91" }  },
                   44986:       /* --- pixel bitmap for cmex131 char#80 \sum --- */
                   44987:       {  80,88130,                      /* character number, location */
                   44988:           0, 1,  -18, 1,      /* topleft row,col, and botleft row,col */
                   44989:           { 17,   18, 3,71, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44990:             "\x0e\x01\x22\xa4\x21\xc2\x31\xc1\x41\xc1\x32\xe0\x22"
                   44991:             "\xe0\x21\xb0\xf1\x61\xa0\x51\xe0\x12\xe0\x11\xe0\x11"
                   44992:             "\xc1\x22\xb1\x31\xb2\x21\xa4\x1e\x01\x21" }  },
                   44993:       /* --- pixel bitmap for cmex131 char#81 \prod --- */
                   44994:       {  81,91076,                      /* character number, location */
                   44995:           0, 1,  -18, 1,      /* topleft row,col, and botleft row,col */
                   44996:           { 15,   18, 3,20, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   44997:             "\x0e\x01\xfe\x22\x72\x20\x22\x72\x26\x36" }  },
                   44998:       /* --- pixel bitmap for cmex131 char#82 \int --- */
                   44999:       {  82,96842,                      /* character number, location */
                   45000:           0, 1,  -20, 1,      /* topleft row,col, and botleft row,col */
                   45001:           { 11,   20, 3,29, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45002:             "\x73\x81\x21\xf3\x61\x40\xf7\x51\x50\xf3\x41\x61\x21"
                   45003:             "\x83\x74" }  },
1.1       albertel 45004:       /* --- pixel bitmap for cmex131 char#83 \bigcup --- */
1.2       albertel 45005:       {  83,100793,                     /* character number, location */
                   45006:           0, 1,  -18, 1,      /* topleft row,col, and botleft row,col */
                   45007:           { 13,   18, 3,21, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45008:             "\xfd\x01\xb1\xf1\x11\x91\x10\x22\x52\x65\x42" }  },
1.1       albertel 45009:       /* --- pixel bitmap for cmex131 char#84 \bigcap --- */
1.2       albertel 45010:       {  84,102565,                     /* character number, location */
                   45011:           0, 1,  -18, 1,      /* topleft row,col, and botleft row,col */
                   45012:           { 13,   18, 3,20, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45013:             "\x45\x62\x52\x20\xf1\x11\x91\x1f\xd1\xb1" }  },
1.1       albertel 45014:       /* --- pixel bitmap for cmex131 char#85 \biguplus --- */
1.2       albertel 45015:       {  85,104402,                     /* character number, location */
                   45016:           0, 1,  -18, 1,      /* topleft row,col, and botleft row,col */
                   45017:           { 13,   18, 3,47, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45018:             "\xf3\x01\xb1\x0f\x31\x51\x51\x01\x19\x11\x0f\x31\x51"
                   45019:             "\x51\x01\xb1\xf1\x11\x91\x10\x22\x52\x65\x44" }  },
1.1       albertel 45020:       /* --- pixel bitmap for cmex131 char#86 \bigwedge --- */
1.2       albertel 45021:       {  86,106252,                     /* character number, location */
                   45022:           0, 1,  -18, 1,      /* topleft row,col, and botleft row,col */
                   45023:           { 13,   18, 3,50, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45024:             "\xf1\x61\x60\xf2\x51\x11\x50\xf2\x41\x31\x40\xf1\x31"
                   45025:             "\x51\x30\xf2\x21\x71\x20\xf2\x11\x91\x1f\x11\xb1" }  },
1.1       albertel 45026:       /* --- pixel bitmap for cmex131 char#87 \bigvee --- */
1.2       albertel 45027:       {  87,107964,                     /* character number, location */
                   45028:           0, 1,  -18, 1,      /* topleft row,col, and botleft row,col */
                   45029:           { 13,   18, 3,51, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45030:             "\xf1\x01\xb1\xf2\x11\x91\x10\xf2\x21\x71\x20\xf1\x31"
                   45031:             "\x51\x30\xf2\x41\x31\x40\xf2\x51\x11\x50\xf1\x61\x62" }  },
1.1       albertel 45032:       /* --- pixel bitmap for cmex131 char#88 \Bigsum --- */
1.2       albertel 45033:       {  88,89615,                      /* character number, location */
                   45034:           0, 1,  -25, 1,      /* topleft row,col, and botleft row,col */
                   45035:           { 24,   25, 3,115, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   45036:             "\x0e\x08\x24\xe5\x23\xe0\x32\x33\xe0\x31\x43\xe0\x31"
                   45037:             "\x34\xe0\x73\xe0\x83\xe0\x83\xe0\x74\xe0\x73\xe0\x83"
                   45038:             "\xe0\x83\xe0\x72\xe0\x81\xe0\x81\xe0\x82\xe0\x72\xe0"
                   45039:             "\x72\xe0\x81\xe0\x31\x41\xe0\x31\x41\xe0\x32\x32\xe0"
                   45040:             "\x14\x2e\x07\x2e\x08\x21" }  },
1.1       albertel 45041:       /* --- pixel bitmap for cmex131 char#89 \Bigprod --- */
1.2       albertel 45042:       {  89,92700,                      /* character number, location */
                   45043:           0, 1,  -25, 1,      /* topleft row,col, and botleft row,col */
                   45044:           { 21,   25, 3,34, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45045:             "\x0e\x07\x24\x94\x20\xfe\x33\x93\x30\xf5\x33\x93\x30"
                   45046:             "\x25\x75\x29\x39" }  },
1.1       albertel 45047:       /* --- pixel bitmap for cmex131 char#90 \Bigint --- */
1.2       albertel 45048:       {  90,97864,                      /* character number, location */
                   45049:           0, 1,  -40, 1,      /* topleft row,col, and botleft row,col */
                   45050:           { 16,   40, 3,105, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   45051:             "\xd2\xd1\x21\xb2\x12\xb1\x22\xb1\x40\xf1\xa2\x40\xf1"
                   45052:             "\xa1\x50\xf2\x92\x50\x91\x60\xf3\x82\x60\x81\x70\xf3"
                   45053:             "\x72\x70\x71\x80\xf3\x62\x80\x61\x90\xf2\x52\x90\xf1"
                   45054:             "\x51\xa0\xf1\x42\xa0\x41\xb2\x21\xb2\x12\xb1\x21\xd2"
                   45055:             "\xd4" }  },
1.1       albertel 45056:       /* --- pixel bitmap for cmex131 char#91 \Bigcup --- */
1.2       albertel 45057:       {  91,101728,                     /* character number, location */
                   45058:           0, 1,  -25, 1,      /* topleft row,col, and botleft row,col */
                   45059:           { 18,   25, 3,39, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45060:             "\xfe\x01\xe0\x21\x0f\x31\xe0\x21\xf1\x11\xe1\x10\x21"
                   45061:             "\xc1\x51\xa1\x72\x62\xa6\x60" }  },
1.1       albertel 45062:       /* --- pixel bitmap for cmex131 char#92 \Bigcap --- */
1.2       albertel 45063:       {  92,103507,                     /* character number, location */
                   45064:           0, 1,  -25, 1,      /* topleft row,col, and botleft row,col */
                   45065:           { 18,   25, 3,38, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45066:             "\x66\xa2\x62\x71\xa1\x51\xc1\x20\xf1\x11\xe1\x1f\xe1"
                   45067:             "\xe0\x21\x0f\x31\xe0\x21" }  },
1.1       albertel 45068:       /* --- pixel bitmap for cmex131 char#93 \Biguplus --- */
1.2       albertel 45069:       {  93,105420,                     /* character number, location */
                   45070:           0, 1,  -25, 1,      /* topleft row,col, and botleft row,col */
                   45071:           { 18,   25, 3,59, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45072:             "\xf4\x01\xe0\x21\x0f\x51\x81\x71\x01\x1e\x11\x0f\x51"
                   45073:             "\x81\x71\x01\xe0\x21\xf1\x11\xe1\x10\x21\xc1\x51\xa1"
                   45074:             "\x72\x62\xa6\x60" }  },
1.1       albertel 45075:       /* --- pixel bitmap for cmex131 char#94 \Bigwedge --- */
1.2       albertel 45076:       {  94,107161,                     /* character number, location */
                   45077:           0, 1,  -25, 1,      /* topleft row,col, and botleft row,col */
                   45078:           { 18,   25, 3,72, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45079:             "\x91\x80\xf1\x82\x80\xf2\x71\x21\x70\xf2\x61\x41\x60"
                   45080:             "\xf2\x51\x61\x50\xf2\x41\x81\x40\xf1\x31\xa1\x30\xf2"
                   45081:             "\x21\xc1\x20\xf2\x11\xe1\x1f\x11\xe0\x21" }  },
1.1       albertel 45082:       /* --- pixel bitmap for cmex131 char#95 \Bigvee --- */
1.2       albertel 45083:       {  95,108874,                     /* character number, location */
                   45084:           0, 1,  -25, 1,      /* topleft row,col, and botleft row,col */
                   45085:           { 18,   25, 3,73, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45086:             "\xf1\x01\xe0\x21\xf2\x11\xe1\x10\xf2\x21\xc1\x20\xf1"
                   45087:             "\x31\xa1\x30\xf2\x41\x81\x40\xf2\x51\x61\x50\xf2\x61"
                   45088:             "\x41\x60\xf2\x71\x21\x70\xf1\x82\x80\x91\x81" }  },
                   45089:       /* --- pixel bitmap for cmex131 char#96 \coprod --- */
                   45090:       {  96,94195,                      /* character number, location */
                   45091:           0, 1,  -18, 1,      /* topleft row,col, and botleft row,col */
                   45092:           { 15,   18, 3,20, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45093:             "\x06\x36\xfe\x22\x72\x20\x22\x72\x2e\x01" }  },
1.1       albertel 45094:       /* --- pixel bitmap for cmex131 char#97 \Bigcoprod --- */
1.2       albertel 45095:       {  97,95821,                      /* character number, location */
                   45096:           0, 1,  -25, 1,      /* topleft row,col, and botleft row,col */
                   45097:           { 21,   25, 3,34, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45098:             "\x09\x39\x25\x75\x20\xfe\x33\x93\x30\xf5\x33\x93\x30"
                   45099:             "\x24\x94\x2e\x07" }  },
1.1       albertel 45100:       /* --- pixel bitmap for cmex131 char#98 ^ --- */
1.2       albertel 45101:       {  98,109639,                     /* character number, location */
                   45102:          13, 0,   10, 0,      /* topleft row,col, and botleft row,col */
                   45103:           { 10,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45104:             "\x30\x30\x33\x30" }  },
1.1       albertel 45105:       /* --- pixel bitmap for cmex131 char#99 ^ --- */
1.2       albertel 45106:       {  99,110510,                     /* character number, location */
                   45107:          14, 0,   10, 0,      /* topleft row,col, and botleft row,col */
                   45108:           { 18,    4, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45109:             "\x74\xb3\x43\x53\xa3\x11\xe0\x21" }  },
1.1       albertel 45110:       /* --- pixel bitmap for cmex131 char#100 ^ --- */
1.2       albertel 45111:       { 100,111594,                     /* character number, location */
                   45112:          14, 0,   10, 0,      /* topleft row,col, and botleft row,col */
                   45113:           { 26,    4, 3,18, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45114:             "\xb4\xe0\x35\x45\x75\xe5\x11\xe0\xa1" }  },
1.1       albertel 45115:       /* --- pixel bitmap for cmex131 char#101 ~ --- */
1.2       albertel 45116:       { 101,112307,                     /* character number, location */
                   45117:          13, 0,   11, 0,      /* topleft row,col, and botleft row,col */
                   45118:           { 10,    2, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45119:             "\x3e\xcf\x07" }  },
1.1       albertel 45120:       /* --- pixel bitmap for cmex131 char#102 ~ --- */
1.2       albertel 45121:       { 102,113223,                     /* character number, location */
                   45122:          14, 0,   11, 0,      /* topleft row,col, and botleft row,col */
                   45123:           { 18,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45124:             "\xf8\x00\x3a\x1e\x17\xc0\x07" }  },
1.1       albertel 45125:       /* --- pixel bitmap for cmex131 char#103 ~ --- */
1.2       albertel 45126:       { 103,114354,                     /* character number, location */
                   45127:          14, 0,   11, 0,      /* topleft row,col, and botleft row,col */
                   45128:           { 26,    3, 3,15, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45129:             "\x57\xc2\x24\x46\x44\x22\xc7\x50" }  },
                   45130:       /* --- pixel bitmap for cmex131 char#104 \Big[ --- */
                   45131:       { 104,12857,                      /* character number, location */
                   45132:           1, 4,  -31, 4,      /* topleft row,col, and botleft row,col */
                   45133:           {  5,   32, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45134:             "\x05\x0f\xe1\x4f\xe1\x45" }  },
                   45135:       /* --- pixel bitmap for cmex131 char#105 \Big] --- */
                   45136:       { 105,18606,                      /* character number, location */
                   45137:           1, 0,  -31, 0,      /* topleft row,col, and botleft row,col */
                   45138:           {  5,   32, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45139:             "\x05\xfe\x41\xfe\x41\x05" }  },
1.1       albertel 45140:       /* --- pixel bitmap for cmex131 char#106 (noname) --- */
1.2       albertel 45141:       { 106,24380,                      /* character number, location */
                   45142:           1, 4,  -31, 4,      /* topleft row,col, and botleft row,col */
                   45143:           {  6,   32, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45144:             "\xfe\x01\x5f\xe1\x51\x56" }  },
1.1       albertel 45145:       /* --- pixel bitmap for cmex131 char#107 (noname) --- */
1.2       albertel 45146:       { 107,27864,                      /* character number, location */
                   45147:           1, 0,  -31, 0,      /* topleft row,col, and botleft row,col */
                   45148:           {  6,   32, 3,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45149:             "\xfe\x51\xfe\x51\x57" }  },
1.1       albertel 45150:       /* --- pixel bitmap for cmex131 char#108 (noname) --- */
1.2       albertel 45151:       { 108,31352,                      /* character number, location */
                   45152:           1, 4,  -31, 4,      /* topleft row,col, and botleft row,col */
                   45153:           {  6,   32, 3,13, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45154:             "\x06\x0f\xe1\x5f\xe1\x51\x57" }  },
1.1       albertel 45155:       /* --- pixel bitmap for cmex131 char#109 (noname) --- */
1.2       albertel 45156:       { 109,34844,                      /* character number, location */
                   45157:           1, 0,  -31, 0,      /* topleft row,col, and botleft row,col */
                   45158:           {  6,   32, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45159:             "\x06\xfe\x51\xfe\x51\x51" }  },
                   45160:       /* --- pixel bitmap for cmex131 char#110 \Big{ --- */
                   45161:       { 110,38552,                      /* character number, location */
                   45162:           1, 2,  -31, 2,      /* topleft row,col, and botleft row,col */
                   45163:           {  8,   32, 3,40, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45164:             "\x62\x51\x61\x30\xfa\x31\x40\x21\x50\xf1\x11\x60\x21"
                   45165:             "\x50\xfa\x31\x40\x41\x81\x82" }  },
                   45166:       /* --- pixel bitmap for cmex131 char#111 \Big} --- */
                   45167:       { 111,46066,                      /* character number, location */
                   45168:           1, 2,  -31, 2,      /* topleft row,col, and botleft row,col */
                   45169:           {  8,   32, 3,39, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45170:             "\x01\x82\x71\x50\xfa\x31\x40\x41\x30\xf1\x53\x41\x30"
                   45171:             "\xfa\x31\x40\x21\x62\x51\x71" }  },
1.1       albertel 45172:       /* --- pixel bitmap for cmex131 char#112 (noname) --- */
1.2       albertel 45173:       { 112,72584,                      /* character number, location */
                   45174:           1, 3,  -21, 3,      /* topleft row,col, and botleft row,col */
                   45175:           { 16,   22, 3,77, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45176:             "\xf1\xe0\x11\xf1\xe1\x10\xf1\xd1\x20\xf1\xc1\x30\xf1"
                   45177:             "\xb1\x40\xa1\x61\x81\x52\x71\x81\x61\x60\xf1\x21\x51"
                   45178:             "\x70\xf1\x31\x31\x80\xf1\x41\x11\x90\x42\xe0\x11\xa2" }  },
1.1       albertel 45179:       /* --- pixel bitmap for cmex131 char#113 (noname) --- */
1.2       albertel 45180:       { 113,73555,                      /* character number, location */
                   45181:           1, 3,  -32, 3,      /* topleft row,col, and botleft row,col */
                   45182:           { 16,   33, 3,83, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45183:             "\xf1\xe0\x11\xf2\xe1\x10\xf2\xd1\x20\xf3\xc1\x30\xf2"
                   45184:             "\xb1\x40\xf1\xa1\x50\x11\x81\x52\x71\x71\x71\x81\x61"
                   45185:             "\x60\xf2\x21\x51\x70\xf3\x31\x31\x80\xf2\x41\x11\x90"
                   45186:             "\xf1\x51\xa1" }  },
1.1       albertel 45187:       /* --- pixel bitmap for cmex131 char#114 (noname) --- */
1.2       albertel 45188:       { 114,74559,                      /* character number, location */
                   45189:           1, 3,  -43, 3,      /* topleft row,col, and botleft row,col */
                   45190:           { 16,   44, 3,101, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   45191:             "\xf2\xe0\x11\xf3\xe1\x10\xf3\xd1\x20\xf4\xc1\x30\xf3"
                   45192:             "\xb1\x40\xf1\xa1\x50\xf1\x11\x81\x52\x71\x60\xf1\x11"
                   45193:             "\x71\x60\x21\x61\x60\xf3\x21\x51\x70\x31\x41\x70\xf3"
                   45194:             "\x31\x31\x80\xf3\x41\x11\x90\x42\xa0\xf1\x51\xa1" }  },
1.1       albertel 45195:       /* --- pixel bitmap for cmex131 char#115 (noname) --- */
1.2       albertel 45196:       { 115,75595,                      /* character number, location */
                   45197:           1, 3,  -54, 3,      /* topleft row,col, and botleft row,col */
                   45198:           { 16,   55, 3,101, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   45199:             "\xf2\xe0\x11\xf5\xe1\x10\xf4\xd1\x20\xf4\xc1\x30\xf5"
                   45200:             "\xb1\x40\xf2\xa1\x50\x11\x81\x52\x81\x52\x71\x60\xf2"
                   45201:             "\x11\x71\x60\xf1\x21\x61\x60\xf3\x21\x51\x70\x31\x41"
                   45202:             "\x70\xf4\x31\x31\x80\xf5\x41\x11\x90\xf2\x51\xa1" }  },
1.1       albertel 45203:       /* --- pixel bitmap for cmex131 char#116 (noname) --- */
1.2       albertel 45204:       { 116,76703,                      /* character number, location */
                   45205:           1, 2,  -33, 2,      /* topleft row,col, and botleft row,col */
                   45206:           { 12,   34, 3,68, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45207:             "\xf4\xb1\x11\x91\x12\x82\x11\x81\x21\x81\xf2\x31\x71"
                   45208:             "\xf2\x41\x61\xf2\x51\x51\xf2\x61\x41\xf2\x71\x31\xf2"
                   45209:             "\x81\x21\xf2\x91\x11\xf2\xa2\xb1" }  },
1.1       albertel 45210:       /* --- pixel bitmap for cmex131 char#117 (noname) --- */
1.2       albertel 45211:       { 117,77612,                      /* character number, location */
                   45212:           1,13,  -12,13,      /* topleft row,col, and botleft row,col */
                   45213:           {  1,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45214:             "\xff\x1f" }  },
1.1       albertel 45215:       /* --- pixel bitmap for cmex131 char#118 (noname) --- */
1.2       albertel 45216:       { 118,78429,                      /* character number, location */
                   45217:           1,13,  -11,13,      /* topleft row,col, and botleft row,col */
                   45218:           {  7,   12, 3, 7, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45219:             "\x07\x0f\xa1\x61" }  },
1.1       albertel 45220:       /* --- pixel bitmap for cmex131 char#119 (noname) --- */
1.2       albertel 45221:       { 119,71623,                      /* character number, location */
                   45222:           1, 4,  -12, 4,      /* topleft row,col, and botleft row,col */
                   45223:           {  6,   13, 3, 6, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45224:             "\xfc\x01\x41" }  },
1.1       albertel 45225:       /* --- pixel bitmap for cmex131 char#120 (noname) --- */
1.2       albertel 45226:       { 120,66937,                      /* character number, location */
                   45227:           0, 2,  -11, 2,      /* topleft row,col, and botleft row,col */
                   45228:           {  9,   11, 3,17, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45229:             "\x41\x73\x55\x22\x21\x22\xf6\x41\x40" }  },
1.1       albertel 45230:       /* --- pixel bitmap for cmex131 char#121 (noname) --- */
1.2       albertel 45231:       { 121,67862,                      /* character number, location */
                   45232:           0, 2,  -11, 2,      /* topleft row,col, and botleft row,col */
                   45233:           {  9,   11, 3,17, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45234:             "\xf6\x41\x42\x21\x22\x25\x53\x71\x40" }  },
1.1       albertel 45235:       /* --- pixel bitmap for cmex131 char#122 (noname) --- */
1.2       albertel 45236:       { 122,51534,                      /* character number, location */
                   45237:           3,-1,   -3,-1,      /* topleft row,col, and botleft row,col */
                   45238:           { 10,    6, 3,13, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45239:             "\x64\x46\x37\x23\x61\x81\x91" }  },
1.1       albertel 45240:       /* --- pixel bitmap for cmex131 char#123 (noname) --- */
1.2       albertel 45241:       { 123,52114,                      /* character number, location */
                   45242:           3,-1,   -3,-1,      /* topleft row,col, and botleft row,col */
                   45243:           { 10,    6, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45244:             "\x04\x66\x47\x83\xa1\xa1" }  },
1.1       albertel 45245:       /* --- pixel bitmap for cmex131 char#124 (noname) --- */
1.2       albertel 45246:       { 124,52691,                      /* character number, location */
                   45247:           6,-1,    0,-1,      /* topleft row,col, and botleft row,col */
                   45248:           { 10,    6, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45249:             "\x01\xa1\xa3\x87\x46\x64" }  },
1.1       albertel 45250:       /* --- pixel bitmap for cmex131 char#125 (noname) --- */
1.2       albertel 45251:       { 125,53269,                      /* character number, location */
                   45252:           6,-1,    0,-1,      /* topleft row,col, and botleft row,col */
                   45253:           { 10,    6, 3,13, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45254:             "\x91\x81\x63\x27\x36\x44\x61" }  },
1.1       albertel 45255:       /* --- pixel bitmap for cmex131 char#126 (noname) --- */
1.2       albertel 45256:       { 126,69635,                      /* character number, location */
                   45257:          -1, 0,  -11, 0,      /* topleft row,col, and botleft row,col */
                   45258:           { 14,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45259:             "\xc0\x00\x48\x00\x33\x60\x18\x16\x5a\x84\x08\x21\x40"
                   45260:             "\x08\x10\x02\x84\x00" }  },
1.1       albertel 45261:       /* --- pixel bitmap for cmex131 char#127 (noname) --- */
1.2       albertel 45262:       { 127,70733,                      /* character number, location */
                   45263:           0, 0,  -10, 0,      /* topleft row,col, and botleft row,col */
                   45264:           { 14,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45265:             "\x10\x02\x84\x00\x21\x40\x08\x11\xa2\x85\x86\x61\xc0"
                   45266:             "\x0c\x20\x01\x30\x00" }  },
1.1       albertel 45267:       /* --- trailer  --- */
1.2       albertel 45268:       { -99, -999,  0,0,0,0, { 0,0,0,0, (pixbyte *)"\0" }  }
1.1       albertel 45269:    } ;
                   45270: 
                   45271: 
1.2       albertel 45272: /* --- size=4 for .160gf ---
                   45273:  * mf '\mode=preview; mag=magstep(-15.29639112828755784636); input cmex10'
                   45274:  * --------------------------------------------------------------------- */
1.1       albertel 45275: /* --- fontdef for cmex160 --- */
                   45276: static	chardef  cmex160[] =
                   45277:    {
1.2       albertel 45278:       /* --- pixel bitmap for cmex160 char#0 \big( --- */
                   45279:       {   0,  661,                      /* character number, location */
                   45280:           1, 3,  -25, 3,      /* topleft row,col, and botleft row,col */
                   45281:           {  6,   26, 3,38, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45282:             "\x51\x41\x41\x42\x41\x30\xf2\x12\x3f\x92\x40\xf2\x12"
                   45283:             "\x30\x21\x52\x51\x61\x61" }  },
                   45284:       /* --- pixel bitmap for cmex160 char#1 \big) --- */
                   45285:       {   1, 6506,                      /* character number, location */
                   45286:           1, 1,  -25, 1,      /* topleft row,col, and botleft row,col */
                   45287:           {  6,   26, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45288:             "\x81\x40\x30\x08\x86\x61\x30\x0c\xc3\x30\x0c\xc3\x30"
                   45289:             "\x8c\x61\x18\xc2\x10\x42\x00" }  },
                   45290:       /* --- pixel bitmap for cmex160 char#2 \big[ --- */
                   45291:       {   2,12267,                      /* character number, location */
                   45292:           1, 4,  -25, 4,      /* topleft row,col, and botleft row,col */
                   45293:           {  5,   26, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45294:             "\x05\x0f\xe1\x4f\x81\x45" }  },
                   45295:       /* --- pixel bitmap for cmex160 char#3 \big] --- */
                   45296:       {   3,18127,                      /* character number, location */
                   45297:           1, 0,  -25, 0,      /* topleft row,col, and botleft row,col */
                   45298:           {  5,   26, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45299:             "\x05\xfe\x41\xf8\x41\x05" }  },
1.1       albertel 45300:       /* --- pixel bitmap for cmex160 char#4 (noname) --- */
1.2       albertel 45301:       {   4,23954,                      /* character number, location */
                   45302:           1, 4,  -25, 4,      /* topleft row,col, and botleft row,col */
                   45303:           {  6,   26, 3,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45304:             "\xfe\x01\x5f\x91\x56" }  },
1.1       albertel 45305:       /* --- pixel bitmap for cmex160 char#5 (noname) --- */
1.2       albertel 45306:       {   5,27517,                      /* character number, location */
                   45307:           1, 0,  -25, 0,      /* topleft row,col, and botleft row,col */
                   45308:           {  6,   26, 3,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45309:             "\xfe\x51\xf9\x51\x06" }  },
1.1       albertel 45310:       /* --- pixel bitmap for cmex160 char#6 (noname) --- */
1.2       albertel 45311:       {   6,31056,                      /* character number, location */
                   45312:           1, 4,  -25, 4,      /* topleft row,col, and botleft row,col */
                   45313:           {  6,   26, 3,11, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45314:             "\x06\x0f\xe1\x5f\x91\x52" }  },
1.1       albertel 45315:       /* --- pixel bitmap for cmex160 char#7 (noname) --- */
1.2       albertel 45316:       {   7,34627,                      /* character number, location */
                   45317:           1, 0,  -25, 0,      /* topleft row,col, and botleft row,col */
                   45318:           {  6,   26, 3,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45319:             "\x06\xfe\x51\xf9\x51" }  },
                   45320:       /* --- pixel bitmap for cmex160 char#8 \big{ --- */
                   45321:       {   8,38241,                      /* character number, location */
                   45322:           1, 2,  -25, 2,      /* topleft row,col, and botleft row,col */
                   45323:           {  9,   26, 3,36, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45324:             "\x72\x52\x20\xf8\x42\x30\x32\x40\xf1\x13\x50\x32\x40"
                   45325:             "\xf8\x42\x30\x52\x92" }  },
                   45326:       /* --- pixel bitmap for cmex160 char#9 \big} --- */
                   45327:       {   9,45750,                      /* character number, location */
                   45328:           1, 2,  -25, 2,      /* topleft row,col, and botleft row,col */
                   45329:           {  9,   26, 3,35, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45330:             "\x03\x83\x40\xf8\x42\x30\x52\x20\xf1\x63\x52\x20\xf8"
                   45331:             "\x42\x30\x23\x43\x60" }  },
                   45332:       /* --- pixel bitmap for cmex160 char#10 \big< --- */
                   45333:       {  10,54506,                      /* character number, location */
                   45334:           1, 2,  -26, 2,      /* topleft row,col, and botleft row,col */
                   45335:           {  6,   27, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45336:             "\x20\x08\x41\x08\x82\x10\x04\x21\x08\x41\x10\x08\x02"
                   45337:             "\x41\x10\x08\x82\x40\x10\x08\x02" }  },
                   45338:       /* --- pixel bitmap for cmex160 char#11 \big> --- */
                   45339:       {  11,57371,                      /* character number, location */
                   45340:           1, 2,  -26, 2,      /* topleft row,col, and botleft row,col */
                   45341:           {  6,   27, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45342:             "\x41\x20\x08\x04\x41\x20\x08\x02\x41\x20\x08\x42\x10"
                   45343:             "\x82\x20\x04\x41\x08\x42\x10\x00" }  },
1.1       albertel 45344:       /* --- pixel bitmap for cmex160 char#12 (noname) --- */
1.2       albertel 45345:       {  12,66387,                      /* character number, location */
                   45346:           1, 3,  -14, 3,      /* topleft row,col, and botleft row,col */
                   45347:           {  1,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45348:             "\xff\x7f" }  },
1.1       albertel 45349:       /* --- pixel bitmap for cmex160 char#13 (noname) --- */
1.2       albertel 45350:       {  13,67010,                      /* character number, location */
                   45351:           1, 3,  -14, 3,      /* topleft row,col, and botleft row,col */
                   45352:           {  6,   15, 3, 6, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45353:             "\xfe\x01\x41" }  },
1.1       albertel 45354:       /* --- pixel bitmap for cmex160 char#14 (noname) --- */
1.2       albertel 45355:       {  14,60222,                      /* character number, location */
                   45356:           1, 1,  -25, 1,      /* topleft row,col, and botleft row,col */
                   45357:           { 11,   26, 3,69, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45358:             "\xa1\x92\xf1\x91\x10\x82\x91\x92\x20\xf1\x71\x30\x62"
                   45359:             "\x91\x92\x40\xf1\x51\x50\x42\x91\x92\x60\xf1\x31\x70"
                   45360:             "\x22\x91\x92\x80\xf1\x11\x92\x91\xa2" }  },
1.1       albertel 45361:       /* --- pixel bitmap for cmex160 char#15 (noname) --- */
1.2       albertel 45362:       {  15,63336,                      /* character number, location */
                   45363:           1, 1,  -25, 1,      /* topleft row,col, and botleft row,col */
                   45364:           { 11,   26, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45365:             "\x01\x18\x80\x00\x04\x60\x00\x02\x30\x00\x01\x08\xc0"
                   45366:             "\x00\x04\x60\x00\x02\x10\x80\x01\x08\xc0\x00\x04\x20"
                   45367:             "\x00\x03\x10\x80\x01\x08\x40\x00\x06\x20" }  },
                   45368:       /* --- pixel bitmap for cmex160 char#16 \Big( --- */
                   45369:       {  16, 1398,                      /* character number, location */
                   45370:           1, 4,  -38, 4,      /* topleft row,col, and botleft row,col */
                   45371:           {  8,   39, 3,54, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45372:             "\x71\x61\x61\x62\x61\x62\x61\x62\x61\x50\xf3\x12\x5f"
                   45373:             "\xc2\x60\xf3\x12\x50\x21\x72\x71\x72\x71\x72\x71\x81"
                   45374:             "\x81" }  },
                   45375:       /* --- pixel bitmap for cmex160 char#17 \Big) --- */
                   45376:       {  17, 7204,                      /* character number, location */
                   45377:           1, 1,  -38, 1,      /* topleft row,col, and botleft row,col */
                   45378:           {  8,   39, 3,55, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45379:             "\x01\x81\x81\x72\x71\x72\x71\x72\x71\x20\xf3\x52\x10"
                   45380:             "\xfc\x62\xf3\x52\x10\x51\x62\x61\x62\x61\x62\x61\x61"
                   45381:             "\x61\x71" }  },
                   45382:       /* --- pixel bitmap for cmex160 char#18 \bigg( --- */
                   45383:       {  18, 2240,                      /* character number, location */
                   45384:           1, 4,  -51, 4,      /* topleft row,col, and botleft row,col */
                   45385:           { 11,   52, 3,78, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45386:             "\xa1\x91\x91\x91\x92\x91\x91\x92\x91\x60\xf1\x32\x60"
                   45387:             "\xf2\x22\x70\xf4\x12\x8f\xd2\x90\xf4\x12\x80\xf2\x22"
                   45388:             "\x70\xf1\x32\x60\x41\xa2\xa1\xb1\xa2\xa1\xb1\xb1\xb1" }  },
                   45389:       /* --- pixel bitmap for cmex160 char#19 \bigg) --- */
                   45390:       {  19, 8007,                      /* character number, location */
                   45391:           1, 1,  -51, 1,      /* topleft row,col, and botleft row,col */
                   45392:           { 11,   52, 3,79, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45393:             "\x01\xb1\xb1\xb1\xa2\xa1\xb1\xa2\xa1\x40\xf1\x62\x30"
                   45394:             "\xf2\x72\x20\xf4\x82\x10\xfd\x92\xf4\x82\x10\xf2\x72"
                   45395:             "\x20\xf1\x62\x30\x61\x92\x91\x91\x92\x91\x91\x91\x91"
                   45396:             "\xa0" }  },
                   45397:       /* --- pixel bitmap for cmex160 char#20 \bigg[ --- */
                   45398:       {  20,13938,                      /* character number, location */
                   45399:           1, 5,  -51, 5,      /* topleft row,col, and botleft row,col */
                   45400:           {  7,   52, 3,24, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45401:             "\xf1\x07\x0f\xe2\x5f\xe2\x5f\xe2\x5f\x22\x5f\x17" }  },
                   45402:       /* --- pixel bitmap for cmex160 char#21 \bigg] --- */
                   45403:       {  21,19746,                      /* character number, location */
                   45404:           1, 0,  -51, 0,      /* topleft row,col, and botleft row,col */
                   45405:           {  7,   52, 3,24, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45406:             "\xf1\x07\xfe\x52\xfe\x52\xfe\x52\xf2\x52\x0f\x17" }  },
1.1       albertel 45407:       /* --- pixel bitmap for cmex160 char#22 (noname) --- */
1.2       albertel 45408:       {  22,25689,                      /* character number, location */
                   45409:           1, 5,  -51, 5,      /* topleft row,col, and botleft row,col */
                   45410:           {  8,   52, 2, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45411:             "\xff\x31\x00\x02\x06\xff\x01\x08" }  },
1.1       albertel 45412:       /* --- pixel bitmap for cmex160 char#23 (noname) --- */
1.2       albertel 45413:       {  23,29200,                      /* character number, location */
                   45414:           1, 0,  -51, 0,      /* topleft row,col, and botleft row,col */
                   45415:           {  8,   52, 2, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45416:             "\xff\x31\x06\x02\x00\xff\x01\x08" }  },
1.1       albertel 45417:       /* --- pixel bitmap for cmex160 char#24 (noname) --- */
1.2       albertel 45418:       {  24,32795,                      /* character number, location */
                   45419:           1, 5,  -51, 5,      /* topleft row,col, and botleft row,col */
                   45420:           {  8,   52, 2, 9, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45421:             "\xff\x01\x00\x08\x00\xff\x31\x02\x06" }  },
1.1       albertel 45422:       /* --- pixel bitmap for cmex160 char#25 (noname) --- */
1.2       albertel 45423:       {  25,36314,                      /* character number, location */
                   45424:           1, 0,  -51, 0,      /* topleft row,col, and botleft row,col */
                   45425:           {  8,   52, 2, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45426:             "\xff\x01\x00\x08\xff\x31\x06\x02" }  },
                   45427:       /* --- pixel bitmap for cmex160 char#26 \bigg{ --- */
                   45428:       {  26,40222,                      /* character number, location */
                   45429:           1, 3,  -51, 3,      /* topleft row,col, and botleft row,col */
                   45430:           { 11,   52, 3,68, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45431:             "\x92\x82\x82\x82\x91\x40\xfe\x52\x40\xf1\x52\x40\x42"
                   45432:             "\x91\x82\x70\xf1\x12\x80\x22\xb1\xa2\x50\xfe\x52\x40"
                   45433:             "\xf1\x52\x40\x61\xa2\xa2\xa2\xa2" }  },
                   45434:       /* --- pixel bitmap for cmex160 char#27 \bigg} --- */
                   45435:       {  27,47733,                      /* character number, location */
                   45436:           1, 3,  -51, 3,      /* topleft row,col, and botleft row,col */
                   45437:           { 11,   52, 3,75, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45438:             "\x02\xb2\xa2\x60\xf1\x42\x50\xfe\x52\x40\xf1\x52\x40"
                   45439:             "\xf1\x62\x30\x72\x20\xf1\x92\x72\x20\xf1\x62\x30\xfe"
                   45440:             "\x52\x40\xf1\x52\x40\xf1\x42\x50\x32\x82\x72\x91" }  },
                   45441:       /* --- pixel bitmap for cmex160 char#28 \bigg< --- */
                   45442:       {  28,55899,                      /* character number, location */
                   45443:           1, 3,  -51, 3,      /* topleft row,col, and botleft row,col */
                   45444:           { 12,   52, 3,120, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   45445:             "\xb1\xa2\xf2\x92\x10\xf1\x82\x20\xf2\x72\x30\xf1\x62"
                   45446:             "\x40\xf2\x52\x50\xf1\x42\x60\xf2\x32\x70\xf1\x22\x80"
                   45447:             "\xf2\x12\x9f\x12\xa0\xf2\x12\x90\xf1\x22\x80\xf2\x32"
                   45448:             "\x70\xf1\x42\x60\xf2\x52\x50\xf1\x62\x40\xf2\x72\x30"
                   45449:             "\xf1\x82\x20\xf2\x92\x10\xa2\xb1" }  },
                   45450:       /* --- pixel bitmap for cmex160 char#29 \bigg> --- */
                   45451:       {  29,58766,                      /* character number, location */
                   45452:           1, 2,  -51, 2,      /* topleft row,col, and botleft row,col */
                   45453:           { 12,   52, 3,121, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   45454:             "\xf1\x02\xa0\xf2\x12\x90\xf1\x22\x80\xf2\x32\x70\xf1"
                   45455:             "\x42\x60\xf2\x52\x50\xf1\x62\x40\xf2\x72\x30\xf1\x82"
                   45456:             "\x20\xf2\x92\x10\xf1\xa2\xf2\x92\x10\xf1\x82\x20\xf2"
                   45457:             "\x72\x30\xf1\x62\x40\xf2\x52\x50\xf1\x42\x60\xf2\x32"
                   45458:             "\x70\xf1\x22\x80\xf2\x12\x9f\x12\xa0" }  },
1.1       albertel 45459:       /* --- pixel bitmap for cmex160 char#30 (noname) --- */
1.2       albertel 45460:       {  30,61711,                      /* character number, location */
                   45461:           1, 1,  -51, 1,      /* topleft row,col, and botleft row,col */
                   45462:           { 21,   52, 3,205, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   45463:             "\xe0\x61\xe0\x52\xf1\xe0\x51\x10\xe0\x42\xe0\x51\xe0"
                   45464:             "\x52\x20\xf1\xe0\x31\x30\xe0\x22\xe0\x51\xe0\x52\x40"
                   45465:             "\xf1\xe0\x11\x50\xe2\x50\xf1\xe1\x60\xd2\xe0\x51\xe0"
                   45466:             "\x52\x70\xf1\xc1\x80\xb2\xe0\x51\xe0\x52\x90\xf1\xa1"
                   45467:             "\xa0\x92\xe0\x51\xe0\x52\xb0\xf1\x81\xc0\x72\xe0\x51"
                   45468:             "\xe0\x52\xd0\xf1\x61\xe0\x52\xe0\xf1\x51\xe0\x10\x42"
                   45469:             "\xe0\x51\xe0\x52\xe0\x20\xf1\x31\xe0\x30\x22\xe0\x51"
                   45470:             "\xe0\x52\xe0\x40\xf1\x11\xe0\x52\xe0\x51\xe0\x60" }  },
1.1       albertel 45471:       /* --- pixel bitmap for cmex160 char#31 (noname) --- */
1.2       albertel 45472:       {  31,64833,                      /* character number, location */
                   45473:           1, 1,  -51, 1,      /* topleft row,col, and botleft row,col */
                   45474:           { 21,   52, 3,208, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   45475:             "\x01\xe0\x62\xe0\x50\xf1\x11\xe0\x50\x12\xe0\x61\xe0"
                   45476:             "\x62\xe0\x30\xf1\x31\xe0\x30\x32\xe0\x61\xe0\x62\xe0"
                   45477:             "\x10\xf1\x51\xe0\x10\x52\xe0\xf1\x61\xe0\x62\xe0\x61"
                   45478:             "\xe0\x62\xc0\xf1\x81\xc0\x82\xe0\x61\xe0\x62\xa0\xf1"
                   45479:             "\xa1\xa0\xa2\xe0\x61\xe0\x62\x80\xf1\xc1\x80\xc2\xe0"
                   45480:             "\x61\xe0\x62\x60\xf1\xe1\x60\xe2\x50\xf1\xe0\x11\x50"
                   45481:             "\xe0\x12\xe0\x61\xe0\x62\x30\xf1\xe0\x31\x30\xe0\x32"
                   45482:             "\xe0\x61\xe0\x62\x10\xf1\xe0\x51\x10\xe0\x52\xe0\x61" }  },
                   45483:       /* --- pixel bitmap for cmex160 char#32 \Bigg( --- */
                   45484:       {  32, 3134,                      /* character number, location */
                   45485:           1, 6,  -65, 6,      /* topleft row,col, and botleft row,col */
                   45486:           { 11,   66, 3,122, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   45487:             "\xa1\x91\x10\xf1\x81\x20\x71\x92\x91\x92\x91\x92\x91"
                   45488:             "\x60\xf1\x32\x60\x31\x70\xf2\x22\x70\x21\x80\xf4\x12"
                   45489:             "\x80\x11\x9f\xe2\x9f\x22\x90\x11\x90\xf4\x12\x80\x21"
                   45490:             "\x80\xf2\x22\x70\x31\x70\xf1\x32\x60\x41\xa2\xa1\xa2"
                   45491:             "\xa1\xa2\xa1\x30\xf1\x81\x20\x91\xb1" }  },
                   45492:       /* --- pixel bitmap for cmex160 char#33 \Bigg) --- */
                   45493:       {  33, 8862,                      /* character number, location */
                   45494:           1, 1,  -65, 1,      /* topleft row,col, and botleft row,col */
                   45495:           { 11,   66, 3,123, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   45496:             "\x01\xb1\x90\xf1\x21\x80\x31\xa2\xa1\xa2\xa1\xa2\xa1"
                   45497:             "\x40\xf1\x62\x30\x71\x30\xf2\x72\x20\x81\x20\xf4\x82"
                   45498:             "\x10\x91\x10\xfe\x92\xf2\x92\x91\x10\xf4\x82\x10\x81"
                   45499:             "\x20\xf2\x72\x20\x71\x30\xf1\x62\x30\x61\x92\x91\x92"
                   45500:             "\x91\x92\x91\x70\xf1\x21\x80\x11\x91\xa0" }  },
                   45501:       /* --- pixel bitmap for cmex160 char#34 \Bigg[ --- */
                   45502:       {  34,14865,                      /* character number, location */
                   45503:           1, 6,  -65, 6,      /* topleft row,col, and botleft row,col */
                   45504:           {  7,   66, 2,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45505:             "\xff\x01\x00\x07\x00\xff\x3d\x02\x05\xff\x01\x07" }  },
                   45506:       /* --- pixel bitmap for cmex160 char#35 \Bigg] --- */
                   45507:       {  35,20660,                      /* character number, location */
                   45508:           1, 0,  -65, 0,      /* topleft row,col, and botleft row,col */
                   45509:           {  7,   66, 2,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45510:             "\xff\x01\x00\x07\xff\x3d\x05\x02\x00\xff\x01\x07" }  },
1.1       albertel 45511:       /* --- pixel bitmap for cmex160 char#36 (noname) --- */
1.2       albertel 45512:       {  36,26648,                      /* character number, location */
                   45513:           1, 6,  -65, 6,      /* topleft row,col, and botleft row,col */
                   45514:           {  8,   66, 2, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45515:             "\xff\x3f\x00\x02\x06\xff\x01\x08" }  },
1.1       albertel 45516:       /* --- pixel bitmap for cmex160 char#37 (noname) --- */
1.2       albertel 45517:       {  37,30146,                      /* character number, location */
                   45518:           1, 0,  -65, 0,      /* topleft row,col, and botleft row,col */
                   45519:           {  8,   66, 2, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45520:             "\xff\x3f\x06\x02\x00\xff\x01\x08" }  },
1.1       albertel 45521:       /* --- pixel bitmap for cmex160 char#38 (noname) --- */
1.2       albertel 45522:       {  38,33756,                      /* character number, location */
                   45523:           1, 6,  -65, 6,      /* topleft row,col, and botleft row,col */
                   45524:           {  8,   66, 2, 9, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45525:             "\xff\x01\x00\x08\x00\xff\x3f\x02\x06" }  },
1.1       albertel 45526:       /* --- pixel bitmap for cmex160 char#39 (noname) --- */
1.2       albertel 45527:       {  39,37262,                      /* character number, location */
                   45528:           1, 0,  -65, 0,      /* topleft row,col, and botleft row,col */
                   45529:           {  8,   66, 2, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45530:             "\xff\x01\x00\x08\xff\x3f\x06\x02" }  },
                   45531:       /* --- pixel bitmap for cmex160 char#40 \Bigg{ --- */
                   45532:       {  40,41304,                      /* character number, location */
                   45533:           1, 3,  -65, 3,      /* topleft row,col, and botleft row,col */
                   45534:           { 12,   66, 3,80, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45535:             "\xb1\x92\x91\xa2\x30\xf1\x62\x40\xfe\x52\x50\xf6\x52"
                   45536:             "\x50\x42\xa1\xa2\x92\x80\xf1\x11\xa0\x22\xb2\xb1\xb2"
                   45537:             "\x60\xfe\x52\x50\xf6\x52\x50\xf1\x62\x40\x72\xb1\xc2"
                   45538:             "\xc1" }  },
                   45539:       /* --- pixel bitmap for cmex160 char#41 \Bigg} --- */
                   45540:       {  41,48816,                      /* character number, location */
                   45541:           1, 3,  -65, 3,      /* topleft row,col, and botleft row,col */
                   45542:           { 12,   66, 3,79, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45543:             "\x01\xc2\xc1\xb2\x70\xf1\x42\x60\xfe\x52\x50\xf6\x52"
                   45544:             "\x50\x62\xb1\xb2\xb2\x20\xf1\xa2\x82\x92\xa1\xa2\x40"
                   45545:             "\xfe\x52\x50\xf6\x52\x50\xf1\x42\x60\x32\xa1\x92\x91"
                   45546:             "\xb1" }  },
                   45547:       /* --- pixel bitmap for cmex160 char#42 \Bigg< --- */
                   45548:       {  42,56699,                      /* character number, location */
                   45549:           1, 3,  -65, 3,      /* topleft row,col, and botleft row,col */
                   45550:           { 13,   66, 3,132, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   45551:             "\xc1\xb2\xf2\xa2\x10\xf2\x92\x20\xf2\x82\x30\xf2\x72"
                   45552:             "\x40\xf2\x62\x50\xf2\x52\x60\xf2\x42\x70\xf2\x32\x80"
                   45553:             "\xf2\x22\x90\xf2\x12\xaf\x12\xb0\xf2\x12\xa0\xf2\x22"
                   45554:             "\x90\xf2\x32\x80\xf2\x42\x70\xf2\x52\x60\xf2\x62\x50"
                   45555:             "\xf2\x72\x40\xf2\x82\x30\xf2\x92\x20\xf2\xa2\x10\xb2"
                   45556:             "\xc1" }  },
                   45557:       /* --- pixel bitmap for cmex160 char#43 \Bigg> --- */
                   45558:       {  43,59567,                      /* character number, location */
                   45559:           1, 2,  -65, 2,      /* topleft row,col, and botleft row,col */
                   45560:           { 13,   66, 3,133, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   45561:             "\xf1\x02\xb0\xf2\x12\xa0\xf2\x22\x90\xf2\x32\x80\xf2"
                   45562:             "\x42\x70\xf2\x52\x60\xf2\x62\x50\xf2\x72\x40\xf2\x82"
                   45563:             "\x30\xf2\x92\x20\xf2\xa2\x10\xf1\xb2\xf2\xa2\x10\xf2"
                   45564:             "\x92\x20\xf2\x82\x30\xf2\x72\x40\xf2\x62\x50\xf2\x52"
                   45565:             "\x60\xf2\x42\x70\xf2\x32\x80\xf2\x22\x90\xf2\x12\xaf"
                   45566:             "\x12\xb0" }  },
                   45567:       /* --- pixel bitmap for cmex160 char#44 / --- */
                   45568:       {  44,62677,                      /* character number, location */
                   45569:           1, 1,  -65, 1,      /* topleft row,col, and botleft row,col */
                   45570:           { 26,   66, 3,281, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   45571:             "\xe0\xb1\xe0\xa2\xf1\xe0\xa1\x10\xe0\x92\xe0\xa1\xe0"
                   45572:             "\xa2\x20\xf1\xe0\x81\x30\xe0\x72\x30\xf1\xe0\x71\x40"
                   45573:             "\xe0\x62\xe0\xa1\xe0\xa2\x50\xf1\xe0\x51\x60\xe0\x42"
                   45574:             "\xe0\xa1\xe0\xa2\x70\xf1\xe0\x31\x80\xe0\x22\x80\xf1"
                   45575:             "\xe0\x21\x90\xe0\x12\xe0\xa1\xe0\xa2\xa0\xf1\xe1\xb0"
                   45576:             "\xd2\xe0\xa1\xe0\xa2\xc0\xf1\xc1\xd0\xb2\xd0\xf1\xb1"
                   45577:             "\xe0\xa2\xe0\xa1\xe0\xa2\xe0\x10\xf1\x91\xe0\x20\x82"
                   45578:             "\xe0\x20\xf1\x81\xe0\x30\x72\xe0\xa1\xe0\xa2\xe0\x40"
                   45579:             "\xf1\x61\xe0\x50\x52\xe0\xa1\xe0\xa2\xe0\x60\xf1\x41"
                   45580:             "\xe0\x70\x32\xe0\x70\xf1\x31\xe0\x80\x22\xe0\xa1\xe0"
                   45581:             "\xa2\xe0\x90\xf1\x11\xe0\xa2\xe0\xa1\xe0\xb0" }  },
                   45582:       /* --- pixel bitmap for cmex160 char#45 \ --- */
                   45583:       {  45,65803,                      /* character number, location */
                   45584:           1, 1,  -65, 1,      /* topleft row,col, and botleft row,col */
                   45585:           { 26,   66, 3,280, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   45586:             "\x01\xe0\xb2\xe0\xa0\xf1\x11\xe0\xa0\x12\xe0\xb1\xe0"
                   45587:             "\xb2\xe0\x80\xf1\x31\xe0\x80\x32\xe0\x70\xf1\x41\xe0"
                   45588:             "\x70\x42\xe0\xb1\xe0\xb2\xe0\x50\xf1\x61\xe0\x50\x62"
                   45589:             "\xe0\xb1\xe0\xb2\xe0\x30\xf1\x81\xe0\x30\x82\xe0\x20"
                   45590:             "\xf1\x91\xe0\x20\x92\xe0\xb1\xe0\xb2\xe0\xf1\xb1\xe0"
                   45591:             "\xb2\xd0\xf1\xc1\xd0\xc2\xe0\xb1\xe0\xb2\xb0\xf1\xe1"
                   45592:             "\xb0\xe2\xe0\xb1\xe0\xb2\x90\xf1\xe0\x21\x90\xe0\x22"
                   45593:             "\x80\xf1\xe0\x31\x80\xe0\x32\xe0\xb1\xe0\xb2\x60\xf1"
                   45594:             "\xe0\x51\x60\xe0\x52\xe0\xb1\xe0\xb2\x40\xf1\xe0\x71"
                   45595:             "\x40\xe0\x72\x30\xf1\xe0\x81\x30\xe0\x82\xe0\xb1\xe0"
                   45596:             "\xb2\x10\xf1\xe0\xa1\x10\xe0\xa2\xe0\xb1" }  },
                   45597:       /* --- pixel bitmap for cmex160 char#46 / --- */
                   45598:       {  46,60901,                      /* character number, location */
                   45599:           1, 1,  -38, 1,      /* topleft row,col, and botleft row,col */
                   45600:           { 16,   39, 3,111, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   45601:             "\xe0\x11\xe2\xf1\xe1\x10\xd2\xe1\xe2\x20\xf1\xc1\x30"
                   45602:             "\xb2\xe1\xe2\x40\xf1\xa1\x50\x92\xe1\xe2\x60\xf1\x81"
                   45603:             "\x70\x72\x70\xf1\x71\x80\x62\xe1\xe2\x90\xf1\x51\xa0"
                   45604:             "\x42\xe1\xe2\xb0\xf1\x31\xc0\x22\xe1\xe2\xd0\xf1\x11"
                   45605:             "\xe2\xe1\xe0\x10" }  },
                   45606:       /* --- pixel bitmap for cmex160 char#47 \ --- */
                   45607:       {  47,64019,                      /* character number, location */
                   45608:           1, 1,  -38, 1,      /* topleft row,col, and botleft row,col */
                   45609:           { 16,   39, 3,138, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   45610:             "\x01\xe0\x12\xe0\xf1\x11\xe0\x12\xe0\x11\xe0\x12\xc0"
                   45611:             "\xf1\x31\xc0\x32\xe0\x11\xe0\x12\xa0\xf1\x51\xa0\x52"
                   45612:             "\xe0\x11\xe0\x12\x80\xf1\x71\x80\x72\x70\xf1\x81\x70"
                   45613:             "\x82\xe0\x11\xe0\x12\x50\xf1\xa1\x50\xa2\xe0\x11\xe0"
                   45614:             "\x12\x30\xf1\xc1\x30\xc2\xe0\x11\xe0\x12\x10\xf1\xe1"
                   45615:             "\x10\xe2\xe0\x11" }  },
                   45616:       /* --- pixel bitmap for cmex160 char#48 \leftparentop --- */
                   45617:       {  48, 4072,                      /* character number, location */
                   45618:           0, 6,  -40, 6,      /* topleft row,col, and botleft row,col */
                   45619:           { 12,   40, 3,67, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45620:             "\xb1\xa1\xa2\xa1\xa1\xa2\xa1\xa2\xa1\xa2\xa1\x60\xf1"
                   45621:             "\x42\x60\x41\x70\xf1\x32\x70\x31\x80\xf2\x22\x80\x21"
                   45622:             "\x90\xf5\x12\x90\x11\xaf\xb2\xa1" }  },
                   45623:       /* --- pixel bitmap for cmex160 char#49 \rightparentop --- */
                   45624:       {  49, 9761,                      /* character number, location */
                   45625:           0, 1,  -40, 1,      /* topleft row,col, and botleft row,col */
                   45626:           { 12,   40, 3,68, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45627:             "\x01\xc1\xb2\xb1\xc1\xb2\xb1\xb2\xb1\xb2\xb1\x50\xf1"
                   45628:             "\x62\x40\x71\x40\xf1\x72\x30\x81\x30\xf2\x82\x20\x91"
                   45629:             "\x20\xf5\x92\x10\xa1\x10\xfb\xa2" }  },
1.1       albertel 45630:       /* --- pixel bitmap for cmex160 char#50 (noname) --- */
1.2       albertel 45631:       {  50,15763,                      /* character number, location */
                   45632:           0, 7,  -39, 7,      /* topleft row,col, and botleft row,col */
                   45633:           {  8,   39, 3,17, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45634:             "\xf1\x08\x0f\xe2\x6f\xe2\x6f\x62\x6f" }  },
1.1       albertel 45635:       /* --- pixel bitmap for cmex160 char#51 (noname) --- */
1.2       albertel 45636:       {  51,21545,                      /* character number, location */
                   45637:           0, 0,  -39, 0,      /* topleft row,col, and botleft row,col */
                   45638:           {  8,   39, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45639:             "\xf1\x08\xfe\x62\xfe\x62\xf6\x62" }  },
1.1       albertel 45640:       /* --- pixel bitmap for cmex160 char#52 (noname) --- */
1.2       albertel 45641:       {  52,16629,                      /* character number, location */
                   45642:           1, 7,  -38, 7,      /* topleft row,col, and botleft row,col */
                   45643:           {  8,   39, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45644:             "\xfe\x02\x6f\xe2\x6f\x62\x6f\x18" }  },
1.1       albertel 45645:       /* --- pixel bitmap for cmex160 char#53 (noname) --- */
1.2       albertel 45646:       {  53,22398,                      /* character number, location */
                   45647:           1, 0,  -38, 0,      /* topleft row,col, and botleft row,col */
                   45648:           {  8,   39, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45649:             "\xfe\x62\xfe\x62\xf6\x62\x0f\x18" }  },
1.1       albertel 45650:       /* --- pixel bitmap for cmex160 char#54 (noname) --- */
1.2       albertel 45651:       {  54,17392,                      /* character number, location */
                   45652:           1, 7,  -14, 7,      /* topleft row,col, and botleft row,col */
                   45653:           {  2,   15, 3, 4, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45654:             "\xfe\x02" }  },
1.1       albertel 45655:       /* --- pixel bitmap for cmex160 char#55 (noname) --- */
1.2       albertel 45656:       {  55,23148,                      /* character number, location */
                   45657:           1, 6,  -14, 6,      /* topleft row,col, and botleft row,col */
                   45658:           {  2,   15, 3, 4, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45659:             "\xfe\x02" }  },
                   45660:       /* --- pixel bitmap for cmex160 char#56 \leftbracetop --- */
                   45661:       {  56,42237,                      /* character number, location */
                   45662:          -1, 9,  -21, 9,      /* topleft row,col, and botleft row,col */
                   45663:           {  8,   20, 3,19, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45664:             "\x62\x52\x52\x52\x52\x53\x52\x5f\xc3\x52" }  },
                   45665:       /* --- pixel bitmap for cmex160 char#57 \rightbracetop --- */
                   45666:       {  57,49750,                      /* character number, location */
                   45667:          -1, 4,  -21, 4,      /* topleft row,col, and botleft row,col */
                   45668:           {  8,   20, 3,20, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45669:             "\x02\x72\x72\x72\x72\x63\x62\x10\xfc\x53" }  },
                   45670:       /* --- pixel bitmap for cmex160 char#58 \leftbracebot --- */
                   45671:       {  58,43100,                      /* character number, location */
                   45672:           1, 9,  -19, 9,      /* topleft row,col, and botleft row,col */
                   45673:           {  8,   20, 3,20, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45674:             "\xfc\x03\x50\x12\x63\x62\x72\x72\x72\x72" }  },
                   45675:       /* --- pixel bitmap for cmex160 char#59 \rightbracebot --- */
                   45676:       {  59,50614,                      /* character number, location */
                   45677:           1, 4,  -19, 4,      /* topleft row,col, and botleft row,col */
                   45678:           {  8,   20, 3,19, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45679:             "\xfc\x53\x52\x53\x52\x52\x52\x52\x52\x63" }  },
                   45680:       /* --- pixel bitmap for cmex160 char#60 \leftbracemid --- */
                   45681:       {  60,44038,                      /* character number, location */
                   45682:           1, 4,  -41, 4,      /* topleft row,col, and botleft row,col */
                   45683:           {  8,   42, 3,40, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45684:             "\xfd\x53\x52\x53\x52\x53\x52\x52\x4f\x12\x60\x22\x72"
                   45685:             "\x63\x62\x63\x62\x10\xfd\x53" }  },
                   45686:       /* --- pixel bitmap for cmex160 char#61 \rightbracemid --- */
                   45687:       {  61,51553,                      /* character number, location */
                   45688:           1, 9,  -41, 9,      /* topleft row,col, and botleft row,col */
                   45689:           {  8,   42, 3,41, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45690:             "\xfd\x03\x50\x12\x63\x62\x63\x62\x72\x20\xf1\x62\x42"
                   45691:             "\x52\x53\x52\x53\x52\x5f\xd3\x52" }  },
                   45692:       /* --- pixel bitmap for cmex160 char#62 \leftbracebar --- */
                   45693:       {  62,44884,                      /* character number, location */
                   45694:           1, 9,   -8, 9,      /* topleft row,col, and botleft row,col */
                   45695:           {  3,    9, 3, 4, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45696:             "\xf8\x03" }  },
1.1       albertel 45697:       /* --- pixel bitmap for cmex160 char#63 (noname) --- */
1.2       albertel 45698:       {  63,69605,                      /* character number, location */
                   45699:           1, 7,  -14, 7,      /* topleft row,col, and botleft row,col */
                   45700:           {  1,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45701:             "\xff\x7f" }  },
                   45702:       /* --- pixel bitmap for cmex160 char#64 \leftparenbot --- */
                   45703:       {  64, 4980,                      /* character number, location */
                   45704:           2, 6,  -38, 6,      /* topleft row,col, and botleft row,col */
                   45705:           { 12,   40, 3,68, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45706:             "\xfb\x02\xa0\x11\xa0\xf5\x12\x90\x21\x90\xf2\x22\x80"
                   45707:             "\x31\x80\xf1\x32\x70\x41\x70\xf1\x42\x60\x51\xb2\xb1"
                   45708:             "\xb2\xb1\xb2\xb1\xc1\xb2\xb1\xc1" }  },
                   45709:       /* --- pixel bitmap for cmex160 char#65 \rightparenbot --- */
                   45710:       {  65,10630,                      /* character number, location */
                   45711:           2, 1,  -38, 1,      /* topleft row,col, and botleft row,col */
                   45712:           { 12,   40, 3,67, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45713:             "\xfb\xa2\xa1\x10\xf5\x92\x10\x91\x20\xf2\x82\x20\x81"
                   45714:             "\x30\xf1\x72\x30\x71\x40\xf1\x62\x40\x61\xa2\xa1\xa2"
                   45715:             "\xa1\xa2\xa1\xa1\xa2\xa1\xa1\xb2" }  },
                   45716:       /* --- pixel bitmap for cmex160 char#66 \leftparenbar --- */
                   45717:       {  66, 5882,                      /* character number, location */
                   45718:           1, 6,  -14, 6,      /* topleft row,col, and botleft row,col */
                   45719:           {  2,   15, 3, 4, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45720:             "\xfe\x02" }  },
                   45721:       /* --- pixel bitmap for cmex160 char#67 \rightparenbar --- */
                   45722:       {  67,11493,                      /* character number, location */
                   45723:           1,11,  -14,11,      /* topleft row,col, and botleft row,col */
                   45724:           {  2,   15, 3, 4, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45725:             "\xfe\x02" }  },
                   45726:       /* --- pixel bitmap for cmex160 char#68 \Big< --- */
                   45727:       {  68,55151,                      /* character number, location */
                   45728:           1, 2,  -38, 2,      /* topleft row,col, and botleft row,col */
                   45729:           { 10,   39, 3,86, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45730:             "\x91\x82\x81\x82\x81\x82\x81\x82\x81\x82\x40\xf1\x41"
                   45731:             "\x50\x32\x81\x82\x81\x82\x81\x82\x81\x92\x91\x92\x91"
                   45732:             "\x92\x91\x92\x50\xf1\x41\x50\x42\x91\x92\x91\x92\x91"
                   45733:             "\x92\x91\x92\x91" }  },
                   45734:       /* --- pixel bitmap for cmex160 char#69 \Big> --- */
                   45735:       {  69,58017,                      /* character number, location */
                   45736:           1, 2,  -38, 2,      /* topleft row,col, and botleft row,col */
                   45737:           { 10,   39, 3,87, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45738:             "\x01\x92\x91\x92\x91\x92\x91\x92\x91\x92\x40\xf1\x51"
                   45739:             "\x40\x52\x91\x92\x91\x92\x91\x92\x91\x82\x81\x82\x81"
                   45740:             "\x82\x81\x82\x30\xf1\x51\x40\x42\x81\x82\x81\x82\x81"
                   45741:             "\x82\x81\x82\x81\x92" }  },
1.1       albertel 45742:       /* --- pixel bitmap for cmex160 char#70 \bigsqcup --- */
1.2       albertel 45743:       {  70,80314,                      /* character number, location */
                   45744:           0, 1,  -22, 1,      /* topleft row,col, and botleft row,col */
                   45745:           { 16,   22, 3,18, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45746:             "\xfe\x02\xc2\x0f\x42\xc2\x0f\x1e\x02" }  },
1.1       albertel 45747:       /* --- pixel bitmap for cmex160 char#71 \Bigsqcup --- */
1.2       albertel 45748:       {  71,81255,                      /* character number, location */
                   45749:           0, 1,  -31, 1,      /* topleft row,col, and botleft row,col */
                   45750:           { 23,   31, 2,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45751:             "\xff\x1c\x00\x02\x13\x02\x00\xff\x01\x17" }  },
                   45752:       /* --- pixel bitmap for cmex160 char#72 \oint --- */
                   45753:       {  72,100301,                     /* character number, location */
                   45754:           0, 1,  -25, 1,      /* topleft row,col, and botleft row,col */
                   45755:           { 12,   25, 3,73, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45756:             "\x83\x82\x21\xf1\x62\x22\xf2\x62\x40\x52\x94\x71\x12"
                   45757:             "\x11\x30\xf3\x21\x22\x21\x20\x31\x12\x11\x74\x40\xf1"
                   45758:             "\x52\x50\xf2\x42\x6f\x12\x22\x61\x22\x83\x81" }  },
1.1       albertel 45759:       /* --- pixel bitmap for cmex160 char#73 \Bigoint --- */
1.2       albertel 45760:       {  73,101347,                     /* character number, location */
                   45761:           0, 1,  -49, 1,      /* topleft row,col, and botleft row,col */
                   45762:           { 20,   49, 3,141, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   45763:             "\xe0\x23\xe0\x21\x31\xf1\xe2\x22\xe1\x50\xf1\xd2\x50"
                   45764:             "\xd1\x60\xf3\xc2\x60\xf4\xb2\x70\xa2\xe0\x16\xd1\x32"
                   45765:             "\x11\xb1\x42\x21\x91\x52\x31\x40\xf4\x41\x42\x41\x40"
                   45766:             "\x51\x22\x41\xb1\x12\x31\xd6\x70\xf1\x82\xa0\xf4\x72"
                   45767:             "\xb0\xf3\x62\xc0\x61\xd0\xf1\x52\xd0\x51\xef\x12\x22"
                   45768:             "\xe1\x31\xe0\x23\xe0\x2e" }  },
1.1       albertel 45769:       /* --- pixel bitmap for cmex160 char#74 \bigodot --- */
1.2       albertel 45770:       {  74,82287,                      /* character number, location */
                   45771:           0, 1,  -22, 1,      /* topleft row,col, and botleft row,col */
                   45772:           { 23,   22, 3,93, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45773:             "\x87\xeb\xa4\x74\x73\xb3\x53\xd3\x33\xe0\x13\x22\xe0"
                   45774:             "\x32\x13\xe0\x35\xe0\x54\x91\x92\x0f\x12\x83\x82\x02"
                   45775:             "\x91\x94\xe0\x55\xe0\x33\x12\xe0\x32\x23\xe0\x13\x33"
                   45776:             "\xd3\x53\xb3\x74\x74\xab\xe7\x81" }  },
1.1       albertel 45777:       /* --- pixel bitmap for cmex160 char#75 \Bigodot --- */
1.2       albertel 45778:       {  75,83472,                      /* character number, location */
                   45779:           0, 1,  -31, 1,      /* topleft row,col, and botleft row,col */
                   45780:           { 31,   31, 3,153, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   45781:             "\xc7\xe0\x7d\xe0\x25\x75\xd3\xd3\xa4\xe0\x14\x82\xe0"
                   45782:             "\x52\x73\xe0\x53\x53\xe0\x73\x42\xe0\x92\x33\xe0\x93"
                   45783:             "\x22\xe0\xb2\x13\xe0\xb3\x0f\x12\xe0\xd2\x0f\x22\xc3"
                   45784:             "\xc2\x0f\x12\xe0\xd2\x03\xe0\xb3\x12\xe0\xb2\x23\xe0"
                   45785:             "\x93\x32\xe0\x92\x43\xe0\x73\x53\xe0\x53\x72\xe0\x52"
                   45786:             "\x84\xe0\x14\xa3\xd3\xd5\x75\xe0\x2d\xe0\x77\xc1" }  },
1.1       albertel 45787:       /* --- pixel bitmap for cmex160 char#76 \bigoplus --- */
1.2       albertel 45788:       {  76,84507,                      /* character number, location */
                   45789:           0, 1,  -22, 1,      /* topleft row,col, and botleft row,col */
                   45790:           { 23,   22, 3,103, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   45791:             "\x87\xeb\xa4\x32\x24\x73\x52\x43\x53\x62\x53\x33\x72"
                   45792:             "\x63\x22\x82\x72\x13\x82\x73\x0f\x12\x92\x82\x0f\x1e"
                   45793:             "\x09\x0f\x12\x92\x82\x03\x82\x73\x12\x82\x72\x23\x72"
                   45794:             "\x63\x33\x62\x53\x53\x52\x43\x74\x32\x24\xab\xe7\x80" }  },
1.1       albertel 45795:       /* --- pixel bitmap for cmex160 char#77 \Bigoplus --- */
1.2       albertel 45796:       {  77,85713,                      /* character number, location */
                   45797:           0, 1,  -31, 1,      /* topleft row,col, and botleft row,col */
                   45798:           { 31,   31, 3,161, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   45799:             "\xc7\xe0\x7d\xe0\x25\x32\x25\xd3\x62\x53\xa4\x72\x64"
                   45800:             "\x82\x92\x82\x73\x92\x83\x53\xa2\x93\x42\xb2\xa2\x33"
                   45801:             "\xb2\xa3\x22\xc2\xb2\x13\xc2\xb3\x0f\x12\xd2\xc2\x0f"
                   45802:             "\x1e\x0e\x03\x0f\x22\xd2\xc2\x03\xc2\xb3\x12\xc2\xb2"
                   45803:             "\x23\xb2\xa3\x32\xb2\xa2\x43\xa2\x93\x53\x92\x83\x72"
                   45804:             "\x92\x82\x84\x72\x64\xa3\x62\x53\xd5\x32\x25\xe0\x2d"
                   45805:             "\xe0\x77\xc0" }  },
1.1       albertel 45806:       /* --- pixel bitmap for cmex160 char#78 \bigotimes --- */
1.2       albertel 45807:       {  78,86789,                      /* character number, location */
                   45808:           0, 1,  -22, 1,      /* topleft row,col, and botleft row,col */
                   45809:           { 23,   22, 3,105, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   45810:             "\x87\xeb\xa4\x74\x73\xb3\x54\xb4\x36\x96\x22\x23\x73"
                   45811:             "\x22\x13\x33\x53\x35\x53\x33\x54\x63\x13\x62\x0f\x12"
                   45812:             "\x75\x72\x02\x63\x13\x64\x53\x33\x55\x33\x53\x33\x12"
                   45813:             "\x23\x73\x22\x26\x96\x34\xb4\x53\xb3\x74\x74\xab\xe7"
                   45814:             "\x83" }  },
1.1       albertel 45815:       /* --- pixel bitmap for cmex160 char#79 \Bigotimes --- */
1.2       albertel 45816:       {  79,88004,                      /* character number, location */
                   45817:           0, 1,  -31, 1,      /* topleft row,col, and botleft row,col */
                   45818:           { 31,   31, 3,183, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   45819:             "\xc7\xe0\x7d\xe0\x25\x75\xd3\xd3\xa4\xe0\x14\x83\xe0"
                   45820:             "\x33\x75\xe0\x15\x53\x13\xd3\x13\x42\x33\xb3\x32\x33"
                   45821:             "\x43\x93\x43\x22\x63\x73\x62\x13\x73\x53\x75\x93\x33"
                   45822:             "\x94\xa3\x13\xa4\xb5\xb4\xc3\xc4\xb5\xb4\xa3\x13\xa4"
                   45823:             "\x93\x33\x95\x73\x53\x73\x12\x63\x73\x62\x23\x43\x93"
                   45824:             "\x43\x32\x33\xb3\x32\x43\x13\xd3\x13\x55\xe0\x15\x73"
                   45825:             "\xe0\x33\x84\xe0\x14\xa3\xd3\xd5\x75\xe0\x2d\xe0\x77"
                   45826:             "\xc0" }  },
                   45827:       /* --- pixel bitmap for cmex160 char#80 \sum --- */
                   45828:       {  80,89430,                      /* character number, location */
                   45829:           0, 1,  -22, 1,      /* topleft row,col, and botleft row,col */
                   45830:           { 21,   22, 3,99, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45831:             "\x0e\x05\x23\xd4\x23\xe2\x32\xe0\x11\x42\xe0\x11\x33"
                   45832:             "\xe0\x53\xe0\x52\xe0\x62\xe0\x53\xe0\x53\xe0\x52\xe0"
                   45833:             "\x51\xe0\x51\xe0\x51\xe0\x51\xe0\x52\xe0\x51\xe0\x11"
                   45834:             "\x31\xe0\x11\x31\xe0\x12\x21\xe4\x1e\x05\x23" }  },
                   45835:       /* --- pixel bitmap for cmex160 char#81 \prod --- */
                   45836:       {  81,92400,                      /* character number, location */
                   45837:           0, 1,  -22, 1,      /* topleft row,col, and botleft row,col */
                   45838:           { 19,   22, 3,22, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45839:             "\x0e\x05\xfe\x22\xb2\x20\xf4\x22\xb2\x26\x76" }  },
                   45840:       /* --- pixel bitmap for cmex160 char#82 \int --- */
                   45841:       {  82,98246,                      /* character number, location */
                   45842:           0, 1,  -25, 1,      /* topleft row,col, and botleft row,col */
                   45843:           { 12,   25, 3,41, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45844:             "\x83\x82\x21\xf1\x62\x22\xf2\x62\x40\xfa\x52\x50\xf2"
                   45845:             "\x42\x6f\x12\x22\x61\x22\x83\x80" }  },
1.1       albertel 45846:       /* --- pixel bitmap for cmex160 char#83 \bigcup --- */
1.2       albertel 45847:       {  83,102229,                     /* character number, location */
                   45848:           0, 1,  -22, 1,      /* topleft row,col, and botleft row,col */
                   45849:           { 16,   22, 3,29, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45850:             "\xfe\x02\xc2\x02\xc5\xa3\x12\xa2\x23\x83\x33\x63\x5a"
                   45851:             "\x86\x50" }  },
1.1       albertel 45852:       /* --- pixel bitmap for cmex160 char#84 \bigcap --- */
1.2       albertel 45853:       {  84,104037,                     /* character number, location */
                   45854:           0, 1,  -22, 1,      /* topleft row,col, and botleft row,col */
                   45855:           { 16,   22, 3,30, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45856:             "\x56\x8a\x53\x63\x33\x83\x22\xa2\x13\xa3\x0f\xe2\xc2"
                   45857:             "\x02\xc2" }  },
1.1       albertel 45858:       /* --- pixel bitmap for cmex160 char#85 \biguplus --- */
1.2       albertel 45859:       {  85,105910,                     /* character number, location */
                   45860:           0, 1,  -22, 1,      /* topleft row,col, and botleft row,col */
                   45861:           { 16,   22, 3,59, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45862:             "\xf6\x02\xc2\x0f\x12\x52\x52\x02\x36\x34\x28\x22\x0f"
                   45863:             "\x22\x52\x52\x0f\x12\xc2\x03\xa3\x12\xa2\x23\x83\x33"
                   45864:             "\x63\x5a\x86\x51" }  },
1.1       albertel 45865:       /* --- pixel bitmap for cmex160 char#86 \bigwedge --- */
1.2       albertel 45866:       {  86,107796,                     /* character number, location */
                   45867:           0, 1,  -22, 1,      /* topleft row,col, and botleft row,col */
                   45868:           { 16,   22, 3,82, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45869:             "\xf1\x72\x70\xf2\x64\x60\x56\x50\xf1\x52\x22\x50\x43"
                   45870:             "\x23\x82\x42\x73\x43\x30\xf1\x32\x62\x30\x23\x63\x20"
                   45871:             "\xf1\x22\x82\x20\x13\x83\x10\xf1\x12\xa2\x13\xa3\x0f"
                   45872:             "\x12\xc2" }  },
1.1       albertel 45873:       /* --- pixel bitmap for cmex160 char#87 \bigvee --- */
1.2       albertel 45874:       {  87,109538,                     /* character number, location */
                   45875:           0, 1,  -22, 1,      /* topleft row,col, and botleft row,col */
                   45876:           { 16,   22, 3,83, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45877:             "\xf1\x02\xc2\x03\xa3\xf1\x12\xa2\x10\x13\x83\x10\xf1"
                   45878:             "\x22\x82\x20\x23\x63\x20\xf1\x32\x62\x30\x33\x43\x72"
                   45879:             "\x42\x83\x23\x40\xf1\x52\x22\x50\x56\x50\xf2\x64\x60"
                   45880:             "\xf1\x72\x72" }  },
1.1       albertel 45881:       /* --- pixel bitmap for cmex160 char#88 \Bigsum --- */
1.2       albertel 45882:       {  88,90923,                      /* character number, location */
                   45883:           0, 1,  -31, 1,      /* topleft row,col, and botleft row,col */
                   45884:           { 30,   31, 3,145, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   45885:             "\x0e\x0d\x34\xe0\x46\x34\xe0\x63\x44\xe0\x72\x43\xe0"
                   45886:             "\x81\x44\xe0\x81\x44\xe0\xd4\xe0\xd3\xe0\xd4\xe0\xd4"
                   45887:             "\xe0\xd4\xe0\xd3\xe0\xd4\xe0\xd4\xe0\xd4\xe0\xc3\xe0"
                   45888:             "\xd2\xe0\xd2\xe0\xe1\xe0\xe1\xe0\xe2\xe0\xd2\xe0\xd2"
                   45889:             "\xe0\xd2\xe0\x81\x51\xe0\x81\x51\xe0\x82\x42\xe0\x63"
                   45890:             "\x42\xe0\x46\x3e\x0d\x2e\x0d\x33" }  },
1.1       albertel 45891:       /* --- pixel bitmap for cmex160 char#89 \Bigprod --- */
1.2       albertel 45892:       {  89,94040,                      /* character number, location */
                   45893:           0, 1,  -31, 1,      /* topleft row,col, and botleft row,col */
                   45894:           { 26,   31, 3,34, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45895:             "\x0e\x0c\x34\xc4\x30\xfe\x43\xc3\x40\xfb\x43\xc3\x40"
                   45896:             "\x35\xa5\x3b\x4b" }  },
1.1       albertel 45897:       /* --- pixel bitmap for cmex160 char#90 \Bigint --- */
1.2       albertel 45898:       {  90,99260,                      /* character number, location */
                   45899:           0, 1,  -49, 1,      /* topleft row,col, and botleft row,col */
                   45900:           { 20,   49, 3,101, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   45901:             "\xe0\x23\xe0\x21\x31\xf1\xe2\x22\xe1\x50\xf1\xd2\x50"
                   45902:             "\xd1\x60\xf3\xc2\x60\xf4\xb2\x70\xf4\xa2\x80\xf4\x92"
                   45903:             "\x90\xf4\x82\xa0\xf4\x72\xb0\xf3\x62\xc0\x61\xd0\xf1"
                   45904:             "\x52\xd0\x51\xef\x12\x22\xe1\x31\xe0\x23\xe0\x20" }  },
1.1       albertel 45905:       /* --- pixel bitmap for cmex160 char#91 \Bigcup --- */
1.2       albertel 45906:       {  91,103178,                     /* character number, location */
                   45907:           0, 1,  -31, 1,      /* topleft row,col, and botleft row,col */
                   45908:           { 23,   31, 3,51, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45909:             "\xfe\x02\xe0\x52\x0f\x72\xe0\x52\x03\xe0\x33\x12\xe0"
                   45910:             "\x32\x23\xe0\x13\x33\xd3\x53\xb3\x74\x74\xab\xe7\x82" }  },
1.1       albertel 45911:       /* --- pixel bitmap for cmex160 char#92 \Bigcap --- */
1.2       albertel 45912:       {  92,104993,                     /* character number, location */
                   45913:           0, 1,  -31, 1,      /* topleft row,col, and botleft row,col */
                   45914:           { 23,   31, 3,50, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45915:             "\x87\xeb\xa4\x74\x73\xb3\x53\xd3\x33\xe0\x13\x22\xe0"
                   45916:             "\x32\x13\xe0\x33\x0f\xe2\xe0\x52\x0f\x72\xe0\x52" }  },
1.1       albertel 45917:       /* --- pixel bitmap for cmex160 char#93 \Biguplus --- */
1.2       albertel 45918:       {  93,106938,                     /* character number, location */
                   45919:           0, 1,  -31, 1,      /* topleft row,col, and botleft row,col */
                   45920:           { 23,   31, 3,81, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45921:             "\xf6\x02\xe0\x52\x02\x91\x92\x0f\x52\x92\x82\x02\x2e"
                   45922:             "\x01\x24\x3d\x32\x0f\x52\x92\x82\x02\xe0\x55\xe0\x33"
                   45923:             "\x12\xe0\x32\x23\xe0\x13\x33\xd3\x53\xb3\x74\x74\xab"
                   45924:             "\xe7\x82" }  },
1.1       albertel 45925:       /* --- pixel bitmap for cmex160 char#94 \Bigwedge --- */
1.2       albertel 45926:       {  94,108713,                     /* character number, location */
                   45927:           0, 1,  -31, 1,      /* topleft row,col, and botleft row,col */
                   45928:           { 23,   31, 3,140, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   45929:             "\xb2\xa0\xf1\xa3\xa0\x95\x90\xf1\x92\x12\x90\x83\x13"
                   45930:             "\x80\xf1\x82\x32\x80\x73\x33\x70\xf1\x72\x52\x70\x63"
                   45931:             "\x53\xc2\x72\xb3\x73\x50\xf1\x52\x92\x50\x43\x93\x40"
                   45932:             "\xf1\x42\xb2\x40\x33\xb3\x30\xf1\x32\xd2\x30\x23\xd3"
                   45933:             "\x42\xe0\x12\x33\xe0\x13\x10\xf1\x12\xe0\x32\x13\xe0"
                   45934:             "\x33\x0f\x12\xe0\x52" }  },
1.1       albertel 45935:       /* --- pixel bitmap for cmex160 char#95 \Bigvee --- */
1.2       albertel 45936:       {  95,110456,                     /* character number, location */
                   45937:           0, 1,  -31, 1,      /* topleft row,col, and botleft row,col */
                   45938:           { 23,   31, 3,141, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   45939:             "\xf1\x02\xe0\x52\x03\xe0\x33\xf1\x12\xe0\x32\x10\x13"
                   45940:             "\xe0\x13\x32\xe0\x12\x43\xd3\x20\xf1\x32\xd2\x30\x33"
                   45941:             "\xb3\x30\xf1\x42\xb2\x40\x43\x93\x40\xf1\x52\x92\x50"
                   45942:             "\x53\x73\xb2\x72\xc3\x53\x60\xf1\x72\x52\x70\x73\x33"
                   45943:             "\x70\xf1\x82\x32\x80\x83\x13\x80\xf1\x92\x12\x90\x95"
                   45944:             "\x90\xf1\xa3\xa0\xb2\xae" }  },
                   45945:       /* --- pixel bitmap for cmex160 char#96 \coprod --- */
                   45946:       {  96,95559,                      /* character number, location */
                   45947:           0, 1,  -22, 1,      /* topleft row,col, and botleft row,col */
                   45948:           { 19,   22, 3,22, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45949:             "\x06\x76\xfe\x22\xb2\x20\xf4\x22\xb2\x2e\x05" }  },
1.1       albertel 45950:       /* --- pixel bitmap for cmex160 char#97 \Bigcoprod --- */
1.2       albertel 45951:       {  97,97201,                      /* character number, location */
                   45952:           0, 1,  -31, 1,      /* topleft row,col, and botleft row,col */
                   45953:           { 26,   31, 3,34, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45954:             "\x0b\x4b\x35\xa5\x30\xfe\x43\xc3\x40\xfb\x43\xc3\x40"
                   45955:             "\x34\xc4\x3e\x0c" }  },
1.1       albertel 45956:       /* --- pixel bitmap for cmex160 char#98 ^ --- */
1.2       albertel 45957:       {  98,111243,                     /* character number, location */
                   45958:          16, 0,   12, 0,      /* topleft row,col, and botleft row,col */
                   45959:           { 12,    4, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45960:             "\x60\x80\x1f\x0e\x17\x80" }  },
1.1       albertel 45961:       /* --- pixel bitmap for cmex160 char#99 ^ --- */
1.2       albertel 45962:       {  99,112116,                     /* character number, location */
                   45963:          17, 0,   13, 0,      /* topleft row,col, and botleft row,col */
                   45964:           { 22,    4, 3,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45965:             "\x94\xe0\x1a\x94\x84\x34\xe4" }  },
1.1       albertel 45966:       /* --- pixel bitmap for cmex160 char#100 ^ --- */
1.2       albertel 45967:       { 100,113198,                     /* character number, location */
                   45968:          17, 0,   13, 0,      /* topleft row,col, and botleft row,col */
                   45969:           { 32,    4, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45970:             "\xe4\xe0\x9e\xd7\xa7\x45\xe0\x85" }  },
1.1       albertel 45971:       /* --- pixel bitmap for cmex160 char#101 ~ --- */
1.2       albertel 45972:       { 101,113909,                     /* character number, location */
                   45973:          16, 0,   13, 0,      /* topleft row,col, and botleft row,col */
                   45974:           { 12,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45975:             "\x3c\xe8\x7f\xc1\x03" }  },
1.1       albertel 45976:       /* --- pixel bitmap for cmex160 char#102 ~ --- */
1.2       albertel 45977:       { 102,114827,                     /* character number, location */
                   45978:          17, 0,   14, 0,      /* topleft row,col, and botleft row,col */
                   45979:           { 22,    3, 3,13, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45980:             "\x46\xa2\x1e\x06\x12\xa6\x40" }  },
1.1       albertel 45981:       /* --- pixel bitmap for cmex160 char#103 ~ --- */
1.2       albertel 45982:       { 103,115954,                     /* character number, location */
                   45983:          17, 0,   14, 0,      /* topleft row,col, and botleft row,col */
                   45984:           { 32,    3, 3,19, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45985:             "\x5a\xe0\x12\x25\x4a\x45\x22\xe0\x1a\x50" }  },
                   45986:       /* --- pixel bitmap for cmex160 char#104 \Big[ --- */
                   45987:       { 104,13063,                      /* character number, location */
                   45988:           1, 5,  -38, 5,      /* topleft row,col, and botleft row,col */
                   45989:           {  5,   39, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45990:             "\x05\x0f\xe1\x4f\xe1\x4f\x61\x45" }  },
                   45991:       /* --- pixel bitmap for cmex160 char#105 \Big] --- */
                   45992:       { 105,18910,                      /* character number, location */
                   45993:           1, 0,  -38, 0,      /* topleft row,col, and botleft row,col */
                   45994:           {  5,   39, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   45995:             "\x05\xfe\x41\xfe\x41\xf6\x41\x05" }  },
1.1       albertel 45996:       /* --- pixel bitmap for cmex160 char#106 (noname) --- */
1.2       albertel 45997:       { 106,24782,                      /* character number, location */
                   45998:           1, 5,  -38, 5,      /* topleft row,col, and botleft row,col */
                   45999:           {  7,   39, 2, 6, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   46000:             "\xff\x25\x00\x01\x06\x07" }  },
1.1       albertel 46001:       /* --- pixel bitmap for cmex160 char#107 (noname) --- */
1.2       albertel 46002:       { 107,28332,                      /* character number, location */
                   46003:           1, 1,  -38, 1,      /* topleft row,col, and botleft row,col */
                   46004:           {  6,   39, 2, 6, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   46005:             "\xff\x25\x05\x01\x00\x06" }  },
1.1       albertel 46006:       /* --- pixel bitmap for cmex160 char#108 (noname) --- */
1.2       albertel 46007:       { 108,31886,                      /* character number, location */
                   46008:           1, 5,  -38, 5,      /* topleft row,col, and botleft row,col */
                   46009:           {  7,   39, 2, 7, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   46010:             "\x00\x07\x00\xff\x25\x01\x06" }  },
1.1       albertel 46011:       /* --- pixel bitmap for cmex160 char#109 (noname) --- */
1.2       albertel 46012:       { 109,35444,                      /* character number, location */
                   46013:           1, 1,  -38, 1,      /* topleft row,col, and botleft row,col */
                   46014:           {  6,   39, 2, 6, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   46015:             "\x00\x06\xff\x25\x05\x01" }  },
                   46016:       /* --- pixel bitmap for cmex160 char#110 \Big{ --- */
                   46017:       { 110,39192,                      /* character number, location */
                   46018:           1, 2,  -38, 2,      /* topleft row,col, and botleft row,col */
                   46019:           { 11,   39, 3,38, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   46020:             "\x92\x72\x82\x30\xfd\x52\x40\x42\x72\x72\xb2\xb2\x50"
                   46021:             "\xfd\x52\x40\x62\xa2\xb2" }  },
                   46022:       /* --- pixel bitmap for cmex160 char#111 \Big} --- */
                   46023:       { 111,46702,                      /* character number, location */
                   46024:           1, 2,  -38, 2,      /* topleft row,col, and botleft row,col */
                   46025:           { 11,   39, 3,39, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   46026:             "\x02\xb2\xb2\x50\xfd\x52\x40\x62\xa2\xb2\x72\x82\x30"
                   46027:             "\xfd\x52\x40\x42\x72\x72\x93" }  },
1.1       albertel 46028:       /* --- pixel bitmap for cmex160 char#112 (noname) --- */
1.2       albertel 46029:       { 112,73634,                      /* character number, location */
                   46030:           1, 2,  -26, 2,      /* topleft row,col, and botleft row,col */
                   46031:           { 21,   27, 3,107, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   46032:             "\xe0\x61\xf1\xe0\x51\x10\xf1\xe0\x41\x20\xf1\xe0\x31"
                   46033:             "\x30\xf1\xe0\x21\x40\xf1\xe0\x11\x50\xf1\xe1\x60\xd1"
                   46034:             "\x91\xa1\x74\x81\xa2\x81\x80\xf1\x32\x61\x90\xf1\x42"
                   46035:             "\x41\xa0\xf1\x52\x21\xb0\x52\x11\xe0\x43\xe0\x42\xe0"
                   46036:             "\x61\xd1" }  },
1.1       albertel 46037:       /* --- pixel bitmap for cmex160 char#113 (noname) --- */
1.2       albertel 46038:       { 113,74617,                      /* character number, location */
                   46039:           1, 2,  -39, 2,      /* topleft row,col, and botleft row,col */
                   46040:           { 21,   40, 3,119, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   46041:             "\xf1\xe0\x61\xf2\xe0\x51\x10\xf2\xe0\x41\x20\xf2\xe0"
                   46042:             "\x31\x30\xf2\xe0\x21\x40\xf2\xe0\x11\x50\xf2\xe1\x60"
                   46043:             "\xd1\x91\xa1\x83\x91\x71\x12\x81\xa2\x81\xb2\x71\x80"
                   46044:             "\xf1\x32\x61\x90\x42\x51\x90\xf2\x42\x41\xa0\xf2\x52"
                   46045:             "\x21\xb0\xf2\x63\xc0\xf1\x71\xd0" }  },
1.1       albertel 46046:       /* --- pixel bitmap for cmex160 char#114 (noname) --- */
1.2       albertel 46047:       { 114,75637,                      /* character number, location */
                   46048:           1, 2,  -52, 2,      /* topleft row,col, and botleft row,col */
                   46049:           { 21,   53, 3,129, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   46050:             "\xf1\xe0\x61\xf3\xe0\x51\x10\xf3\xe0\x41\x20\xf3\xe0"
                   46051:             "\x31\x30\xf3\xe0\x21\x40\xf3\xe0\x11\x50\xf3\xe1\x60"
                   46052:             "\xd1\x70\xf1\x21\xa1\x70\x13\x91\x71\x12\x81\x80\xf1"
                   46053:             "\x22\x81\x80\x32\x71\x80\xf3\x32\x61\x90\xf3\x42\x41"
                   46054:             "\xa0\xf3\x52\x21\xb0\xf3\x63\xc0\x62\xd0\xf1\x71\xd0" }  },
1.1       albertel 46055:       /* --- pixel bitmap for cmex160 char#115 (noname) --- */
1.2       albertel 46056:       { 115,76693,                      /* character number, location */
                   46057:           1, 2,  -66, 2,      /* topleft row,col, and botleft row,col */
                   46058:           { 21,   67, 3,149, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   46059:             "\xf2\xe0\x61\xf4\xe0\x51\x10\xf4\xe0\x41\x20\xf4\xe0"
                   46060:             "\x31\x30\xf4\xe0\x21\x40\xf4\xe0\x11\x50\xf4\xe1\x60"
                   46061:             "\xd1\x70\xf1\x21\xa1\x70\xf1\x13\x91\x71\x12\x91\x71"
                   46062:             "\x12\x81\x80\xf1\x22\x81\x80\xf1\x32\x71\x80\xf2\x32"
                   46063:             "\x61\x90\xf1\x42\x51\x90\xf3\x42\x41\xa0\x52\x31\xa0"
                   46064:             "\xf4\x52\x21\xb0\xf4\x63\xc0\xf2\x71\xd2" }  },
1.1       albertel 46065:       /* --- pixel bitmap for cmex160 char#116 (noname) --- */
1.2       albertel 46066:       { 116,77831,                      /* character number, location */
                   46067:           1, 3,  -40, 3,      /* topleft row,col, and botleft row,col */
                   46068:           { 13,   41, 3,76, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   46069:             "\xf5\xc1\xf1\x22\x81\xf1\x13\x81\x0f\x11\x22\x71\x32"
                   46070:             "\x71\xf2\x42\x61\xf3\x52\x51\xf2\x62\x41\xf2\x72\x31"
                   46071:             "\xf2\x82\x21\xf3\x92\x11\xf2\xa3\xf2\xb2\xf1\xc1" }  },
1.1       albertel 46072:       /* --- pixel bitmap for cmex160 char#117 (noname) --- */
1.2       albertel 46073:       { 117,78760,                      /* character number, location */
                   46074:           1,15,  -14,15,      /* topleft row,col, and botleft row,col */
                   46075:           {  1,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   46076:             "\xff\x7f" }  },
1.1       albertel 46077:       /* --- pixel bitmap for cmex160 char#118 (noname) --- */
1.2       albertel 46078:       { 118,79581,                      /* character number, location */
                   46079:           1,15,  -13,15,      /* topleft row,col, and botleft row,col */
                   46080:           {  9,   14, 3, 7, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   46081:             "\x09\x0f\xc1\x82" }  },
1.1       albertel 46082:       /* --- pixel bitmap for cmex160 char#119 (noname) --- */
1.2       albertel 46083:       { 119,72665,                      /* character number, location */
                   46084:           1, 7,  -14, 7,      /* topleft row,col, and botleft row,col */
                   46085:           {  4,   15, 3, 6, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   46086:             "\xfe\x01\x21" }  },
1.1       albertel 46087:       /* --- pixel bitmap for cmex160 char#120 (noname) --- */
1.2       albertel 46088:       { 120,67947,                      /* character number, location */
                   46089:           0, 2,  -13, 2,      /* topleft row,col, and botleft row,col */
                   46090:           { 11,   13, 3,23, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   46091:             "\x51\x93\x75\x42\x21\x22\x11\x41\x41\xf7\x51\x51" }  },
1.1       albertel 46092:       /* --- pixel bitmap for cmex160 char#121 (noname) --- */
1.2       albertel 46093:       { 121,68880,                      /* character number, location */
                   46094:           0, 2,  -13, 2,      /* topleft row,col, and botleft row,col */
                   46095:           { 11,   13, 3,23, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   46096:             "\xf7\x51\x51\x41\x41\x12\x21\x22\x45\x73\x91\x51" }  },
1.1       albertel 46097:       /* --- pixel bitmap for cmex160 char#122 (noname) --- */
1.2       albertel 46098:       { 122,52204,                      /* character number, location */
                   46099:           3,-1,   -5,-1,      /* topleft row,col, and botleft row,col */
                   46100:           { 12,    8, 3,17, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   46101:             "\x84\x66\x48\x34\x73\x91\xa1\xa1\xb2" }  },
1.1       albertel 46102:       /* --- pixel bitmap for cmex160 char#123 (noname) --- */
1.2       albertel 46103:       { 123,52788,                      /* character number, location */
                   46104:           3,-1,   -5,-1,      /* topleft row,col, and botleft row,col */
                   46105:           { 12,    8, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   46106:             "\x04\x86\x68\x94\xa3\xb1\xc1\xc1" }  },
1.1       albertel 46107:       /* --- pixel bitmap for cmex160 char#124 (noname) --- */
1.2       albertel 46108:       { 124,53369,                      /* character number, location */
                   46109:           8,-1,    0,-1,      /* topleft row,col, and botleft row,col */
                   46110:           { 12,    8, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   46111:             "\x01\xc1\xc1\xb3\xa4\x98\x66\x84" }  },
1.1       albertel 46112:       /* --- pixel bitmap for cmex160 char#125 (noname) --- */
1.2       albertel 46113:       { 125,53951,                      /* character number, location */
                   46114:           8,-1,    0,-1,      /* topleft row,col, and botleft row,col */
                   46115:           { 12,    8, 3,17, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   46116:             "\xb1\xa1\xa1\x93\x74\x38\x46\x64\x82" }  },
1.1       albertel 46117:       /* --- pixel bitmap for cmex160 char#126 (noname) --- */
1.2       albertel 46118:       { 126,70665,                      /* character number, location */
                   46119:          -1, 3,  -13, 3,      /* topleft row,col, and botleft row,col */
                   46120:           { 12,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   46121:             "\x60\x00\x06\x90\x80\x19\x94\x32\xc9\x90\x00\x09\x90"
                   46122:             "\x00\x09\x90\x00\x09" }  },
1.1       albertel 46123:       /* --- pixel bitmap for cmex160 char#127 (noname) --- */
1.2       albertel 46124:       { 127,71769,                      /* character number, location */
                   46125:           0, 3,  -12, 3,      /* topleft row,col, and botleft row,col */
                   46126:           { 12,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   46127:             "\x90\x00\x09\x90\x00\x09\x90\x00\x09\x93\x4c\x29\x98"
                   46128:             "\x01\x09\x60\x00\x06" }  },
1.1       albertel 46129:       /* --- trailer  --- */
1.2       albertel 46130:       { -99, -999,  0,0,0,0, { 0,0,0,0, (pixbyte *)"\0" }  }
1.1       albertel 46131:    } ;
                   46132: 
                   46133: 
1.2       albertel 46134: /* --- size=5 for .180gf ---
                   46135:  * mf '\mode=preview; mag=magstep(-14.65037297372839890542); input cmex10'
                   46136:  * --------------------------------------------------------------------- */
1.1       albertel 46137: /* --- fontdef for cmex180 --- */
                   46138: static	chardef  cmex180[] =
                   46139:    {
1.2       albertel 46140:       /* --- pixel bitmap for cmex180 char#0 \big( --- */
                   46141:       {   0,  661,                      /* character number, location */
                   46142:           1, 4,  -28, 4,      /* topleft row,col, and botleft row,col */
                   46143:           {  6,   29, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   46144:             "\x20\x84\x21\x0c\x61\x18\xc2\x30\x0c\xc3\x30\x0c\xc3"
1.1       albertel 46145:             "\x30\x0c\x82\x61\x10\x0c\x82\x41\x20" }  },
1.2       albertel 46146:       /* --- pixel bitmap for cmex180 char#1 \big) --- */
                   46147:       {   1, 6576,                      /* character number, location */
                   46148:           1, 1,  -28, 1,      /* topleft row,col, and botleft row,col */
                   46149:           {  6,   29, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   46150:             "\x81\x60\x10\x0c\x82\x61\x10\x0c\xc3\x30\x0c\xc3\x30"
1.1       albertel 46151:             "\x0c\xc3\x10\x86\x21\x0c\x61\x08\x01" }  },
1.2       albertel 46152:       /* --- pixel bitmap for cmex180 char#2 \big[ --- */
                   46153:       {   2,12433,                      /* character number, location */
                   46154:           1, 5,  -28, 5,      /* topleft row,col, and botleft row,col */
                   46155:           {  5,   29, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   46156:             "\x05\x0f\xe1\x4f\xb1\x45" }  },
                   46157:       /* --- pixel bitmap for cmex180 char#3 \big] --- */
                   46158:       {   3,18441,                      /* character number, location */
                   46159:           1, 1,  -28, 1,      /* topleft row,col, and botleft row,col */
                   46160:           {  4,   29, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   46161:             "\x04\xfe\x31\xfb\x31\x04" }  },
1.1       albertel 46162:       /* --- pixel bitmap for cmex180 char#4 (noname) --- */
1.2       albertel 46163:       {   4,24312,                      /* character number, location */
                   46164:           1, 5,  -28, 5,      /* topleft row,col, and botleft row,col */
                   46165:           {  6,   29, 3,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   46166:             "\xfe\x01\x5f\xc1\x56" }  },
1.1       albertel 46167:       /* --- pixel bitmap for cmex180 char#5 (noname) --- */
1.2       albertel 46168:       {   5,27921,                      /* character number, location */
                   46169:           1, 1,  -28, 1,      /* topleft row,col, and botleft row,col */
                   46170:           {  6,   29, 3,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   46171:             "\xfe\x51\xfc\x51\x06" }  },
1.1       albertel 46172:       /* --- pixel bitmap for cmex180 char#6 (noname) --- */
1.2       albertel 46173:       {   6,31506,                      /* character number, location */
                   46174:           1, 5,  -28, 5,      /* topleft row,col, and botleft row,col */
                   46175:           {  6,   29, 3,11, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   46176:             "\x06\x0f\xe1\x5f\xc1\x52" }  },
1.1       albertel 46177:       /* --- pixel bitmap for cmex180 char#7 (noname) --- */
1.2       albertel 46178:       {   7,35123,                      /* character number, location */
                   46179:           1, 1,  -28, 1,      /* topleft row,col, and botleft row,col */
                   46180:           {  6,   29, 3,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   46181:             "\x06\xfe\x51\xfc\x51" }  },
                   46182:       /* --- pixel bitmap for cmex180 char#8 \big{ --- */
                   46183:       {   8,38783,                      /* character number, location */
                   46184:           1, 3,  -28, 3,      /* topleft row,col, and botleft row,col */
                   46185:           {  9,   29, 3,34, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   46186:             "\x72\x52\x20\xf9\x42\x30\x41\x62\x52\x92\x91\x40\xf9"
                   46187:             "\x42\x30\x52\x92" }  },
                   46188:       /* --- pixel bitmap for cmex180 char#9 \big} --- */
                   46189:       {   9,46564,                      /* character number, location */
                   46190:           1, 3,  -28, 3,      /* topleft row,col, and botleft row,col */
                   46191:           {  9,   29, 3,35, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   46192:             "\x02\x92\x91\x40\xf9\x42\x30\x52\x92\x52\x20\xf9\x42"
                   46193:             "\x30\x41\x62\x52\x70" }  },
                   46194:       /* --- pixel bitmap for cmex180 char#10 \big< --- */
                   46195:       {  10,55514,                      /* character number, location */
                   46196:           1, 2,  -28, 2,      /* topleft row,col, and botleft row,col */
                   46197:           {  8,   29, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   46198:             "\x80\x80\x40\x40\x20\x10\x10\x08\x08\x04\x04\x02\x02"
                   46199:             "\x01\x01\x01\x02\x02\x04\x04\x08\x08\x10\x10\x20\x40"
                   46200:             "\x40\x80\x80" }  },
                   46201:       /* --- pixel bitmap for cmex180 char#11 \big> --- */
                   46202:       {  11,58375,                      /* character number, location */
                   46203:           1, 2,  -28, 2,      /* topleft row,col, and botleft row,col */
                   46204:           {  8,   29, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   46205:             "\x01\x01\x02\x02\x04\x08\x08\x10\x10\x20\x20\x40\x40"
                   46206:             "\x80\x80\x80\x40\x40\x20\x20\x10\x10\x08\x08\x04\x02"
                   46207:             "\x02\x01\x01" }  },
1.1       albertel 46208:       /* --- pixel bitmap for cmex180 char#12 (noname) --- */
1.2       albertel 46209:       {  12,67557,                      /* character number, location */
                   46210:           1, 4,  -16, 4,      /* topleft row,col, and botleft row,col */
                   46211:           {  1,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   46212:             "\xff\xff\x01" }  },
1.1       albertel 46213:       /* --- pixel bitmap for cmex180 char#13 (noname) --- */
1.2       albertel 46214:       {  13,68184,                      /* character number, location */
                   46215:           1, 4,  -16, 4,      /* topleft row,col, and botleft row,col */
                   46216:           {  6,   17, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   46217:             "\xfe\x01\x41\x0f\x11\x41" }  },
1.1       albertel 46218:       /* --- pixel bitmap for cmex180 char#14 (noname) --- */
1.2       albertel 46219:       {  14,61248,                      /* character number, location */
                   46220:           1, 1,  -28, 1,      /* topleft row,col, and botleft row,col */
                   46221:           { 12,   29, 3,79, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   46222:             "\xb1\xa2\xf1\xa1\x10\x92\xa1\xa2\x20\xf1\x81\x30\x72"
                   46223:             "\xa1\xa2\x40\xf1\x61\x50\x52\x50\xf1\x51\x60\x42\xa1"
                   46224:             "\xa2\x70\xf1\x31\x80\x22\xa1\xa2\x90\xf1\x11\xa2\xa1"
                   46225:             "\xb1" }  },
1.1       albertel 46226:       /* --- pixel bitmap for cmex180 char#15 (noname) --- */
1.2       albertel 46227:       {  15,64434,                      /* character number, location */
                   46228:           1, 1,  -28, 1,      /* topleft row,col, and botleft row,col */
                   46229:           { 12,   29, 3,82, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   46230:             "\x01\xb2\xa0\xf1\x11\xa0\x12\xb1\xb2\x80\xf1\x31\x80"
                   46231:             "\x32\xb1\xb2\x60\xf1\x51\x60\x52\x50\xf1\x61\x50\x62"
                   46232:             "\xb1\xb2\x30\xf1\x81\x30\x82\xb1\xb2\x10\xf1\xa1\x10"
                   46233:             "\xa2\xb1" }  },
                   46234:       /* --- pixel bitmap for cmex180 char#16 \Big( --- */
                   46235:       {  16, 1430,                      /* character number, location */
                   46236:           1, 5,  -43, 5,      /* topleft row,col, and botleft row,col */
                   46237:           {  9,   44, 3,70, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   46238:             "\x81\x71\x71\x72\x71\x71\x72\x71\x50\xf1\x22\x50\x21"
                   46239:             "\x60\xf3\x12\x6f\xd2\x70\xf3\x12\x60\x21\x60\xf1\x22"
                   46240:             "\x50\x31\x82\x81\x91\x82\x81\x91\x91" }  },
                   46241:       /* --- pixel bitmap for cmex180 char#17 \Big) --- */
                   46242:       {  17, 7306,                      /* character number, location */
                   46243:           1, 1,  -43, 1,      /* topleft row,col, and botleft row,col */
                   46244:           {  9,   44, 3,71, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   46245:             "\x01\x91\x91\x82\x81\x91\x82\x81\x30\xf1\x52\x20\x61"
                   46246:             "\x20\xf3\x62\x10\xfd\x72\xf3\x62\x10\x61\x20\xf1\x52"
                   46247:             "\x20\x51\x72\x71\x71\x72\x71\x71\x71\x81" }  },
                   46248:       /* --- pixel bitmap for cmex180 char#18 \bigg( --- */
                   46249:       {  18, 2282,                      /* character number, location */
                   46250:           1, 5,  -58, 5,      /* topleft row,col, and botleft row,col */
                   46251:           { 12,   59, 3,102, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   46252:             "\xb1\xa1\xa1\xa1\xa2\xa1\xa1\xa2\xa1\xa2\xa1\x70\xf1"
                   46253:             "\x32\x70\xf2\x22\x80\x21\x90\xf3\x12\x90\x11\xaf\xe2"
                   46254:             "\xa0\x11\xa0\xf3\x12\x90\x21\x90\xf2\x22\x80\xf1\x32"
                   46255:             "\x70\x41\xb2\xb1\xb2\xb1\xc1\xb2\xb1\xc1\xc1\xc1" }  },
                   46256:       /* --- pixel bitmap for cmex180 char#19 \bigg) --- */
                   46257:       {  19, 8119,                      /* character number, location */
                   46258:           1, 1,  -58, 1,      /* topleft row,col, and botleft row,col */
                   46259:           { 12,   59, 3,103, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   46260:             "\x01\xc1\xc1\xc1\xb2\xb1\xc1\xb2\xb1\xb2\xb1\x40\xf1"
                   46261:             "\x72\x30\xf2\x82\x20\x91\x20\xf3\x92\x10\xa1\x10\xfe"
                   46262:             "\xa2\xa1\x10\xf3\x92\x10\x91\x20\xf2\x82\x20\xf1\x72"
                   46263:             "\x30\x71\xa2\xa1\xa2\xa1\xa1\xa2\xa1\xa1\xa1\xa1\xb1" }  },
                   46264:       /* --- pixel bitmap for cmex180 char#20 \bigg[ --- */
                   46265:       {  20,14146,                      /* character number, location */
                   46266:           1, 6,  -58, 6,      /* topleft row,col, and botleft row,col */
                   46267:           {  7,   59, 3,24, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   46268:             "\xf1\x07\x0f\xe2\x5f\xe2\x5f\xe2\x5f\x92\x5f\x17" }  },
                   46269:       /* --- pixel bitmap for cmex180 char#21 \bigg] --- */
                   46270:       {  21,20076,                      /* character number, location */
                   46271:           1, 0,  -58, 0,      /* topleft row,col, and botleft row,col */
                   46272:           {  7,   59, 3,24, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   46273:             "\xf1\x07\xfe\x52\xfe\x52\xfe\x52\xf9\x52\x0f\x17" }  },
1.1       albertel 46274:       /* --- pixel bitmap for cmex180 char#22 (noname) --- */
1.2       albertel 46275:       {  22,26089,                      /* character number, location */
                   46276:           1, 6,  -58, 6,      /* topleft row,col, and botleft row,col */
                   46277:           {  9,   59, 2, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   46278:             "\xff\x38\x00\x02\x07\xff\x01\x09" }  },
1.1       albertel 46279:       /* --- pixel bitmap for cmex180 char#23 (noname) --- */
1.2       albertel 46280:       {  23,29646,                      /* character number, location */
                   46281:           1, 0,  -58, 0,      /* topleft row,col, and botleft row,col */
                   46282:           {  9,   59, 2, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   46283:             "\xff\x38\x07\x02\x00\xff\x01\x09" }  },
1.1       albertel 46284:       /* --- pixel bitmap for cmex180 char#24 (noname) --- */
1.2       albertel 46285:       {  24,33287,                      /* character number, location */
                   46286:           1, 6,  -58, 6,      /* topleft row,col, and botleft row,col */
                   46287:           {  9,   59, 2, 9, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   46288:             "\xff\x01\x00\x09\x00\xff\x38\x02\x07" }  },
1.1       albertel 46289:       /* --- pixel bitmap for cmex180 char#25 (noname) --- */
1.2       albertel 46290:       {  25,36852,                      /* character number, location */
                   46291:           1, 0,  -58, 0,      /* topleft row,col, and botleft row,col */
                   46292:           {  9,   59, 2, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   46293:             "\xff\x01\x00\x09\xff\x38\x07\x02" }  },
                   46294:       /* --- pixel bitmap for cmex180 char#26 \bigg{ --- */
                   46295:       {  26,40780,                      /* character number, location */
                   46296:           1, 4,  -58, 4,      /* topleft row,col, and botleft row,col */
                   46297:           { 11,   59, 3,70, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   46298:             "\x92\x82\x81\x91\x92\x40\xfe\x42\x50\xf4\x42\x50\xf1"
                   46299:             "\x32\x60\x22\x82\x81\xb2\xa2\x70\xf1\x32\x60\xfe\x42"
                   46300:             "\x50\xf4\x42\x50\x52\xa1\xb1\xb2\xa2" }  },
                   46301:       /* --- pixel bitmap for cmex180 char#27 \bigg} --- */
                   46302:       {  27,48563,                      /* character number, location */
                   46303:           1, 4,  -58, 4,      /* topleft row,col, and botleft row,col */
                   46304:           { 11,   59, 3,71, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   46305:             "\x01\xb2\xa2\x70\xf1\x32\x60\xfe\x42\x50\xf4\x42\x50"
                   46306:             "\x52\xa1\xb1\xb2\xa2\x82\x81\x91\x92\x40\xfe\x42\x50"
                   46307:             "\xf4\x42\x50\xf1\x32\x60\x22\x82\x81\xa2" }  },
                   46308:       /* --- pixel bitmap for cmex180 char#28 \bigg< --- */
                   46309:       {  28,56897,                      /* character number, location */
                   46310:           1, 3,  -59, 3,      /* topleft row,col, and botleft row,col */
                   46311:           { 14,   60, 3,144, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   46312:             "\xd1\xc2\xf2\xb2\x10\xf1\xa2\x20\xf1\x92\x30\xf2\x82"
                   46313:             "\x40\xf1\x72\x50\xf2\x62\x60\xf1\x52\x70\xf2\x42\x80"
                   46314:             "\xf1\x32\x90\xf1\x22\xa0\xf2\x12\xbf\x12\xc0\xf2\x12"
                   46315:             "\xb0\xf1\x22\xa0\xf1\x32\x90\xf2\x42\x80\xf1\x52\x70"
                   46316:             "\xf2\x62\x60\xf1\x72\x50\xf2\x82\x40\xf1\x92\x30\xf1"
                   46317:             "\xa2\x20\xf2\xb2\x10\xc2\xd1" }  },
                   46318:       /* --- pixel bitmap for cmex180 char#29 \bigg> --- */
                   46319:       {  29,59760,                      /* character number, location */
                   46320:           1, 2,  -59, 2,      /* topleft row,col, and botleft row,col */
                   46321:           { 14,   60, 3,145, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   46322:             "\xf1\x02\xc0\xf2\x12\xb0\xf1\x22\xa0\xf1\x32\x90\xf2"
                   46323:             "\x42\x80\xf1\x52\x70\xf2\x62\x60\xf1\x72\x50\xf2\x82"
                   46324:             "\x40\xf1\x92\x30\xf1\xa2\x20\xf2\xb2\x10\xf1\xc2\xf2"
                   46325:             "\xb2\x10\xf1\xa2\x20\xf1\x92\x30\xf2\x82\x40\xf1\x72"
                   46326:             "\x50\xf2\x62\x60\xf1\x52\x70\xf2\x42\x80\xf1\x32\x90"
                   46327:             "\xf1\x22\xa0\xf2\x12\xbf\x12\xc0" }  },
1.1       albertel 46328:       /* --- pixel bitmap for cmex180 char#30 (noname) --- */
1.2       albertel 46329:       {  30,62779,                      /* character number, location */
                   46330:           1, 1,  -58, 1,      /* topleft row,col, and botleft row,col */
                   46331:           { 24,   59, 3,243, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   46332:             "\xe0\x91\xe0\x82\xf1\xe0\x81\x10\xe0\x72\xe0\x81\xe0"
                   46333:             "\x82\x20\xf1\xe0\x61\x30\xe0\x52\xe0\x81\xe0\x82\x40"
                   46334:             "\xf1\xe0\x41\x50\xe0\x32\xe0\x81\xe0\x82\x60\xf1\xe0"
                   46335:             "\x21\x70\xe0\x12\xe0\x81\xe0\x82\x80\xf1\xe1\x90\xd2"
                   46336:             "\xe0\x81\xe0\x82\xa0\xf1\xc1\xb0\xb2\xb0\xf1\xb1\xc0"
                   46337:             "\xa2\xe0\x81\xe0\x82\xd0\xf1\x91\xe0\x82\xe0\x81\xe0"
                   46338:             "\x82\xe0\x10\xf1\x71\xe0\x20\x62\xe0\x81\xe0\x82\xe0"
                   46339:             "\x30\xf1\x51\xe0\x40\x42\xe0\x81\xe0\x82\xe0\x50\xf1"
                   46340:             "\x31\xe0\x60\x22\xe0\x81\xe0\x82\xe0\x70\xf1\x11\xe0"
                   46341:             "\x82\xe0\x81\xe0\x90" }  },
1.1       albertel 46342:       /* --- pixel bitmap for cmex180 char#31 (noname) --- */
1.2       albertel 46343:       {  31,65973,                      /* character number, location */
                   46344:           1, 1,  -58, 1,      /* topleft row,col, and botleft row,col */
                   46345:           { 24,   59, 3,242, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   46346:             "\x01\xe0\x92\xe0\x80\xf1\x11\xe0\x80\x12\xe0\x91\xe0"
                   46347:             "\x92\xe0\x60\xf1\x31\xe0\x60\x32\xe0\x91\xe0\x92\xe0"
                   46348:             "\x40\xf1\x51\xe0\x40\x52\xe0\x91\xe0\x92\xe0\x20\xf1"
                   46349:             "\x71\xe0\x20\x72\xe0\x91\xe0\x92\xe0\xf1\x91\xe0\x92"
                   46350:             "\xe0\x91\xe0\x92\xc0\xf1\xb1\xc0\xb2\xb0\xf1\xc1\xb0"
                   46351:             "\xc2\xe0\x91\xe0\x92\x90\xf1\xe1\x90\xe2\xe0\x91\xe0"
                   46352:             "\x92\x70\xf1\xe0\x21\x70\xe0\x22\xe0\x91\xe0\x92\x50"
                   46353:             "\xf1\xe0\x41\x50\xe0\x42\xe0\x91\xe0\x92\x30\xf1\xe0"
                   46354:             "\x61\x30\xe0\x62\xe0\x91\xe0\x92\x10\xf1\xe0\x81\x10"
                   46355:             "\xe0\x82\xe0\x91" }  },
                   46356:       /* --- pixel bitmap for cmex180 char#32 \Bigg( --- */
                   46357:       {  32, 3164,                      /* character number, location */
                   46358:           1, 6,  -73, 6,      /* topleft row,col, and botleft row,col */
                   46359:           { 13,   74, 3,126, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   46360:             "\xc1\xb1\xb1\xb2\xb1\xb1\xb2\xb1\xb2\xb1\xb2\xb1\xb2"
                   46361:             "\xb1\x80\xf1\x32\x80\x31\x90\xf2\x22\x90\x21\xa0\xf5"
                   46362:             "\x12\xa0\x11\xbf\xe2\xbf\x22\xb0\x11\xb0\xf5\x12\xa0"
                   46363:             "\x21\xa0\xf2\x22\x90\x31\x90\xf1\x32\x80\x41\xc2\xc1"
                   46364:             "\xc2\xc1\xc2\xc1\xc2\xc1\xd1\xc2\xc1\xd1\xd1" }  },
                   46365:       /* --- pixel bitmap for cmex180 char#33 \Bigg) --- */
                   46366:       {  33, 8988,                      /* character number, location */
                   46367:           1, 1,  -73, 1,      /* topleft row,col, and botleft row,col */
                   46368:           { 13,   74, 3,127, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   46369:             "\x01\xd1\xd1\xc2\xc1\xd1\xc2\xc1\xc2\xc1\xc2\xc1\xc2"
                   46370:             "\xc1\x40\xf1\x82\x30\x91\x30\xf2\x92\x20\xa1\x20\xf5"
                   46371:             "\xa2\x10\xb1\x10\xfe\xb2\xf2\xb2\xb1\x10\xf5\xa2\x10"
                   46372:             "\xa1\x20\xf2\x92\x20\x91\x30\xf1\x82\x30\x81\xb2\xb1"
                   46373:             "\xb2\xb1\xb2\xb1\xb2\xb1\xb1\xb2\xb1\xb1\xb1\xc0" }  },
                   46374:       /* --- pixel bitmap for cmex180 char#34 \Bigg[ --- */
                   46375:       {  34,15061,                      /* character number, location */
                   46376:           1, 7,  -73, 7,      /* topleft row,col, and botleft row,col */
                   46377:           {  8,   74, 2,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   46378:             "\xff\x01\x00\x08\x00\xff\x45\x02\x06\xff\x01\x08" }  },
                   46379:       /* --- pixel bitmap for cmex180 char#35 \Bigg] --- */
                   46380:       {  35,20978,                      /* character number, location */
                   46381:           1, 0,  -73, 0,      /* topleft row,col, and botleft row,col */
                   46382:           {  8,   74, 2,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   46383:             "\xff\x01\x00\x08\xff\x45\x06\x02\x00\xff\x01\x08" }  },
1.1       albertel 46384:       /* --- pixel bitmap for cmex180 char#36 (noname) --- */
1.2       albertel 46385:       {  36,27036,                      /* character number, location */
                   46386:           1, 7,  -73, 7,      /* topleft row,col, and botleft row,col */
                   46387:           {  9,   74, 2, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   46388:             "\xff\x47\x00\x02\x07\xff\x01\x09" }  },
1.1       albertel 46389:       /* --- pixel bitmap for cmex180 char#37 (noname) --- */
1.2       albertel 46390:       {  37,30580,                      /* character number, location */
                   46391:           1, 0,  -73, 0,      /* topleft row,col, and botleft row,col */
                   46392:           {  9,   74, 2, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   46393:             "\xff\x47\x07\x02\x00\xff\x01\x09" }  },
1.1       albertel 46394:       /* --- pixel bitmap for cmex180 char#38 (noname) --- */
1.2       albertel 46395:       {  38,34236,                      /* character number, location */
                   46396:           1, 7,  -73, 7,      /* topleft row,col, and botleft row,col */
                   46397:           {  9,   74, 2, 9, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   46398:             "\xff\x01\x00\x09\x00\xff\x47\x02\x07" }  },
1.1       albertel 46399:       /* --- pixel bitmap for cmex180 char#39 (noname) --- */
1.2       albertel 46400:       {  39,37788,                      /* character number, location */
                   46401:           1, 0,  -73, 0,      /* topleft row,col, and botleft row,col */
                   46402:           {  9,   74, 2, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   46403:             "\xff\x01\x00\x09\xff\x47\x07\x02" }  },
                   46404:       /* --- pixel bitmap for cmex180 char#40 \Bigg{ --- */
                   46405:       {  40,41876,                      /* character number, location */
                   46406:           1, 4,  -73, 4,      /* topleft row,col, and botleft row,col */
                   46407:           { 12,   74, 3,88, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   46408:             "\xb1\x92\x92\x92\xa1\xa2\xa1\x50\xfe\x52\x50\xf8\x52"
                   46409:             "\x50\xf1\x42\x60\x32\xa1\xa1\x90\xf1\x11\xa0\x21\xc1"
                   46410:             "\xb2\x70\xf1\x42\x60\xfe\x52\x50\xf8\x52\x50\x61\xb2"
                   46411:             "\xb1\xb2\xb2\xb2\xc1" }  },
                   46412:       /* --- pixel bitmap for cmex180 char#41 \Bigg} --- */
                   46413:       {  41,49660,                      /* character number, location */
                   46414:           1, 4,  -73, 4,      /* topleft row,col, and botleft row,col */
                   46415:           { 12,   74, 3,85, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   46416:             "\x01\xc2\xb2\xb2\xb1\xb2\xb1\x60\xfe\x52\x50\xf8\x52"
                   46417:             "\x50\xf1\x62\x40\x72\xb1\xc1\xc2\xa1\xa1\xa1\xa2\x30"
                   46418:             "\xf1\x62\x40\xfe\x52\x50\xf8\x52\x50\x51\xa2\xa1\xa2"
                   46419:             "\x92\x92\x91\xb2" }  },
                   46420:       /* --- pixel bitmap for cmex180 char#42 \Bigg< --- */
                   46421:       {  42,57713,                      /* character number, location */
                   46422:           1, 3,  -73, 3,      /* topleft row,col, and botleft row,col */
                   46423:           { 15,   74, 3,156, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   46424:             "\xe1\xd2\xf2\xc2\x10\xf2\xb2\x20\xf2\xa2\x30\xf1\x92"
                   46425:             "\x40\xf2\x82\x50\xf2\x72\x60\xf2\x62\x70\xf2\x52\x80"
                   46426:             "\xf1\x42\x90\xf2\x32\xa0\xf2\x22\xb0\xf2\x12\xcf\x12"
                   46427:             "\xd0\xf2\x12\xc0\xf2\x22\xb0\xf2\x32\xa0\xf1\x42\x90"
                   46428:             "\xf2\x52\x80\xf2\x62\x70\xf2\x72\x60\xf2\x82\x50\xf1"
                   46429:             "\x92\x40\xf2\xa2\x30\xf2\xb2\x20\xf2\xc2\x10\xd2\xe1" }  },
                   46430:       /* --- pixel bitmap for cmex180 char#43 \Bigg> --- */
                   46431:       {  43,60577,                      /* character number, location */
                   46432:           1, 2,  -73, 2,      /* topleft row,col, and botleft row,col */
                   46433:           { 15,   74, 3,157, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   46434:             "\xf1\x02\xd0\xf2\x12\xc0\xf2\x22\xb0\xf2\x32\xa0\xf1"
                   46435:             "\x42\x90\xf2\x52\x80\xf2\x62\x70\xf2\x72\x60\xf2\x82"
                   46436:             "\x50\xf1\x92\x40\xf2\xa2\x30\xf2\xb2\x20\xf2\xc2\x10"
                   46437:             "\xf1\xd2\xf2\xc2\x10\xf2\xb2\x20\xf2\xa2\x30\xf1\x92"
                   46438:             "\x40\xf2\x82\x50\xf2\x72\x60\xf2\x62\x70\xf2\x52\x80"
                   46439:             "\xf1\x42\x90\xf2\x32\xa0\xf2\x22\xb0\xf2\x12\xcf\x12"
                   46440:             "\xd0" }  },
                   46441:       /* --- pixel bitmap for cmex180 char#44 / --- */
                   46442:       {  44,63759,                      /* character number, location */
                   46443:           1, 1,  -73, 1,      /* topleft row,col, and botleft row,col */
                   46444:           { 30,   74, 3,225, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   46445:             "\xf1\xe0\xe2\xf2\xe0\xd2\x10\xf1\xe0\xc2\x20\xf2\xe0"
                   46446:             "\xb2\x30\xf2\xe0\xa2\x40\xf1\xe0\x92\x50\xf2\xe0\x82"
                   46447:             "\x60\xf1\xe0\x72\x70\xf2\xe0\x62\x80\xf1\xe0\x52\x90"
                   46448:             "\xf2\xe0\x42\xa0\xf2\xe0\x32\xb0\xf1\xe0\x22\xc0\xf2"
                   46449:             "\xe0\x12\xd0\xf1\xe2\xe0\xf2\xd2\xe0\x10\xf1\xc2\xe0"
                   46450:             "\x20\xf2\xb2\xe0\x30\xf2\xa2\xe0\x40\xf1\x92\xe0\x50"
                   46451:             "\xf2\x82\xe0\x60\xf1\x72\xe0\x70\xf2\x62\xe0\x80\xf1"
                   46452:             "\x52\xe0\x90\xf2\x42\xe0\xa0\xf2\x32\xe0\xb0\xf1\x22"
                   46453:             "\xe0\xc0\xf2\x12\xe0\xdf\x12\xe0\xe0" }  },
                   46454:       /* --- pixel bitmap for cmex180 char#45 \ --- */
                   46455:       {  45,66957,                      /* character number, location */
                   46456:           1, 1,  -73, 1,      /* topleft row,col, and botleft row,col */
                   46457:           { 30,   74, 3,228, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   46458:             "\xf1\x02\xe0\xe0\xf2\x12\xe0\xd0\xf1\x22\xe0\xc0\xf2"
                   46459:             "\x32\xe0\xb0\xf2\x42\xe0\xa0\xf1\x52\xe0\x90\xf2\x62"
                   46460:             "\xe0\x80\xf1\x72\xe0\x70\xf2\x82\xe0\x60\xf1\x92\xe0"
                   46461:             "\x50\xf2\xa2\xe0\x40\xf2\xb2\xe0\x30\xf1\xc2\xe0\x20"
                   46462:             "\xf2\xd2\xe0\x10\xf1\xe2\xe0\xf2\xe0\x12\xd0\xf1\xe0"
                   46463:             "\x22\xc0\xf2\xe0\x32\xb0\xf2\xe0\x42\xa0\xf1\xe0\x52"
                   46464:             "\x90\xf2\xe0\x62\x80\xf1\xe0\x72\x70\xf2\xe0\x82\x60"
                   46465:             "\xf1\xe0\x92\x50\xf2\xe0\xa2\x40\xf2\xe0\xb2\x30\xf1"
                   46466:             "\xe0\xc2\x20\xf2\xe0\xd2\x10\xf1\xe0\xe2" }  },
                   46467:       /* --- pixel bitmap for cmex180 char#46 / --- */
                   46468:       {  46,61933,                      /* character number, location */
                   46469:           1, 1,  -43, 1,      /* topleft row,col, and botleft row,col */
                   46470:           { 18,   44, 3,165, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   46471:             "\xe0\x31\xe0\x22\xf1\xe0\x21\x10\xe0\x12\xe0\x21\xe0"
                   46472:             "\x22\x20\xf1\xe1\x30\xd2\xe0\x21\xe0\x22\x40\xf1\xc1"
                   46473:             "\x50\xb2\xe0\x21\xe0\x22\x60\xf1\xa1\x70\x92\xe0\x21"
                   46474:             "\xe0\x22\x80\xf1\x81\x90\x72\x90\xf1\x71\xa0\x62\xe0"
                   46475:             "\x21\xe0\x22\xb0\xf1\x51\xc0\x42\xe0\x21\xe0\x22\xd0"
                   46476:             "\xf1\x31\xe0\x22\xe0\x21\xe0\x22\xe0\x10\xf1\x11\xe0"
                   46477:             "\x22\xe0\x21\xe0\x30" }  },
                   46478:       /* --- pixel bitmap for cmex180 char#47 \ --- */
                   46479:       {  47,65123,                      /* character number, location */
                   46480:           1, 1,  -43, 1,      /* topleft row,col, and botleft row,col */
                   46481:           { 18,   44, 3,164, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   46482:             "\x01\xe0\x32\xe0\x20\xf1\x11\xe0\x20\x12\xe0\x31\xe0"
                   46483:             "\x32\xe0\xf1\x31\xe0\x32\xe0\x31\xe0\x32\xc0\xf1\x51"
                   46484:             "\xc0\x52\xe0\x31\xe0\x32\xa0\xf1\x71\xa0\x72\x90\xf1"
                   46485:             "\x81\x90\x82\xe0\x31\xe0\x32\x70\xf1\xa1\x70\xa2\xe0"
                   46486:             "\x31\xe0\x32\x50\xf1\xc1\x50\xc2\xe0\x31\xe0\x32\x30"
                   46487:             "\xf1\xe1\x30\xe2\xe0\x31\xe0\x32\x10\xf1\xe0\x21\x10"
                   46488:             "\xe0\x22\xe0\x31" }  },
                   46489:       /* --- pixel bitmap for cmex180 char#48 \leftparentop --- */
                   46490:       {  48, 4118,                      /* character number, location */
                   46491:           0, 8,  -45, 8,      /* topleft row,col, and botleft row,col */
                   46492:           { 13,   45, 3,77, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   46493:             "\xc1\xb1\xb2\xb1\xb2\x20\xf1\x82\x30\xf1\x72\x40\xf1"
                   46494:             "\x62\x50\xf2\x52\x60\xf2\x42\x70\x33\x70\xf1\x32\x80"
                   46495:             "\xf2\x23\x80\xf1\x22\x90\xf5\x13\x90\x12\xaf\xc3\xa0" }  },
                   46496:       /* --- pixel bitmap for cmex180 char#49 \rightparentop --- */
                   46497:       {  49, 9903,                      /* character number, location */
                   46498:           0, 1,  -45, 1,      /* topleft row,col, and botleft row,col */
                   46499:           { 13,   45, 3,78, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   46500:             "\x01\xd1\xc2\xc1\xc2\x90\xf1\x32\x80\xf1\x42\x70\xf1"
                   46501:             "\x52\x60\xf2\x62\x50\xf2\x72\x40\x73\x30\xf1\x82\x30"
                   46502:             "\xf2\x83\x20\xf1\x92\x20\xf5\x93\x10\xa2\x10\xfc\xa3" }  },
1.1       albertel 46503:       /* --- pixel bitmap for cmex180 char#50 (noname) --- */
1.2       albertel 46504:       {  50,16001,                      /* character number, location */
                   46505:           0, 8,  -44, 8,      /* topleft row,col, and botleft row,col */
                   46506:           {  9,   44, 3,17, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   46507:             "\xf1\x09\x0f\xe2\x7f\xe2\x7f\xb2\x7f" }  },
1.1       albertel 46508:       /* --- pixel bitmap for cmex180 char#51 (noname) --- */
1.2       albertel 46509:       {  51,21879,                      /* character number, location */
                   46510:           0, 0,  -44, 0,      /* topleft row,col, and botleft row,col */
                   46511:           {  9,   44, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   46512:             "\xf1\x09\xfe\x72\xfe\x72\xfb\x72" }  },
1.1       albertel 46513:       /* --- pixel bitmap for cmex180 char#52 (noname) --- */
1.2       albertel 46514:       {  52,16903,                      /* character number, location */
                   46515:           1, 8,  -43, 8,      /* topleft row,col, and botleft row,col */
                   46516:           {  9,   44, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   46517:             "\xfe\x02\x7f\xe2\x7f\xb2\x7f\x19" }  },
1.1       albertel 46518:       /* --- pixel bitmap for cmex180 char#53 (noname) --- */
1.2       albertel 46519:       {  53,22742,                      /* character number, location */
                   46520:           1, 0,  -43, 0,      /* topleft row,col, and botleft row,col */
                   46521:           {  9,   44, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   46522:             "\xfe\x72\xfe\x72\xfb\x72\x0f\x19" }  },
1.1       albertel 46523:       /* --- pixel bitmap for cmex180 char#54 (noname) --- */
1.2       albertel 46524:       {  54,17702,                      /* character number, location */
                   46525:           1, 8,  -16, 8,      /* topleft row,col, and botleft row,col */
                   46526:           {  2,   17, 3, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   46527:             "\xfe\x02\x0f\x12" }  },
1.1       albertel 46528:       /* --- pixel bitmap for cmex180 char#55 (noname) --- */
1.2       albertel 46529:       {  55,23502,                      /* character number, location */
                   46530:           1, 7,  -16, 7,      /* topleft row,col, and botleft row,col */
                   46531:           {  2,   17, 3, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   46532:             "\xfe\x02\x0f\x12" }  },
                   46533:       /* --- pixel bitmap for cmex180 char#56 \leftbracetop --- */
                   46534:       {  56,42877,                      /* character number, location */
                   46535:          -1,10,  -23,10,      /* topleft row,col, and botleft row,col */
                   46536:           {  8,   22, 3,25, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   46537:             "\x71\x52\x52\x52\x52\x40\xf1\x13\x40\x12\x5f\xd3\x52" }  },
                   46538:       /* --- pixel bitmap for cmex180 char#57 \rightbracetop --- */
                   46539:       {  57,50662,                      /* character number, location */
                   46540:          -1, 5,  -23, 5,      /* topleft row,col, and botleft row,col */
                   46541:           {  8,   22, 3,26, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   46542:             "\x01\x82\x72\x72\x72\x20\xf1\x43\x10\x52\x10\xfd\x53" }  },
                   46543:       /* --- pixel bitmap for cmex180 char#58 \leftbracebot --- */
                   46544:       {  58,43796,                      /* character number, location */
                   46545:           1,10,  -21,10,      /* topleft row,col, and botleft row,col */
                   46546:           {  8,   22, 3,26, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   46547:             "\xfd\x03\x50\x12\x50\xf1\x13\x40\x22\x72\x72\x72\x81" }  },
                   46548:       /* --- pixel bitmap for cmex180 char#59 \rightbracebot --- */
                   46549:       {  59,51582,                      /* character number, location */
                   46550:           1, 5,  -21, 5,      /* topleft row,col, and botleft row,col */
                   46551:           {  8,   22, 3,25, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   46552:             "\xfd\x53\x52\x10\xf1\x43\x10\x42\x52\x52\x52\x51\x73" }  },
                   46553:       /* --- pixel bitmap for cmex180 char#60 \leftbracemid --- */
                   46554:       {  60,44790,                      /* character number, location */
                   46555:           1, 5,  -46, 5,      /* topleft row,col, and botleft row,col */
                   46556:           {  8,   47, 3,48, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   46557:             "\xfe\x53\x53\xf1\x43\x10\x42\x53\x52\x52\x52\x51\x82"
                   46558:             "\x72\x72\x63\x62\x20\xf1\x43\x10\xfe\x53\x53" }  },
                   46559:       /* --- pixel bitmap for cmex180 char#61 \rightbracemid --- */
                   46560:       {  61,52577,                      /* character number, location */
                   46561:           1,10,  -46,10,      /* topleft row,col, and botleft row,col */
                   46562:           {  8,   47, 3,49, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   46563:             "\xfe\x03\x53\x50\xf1\x13\x40\x22\x63\x62\x72\x72\x81"
                   46564:             "\x52\x52\x52\x53\x52\x40\xf1\x13\x4f\xe3\x53\x52" }  },
                   46565:       /* --- pixel bitmap for cmex180 char#62 \leftbracebar --- */
                   46566:       {  62,45698,                      /* character number, location */
                   46567:           1,10,   -8,10,      /* topleft row,col, and botleft row,col */
                   46568:           {  3,    9, 3, 4, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   46569:             "\xf8\x03" }  },
1.1       albertel 46570:       /* --- pixel bitmap for cmex180 char#63 (noname) --- */
1.2       albertel 46571:       {  63,70795,                      /* character number, location */
                   46572:           1, 8,  -16, 8,      /* topleft row,col, and botleft row,col */
                   46573:           {  1,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   46574:             "\xff\xff\x01" }  },
                   46575:       /* --- pixel bitmap for cmex180 char#64 \leftparenbot --- */
                   46576:       {  64, 5036,                      /* character number, location */
                   46577:           2, 8,  -43, 8,      /* topleft row,col, and botleft row,col */
                   46578:           { 13,   45, 3,78, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   46579:             "\xfc\x03\xa0\x12\xa0\xf5\x13\x90\xf1\x22\x90\xf2\x23"
                   46580:             "\x80\xf1\x32\x80\x33\x70\xf2\x42\x70\xf2\x52\x60\xf1"
                   46581:             "\x62\x50\xf1\x72\x40\xf1\x82\x30\x92\xc1\xc2\xc1\xd1" }  },
                   46582:       /* --- pixel bitmap for cmex180 char#65 \rightparenbot --- */
                   46583:       {  65,10782,                      /* character number, location */
                   46584:           2, 1,  -43, 1,      /* topleft row,col, and botleft row,col */
                   46585:           { 13,   45, 3,77, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   46586:             "\xfc\xa3\xa2\x10\xf5\x93\x10\xf1\x92\x20\xf2\x83\x20"
                   46587:             "\xf1\x82\x30\x73\x30\xf2\x72\x40\xf2\x62\x50\xf1\x52"
                   46588:             "\x60\xf1\x42\x70\xf1\x32\x80\x22\xb1\xb2\xb1\xb1\xc3" }  },
                   46589:       /* --- pixel bitmap for cmex180 char#66 \leftparenbar --- */
                   46590:       {  66, 5948,                      /* character number, location */
                   46591:           1, 8,  -16, 8,      /* topleft row,col, and botleft row,col */
                   46592:           {  3,   17, 3, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   46593:             "\xfe\x03\x0f\x13" }  },
                   46594:       /* --- pixel bitmap for cmex180 char#67 \rightparenbar --- */
                   46595:       {  67,11655,                      /* character number, location */
                   46596:           1,11,  -16,11,      /* topleft row,col, and botleft row,col */
                   46597:           {  3,   17, 3, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   46598:             "\xfe\x03\x0f\x13" }  },
                   46599:       /* --- pixel bitmap for cmex180 char#68 \Big< --- */
                   46600:       {  68,56137,                      /* character number, location */
                   46601:           1, 2,  -44, 2,      /* topleft row,col, and botleft row,col */
                   46602:           { 11,   45, 3,106, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   46603:             "\xa1\x92\x91\x92\x10\xf1\x81\x20\x72\x91\x92\x91\x92"
                   46604:             "\x91\x92\x91\x92\x91\x92\x70\xf1\x21\x80\x12\x91\x92"
                   46605:             "\x91\xa2\xa1\xa2\x80\xf1\x21\x80\x22\xa1\xa2\xa1\xa2"
                   46606:             "\xa1\xa2\xa1\xa2\xa1\xa2\x20\xf1\x81\x20\x82\xa1\xa2"
                   46607:             "\xa1" }  },
                   46608:       /* --- pixel bitmap for cmex180 char#69 \Big> --- */
                   46609:       {  69,58999,                      /* character number, location */
                   46610:           1, 2,  -44, 2,      /* topleft row,col, and botleft row,col */
                   46611:           { 11,   45, 3,107, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   46612:             "\x01\xa2\xa1\xa2\x80\xf1\x21\x80\x22\xa1\xa2\xa1\xa2"
                   46613:             "\xa1\xa2\xa1\xa2\xa1\xa2\x20\xf1\x81\x20\x82\xa1\xa2"
                   46614:             "\xa1\x92\x91\x92\x10\xf1\x81\x20\x72\x91\x92\x91\x92"
                   46615:             "\x91\x92\x91\x92\x91\x92\x70\xf1\x21\x80\x12\x91\x92"
                   46616:             "\x91\xa2" }  },
1.1       albertel 46617:       /* --- pixel bitmap for cmex180 char#70 \bigsqcup --- */
1.2       albertel 46618:       {  70,81634,                      /* character number, location */
                   46619:           0, 1,  -25, 1,      /* topleft row,col, and botleft row,col */
                   46620:           { 19,   25, 2,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   46621:             "\xff\x16\x00\x02\x0f\x02\x00\xff\x01\x13" }  },
1.1       albertel 46622:       /* --- pixel bitmap for cmex180 char#71 \Bigsqcup --- */
1.2       albertel 46623:       {  71,82587,                      /* character number, location */
                   46624:           0, 1,  -35, 1,      /* topleft row,col, and botleft row,col */
                   46625:           { 26,   35, 2,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   46626:             "\xff\x20\x00\x02\x16\x02\x00\xff\x01\x1a" }  },
                   46627:       /* --- pixel bitmap for cmex180 char#72 \oint --- */
                   46628:       {  72,101889,                     /* character number, location */
                   46629:           0, 1,  -28, 1,      /* topleft row,col, and botleft row,col */
                   46630:           { 15,   28, 3,81, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   46631:             "\xa3\xb2\x21\xa1\x32\x82\x32\xf4\x82\x50\x64\xa1\x12"
                   46632:             "\x11\x81\x22\x21\x30\xf3\x31\x32\x31\x20\x41\x22\x21"
                   46633:             "\x81\x12\x11\xa4\x50\xf4\x62\x72\x42\x72\x32\x91\x31"
                   46634:             "\xb3\xa0" }  },
1.1       albertel 46635:       /* --- pixel bitmap for cmex180 char#73 \Bigoint --- */
1.2       albertel 46636:       {  73,102975,                     /* character number, location */
                   46637:           0, 1,  -55, 1,      /* topleft row,col, and botleft row,col */
                   46638:           { 23,   55, 3,209, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   46639:             "\xe0\x52\xe0\x61\x21\xe0\x41\x32\xe0\x22\x32\xe0\x21"
                   46640:             "\x60\xf2\xe0\x12\x60\xe0\x11\x70\xf2\xe2\x70\xd3\x70"
                   46641:             "\xf2\xd2\x80\xf2\xc3\x80\xf1\xc2\x90\xa4\xe0\x32\x14"
                   46642:             "\xe0\x11\x33\x11\xd1\x43\x21\xc1\x33\x31\x60\xf2\x51"
                   46643:             "\x43\x41\x50\x61\x33\x31\xc1\x23\x41\xd1\x13\x31\xe0"
                   46644:             "\x14\x12\xe0\x34\xa0\xf1\x92\xc0\xf2\x83\xc0\xf2\x82"
                   46645:             "\xd0\x73\xd0\xf2\x72\xe0\x71\xe0\x10\xf2\x62\xe0\x10"
                   46646:             "\x61\xe0\x22\x32\xe0\x22\x31\xe0\x41\x21\xe0\x62\xe0"
                   46647:             "\x55" }  },
1.1       albertel 46648:       /* --- pixel bitmap for cmex180 char#74 \bigodot --- */
1.2       albertel 46649:       {  74,83635,                      /* character number, location */
                   46650:           0, 1,  -25, 1,      /* topleft row,col, and botleft row,col */
                   46651:           { 26,   25, 3,111, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   46652:             "\x98\xe0\x2c\xc4\x84\x93\xc3\x73\xe3\x53\xe0\x23\x33"
                   46653:             "\xe0\x43\x10\xf1\x12\xe0\x62\x13\xe0\x65\xe0\x84\xa2"
                   46654:             "\xa4\x94\x94\xa2\xa4\xe0\x85\xe0\x63\xf1\x12\xe0\x62"
                   46655:             "\x10\x13\xe0\x43\x33\xe0\x23\x53\xe3\x73\xc3\x94\x84"
                   46656:             "\xcc\xe0\x28\x92" }  },
1.1       albertel 46657:       /* --- pixel bitmap for cmex180 char#75 \Bigodot --- */
1.2       albertel 46658:       {  75,84830,                      /* character number, location */
                   46659:           0, 1,  -35, 1,      /* topleft row,col, and botleft row,col */
                   46660:           { 36,   35, 3,197, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   46661:             "\xe8\xe0\xbe\xe0\x65\x85\xe0\x24\xe4\xd3\xe0\x43\xb3"
                   46662:             "\xe0\x63\x93\xe0\x83\x73\xe0\xa3\x53\xe0\xc3\x42\xe0"
                   46663:             "\xe2\x33\xe0\xe3\x10\xf1\x12\xe0\xe0\x22\x13\xe0\xe0"
                   46664:             "\x25\xe0\xe0\x44\xe0\x12\xe0\x12\x0f\x22\xe4\xe2\x02"
                   46665:             "\xe0\x12\xe0\x14\xe0\xe0\x45\xe0\xe0\x23\xf1\x12\xe0"
                   46666:             "\xe0\x22\x10\x13\xe0\xe3\x32\xe0\xe2\x43\xe0\xc3\x53"
                   46667:             "\xe0\xa3\x73\xe0\x83\x93\xe0\x63\xb3\xe0\x43\xd4\xe4"
                   46668:             "\xe0\x25\x85\xe0\x6e\xe0\xb8\xe0" }  },
1.1       albertel 46669:       /* --- pixel bitmap for cmex180 char#76 \bigoplus --- */
1.2       albertel 46670:       {  76,85885,                      /* character number, location */
                   46671:           0, 1,  -25, 1,      /* topleft row,col, and botleft row,col */
                   46672:           { 26,   25, 3,123, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   46673:             "\x98\xe0\x2c\xc4\x32\x34\x93\x52\x53\x73\x62\x63\x53"
                   46674:             "\x72\x73\x33\x82\x83\x10\xf1\x12\x92\x92\x13\x92\x95"
                   46675:             "\xa2\xa2\x0f\x1e\x0c\x0f\x12\xa2\xa2\x03\x92\x93\xf1"
                   46676:             "\x12\x92\x92\x10\x13\x82\x83\x33\x72\x73\x53\x62\x63"
                   46677:             "\x73\x52\x53\x94\x32\x34\xcc\xe0\x28\x93" }  },
1.1       albertel 46678:       /* --- pixel bitmap for cmex180 char#77 \Bigoplus --- */
1.2       albertel 46679:       {  77,87109,                      /* character number, location */
                   46680:           0, 1,  -35, 1,      /* topleft row,col, and botleft row,col */
                   46681:           { 36,   35, 3,193, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   46682:             "\xe8\xe0\xbe\xe0\x65\x32\x35\xe0\x24\x62\x64\xd3\x82"
                   46683:             "\x83\xb3\x92\x93\x93\xa2\xa3\x73\xb2\xb3\x53\xc2\xc3"
                   46684:             "\x42\xd2\xd2\x33\xd2\xd3\x10\xf1\x12\xe2\xe2\x13\xe2"
                   46685:             "\xe3\x0f\x12\xe0\x12\xe0\x12\x0f\x1e\x0e\x08\x0f\x22"
                   46686:             "\xe0\x12\xe0\x12\x03\xe2\xe3\xf1\x12\xe2\xe2\x10\x13"
                   46687:             "\xd2\xd3\x32\xd2\xd2\x43\xc2\xc3\x53\xb2\xb3\x73\xa2"
                   46688:             "\xa3\x93\x92\x93\xb3\x82\x83\xd4\x62\x64\xe0\x25\x32"
                   46689:             "\x35\xe0\x6e\xe0\xb8\xe0" }  },
1.1       albertel 46690:       /* --- pixel bitmap for cmex180 char#78 \bigotimes --- */
1.2       albertel 46691:       {  78,88209,                      /* character number, location */
                   46692:           0, 1,  -25, 1,      /* topleft row,col, and botleft row,col */
                   46693:           { 26,   25, 3,131, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   46694:             "\x98\xe0\x2c\xc4\x84\x93\xc3\x73\xe3\x55\xc5\x33\x13"
                   46695:             "\xa3\x13\x22\x33\x83\x32\x22\x43\x63\x42\x13\x53\x43"
                   46696:             "\x55\x73\x23\x74\x86\x84\x94\x94\x86\x84\x73\x23\x75"
                   46697:             "\x53\x43\x53\x12\x43\x63\x42\x22\x33\x83\x32\x23\x13"
                   46698:             "\xa3\x13\x35\xc5\x53\xe3\x73\xc3\x94\x84\xcc\xe0\x28"
                   46699:             "\x92" }  },
1.1       albertel 46700:       /* --- pixel bitmap for cmex180 char#79 \Bigotimes --- */
1.2       albertel 46701:       {  79,89446,                      /* character number, location */
                   46702:           0, 1,  -35, 1,      /* topleft row,col, and botleft row,col */
                   46703:           { 36,   35, 3,219, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   46704:             "\xe8\xe0\xbe\xe0\x65\x85\xe0\x24\xe4\xd3\xe0\x43\xb3"
                   46705:             "\xe0\x63\x94\xe0\x64\x76\xe0\x46\x53\x23\xe0\x23\x23"
                   46706:             "\x42\x43\xe3\x42\x33\x53\xc3\x53\x22\x73\xa3\x72\x22"
                   46707:             "\x83\x83\x82\x13\x93\x63\x95\xb3\x43\xb4\xc3\x23\xc4"
                   46708:             "\xd6\xd4\xe4\xe4\xd6\xd4\xc3\x23\xc4\xb3\x43\xb5\x93"
                   46709:             "\x63\x93\x12\x83\x83\x82\x22\x73\xa3\x72\x23\x53\xc3"
                   46710:             "\x53\x32\x43\xe3\x42\x43\x23\xe0\x23\x23\x56\xe0\x46"
                   46711:             "\x74\xe0\x64\x93\xe0\x63\xb3\xe0\x43\xd4\xe4\xe0\x25"
                   46712:             "\x85\xe0\x6e\xe0\xb8\xe2" }  },
                   46713:       /* --- pixel bitmap for cmex180 char#80 \sum --- */
                   46714:       {  80,90896,                      /* character number, location */
                   46715:           0, 1,  -25, 1,      /* topleft row,col, and botleft row,col */
                   46716:           { 24,   25, 3,123, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   46717:             "\x0e\x08\x32\xe0\x14\x33\xe0\x23\x32\xe0\x32\x42\xe0"
                   46718:             "\x31\x52\xe0\x31\x42\xe0\x92\xe0\x92\xe0\x83\xe0\x82"
                   46719:             "\xe0\x92\xe0\x83\xe0\x81\xe0\x81\xe0\x81\xe0\x20\xf1"
                   46720:             "\x61\xe0\x30\x51\xe0\x81\xe0\x41\x31\xe0\x41\x31\xe0"
                   46721:             "\x42\x31\xe0\x33\x21\xe0\x24\x2e\x08\x23" }  },
                   46722:       /* --- pixel bitmap for cmex180 char#81 \prod --- */
                   46723:       {  81,93888,                      /* character number, location */
                   46724:           0, 1,  -25, 1,      /* topleft row,col, and botleft row,col */
                   46725:           { 22,   25, 3,34, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   46726:             "\x0e\x08\x23\xc3\x20\xfe\x32\xc2\x30\xf5\x32\xc2\x30"
                   46727:             "\x24\xa4\x28\x68" }  },
                   46728:       /* --- pixel bitmap for cmex180 char#82 \int --- */
                   46729:       {  82,99790,                      /* character number, location */
                   46730:           0, 1,  -28, 1,      /* topleft row,col, and botleft row,col */
                   46731:           { 15,   28, 3,45, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   46732:             "\xa3\xb2\x21\xa1\x32\x82\x32\xf4\x82\x50\xf9\x72\x60"
                   46733:             "\xf4\x62\x72\x42\x72\x32\x91\x31\xb3\xa0" }  },
1.1       albertel 46734:       /* --- pixel bitmap for cmex180 char#83 \bigcup --- */
1.2       albertel 46735:       {  83,103869,                     /* character number, location */
                   46736:           0, 1,  -25, 1,      /* topleft row,col, and botleft row,col */
                   46737:           { 19,   25, 3,41, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   46738:             "\xfe\x02\xe0\x12\x0f\x22\xe0\x12\x03\xd3\x12\xd2\x23"
                   46739:             "\xb3\x33\x93\x53\x73\x7b\xa7\x60" }  },
1.1       albertel 46740:       /* --- pixel bitmap for cmex180 char#84 \bigcap --- */
1.2       albertel 46741:       {  84,105705,                     /* character number, location */
                   46742:           0, 1,  -25, 1,      /* topleft row,col, and botleft row,col */
                   46743:           { 19,   25, 3,40, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   46744:             "\x67\xab\x73\x73\x53\x93\x33\xb3\x22\xd2\x13\xd3\x0f"
                   46745:             "\xe2\xe0\x12\x0f\x22\xe0\x12" }  },
1.1       albertel 46746:       /* --- pixel bitmap for cmex180 char#85 \biguplus --- */
1.2       albertel 46747:       {  85,107606,                     /* character number, location */
                   46748:           0, 1,  -25, 1,      /* topleft row,col, and botleft row,col */
                   46749:           { 19,   25, 3,67, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   46750:             "\xf5\x02\xe0\x12\x02\x71\x72\x0f\x32\x72\x62\x0f\x12"
                   46751:             "\x2b\x22\x0f\x32\x72\x62\x02\xe0\x15\xd3\x12\xd2\x23"
                   46752:             "\xb3\x33\x93\x53\x73\x7b\xa7\x62" }  },
1.1       albertel 46753:       /* --- pixel bitmap for cmex180 char#86 \bigwedge --- */
1.2       albertel 46754:       {  86,109532,                     /* character number, location */
                   46755:           0, 1,  -25, 1,      /* topleft row,col, and botleft row,col */
                   46756:           { 19,   25, 3,104, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   46757:             "\x92\x80\xf1\x83\x80\x75\x70\xf1\x72\x12\x70\x63\x13"
                   46758:             "\x60\xf1\x62\x32\x60\x53\x33\xa2\x52\x93\x53\x40\xf1"
                   46759:             "\x42\x72\x40\x33\x73\x30\xf1\x32\x92\x30\x23\x93\x42"
                   46760:             "\xb2\x33\xb3\x10\xf1\x12\xd2\x13\xd3\x0f\x12\xe0\x12" }  },
1.1       albertel 46761:       /* --- pixel bitmap for cmex180 char#87 \bigvee --- */
1.2       albertel 46762:       {  87,111302,                     /* character number, location */
                   46763:           0, 1,  -25, 1,      /* topleft row,col, and botleft row,col */
                   46764:           { 19,   25, 3,105, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   46765:             "\xf1\x02\xe0\x12\x03\xd3\xf1\x12\xd2\x10\x13\xb3\x32"
                   46766:             "\xb2\x43\x93\x20\xf1\x32\x92\x30\x33\x73\x30\xf1\x42"
                   46767:             "\x72\x40\x43\x53\x92\x52\xa3\x33\x50\xf1\x62\x32\x60"
                   46768:             "\x63\x13\x60\xf1\x72\x12\x70\x75\x70\xf1\x83\x80\x92"
                   46769:             "\x80" }  },
1.1       albertel 46770:       /* --- pixel bitmap for cmex180 char#88 \Bigsum --- */
1.2       albertel 46771:       {  88,92399,                      /* character number, location */
                   46772:           0, 1,  -35, 1,      /* topleft row,col, and botleft row,col */
                   46773:           { 34,   35, 3,199, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   46774:             "\x0e\x0e\x03\x44\xe0\x67\x34\xe0\x94\x44\xe0\xa2\x54"
                   46775:             "\xe0\xa2\x54\xe0\xa1\x54\xe0\xb1\x54\xe0\xb0\xf1\x64"
                   46776:             "\xe0\xa0\x74\xe0\xe0\x34\xe0\x80\xf1\x94\xe0\x70\xa4"
                   46777:             "\xe0\x60\xf1\xb4\xe0\x50\xc4\xe0\xe0\x32\xe0\xe0\x41"
                   46778:             "\xe0\xe0\x42\xe0\xe0\x32\xe0\xe0\x32\xe0\xe0\x32\xe0"
                   46779:             "\xe0\x41\xe0\xe0\x41\xe0\xe0\x41\xe0\xe0\x41\xe0\xc1"
                   46780:             "\x52\xe0\xb1\x52\xe0\xb2\x42\xe0\xb3\x41\xe0\xa4\x41"
                   46781:             "\xe0\x87\x3e\x0e\x03\x2e\x0e\x03\x33" }  },
1.1       albertel 46782:       /* --- pixel bitmap for cmex180 char#89 \Bigprod --- */
1.2       albertel 46783:       {  89,95540,                      /* character number, location */
                   46784:           0, 1,  -35, 1,      /* topleft row,col, and botleft row,col */
                   46785:           { 30,   35, 3,40, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   46786:             "\x0e\x0e\x02\x35\xe5\x30\xfe\x44\xe4\x40\xfe\x44\xe4"
                   46787:             "\x40\x44\xe4\x76\xc6\x3c\x6c" }  },
1.1       albertel 46788:       /* --- pixel bitmap for cmex180 char#90 \Bigint --- */
1.2       albertel 46789:       {  90,100836,                     /* character number, location */
                   46790:           0, 1,  -55, 1,      /* topleft row,col, and botleft row,col */
                   46791:           { 23,   55, 3,157, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   46792:             "\xe0\x52\xe0\x61\x21\xe0\x41\x32\xe0\x22\x32\xe0\x21"
                   46793:             "\x60\xf2\xe0\x12\x60\xe0\x11\x70\xf2\xe2\x70\xd3\x70"
                   46794:             "\xf2\xd2\x80\xf2\xc3\x80\xf1\xc2\x90\xf3\xb3\x90\xf4"
                   46795:             "\xa3\xa0\xf3\x93\xb0\xf1\x92\xc0\xf2\x83\xc0\xf2\x82"
                   46796:             "\xd0\x73\xd0\xf2\x72\xe0\x71\xe0\x10\xf2\x62\xe0\x10"
                   46797:             "\x61\xe0\x22\x32\xe0\x22\x31\xe0\x41\x21\xe0\x62\xe0"
                   46798:             "\x52" }  },
1.1       albertel 46799:       /* --- pixel bitmap for cmex180 char#91 \Bigcup --- */
1.2       albertel 46800:       {  91,104830,                     /* character number, location */
                   46801:           0, 1,  -35, 1,      /* topleft row,col, and botleft row,col */
                   46802:           { 26,   35, 3,59, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   46803:             "\xfe\x02\xe0\x82\x0f\xa2\xe0\x82\x03\xe0\x63\x12\xe0"
                   46804:             "\x62\x23\xe0\x43\x33\xe0\x23\x53\xe3\x73\xc3\x94\x84"
                   46805:             "\xcc\xe0\x28\x92" }  },
1.1       albertel 46806:       /* --- pixel bitmap for cmex180 char#92 \Bigcap --- */
1.2       albertel 46807:       {  92,106673,                     /* character number, location */
                   46808:           0, 1,  -35, 1,      /* topleft row,col, and botleft row,col */
                   46809:           { 26,   35, 3,58, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   46810:             "\x98\xe0\x2c\xc4\x84\x93\xc3\x73\xe3\x53\xe0\x23\x33"
                   46811:             "\xe0\x43\x22\xe0\x62\x13\xe0\x63\x0f\xe2\xe0\x82\x0f"
                   46812:             "\xa2\xe0\x82" }  },
1.1       albertel 46813:       /* --- pixel bitmap for cmex180 char#93 \Biguplus --- */
1.2       albertel 46814:       {  93,108654,                     /* character number, location */
                   46815:           0, 1,  -35, 1,      /* topleft row,col, and botleft row,col */
                   46816:           { 26,   35, 3,85, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   46817:             "\xf7\x02\xe0\x82\x0f\x72\xa2\xa2\x02\x2e\x04\x24\x3e"
                   46818:             "\x02\x32\x0f\x62\xa2\xa2\x02\xe0\x85\xe0\x63\x12\xe0"
                   46819:             "\x62\x23\xe0\x43\x33\xe0\x23\x53\xe3\x73\xc3\x94\x84"
                   46820:             "\xcc\xe0\x28\x91" }  },
1.1       albertel 46821:       /* --- pixel bitmap for cmex180 char#94 \Bigwedge --- */
1.2       albertel 46822:       {  94,110465,                     /* character number, location */
                   46823:           0, 1,  -35, 1,      /* topleft row,col, and botleft row,col */
                   46824:           { 26,   35, 3,158, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   46825:             "\xf1\xc2\xc0\xf2\xb4\xb0\xa6\xe0\x62\x22\xe0\x53\x23"
                   46826:             "\x90\xf1\x92\x42\x90\x83\x43\x80\xf1\x82\x62\x80\x73"
                   46827:             "\x63\x70\xf1\x72\x82\x70\x63\x83\xc2\xa2\xb3\xa3\x50"
                   46828:             "\xf1\x52\xc2\x50\x43\xc3\x40\xf1\x42\xe2\x40\x33\xe3"
                   46829:             "\x30\xf1\x32\xe0\x22\x30\x23\xe0\x23\x42\xe0\x42\x33"
                   46830:             "\xe0\x43\x10\xf1\x12\xe0\x62\x13\xe0\x63\x0f\x12\xe0"
                   46831:             "\x82" }  },
1.1       albertel 46832:       /* --- pixel bitmap for cmex180 char#95 \Bigvee --- */
1.2       albertel 46833:       {  95,112236,                     /* character number, location */
                   46834:           0, 1,  -35, 1,      /* topleft row,col, and botleft row,col */
                   46835:           { 26,   35, 3,159, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   46836:             "\xf1\x02\xe0\x82\x03\xe0\x63\xf1\x12\xe0\x62\x10\x13"
                   46837:             "\xe0\x43\x32\xe0\x42\x43\xe0\x23\x20\xf1\x32\xe0\x22"
                   46838:             "\x30\x33\xe3\x30\xf1\x42\xe2\x40\x43\xc3\x40\xf1\x52"
                   46839:             "\xc2\x50\x53\xa3\xb2\xa2\xc3\x83\x60\xf1\x72\x82\x70"
                   46840:             "\x73\x63\x70\xf1\x82\x62\x80\x83\x43\x80\xf1\x92\x42"
                   46841:             "\x90\x93\x23\xe0\x52\x22\xe0\x66\xa0\xf2\xb4\xb0\xf1"
                   46842:             "\xc2\xc3" }  },
                   46843:       /* --- pixel bitmap for cmex180 char#96 \coprod --- */
                   46844:       {  96,97075,                      /* character number, location */
                   46845:           0, 1,  -25, 1,      /* topleft row,col, and botleft row,col */
                   46846:           { 22,   25, 3,34, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   46847:             "\x08\x68\x24\xa4\x20\xfe\x32\xc2\x30\xf5\x32\xc2\x30"
                   46848:             "\x23\xc3\x2e\x08" }  },
1.1       albertel 46849:       /* --- pixel bitmap for cmex180 char#97 \Bigcoprod --- */
1.2       albertel 46850:       {  97,98729,                      /* character number, location */
                   46851:           0, 1,  -35, 1,      /* topleft row,col, and botleft row,col */
                   46852:           { 30,   35, 3,40, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   46853:             "\x0c\x6c\x36\xc6\x30\xfe\x44\xe4\x40\xfe\x44\xe4\x40"
                   46854:             "\x44\xe4\x75\xe5\x3e\x0e\x02" }  },
1.1       albertel 46855:       /* --- pixel bitmap for cmex180 char#98 ^ --- */
1.2       albertel 46856:       {  98,113035,                     /* character number, location */
                   46857:          19, 0,   14, 0,      /* topleft row,col, and botleft row,col */
                   46858:           { 14,    5, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   46859:             "\x62\xa6\x63\x43\x32\x82\x11\xc1" }  },
1.1       albertel 46860:       /* --- pixel bitmap for cmex180 char#99 ^ --- */
1.2       albertel 46861:       {  99,113912,                     /* character number, location */
                   46862:          20, 0,   15, 0,      /* topleft row,col, and botleft row,col */
                   46863:           { 25,    5, 3,20, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   46864:             "\xb3\xe0\x59\xd5\x55\x74\xd4\x23\xe0\x53" }  },
1.1       albertel 46865:       /* --- pixel bitmap for cmex180 char#100 ^ --- */
1.2       albertel 46866:       { 100,114998,                     /* character number, location */
                   46867:          20, 0,   15, 0,      /* topleft row,col, and botleft row,col */
                   46868:           { 36,    5, 3,26, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   46869:             "\xe0\x24\xe0\xec\xe0\x66\x86\xc5\xe0\x45\x44\xe0\xe4" }  },
1.1       albertel 46870:       /* --- pixel bitmap for cmex180 char#101 ~ --- */
1.2       albertel 46871:       { 101,115713,                     /* character number, location */
                   46872:          18, 0,   15, 0,      /* topleft row,col, and botleft row,col */
                   46873:           { 14,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   46874:             "\x7c\xa0\xff\x17\xf8\x00" }  },
1.1       albertel 46875:       /* --- pixel bitmap for cmex180 char#102 ~ --- */
1.2       albertel 46876:       { 102,116631,                     /* character number, location */
                   46877:          19, 0,   15, 0,      /* topleft row,col, and botleft row,col */
                   46878:           { 25,    4, 3,17, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   46879:             "\x66\xc1\x3a\x83\x23\x8a\x31\xc6\x60" }  },
1.1       albertel 46880:       /* --- pixel bitmap for cmex180 char#103 ~ --- */
1.2       albertel 46881:       { 103,117764,                     /* character number, location */
                   46882:          19, 0,   15, 0,      /* topleft row,col, and botleft row,col */
                   46883:           { 36,    4, 3,25, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   46884:             "\x98\xe0\x32\x55\x45\xc3\x43\xc5\x45\x52\xe0\x38\x94" }  },
                   46885:       /* --- pixel bitmap for cmex180 char#104 \Big[ --- */
                   46886:       { 104,13261,                      /* character number, location */
                   46887:           1, 6,  -43, 6,      /* topleft row,col, and botleft row,col */
                   46888:           {  5,   44, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   46889:             "\x05\x0f\xe1\x4f\xe1\x4f\xb1\x45" }  },
                   46890:       /* --- pixel bitmap for cmex180 char#105 \Big] --- */
                   46891:       { 105,19230,                      /* character number, location */
                   46892:           1, 1,  -43, 1,      /* topleft row,col, and botleft row,col */
                   46893:           {  5,   44, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   46894:             "\x05\xfe\x41\xfe\x41\xfb\x41\x05" }  },
1.1       albertel 46895:       /* --- pixel bitmap for cmex180 char#106 (noname) --- */
1.2       albertel 46896:       { 106,25172,                      /* character number, location */
                   46897:           1, 6,  -43, 6,      /* topleft row,col, and botleft row,col */
                   46898:           {  7,   44, 2, 6, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   46899:             "\xff\x2a\x00\x01\x06\x07" }  },
1.1       albertel 46900:       /* --- pixel bitmap for cmex180 char#107 (noname) --- */
1.2       albertel 46901:       { 107,28768,                      /* character number, location */
                   46902:           1, 1,  -43, 1,      /* topleft row,col, and botleft row,col */
                   46903:           {  6,   44, 2, 6, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   46904:             "\xff\x2a\x05\x01\x00\x06" }  },
1.1       albertel 46905:       /* --- pixel bitmap for cmex180 char#108 (noname) --- */
1.2       albertel 46906:       { 108,32368,                      /* character number, location */
                   46907:           1, 6,  -43, 6,      /* topleft row,col, and botleft row,col */
                   46908:           {  7,   44, 2, 7, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   46909:             "\x00\x07\x00\xff\x2a\x01\x06" }  },
1.1       albertel 46910:       /* --- pixel bitmap for cmex180 char#109 (noname) --- */
1.2       albertel 46911:       { 109,35972,                      /* character number, location */
                   46912:           1, 1,  -43, 1,      /* topleft row,col, and botleft row,col */
                   46913:           {  6,   44, 2, 6, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   46914:             "\x00\x06\xff\x2a\x05\x01" }  },
                   46915:       /* --- pixel bitmap for cmex180 char#110 \Big{ --- */
                   46916:       { 110,39740,                      /* character number, location */
                   46917:           1, 3,  -43, 3,      /* topleft row,col, and botleft row,col */
                   46918:           { 11,   44, 3,48, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   46919:             "\x92\x72\x82\x82\x40\xfe\x42\x50\x32\x82\x70\xf1\x12"
                   46920:             "\x80\x22\xa2\x60\xfe\x42\x50\x52\xa2\xa2\xb2" }  },
                   46921:       /* --- pixel bitmap for cmex180 char#111 \Big} --- */
                   46922:       { 111,47522,                      /* character number, location */
                   46923:           1, 3,  -43, 3,      /* topleft row,col, and botleft row,col */
                   46924:           { 11,   44, 3,47, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   46925:             "\x02\xa2\xb1\xa2\x60\xfe\x42\x50\x52\xa2\x30\xf1\x83"
                   46926:             "\x62\x82\x40\xfe\x42\x50\x32\x91\x82\x82\x93" }  },
1.1       albertel 46927:       /* --- pixel bitmap for cmex180 char#112 (noname) --- */
1.2       albertel 46928:       { 112,74852,                      /* character number, location */
                   46929:           1, 3,  -29, 3,      /* topleft row,col, and botleft row,col */
                   46930:           { 23,   30, 3,123, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   46931:             "\xf1\xe0\x81\xf1\xe0\x71\x10\xf1\xe0\x61\x20\xf1\xe0"
                   46932:             "\x51\x30\xf1\xe0\x41\x40\xf1\xe0\x31\x50\xf1\xe0\x21"
                   46933:             "\x60\xe0\x11\xa1\xb1\x92\xa1\x82\x12\x91\x80\xf1\x32"
                   46934:             "\x81\x90\xf1\x42\x61\xa0\xf1\x52\x41\xb0\xf1\x62\x21"
                   46935:             "\xc0\x62\x11\xe0\x63\xe0\x62\xe0\x81\xe2" }  },
1.1       albertel 46936:       /* --- pixel bitmap for cmex180 char#113 (noname) --- */
1.2       albertel 46937:       { 113,75847,                      /* character number, location */
                   46938:           1, 3,  -44, 3,      /* topleft row,col, and botleft row,col */
                   46939:           { 23,   45, 3,137, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   46940:             "\xf1\xe0\x81\xf2\xe0\x71\x10\xf2\xe0\x61\x20\xf2\xe0"
                   46941:             "\x51\x30\xf3\xe0\x41\x40\xf2\xe0\x31\x50\xf2\xe0\x21"
                   46942:             "\x60\xf1\xe0\x11\x70\x31\xb1\x92\xa1\x93\xa1\x81\x22"
                   46943:             "\x91\x80\xf1\x32\x81\x90\x42\x71\x90\xf2\x42\x61\xa0"
                   46944:             "\xf2\x52\x41\xb0\x62\x31\xb0\xf2\x62\x21\xc0\xf2\x73"
                   46945:             "\xd0\xf1\x81\xe0" }  },
1.1       albertel 46946:       /* --- pixel bitmap for cmex180 char#114 (noname) --- */
1.2       albertel 46947:       { 114,76883,                      /* character number, location */
                   46948:           1, 3,  -59, 3,      /* topleft row,col, and botleft row,col */
                   46949:           { 23,   60, 3,157, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   46950:             "\xf2\xe0\x81\xf3\xe0\x71\x10\xf3\xe0\x61\x20\xf3\xe0"
                   46951:             "\x51\x30\xf3\xe0\x41\x40\xf4\xe0\x31\x50\xf3\xe0\x21"
                   46952:             "\x60\xf1\xe0\x11\x70\xf1\x31\xb1\x70\x22\xa1\x80\xf1"
                   46953:             "\x13\xa1\x81\x22\x91\x80\xf2\x32\x81\x90\xf1\x42\x71"
                   46954:             "\x90\xf2\x42\x61\xa0\x52\x51\xa0\xf2\x52\x41\xb0\x62"
                   46955:             "\x31\xb0\xf3\x62\x21\xc0\xf3\x73\xd0\x72\xe0\xf1\x81"
                   46956:             "\xe0" }  },
1.1       albertel 46957:       /* --- pixel bitmap for cmex180 char#115 (noname) --- */
1.2       albertel 46958:       { 115,77961,                      /* character number, location */
                   46959:           1, 3,  -74, 3,      /* topleft row,col, and botleft row,col */
                   46960:           { 23,   75, 3,155, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   46961:             "\xf2\xe0\x81\xf4\xe0\x71\x10\xf5\xe0\x61\x20\xf4\xe0"
                   46962:             "\x51\x30\xf4\xe0\x41\x40\xf5\xe0\x31\x50\xf4\xe0\x21"
                   46963:             "\x60\xf2\xe0\x11\x70\x31\xb1\x92\xb1\x92\xa1\x80\xf1"
                   46964:             "\x13\xa1\x8f\x11\x22\x91\x80\xf3\x32\x81\x90\xf1\x42"
                   46965:             "\x71\x90\xf3\x42\x61\xa0\x52\x51\xa0\xf4\x52\x41\xb0"
                   46966:             "\xf4\x62\x21\xc0\x72\x11\xc0\xf4\x73\xd0\xf2\x81\xe1" }  },
1.1       albertel 46967:       /* --- pixel bitmap for cmex180 char#116 (noname) --- */
1.2       albertel 46968:       { 116,79123,                      /* character number, location */
                   46969:           1, 3,  -45, 3,      /* topleft row,col, and botleft row,col */
                   46970:           { 15,   46, 3,92, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   46971:             "\xf5\xe1\x21\xb1\x22\xa1\xf1\x13\xa1\x02\x12\x92\x22"
                   46972:             "\x91\x32\x91\xf2\x42\x81\xf2\x52\x71\xf3\x62\x61\xf2"
                   46973:             "\x72\x51\xf2\x82\x41\xf2\x92\x31\xf2\xa2\x21\xf2\xb2"
                   46974:             "\x11\xf2\xc3\xf2\xd2\xf1\xe1" }  },
1.1       albertel 46975:       /* --- pixel bitmap for cmex180 char#117 (noname) --- */
1.2       albertel 46976:       { 117,80072,                      /* character number, location */
                   46977:           1,17,  -16,17,      /* topleft row,col, and botleft row,col */
                   46978:           {  1,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   46979:             "\xff\xff\x01" }  },
1.1       albertel 46980:       /* --- pixel bitmap for cmex180 char#118 (noname) --- */
1.2       albertel 46981:       { 118,80897,                      /* character number, location */
                   46982:           1,17,  -15,17,      /* topleft row,col, and botleft row,col */
                   46983:           { 10,   16, 3, 7, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   46984:             "\x0a\x0f\xe1\x91" }  },
1.1       albertel 46985:       /* --- pixel bitmap for cmex180 char#119 (noname) --- */
1.2       albertel 46986:       { 119,73875,                      /* character number, location */
                   46987:           1, 7,  -16, 7,      /* topleft row,col, and botleft row,col */
                   46988:           {  6,   17, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   46989:             "\xfe\x01\x41\x0f\x11\x41" }  },
1.1       albertel 46990:       /* --- pixel bitmap for cmex180 char#120 (noname) --- */
1.2       albertel 46991:       { 120,69129,                      /* character number, location */
                   46992:           0, 3,  -15, 3,      /* topleft row,col, and botleft row,col */
                   46993:           { 11,   15, 3,23, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   46994:             "\x51\x93\x75\x52\x11\x12\x22\x31\x32\xf9\x51\x50" }  },
1.1       albertel 46995:       /* --- pixel bitmap for cmex180 char#121 (noname) --- */
1.2       albertel 46996:       { 121,70066,                      /* character number, location */
                   46997:           0, 3,  -15, 3,      /* topleft row,col, and botleft row,col */
                   46998:           { 11,   15, 3,23, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   46999:             "\xf9\x51\x52\x31\x32\x22\x11\x12\x55\x73\x91\x50" }  },
1.1       albertel 47000:       /* --- pixel bitmap for cmex180 char#122 (noname) --- */
1.2       albertel 47001:       { 122,53238,                      /* character number, location */
                   47002:           3,-1,   -5,-1,      /* topleft row,col, and botleft row,col */
                   47003:           { 13,    8, 3,17, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   47004:             "\x94\x67\x58\x44\x82\xa1\xb1\xb1\xc3" }  },
1.1       albertel 47005:       /* --- pixel bitmap for cmex180 char#123 (noname) --- */
1.2       albertel 47006:       { 123,53822,                      /* character number, location */
                   47007:           3,-1,   -5,-1,      /* topleft row,col, and botleft row,col */
                   47008:           { 13,    8, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   47009:             "\x04\x97\x68\xa4\xc2\xd1\xd1\xd1" }  },
1.1       albertel 47010:       /* --- pixel bitmap for cmex180 char#124 (noname) --- */
1.2       albertel 47011:       { 124,54403,                      /* character number, location */
                   47012:           8,-1,    0,-1,      /* topleft row,col, and botleft row,col */
                   47013:           { 13,    8, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   47014:             "\x01\xd1\xd1\xd2\xc4\xa8\x67\x94" }  },
1.1       albertel 47015:       /* --- pixel bitmap for cmex180 char#125 (noname) --- */
1.2       albertel 47016:       { 125,54985,                      /* character number, location */
                   47017:           8,-1,    0,-1,      /* topleft row,col, and botleft row,col */
                   47018:           { 13,    8, 3,17, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   47019:             "\xc1\xb1\xb1\xa2\x84\x48\x57\x64\x93" }  },
1.1       albertel 47020:       /* --- pixel bitmap for cmex180 char#126 (noname) --- */
1.2       albertel 47021:       { 126,71859,                      /* character number, location */
                   47022:          -1, 2,  -15, 2,      /* topleft row,col, and botleft row,col */
                   47023:           { 16,   14, 3,41, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   47024:             "\xf1\x72\x70\x61\x21\xb1\x41\x92\x42\x62\x11\x41\x12"
                   47025:             "\x22\x31\x41\x32\xf6\x51\x41\x51" }  },
1.1       albertel 47026:       /* --- pixel bitmap for cmex180 char#127 (noname) --- */
1.2       albertel 47027:       { 127,72971,                      /* character number, location */
                   47028:           0, 2,  -14, 2,      /* topleft row,col, and botleft row,col */
                   47029:           { 16,   14, 3,41, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   47030:             "\xf6\x51\x41\x52\x31\x41\x32\x22\x11\x41\x12\x62\x42"
                   47031:             "\x91\x41\xb1\x21\x60\xf1\x72\x71" }  },
1.1       albertel 47032:       /* --- trailer  --- */
1.2       albertel 47033:       { -99, -999,  0,0,0,0, { 0,0,0,0, (pixbyte *)"\0" }  }
1.1       albertel 47034:    } ;
                   47035: 
                   47036: 
1.2       albertel 47037: /* --- size=6 for .210gf ---
                   47038:  * mf '\mode=preview; mag=magstep(-13.80488502080647873125); input cmex10'
                   47039:  * --------------------------------------------------------------------- */
                   47040: /* --- fontdef for cmex210 --- */
                   47041: static	chardef  cmex210[] =
1.1       albertel 47042:    {
1.2       albertel 47043:       /* --- pixel bitmap for cmex210 char#0 \big( --- */
                   47044:       {   0,  661,                      /* character number, location */
                   47045:           1, 4,  -33, 4,      /* topleft row,col, and botleft row,col */
                   47046:           {  8,   34, 3,58, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   47047:             "\x71\x61\x61\x61\x62\x61\x62\x61\x50\xf2\x12\x50\x11"
                   47048:             "\x6f\x92\x60\x11\x60\xf2\x12\x50\x21\x72\x71\x72\x71"
                   47049:             "\x81\x81\x81" }  },
                   47050:       /* --- pixel bitmap for cmex210 char#1 \big) --- */
                   47051:       {   1, 6598,                      /* character number, location */
                   47052:           1, 1,  -33, 1,      /* topleft row,col, and botleft row,col */
                   47053:           {  8,   34, 3,59, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   47054:             "\x01\x81\x81\x81\x72\x71\x72\x71\x20\xf2\x52\x10\x61"
                   47055:             "\x10\xf9\x62\x61\x10\xf2\x52\x10\x51\x62\x61\x62\x61"
                   47056:             "\x61\x61\x61\x73" }  },
                   47057:       /* --- pixel bitmap for cmex210 char#2 \big[ --- */
                   47058:       {   2,12581,                      /* character number, location */
                   47059:           1, 5,  -33, 5,      /* topleft row,col, and botleft row,col */
                   47060:           {  7,   34, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   47061:             "\xf1\x07\x0f\xe2\x5f\xe2\x5f\x17" }  },
                   47062:       /* --- pixel bitmap for cmex210 char#3 \big] --- */
                   47063:       {   3,18611,                      /* character number, location */
                   47064:           1, 0,  -33, 0,      /* topleft row,col, and botleft row,col */
                   47065:           {  7,   34, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   47066:             "\xf1\x07\xfe\x52\xfe\x52\x0f\x17" }  },
                   47067:       /* --- pixel bitmap for cmex210 char#4 (noname) --- */
                   47068:       {   4,24608,                      /* character number, location */
                   47069:           1, 5,  -33, 5,      /* topleft row,col, and botleft row,col */
                   47070:           {  9,   34, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   47071:             "\xfe\x02\x7f\xe2\x7f\x12\x7f\x19" }  },
                   47072:       /* --- pixel bitmap for cmex210 char#5 (noname) --- */
                   47073:       {   5,28285,                      /* character number, location */
                   47074:           1, 0,  -33, 0,      /* topleft row,col, and botleft row,col */
                   47075:           {  9,   34, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   47076:             "\xfe\x72\xfe\x72\xf1\x72\x0f\x19" }  },
                   47077:       /* --- pixel bitmap for cmex210 char#6 (noname) --- */
                   47078:       {   6,31912,                      /* character number, location */
                   47079:           1, 5,  -33, 5,      /* topleft row,col, and botleft row,col */
                   47080:           {  9,   34, 3,17, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   47081:             "\xf1\x09\x0f\xe2\x7f\xe2\x7f\x12\x7e" }  },
                   47082:       /* --- pixel bitmap for cmex210 char#7 (noname) --- */
                   47083:       {   7,35597,                      /* character number, location */
                   47084:           1, 0,  -33, 0,      /* topleft row,col, and botleft row,col */
                   47085:           {  9,   34, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   47086:             "\xf1\x09\xfe\x72\xfe\x72\xf1\x72" }  },
                   47087:       /* --- pixel bitmap for cmex210 char#8 \big{ --- */
                   47088:       {   8,39325,                      /* character number, location */
                   47089:           1, 3,  -33, 3,      /* topleft row,col, and botleft row,col */
                   47090:           { 11,   34, 3,44, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   47091:             "\x92\x72\x82\x30\xfa\x52\x40\x51\x83\x50\xf1\x13\x70"
                   47092:             "\x33\xa1\x50\xfa\x52\x40\x62\xa2\xb2" }  },
                   47093:       /* --- pixel bitmap for cmex210 char#9 \big} --- */
                   47094:       {   9,47156,                      /* character number, location */
                   47095:           1, 3,  -33, 3,      /* topleft row,col, and botleft row,col */
                   47096:           { 11,   34, 3,39, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   47097:             "\x02\xb3\xa2\x50\xfb\x52\x40\x62\x30\xf1\x83\x62\x30"
                   47098:             "\xfb\x52\x40\x42\x73\x62\x94" }  },
                   47099:       /* --- pixel bitmap for cmex210 char#10 \big< --- */
                   47100:       {  10,56168,                      /* character number, location */
                   47101:           1, 3,  -33, 3,      /* topleft row,col, and botleft row,col */
                   47102:           {  9,   34, 3,76, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   47103:             "\xf1\x72\x63\x62\x63\x62\x63\x62\x63\x30\xf1\x32\x40"
                   47104:             "\x23\x62\x63\x62\x63\x6f\x12\x73\x72\x73\x72\x73\x40"
                   47105:             "\xf1\x32\x40\x33\x72\x73\x72\x73\x72\x73\xf1\x72" }  },
                   47106:       /* --- pixel bitmap for cmex210 char#11 \big> --- */
                   47107:       {  11,59149,                      /* character number, location */
                   47108:           1, 2,  -33, 2,      /* topleft row,col, and botleft row,col */
                   47109:           {  9,   34, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   47110:             "\x03\x06\x1c\x30\xe0\x80\x01\x07\x0c\x38\x60\xc0\x80"
                   47111:             "\x03\x06\x1c\x30\xe0\x80\x01\x03\x07\x06\x0e\x0c\x1c"
                   47112:             "\x18\x30\x70\x60\xe0\xc0\xc0\x81\x81\x03\x03\x06\x00" }  },
                   47113:       /* --- pixel bitmap for cmex210 char#12 (noname) --- */
                   47114:       {  12,68587,                      /* character number, location */
                   47115:           1, 4,  -18, 4,      /* topleft row,col, and botleft row,col */
                   47116:           {  2,   19, 3, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   47117:             "\xfe\x02\x0f\x32" }  },
                   47118:       /* --- pixel bitmap for cmex210 char#13 (noname) --- */
                   47119:       {  13,69218,                      /* character number, location */
                   47120:           1, 4,  -18, 4,      /* topleft row,col, and botleft row,col */
                   47121:           {  8,   19, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   47122:             "\xfe\x02\x42\x0f\x32\x42" }  },
                   47123:       /* --- pixel bitmap for cmex210 char#14 (noname) --- */
                   47124:       {  14,62142,                      /* character number, location */
                   47125:           1, 2,  -33, 2,      /* topleft row,col, and botleft row,col */
                   47126:           { 13,   34, 3,101, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   47127:             "\xf1\xb2\xa3\xf1\xa2\x10\x93\x10\xf1\x92\x20\x83\x20"
                   47128:             "\xf1\x82\x30\x73\x30\xf1\x72\x40\x63\xa2\xa3\x50\xf1"
                   47129:             "\x52\x60\x43\x60\xf1\x42\x70\x33\x70\xf1\x32\x80\x23"
                   47130:             "\x80\xf1\x22\x90\x13\x90\xf1\x12\xa3\xaf\x12\xb2" }  },
                   47131:       /* --- pixel bitmap for cmex210 char#15 (noname) --- */
                   47132:       {  15,65396,                      /* character number, location */
                   47133:           1, 2,  -33, 2,      /* topleft row,col, and botleft row,col */
                   47134:           { 13,   34, 3,104, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   47135:             "\xf1\x02\xb3\xa0\xf1\x12\xa0\x13\x90\xf1\x22\x90\x23"
                   47136:             "\x80\xf1\x32\x80\x33\x70\xf1\x42\x70\x43\x60\xf1\x52"
                   47137:             "\x60\x53\xb2\xb3\x40\xf1\x72\x40\x73\x30\xf1\x82\x30"
                   47138:             "\x83\x20\xf1\x92\x20\x93\x10\xf1\xa2\x10\xa3\xf1\xb2" }  },
                   47139:       /* --- pixel bitmap for cmex210 char#16 \Big( --- */
                   47140:       {  16, 1414,                      /* character number, location */
                   47141:           1, 5,  -50, 5,      /* topleft row,col, and botleft row,col */
                   47142:           { 11,   51, 3,86, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   47143:             "\x92\x82\x82\x20\xf1\x62\x30\x52\x40\xf1\x42\x50\xf1"
                   47144:             "\x32\x60\xf2\x22\x70\xf4\x12\x8f\xe2\x90\xf4\x12\x80"
                   47145:             "\xf2\x22\x70\xf1\x32\x60\xf1\x42\x50\x52\x40\xf1\x62"
                   47146:             "\x30\x72\xa2\xa2" }  },
                   47147:       /* --- pixel bitmap for cmex210 char#17 \Big) --- */
                   47148:       {  17, 7338,                      /* character number, location */
                   47149:           1, 1,  -50, 1,      /* topleft row,col, and botleft row,col */
                   47150:           { 11,   51, 3,87, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   47151:             "\x02\xa2\xa2\x70\xf1\x32\x60\x42\x50\xf1\x52\x40\xf1"
                   47152:             "\x62\x30\xf2\x72\x20\xf4\x82\x10\xfe\x92\xf4\x82\x10"
                   47153:             "\xf2\x72\x20\xf1\x62\x30\xf1\x52\x40\x42\x50\xf1\x32"
                   47154:             "\x60\x22\x82\x82\x92" }  },
                   47155:       /* --- pixel bitmap for cmex210 char#18 \bigg( --- */
                   47156:       {  18, 2280,                      /* character number, location */
                   47157:           1, 6,  -68, 6,      /* topleft row,col, and botleft row,col */
                   47158:           { 14,   69, 3,118, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   47159:             "\xc2\xb2\xb2\xb2\x30\xf1\x82\x40\x72\x50\xf1\x62\x60"
                   47160:             "\xf1\x52\x70\xf1\x42\x80\xf2\x32\x90\xf3\x22\xa0\xf5"
                   47161:             "\x12\xbf\xe2\xcf\x12\xc0\xf5\x12\xb0\xf3\x22\xa0\xf2"
                   47162:             "\x32\x90\xf1\x42\x80\xf1\x52\x70\xf1\x62\x60\x72\x50"
                   47163:             "\xf1\x82\x40\x92\xd2\xd2\xd2" }  },
                   47164:       /* --- pixel bitmap for cmex210 char#19 \bigg) --- */
                   47165:       {  19, 8165,                      /* character number, location */
                   47166:           1, 1,  -68, 1,      /* topleft row,col, and botleft row,col */
                   47167:           { 14,   69, 3,119, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   47168:             "\x02\xd2\xd2\xd2\x90\xf1\x42\x80\x52\x70\xf1\x62\x60"
                   47169:             "\xf1\x72\x50\xf1\x82\x40\xf2\x92\x30\xf3\xa2\x20\xf5"
                   47170:             "\xb2\x10\xfe\xc2\xf1\xc2\xf5\xb2\x10\xf3\xa2\x20\xf2"
                   47171:             "\x92\x30\xf1\x82\x40\xf1\x72\x50\xf1\x62\x60\x52\x70"
                   47172:             "\xf1\x42\x80\x32\xb2\xb2\xb2\xc2" }  },
                   47173:       /* --- pixel bitmap for cmex210 char#20 \bigg[ --- */
                   47174:       {  20,14292,                      /* character number, location */
                   47175:           1, 7,  -68, 7,      /* topleft row,col, and botleft row,col */
                   47176:           {  8,   69, 2,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   47177:             "\xff\x01\x00\x08\x00\xff\x40\x02\x06\xff\x01\x08" }  },
                   47178:       /* --- pixel bitmap for cmex210 char#21 \bigg] --- */
                   47179:       {  21,20270,                      /* character number, location */
                   47180:           1, 0,  -68, 0,      /* topleft row,col, and botleft row,col */
                   47181:           {  8,   69, 2,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   47182:             "\xff\x01\x00\x08\xff\x40\x06\x02\x00\xff\x01\x08" }  },
                   47183:       /* --- pixel bitmap for cmex210 char#22 (noname) --- */
                   47184:       {  22,26383,                      /* character number, location */
                   47185:           1, 7,  -68, 7,      /* topleft row,col, and botleft row,col */
                   47186:           { 10,   69, 2, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   47187:             "\xff\x42\x00\x02\x08\xff\x01\x0a" }  },
                   47188:       /* --- pixel bitmap for cmex210 char#23 (noname) --- */
                   47189:       {  23,30008,                      /* character number, location */
                   47190:           1, 0,  -68, 0,      /* topleft row,col, and botleft row,col */
                   47191:           { 10,   69, 2, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   47192:             "\xff\x42\x08\x02\x00\xff\x01\x0a" }  },
                   47193:       /* --- pixel bitmap for cmex210 char#24 (noname) --- */
                   47194:       {  24,33691,                      /* character number, location */
                   47195:           1, 7,  -68, 7,      /* topleft row,col, and botleft row,col */
                   47196:           { 10,   69, 2, 9, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   47197:             "\xff\x01\x00\x0a\x00\xff\x42\x02\x08" }  },
                   47198:       /* --- pixel bitmap for cmex210 char#25 (noname) --- */
                   47199:       {  25,37324,                      /* character number, location */
                   47200:           1, 0,  -68, 0,      /* topleft row,col, and botleft row,col */
                   47201:           { 10,   69, 2, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   47202:             "\xff\x01\x00\x0a\xff\x42\x08\x02" }  },
                   47203:       /* --- pixel bitmap for cmex210 char#26 \bigg{ --- */
                   47204:       {  26,41372,                      /* character number, location */
                   47205:           1, 3,  -68, 3,      /* topleft row,col, and botleft row,col */
                   47206:           { 16,   69, 3,92, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   47207:             "\xd3\xc4\xa4\xb3\xc3\xd2\xd3\x60\xfe\x72\x70\xf5\x72"
                   47208:             "\x70\xf1\x62\x80\x52\xd2\xd2\xc3\xc3\xe3\xe0\x12\xe0"
                   47209:             "\x12\xe0\x12\x90\xf1\x62\x80\xfe\x72\x70\xf5\x72\x70"
                   47210:             "\x73\xe2\xe3\xe3\xe4\xe4\xd3" }  },
                   47211:       /* --- pixel bitmap for cmex210 char#27 \bigg} --- */
                   47212:       {  27,49205,                      /* character number, location */
                   47213:           1, 3,  -68, 3,      /* topleft row,col, and botleft row,col */
                   47214:           { 16,   69, 3,93, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   47215:             "\x03\xd4\xe4\xe3\xe3\xe2\xe3\x70\xfe\x72\x70\xf5\x72"
                   47216:             "\x70\xf1\x82\x60\x92\xe0\x12\xe0\x12\xe0\x14\xd3\xc4"
                   47217:             "\xb2\xd2\xd2\x50\xf1\x82\x60\xfe\x72\x70\xf5\x72\x70"
                   47218:             "\x63\xd2\xd3\xc3\xb4\xa4\xc3\xd1" }  },
                   47219:       /* --- pixel bitmap for cmex210 char#28 \bigg< --- */
                   47220:       {  28,57627,                      /* character number, location */
                   47221:           1, 4,  -69, 4,      /* topleft row,col, and botleft row,col */
                   47222:           { 15,   70, 3,196, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   47223:             "\xf1\xd2\xc3\xc2\xc3\x10\xf1\xb2\x20\xa3\x20\xf1\xa2"
                   47224:             "\x30\x93\xc2\xc3\x40\xf1\x82\x50\x73\xc2\xc3\x60\xf1"
                   47225:             "\x62\x70\x53\x70\xf1\x52\x80\x43\xc2\xc3\x90\xf1\x32"
                   47226:             "\xa0\x23\xa0\xf1\x22\xb0\x13\xc2\xc3\xcf\x12\xd3\xd2"
                   47227:             "\xd3\xb0\xf1\x22\xb0\x23\xa0\xf1\x32\xa0\x33\xd2\xd3"
                   47228:             "\x80\xf1\x52\x80\x53\x70\xf1\x62\x70\x63\xd2\xd3\x50"
                   47229:             "\xf1\x82\x50\x83\xd2\xd3\x30\xf1\xa2\x30\xa3\x20\xf1"
                   47230:             "\xb2\x20\xb3\xd2\xd3\xf1\xd2" }  },
                   47231:       /* --- pixel bitmap for cmex210 char#29 \bigg> --- */
                   47232:       {  29,60610,                      /* character number, location */
                   47233:           1, 3,  -69, 3,      /* topleft row,col, and botleft row,col */
                   47234:           { 15,   70, 3,197, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   47235:             "\xf1\x02\xd3\xd2\xd3\xb0\xf1\x22\xb0\x23\xa0\xf1\x32"
                   47236:             "\xa0\x33\xd2\xd3\x80\xf1\x52\x80\x53\xd2\xd3\x60\xf1"
                   47237:             "\x72\x60\x73\x50\xf1\x82\x50\x83\xd2\xd3\x30\xf1\xa2"
                   47238:             "\x30\xa3\x20\xf1\xb2\x20\xb3\xd2\xd3\xf1\xd2\xc3\xc2"
                   47239:             "\xc3\x10\xf1\xb2\x20\xa3\x20\xf1\xa2\x30\x93\xc2\xc3"
                   47240:             "\x40\xf1\x82\x50\x73\x50\xf1\x72\x60\x63\xc2\xc3\x70"
                   47241:             "\xf1\x52\x80\x43\xc2\xc3\x90\xf1\x32\xa0\x23\xa0\xf1"
                   47242:             "\x22\xb0\x13\xc2\xc3\xcf\x12\xd3" }  },
                   47243:       /* --- pixel bitmap for cmex210 char#30 (noname) --- */
                   47244:       {  30,63697,                      /* character number, location */
                   47245:           1, 2,  -68, 2,      /* topleft row,col, and botleft row,col */
                   47246:           { 26,   69, 3,287, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   47247:             "\xf1\xe0\xa2\xe0\x93\xf1\xe0\x92\x10\xe0\x83\xe0\x92"
                   47248:             "\xe0\x93\x20\xf1\xe0\x72\x30\xe0\x63\x30\xf1\xe0\x62"
                   47249:             "\x40\xe0\x53\x40\xf1\xe0\x52\x50\xe0\x43\x50\xf1\xe0"
                   47250:             "\x42\x60\xe0\x33\xe0\x92\xe0\x93\x70\xf1\xe0\x22\x80"
                   47251:             "\xe0\x13\x80\xf1\xe0\x12\x90\xe3\x90\xf1\xe2\xa0\xd3"
                   47252:             "\xa0\xf1\xd2\xb0\xc3\xe0\x92\xe0\x93\xc0\xf1\xb2\xd0"
                   47253:             "\xa3\xd0\xf1\xa2\xe0\x93\xe0\xf1\x92\xe0\x10\x83\xe0"
                   47254:             "\x10\xf1\x82\xe0\x20\x73\xe0\x92\xe0\x93\xe0\x30\xf1"
                   47255:             "\x62\xe0\x40\x53\xe0\x40\xf1\x52\xe0\x50\x43\xe0\x50"
                   47256:             "\xf1\x42\xe0\x60\x33\xe0\x60\xf1\x32\xe0\x70\x23\xe0"
                   47257:             "\x92\xe0\x93\xe0\x80\xf1\x12\xe0\x93\xe0\x9f\x12\xe0"
                   47258:             "\xa0" }  },
                   47259:       /* --- pixel bitmap for cmex210 char#31 (noname) --- */
                   47260:       {  31,66959,                      /* character number, location */
                   47261:           1, 2,  -68, 2,      /* topleft row,col, and botleft row,col */
                   47262:           { 26,   69, 3,290, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   47263:             "\xf1\x02\xe0\xa3\xe0\x90\xf1\x12\xe0\x90\x13\xe0\xa2"
                   47264:             "\xe0\xa3\xe0\x70\xf1\x32\xe0\x70\x33\xe0\x60\xf1\x42"
                   47265:             "\xe0\x60\x43\xe0\x50\xf1\x52\xe0\x50\x53\xe0\x40\xf1"
                   47266:             "\x62\xe0\x40\x63\xe0\xa2\xe0\xa3\xe0\x20\xf1\x82\xe0"
                   47267:             "\x20\x83\xe0\x10\xf1\x92\xe0\x10\x93\xe0\xf1\xa2\xe0"
                   47268:             "\xa3\xd0\xf1\xb2\xd0\xb3\xe0\xa2\xe0\xa3\xb0\xf1\xd2"
                   47269:             "\xb0\xd3\xa0\xf1\xe2\xa0\xe3\x90\xf1\xe0\x12\x90\xe0"
                   47270:             "\x13\x80\xf1\xe0\x22\x80\xe0\x23\xe0\xa2\xe0\xa3\x60"
                   47271:             "\xf1\xe0\x42\x60\xe0\x43\x50\xf1\xe0\x52\x50\xe0\x53"
                   47272:             "\x40\xf1\xe0\x62\x40\xe0\x63\x30\xf1\xe0\x72\x30\xe0"
                   47273:             "\x73\xe0\xa2\xe0\xa3\x10\xf1\xe0\x92\x10\xe0\x93\xf1"
                   47274:             "\xe0\xa2" }  },
                   47275:       /* --- pixel bitmap for cmex210 char#32 \Bigg( --- */
                   47276:       {  32, 3208,                      /* character number, location */
                   47277:           1, 7,  -85, 7,      /* topleft row,col, and botleft row,col */
                   47278:           { 15,   86, 3,146, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   47279:             "\xd2\xc2\x10\xf1\xb2\x20\xa2\xc2\xc3\xc2\xc3\xc2\xc3"
                   47280:             "\xc2\xc3\xc2\x80\xf1\x43\x80\x42\x90\xf2\x33\x90\x32"
                   47281:             "\xa0\xf2\x23\xa0\x22\xb0\xf6\x13\xbf\xe3\xcf\x63\xc0"
                   47282:             "\xf6\x13\xb0\x22\xb0\xf2\x23\xa0\x32\xa0\xf2\x33\x90"
                   47283:             "\x42\x90\xf1\x43\x80\x52\xd3\xd2\xd3\xd2\xd3\xd2\xd3"
                   47284:             "\xd2\xe2\x30\xf1\xb2\x20\xc2\xe2" }  },
                   47285:       /* --- pixel bitmap for cmex210 char#33 \Bigg) --- */
                   47286:       {  33, 9080,                      /* character number, location */
                   47287:           1, 1,  -85, 1,      /* topleft row,col, and botleft row,col */
                   47288:           { 15,   86, 3,147, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   47289:             "\x02\xe2\xc0\xf1\x22\xb0\x32\xe2\xd3\xd2\xd3\xd2\xd3"
                   47290:             "\xd2\xd3\xd2\x50\xf1\x83\x40\x92\x40\xf2\x93\x30\xa2"
                   47291:             "\x30\xf2\xa3\x20\xb2\x20\xf6\xb3\x10\xfe\xc3\xf6\xc3"
                   47292:             "\xf6\xb3\x10\xb2\x20\xf2\xa3\x20\xa2\x30\xf2\x93\x30"
                   47293:             "\x92\x40\xf1\x83\x40\x82\xc3\xc2\xc3\xc2\xc3\xc2\xc3"
                   47294:             "\xc2\xc2\xa0\xf1\x22\xb0\x12\xc2\xd0" }  },
                   47295:       /* --- pixel bitmap for cmex210 char#34 \Bigg[ --- */
                   47296:       {  34,15253,                      /* character number, location */
                   47297:           1, 8,  -85, 8,      /* topleft row,col, and botleft row,col */
                   47298:           {  9,   86, 2,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   47299:             "\xff\x01\x00\x09\x00\xff\x51\x02\x07\xff\x01\x09" }  },
                   47300:       /* --- pixel bitmap for cmex210 char#35 \Bigg] --- */
                   47301:       {  35,21218,                      /* character number, location */
                   47302:           1, 0,  -85, 0,      /* topleft row,col, and botleft row,col */
                   47303:           {  9,   86, 2,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   47304:             "\xff\x01\x00\x09\xff\x51\x07\x02\x00\xff\x01\x09" }  },
                   47305:       /* --- pixel bitmap for cmex210 char#36 (noname) --- */
                   47306:       {  36,27376,                      /* character number, location */
                   47307:           1, 8,  -85, 8,      /* topleft row,col, and botleft row,col */
                   47308:           { 11,   86, 2, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   47309:             "\xff\x53\x00\x02\x09\xff\x01\x0b" }  },
                   47310:       /* --- pixel bitmap for cmex210 char#37 (noname) --- */
                   47311:       {  37,30962,                      /* character number, location */
                   47312:           1, 0,  -85, 0,      /* topleft row,col, and botleft row,col */
                   47313:           { 11,   86, 2, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   47314:             "\xff\x53\x09\x02\x00\xff\x01\x0b" }  },
                   47315:       /* --- pixel bitmap for cmex210 char#38 (noname) --- */
                   47316:       {  38,34686,                      /* character number, location */
                   47317:           1, 8,  -85, 8,      /* topleft row,col, and botleft row,col */
                   47318:           { 11,   86, 2, 9, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   47319:             "\xff\x01\x00\x0b\x00\xff\x53\x02\x09" }  },
                   47320:       /* --- pixel bitmap for cmex210 char#39 (noname) --- */
                   47321:       {  39,38280,                      /* character number, location */
                   47322:           1, 0,  -85, 0,      /* topleft row,col, and botleft row,col */
                   47323:           { 11,   86, 2, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   47324:             "\xff\x01\x00\x0b\xff\x53\x09\x02" }  },
                   47325:       /* --- pixel bitmap for cmex210 char#40 \Bigg{ --- */
                   47326:       {  40,42488,                      /* character number, location */
                   47327:           1, 3,  -85, 3,      /* topleft row,col, and botleft row,col */
                   47328:           { 17,   86, 3,112, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   47329:             "\xe3\xd4\xb4\xc4\xc4\xd3\x50\xf1\x83\x60\xfe\x73\x70"
                   47330:             "\xfb\x73\x70\xf1\x63\x80\xf1\x53\x90\x43\xd3\xc4\xcf"
                   47331:             "\x13\xe0\x14\xe0\x13\xe0\x13\xa0\xf1\x53\x90\xf1\x63"
                   47332:             "\x80\xfe\x73\x70\xfb\x73\x70\xf1\x83\x60\x93\xe4\xe4"
                   47333:             "\xe4\xe0\x14\xe3" }  },
                   47334:       /* --- pixel bitmap for cmex210 char#41 \Bigg} --- */
                   47335:       {  41,50322,                      /* character number, location */
                   47336:           1, 3,  -85, 3,      /* topleft row,col, and botleft row,col */
                   47337:           { 17,   86, 3,113, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   47338:             "\x03\xe4\xe0\x14\xe4\xe4\xe3\x90\xf1\x63\x80\xfe\x73"
                   47339:             "\x70\xfb\x73\x70\xf1\x83\x60\xf1\x93\x50\xa3\xe0\x13"
                   47340:             "\xe0\x14\x10\xf1\xe3\xc4\xc3\xd3\x40\xf1\x93\x50\xf1"
                   47341:             "\x83\x60\xfe\x73\x70\xfb\x73\x70\xf1\x63\x80\x53\xd4"
                   47342:             "\xc4\xc4\xb4\xd3\xe0" }  },
                   47343:       /* --- pixel bitmap for cmex210 char#42 \Bigg< --- */
                   47344:       {  42,58463,                      /* character number, location */
                   47345:           1, 4,  -85, 4,      /* topleft row,col, and botleft row,col */
                   47346:           { 16,   86, 3,272, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   47347:             "\xf1\xe2\xd3\xf1\xd2\x10\xc3\x10\xf1\xc2\x20\xb3\x20"
                   47348:             "\xf1\xb2\x30\xa3\x30\xf1\xa2\x40\x93\x40\xf1\x92\x50"
                   47349:             "\x83\x50\xf1\x82\x60\x73\x60\xf1\x72\x70\x63\x70\xf1"
                   47350:             "\x62\x80\x53\x80\xf1\x52\x90\x43\x90\xf1\x42\xa0\x33"
                   47351:             "\xa0\xf1\x32\xb0\x23\xb0\xf1\x22\xc0\x13\xc0\xf1\x12"
                   47352:             "\xd3\xdf\x12\xe3\xd0\xf1\x12\xd0\x13\xc0\xf1\x22\xc0"
                   47353:             "\x23\xb0\xf1\x32\xb0\x33\xa0\xf1\x42\xa0\x43\x90\xf1"
                   47354:             "\x52\x90\x53\x80\xf1\x62\x80\x63\x70\xf1\x72\x70\x73"
                   47355:             "\x60\xf1\x82\x60\x83\x50\xf1\x92\x50\x93\x40\xf1\xa2"
                   47356:             "\x40\xa3\x30\xf1\xb2\x30\xb3\x20\xf1\xc2\x20\xc3\x10"
                   47357:             "\xf1\xd2\x10\xd3\xf1\xe2" }  },
                   47358:       /* --- pixel bitmap for cmex210 char#43 \Bigg> --- */
                   47359:       {  43,61447,                      /* character number, location */
                   47360:           1, 3,  -85, 3,      /* topleft row,col, and botleft row,col */
                   47361:           { 16,   86, 3,273, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   47362:             "\xf1\x02\xe3\xd0\xf1\x12\xd0\x13\xc0\xf1\x22\xc0\x23"
                   47363:             "\xb0\xf1\x32\xb0\x33\xa0\xf1\x42\xa0\x43\x90\xf1\x52"
                   47364:             "\x90\x53\x80\xf1\x62\x80\x63\x70\xf1\x72\x70\x73\x60"
                   47365:             "\xf1\x82\x60\x83\x50\xf1\x92\x50\x93\x40\xf1\xa2\x40"
                   47366:             "\xa3\x30\xf1\xb2\x30\xb3\x20\xf1\xc2\x20\xc3\x10\xf1"
                   47367:             "\xd2\x10\xd3\xf1\xe2\xd3\xf1\xd2\x10\xc3\x10\xf1\xc2"
                   47368:             "\x20\xb3\x20\xf1\xb2\x30\xa3\x30\xf1\xa2\x40\x93\x40"
                   47369:             "\xf1\x92\x50\x83\x50\xf1\x82\x60\x73\x60\xf1\x72\x70"
                   47370:             "\x63\x70\xf1\x62\x80\x53\x80\xf1\x52\x90\x43\x90\xf1"
                   47371:             "\x42\xa0\x33\xa0\xf1\x32\xb0\x23\xb0\xf1\x22\xc0\x13"
                   47372:             "\xc0\xf1\x12\xd3\xdf\x12\xe0" }  },
                   47373:       /* --- pixel bitmap for cmex210 char#44 / --- */
                   47374:       {  44,64697,                      /* character number, location */
                   47375:           1, 2,  -85, 2,      /* topleft row,col, and botleft row,col */
                   47376:           { 33,   86, 3,429, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   47377:             "\xe0\xe0\x31\xe0\xe0\x33\xe0\xe0\x14\xf1\xe0\xe0\x13"
                   47378:             "\x10\xe0\xe4\x10\xf1\xe0\xe3\x20\xe0\xd4\x20\xf1\xe0"
                   47379:             "\xd3\x30\xe0\xc4\xe0\xe0\x13\xe0\xe0\x14\x40\xf1\xe0"
                   47380:             "\xb3\x50\xe0\xa4\x50\xf1\xe0\xa3\x60\xe0\x94\x60\xf1"
                   47381:             "\xe0\x93\x70\xe0\x84\x70\xf1\xe0\x83\x80\xe0\x74\xe0"
                   47382:             "\xe0\x13\xe0\xe0\x14\x90\xf1\xe0\x63\xa0\xe0\x54\xa0"
                   47383:             "\xf1\xe0\x53\xb0\xe0\x44\xb0\xf1\xe0\x43\xc0\xe0\x34"
                   47384:             "\xe0\xe0\x13\xe0\xe0\x14\xd0\xf1\xe0\x23\xe0\xe0\x14"
                   47385:             "\xe0\xf1\xe0\x13\xe0\x10\xe4\xe0\x10\xf1\xe3\xe0\x20"
                   47386:             "\xd4\xe0\xe0\x13\xe0\xe0\x14\xe0\x30\xf1\xc3\xe0\x40"
                   47387:             "\xb4\xe0\x40\xf1\xb3\xe0\x50\xa4\xe0\x50\xf1\xa3\xe0"
                   47388:             "\x60\x94\xe0\xe0\x13\xe0\xe0\x14\xe0\x70\xf1\x83\xe0"
                   47389:             "\x80\x74\xe0\x80\xf1\x73\xe0\x90\x64\xe0\x90\xf1\x63"
                   47390:             "\xe0\xa0\x54\xe0\xa0\xf1\x53\xe0\xb0\x44\xe0\xe0\x13"
                   47391:             "\xe0\xe0\x14\xe0\xc0\xf1\x33\xe0\xd0\x24\xe0\xd0\xf1"
                   47392:             "\x23\xe0\xe0\x14\xe0\xe0\xf1\x13\xe0\xe0\x14\xe0\xe0"
                   47393:             "\x13\xe0\xe0\x31\xe0\xe0\x30" }  },
                   47394:       /* --- pixel bitmap for cmex210 char#45 \ --- */
                   47395:       {  45,67963,                      /* character number, location */
                   47396:           1, 2,  -85, 2,      /* topleft row,col, and botleft row,col */
                   47397:           { 33,   86, 3,433, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   47398:             "\x11\xe0\xe0\x33\xe0\xe0\x24\xe0\xe0\x10\xf1\x13\xe0"
                   47399:             "\xe0\x10\x14\xe0\xe0\xf1\x23\xe0\xe0\x24\xe0\xd0\xf1"
                   47400:             "\x33\xe0\xd0\x34\xe0\xe0\x23\xe0\xe0\x24\xe0\xb0\xf1"
                   47401:             "\x53\xe0\xb0\x54\xe0\xa0\xf1\x63\xe0\xa0\x64\xe0\x90"
                   47402:             "\xf1\x73\xe0\x90\x74\xe0\x80\xf1\x83\xe0\x80\x84\xe0"
                   47403:             "\xe0\x23\xe0\xe0\x24\xe0\x60\xf1\xa3\xe0\x60\xa4\xe0"
                   47404:             "\x50\xf1\xb3\xe0\x50\xb4\xe0\x40\xf1\xc3\xe0\x40\xc4"
                   47405:             "\xe0\xe0\x23\xe0\xe0\x24\xe0\x20\xf1\xe3\xe0\x20\xe4"
                   47406:             "\xe0\x10\xf1\xe0\x13\xe0\x10\xe0\x14\xe0\xf1\xe0\x23"
                   47407:             "\xe0\xe0\x24\xe0\xe0\x23\xe0\xe0\x24\xc0\xf1\xe0\x43"
                   47408:             "\xc0\xe0\x44\xb0\xf1\xe0\x53\xb0\xe0\x54\xa0\xf1\xe0"
                   47409:             "\x63\xa0\xe0\x64\xe0\xe0\x23\xe0\xe0\x24\x80\xf1\xe0"
                   47410:             "\x83\x80\xe0\x84\x70\xf1\xe0\x93\x70\xe0\x94\x60\xf1"
                   47411:             "\xe0\xa3\x60\xe0\xa4\x50\xf1\xe0\xb3\x50\xe0\xb4\xe0"
                   47412:             "\xe0\x23\xe0\xe0\x24\x30\xf1\xe0\xd3\x30\xe0\xd4\x20"
                   47413:             "\xf1\xe0\xe3\x20\xe0\xe4\x10\xf1\xe0\xe0\x13\x10\xe0"
                   47414:             "\xe0\x14\xe0\xe0\x23\xe0\xe0\x31\x10" }  },
                   47415:       /* --- pixel bitmap for cmex210 char#46 / --- */
                   47416:       {  46,62837,                      /* character number, location */
                   47417:           1, 2,  -50, 2,      /* topleft row,col, and botleft row,col */
                   47418:           { 20,   51, 3,187, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   47419:             "\xf1\xe0\x42\xe0\x33\xf1\xe0\x32\x10\xe0\x23\xe0\x32"
                   47420:             "\xe0\x33\x20\xf1\xe0\x12\x30\xe3\x30\xf1\xe2\x40\xd3"
                   47421:             "\xe0\x32\xe0\x33\x50\xf1\xc2\x60\xb3\x60\xf1\xb2\x70"
                   47422:             "\xa3\x70\xf1\xa2\x80\x93\xe0\x32\xe0\x33\x90\xf1\x82"
                   47423:             "\xa0\x73\xa0\xf1\x72\xb0\x63\xb0\xf1\x62\xc0\x53\xe0"
                   47424:             "\x32\xe0\x33\xd0\xf1\x42\xe0\x33\xe0\xf1\x32\xe0\x10"
                   47425:             "\x23\xe0\x32\xe0\x33\xe0\x20\xf1\x12\xe0\x33\xe0\x3f"
                   47426:             "\x12\xe0\x40" }  },
                   47427:       /* --- pixel bitmap for cmex210 char#47 \ --- */
                   47428:       {  47,66095,                      /* character number, location */
                   47429:           1, 2,  -50, 2,      /* topleft row,col, and botleft row,col */
                   47430:           { 20,   51, 3,190, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   47431:             "\xf1\x02\xe0\x43\xe0\x30\xf1\x12\xe0\x30\x13\xe0\x42"
                   47432:             "\xe0\x43\xe0\x10\xf1\x32\xe0\x10\x33\xe0\xf1\x42\xe0"
                   47433:             "\x43\xe0\x42\xe0\x43\xc0\xf1\x62\xc0\x63\xb0\xf1\x72"
                   47434:             "\xb0\x73\xa0\xf1\x82\xa0\x83\xe0\x42\xe0\x43\x80\xf1"
                   47435:             "\xa2\x80\xa3\x70\xf1\xb2\x70\xb3\x60\xf1\xc2\x60\xc3"
                   47436:             "\xe0\x42\xe0\x43\x40\xf1\xe2\x40\xe3\x30\xf1\xe0\x12"
                   47437:             "\x30\xe0\x13\xe0\x42\xe0\x43\x10\xf1\xe0\x32\x10\xe0"
                   47438:             "\x33\xf1\xe0\x42" }  },
                   47439:       /* --- pixel bitmap for cmex210 char#48 \leftparentop --- */
                   47440:       {  48, 4160,                      /* character number, location */
                   47441:           0, 8,  -52, 8,      /* topleft row,col, and botleft row,col */
                   47442:           { 16,   52, 3,91, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   47443:             "\xe2\xd2\xd3\xd2\xd2\xd3\xd2\x40\xf1\x92\x50\xf1\x82"
                   47444:             "\x60\x73\xd2\xd3\xd2\x80\xf1\x53\x80\x52\x90\xf1\x43"
                   47445:             "\x90\x42\xa0\xf2\x33\xa0\x32\xb0\xf3\x23\xb0\x22\xc0"
                   47446:             "\xf6\x13\xc0\x12\xdf\xd3\xd3" }  },
                   47447:       /* --- pixel bitmap for cmex210 char#49 \rightparentop --- */
                   47448:       {  49,10019,                      /* character number, location */
                   47449:           0, 1,  -52, 1,      /* topleft row,col, and botleft row,col */
                   47450:           { 16,   52, 3,96, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   47451:             "\x02\xe0\x12\xe3\xe2\xe0\x12\xe3\xe2\xa0\xf1\x52\x90"
                   47452:             "\xf1\x62\x80\x63\xe2\xe3\xe2\x60\xf1\x83\x50\x92\x50"
                   47453:             "\xf1\x93\x40\xa2\x40\xf2\xa3\x30\xb2\x30\xf3\xb3\x20"
                   47454:             "\xc2\x20\xf6\xc3\x10\xd2\x10\xfd\xd3" }  },
                   47455:       /* --- pixel bitmap for cmex210 char#50 (noname) --- */
                   47456:       {  50,16191,                      /* character number, location */
                   47457:           0, 9,  -51, 9,      /* topleft row,col, and botleft row,col */
                   47458:           { 10,   51, 2, 9, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   47459:             "\xff\x01\x00\x0a\x00\xff\x30\x02\x08" }  },
                   47460:       /* --- pixel bitmap for cmex210 char#51 (noname) --- */
                   47461:       {  51,22143,                      /* character number, location */
                   47462:           0, 0,  -51, 0,      /* topleft row,col, and botleft row,col */
                   47463:           { 10,   51, 2, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   47464:             "\xff\x01\x00\x0a\xff\x30\x08\x02" }  },
                   47465:       /* --- pixel bitmap for cmex210 char#52 (noname) --- */
                   47466:       {  52,17081,                      /* character number, location */
                   47467:           1, 9,  -50, 9,      /* topleft row,col, and botleft row,col */
                   47468:           { 10,   51, 2, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   47469:             "\xff\x30\x00\x02\x08\xff\x01\x0a" }  },
                   47470:       /* --- pixel bitmap for cmex210 char#53 (noname) --- */
                   47471:       {  53,23020,                      /* character number, location */
                   47472:           1, 0,  -50, 0,      /* topleft row,col, and botleft row,col */
                   47473:           { 10,   51, 2, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   47474:             "\xff\x30\x08\x02\x00\xff\x01\x0a" }  },
                   47475:       /* --- pixel bitmap for cmex210 char#54 (noname) --- */
                   47476:       {  54,17868,                      /* character number, location */
                   47477:           1, 9,  -18, 9,      /* topleft row,col, and botleft row,col */
                   47478:           {  2,   19, 3, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   47479:             "\xfe\x02\x0f\x32" }  },
                   47480:       /* --- pixel bitmap for cmex210 char#55 (noname) --- */
                   47481:       {  55,23794,                      /* character number, location */
                   47482:           1, 8,  -18, 8,      /* topleft row,col, and botleft row,col */
                   47483:           {  2,   19, 3, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   47484:             "\xfe\x02\x0f\x32" }  },
                   47485:       /* --- pixel bitmap for cmex210 char#56 \leftbracetop --- */
                   47486:       {  56,43487,                      /* character number, location */
                   47487:          -1,11,  -27,11,      /* topleft row,col, and botleft row,col */
                   47488:           { 11,   26, 3,29, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   47489:             "\x83\x74\x55\x54\x64\x73\x74\x50\xf1\x14\x6f\xe4\x7f"
                   47490:             "\x14\x73" }  },
                   47491:       /* --- pixel bitmap for cmex210 char#57 \rightbracetop --- */
                   47492:       {  57,51322,                      /* character number, location */
                   47493:          -1, 4,  -27, 4,      /* topleft row,col, and botleft row,col */
                   47494:           { 11,   26, 3,30, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   47495:             "\x03\x84\x85\x84\x84\x83\x84\x20\xf1\x64\x10\xfe\x74"
                   47496:             "\xf1\x74" }  },
                   47497:       /* --- pixel bitmap for cmex210 char#58 \leftbracebot --- */
                   47498:       {  58,44388,                      /* character number, location */
                   47499:           1,11,  -25,11,      /* topleft row,col, and botleft row,col */
                   47500:           { 11,   26, 3,30, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   47501:             "\xfe\x04\x7f\x14\x70\xf1\x14\x60\x24\x83\x84\x84\x85"
                   47502:             "\x84\x83" }  },
                   47503:       /* --- pixel bitmap for cmex210 char#59 \rightbracebot --- */
                   47504:       {  59,52224,                      /* character number, location */
                   47505:           1, 4,  -25, 4,      /* topleft row,col, and botleft row,col */
                   47506:           { 11,   26, 3,29, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   47507:             "\xfe\x74\xf1\x74\xf1\x64\x10\x54\x73\x74\x64\x55\x54"
                   47508:             "\x73\x84" }  },
                   47509:       /* --- pixel bitmap for cmex210 char#60 \leftbracemid --- */
                   47510:       {  60,45364,                      /* character number, location */
                   47511:           1, 4,  -53, 4,      /* topleft row,col, and botleft row,col */
                   47512:           { 11,   54, 3,60, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   47513:             "\xfe\x74\xf1\x74\xf2\x64\x10\x54\x73\x74\x64\x73\x64"
                   47514:             "\x6f\x13\x80\x14\x93\x84\x84\x83\x84\x20\xf2\x64\x10"
                   47515:             "\xfe\x74\xf1\x74" }  },
                   47516:       /* --- pixel bitmap for cmex210 char#61 \rightbracemid --- */
                   47517:       {  61,53201,                      /* character number, location */
                   47518:           1,11,  -53,11,      /* topleft row,col, and botleft row,col */
                   47519:           { 11,   54, 3,61, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   47520:             "\xfe\x04\x7f\x14\x70\xf2\x14\x60\x24\x83\x84\x84\x83"
                   47521:             "\x94\x10\xf1\x83\x64\x63\x74\x64\x73\x74\x50\xf2\x14"
                   47522:             "\x6f\xe4\x7f\x14\x73" }  },
                   47523:       /* --- pixel bitmap for cmex210 char#62 \leftbracebar --- */
                   47524:       {  62,46260,                      /* character number, location */
                   47525:           1,11,  -10,11,      /* topleft row,col, and botleft row,col */
                   47526:           {  4,   11, 3, 4, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   47527:             "\xfa\x04" }  },
                   47528:       /* --- pixel bitmap for cmex210 char#63 (noname) --- */
                   47529:       {  63,71841,                      /* character number, location */
                   47530:           1, 9,  -18, 9,      /* topleft row,col, and botleft row,col */
                   47531:           {  2,   19, 3, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   47532:             "\xfe\x02\x0f\x32" }  },
                   47533:       /* --- pixel bitmap for cmex210 char#64 \leftparenbot --- */
                   47534:       {  64, 5066,                      /* character number, location */
                   47535:           2, 8,  -50, 8,      /* topleft row,col, and botleft row,col */
                   47536:           { 16,   52, 3,96, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   47537:             "\xfd\x03\xd0\x12\xd0\xf6\x13\xc0\x22\xc0\xf3\x23\xb0"
                   47538:             "\x32\xb0\xf2\x33\xa0\x42\xa0\xf1\x43\x90\x52\x90\xf1"
                   47539:             "\x53\x80\x62\xe3\xe2\xe3\x60\xf1\x82\x60\xf1\x92\x50"
                   47540:             "\xa2\xe3\xe2\xe0\x12\xe3\xe2\xe0\x12" }  },
                   47541:       /* --- pixel bitmap for cmex210 char#65 \rightparenbot --- */
                   47542:       {  65,10912,                      /* character number, location */
                   47543:           2, 1,  -50, 1,      /* topleft row,col, and botleft row,col */
                   47544:           { 16,   52, 3,91, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   47545:             "\xfd\xd3\xd2\x10\xf6\xc3\x10\xc2\x20\xf3\xb3\x20\xb2"
                   47546:             "\x30\xf2\xa3\x30\xa2\x40\xf1\x93\x40\x92\x50\xf1\x83"
                   47547:             "\x50\x82\xd3\xd2\xd3\x70\xf1\x62\x80\xf1\x52\x90\x42"
                   47548:             "\xd3\xd2\xd2\xd3\xd2\xd2\xe0" }  },
                   47549:       /* --- pixel bitmap for cmex210 char#66 \leftparenbar --- */
                   47550:       {  66, 5966,                      /* character number, location */
                   47551:           1, 8,  -18, 8,      /* topleft row,col, and botleft row,col */
                   47552:           {  3,   19, 3, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   47553:             "\xfe\x03\x0f\x33" }  },
                   47554:       /* --- pixel bitmap for cmex210 char#67 \rightparenbar --- */
                   47555:       {  67,11799,                      /* character number, location */
                   47556:           1,14,  -18,14,      /* topleft row,col, and botleft row,col */
                   47557:           {  3,   19, 3, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   47558:             "\xfe\x03\x0f\x33" }  },
                   47559:       /* --- pixel bitmap for cmex210 char#68 \Big< --- */
                   47560:       {  68,56853,                      /* character number, location */
                   47561:           1, 4,  -51, 4,      /* topleft row,col, and botleft row,col */
                   47562:           { 11,   52, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   47563:             "\x00\x06\x30\xc0\x01\x06\x30\xc0\x01\x06\x38\xc0\x00"
                   47564:             "\x06\x38\xc0\x00\x06\x38\xc0\x00\x06\x38\xc0\x00\x06"
                   47565:             "\x38\xc0\x00\x07\x18\xc0\x00\x07\x18\xc0\x00\x0e\x60"
                   47566:             "\x00\x03\x38\x80\x01\x1c\xc0\x00\x06\x70\x00\x03\x18"
                   47567:             "\xc0\x01\x0c\x60\x00\x07\x30\x80\x01\x1c\xc0\x00\x0e"
                   47568:             "\x60\x00\x03\x38\x80\x01\x0c" }  },
                   47569:       /* --- pixel bitmap for cmex210 char#69 \Big> --- */
                   47570:       {  69,59835,                      /* character number, location */
                   47571:           1, 3,  -51, 3,      /* topleft row,col, and botleft row,col */
                   47572:           { 11,   52, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   47573:             "\x03\x18\xc0\x01\x0c\x60\x00\x07\x30\x80\x03\x18\xc0"
                   47574:             "\x00\x0e\x60\x00\x03\x38\x80\x01\x0c\xe0\x00\x06\x30"
                   47575:             "\x80\x03\x18\xc0\x01\x0c\x60\x00\x07\x30\x80\x01\x0e"
                   47576:             "\x30\x80\x01\x0e\x30\xc0\x01\x06\x30\xc0\x01\x06\x30"
                   47577:             "\xc0\x01\x06\x30\xc0\x01\x06\x30\xc0\x01\x06\x38\xc0"
                   47578:             "\x00\x06\x38\xc0\x00\x06\x00" }  },
                   47579:       /* --- pixel bitmap for cmex210 char#70 \bigsqcup --- */
                   47580:       {  70,82858,                      /* character number, location */
                   47581:           0, 2,  -29, 2,      /* topleft row,col, and botleft row,col */
                   47582:           { 20,   29, 2,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   47583:             "\xff\x1a\x00\x02\x10\x02\x00\xff\x01\x14" }  },
                   47584:       /* --- pixel bitmap for cmex210 char#71 \Bigsqcup --- */
                   47585:       {  71,83827,                      /* character number, location */
                   47586:           0, 2,  -41, 2,      /* topleft row,col, and botleft row,col */
                   47587:           { 28,   41, 2,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   47588:             "\xff\x26\x00\x02\x18\x02\x00\xff\x01\x1c" }  },
                   47589:       /* --- pixel bitmap for cmex210 char#72 \oint --- */
                   47590:       {  72,103449,                     /* character number, location */
                   47591:           0, 2,  -32, 2,      /* topleft row,col, and botleft row,col */
                   47592:           { 16,   32, 3,81, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   47593:             "\xb4\xb1\x32\xf1\x92\x32\xf5\x82\x60\x64\xa8\x73\x12"
                   47594:             "\x13\x53\x22\x23\x20\xf3\x22\x32\x32\x20\x23\x22\x23"
                   47595:             "\x53\x12\x13\x78\xa4\x60\xf5\x62\x8f\x12\x32\x92\x31"
                   47596:             "\xb4\xb3" }  },
                   47597:       /* --- pixel bitmap for cmex210 char#73 \Bigoint --- */
                   47598:       {  73,104543,                     /* character number, location */
                   47599:           0, 2,  -65, 2,      /* topleft row,col, and botleft row,col */
                   47600:           { 25,   65, 3,245, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   47601:             "\xe0\x72\xe0\x81\x21\xe0\x62\x22\xe0\x42\x23\xe0\x42"
                   47602:             "\x31\x10\xf2\xe0\x32\x60\xe0\x23\x60\xf2\xe0\x22\x70"
                   47603:             "\xf1\xe0\x13\x70\xf1\xe0\x12\x80\xf2\xe3\x80\xf1\xe2"
                   47604:             "\x90\xf2\xd3\x90\x97\xe0\x2b\xd3\x33\x13\xb3\x43\x23"
                   47605:             "\xa2\x53\x32\x93\x53\x33\x40\xf4\x42\x53\x52\x40\x43"
                   47606:             "\x33\x53\x92\x33\x52\xa3\x23\x43\xb3\x13\x33\xdb\xe0"
                   47607:             "\x27\x90\xf2\x93\xd0\xf1\x92\xe0\xf2\x83\xe0\xf1\x82"
                   47608:             "\xe0\x10\xf1\x73\xe0\x10\xf2\x72\xe0\x20\x63\xe0\x20"
                   47609:             "\xf2\x62\xe0\x30\x11\x32\xe0\x43\x22\xe0\x42\x22\xe0"
                   47610:             "\x61\x21\xe0\x82\xe0\x76" }  },
                   47611:       /* --- pixel bitmap for cmex210 char#74 \bigodot --- */
                   47612:       {  74,84899,                      /* character number, location */
                   47613:           0, 2,  -29, 2,      /* topleft row,col, and botleft row,col */
                   47614:           { 28,   29, 3,133, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   47615:             "\xa8\xe0\x4c\xe4\x84\xb3\xc3\x93\xe3\x73\xe0\x23\x53"
                   47616:             "\xe0\x43\x42\xe0\x62\x33\xe0\x63\x22\xe0\x82\x13\xe0"
                   47617:             "\x83\x0f\x12\xe0\xa2\x0f\x22\xa4\xa2\x0f\x12\xe0\xa2"
                   47618:             "\x03\xe0\x83\x12\xe0\x82\x23\xe0\x63\x32\xe0\x62\x43"
                   47619:             "\xe0\x43\x53\xe0\x23\x73\xe3\x93\xc3\xb4\x84\xec\xe0"
                   47620:             "\x48\xa2" }  },
                   47621:       /* --- pixel bitmap for cmex210 char#75 \Bigodot --- */
                   47622:       {  75,86110,                      /* character number, location */
                   47623:           0, 2,  -41, 2,      /* topleft row,col, and botleft row,col */
                   47624:           { 40,   41, 3,249, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   47625:             "\xe0\x28\xe0\xe0\x1e\xe0\xa5\x85\xe0\x64\xe4\xe0\x24"
                   47626:             "\xe0\x44\xd3\xe0\x83\xb3\xe0\xa3\x93\xe0\xc3\x82\xe0"
                   47627:             "\xe2\x73\xe0\xe3\x53\xe0\xe0\x23\x42\xe0\xe0\x42\x33"
                   47628:             "\xe0\xe0\x43\x10\xf2\x12\xe0\xe0\x62\x13\xe0\xe0\x65"
                   47629:             "\xe0\xe0\x84\xe0\x32\xe0\x32\x0f\x22\xe0\x24\xe0\x22"
                   47630:             "\x02\xe0\x32\xe0\x34\xe0\xe0\x85\xe0\xe0\x63\xf2\x12"
                   47631:             "\xe0\xe0\x62\x10\x13\xe0\xe0\x43\x32\xe0\xe0\x42\x43"
                   47632:             "\xe0\xe0\x23\x53\xe0\xe3\x72\xe0\xe2\x83\xe0\xc3\x93"
                   47633:             "\xe0\xa3\xb3\xe0\x83\xd4\xe0\x44\xe0\x24\xe4\xe0\x65"
                   47634:             "\x85\xe0\xae\xe0\xe0\x18\xe0\x20" }  },
                   47635:       /* --- pixel bitmap for cmex210 char#76 \bigoplus --- */
                   47636:       {  76,87189,                      /* character number, location */
                   47637:           0, 2,  -29, 2,      /* topleft row,col, and botleft row,col */
                   47638:           { 28,   29, 3,143, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   47639:             "\xa8\xe0\x4c\xe4\x32\x34\xb3\x52\x53\x93\x62\x63\x73"
                   47640:             "\x72\x73\x53\x82\x83\x42\x92\x92\x33\x92\x93\x22\xa2"
                   47641:             "\xa2\x13\xa2\xa3\x0f\x12\xb2\xb2\x0f\x1e\x0e\x0f\x22"
                   47642:             "\xb2\xb2\x03\xa2\xa3\x12\xa2\xa2\x23\x92\x93\x32\x92"
                   47643:             "\x92\x43\x82\x83\x53\x72\x73\x73\x62\x63\x93\x52\x53"
                   47644:             "\xb4\x32\x34\xec\xe0\x48\xa0" }  },
                   47645:       /* --- pixel bitmap for cmex210 char#77 \Bigoplus --- */
                   47646:       {  77,88437,                      /* character number, location */
                   47647:           0, 2,  -41, 2,      /* topleft row,col, and botleft row,col */
                   47648:           { 40,   41, 3,261, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   47649:             "\xe0\x28\xe0\xe0\x1e\xe0\xa5\x32\x35\xe0\x64\x62\x64"
                   47650:             "\xe0\x24\x82\x84\xd3\xa2\xa3\xb3\xb2\xb3\x93\xc2\xc3"
                   47651:             "\x82\xd2\xd2\x73\xd2\xd3\x53\xe2\xe3\x42\xe0\x12\xe0"
                   47652:             "\x12\x33\xe0\x12\xe0\x13\x10\xf2\x12\xe0\x22\xe0\x22"
                   47653:             "\x13\xe0\x22\xe0\x23\x0f\x12\xe0\x32\xe0\x32\x0f\x1e"
                   47654:             "\x0e\x0c\x0f\x22\xe0\x32\xe0\x32\x03\xe0\x22\xe0\x23"
                   47655:             "\xf2\x12\xe0\x22\xe0\x22\x10\x13\xe0\x12\xe0\x13\x32"
                   47656:             "\xe0\x12\xe0\x12\x43\xe2\xe3\x53\xd2\xd3\x72\xd2\xd2"
                   47657:             "\x83\xc2\xc3\x93\xb2\xb3\xb3\xa2\xa3\xd4\x82\x84\xe0"
                   47658:             "\x24\x62\x64\xe0\x65\x32\x35\xe0\xae\xe0\xe0\x18\xe0"
                   47659:             "\x25" }  },
                   47660:       /* --- pixel bitmap for cmex210 char#78 \bigotimes --- */
                   47661:       {  78,89573,                      /* character number, location */
                   47662:           0, 2,  -29, 2,      /* topleft row,col, and botleft row,col */
                   47663:           { 28,   29, 3,147, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   47664:             "\xa8\xe0\x4c\xe4\x84\xb3\xc3\x93\xe3\x74\xe4\x56\xc6"
                   47665:             "\x42\x23\xa3\x22\x33\x33\x83\x33\x22\x53\x63\x52\x13"
                   47666:             "\x63\x43\x65\x83\x23\x84\x96\x94\xa4\xa4\xb2\xb4\xa4"
                   47667:             "\xa4\x96\x94\x83\x23\x85\x63\x43\x63\x12\x53\x63\x52"
                   47668:             "\x23\x33\x83\x33\x32\x23\xa3\x22\x46\xc6\x54\xe4\x73"
                   47669:             "\xe3\x93\xc3\xb4\x84\xec\xe0\x48\xa3" }  },
                   47670:       /* --- pixel bitmap for cmex210 char#79 \Bigotimes --- */
                   47671:       {  79,90830,                      /* character number, location */
                   47672:           0, 2,  -41, 2,      /* topleft row,col, and botleft row,col */
                   47673:           { 40,   41, 3,303, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   47674:             "\xe0\x28\xe0\xe0\x1e\xe0\xa5\x85\xe0\x64\xe4\xe0\x24"
                   47675:             "\xe0\x44\xd3\xe0\x83\xb3\xe0\xa3\x95\xe0\x85\x82\x13"
                   47676:             "\xe0\x63\x12\x73\x23\xe0\x43\x23\x53\x43\xe0\x23\x43"
                   47677:             "\x42\x63\xe3\x62\x33\x73\xc3\x73\x22\x93\xa3\x92\x22"
                   47678:             "\xa3\x83\xa2\x22\xb3\x63\xb2\x13\xc3\x43\xc5\xe3\x23"
                   47679:             "\xe4\xe0\x16\xe0\x14\xe0\x24\xe0\x24\xe0\x32\xe0\x34"
                   47680:             "\xe0\x24\xe0\x24\xe0\x16\xe0\x14\xe3\x23\xe5\xc3\x43"
                   47681:             "\xc3\x12\xb3\x63\xb2\x22\xa3\x83\xa2\x22\x93\xa3\x92"
                   47682:             "\x23\x73\xc3\x73\x32\x63\xe3\x62\x43\x43\xe0\x23\x43"
                   47683:             "\x53\x23\xe0\x43\x23\x72\x13\xe0\x63\x12\x85\xe0\x85"
                   47684:             "\x93\xe0\xa3\xb3\xe0\x83\xd4\xe0\x44\xe0\x24\xe4\xe0"
                   47685:             "\x65\x85\xe0\xae\xe0\xe0\x18\xe0\x20" }  },
                   47686:       /* --- pixel bitmap for cmex210 char#80 \sum --- */
                   47687:       {  80,92324,                      /* character number, location */
                   47688:           0, 2,  -29, 2,      /* topleft row,col, and botleft row,col */
                   47689:           { 27,   29, 3,143, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   47690:             "\x0e\x0a\x3e\x0b\x32\xe0\x26\x42\xe0\x43\x43\xe0\x43"
                   47691:             "\x42\xe0\x61\x52\xe0\x51\x62\xe0\x51\x53\xe0\xb2\xe0"
                   47692:             "\xc2\xe0\xc2\xe0\xc2\xe0\xb3\xe0\xb2\xe0\xa3\xe0\xa2"
                   47693:             "\xe0\xa2\xe0\x30\xf1\x72\xe0\x40\x62\xe0\xa2\xe0\x51"
                   47694:             "\x43\xe0\x41\x52\xe0\x51\x42\xe0\x52\x32\xe0\x43\x33"
                   47695:             "\xe0\x25\x3e\x0a\x2e\x0a\x34" }  },
                   47696:       /* --- pixel bitmap for cmex210 char#81 \prod --- */
                   47697:       {  81,95344,                      /* character number, location */
                   47698:           0, 2,  -29, 2,      /* topleft row,col, and botleft row,col */
                   47699:           { 23,   29, 3,38, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   47700:             "\xf1\x0e\x09\x24\xb4\x20\xfe\x33\xb3\x30\xf7\x33\xb3"
                   47701:             "\x30\x25\x95\x2f\x19\x59" }  },
                   47702:       /* --- pixel bitmap for cmex210 char#82 \int --- */
                   47703:       {  82,101318,                     /* character number, location */
                   47704:           0, 2,  -32, 2,      /* topleft row,col, and botleft row,col */
                   47705:           { 16,   32, 3,41, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   47706:             "\xb4\xb1\x32\xf1\x92\x32\xf6\x82\x60\xf9\x72\x70\xf6"
                   47707:             "\x62\x8f\x12\x32\x92\x31\xb4\xb0" }  },
                   47708:       /* --- pixel bitmap for cmex210 char#83 \bigcup --- */
                   47709:       {  83,105473,                     /* character number, location */
                   47710:           0, 2,  -29, 2,      /* topleft row,col, and botleft row,col */
                   47711:           { 20,   29, 3,45, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   47712:             "\xfe\x02\xe0\x22\x0f\x52\xe0\x22\x03\xe3\x12\xe2\x23"
                   47713:             "\xc3\x32\xc2\x43\xa3\x54\x64\x8a\xc6\x72" }  },
                   47714:       /* --- pixel bitmap for cmex210 char#84 \bigcap --- */
                   47715:       {  84,107349,                     /* character number, location */
                   47716:           0, 2,  -29, 2,      /* topleft row,col, and botleft row,col */
                   47717:           { 20,   29, 3,44, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   47718:             "\x76\xca\x84\x64\x53\xa3\x42\xc2\x33\xc3\x22\xe2\x13"
                   47719:             "\xe3\x0f\xe2\xe0\x22\x0f\x52\xe0\x22" }  },
                   47720:       /* --- pixel bitmap for cmex210 char#85 \biguplus --- */
                   47721:       {  85,109290,                     /* character number, location */
                   47722:           0, 2,  -29, 2,      /* topleft row,col, and botleft row,col */
                   47723:           { 20,   29, 3,71, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   47724:             "\xf7\x02\xe0\x22\x0f\x42\x72\x72\x02\x2c\x24\x3a\x32"
                   47725:             "\x0f\x32\x72\x72\x0f\x12\xe0\x22\x03\xe3\x12\xe2\x23"
                   47726:             "\xc3\x32\xc2\x43\xa3\x54\x64\x8a\xc6\x73" }  },
                   47727:       /* --- pixel bitmap for cmex210 char#86 \bigwedge --- */
                   47728:       {  86,111260,                     /* character number, location */
                   47729:           0, 2,  -29, 2,      /* topleft row,col, and botleft row,col */
                   47730:           { 20,   29, 3,118, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   47731:             "\xf1\x92\x90\xf2\x84\x80\x76\x70\xf1\x72\x22\x70\x63"
                   47732:             "\x23\x60\xf1\x62\x42\x60\x53\x43\x50\xf1\x52\x62\x50"
                   47733:             "\x43\x63\x40\xf1\x42\x82\x40\x33\x83\x30\xf1\x32\xa2"
                   47734:             "\x30\x23\xa3\x20\xf1\x22\xc2\x20\x13\xc3\x10\xf1\x12"
                   47735:             "\xe2\x13\xe3\x0f\x12\xe0\x22" }  },
                   47736:       /* --- pixel bitmap for cmex210 char#87 \bigvee --- */
                   47737:       {  87,113066,                     /* character number, location */
                   47738:           0, 2,  -29, 2,      /* topleft row,col, and botleft row,col */
                   47739:           { 20,   29, 3,119, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   47740:             "\xf1\x02\xe0\x22\x03\xe3\xf1\x12\xe2\x10\x13\xc3\x10"
                   47741:             "\xf1\x22\xc2\x20\x23\xa3\x20\xf1\x32\xa2\x30\x33\x83"
                   47742:             "\x30\xf1\x42\x82\x40\x43\x63\x40\xf1\x52\x62\x50\x53"
                   47743:             "\x43\x50\xf1\x62\x42\x60\x63\x23\x60\xf1\x72\x22\x70"
                   47744:             "\x76\x70\xf2\x84\x80\xf1\x92\x90" }  },
                   47745:       /* --- pixel bitmap for cmex210 char#88 \Bigsum --- */
                   47746:       {  88,93839,                      /* character number, location */
                   47747:           0, 2,  -41, 2,      /* topleft row,col, and botleft row,col */
                   47748:           { 38,   41, 2,111, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   47749:             "\x00\x22\x04\x23\x04\x05\x15\x08\x04\x05\x19\x05\x04"
                   47750:             "\x05\x1a\x03\x05\x05\x1a\x02\x06\x04\x1b\x02\x05\x05"
                   47751:             "\x1b\x01\x06\x05\x1b\x01\x06\x05\x22\x04\x22\x05\x22"
                   47752:             "\x05\x22\x05\x22\x04\x22\x05\x22\x05\x22\x05\x22\x04"
                   47753:             "\x22\x05\x22\x05\x22\x03\x22\x03\x23\x02\x23\x03\x22"
                   47754:             "\x03\x22\x03\x22\x03\x23\x02\x23\x03\x22\x03\x22\x03"
                   47755:             "\x1b\x01\x06\x03\x1b\x01\x07\x02\x1b\x02\x06\x03\x1a"
                   47756:             "\x03\x05\x03\x1a\x03\x05\x03\x19\x05\x04\x03\x17\x07"
                   47757:             "\x05\x21\x04\x22\x03\x22\x04" }  },
                   47758:       /* --- pixel bitmap for cmex210 char#89 \Bigprod --- */
                   47759:       {  89,97010,                      /* character number, location */
                   47760:           0, 2,  -41, 2,      /* topleft row,col, and botleft row,col */
                   47761:           { 33,   41, 3,56, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   47762:             "\xf1\x0e\x0e\x05\x36\xe0\x16\x30\xfe\x54\xe0\x14\x50"
                   47763:             "\xfe\x54\xe0\x14\x50\xf4\x54\xe0\x14\x50\x38\xb8\x3f"
                   47764:             "\x1e\x5e" }  },
                   47765:       /* --- pixel bitmap for cmex210 char#90 \Bigint --- */
                   47766:       {  90,102372,                     /* character number, location */
                   47767:           0, 2,  -65, 2,      /* topleft row,col, and botleft row,col */
                   47768:           { 25,   65, 3,189, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   47769:             "\xe0\x72\xe0\x81\x21\xe0\x62\x22\xe0\x42\x23\xe0\x42"
                   47770:             "\x31\x10\xf2\xe0\x32\x60\xe0\x23\x60\xf2\xe0\x22\x70"
                   47771:             "\xf1\xe0\x13\x70\xf1\xe0\x12\x80\xf2\xe3\x80\xf1\xe2"
                   47772:             "\x90\xf3\xd3\x90\xf4\xc3\xa0\xf4\xb3\xb0\xf4\xa3\xc0"
                   47773:             "\xf3\x93\xd0\xf1\x92\xe0\xf2\x83\xe0\xf1\x82\xe0\x10"
                   47774:             "\xf1\x73\xe0\x10\xf2\x72\xe0\x20\x63\xe0\x20\xf2\x62"
                   47775:             "\xe0\x30\x11\x32\xe0\x43\x22\xe0\x42\x22\xe0\x61\x21"
                   47776:             "\xe0\x82\xe0\x70" }  },
                   47777:       /* --- pixel bitmap for cmex210 char#91 \Bigcup --- */
                   47778:       {  91,106450,                     /* character number, location */
                   47779:           0, 2,  -41, 2,      /* topleft row,col, and botleft row,col */
                   47780:           { 28,   41, 3,69, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   47781:             "\xfe\x02\xe0\xa2\x0f\xe2\xe0\xa2\x03\xe0\x83\xf1\x12"
                   47782:             "\xe0\x82\x10\x13\xe0\x63\x33\xe0\x43\x53\xe0\x23\x73"
                   47783:             "\xe3\x93\xc3\xb4\x84\xec\xe0\x48\xa2" }  },
                   47784:       /* --- pixel bitmap for cmex210 char#92 \Bigcap --- */
                   47785:       {  92,108333,                     /* character number, location */
                   47786:           0, 2,  -41, 2,      /* topleft row,col, and botleft row,col */
                   47787:           { 28,   41, 3,68, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   47788:             "\xa8\xe0\x4c\xe4\x84\xb3\xc3\x93\xe3\x73\xe0\x23\x53"
                   47789:             "\xe0\x43\x33\xe0\x63\x10\xf1\x12\xe0\x82\x13\xe0\x83"
                   47790:             "\x0f\xe2\xe0\xa2\x0f\xe2\xe0\xa2" }  },
                   47791:       /* --- pixel bitmap for cmex210 char#93 \Biguplus --- */
                   47792:       {  93,110354,                     /* character number, location */
                   47793:           0, 2,  -41, 2,      /* topleft row,col, and botleft row,col */
                   47794:           { 28,   41, 3,95, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   47795:             "\xf9\x02\xe0\xa2\x0f\x72\xb2\xb2\x02\x3e\x04\x34\x2e"
                   47796:             "\x06\x22\x0f\x82\xb2\xb2\x02\xe0\xa5\xe0\x83\xf1\x12"
                   47797:             "\xe0\x82\x10\x13\xe0\x63\x33\xe0\x43\x53\xe0\x23\x73"
                   47798:             "\xe3\x93\xc3\xb4\x84\xec\xe0\x48\xa3" }  },
                   47799:       /* --- pixel bitmap for cmex210 char#94 \Bigwedge --- */
                   47800:       {  94,112205,                     /* character number, location */
                   47801:           0, 2,  -41, 2,      /* topleft row,col, and botleft row,col */
                   47802:           { 28,   41, 3,190, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   47803:             "\xf1\xd2\xd0\xf2\xc4\xc0\xb6\xb0\xf1\xb2\x22\xb0\xa3"
                   47804:             "\x23\xa0\xf1\xa2\x42\xa0\x93\x43\x90\xf1\x92\x62\x90"
                   47805:             "\x83\x63\x80\xf1\x82\x82\x80\x73\x83\x70\xf1\x72\xa2"
                   47806:             "\x70\x63\xa3\x60\xf1\x62\xc2\x60\x53\xc3\x50\xf1\x52"
                   47807:             "\xe2\x50\x43\xe3\x40\xf1\x42\xe0\x22\x40\x33\xe0\x23"
                   47808:             "\x30\xf1\x32\xe0\x42\x30\x23\xe0\x43\x20\xf1\x22\xe0"
                   47809:             "\x62\x20\x13\xe0\x63\x10\xf1\x12\xe0\x82\x13\xe0\x83"
                   47810:             "\x0f\x12\xe0\xa2" }  },
                   47811:       /* --- pixel bitmap for cmex210 char#95 \Bigvee --- */
                   47812:       {  95,114012,                     /* character number, location */
                   47813:           0, 2,  -41, 2,      /* topleft row,col, and botleft row,col */
                   47814:           { 28,   41, 3,191, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   47815:             "\xf1\x02\xe0\xa2\x03\xe0\x83\xf1\x12\xe0\x82\x10\x13"
                   47816:             "\xe0\x63\x10\xf1\x22\xe0\x62\x20\x23\xe0\x43\x20\xf1"
                   47817:             "\x32\xe0\x42\x30\x33\xe0\x23\x30\xf1\x42\xe0\x22\x40"
                   47818:             "\x43\xe3\x40\xf1\x52\xe2\x50\x53\xc3\x50\xf1\x62\xc2"
                   47819:             "\x60\x63\xa3\x60\xf1\x72\xa2\x70\x73\x83\x70\xf1\x82"
                   47820:             "\x82\x80\x83\x63\x80\xf1\x92\x62\x90\x93\x43\x90\xf1"
                   47821:             "\xa2\x42\xa0\xa3\x23\xa0\xf1\xb2\x22\xb0\xb6\xb0\xf2"
                   47822:             "\xc4\xc0\xf1\xd2\xd0" }  },
                   47823:       /* --- pixel bitmap for cmex210 char#96 \coprod --- */
                   47824:       {  96,98567,                      /* character number, location */
                   47825:           0, 2,  -29, 2,      /* topleft row,col, and botleft row,col */
                   47826:           { 23,   29, 3,38, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   47827:             "\xf1\x09\x59\x25\x95\x20\xfe\x33\xb3\x30\xf7\x33\xb3"
                   47828:             "\x30\x24\xb4\x2f\x1e\x09" }  },
                   47829:       /* --- pixel bitmap for cmex210 char#97 \Bigcoprod --- */
                   47830:       {  97,100235,                     /* character number, location */
                   47831:           0, 2,  -41, 2,      /* topleft row,col, and botleft row,col */
                   47832:           { 33,   41, 3,56, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   47833:             "\xf1\x0e\x5e\x38\xb8\x30\xfe\x54\xe0\x14\x50\xfe\x54"
                   47834:             "\xe0\x14\x50\xf4\x54\xe0\x14\x50\x36\xe0\x16\x3f\x1e"
                   47835:             "\x0e\x05" }  },
                   47836:       /* --- pixel bitmap for cmex210 char#98 ^ --- */
                   47837:       {  98,114835,                     /* character number, location */
                   47838:          22, 0,   17, 0,      /* topleft row,col, and botleft row,col */
                   47839:           { 16,    5, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   47840:             "\x72\xc6\x83\x43\x52\x82\x22\xc2" }  },
                   47841:       /* --- pixel bitmap for cmex210 char#99 ^ --- */
                   47842:       {  99,115712,                     /* character number, location */
                   47843:          23, 0,   17, 0,      /* topleft row,col, and botleft row,col */
                   47844:           { 29,    6, 3,28, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   47845:             "\xd3\xe0\x99\xe0\x34\x74\xb4\xd4\x54\xe0\x54\x11\xe0"
                   47846:             "\xd1" }  },
                   47847:       /* --- pixel bitmap for cmex210 char#100 ^ --- */
                   47848:       { 100,116802,                     /* character number, location */
                   47849:          23, 0,   17, 0,      /* topleft row,col, and botleft row,col */
                   47850:           { 42,    6, 3,38, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   47851:             "\xe0\x54\xe0\xe0\x6c\xe0\xb7\x87\xe0\x26\xe0\x46\x85"
                   47852:             "\xe0\xe5\x22\xe0\xe0\xa2" }  },
                   47853:       /* --- pixel bitmap for cmex210 char#101 ~ --- */
                   47854:       { 101,117521,                     /* character number, location */
                   47855:          21, 0,   18, 0,      /* topleft row,col, and botleft row,col */
                   47856:           { 16,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   47857:             "\xfc\x80\xfe\x7f\x01\x3f" }  },
                   47858:       /* --- pixel bitmap for cmex210 char#102 ~ --- */
                   47859:       { 102,118439,                     /* character number, location */
                   47860:          22, 0,   18, 0,      /* topleft row,col, and botleft row,col */
                   47861:           { 29,    4, 3,17, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   47862:             "\x67\xe2\x3d\x93\x23\x9d\x32\xe7\x60" }  },
                   47863:       /* --- pixel bitmap for cmex210 char#103 ~ --- */
                   47864:       { 103,119572,                     /* character number, location */
                   47865:          22, 0,   18, 0,      /* topleft row,col, and botleft row,col */
                   47866:           { 42,    4, 3,29, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   47867:             "\x9a\xe0\x72\x56\x47\xe0\x13\x43\xe0\x17\x46\x52\xe0"
                   47868:             "\x7a\x95" }  },
                   47869:       /* --- pixel bitmap for cmex210 char#104 \Big[ --- */
                   47870:       { 104,13393,                      /* character number, location */
                   47871:           1, 6,  -50, 6,      /* topleft row,col, and botleft row,col */
                   47872:           {  8,   51, 3,24, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   47873:             "\xf1\x08\x0f\xe2\x6f\xe2\x6f\xe2\x6f\x12\x6f\x18" }  },
                   47874:       /* --- pixel bitmap for cmex210 char#105 \Big] --- */
                   47875:       { 105,19410,                      /* character number, location */
                   47876:           1, 0,  -50, 0,      /* topleft row,col, and botleft row,col */
                   47877:           {  8,   51, 3,24, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   47878:             "\xf1\x08\xfe\x62\xfe\x62\xfe\x62\xf1\x62\x0f\x18" }  },
                   47879:       /* --- pixel bitmap for cmex210 char#106 (noname) --- */
                   47880:       { 106,25452,                      /* character number, location */
                   47881:           1, 6,  -50, 6,      /* topleft row,col, and botleft row,col */
                   47882:           {  9,   51, 2, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   47883:             "\xff\x30\x00\x02\x07\xff\x01\x09" }  },
                   47884:       /* --- pixel bitmap for cmex210 char#107 (noname) --- */
                   47885:       { 107,29116,                      /* character number, location */
                   47886:           1, 0,  -50, 0,      /* topleft row,col, and botleft row,col */
                   47887:           {  9,   51, 2, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   47888:             "\xff\x30\x07\x02\x00\xff\x01\x09" }  },
                   47889:       /* --- pixel bitmap for cmex210 char#108 (noname) --- */
                   47890:       { 108,32758,                      /* character number, location */
                   47891:           1, 6,  -50, 6,      /* topleft row,col, and botleft row,col */
                   47892:           {  9,   51, 2, 9, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   47893:             "\xff\x01\x00\x09\x00\xff\x30\x02\x07" }  },
                   47894:       /* --- pixel bitmap for cmex210 char#109 (noname) --- */
                   47895:       { 109,36430,                      /* character number, location */
                   47896:           1, 0,  -50, 0,      /* topleft row,col, and botleft row,col */
                   47897:           {  9,   51, 2, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   47898:             "\xff\x01\x00\x09\xff\x30\x07\x02" }  },
                   47899:       /* --- pixel bitmap for cmex210 char#110 \Big{ --- */
                   47900:       { 110,40318,                      /* character number, location */
                   47901:           1, 3,  -50, 3,      /* topleft row,col, and botleft row,col */
                   47902:           { 13,   51, 3,64, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   47903:             "\xa3\x85\x74\x83\xa2\x50\xfe\x52\x60\x52\x60\xf1\x42"
                   47904:             "\x70\x23\x93\x92\xc3\xb3\x80\xf1\x42\x70\xfe\x52\x60"
                   47905:             "\x52\xc2\xb3\xb4\xa5\xa3" }  },
                   47906:       /* --- pixel bitmap for cmex210 char#111 \Big} --- */
                   47907:       { 111,48150,                      /* character number, location */
                   47908:           1, 3,  -50, 3,      /* topleft row,col, and botleft row,col */
                   47909:           { 13,   51, 3,59, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   47910:             "\x03\xa4\xb3\xb3\xb3\x60\xfe\x52\x60\x52\xc2\xb3\xb3"
                   47911:             "\xc4\xa3\x94\x73\x93\xa2\x50\xfe\x52\x60\x52\xa3\x93"
                   47912:             "\x93\x84\x93\xa4" }  },
                   47913:       /* --- pixel bitmap for cmex210 char#112 (noname) --- */
                   47914:       { 112,75930,                      /* character number, location */
                   47915:           2, 3,  -34, 3,      /* topleft row,col, and botleft row,col */
                   47916:           { 28,   36, 3,169, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   47917:             "\xe0\xc2\xe0\xb3\xe0\xb2\xe0\xb3\xe0\xb2\xe0\xb3\xe0"
                   47918:             "\xb2\xe0\xb3\xe0\xb2\xe0\xb3\xe0\xb2\xe0\xb3\xe0\xb2"
                   47919:             "\xe0\xb3\xe0\xb2\xe0\xb3\xe0\xb2\xe0\xb3\xb1\xd2\xa3"
                   47920:             "\xc3\x92\x12\xb2\xd2\xa3\xd2\xa2\xe0\x12\x83\xe0\x12"
                   47921:             "\x82\xe0\x32\x63\xe0\x32\x62\xe0\x42\x53\xe0\x52\x42"
                   47922:             "\xe0\x62\x33\xe0\x72\x22\xe0\x82\x13\xe0\x10\xf1\x84"
                   47923:             "\xe0\x20\x83\xe0\xc2\xe0\x30" }  },
                   47924:       /* --- pixel bitmap for cmex210 char#113 (noname) --- */
                   47925:       { 113,76941,                      /* character number, location */
                   47926:           2, 3,  -51, 3,      /* topleft row,col, and botleft row,col */
                   47927:           { 28,   53, 3,243, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   47928:             "\xf1\xe0\xc2\xe0\xb3\xf1\xe0\xb2\x10\xe0\xa3\x10\xf1"
                   47929:             "\xe0\xa2\x20\xe0\x93\x20\xf1\xe0\x92\x30\xe0\x83\x30"
                   47930:             "\xf1\xe0\x82\x40\xe0\x73\x40\xf1\xe0\x72\x50\xe0\x63"
                   47931:             "\x50\xf1\xe0\x62\x60\xe0\x53\x60\xf1\xe0\x52\x70\xe0"
                   47932:             "\x43\x70\xf1\xe0\x42\x80\xe0\x33\xb1\xd2\xb2\xd2\xa3"
                   47933:             "\xc3\x91\x22\xb2\xd2\xb2\xd2\xa3\xd2\xa2\xe0\x12\x92"
                   47934:             "\xe0\x12\x83\xe0\x12\x82\xe0\x32\x72\xe0\x32\x63\xc0"
                   47935:             "\xf1\x52\x62\xd0\x62\x43\xd0\xf1\x62\x42\xe0\x72\x23"
                   47936:             "\xe0\xf1\x72\x22\xe0\x10\x72\x13\xe0\x10\xf2\x84\xe0"
                   47937:             "\x20\xf1\x92\xe0\x30" }  },
                   47938:       /* --- pixel bitmap for cmex210 char#114 (noname) --- */
                   47939:       { 114,78001,                      /* character number, location */
                   47940:           2, 3,  -69, 3,      /* topleft row,col, and botleft row,col */
                   47941:           { 28,   71, 3,269, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   47942:             "\xf2\xe0\xc2\xe0\xb3\xf2\xe0\xb2\x10\xe0\xa3\x10\xf2"
                   47943:             "\xe0\xa2\x20\xe0\x93\x20\xf2\xe0\x92\x30\xe0\x83\x30"
                   47944:             "\xf2\xe0\x82\x40\xe0\x73\x40\xf2\xe0\x72\x50\xe0\x63"
                   47945:             "\x50\xf2\xe0\x62\x60\xe0\x53\x60\xf2\xe0\x52\x70\xe0"
                   47946:             "\x43\x70\xf2\xe0\x42\x80\xe0\x33\xb1\xd2\xb2\xd2\xa3"
                   47947:             "\xd2\xa3\xc3\x91\x22\xb2\xa0\xf1\x32\xb2\xa0\x32\xa3"
                   47948:             "\xd2\xa2\xb0\xf1\x42\x92\xb0\x42\x83\xb0\xf1\x42\x82"
                   47949:             "\xc0\x52\x72\xe0\x32\x63\xc0\xf1\x52\x62\xd0\x62\x52"
                   47950:             "\xe0\x52\x43\xd0\xf2\x62\x42\xe0\x72\x23\xe0\xf2\x72"
                   47951:             "\x22\xe0\x10\x72\x13\xe0\x10\xf3\x84\xe0\x20\x83\xe0"
                   47952:             "\x30\xf1\x92\xe0\x31" }  },
                   47953:       /* --- pixel bitmap for cmex210 char#115 (noname) --- */
                   47954:       { 115,79111,                      /* character number, location */
                   47955:           2, 3,  -86, 3,      /* topleft row,col, and botleft row,col */
                   47956:           { 28,   88, 3,281, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   47957:             "\xf2\xe0\xc2\xe0\xb3\xf3\xe0\xb2\x10\xe0\xa3\x10\xf3"
                   47958:             "\xe0\xa2\x20\xe0\x93\x20\xf3\xe0\x92\x30\xe0\x83\x30"
                   47959:             "\xf3\xe0\x82\x40\xe0\x73\x40\xf3\xe0\x72\x50\xe0\x63"
                   47960:             "\x50\xf3\xe0\x62\x60\xe0\x53\x60\xf3\xe0\x52\x70\xe0"
                   47961:             "\x43\x70\xf3\xe0\x42\x80\xe0\x33\x80\xf1\x31\xd2\x90"
                   47962:             "\xf1\x22\xd2\x90\x13\xd2\x94\xc3\x91\x22\xb2\xa0\xf2"
                   47963:             "\x32\xb2\xa0\x32\xa3\xd2\xa2\xb0\xf2\x42\x92\xb0\x42"
                   47964:             "\x83\xb0\xf1\x42\x82\xc0\xf1\x52\x72\xc0\x52\x63\xc0"
                   47965:             "\xf1\x52\x62\xd0\xf1\x62\x52\xd0\x62\x43\xd0\xf2\x62"
                   47966:             "\x42\xe0\x72\x32\xe0\x72\x23\xe0\xf3\x72\x22\xe0\x10"
                   47967:             "\x85\xe0\x10\xf4\x84\xe0\x20\xf2\x92\xe0\x30" }  },
                   47968:       /* --- pixel bitmap for cmex210 char#116 (noname) --- */
                   47969:       { 116,80309,                      /* character number, location */
                   47970:           1, 3,  -52, 3,      /* topleft row,col, and botleft row,col */
                   47971:           { 19,   53, 3,115, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   47972:             "\xf6\xe0\x32\x31\xd2\x32\xc2\xf1\x23\xc2\xf1\x11\x22"
                   47973:             "\xb2\x01\x32\xb2\xf2\x52\xa2\xf2\x62\x92\xf2\x72\x82"
                   47974:             "\xf2\x82\x72\xf2\x92\x62\xf3\xa2\x52\xf2\xb2\x42\xf2"
                   47975:             "\xc2\x32\xf2\xd2\x22\xf2\xe2\x12\xf2\xe0\x14\xf2\xe0"
                   47976:             "\x23\xe0\x32\xe0\x31\x10" }  },
                   47977:       /* --- pixel bitmap for cmex210 char#117 (noname) --- */
                   47978:       { 117,81286,                      /* character number, location */
                   47979:           1,20,  -18,20,      /* topleft row,col, and botleft row,col */
                   47980:           {  2,   19, 3, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   47981:             "\xfe\x02\x0f\x32" }  },
                   47982:       /* --- pixel bitmap for cmex210 char#118 (noname) --- */
                   47983:       { 118,82115,                      /* character number, location */
                   47984:           2,20,  -17,20,      /* topleft row,col, and botleft row,col */
                   47985:           { 13,   19, 3,13, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   47986:             "\xf1\x0d\x0f\xe2\xbf\x12\xb2" }  },
                   47987:       /* --- pixel bitmap for cmex210 char#119 (noname) --- */
                   47988:       { 119,74945,                      /* character number, location */
                   47989:           1, 8,  -18, 8,      /* topleft row,col, and botleft row,col */
                   47990:           {  8,   19, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   47991:             "\xfe\x02\x42\x0f\x32\x42" }  },
                   47992:       /* --- pixel bitmap for cmex210 char#120 (noname) --- */
                   47993:       { 120,70171,                      /* character number, location */
                   47994:          -1, 4,  -17, 4,      /* topleft row,col, and botleft row,col */
                   47995:           { 12,   16, 3,21, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   47996:             "\x52\x94\x68\x24\x12\x17\x22\x23\xfa\x52\x51" }  },
                   47997:       /* --- pixel bitmap for cmex210 char#121 (noname) --- */
                   47998:       { 121,71110,                      /* character number, location */
                   47999:           0, 4,  -16, 4,      /* topleft row,col, and botleft row,col */
                   48000:           { 12,   16, 3,21, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   48001:             "\xfa\x52\x53\x22\x27\x12\x14\x28\x64\x92\x51" }  },
                   48002:       /* --- pixel bitmap for cmex210 char#122 (noname) --- */
                   48003:       { 122,53876,                      /* character number, location */
                   48004:           4,-1,   -6,-1,      /* topleft row,col, and botleft row,col */
                   48005:           { 15,   10, 3,21, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   48006:             "\xa5\x78\x69\x4b\x37\x75\x94\xb3\xb3\xc2\xd4" }  },
                   48007:       /* --- pixel bitmap for cmex210 char#123 (noname) --- */
                   48008:       { 123,54464,                      /* character number, location */
                   48009:           4,-1,   -6,-1,      /* topleft row,col, and botleft row,col */
                   48010:           { 15,   10, 3,20, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   48011:             "\x05\xa8\x79\x6b\x97\xb5\xc4\xc3\xd3\xd2" }  },
                   48012:       /* --- pixel bitmap for cmex210 char#124 (noname) --- */
                   48013:       { 124,55049,                      /* character number, location */
                   48014:          10,-1,    0,-1,      /* topleft row,col, and botleft row,col */
                   48015:           { 15,   10, 3,20, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   48016:             "\x02\xd3\xd3\xc4\xc5\xb7\x9b\x69\x78\xa5" }  },
                   48017:       /* --- pixel bitmap for cmex210 char#125 (noname) --- */
                   48018:       { 125,55635,                      /* character number, location */
                   48019:          10,-1,    0,-1,      /* topleft row,col, and botleft row,col */
                   48020:           { 15,   10, 3,21, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   48021:             "\xd2\xc3\xb3\xb4\x95\x77\x3b\x49\x68\x75\xa4" }  },
                   48022:       /* --- pixel bitmap for cmex210 char#126 (noname) --- */
                   48023:       { 126,72909,                      /* character number, location */
                   48024:          -1, 2,  -17, 2,      /* topleft row,col, and botleft row,col */
                   48025:           { 20,   16, 3,55, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   48026:             "\x92\x90\xf1\x84\x80\x72\x22\xd2\x42\xa4\x44\x75\x45"
                   48027:             "\x44\x12\x42\x14\x13\x32\x42\x34\x52\x42\x51\xf5\x62"
                   48028:             "\x42\x60" }  },
                   48029:       /* --- pixel bitmap for cmex210 char#127 (noname) --- */
                   48030:       { 127,74031,                      /* character number, location */
                   48031:           0, 2,  -16, 2,      /* topleft row,col, and botleft row,col */
                   48032:           { 20,   16, 3,55, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   48033:             "\xf5\x62\x42\x61\x52\x42\x54\x32\x42\x33\x14\x12\x42"
                   48034:             "\x14\x45\x45\x74\x44\xa2\x42\xd2\x22\x70\xf1\x84\x80"
                   48035:             "\x92\x90" }  },
1.1       albertel 48036:       /* --- trailer  --- */
1.2       albertel 48037:       { -99, -999,  0,0,0,0, { 0,0,0,0, (pixbyte *)"\0" }  }
1.1       albertel 48038:    } ;
                   48039: 
                   48040: 
1.2       albertel 48041: /* --- size=7 for .250gf ---
                   48042:  * mf '\mode=preview; mag=magstep(-12.84858895680446863032); input cmex10'
                   48043:  * --------------------------------------------------------------------- */
                   48044: /* --- fontdef for cmex250 --- */
                   48045: static	chardef  cmex250[] =
1.1       albertel 48046:    {
1.2       albertel 48047:       /* --- pixel bitmap for cmex250 char#0 \big( --- */
                   48048:       {   0,  661,                      /* character number, location */
                   48049:           1, 5,  -39, 5,      /* topleft row,col, and botleft row,col */
                   48050:           {  9,   40, 3,58, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   48051:             "\x81\x71\x71\x71\x72\x71\x72\x71\x72\x71\x60\xf3\x12"
                   48052:             "\x6f\xb2\x70\xf3\x12\x60\x21\x82\x81\x82\x81\x82\x81"
                   48053:             "\x91\x91\x91" }  },
                   48054:       /* --- pixel bitmap for cmex250 char#1 \big) --- */
                   48055:       {   1, 6866,                      /* character number, location */
                   48056:           1, 2,  -39, 2,      /* topleft row,col, and botleft row,col */
                   48057:           {  9,   40, 3,59, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   48058:             "\x01\x91\x91\x91\x82\x81\x82\x81\x82\x81\x20\xf3\x62"
                   48059:             "\x10\xfb\x72\xf3\x62\x10\x61\x72\x71\x72\x71\x72\x71"
                   48060:             "\x71\x71\x71\x83" }  },
                   48061:       /* --- pixel bitmap for cmex250 char#2 \big[ --- */
                   48062:       {   2,13013,                      /* character number, location */
                   48063:           1, 7,  -39, 7,      /* topleft row,col, and botleft row,col */
                   48064:           {  7,   40, 3,20, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   48065:             "\xf1\x07\x0f\xe2\x5f\xe2\x5f\x52\x5f\x17" }  },
                   48066:       /* --- pixel bitmap for cmex250 char#3 \big] --- */
                   48067:       {   3,19311,                      /* character number, location */
                   48068:           1, 0,  -39, 0,      /* topleft row,col, and botleft row,col */
                   48069:           {  7,   40, 3,20, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   48070:             "\xf1\x07\xfe\x52\xfe\x52\xf5\x52\x0f\x17" }  },
                   48071:       /* --- pixel bitmap for cmex250 char#4 (noname) --- */
                   48072:       {   4,25498,                      /* character number, location */
                   48073:           1, 7,  -39, 7,      /* topleft row,col, and botleft row,col */
                   48074:           {  9,   40, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   48075:             "\xfe\x02\x7f\xe2\x7f\x72\x7f\x19" }  },
                   48076:       /* --- pixel bitmap for cmex250 char#5 (noname) --- */
                   48077:       {   5,29317,                      /* character number, location */
                   48078:           1, 0,  -39, 0,      /* topleft row,col, and botleft row,col */
                   48079:           {  9,   40, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   48080:             "\xfe\x72\xfe\x72\xf7\x72\x0f\x19" }  },
                   48081:       /* --- pixel bitmap for cmex250 char#6 (noname) --- */
                   48082:       {   6,33112,                      /* character number, location */
                   48083:           1, 7,  -39, 7,      /* topleft row,col, and botleft row,col */
                   48084:           {  9,   40, 3,17, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   48085:             "\xf1\x09\x0f\xe2\x7f\xe2\x7f\x72\x7e" }  },
                   48086:       /* --- pixel bitmap for cmex250 char#7 (noname) --- */
                   48087:       {   7,36939,                      /* character number, location */
                   48088:           1, 0,  -39, 0,      /* topleft row,col, and botleft row,col */
                   48089:           {  9,   40, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   48090:             "\xf1\x09\xfe\x72\xfe\x72\xf7\x72" }  },
                   48091:       /* --- pixel bitmap for cmex250 char#8 \big{ --- */
                   48092:       {   8,40835,                      /* character number, location */
                   48093:           1, 3,  -39, 3,      /* topleft row,col, and botleft row,col */
                   48094:           { 14,   40, 3,48, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   48095:             "\xc2\x93\x93\xb2\x50\xfc\x62\x60\x52\xa3\x80\xf1\x13"
                   48096:             "\xa0\x33\xd2\x70\xfc\x62\x60\x72\xc3\xd3\xe2" }  },
                   48097:       /* --- pixel bitmap for cmex250 char#9 \big} --- */
                   48098:       {   9,48902,                      /* character number, location */
                   48099:           1, 3,  -39, 3,      /* topleft row,col, and botleft row,col */
                   48100:           { 14,   40, 3,45, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   48101:             "\x02\xe3\xd3\xc2\x70\xfc\x62\x60\x72\xd3\xd4\xa3\x93"
                   48102:             "\xa2\x50\xfc\x62\x60\x52\xb3\x93\x92\xc4" }  },
                   48103:       /* --- pixel bitmap for cmex250 char#10 \big< --- */
                   48104:       {  10,58164,                      /* character number, location */
                   48105:           1, 3,  -39, 3,      /* topleft row,col, and botleft row,col */
                   48106:           { 11,   40, 3,80, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   48107:             "\xf1\x92\x83\x82\x83\x82\x83\x82\x83\x82\x83\x82\x83"
                   48108:             "\x82\x83\x82\x83\x82\x83\x8f\x12\x93\x92\x93\x92\x93"
                   48109:             "\x92\x93\x92\x93\x92\x93\x92\x93\x92\x93\x92\x93\xf1"
                   48110:             "\x92" }  },
                   48111:       /* --- pixel bitmap for cmex250 char#11 \big> --- */
                   48112:       {  11,61259,                      /* character number, location */
                   48113:           1, 2,  -39, 2,      /* topleft row,col, and botleft row,col */
                   48114:           { 11,   40, 3,81, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   48115:             "\xf1\x02\x93\x92\x93\x92\x93\x92\x93\x92\x93\x92\x93"
                   48116:             "\x92\x93\x92\x93\x92\x93\xf1\x92\x83\x82\x83\x82\x83"
                   48117:             "\x82\x83\x82\x83\x82\x83\x82\x83\x82\x83\x82\x83\x8f"
                   48118:             "\x12\x90" }  },
                   48119:       /* --- pixel bitmap for cmex250 char#12 (noname) --- */
                   48120:       {  12,71017,                      /* character number, location */
                   48121:           1, 5,  -22, 5,      /* topleft row,col, and botleft row,col */
                   48122:           {  2,   23, 3, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   48123:             "\xfe\x02\x0f\x72" }  },
                   48124:       /* --- pixel bitmap for cmex250 char#13 (noname) --- */
                   48125:       {  13,71656,                      /* character number, location */
                   48126:           1, 5,  -22, 5,      /* topleft row,col, and botleft row,col */
                   48127:           {  9,   23, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   48128:             "\xfe\x02\x52\x0f\x72\x52" }  },
                   48129:       /* --- pixel bitmap for cmex250 char#14 (noname) --- */
                   48130:       {  14,64340,                      /* character number, location */
                   48131:           1, 2,  -39, 2,      /* topleft row,col, and botleft row,col */
                   48132:           { 16,   40, 3,113, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   48133:             "\xf1\xe2\xd3\xf1\xd2\x10\xc3\xd2\xd3\x20\xf1\xb2\x30"
                   48134:             "\xa3\x30\xf1\xa2\x40\x93\xd2\xd3\x50\xf1\x82\x60\x73"
                   48135:             "\x60\xf1\x72\x70\x63\x70\xf1\x62\x80\x53\xd2\xd3\x90"
                   48136:             "\xf1\x42\xa0\x33\xa0\xf1\x32\xb0\x23\xd2\xd3\xc0\xf1"
                   48137:             "\x12\xd3\xdf\x12\xe3" }  },
                   48138:       /* --- pixel bitmap for cmex250 char#15 (noname) --- */
                   48139:       {  15,67710,                      /* character number, location */
                   48140:           1, 2,  -39, 2,      /* topleft row,col, and botleft row,col */
                   48141:           { 16,   40, 3,116, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   48142:             "\xf1\x02\xe3\xd0\xf1\x12\xd0\x13\xe2\xe3\xb0\xf1\x32"
                   48143:             "\xb0\x33\xa0\xf1\x42\xa0\x43\xe2\xe3\x80\xf1\x62\x80"
                   48144:             "\x63\x70\xf1\x72\x70\x73\x60\xf1\x82\x60\x83\xe2\xe3"
                   48145:             "\x40\xf1\xa2\x40\xa3\x30\xf1\xb2\x30\xb3\xe2\xe3\x10"
                   48146:             "\xf1\xd2\x10\xd3\xf1\xe2" }  },
                   48147:       /* --- pixel bitmap for cmex250 char#16 \Big( --- */
                   48148:       {  16, 1452,                      /* character number, location */
                   48149:           1, 6,  -60, 6,      /* topleft row,col, and botleft row,col */
                   48150:           { 14,   61, 3,106, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   48151:             "\xc2\xb2\xb2\xb2\xb2\x40\xf1\x72\x50\x62\x60\xf1\x52"
                   48152:             "\x70\xf1\x42\x80\xf2\x32\x90\xf2\x22\xa0\xf4\x12\xbf"
                   48153:             "\xe2\xc0\xf4\x12\xb0\xf2\x22\xa0\xf2\x32\x90\xf1\x42"
                   48154:             "\x80\xf1\x52\x70\x62\x60\xf1\x72\x50\x82\xd2\xd2\xd2"
                   48155:             "\xd2" }  },
                   48156:       /* --- pixel bitmap for cmex250 char#17 \Big) --- */
                   48157:       {  17, 7618,                      /* character number, location */
                   48158:           1, 1,  -60, 1,      /* topleft row,col, and botleft row,col */
                   48159:           { 14,   61, 3,107, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   48160:             "\x02\xd2\xd2\xd2\xd2\x80\xf1\x52\x70\x62\x60\xf1\x72"
                   48161:             "\x50\xf1\x82\x40\xf2\x92\x30\xf2\xa2\x20\xf4\xb2\x10"
                   48162:             "\xfe\xc2\xf4\xb2\x10\xf2\xa2\x20\xf2\x92\x30\xf1\x82"
                   48163:             "\x40\xf1\x72\x50\x62\x60\xf1\x52\x70\x42\xb2\xb2\xb2"
                   48164:             "\xb2\xc3" }  },
                   48165:       /* --- pixel bitmap for cmex250 char#18 \bigg( --- */
                   48166:       {  18, 2338,                      /* character number, location */
                   48167:           1, 7,  -81, 7,      /* topleft row,col, and botleft row,col */
                   48168:           { 17,   82, 3,172, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   48169:             "\xe0\x12\xe2\xe2\xe2\xe2\xe3\xe2\xe2\xe3\xe2\xe3\x70"
                   48170:             "\xf1\x63\x80\xf1\x53\x90\x52\xe3\xe2\xb0\xf2\x33\xb0"
                   48171:             "\xf3\x23\xc0\x22\xd0\xf4\x13\xd0\x12\xef\xe3\xef\x23"
                   48172:             "\xe0\x12\xe0\xf4\x13\xd0\x22\xd0\xf3\x23\xc0\xf2\x33"
                   48173:             "\xb0\x42\xe0\x13\xe0\x12\xa0\xf1\x53\x90\xf1\x63\x80"
                   48174:             "\x73\xe0\x12\xe0\x13\xe0\x12\xe0\x22\xe0\x13\xe0\x12"
                   48175:             "\xe0\x22\xe0\x22\xe0\x22\xe0\x22" }  },
                   48176:       /* --- pixel bitmap for cmex250 char#19 \bigg) --- */
                   48177:       {  19, 8491,                      /* character number, location */
                   48178:           1, 1,  -81, 1,      /* topleft row,col, and botleft row,col */
                   48179:           { 17,   82, 3,173, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   48180:             "\x02\xe0\x22\xe0\x22\xe0\x22\xe0\x22\xe0\x13\xe0\x12"
                   48181:             "\xe0\x22\xe0\x13\xe0\x12\xe0\x13\x70\xf1\x83\x60\xf1"
                   48182:             "\x93\x50\xa2\xe0\x13\xe0\x12\x40\xf2\xb3\x30\xf3\xc3"
                   48183:             "\x20\xd2\x20\xf4\xd3\x10\xe2\x10\xfe\xe3\xf2\xe3\xe2"
                   48184:             "\x10\xf4\xd3\x10\xd2\x20\xf3\xc3\x20\xf2\xb3\x30\xb2"
                   48185:             "\xe3\xe2\x50\xf1\x93\x50\xf1\x83\x60\x73\xe2\xe3\xe2"
                   48186:             "\xe2\xe3\xe2\xe2\xe2\xe2\xe2\xe0\x10" }  },
                   48187:       /* --- pixel bitmap for cmex250 char#20 \bigg[ --- */
                   48188:       {  20,14782,                      /* character number, location */
                   48189:           1, 9,  -81, 9,      /* topleft row,col, and botleft row,col */
                   48190:           {  9,   82, 2,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   48191:             "\xff\x01\x00\x09\x00\xff\x4d\x02\x07\xff\x01\x09" }  },
                   48192:       /* --- pixel bitmap for cmex250 char#21 \bigg] --- */
                   48193:       {  21,21054,                      /* character number, location */
                   48194:           1, 0,  -81, 0,      /* topleft row,col, and botleft row,col */
                   48195:           {  9,   82, 2,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   48196:             "\xff\x01\x00\x09\xff\x4d\x07\x02\x00\xff\x01\x09" }  },
                   48197:       /* --- pixel bitmap for cmex250 char#22 (noname) --- */
                   48198:       {  22,27331,                      /* character number, location */
                   48199:           1, 9,  -81, 9,      /* topleft row,col, and botleft row,col */
                   48200:           { 11,   82, 2, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   48201:             "\xff\x4f\x00\x02\x09\xff\x01\x0b" }  },
                   48202:       /* --- pixel bitmap for cmex250 char#23 (noname) --- */
                   48203:       {  23,31124,                      /* character number, location */
                   48204:           1, 0,  -81, 0,      /* topleft row,col, and botleft row,col */
                   48205:           { 11,   82, 2, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   48206:             "\xff\x4f\x09\x02\x00\xff\x01\x0b" }  },
                   48207:       /* --- pixel bitmap for cmex250 char#24 (noname) --- */
                   48208:       {  24,34949,                      /* character number, location */
                   48209:           1, 9,  -81, 9,      /* topleft row,col, and botleft row,col */
                   48210:           { 11,   82, 2, 9, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   48211:             "\xff\x01\x00\x0b\x00\xff\x4f\x02\x09" }  },
                   48212:       /* --- pixel bitmap for cmex250 char#25 (noname) --- */
                   48213:       {  25,38750,                      /* character number, location */
                   48214:           1, 0,  -81, 0,      /* topleft row,col, and botleft row,col */
                   48215:           { 11,   82, 2, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   48216:             "\xff\x01\x00\x0b\xff\x4f\x09\x02" }  },
                   48217:       /* --- pixel bitmap for cmex250 char#26 \bigg{ --- */
                   48218:       {  26,42914,                      /* character number, location */
                   48219:           1, 4,  -81, 4,      /* topleft row,col, and botleft row,col */
                   48220:           { 18,   82, 3,122, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   48221:             "\xe0\x13\xe4\xc4\xd4\xd4\xe3\x50\xf1\x93\x60\xfe\x83"
                   48222:             "\x70\xf9\x83\x70\xf1\x73\x80\xf1\x63\x90\x53\xd4\xd3"
                   48223:             "\xdf\x14\xe0\x23\xe0\x24\xe0\x23\xa0\xf1\x63\x90\xf1"
                   48224:             "\x73\x80\xfe\x83\x70\xf9\x83\x70\xf1\x93\x60\xa3\xe0"
                   48225:             "\x14\xe0\x14\xe0\x14\xe0\x24\xe0\x13" }  },
                   48226:       /* --- pixel bitmap for cmex250 char#27 \bigg} --- */
                   48227:       {  27,50983,                      /* character number, location */
                   48228:           1, 4,  -81, 4,      /* topleft row,col, and botleft row,col */
                   48229:           { 18,   82, 3,119, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   48230:             "\x03\xe0\x15\xe0\x14\xe0\x23\xe0\x23\xe0\x23\x90\xf1"
                   48231:             "\x73\x80\xfe\x83\x70\xfa\x83\x70\xf1\x93\x60\xa3\xe0"
                   48232:             "\x23\xe0\x23\xe0\x24\x10\xf1\xe0\x13\xd4\xd3\xe3\xe3"
                   48233:             "\x50\xf1\x93\x60\xfe\x83\x70\xfa\x83\x70\xf1\x73\x80"
                   48234:             "\x63\xe3\xe3\xd4\xc5\xd3\xe0\x13" }  },
                   48235:       /* --- pixel bitmap for cmex250 char#28 \bigg< --- */
                   48236:       {  28,59655,                      /* character number, location */
                   48237:           1, 4,  -81, 4,      /* topleft row,col, and botleft row,col */
                   48238:           { 19,   82, 3,302, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   48239:             "\xf1\xe0\x32\xe0\x23\xe0\x22\xe0\x23\xe0\x22\xe0\x23"
                   48240:             "\x20\xf1\xe2\x30\xd3\xe0\x22\xe0\x23\xe0\x22\xe0\x23"
                   48241:             "\x50\xf1\xb2\x60\xa3\xe0\x22\xe0\x23\xe0\x22\xe0\x23"
                   48242:             "\x80\xf1\x82\x90\x73\xe0\x22\xe0\x23\xa0\xf1\x62\xb0"
                   48243:             "\x53\xe0\x22\xe0\x23\xe0\x22\xe0\x23\xd0\xf1\x32\xe0"
                   48244:             "\x23\xe0\x22\xe0\x23\xe0\x22\xe0\x23\xe0\x2f\x12\xe0"
                   48245:             "\x33\xe0\x32\xe0\x33\xe0\x32\xe0\x33\xe0\xf1\x32\xe0"
                   48246:             "\x33\xe0\x32\xe0\x33\xe0\x32\xe0\x33\xb0\xf1\x62\xb0"
                   48247:             "\x63\xe0\x32\xe0\x33\x90\xf1\x82\x90\x83\xe0\x32\xe0"
                   48248:             "\x33\xe0\x32\xe0\x33\x60\xf1\xb2\x60\xb3\xe0\x32\xe0"
                   48249:             "\x33\xe0\x32\xe0\x33\x30\xf1\xe2\x30\xe3\xe0\x32\xe0"
                   48250:             "\x33\xe0\x32\xe0\x33\xf1\xe0\x32" }  },
                   48251:       /* --- pixel bitmap for cmex250 char#29 \bigg> --- */
                   48252:       {  29,62752,                      /* character number, location */
                   48253:           1, 3,  -81, 3,      /* topleft row,col, and botleft row,col */
                   48254:           { 19,   82, 3,303, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   48255:             "\xf1\x02\xe0\x33\xe0\x32\xe0\x33\xe0\x32\xe0\x33\xe0"
                   48256:             "\xf1\x32\xe0\x33\xe0\x32\xe0\x33\xe0\x32\xe0\x33\xb0"
                   48257:             "\xf1\x62\xb0\x63\xe0\x32\xe0\x33\xe0\x32\xe0\x33\x80"
                   48258:             "\xf1\x92\x80\x93\xe0\x32\xe0\x33\x60\xf1\xb2\x60\xb3"
                   48259:             "\xe0\x32\xe0\x33\xe0\x32\xe0\x33\x30\xf1\xe2\x30\xe3"
                   48260:             "\xe0\x32\xe0\x33\xe0\x32\xe0\x33\xf1\xe0\x32\xe0\x23"
                   48261:             "\xe0\x22\xe0\x23\xe0\x22\xe0\x23\x20\xf1\xe2\x30\xd3"
                   48262:             "\xe0\x22\xe0\x23\xe0\x22\xe0\x23\x50\xf1\xb2\x60\xa3"
                   48263:             "\xe0\x22\xe0\x23\x70\xf1\x92\x80\x83\xe0\x22\xe0\x23"
                   48264:             "\xe0\x22\xe0\x23\xa0\xf1\x62\xb0\x53\xe0\x22\xe0\x23"
                   48265:             "\xe0\x22\xe0\x23\xd0\xf1\x32\xe0\x23\xe0\x22\xe0\x23"
                   48266:             "\xe0\x22\xe0\x23\xe0\x2f\x12\xe0\x30" }  },
                   48267:       /* --- pixel bitmap for cmex250 char#30 (noname) --- */
                   48268:       {  30,65953,                      /* character number, location */
                   48269:           1, 2,  -81, 2,      /* topleft row,col, and botleft row,col */
                   48270:           { 32,   82, 3,375, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   48271:             "\xe0\xe0\x22\xf1\xe0\xe0\x13\xe0\xe0\x12\x10\xf1\xe0"
                   48272:             "\xe3\x10\xe0\xe2\x20\xf1\xe0\xd3\x20\xf1\xe0\xc3\x30"
                   48273:             "\xe0\xc2\x40\xf1\xe0\xb3\x40\xe0\xb2\x50\xf1\xe0\xa3"
                   48274:             "\x50\xf1\xe0\x93\x60\xe0\x92\x70\xf1\xe0\x83\x70\xe0"
                   48275:             "\x82\x80\xf1\xe0\x73\x80\xf1\xe0\x63\x90\xe0\x62\xa0"
                   48276:             "\xf1\xe0\x53\xa0\xe0\x52\xb0\xf1\xe0\x43\xb0\xf1\xe0"
                   48277:             "\x33\xc0\xe0\x32\xd0\xf1\xe0\x23\xd0\xe0\x22\xe0\xf1"
                   48278:             "\xe0\x13\xe0\xf1\xe3\xe0\x10\xe2\xe0\x20\xf1\xd3\xe0"
                   48279:             "\x20\xd2\xe0\x30\xf1\xc3\xe0\x30\xf1\xb3\xe0\x40\xb2"
                   48280:             "\xe0\x50\xf1\xa3\xe0\x50\xa2\xe0\x60\xf1\x93\xe0\x60"
                   48281:             "\xf1\x83\xe0\x70\x82\xe0\x80\xf1\x73\xe0\x80\x72\xe0"
                   48282:             "\x90\xf1\x63\xe0\x90\xf1\x53\xe0\xa0\x52\xe0\xb0\xf1"
                   48283:             "\x43\xe0\xb0\x42\xe0\xc0\xf1\x33\xe0\xc0\xf1\x23\xe0"
                   48284:             "\xd0\x22\xe0\xe0\xf1\x13\xe0\xe0\x12\xe0\xe0\x1f\x13"
                   48285:             "\xe0\xe0\x12\xe0\xe0\x20" }  },
                   48286:       /* --- pixel bitmap for cmex250 char#31 (noname) --- */
                   48287:       {  31,69331,                      /* character number, location */
                   48288:           1, 2,  -81, 2,      /* topleft row,col, and botleft row,col */
                   48289:           { 32,   82, 3,378, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   48290:             "\x02\xe0\xe0\x2f\x13\xe0\xe0\x10\x12\xe0\xe0\x10\xf1"
                   48291:             "\x13\xe0\xe0\x22\xe0\xe0\xf1\x23\xe0\xd0\xf1\x33\xe0"
                   48292:             "\xc0\x42\xe0\xc0\xf1\x43\xe0\xb0\x52\xe0\xb0\xf1\x53"
                   48293:             "\xe0\xa0\xf1\x63\xe0\x90\x72\xe0\x90\xf1\x73\xe0\x80"
                   48294:             "\x82\xe0\x80\xf1\x83\xe0\x70\xf1\x93\xe0\x60\xa2\xe0"
                   48295:             "\x60\xf1\xa3\xe0\x50\xb2\xe0\x50\xf1\xb3\xe0\x40\xf1"
                   48296:             "\xc3\xe0\x30\xd2\xe0\x30\xf1\xd3\xe0\x20\xe2\xe0\x20"
                   48297:             "\xf1\xe3\xe0\x10\xf1\xe0\x13\xe0\xe0\x22\xe0\xf1\xe0"
                   48298:             "\x23\xd0\xe0\x32\xd0\xf1\xe0\x33\xc0\xf1\xe0\x43\xb0"
                   48299:             "\xe0\x52\xb0\xf1\xe0\x53\xa0\xe0\x62\xa0\xf1\xe0\x63"
                   48300:             "\x90\xf1\xe0\x73\x80\xe0\x82\x80\xf1\xe0\x83\x70\xe0"
                   48301:             "\x92\x70\xf1\xe0\x93\x60\xf1\xe0\xa3\x50\xe0\xb2\x50"
                   48302:             "\xf1\xe0\xb3\x40\xe0\xc2\x40\xf1\xe0\xc3\x30\xf1\xe0"
                   48303:             "\xd3\x20\xe0\xe2\x20\xf1\xe0\xe3\x10\xe0\xe0\x12\x10"
                   48304:             "\xf1\xe0\xe0\x13\xe0\xe0\x22" }  },
                   48305:       /* --- pixel bitmap for cmex250 char#32 \Bigg( --- */
                   48306:       {  32, 3292,                      /* character number, location */
                   48307:           1, 8,  -101, 8,     /* topleft row,col, and botleft row,col */
                   48308:           { 18,  102, 3,240, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   48309:             "\xe0\x22\xe0\x12\xe0\x12\xe0\x13\xe0\x12\xe0\x12\xe0"
                   48310:             "\x12\xe0\x13\xe0\x12\xe0\x13\xe0\x12\xe0\x13\xe0\x12"
                   48311:             "\xe0\x13\xe0\x12\xe0\x13\xe0\x12\xa0\xf1\x53\xa0\x52"
                   48312:             "\xb0\xf1\x43\xb0\x42\xc0\xf2\x33\xc0\x32\xd0\xf3\x23"
                   48313:             "\xd0\x22\xe0\xf6\x13\xef\xe3\xe0\x1f\x83\xe0\x10\xf6"
                   48314:             "\x13\xe0\x22\xe0\xf3\x23\xd0\x32\xd0\xf2\x33\xc0\x42"
                   48315:             "\xc0\xf1\x43\xb0\x52\xb0\xf1\x53\xa0\x62\xe0\x23\xe0"
                   48316:             "\x22\xe0\x23\xe0\x22\xe0\x23\xe0\x22\xe0\x23\xe0\x22"
                   48317:             "\xe0\x23\xe0\x22\xe0\x32\xe0\x32\xe0\x23\xe0\x22\xe0"
                   48318:             "\x32\xe0\x32" }  },
                   48319:       /* --- pixel bitmap for cmex250 char#33 \Bigg) --- */
                   48320:       {  33, 9432,                      /* character number, location */
                   48321:           1, 1,  -101, 1,     /* topleft row,col, and botleft row,col */
                   48322:           { 18,  102, 3,241, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   48323:             "\x02\xe0\x32\xe0\x32\xe0\x23\xe0\x22\xe0\x32\xe0\x32"
                   48324:             "\xe0\x23\xe0\x22\xe0\x23\xe0\x22\xe0\x23\xe0\x22\xe0"
                   48325:             "\x23\xe0\x22\xe0\x23\xe0\x22\x60\xf1\xa3\x50\xb2\x50"
                   48326:             "\xf1\xb3\x40\xc2\x40\xf2\xc3\x30\xd2\x30\xf3\xd3\x20"
                   48327:             "\xe2\x20\xf6\xe3\x10\xfe\xe0\x13\xf8\xe0\x13\xf6\xe3"
                   48328:             "\x10\xe2\x20\xf3\xd3\x20\xd2\x30\xf2\xc3\x30\xc2\x40"
                   48329:             "\xf1\xb3\x40\xb2\x50\xf1\xa3\x50\xa2\xe0\x13\xe0\x12"
                   48330:             "\xe0\x13\xe0\x12\xe0\x13\xe0\x12\xe0\x13\xe0\x12\xe0"
                   48331:             "\x13\xe0\x12\xe0\x12\xe0\x12\xe0\x13\xe0\x12\xe0\x12"
                   48332:             "\xe0\x12\xe0\x20" }  },
                   48333:       /* --- pixel bitmap for cmex250 char#34 \Bigg[ --- */
                   48334:       {  34,15769,                      /* character number, location */
                   48335:           1,10,  -101,10,     /* topleft row,col, and botleft row,col */
                   48336:           { 10,  102, 2,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   48337:             "\xff\x01\x00\x0a\x00\xff\x61\x02\x08\xff\x01\x0a" }  },
                   48338:       /* --- pixel bitmap for cmex250 char#35 \Bigg] --- */
                   48339:       {  35,22028,                      /* character number, location */
                   48340:           1, 0,  -101, 0,     /* topleft row,col, and botleft row,col */
                   48341:           { 10,  102, 2,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   48342:             "\xff\x01\x00\x0a\xff\x61\x08\x02\x00\xff\x01\x0a" }  },
                   48343:       /* --- pixel bitmap for cmex250 char#36 (noname) --- */
                   48344:       {  36,28350,                      /* character number, location */
                   48345:           1,10,  -101,10,     /* topleft row,col, and botleft row,col */
                   48346:           { 12,  102, 2, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   48347:             "\xff\x63\x00\x02\x0a\xff\x01\x0c" }  },
                   48348:       /* --- pixel bitmap for cmex250 char#37 (noname) --- */
                   48349:       {  37,32130,                      /* character number, location */
                   48350:           1, 0,  -101, 0,     /* topleft row,col, and botleft row,col */
                   48351:           { 12,  102, 2, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   48352:             "\xff\x63\x0a\x02\x00\xff\x01\x0c" }  },
                   48353:       /* --- pixel bitmap for cmex250 char#38 (noname) --- */
                   48354:       {  38,35970,                      /* character number, location */
                   48355:           1,10,  -101,10,     /* topleft row,col, and botleft row,col */
                   48356:           { 12,  102, 2, 9, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   48357:             "\xff\x01\x00\x0c\x00\xff\x63\x02\x0a" }  },
                   48358:       /* --- pixel bitmap for cmex250 char#39 (noname) --- */
                   48359:       {  39,39758,                      /* character number, location */
                   48360:           1, 0,  -101, 0,     /* topleft row,col, and botleft row,col */
                   48361:           { 12,  102, 2, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   48362:             "\xff\x01\x00\x0c\xff\x63\x0a\x02" }  },
                   48363:       /* --- pixel bitmap for cmex250 char#40 \Bigg{ --- */
                   48364:       {  40,44056,                      /* character number, location */
                   48365:           1, 5,  -101, 5,     /* topleft row,col, and botleft row,col */
                   48366:           { 18,  102, 3,154, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   48367:             "\xe0\x13\xe4\xd4\xc4\xd4\xe3\xe3\x60\xf2\x83\x70\xfe"
                   48368:             "\x73\x80\xfe\x73\x80\xf1\x73\x80\xf1\x63\x90\x62\xe0"
                   48369:             "\x13\xe3\xe0\x12\xe0\x12\xe3\xef\x13\xe0\x10\x13\xe0"
                   48370:             "\x32\xe0\x32\xe0\x23\xe0\x23\xe0\x22\xa0\xf1\x63\x90"
                   48371:             "\xfe\x73\x80\xfe\x73\x80\xf1\x73\x80\xf2\x83\x70\x93"
                   48372:             "\xe0\x23\xe0\x14\xe0\x14\xe0\x24\xe0\x14\xe0\x13" }  },
                   48373:       /* --- pixel bitmap for cmex250 char#41 \Bigg} --- */
                   48374:       {  41,52126,                      /* character number, location */
                   48375:           1, 5,  -101, 5,     /* topleft row,col, and botleft row,col */
                   48376:           { 18,  102, 3,149, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   48377:             "\x02\xe0\x24\xe0\x14\xe0\x23\xe0\x23\xb0\xf1\x53\xa0"
                   48378:             "\xf1\x63\x90\xfe\x73\x80\xfe\x73\x80\xf2\x73\x80\xf1"
                   48379:             "\x83\x70\xf1\x93\x60\xa3\xe0\x23\xe0\x23\xe0\x24\x10"
                   48380:             "\xf1\xe0\x13\xd4\xd3\xe3\xe3\x50\xf1\x93\x60\xf1\x83"
                   48381:             "\x70\xfe\x73\x80\xfe\x73\x80\xf2\x73\x80\xf1\x63\x90"
                   48382:             "\xf1\x53\xa0\x43\xe3\xd4\xd4\xe2\xe0\x24" }  },
                   48383:       /* --- pixel bitmap for cmex250 char#42 \Bigg< --- */
                   48384:       {  42,60515,                      /* character number, location */
                   48385:           1, 5,  -101, 5,     /* topleft row,col, and botleft row,col */
                   48386:           { 19,  102, 3,366, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   48387:             "\xf1\xe0\x32\xe0\x23\xf1\xe0\x22\x10\xe0\x13\x10\xf1"
                   48388:             "\xe0\x12\x20\xe3\x20\xf1\xe2\x30\xd3\x30\xf1\xd2\x40"
                   48389:             "\xc3\x40\xf1\xc2\x50\xb3\x50\xf1\xb2\x60\xa3\x60\xf1"
                   48390:             "\xa2\x70\x93\xe0\x22\xe0\x23\x80\xf1\x82\x90\x73\x90"
                   48391:             "\xf1\x72\xa0\x63\xa0\xf1\x62\xb0\x53\xb0\xf1\x52\xc0"
                   48392:             "\x43\xc0\xf1\x42\xd0\x33\xd0\xf1\x32\xe0\x23\xe0\xf1"
                   48393:             "\x22\xe0\x10\x13\xe0\x10\xf1\x12\xe0\x23\xe0\x2f\x12"
                   48394:             "\xe0\x33\xe0\x20\xf1\x12\xe0\x20\x13\xe0\x10\xf1\x22"
                   48395:             "\xe0\x10\x23\xe0\xf1\x32\xe0\x33\xd0\xf1\x42\xd0\x43"
                   48396:             "\xc0\xf1\x52\xc0\x53\xb0\xf1\x62\xb0\x63\xa0\xf1\x72"
                   48397:             "\xa0\x73\x90\xf1\x82\x90\x83\xe0\x32\xe0\x33\x70\xf1"
                   48398:             "\xa2\x70\xa3\x60\xf1\xb2\x60\xb3\x50\xf1\xc2\x50\xc3"
                   48399:             "\x40\xf1\xd2\x40\xd3\x30\xf1\xe2\x30\xe3\x20\xf1\xe0"
                   48400:             "\x12\x20\xe0\x13\x10\xf1\xe0\x22\x10\xe0\x23\xf1\xe0"
                   48401:             "\x32" }  },
                   48402:       /* --- pixel bitmap for cmex250 char#43 \Bigg> --- */
                   48403:       {  43,63613,                      /* character number, location */
                   48404:           1, 4,  -101, 4,     /* topleft row,col, and botleft row,col */
                   48405:           { 19,  102, 3,367, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   48406:             "\xf1\x02\xe0\x33\xe0\x20\xf1\x12\xe0\x20\x13\xe0\x10"
                   48407:             "\xf1\x22\xe0\x10\x23\xe0\xf1\x32\xe0\x33\xd0\xf1\x42"
                   48408:             "\xd0\x43\xc0\xf1\x52\xc0\x53\xb0\xf1\x62\xb0\x63\xa0"
                   48409:             "\xf1\x72\xa0\x73\xe0\x32\xe0\x33\x80\xf1\x92\x80\x93"
                   48410:             "\x70\xf1\xa2\x70\xa3\x60\xf1\xb2\x60\xb3\x50\xf1\xc2"
                   48411:             "\x50\xc3\x40\xf1\xd2\x40\xd3\x30\xf1\xe2\x30\xe3\x20"
                   48412:             "\xf1\xe0\x12\x20\xe0\x13\x10\xf1\xe0\x22\x10\xe0\x23"
                   48413:             "\xf1\xe0\x32\xe0\x23\xf1\xe0\x22\x10\xe0\x13\x10\xf1"
                   48414:             "\xe0\x12\x20\xe3\x20\xf1\xe2\x30\xd3\x30\xf1\xd2\x40"
                   48415:             "\xc3\x40\xf1\xc2\x50\xb3\x50\xf1\xb2\x60\xa3\x60\xf1"
                   48416:             "\xa2\x70\x93\x70\xf1\x92\x80\x83\xe0\x22\xe0\x23\x90"
                   48417:             "\xf1\x72\xa0\x63\xa0\xf1\x62\xb0\x53\xb0\xf1\x52\xc0"
                   48418:             "\x43\xc0\xf1\x42\xd0\x33\xd0\xf1\x32\xe0\x23\xe0\xf1"
                   48419:             "\x22\xe0\x10\x13\xe0\x10\xf1\x12\xe0\x23\xe0\x2f\x12"
                   48420:             "\xe0\x30" }  },
                   48421:       /* --- pixel bitmap for cmex250 char#44 / --- */
                   48422:       {  44,66979,                      /* character number, location */
                   48423:           1, 2,  -101, 2,     /* topleft row,col, and botleft row,col */
                   48424:           { 40,  102, 3,351, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   48425:             "\xf2\xe0\xe0\x93\xf2\xe0\xe0\x83\x10\xf1\xe0\xe0\x73"
                   48426:             "\x20\xf2\xe0\xe0\x63\x30\xf2\xe0\xe0\x53\x40\xf1\xe0"
                   48427:             "\xe0\x43\x50\xf2\xe0\xe0\x33\x60\xf2\xe0\xe0\x23\x70"
                   48428:             "\xf1\xe0\xe0\x13\x80\xf2\xe0\xe3\x90\xf2\xe0\xd3\xa0"
                   48429:             "\xf1\xe0\xc3\xb0\xf2\xe0\xb3\xc0\xf2\xe0\xa3\xd0\xf1"
                   48430:             "\xe0\x93\xe0\xf2\xe0\x83\xe0\x10\xf2\xe0\x73\xe0\x20"
                   48431:             "\xf1\xe0\x63\xe0\x30\xf2\xe0\x53\xe0\x40\xf2\xe0\x43"
                   48432:             "\xe0\x50\xf1\xe0\x33\xe0\x60\xf2\xe0\x23\xe0\x70\xf2"
                   48433:             "\xe0\x13\xe0\x80\xf1\xe3\xe0\x90\xf2\xd3\xe0\xa0\xf2"
                   48434:             "\xc3\xe0\xb0\xf1\xb3\xe0\xc0\xf2\xa3\xe0\xd0\xf2\x93"
                   48435:             "\xe0\xe0\xf1\x83\xe0\xe0\x10\xf2\x73\xe0\xe0\x20\xf2"
                   48436:             "\x63\xe0\xe0\x30\xf1\x53\xe0\xe0\x40\xf2\x43\xe0\xe0"
                   48437:             "\x50\xf2\x33\xe0\xe0\x60\xf1\x23\xe0\xe0\x70\xf2\x13"
                   48438:             "\xe0\xe0\x8f\x23\xe0\xe0\x90" }  },
                   48439:       /* --- pixel bitmap for cmex250 char#45 \ --- */
                   48440:       {  45,70361,                      /* character number, location */
                   48441:           1, 2,  -101, 2,     /* topleft row,col, and botleft row,col */
                   48442:           { 40,  102, 3,354, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   48443:             "\xf2\x03\xe0\xe0\x90\xf2\x13\xe0\xe0\x80\xf1\x23\xe0"
                   48444:             "\xe0\x70\xf2\x33\xe0\xe0\x60\xf2\x43\xe0\xe0\x50\xf1"
                   48445:             "\x53\xe0\xe0\x40\xf2\x63\xe0\xe0\x30\xf2\x73\xe0\xe0"
                   48446:             "\x20\xf1\x83\xe0\xe0\x10\xf2\x93\xe0\xe0\xf2\xa3\xe0"
                   48447:             "\xd0\xf1\xb3\xe0\xc0\xf2\xc3\xe0\xb0\xf2\xd3\xe0\xa0"
                   48448:             "\xf1\xe3\xe0\x90\xf2\xe0\x13\xe0\x80\xf2\xe0\x23\xe0"
                   48449:             "\x70\xf1\xe0\x33\xe0\x60\xf2\xe0\x43\xe0\x50\xf2\xe0"
                   48450:             "\x53\xe0\x40\xf1\xe0\x63\xe0\x30\xf2\xe0\x73\xe0\x20"
                   48451:             "\xf2\xe0\x83\xe0\x10\xf1\xe0\x93\xe0\xf2\xe0\xa3\xd0"
                   48452:             "\xf2\xe0\xb3\xc0\xf1\xe0\xc3\xb0\xf2\xe0\xd3\xa0\xf2"
                   48453:             "\xe0\xe3\x90\xf1\xe0\xe0\x13\x80\xf2\xe0\xe0\x23\x70"
                   48454:             "\xf2\xe0\xe0\x33\x60\xf1\xe0\xe0\x43\x50\xf2\xe0\xe0"
                   48455:             "\x53\x40\xf2\xe0\xe0\x63\x30\xf1\xe0\xe0\x73\x20\xf2"
                   48456:             "\xe0\xe0\x83\x10\xf2\xe0\xe0\x93" }  },
                   48457:       /* --- pixel bitmap for cmex250 char#46 / --- */
                   48458:       {  46,65073,                      /* character number, location */
                   48459:           1, 2,  -60, 2,      /* topleft row,col, and botleft row,col */
                   48460:           { 24,   61, 3,247, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   48461:             "\xf1\xe0\x82\xe0\x73\xf1\xe0\x72\x10\xe0\x63\xe0\x72"
                   48462:             "\xe0\x73\x20\xf1\xe0\x52\x30\xe0\x43\x30\xf1\xe0\x42"
                   48463:             "\x40\xe0\x33\xe0\x72\xe0\x73\x50\xf1\xe0\x22\x60\xe0"
                   48464:             "\x13\x60\xf1\xe0\x12\x70\xe3\xe0\x72\xe0\x73\x80\xf1"
                   48465:             "\xd2\x90\xc3\x90\xf1\xc2\xa0\xb3\xe0\x72\xe0\x73\xb0"
                   48466:             "\xf1\xa2\xc0\x93\xc0\xf1\x92\xd0\x83\xe0\x72\xe0\x73"
                   48467:             "\xe0\xf1\x72\xe0\x10\x63\xe0\x10\xf1\x62\xe0\x20\x53"
                   48468:             "\xe0\x72\xe0\x73\xe0\x30\xf1\x42\xe0\x40\x33\xe0\x40"
                   48469:             "\xf1\x32\xe0\x50\x23\xe0\x72\xe0\x73\xe0\x60\xf1\x12"
                   48470:             "\xe0\x73\xe0\x7f\x12\xe0\x80" }  },
                   48471:       /* --- pixel bitmap for cmex250 char#47 \ --- */
                   48472:       {  47,68447,                      /* character number, location */
                   48473:           1, 2,  -60, 2,      /* topleft row,col, and botleft row,col */
                   48474:           { 24,   61, 3,250, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   48475:             "\xf1\x02\xe0\x83\xe0\x70\xf1\x12\xe0\x70\x13\xe0\x82"
                   48476:             "\xe0\x83\xe0\x50\xf1\x32\xe0\x50\x33\xe0\x40\xf1\x42"
                   48477:             "\xe0\x40\x43\xe0\x82\xe0\x83\xe0\x20\xf1\x62\xe0\x20"
                   48478:             "\x63\xe0\x10\xf1\x72\xe0\x10\x73\xe0\x82\xe0\x83\xd0"
                   48479:             "\xf1\x92\xd0\x93\xc0\xf1\xa2\xc0\xa3\xe0\x82\xe0\x83"
                   48480:             "\xa0\xf1\xc2\xa0\xc3\x90\xf1\xd2\x90\xd3\xe0\x82\xe0"
                   48481:             "\x83\x70\xf1\xe0\x12\x70\xe0\x13\x60\xf1\xe0\x22\x60"
                   48482:             "\xe0\x23\xe0\x82\xe0\x83\x40\xf1\xe0\x42\x40\xe0\x43"
                   48483:             "\x30\xf1\xe0\x52\x30\xe0\x53\xe0\x82\xe0\x83\x10\xf1"
                   48484:             "\xe0\x72\x10\xe0\x73\xf1\xe0\x82" }  },
                   48485:       /* --- pixel bitmap for cmex250 char#48 \leftparentop --- */
                   48486:       {  48, 4302,                      /* character number, location */
                   48487:           0,10,  -62,10,      /* topleft row,col, and botleft row,col */
                   48488:           { 19,   62, 3,141, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   48489:             "\xe0\x32\xe0\x22\xe0\x23\xe0\x22\xe0\x22\xe0\x23\xe0"
                   48490:             "\x22\xe0\x22\xe0\x23\xe0\x22\xe0\x23\xe0\x22\x70\xf1"
                   48491:             "\x93\x70\xf1\x83\x80\xf1\x73\x90\x64\x90\xf1\x63\xa0"
                   48492:             "\x54\xa0\xf1\x53\xb0\xf1\x44\xb0\xf1\x43\xc0\xf1\x34"
                   48493:             "\xc0\xf1\x33\xd0\xf3\x24\xd0\xf1\x23\xe0\xf7\x14\xe0"
                   48494:             "\x13\xe0\x1f\xe4\xe0\x13" }  },
                   48495:       /* --- pixel bitmap for cmex250 char#49 \rightparentop --- */
                   48496:       {  49,10403,                      /* character number, location */
                   48497:           0, 1,  -62, 1,      /* topleft row,col, and botleft row,col */
                   48498:           { 19,   62, 3,140, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   48499:             "\x02\xe0\x42\xe0\x33\xe0\x32\xe0\x42\xe0\x33\xe0\x32"
                   48500:             "\xe0\x42\xe0\x33\xe0\x32\xe0\x33\xe0\x32\xa0\xf1\x73"
                   48501:             "\x90\xf1\x83\x80\xf1\x93\x70\x94\x60\xf1\xa3\x60\xa4"
                   48502:             "\x50\xf1\xb3\x50\xf1\xb4\x40\xf1\xc3\x40\xf1\xc4\x30"
                   48503:             "\xf1\xd3\x30\xf3\xd4\x20\xf1\xe3\x20\xf7\xe4\x10\xe0"
                   48504:             "\x13\x10\xfe\xe0\x14" }  },
                   48505:       /* --- pixel bitmap for cmex250 char#50 (noname) --- */
                   48506:       {  50,16765,                      /* character number, location */
                   48507:           0,12,  -61,12,      /* topleft row,col, and botleft row,col */
                   48508:           { 11,   61, 2, 9, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   48509:             "\xff\x01\x00\x0b\x00\xff\x3a\x02\x09" }  },
                   48510:       /* --- pixel bitmap for cmex250 char#51 (noname) --- */
                   48511:       {  51,22985,                      /* character number, location */
                   48512:           0, 0,  -61, 0,      /* topleft row,col, and botleft row,col */
                   48513:           { 11,   61, 2, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   48514:             "\xff\x01\x00\x0b\xff\x3a\x09\x02" }  },
                   48515:       /* --- pixel bitmap for cmex250 char#52 (noname) --- */
                   48516:       {  52,17701,                      /* character number, location */
                   48517:           1,12,  -60,12,      /* topleft row,col, and botleft row,col */
                   48518:           { 11,   61, 2, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   48519:             "\xff\x3a\x00\x02\x09\xff\x01\x0b" }  },
                   48520:       /* --- pixel bitmap for cmex250 char#53 (noname) --- */
                   48521:       {  53,23882,                      /* character number, location */
                   48522:           1, 0,  -60, 0,      /* topleft row,col, and botleft row,col */
                   48523:           { 11,   61, 2, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   48524:             "\xff\x3a\x09\x02\x00\xff\x01\x0b" }  },
                   48525:       /* --- pixel bitmap for cmex250 char#54 (noname) --- */
                   48526:       {  54,18534,                      /* character number, location */
                   48527:           1,12,  -22,12,      /* topleft row,col, and botleft row,col */
                   48528:           {  2,   23, 3, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   48529:             "\xfe\x02\x0f\x72" }  },
                   48530:       /* --- pixel bitmap for cmex250 char#55 (noname) --- */
                   48531:       {  55,24676,                      /* character number, location */
                   48532:           1, 9,  -22, 9,      /* topleft row,col, and botleft row,col */
                   48533:           {  2,   23, 3, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   48534:             "\xfe\x02\x0f\x72" }  },
                   48535:       /* --- pixel bitmap for cmex250 char#56 \leftbracetop --- */
                   48536:       {  56,45113,                      /* character number, location */
                   48537:          -1,13,  -32,13,      /* topleft row,col, and botleft row,col */
                   48538:           { 12,   31, 3,33, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   48539:             "\xa2\x84\x74\x74\x74\x74\x74\x75\x74\x60\xf1\x15\x6f"
                   48540:             "\xe5\x7f\x45\x73" }  },
                   48541:       /* --- pixel bitmap for cmex250 char#57 \rightbracetop --- */
                   48542:       {  57,53184,                      /* character number, location */
                   48543:          -1, 6,  -32, 6,      /* topleft row,col, and botleft row,col */
                   48544:           { 12,   31, 3,34, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   48545:             "\x02\xa4\x94\x94\x94\x94\x94\x85\x84\x20\xf1\x65\x10"
                   48546:             "\xfe\x75\xf4\x75" }  },
                   48547:       /* --- pixel bitmap for cmex250 char#58 \leftbracebot --- */
                   48548:       {  58,46050,                      /* character number, location */
                   48549:           1,13,  -30,13,      /* topleft row,col, and botleft row,col */
                   48550:           { 12,   31, 3,34, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   48551:             "\xfe\x05\x7f\x45\x70\xf1\x15\x60\x24\x85\x84\x94\x94"
                   48552:             "\x94\x94\x94\xa2" }  },
                   48553:       /* --- pixel bitmap for cmex250 char#59 \rightbracebot --- */
                   48554:       {  59,54122,                      /* character number, location */
                   48555:           1, 6,  -30, 6,      /* topleft row,col, and botleft row,col */
                   48556:           { 12,   31, 3,33, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   48557:             "\xfe\x75\xf4\x75\xf1\x65\x10\x64\x75\x74\x74\x74\x74"
                   48558:             "\x74\x74\x82\xa5" }  },
                   48559:       /* --- pixel bitmap for cmex250 char#60 \leftbracemid --- */
                   48560:       {  60,47062,                      /* character number, location */
                   48561:           1, 6,  -63, 6,      /* topleft row,col, and botleft row,col */
                   48562:           { 12,   64, 3,84, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   48563:             "\xfe\x75\xf4\x75\x74\x10\xf1\x65\x10\x64\x75\x74\x30"
                   48564:             "\xf1\x44\x40\x34\x74\x74\x7f\x13\x90\x14\x94\x94\x50"
                   48565:             "\xf1\x44\x40\x54\x85\x84\x20\xf1\x65\x10\x74\x10\xfe"
                   48566:             "\x75\xf4\x75" }  },
                   48567:       /* --- pixel bitmap for cmex250 char#61 \rightbracemid --- */
                   48568:       {  61,55135,                      /* character number, location */
                   48569:           1,13,  -63,13,      /* topleft row,col, and botleft row,col */
                   48570:           { 12,   64, 3,85, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   48571:             "\xfe\x05\x7f\x45\x70\x14\x70\xf1\x15\x60\x24\x85\x84"
                   48572:             "\x50\xf1\x44\x40\x54\x94\x94\x10\xf1\x93\x74\x74\x74"
                   48573:             "\x30\xf1\x44\x40\x34\x75\x74\x60\xf1\x15\x60\x14\x7f"
                   48574:             "\xe5\x7f\x45\x74" }  },
                   48575:       /* --- pixel bitmap for cmex250 char#62 \leftbracebar --- */
                   48576:       {  62,48004,                      /* character number, location */
                   48577:           1,13,  -11,13,      /* topleft row,col, and botleft row,col */
                   48578:           {  5,   12, 3, 4, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   48579:             "\xfb\x05" }  },
                   48580:       /* --- pixel bitmap for cmex250 char#63 (noname) --- */
                   48581:       {  63,74327,                      /* character number, location */
                   48582:           1,11,  -22,11,      /* topleft row,col, and botleft row,col */
                   48583:           {  2,   23, 3, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   48584:             "\xfe\x02\x0f\x72" }  },
                   48585:       /* --- pixel bitmap for cmex250 char#64 \leftparenbot --- */
                   48586:       {  64, 5254,                      /* character number, location */
                   48587:           2,10,  -60,10,      /* topleft row,col, and botleft row,col */
                   48588:           { 19,   62, 3,140, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   48589:             "\xfe\x04\xe0\x10\x13\xe0\x10\xf7\x14\xe0\xf1\x23\xe0"
                   48590:             "\xf3\x24\xd0\xf1\x33\xd0\xf1\x34\xc0\xf1\x43\xc0\xf1"
                   48591:             "\x44\xb0\xf1\x53\xb0\x54\xa0\xf1\x63\xa0\x64\x90\xf1"
                   48592:             "\x73\x90\xf1\x83\x80\xf1\x93\x70\xa2\xe0\x33\xe0\x32"
                   48593:             "\xe0\x33\xe0\x32\xe0\x42\xe0\x33\xe0\x32\xe0\x42\xe0"
                   48594:             "\x33\xe0\x32\xe0\x42" }  },
                   48595:       /* --- pixel bitmap for cmex250 char#65 \rightparenbot --- */
                   48596:       {  65,11316,                      /* character number, location */
                   48597:           2, 1,  -60, 1,      /* topleft row,col, and botleft row,col */
                   48598:           { 19,   62, 3,141, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   48599:             "\xfe\xe0\x14\xe0\x13\x10\xf7\xe4\x10\xf1\xe3\x20\xf3"
                   48600:             "\xd4\x20\xf1\xd3\x30\xf1\xc4\x30\xf1\xc3\x40\xf1\xb4"
                   48601:             "\x40\xf1\xb3\x50\xa4\x50\xf1\xa3\x60\x94\x60\xf1\x93"
                   48602:             "\x70\xf1\x83\x80\xf1\x73\x90\x72\xe0\x23\xe0\x22\xe0"
                   48603:             "\x23\xe0\x22\xe0\x22\xe0\x23\xe0\x22\xe0\x22\xe0\x23"
                   48604:             "\xe0\x22\xe0\x22\xe0\x30" }  },
                   48605:       /* --- pixel bitmap for cmex250 char#66 \leftparenbar --- */
                   48606:       {  66, 6200,                      /* character number, location */
                   48607:           1,10,  -22,10,      /* topleft row,col, and botleft row,col */
                   48608:           {  4,   23, 3, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   48609:             "\xfe\x04\x0f\x74" }  },
                   48610:       /* --- pixel bitmap for cmex250 char#67 \rightparenbar --- */
                   48611:       {  67,12223,                      /* character number, location */
                   48612:           1,16,  -22,16,      /* topleft row,col, and botleft row,col */
                   48613:           {  4,   23, 3, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   48614:             "\xfe\x04\x0f\x74" }  },
                   48615:       /* --- pixel bitmap for cmex250 char#68 \Big< --- */
                   48616:       {  68,58861,                      /* character number, location */
                   48617:           1, 4,  -61, 4,      /* topleft row,col, and botleft row,col */
                   48618:           { 14,   62, 3,164, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   48619:             "\xf1\xc2\xb3\xb2\xb3\x10\xf1\xa2\x20\x93\xb2\xb3\x30"
                   48620:             "\xf1\x82\x40\x73\xb2\xb3\x50\xf1\x62\x60\x53\xb2\xb3"
                   48621:             "\x70\xf1\x42\x80\x33\xb2\xb3\x90\xf1\x22\xa0\x13\xb2"
                   48622:             "\xb3\xbf\x12\xc3\xc2\xc3\xa0\xf1\x22\xa0\x23\xc2\xc3"
                   48623:             "\x80\xf1\x42\x80\x43\xc2\xc3\x60\xf1\x62\x60\x63\xc2"
                   48624:             "\xc3\x40\xf1\x82\x40\x83\xc2\xc3\x20\xf1\xa2\x20\xa3"
                   48625:             "\xc2\xc3\xf1\xc2" }  },
                   48626:       /* --- pixel bitmap for cmex250 char#69 \Big> --- */
                   48627:       {  69,61957,                      /* character number, location */
                   48628:           1, 3,  -61, 3,      /* topleft row,col, and botleft row,col */
                   48629:           { 14,   62, 3,165, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   48630:             "\xf1\x02\xc3\xc2\xc3\xa0\xf1\x22\xa0\x23\xc2\xc3\x80"
                   48631:             "\xf1\x42\x80\x43\xc2\xc3\x60\xf1\x62\x60\x63\xc2\xc3"
                   48632:             "\x40\xf1\x82\x40\x83\xc2\xc3\x20\xf1\xa2\x20\xa3\xc2"
                   48633:             "\xc3\xf1\xc2\xb3\xb2\xb3\x10\xf1\xa2\x20\x93\xb2\xb3"
                   48634:             "\x30\xf1\x82\x40\x73\xb2\xb3\x50\xf1\x62\x60\x53\xb2"
                   48635:             "\xb3\x70\xf1\x42\x80\x33\xb2\xb3\x90\xf1\x22\xa0\x13"
                   48636:             "\xb2\xb3\xbf\x12\xc0" }  },
                   48637:       /* --- pixel bitmap for cmex250 char#70 \bigsqcup --- */
                   48638:       {  70,85590,                      /* character number, location */
                   48639:           0, 2,  -35, 2,      /* topleft row,col, and botleft row,col */
                   48640:           { 25,   35, 2,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   48641:             "\xff\x20\x00\x02\x15\x02\x00\xff\x01\x19" }  },
                   48642:       /* --- pixel bitmap for cmex250 char#71 \Bigsqcup --- */
                   48643:       {  71,86583,                      /* character number, location */
                   48644:           0, 2,  -48, 2,      /* topleft row,col, and botleft row,col */
                   48645:           { 34,   48, 2,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   48646:             "\xff\x2d\x00\x02\x1e\x02\x00\xff\x01\x22" }  },
                   48647:       /* --- pixel bitmap for cmex250 char#72 \oint --- */
                   48648:       {  72,106625,                     /* character number, location */
                   48649:           0, 2,  -38, 2,      /* topleft row,col, and botleft row,col */
                   48650:           { 19,   38, 3,123, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   48651:             "\xd4\xe2\x31\xd1\x42\xb2\x42\xb2\xe0\x31\x70\xf5\xa2"
                   48652:             "\x70\x84\xd8\xa3\x12\x13\x83\x22\x23\x72\x32\x32\x63"
                   48653:             "\x32\x33\x20\xf1\x32\x42\x42\x20\x33\x32\x33\x62\x32"
                   48654:             "\x32\x73\x22\x23\x83\x12\x13\xa8\xd4\x70\xf5\x82\x90"
                   48655:             "\xf1\x72\xa2\x52\xa2\x42\xc1\x41\xe4\xd0" }  },
                   48656:       /* --- pixel bitmap for cmex250 char#73 \Bigoint --- */
                   48657:       {  73,107739,                     /* character number, location */
                   48658:           0, 2,  -77, 2,      /* topleft row,col, and botleft row,col */
                   48659:           { 30,   77, 3,301, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   48660:             "\xe0\xb3\xe0\xc1\x31\xe0\xa2\x32\xe0\x82\x33\xe0\x82"
                   48661:             "\x41\x10\xf1\xe0\x72\x70\xe0\x63\x70\xf1\xe0\x62\x80"
                   48662:             "\xf2\xe0\x53\x80\xe0\x52\x90\xf3\xe0\x43\x90\xf3\xe0"
                   48663:             "\x33\xa0\xf1\xe0\x24\xa0\xf2\xe0\x23\xb0\xf1\xe0\x14"
                   48664:             "\xb0\xd6\xe0\x89\xe0\x54\x18\xe0\x23\x34\x23\xe3\x44"
                   48665:             "\x33\xd2\x54\x42\xc3\x54\x43\x50\xf4\x62\x54\x62\x50"
                   48666:             "\x63\x34\x63\xc2\x34\x62\xd3\x24\x53\xe3\x14\x43\xe0"
                   48667:             "\x27\x24\xe0\x59\xe0\x77\xc0\xf1\xb4\xe0\x10\xf2\xb3"
                   48668:             "\xe0\x20\xf1\xa4\xe0\x20\xf3\xa3\xe0\x30\xf3\x93\xe0"
                   48669:             "\x40\x92\xe0\x50\xf2\x83\xe0\x50\xf1\x82\xe0\x60\x73"
                   48670:             "\xe0\x60\xf1\x72\xe0\x70\x11\x42\xe0\x83\x32\xe0\x82"
                   48671:             "\x32\xe0\xa1\x31\xe0\xc3\xe0\xb6" }  },
                   48672:       /* --- pixel bitmap for cmex250 char#74 \bigodot --- */
                   48673:       {  74,87683,                      /* character number, location */
                   48674:           0, 2,  -35, 2,      /* topleft row,col, and botleft row,col */
                   48675:           { 34,   35, 3,181, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   48676:             "\xd8\xe0\x9e\xe0\x45\x85\xe0\x13\xe3\xd3\xe0\x23\xb3"
                   48677:             "\xe0\x43\x93\xe0\x63\x73\xe0\x83\x53\xe0\xa3\x42\xe0"
                   48678:             "\xc2\x33\xe0\xc3\x10\xf1\x12\xe0\xe2\x13\xe0\xe5\xe0"
                   48679:             "\xe0\x24\xe2\xe2\x0f\x22\xd4\xd2\x02\xe2\xe4\xe0\xe0"
                   48680:             "\x25\xe0\xe3\xf1\x12\xe0\xe2\x10\x13\xe0\xc3\x32\xe0"
                   48681:             "\xc2\x43\xe0\xa3\x53\xe0\x83\x73\xe0\x63\x93\xe0\x43"
                   48682:             "\xb3\xe0\x23\xd3\xe3\xe0\x15\x85\xe0\x4e\xe0\x98\xd2" }  },
                   48683:       /* --- pixel bitmap for cmex250 char#75 \Bigodot --- */
                   48684:       {  75,88922,                      /* character number, location */
                   48685:           0, 2,  -48, 2,      /* topleft row,col, and botleft row,col */
                   48686:           { 48,   48, 3,345, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   48687:             "\xe0\x5a\xe0\xe0\x7e\x02\xe0\xe0\x25\xa5\xe0\xc4\xe0"
                   48688:             "\x24\xe0\x84\xe0\x64\xe0\x53\xe0\xa3\xe0\x33\xe0\xc3"
                   48689:             "\xe4\xe0\xe4\xc2\xe0\xe0\x42\xb3\xe0\xe0\x43\x93\xe0"
                   48690:             "\xe0\x63\x73\xe0\xe0\x83\x62\xe0\xe0\xa2\x53\xe0\xe0"
                   48691:             "\xa3\x42\xe0\xe0\xc2\x33\xe0\xe0\xc3\x10\xf2\x12\xe0"
                   48692:             "\xe0\xe2\x13\xe0\xe0\xe5\xe0\xe0\xe0\x24\xe0\x72\xe0"
                   48693:             "\x74\xe0\x64\xe0\x62\x0f\x12\xe0\x56\xe0\x52\x02\xe0"
                   48694:             "\x64\xe0\x64\xe0\x72\xe0\x74\xe0\xe0\xe0\x25\xe0\xe0"
                   48695:             "\xe3\xf2\x12\xe0\xe0\xe2\x10\x13\xe0\xe0\xc3\x32\xe0"
                   48696:             "\xe0\xc2\x43\xe0\xe0\xa3\x52\xe0\xe0\xa2\x63\xe0\xe0"
                   48697:             "\x83\x73\xe0\xe0\x63\x93\xe0\xe0\x43\xb2\xe0\xe0\x42"
                   48698:             "\xc4\xe0\xe4\xe3\xe0\xc3\xe0\x33\xe0\xa3\xe0\x54\xe0"
                   48699:             "\x64\xe0\x84\xe0\x24\xe0\xc5\xa5\xe0\xe0\x2e\x02\xe0"
                   48700:             "\xe0\x7a\xe0\x50" }  },
                   48701:       /* --- pixel bitmap for cmex250 char#76 \bigoplus --- */
                   48702:       {  76,90031,                      /* character number, location */
                   48703:           0, 2,  -35, 2,      /* topleft row,col, and botleft row,col */
                   48704:           { 34,   35, 3,185, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   48705:             "\xd8\xe0\x9e\xe0\x45\x32\x35\xe0\x13\x62\x63\xd3\x72"
                   48706:             "\x73\xb3\x82\x83\x93\x92\x93\x73\xa2\xa3\x53\xb2\xb3"
                   48707:             "\x42\xc2\xc2\x33\xc2\xc3\x10\xf1\x12\xd2\xd2\x13\xd2"
                   48708:             "\xd3\x0f\x12\xe2\xe2\x0f\x1e\x0e\x06\x0f\x22\xe2\xe2"
                   48709:             "\x03\xd2\xd3\xf1\x12\xd2\xd2\x10\x13\xc2\xc3\x32\xc2"
                   48710:             "\xc2\x43\xb2\xb3\x53\xa2\xa3\x73\x92\x93\x93\x82\x83"
                   48711:             "\xb3\x72\x73\xd3\x62\x63\xe0\x15\x32\x35\xe0\x4e\xe0"
                   48712:             "\x98\xd0" }  },
                   48713:       /* --- pixel bitmap for cmex250 char#77 \Bigoplus --- */
                   48714:       {  77,91315,                      /* character number, location */
                   48715:           0, 2,  -48, 2,      /* topleft row,col, and botleft row,col */
                   48716:           { 48,   48, 3,363, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   48717:             "\xe0\x5a\xe0\xe0\x7e\x02\xe0\xe0\x25\x42\x45\xe0\xc4"
                   48718:             "\x72\x74\xe0\x84\x92\x94\xe0\x53\xb2\xb3\xe0\x33\xc2"
                   48719:             "\xc3\xe4\xd2\xd4\xc2\xe0\x12\xe0\x12\xb3\xe0\x12\xe0"
                   48720:             "\x13\x93\xe0\x22\xe0\x23\x73\xe0\x32\xe0\x33\x62\xe0"
                   48721:             "\x42\xe0\x42\x53\xe0\x42\xe0\x43\x42\xe0\x52\xe0\x52"
                   48722:             "\x33\xe0\x52\xe0\x53\x10\xf2\x12\xe0\x62\xe0\x62\x13"
                   48723:             "\xe0\x62\xe0\x63\x0f\x22\xe0\x72\xe0\x72\x0f\x1e\x0e"
                   48724:             "\x0e\x06\x0f\x22\xe0\x72\xe0\x72\x03\xe0\x62\xe0\x63"
                   48725:             "\xf2\x12\xe0\x62\xe0\x62\x10\x13\xe0\x52\xe0\x53\x32"
                   48726:             "\xe0\x52\xe0\x52\x43\xe0\x42\xe0\x43\x52\xe0\x42\xe0"
                   48727:             "\x42\x63\xe0\x32\xe0\x33\x73\xe0\x22\xe0\x23\x93\xe0"
                   48728:             "\x12\xe0\x13\xb2\xe0\x12\xe0\x12\xc4\xd2\xd4\xe3\xc2"
                   48729:             "\xc3\xe0\x33\xb2\xb3\xe0\x54\x92\x94\xe0\x84\x72\x74"
                   48730:             "\xe0\xc5\x42\x45\xe0\xe0\x2e\x02\xe0\xe0\x7a\xe0\x50" }  },
                   48731:       /* --- pixel bitmap for cmex250 char#78 \bigotimes --- */
                   48732:       {  78,92493,                      /* character number, location */
                   48733:           0, 2,  -35, 2,      /* topleft row,col, and botleft row,col */
                   48734:           { 34,   35, 3,211, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   48735:             "\xd8\xe0\x9e\xe0\x45\x85\xe0\x13\xe3\xd3\xe0\x23\xb3"
                   48736:             "\xe0\x43\x94\xe0\x44\x76\xe0\x26\x53\x23\xe3\x23\x42"
                   48737:             "\x43\xc3\x42\x33\x53\xa3\x53\x22\x73\x83\x72\x22\x83"
                   48738:             "\x63\x82\x13\x93\x43\x95\xb3\x23\xb4\xc6\xc4\xd4\xd4"
                   48739:             "\xe2\xe4\xd4\xd4\xc6\xc4\xb3\x23\xb5\x93\x43\x93\x12"
                   48740:             "\x83\x63\x82\x22\x73\x83\x72\x23\x53\xa3\x53\x32\x43"
                   48741:             "\xc3\x42\x43\x23\xe3\x23\x56\xe0\x26\x74\xe0\x44\x93"
                   48742:             "\xe0\x43\xb3\xe0\x23\xd3\xe3\xe0\x15\x85\xe0\x4e\xe0"
                   48743:             "\x98\xd2" }  },
                   48744:       /* --- pixel bitmap for cmex250 char#79 \Bigotimes --- */
                   48745:       {  79,93790,                      /* character number, location */
                   48746:           0, 2,  -48, 2,      /* topleft row,col, and botleft row,col */
                   48747:           { 48,   48, 3,397, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   48748:             "\xe0\x5a\xe0\xe0\x7e\x02\xe0\xe0\x25\xa5\xe0\xc4\xe0"
                   48749:             "\x24\xe0\x84\xe0\x64\xe0\x53\xe0\xa3\xe0\x33\xe0\xc3"
                   48750:             "\x80\xf1\x64\xe0\xe4\x60\x56\xe0\xc6\x93\x23\xe0\xa3"
                   48751:             "\x23\x73\x43\xe0\x83\x43\x62\x63\xe0\x63\x62\x53\x73"
                   48752:             "\xe0\x43\x73\x42\x93\xe0\x23\x92\x33\xa3\xe3\xa3\x22"
                   48753:             "\xc3\xc3\xc2\x22\xd3\xa3\xd2\x22\xe3\x83\xe2\x13\xe0"
                   48754:             "\x13\x63\xe0\x15\xe0\x33\x43\xe0\x34\xe0\x43\x23\xe0"
                   48755:             "\x44\xe0\x56\xe0\x52\x0f\x12\xe0\x64\xe0\x62\x02\xe0"
                   48756:             "\x56\xe0\x54\xe0\x43\x23\xe0\x44\xe0\x33\x43\xe0\x35"
                   48757:             "\xe0\x13\x63\xe0\x13\x12\xe3\x83\xe2\x22\xd3\xa3\xd2"
                   48758:             "\x22\xc3\xc3\xc2\x23\xa3\xe3\xa3\x32\x93\xe0\x23\x92"
                   48759:             "\x43\x73\xe0\x43\x73\x52\x63\xe0\x63\x62\x63\x43\xe0"
                   48760:             "\x83\x43\x73\x23\xe0\xa3\x23\x96\xe0\xc6\x50\xf1\x64"
                   48761:             "\xe0\xe4\x60\x83\xe0\xc3\xe0\x33\xe0\xa3\xe0\x54\xe0"
                   48762:             "\x64\xe0\x84\xe0\x24\xe0\xc5\xa5\xe0\xe0\x2e\x02\xe0"
                   48763:             "\xe0\x7a\xe0\x50" }  },
                   48764:       /* --- pixel bitmap for cmex250 char#80 \sum --- */
                   48765:       {  80,95326,                      /* character number, location */
                   48766:           0, 2,  -35, 2,      /* topleft row,col, and botleft row,col */
                   48767:           { 33,   35, 3,205, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   48768:             "\xf1\x0e\x0e\x02\x30\x12\xe0\x77\x42\xe0\x94\x43\xe0"
                   48769:             "\xa2\x52\xe0\xb2\x52\xe0\xb1\x62\xe0\xa1\x63\xe0\xa1"
                   48770:             "\x62\xe0\xe0\x42\xe0\xe0\x42\xe0\xe0\x33\xe0\xe0\x32"
                   48771:             "\xe0\xe0\x42\xe0\xe0\x42\xe0\xe0\x33\xe0\xe0\x32\xe0"
                   48772:             "\xe0\x23\xe0\xe0\x22\xe0\xe0\x22\xe0\x70\xf1\x92\xe0"
                   48773:             "\x80\x82\xe0\xe0\x22\xe0\xe0\x23\xe0\xe0\x22\xe0\xa1"
                   48774:             "\x52\xe0\xa1\x52\xe0\xb1\x52\xe0\xa2\x42\xe0\xa2\x42"
                   48775:             "\xe0\x94\x33\xe0\x67\x3e\x0e\x01\x3e\x0e\x02\x32" }  },
                   48776:       /* --- pixel bitmap for cmex250 char#81 \prod --- */
                   48777:       {  81,98380,                      /* character number, location */
                   48778:           0, 2,  -35, 2,      /* topleft row,col, and botleft row,col */
                   48779:           { 29,   35, 3,46, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   48780:             "\xf1\x0e\x0e\x01\x34\xe0\x14\x30\xfe\x43\xe0\x13\x40"
                   48781:             "\xfd\x43\xe0\x13\x40\x35\xd5\x3f\x1b\x7b" }  },
                   48782:       /* --- pixel bitmap for cmex250 char#82 \int --- */
                   48783:       {  82,104458,                     /* character number, location */
                   48784:           0, 2,  -38, 2,      /* topleft row,col, and botleft row,col */
                   48785:           { 19,   38, 3,59, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   48786:             "\xd4\xe2\x31\xd1\x42\xb2\x42\xb2\xe0\x31\x70\xf7\xa2"
                   48787:             "\x70\xf9\x92\x80\xf7\x82\x90\xf1\x72\xa2\x52\xa2\x42"
                   48788:             "\xc1\x41\xe4\xd7" }  },
                   48789:       /* --- pixel bitmap for cmex250 char#83 \bigcup --- */
                   48790:       {  83,108697,                     /* character number, location */
                   48791:           0, 2,  -35, 2,      /* topleft row,col, and botleft row,col */
                   48792:           { 25,   35, 3,59, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   48793:             "\xfe\x02\xe0\x72\x0f\xa2\xe0\x72\x03\xe0\x53\x12\xe0"
                   48794:             "\x52\x23\xe0\x33\x33\xe0\x13\x53\xd3\x73\xb3\x94\x74"
                   48795:             "\xcb\xe0\x27\x90" }  },
                   48796:       /* --- pixel bitmap for cmex250 char#84 \bigcap --- */
                   48797:       {  84,110625,                     /* character number, location */
                   48798:           0, 2,  -35, 2,      /* topleft row,col, and botleft row,col */
                   48799:           { 25,   35, 3,58, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   48800:             "\x97\xe0\x2b\xc4\x74\x93\xb3\x73\xd3\x53\xe0\x13\x33"
                   48801:             "\xe0\x33\x22\xe0\x52\x13\xe0\x53\x0f\xe2\xe0\x72\x0f"
                   48802:             "\xa2\xe0\x72" }  },
                   48803:       /* --- pixel bitmap for cmex250 char#85 \biguplus --- */
                   48804:       {  85,112618,                     /* character number, location */
                   48805:           0, 2,  -35, 2,      /* topleft row,col, and botleft row,col */
                   48806:           { 25,   35, 3,91, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   48807:             "\xf7\x02\xe0\x72\x02\xa1\xa2\x0f\x62\xa2\x92\x02\x2e"
                   48808:             "\x03\x24\x3e\x01\x32\x0f\x62\xa2\x92\x02\xe0\x75\xe0"
                   48809:             "\x53\x12\xe0\x52\x23\xe0\x33\x33\xe0\x13\x53\xd3\x73"
                   48810:             "\xb3\x94\x74\xcb\xe0\x27\x92" }  },
                   48811:       /* --- pixel bitmap for cmex250 char#86 \bigwedge --- */
                   48812:       {  86,114664,                     /* character number, location */
                   48813:           0, 2,  -35, 2,      /* topleft row,col, and botleft row,col */
                   48814:           { 25,   35, 3,164, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   48815:             "\xc2\xb0\xf1\xb3\xb0\xa5\xa0\xf1\xa2\x12\xa0\x93\x13"
                   48816:             "\x90\xf1\x92\x32\x90\x83\x33\x80\xf1\x82\x52\x80\x73"
                   48817:             "\x53\x70\xf1\x72\x72\x70\x63\x73\x60\xf1\x62\x92\x60"
                   48818:             "\x53\x93\x50\xf1\x52\xb2\x50\x43\xb3\x82\xd2\x73\xd3"
                   48819:             "\x30\xf1\x32\xe0\x12\x30\x23\xe0\x13\x20\xf1\x22\xe0"
                   48820:             "\x32\x20\x13\xe0\x33\x10\xf1\x12\xe0\x52\x13\xe0\x53"
                   48821:             "\x0f\x12\xe0\x72" }  },
                   48822:       /* --- pixel bitmap for cmex250 char#87 \bigvee --- */
                   48823:       {  87,116526,                     /* character number, location */
                   48824:           0, 2,  -35, 2,      /* topleft row,col, and botleft row,col */
                   48825:           { 25,   35, 3,165, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   48826:             "\xf1\x02\xe0\x72\x03\xe0\x53\xf1\x12\xe0\x52\x10\x13"
                   48827:             "\xe0\x33\x10\xf1\x22\xe0\x32\x20\x23\xe0\x13\x20\xf1"
                   48828:             "\x32\xe0\x12\x30\x33\xd3\x72\xd2\x83\xb3\x40\xf1\x52"
                   48829:             "\xb2\x50\x53\x93\x50\xf1\x62\x92\x60\x63\x73\x60\xf1"
                   48830:             "\x72\x72\x70\x73\x53\x70\xf1\x82\x52\x80\x83\x33\x80"
                   48831:             "\xf1\x92\x32\x90\x93\x13\x90\xf1\xa2\x12\xa0\xa5\xa0"
                   48832:             "\xf1\xb3\xb0\xc2\xb0" }  },
                   48833:       /* --- pixel bitmap for cmex250 char#88 \Bigsum --- */
                   48834:       {  88,96857,                      /* character number, location */
                   48835:           0, 2,  -48, 2,      /* topleft row,col, and botleft row,col */
                   48836:           { 46,   48, 2,129, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   48837:             "\x00\x2a\x04\x2b\x04\x05\x1b\x0a\x04\x06\x1e\x06\x05"
                   48838:             "\x06\x20\x04\x05\x06\x20\x03\x06\x05\x22\x02\x05\x06"
                   48839:             "\x21\x02\x06\x06\x21\x01\x07\x06\x21\x01\x07\x05\x29"
                   48840:             "\x06\x29\x06\x29\x06\x29\x05\x29\x06\x29\x06\x29\x06"
                   48841:             "\x29\x05\x29\x06\x29\x06\x29\x06\x29\x05\x29\x06\x29"
                   48842:             "\x05\x2a\x03\x2b\x02\x2b\x03\x2a\x03\x2a\x03\x2a\x03"
                   48843:             "\x2a\x03\x2b\x02\x2b\x03\x2a\x03\x2a\x03\x2a\x03\x2a"
                   48844:             "\x03\x22\x01\x08\x02\x22\x01\x08\x03\x22\x01\x07\x03"
                   48845:             "\x22\x02\x06\x03\x21\x03\x06\x03\x21\x04\x05\x03\x20"
                   48846:             "\x06\x05\x02\x1c\x0a\x05\x29\x04\x2a\x03\x2a\x04" }  },
                   48847:       /* --- pixel bitmap for cmex250 char#89 \Bigprod --- */
                   48848:       {  89,100070,                     /* character number, location */
                   48849:           0, 2,  -48, 2,      /* topleft row,col, and botleft row,col */
                   48850:           { 40,   48, 3,72, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   48851:             "\xf1\x0e\x0e\x0c\x47\xe0\x47\x96\xe0\x46\x50\xfe\x65"
                   48852:             "\xe0\x45\x60\xfe\x65\xe0\x45\x60\xf9\x65\xe0\x45\x60"
                   48853:             "\x57\xe0\x27\x99\xe9\x4f\x1e\x03\x6e\x03" }  },
                   48854:       /* --- pixel bitmap for cmex250 char#90 \Bigint --- */
                   48855:       {  90,105524,                     /* character number, location */
                   48856:           0, 2,  -77, 2,      /* topleft row,col, and botleft row,col */
                   48857:           { 30,   77, 3,241, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   48858:             "\xe0\xb3\xe0\xc1\x31\xe0\xa2\x32\xe0\x82\x33\xe0\x82"
                   48859:             "\x41\x10\xf1\xe0\x72\x70\xe0\x63\x70\xf1\xe0\x62\x80"
                   48860:             "\xf2\xe0\x53\x80\xe0\x52\x90\xf3\xe0\x43\x90\xf3\xe0"
                   48861:             "\x33\xa0\xf1\xe0\x24\xa0\xf2\xe0\x23\xb0\xf2\xe0\x14"
                   48862:             "\xb0\xe0\x13\xc0\xf4\xe4\xc0\xf4\xd4\xd0\xf4\xc4\xe0"
                   48863:             "\xc3\xe0\x10\xf2\xb4\xe0\x10\xf2\xb3\xe0\x20\xf1\xa4"
                   48864:             "\xe0\x20\xf3\xa3\xe0\x30\xf3\x93\xe0\x40\x92\xe0\x50"
                   48865:             "\xf2\x83\xe0\x50\xf1\x82\xe0\x60\x73\xe0\x60\xf1\x72"
                   48866:             "\xe0\x70\x11\x42\xe0\x83\x32\xe0\x82\x32\xe0\xa1\x31"
                   48867:             "\xe0\xc3\xe0\xb3" }  },
                   48868:       /* --- pixel bitmap for cmex250 char#91 \Bigcup --- */
                   48869:       {  91,109698,                     /* character number, location */
                   48870:           0, 2,  -48, 2,      /* topleft row,col, and botleft row,col */
                   48871:           { 34,   48, 3,99, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   48872:             "\xfe\x02\xe0\xe0\x22\x0f\xe2\xe0\xe0\x22\x0f\x42\xe0"
                   48873:             "\xe0\x22\x03\xe0\xe3\xf1\x12\xe0\xe2\x10\x13\xe0\xc3"
                   48874:             "\x33\xe0\xa3\x52\xe0\xa2\x63\xe0\x83\x73\xe0\x63\x93"
                   48875:             "\xe0\x43\xb4\xe4\xe5\x85\xe0\x4e\xe0\x98\xd1" }  },
                   48876:       /* --- pixel bitmap for cmex250 char#92 \Bigcap --- */
                   48877:       {  92,111633,                     /* character number, location */
                   48878:           0, 2,  -48, 2,      /* topleft row,col, and botleft row,col */
                   48879:           { 34,   48, 3,98, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   48880:             "\xd8\xe0\x9e\xe0\x45\x85\xe4\xe4\xb3\xe0\x43\x93\xe0"
                   48881:             "\x63\x73\xe0\x83\x62\xe0\xa2\x53\xe0\xa3\x33\xe0\xc3"
                   48882:             "\x10\xf1\x12\xe0\xe2\x13\xe0\xe3\x0f\xe2\xe0\xe0\x22"
                   48883:             "\x0f\xe2\xe0\xe0\x22\x0f\x42\xe0\xe0\x22" }  },
                   48884:       /* --- pixel bitmap for cmex250 char#93 \Biguplus --- */
                   48885:       {  93,113718,                     /* character number, location */
                   48886:           0, 2,  -48, 2,      /* topleft row,col, and botleft row,col */
                   48887:           { 34,   48, 3,109, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   48888:             "\xf9\x02\xe0\xe0\x22\x0f\xb2\xe2\xe2\x02\x2e\x0c\x24"
                   48889:             "\x3e\x0a\x32\x0f\xa2\xe2\xe2\x03\xe0\xe3\xf1\x12\xe0"
                   48890:             "\xe2\x10\x13\xe0\xc3\x33\xe0\xa3\x52\xe0\xa2\x63\xe0"
                   48891:             "\x83\x73\xe0\x63\x93\xe0\x43\xb4\xe4\xe5\x85\xe0\x4e"
                   48892:             "\xe0\x98\xd0" }  },
                   48893:       /* --- pixel bitmap for cmex250 char#94 \Bigwedge --- */
                   48894:       {  94,115637,                     /* character number, location */
                   48895:           0, 2,  -48, 2,      /* topleft row,col, and botleft row,col */
                   48896:           { 34,   48, 3,246, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   48897:             "\xf1\xe0\x22\xe0\x20\xf2\xe0\x14\xe0\x10\xe6\xe0\xf1"
                   48898:             "\xe2\x22\xe0\xd3\x23\xd0\xf1\xd2\x42\xd0\xc3\x43\xe0"
                   48899:             "\xa2\x62\xe0\x93\x63\xb0\xf1\xb2\x82\xb0\xa3\x83\xa0"
                   48900:             "\xf1\xa2\xa2\xa0\x93\xa3\x90\xf1\x92\xc2\x90\x83\xc3"
                   48901:             "\x80\xf1\x82\xe2\x80\x73\xe3\x70\xf1\x72\xe0\x22\x70"
                   48902:             "\x63\xe0\x23\x60\xf1\x62\xe0\x42\x60\x53\xe0\x43\x50"
                   48903:             "\xf1\x52\xe0\x62\x50\x43\xe0\x63\x82\xe0\x82\x73\xe0"
                   48904:             "\x83\x30\xf1\x32\xe0\xa2\x30\x23\xe0\xa3\x20\xf1\x22"
                   48905:             "\xe0\xc2\x20\x13\xe0\xc3\x10\xf1\x12\xe0\xe2\x13\xe0"
                   48906:             "\xe3\x0f\x12\xe0\xe0\x22" }  },
                   48907:       /* --- pixel bitmap for cmex250 char#95 \Bigvee --- */
                   48908:       {  95,117500,                     /* character number, location */
                   48909:           0, 2,  -48, 2,      /* topleft row,col, and botleft row,col */
                   48910:           { 34,   48, 3,247, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   48911:             "\xf1\x02\xe0\xe0\x22\x03\xe0\xe3\xf1\x12\xe0\xe2\x10"
                   48912:             "\x13\xe0\xc3\x10\xf1\x22\xe0\xc2\x20\x23\xe0\xa3\x20"
                   48913:             "\xf1\x32\xe0\xa2\x30\x33\xe0\x83\x72\xe0\x82\x83\xe0"
                   48914:             "\x63\x40\xf1\x52\xe0\x62\x50\x53\xe0\x43\x50\xf1\x62"
                   48915:             "\xe0\x42\x60\x63\xe0\x23\x60\xf1\x72\xe0\x22\x70\x73"
                   48916:             "\xe3\x70\xf1\x82\xe2\x80\x83\xc3\x80\xf1\x92\xc2\x90"
                   48917:             "\x93\xa3\x90\xf1\xa2\xa2\xa0\xa3\x83\xa0\xf1\xb2\x82"
                   48918:             "\xb0\xb3\x63\xe0\x92\x62\xe0\xa3\x43\xc0\xf1\xd2\x42"
                   48919:             "\xd0\xd3\x23\xd0\xf1\xe2\x22\xe0\xe6\xe0\xf2\xe0\x14"
                   48920:             "\xe0\x10\xf1\xe0\x22\xe0\x20" }  },
                   48921:       /* --- pixel bitmap for cmex250 char#96 \coprod --- */
                   48922:       {  96,101655,                     /* character number, location */
                   48923:           0, 2,  -35, 2,      /* topleft row,col, and botleft row,col */
                   48924:           { 29,   35, 3,46, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   48925:             "\xf1\x0b\x7b\x35\xd5\x30\xfe\x43\xe0\x13\x40\xfd\x43"
                   48926:             "\xe0\x13\x40\x34\xe0\x14\x3f\x1e\x0e\x01" }  },
                   48927:       /* --- pixel bitmap for cmex250 char#97 \Bigcoprod --- */
                   48928:       {  97,103347,                     /* character number, location */
                   48929:           0, 2,  -48, 2,      /* topleft row,col, and botleft row,col */
                   48930:           { 40,   48, 3,72, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   48931:             "\xf1\x0e\x03\x6e\x03\x49\xe9\x97\xe0\x27\x50\xfe\x65"
                   48932:             "\xe0\x45\x60\xfe\x65\xe0\x45\x60\xf9\x65\xe0\x45\x60"
                   48933:             "\x56\xe0\x46\x97\xe0\x47\x4f\x1e\x0e\x0c" }  },
                   48934:       /* --- pixel bitmap for cmex250 char#98 ^ --- */
                   48935:       {  98,118351,                     /* character number, location */
                   48936:          26, 0,   20, 0,      /* topleft row,col, and botleft row,col */
                   48937:           { 19,    6, 3,24, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   48938:             "\x91\xe0\x25\xc3\x33\x83\x73\x43\xb3\x12\xe0\x12" }  },
                   48939:       /* --- pixel bitmap for cmex250 char#99 ^ --- */
                   48940:       {  99,119232,                     /* character number, location */
                   48941:          27, 0,   20, 0,      /* topleft row,col, and botleft row,col */
                   48942:           { 35,    7, 3,42, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   48943:             "\xe0\x23\xe0\xe0\x19\xe0\x95\x55\xe0\x34\xd4\xb4\xe0"
                   48944:             "\x54\x54\xe0\xb4\x11\xe0\xe0\x51" }  },
                   48945:       /* --- pixel bitmap for cmex250 char#100 ^ --- */
                   48946:       { 100,120326,                     /* character number, location */
                   48947:          27, 0,   20, 0,      /* topleft row,col, and botleft row,col */
                   48948:           { 50,    7, 2,24, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   48949:             "\x17\x04\x2a\x0c\x21\x07\x08\x07\x18\x06\x12\x06\x10"
                   48950:             "\x05\x1c\x05\x08\x05\x24\x05\x02\x02\x2e\x02" }  },
                   48951:       /* --- pixel bitmap for cmex250 char#101 ~ --- */
                   48952:       { 101,121049,                     /* character number, location */
                   48953:          25, 0,   21, 0,      /* topleft row,col, and botleft row,col */
                   48954:           { 19,    4, 3,17, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   48955:             "\x44\xa1\x28\x62\x22\x68\x21\xa4\x47" }  },
                   48956:       /* --- pixel bitmap for cmex250 char#102 ~ --- */
                   48957:       { 102,121973,                     /* character number, location */
                   48958:          26, 0,   21, 0,      /* topleft row,col, and botleft row,col */
                   48959:           { 35,    5, 3,27, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   48960:             "\x96\xe0\x51\x6b\xe3\x43\xa3\xa3\x43\xeb\x61\xe0\x56"
                   48961:             "\x90" }  },
                   48962:       /* --- pixel bitmap for cmex250 char#103 ~ --- */
                   48963:       { 103,123112,                     /* character number, location */
                   48964:          26, 0,   21, 0,      /* topleft row,col, and botleft row,col */
                   48965:           { 50,    5, 3,35, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   48966:             "\xd9\xe0\xc2\x87\x46\xe0\x63\x74\xe4\xe4\x73\xe0\x66"
                   48967:             "\x47\x82\xe0\xc9\xd5" }  },
                   48968:       /* --- pixel bitmap for cmex250 char#104 \Big[ --- */
                   48969:       { 104,13863,                      /* character number, location */
                   48970:           1, 8,  -60, 8,      /* topleft row,col, and botleft row,col */
                   48971:           {  8,   61, 3,24, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   48972:             "\xf1\x08\x0f\xe2\x6f\xe2\x6f\xe2\x6f\xb2\x6f\x18" }  },
                   48973:       /* --- pixel bitmap for cmex250 char#105 \Big] --- */
                   48974:       { 105,20148,                      /* character number, location */
                   48975:           1, 0,  -60, 0,      /* topleft row,col, and botleft row,col */
                   48976:           {  8,   61, 3,24, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   48977:             "\xf1\x08\xfe\x62\xfe\x62\xfe\x62\xfb\x62\x0f\x18" }  },
                   48978:       /* --- pixel bitmap for cmex250 char#106 (noname) --- */
                   48979:       { 106,26380,                      /* character number, location */
                   48980:           1, 8,  -60, 8,      /* topleft row,col, and botleft row,col */
                   48981:           { 10,   61, 2, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   48982:             "\xff\x3a\x00\x02\x08\xff\x01\x0a" }  },
                   48983:       /* --- pixel bitmap for cmex250 char#107 (noname) --- */
                   48984:       { 107,30186,                      /* character number, location */
                   48985:           1, 0,  -60, 0,      /* topleft row,col, and botleft row,col */
                   48986:           { 10,   61, 2, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   48987:             "\xff\x3a\x08\x02\x00\xff\x01\x0a" }  },
                   48988:       /* --- pixel bitmap for cmex250 char#108 (noname) --- */
                   48989:       { 108,33996,                      /* character number, location */
                   48990:           1, 8,  -60, 8,      /* topleft row,col, and botleft row,col */
                   48991:           { 10,   61, 2, 9, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   48992:             "\xff\x01\x00\x0a\x00\xff\x3a\x02\x08" }  },
                   48993:       /* --- pixel bitmap for cmex250 char#109 (noname) --- */
                   48994:       { 109,37810,                      /* character number, location */
                   48995:           1, 0,  -60, 0,      /* topleft row,col, and botleft row,col */
                   48996:           { 10,   61, 2, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   48997:             "\xff\x01\x00\x0a\xff\x3a\x08\x02" }  },
                   48998:       /* --- pixel bitmap for cmex250 char#110 \Big{ --- */
                   48999:       { 110,41840,                      /* character number, location */
                   49000:           1, 4,  -60, 4,      /* topleft row,col, and botleft row,col */
                   49001:           { 15,   61, 3,82, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   49002:             "\xc3\xa5\x94\xa3\x40\xf1\x72\x60\xfe\x62\x70\xf3\x62"
                   49003:             "\x70\xf1\x52\x80\x42\xb3\xb3\xb3\xd3\xd3\xe2\x90\xf1"
                   49004:             "\x52\x80\xfe\x62\x70\xf3\x62\x70\xf1\x72\x60\x83\xd4"
                   49005:             "\xc5\xc3" }  },
                   49006:       /* --- pixel bitmap for cmex250 char#111 \Big} --- */
                   49007:       { 111,49908,                      /* character number, location */
                   49008:           1, 4,  -60, 4,      /* topleft row,col, and botleft row,col */
                   49009:           { 15,   61, 3,79, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   49010:             "\x03\xc4\xd3\xe2\xe2\xd3\x70\xfe\x62\x70\xf3\x62\x70"
                   49011:             "\xf1\x72\x60\x83\xd3\xe4\xc3\xb4\x93\xb3\x40\xf1\x72"
                   49012:             "\x60\xfe\x62\x70\xf3\x62\x70\x53\xc2\xc2\xb3\xa4\xb3"
                   49013:             "\xc5" }  },
                   49014:       /* --- pixel bitmap for cmex250 char#112 (noname) --- */
                   49015:       { 112,78472,                      /* character number, location */
                   49016:           2, 4,  -40, 4,      /* topleft row,col, and botleft row,col */
                   49017:           { 33,   42, 2,121, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   49018:             "\x1f\x02\x1e\x03\x1e\x02\x1e\x03\x1e\x02\x1e\x03\x1e"
                   49019:             "\x02\x1e\x03\x1e\x02\x1e\x03\x1e\x02\x1e\x03\x1e\x02"
                   49020:             "\x1e\x03\x1e\x02\x1e\x03\x1e\x02\x1e\x03\x1e\x02\x1e"
                   49021:             "\x03\x1e\x02\x0d\x01\x10\x03\x0c\x03\x0f\x02\x0b\x02"
                   49022:             "\x01\x02\x0e\x03\x0f\x01\x0e\x02\x10\x02\x0c\x03\x10"
                   49023:             "\x02\x0c\x02\x12\x02\x0a\x03\x12\x02\x0a\x02\x14\x02"
                   49024:             "\x08\x03\x14\x02\x08\x02\x16\x02\x06\x03\x16\x02\x06"
                   49025:             "\x02\x17\x02\x05\x03\x18\x02\x04\x02\x19\x02\x03\x03"
                   49026:             "\x1a\x02\x02\x02\x1b\x02\x01\x03\x1b\x05\x1d\x04\x1d"
                   49027:             "\x03\x1f\x02\x14" }  },
                   49028:       /* --- pixel bitmap for cmex250 char#113 (noname) --- */
                   49029:       { 113,79501,                      /* character number, location */
                   49030:           2, 4,  -61, 4,      /* topleft row,col, and botleft row,col */
                   49031:           { 33,   63, 3,321, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   49032:             "\xf1\xe0\xe0\x32\xe0\xe0\x23\xf1\xe0\xe0\x22\x10\xe0"
                   49033:             "\xe0\x13\x10\xf1\xe0\xe0\x12\x20\xe0\xe3\x20\xf1\xe0"
                   49034:             "\xe2\x30\xe0\xd3\x30\xf1\xe0\xd2\x40\xe0\xc3\x40\xf1"
                   49035:             "\xe0\xc2\x50\xe0\xb3\x50\xf1\xe0\xb2\x60\xe0\xa3\x60"
                   49036:             "\xf1\xe0\xa2\x70\xe0\x93\x70\xf1\xe0\x92\x80\xe0\x83"
                   49037:             "\x80\xf1\xe0\x82\x90\xe0\x73\x90\xf1\xe0\x72\xa0\x31"
                   49038:             "\xe0\x32\xc3\xe0\x13\xb4\xe0\x12\xb2\x12\xe0\x12\xe2"
                   49039:             "\xe3\xb0\xf1\x42\xd2\xc0\x42\xc3\xc0\xf1\x52\xb2\xd0"
                   49040:             "\x52\xa3\xe0\x42\xa2\xe0\x62\x92\xe0\x62\x83\xe0\x62"
                   49041:             "\x82\xe0\x82\x72\xe0\x82\x63\xe0\x10\xf1\x72\x62\xe0"
                   49042:             "\x20\x82\x43\xe0\x20\xf1\x82\x42\xe0\x30\x92\x23\xe0"
                   49043:             "\x30\xf1\x92\x22\xe0\x40\x92\x13\xe0\x40\xf2\xa4\xe0"
                   49044:             "\x50\xf1\xb2\xe0\x60" }  },
                   49045:       /* --- pixel bitmap for cmex250 char#114 (noname) --- */
                   49046:       { 114,80591,                      /* character number, location */
                   49047:           2, 4,  -82, 4,      /* topleft row,col, and botleft row,col */
                   49048:           { 33,   84, 3,347, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   49049:             "\xf2\xe0\xe0\x32\xe0\xe0\x23\xf2\xe0\xe0\x22\x10\xe0"
                   49050:             "\xe0\x13\x10\xf2\xe0\xe0\x12\x20\xe0\xe3\x20\xf2\xe0"
                   49051:             "\xe2\x30\xe0\xd3\x30\xf2\xe0\xd2\x40\xe0\xc3\x40\xf2"
                   49052:             "\xe0\xc2\x50\xe0\xb3\x50\xf2\xe0\xb2\x60\xe0\xa3\x60"
                   49053:             "\xf2\xe0\xa2\x70\xe0\x93\x70\xf2\xe0\x92\x80\xe0\x83"
                   49054:             "\x80\xf2\xe0\x82\x90\xe0\x73\x90\xf2\xe0\x72\xa0\x31"
                   49055:             "\xe0\x32\xc3\xe0\x13\xc3\xe0\x12\xc1\x12\xe0\x12\xb1"
                   49056:             "\x22\xe0\x12\xe2\xe3\xb0\xf2\x42\xd2\xc0\x42\xc3\xe0"
                   49057:             "\x22\xc2\xd0\xf1\x52\xb2\xd0\x52\xa3\xe0\x42\xa2\xe0"
                   49058:             "\xf1\x62\x92\xe0\x62\x83\xe0\xf1\x62\x82\xe0\x10\x72"
                   49059:             "\x72\xe0\x82\x63\xe0\x10\xf2\x72\x62\xe0\x20\x82\x43"
                   49060:             "\xe0\x20\xf2\x82\x42\xe0\x30\x92\x23\xe0\x30\xf2\x92"
                   49061:             "\x22\xe0\x40\x92\x13\xe0\x40\xf3\xa4\xe0\x50\xa3\xe0"
                   49062:             "\x60\xf1\xb2\xe0\x62" }  },
                   49063:       /* --- pixel bitmap for cmex250 char#115 (noname) --- */
                   49064:       { 115,81741,                      /* character number, location */
                   49065:           2, 4,  -102, 4,     /* topleft row,col, and botleft row,col */
                   49066:           { 33,  104, 3,363, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   49067:             "\xf2\xe0\xe0\x32\xe0\xe0\x23\xf3\xe0\xe0\x22\x10\xe0"
                   49068:             "\xe0\x13\x10\xf3\xe0\xe0\x12\x20\xe0\xe3\x20\xf3\xe0"
                   49069:             "\xe2\x30\xe0\xd3\x30\xf3\xe0\xd2\x40\xe0\xc3\x40\xf4"
                   49070:             "\xe0\xc2\x50\xe0\xb3\x50\xf3\xe0\xb2\x60\xe0\xa3\x60"
                   49071:             "\xf3\xe0\xa2\x70\xe0\x93\x70\xf3\xe0\x92\x80\xe0\x83"
                   49072:             "\x80\xf3\xe0\x82\x90\xe0\x73\x90\xf2\xe0\x72\xa0\x31"
                   49073:             "\xe0\x32\xd1\xe0\x23\xa0\xf1\x23\xe0\x12\xb0\x11\x12"
                   49074:             "\xe0\x12\xb2\x12\xe0\x12\xb1\x22\xe3\xe2\xe2\xc0\xf2"
                   49075:             "\x42\xd2\xc0\x42\xc3\xe0\x22\xc2\xd0\xf2\x52\xb2\xd0"
                   49076:             "\x52\xa3\xd0\xf1\x52\xa2\xe0\xf1\x62\x92\xe0\x62\x83"
                   49077:             "\xe0\xf2\x62\x82\xe0\x10\xf1\x72\x72\xe0\x10\x72\x63"
                   49078:             "\xe0\x10\xf2\x72\x62\xe0\x20\x82\x52\xe0\xa2\x43\xe0"
                   49079:             "\x20\xf3\x82\x42\xe0\x30\x92\x23\xe0\x30\xf3\x92\x22"
                   49080:             "\xe0\x40\xa5\xe0\x40\xf4\xa4\xe0\x50\xf2\xb2\xe0\x60" }  },
                   49081:       /* --- pixel bitmap for cmex250 char#116 (noname) --- */
                   49082:       { 116,82989,                      /* character number, location */
                   49083:           1, 4,  -62, 4,      /* topleft row,col, and botleft row,col */
                   49084:           { 22,   63, 3,145, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   49085:             "\xf7\xe0\x62\x31\xe0\x22\x32\xe0\x12\xf1\x23\xe0\x12"
                   49086:             "\xf1\x11\x22\xe2\x01\x32\xe2\xf2\x52\xd2\xf2\x62\xc2"
                   49087:             "\xf2\x72\xb2\xf2\x82\xa2\xf2\x92\x92\xf2\xa2\x82\xf3"
                   49088:             "\xb2\x72\xf2\xc2\x62\xf2\xd2\x52\xf2\xe2\x42\xf2\xe0"
                   49089:             "\x12\x32\xf2\xe0\x22\x22\xf2\xe0\x32\x12\xf2\xe0\x44"
                   49090:             "\xf2\xe0\x53\xe0\x62\xe0\x61\x10" }  },
                   49091:       /* --- pixel bitmap for cmex250 char#117 (noname) --- */
                   49092:       { 117,84004,                      /* character number, location */
                   49093:           1,24,  -22,24,      /* topleft row,col, and botleft row,col */
                   49094:           {  2,   23, 3, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   49095:             "\xfe\x02\x0f\x72" }  },
                   49096:       /* --- pixel bitmap for cmex250 char#118 (noname) --- */
                   49097:       { 118,84841,                      /* character number, location */
                   49098:           2,24,  -20,24,      /* topleft row,col, and botleft row,col */
                   49099:           { 15,   22, 3,15, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   49100:             "\xf1\x0e\x01\x0f\xe2\xdf\x42\xd0" }  },
                   49101:       /* --- pixel bitmap for cmex250 char#119 (noname) --- */
                   49102:       { 119,77471,                      /* character number, location */
                   49103:           1,10,  -22,10,      /* topleft row,col, and botleft row,col */
                   49104:           {  8,   23, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   49105:             "\xfe\x02\x42\x0f\x72\x42" }  },
                   49106:       /* --- pixel bitmap for cmex250 char#120 (noname) --- */
                   49107:       { 120,72625,                      /* character number, location */
                   49108:          -1, 4,  -21, 4,      /* topleft row,col, and botleft row,col */
                   49109:           { 16,   20, 3,33, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   49110:             "\x72\xd4\xb6\x83\x12\x13\x53\x22\x23\x24\x32\x36\x52"
                   49111:             "\x52\xfc\x72\x73" }  },
                   49112:       /* --- pixel bitmap for cmex250 char#121 (noname) --- */
                   49113:       { 121,73580,                      /* character number, location */
                   49114:           0, 4,  -20, 4,      /* topleft row,col, and botleft row,col */
                   49115:           { 16,   20, 3,33, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   49116:             "\xfc\x72\x72\x52\x56\x32\x34\x23\x22\x23\x53\x12\x13"
                   49117:             "\x86\xb4\xd2\x73" }  },
                   49118:       /* --- pixel bitmap for cmex250 char#122 (noname) --- */
                   49119:       { 122,55830,                      /* character number, location */
                   49120:           5,-1,   -7,-1,      /* topleft row,col, and botleft row,col */
                   49121:           { 18,   12, 3,29, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   49122:             "\xd5\xa8\x8a\x6c\x5d\x48\x95\xc4\xd4\xe3\xe3\xe0\x12"
                   49123:             "\xe0\x21" }  },
                   49124:       /* --- pixel bitmap for cmex250 char#123 (noname) --- */
                   49125:       { 123,56422,                      /* character number, location */
                   49126:           5,-1,   -7,-1,      /* topleft row,col, and botleft row,col */
                   49127:           { 18,   12, 3,34, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   49128:             "\x05\xd8\xaa\x8c\x6d\xb8\xe5\xe0\x14\xe0\x14\xe0\x13"
                   49129:             "\xe0\x23\xe0\x22" }  },
                   49130:       /* --- pixel bitmap for cmex250 char#124 (noname) --- */
                   49131:       { 124,57011,                      /* character number, location */
                   49132:          12,-1,    0,-1,      /* topleft row,col, and botleft row,col */
                   49133:           { 18,   12, 3,34, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   49134:             "\x02\xe0\x23\xe0\x23\xe0\x14\xe0\x14\xe0\x15\xe8\xbd"
                   49135:             "\x6c\x8a\xa8\xd5" }  },
                   49136:       /* --- pixel bitmap for cmex250 char#125 (noname) --- */
                   49137:       { 125,57601,                      /* character number, location */
                   49138:          12,-1,    0,-1,      /* topleft row,col, and botleft row,col */
                   49139:           { 18,   12, 3,29, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   49140:             "\xe0\x22\xe0\x13\xe3\xe4\xd4\xc5\x98\x4d\x5c\x6a\x88"
                   49141:             "\xa5\xda" }  },
                   49142:       /* --- pixel bitmap for cmex250 char#126 (noname) --- */
                   49143:       { 126,75403,                      /* character number, location */
                   49144:          -1, 3,  -21, 3,      /* topleft row,col, and botleft row,col */
                   49145:           { 22,   20, 3,61, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   49146:             "\xf1\xa2\xa0\x94\xe0\x32\x22\xe0\x13\x23\xd3\x43\xb4"
                   49147:             "\x44\x95\x45\x64\x12\x42\x14\x24\x32\x42\x36\x52\x42"
                   49148:             "\x52\xf8\x72\x42\x72" }  },
                   49149:       /* --- pixel bitmap for cmex250 char#127 (noname) --- */
                   49150:       { 127,76541,                      /* character number, location */
                   49151:           0, 3,  -20, 3,      /* topleft row,col, and botleft row,col */
                   49152:           { 22,   20, 3,61, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   49153:             "\xf8\x72\x42\x72\x52\x42\x56\x32\x42\x34\x24\x12\x42"
                   49154:             "\x14\x65\x45\x94\x44\xb3\x43\xd3\x23\xe0\x12\x22\xe0"
                   49155:             "\x34\x90\xf1\xa2\xa2" }  },
1.1       albertel 49156:       /* --- trailer  --- */
1.2       albertel 49157:       { -99, -999,  0,0,0,0, { 0,0,0,0, (pixbyte *)"\0" }  }
1.1       albertel 49158:    } ;
                   49159: 
                   49160: 
1.5     ! raeburn  49161: /* --- size=8 for .325gf ---
        !          49162:  * mf '\mode=preview; mag=magstep(-11.40956951729850636869); input cmex10'
        !          49163:  * --------------------------------------------------------------------- */
        !          49164: /* --- fontdef for cmex325 --- */
        !          49165: static	chardef  cmex325[] =
        !          49166:    {
        !          49167:       /* --- pixel bitmap for cmex325 char#0 \big( --- */
        !          49168:       {   0,  661,                      /* character number, location */
        !          49169:           2, 7,  -51, 7,      /* topleft row,col, and botleft row,col */
        !          49170:           { 12,   53, 3,106, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          49171:             "\xb1\xa1\xa1\xa1\xa2\x92\x40\xf1\x52\x50\xf1\x42\x60"
        !          49172:             "\x33\x92\x70\xf1\x23\x70\x22\x80\xf3\x13\x80\x12\x9f"
        !          49173:             "\xc3\x90\x12\x90\xf3\x13\x80\x22\x80\xf1\x23\x70\x32"
        !          49174:             "\xa3\x60\xf1\x42\x60\xf1\x52\x50\x62\xb2\xb1\xc1\xc1"
        !          49175:             "\xc1" }  },
        !          49176:       /* --- pixel bitmap for cmex325 char#1 \big) --- */
        !          49177:       {   1, 6997,                      /* character number, location */
        !          49178:           2, 2,  -51, 2,      /* topleft row,col, and botleft row,col */
        !          49179:           { 12,   53, 3,107, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          49180:             "\x01\xc1\xc1\xc1\xb2\xb2\x60\xf1\x52\x50\xf1\x62\x40"
        !          49181:             "\x63\xa2\x30\xf1\x73\x20\x82\x20\xf3\x83\x10\x92\x10"
        !          49182:             "\xfc\x93\x92\x10\xf3\x83\x10\x82\x20\xf1\x73\x20\x72"
        !          49183:             "\x93\x30\xf1\x62\x40\xf1\x52\x50\x42\x92\xa1\xa1\xa1"
        !          49184:             "\xa1\xb0" }  },
        !          49185:       /* --- pixel bitmap for cmex325 char#2 \big[ --- */
        !          49186:       {   2,13423,                      /* character number, location */
        !          49187:           2, 9,  -51, 9,      /* topleft row,col, and botleft row,col */
        !          49188:           {  9,   53, 3,24, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          49189:             "\xf1\x09\x0f\xe2\x7f\xe2\x7f\xe2\x7f\x32\x7f\x19" }  },
        !          49190:       /* --- pixel bitmap for cmex325 char#3 \big] --- */
        !          49191:       {   3,19916,                      /* character number, location */
        !          49192:           2, 1,  -51, 1,      /* topleft row,col, and botleft row,col */
        !          49193:           {  9,   53, 3,24, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          49194:             "\xf1\x09\xfe\x72\xfe\x72\xfe\x72\xf3\x72\x0f\x19" }  },
        !          49195:       /* --- pixel bitmap for cmex325 char#4 (noname) --- */
        !          49196:       {   4,26298,                      /* character number, location */
        !          49197:           2, 9,  -51, 9,      /* topleft row,col, and botleft row,col */
        !          49198:           { 11,   53, 2, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          49199:             "\xff\x32\x00\x02\x09\xff\x01\x0b" }  },
        !          49200:       /* --- pixel bitmap for cmex325 char#5 (noname) --- */
        !          49201:       {   5,30295,                      /* character number, location */
        !          49202:           2, 1,  -51, 1,      /* topleft row,col, and botleft row,col */
        !          49203:           { 11,   53, 2, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          49204:             "\xff\x32\x09\x02\x00\xff\x01\x0b" }  },
        !          49205:       /* --- pixel bitmap for cmex325 char#6 (noname) --- */
        !          49206:       {   6,34242,                      /* character number, location */
        !          49207:           2, 9,  -51, 9,      /* topleft row,col, and botleft row,col */
        !          49208:           { 11,   53, 2, 9, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          49209:             "\xff\x01\x00\x0b\x00\xff\x32\x02\x09" }  },
        !          49210:       /* --- pixel bitmap for cmex325 char#7 (noname) --- */
        !          49211:       {   7,38247,                      /* character number, location */
        !          49212:           2, 1,  -51, 1,      /* topleft row,col, and botleft row,col */
        !          49213:           { 11,   53, 2, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          49214:             "\xff\x01\x00\x0b\xff\x32\x09\x02" }  },
        !          49215:       /* --- pixel bitmap for cmex325 char#8 \big{ --- */
        !          49216:       {   8,42295,                      /* character number, location */
        !          49217:           2, 5,  -51, 5,      /* topleft row,col, and botleft row,col */
        !          49218:           { 16,   53, 3,74, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          49219:             "\xe2\xb3\xc3\xc2\xd3\x50\xfe\x73\x60\xf1\x73\x60\x63"
        !          49220:             "\xc3\xc3\xb3\xb2\xe0\x23\xe0\x13\xe3\xe3\x70\xfe\x73"
        !          49221:             "\x60\xf1\x73\x60\x83\xe2\xe0\x13\xe3\xe0\x22" }  },
        !          49222:       /* --- pixel bitmap for cmex325 char#9 \big} --- */
        !          49223:       {   9,50490,                      /* character number, location */
        !          49224:           2, 5,  -51, 5,      /* topleft row,col, and botleft row,col */
        !          49225:           { 16,   53, 3,75, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          49226:             "\x02\xe0\x23\xe0\x13\xe3\xe3\x70\xfe\x73\x60\xf1\x73"
        !          49227:             "\x60\x83\xe2\xe0\x13\xe3\xe0\x22\xb3\xc3\xc2\xd3\x50"
        !          49228:             "\xfe\x73\x60\xf1\x73\x60\x63\xc3\xc3\xb3\xb2\xe5" }  },
        !          49229:       /* --- pixel bitmap for cmex325 char#10 \big< --- */
        !          49230:       {  10,59924,                      /* character number, location */
        !          49231:           2, 4,  -52, 4,      /* topleft row,col, and botleft row,col */
        !          49232:           { 14,   54, 3,116, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          49233:             "\xf1\xc2\xb3\xb2\xb3\xb2\xb3\xb2\xb3\xb2\xb3\xb2\xb3"
        !          49234:             "\x50\xf1\x62\x60\x53\xb2\xb3\xb2\xb3\xb2\xb3\xb2\xb3"
        !          49235:             "\xb2\xb3\xbf\x12\xc3\xc2\xc3\xc2\xc3\xc2\xc3\xc2\xc3"
        !          49236:             "\xc2\xc3\x60\xf1\x62\x60\x63\xc2\xc3\xc2\xc3\xc2\xc3"
        !          49237:             "\xc2\xc3\xc2\xc3\xf1\xc2" }  },
        !          49238:       /* --- pixel bitmap for cmex325 char#11 \big> --- */
        !          49239:       {  11,63173,                      /* character number, location */
        !          49240:           2, 3,  -52, 3,      /* topleft row,col, and botleft row,col */
        !          49241:           { 14,   54, 3,117, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          49242:             "\xf1\x02\xc3\xc2\xc3\xc2\xc3\xc2\xc3\xc2\xc3\xc2\xc3"
        !          49243:             "\x60\xf1\x62\x60\x63\xc2\xc3\xc2\xc3\xc2\xc3\xc2\xc3"
        !          49244:             "\xc2\xc3\xf1\xc2\xb3\xb2\xb3\xb2\xb3\xb2\xb3\xb2\xb3"
        !          49245:             "\xb2\xb3\x50\xf1\x62\x60\x53\xb2\xb3\xb2\xb3\xb2\xb3"
        !          49246:             "\xb2\xb3\xb2\xb3\xbf\x12\xc2" }  },
        !          49247:       /* --- pixel bitmap for cmex325 char#12 (noname) --- */
        !          49248:       {  12,73493,                      /* character number, location */
        !          49249:           1, 7,  -28, 7,      /* topleft row,col, and botleft row,col */
        !          49250:           {  2,   29, 3, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          49251:             "\xfe\x02\x0f\xd2" }  },
        !          49252:       /* --- pixel bitmap for cmex325 char#13 (noname) --- */
        !          49253:       {  13,74144,                      /* character number, location */
        !          49254:           1, 7,  -28, 7,      /* topleft row,col, and botleft row,col */
        !          49255:           { 11,   29, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          49256:             "\xfe\x02\x72\x0f\xd2\x72" }  },
        !          49257:       /* --- pixel bitmap for cmex325 char#14 (noname) --- */
        !          49258:       {  14,66434,                      /* character number, location */
        !          49259:           2, 3,  -51, 3,      /* topleft row,col, and botleft row,col */
        !          49260:           { 21,   53, 3,203, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          49261:             "\xf1\xe0\x52\xe0\x43\xf1\xe0\x42\x10\xe0\x33\xe0\x42"
        !          49262:             "\xe0\x43\x20\xf1\xe0\x22\x30\xe0\x13\x30\xf1\xe0\x12"
        !          49263:             "\x40\xe3\xe0\x42\xe0\x43\x50\xf1\xd2\x60\xc3\x60\xf1"
        !          49264:             "\xc2\x70\xb3\xe0\x42\xe0\x43\x80\xf1\xa2\x90\x93\x90"
        !          49265:             "\xf1\x92\xa0\x83\xe0\x42\xe0\x43\xb0\xf1\x72\xc0\x63"
        !          49266:             "\xc0\xf1\x62\xd0\x53\xe0\x42\xe0\x43\xe0\xf1\x42\xe0"
        !          49267:             "\x10\x33\xe0\x10\xf1\x32\xe0\x20\x23\xe0\x42\xe0\x43"
        !          49268:             "\xe0\x30\xf1\x12\xe0\x43\xe0\x4f\x12\xe0\x50" }  },
        !          49269:       /* --- pixel bitmap for cmex325 char#15 (noname) --- */
        !          49270:       {  15,70008,                      /* character number, location */
        !          49271:           2, 3,  -51, 3,      /* topleft row,col, and botleft row,col */
        !          49272:           { 21,   53, 3,206, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          49273:             "\xf1\x02\xe0\x53\xe0\x40\xf1\x12\xe0\x40\x13\xe0\x52"
        !          49274:             "\xe0\x53\xe0\x20\xf1\x32\xe0\x20\x33\xe0\x10\xf1\x42"
        !          49275:             "\xe0\x10\x43\xe0\x52\xe0\x53\xd0\xf1\x62\xd0\x63\xc0"
        !          49276:             "\xf1\x72\xc0\x73\xe0\x52\xe0\x53\xa0\xf1\x92\xa0\x93"
        !          49277:             "\x90\xf1\xa2\x90\xa3\xe0\x52\xe0\x53\x70\xf1\xc2\x70"
        !          49278:             "\xc3\x60\xf1\xd2\x60\xd3\xe0\x52\xe0\x53\x40\xf1\xe0"
        !          49279:             "\x12\x40\xe0\x13\x30\xf1\xe0\x22\x30\xe0\x23\xe0\x52"
        !          49280:             "\xe0\x53\x10\xf1\xe0\x42\x10\xe0\x43\xf1\xe0\x52" }  },
        !          49281:       /* --- pixel bitmap for cmex325 char#16 \Big( --- */
        !          49282:       {  16, 1452,                      /* character number, location */
        !          49283:           2, 8,  -78, 8,      /* topleft row,col, and botleft row,col */
        !          49284:           { 18,   80, 3,220, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          49285:             "\xe0\x22\xe0\x12\xe0\x12\xe0\x12\xe0\x12\xe0\x12\xe0"
        !          49286:             "\x12\xe0\x13\xe0\x12\xe0\x12\xe0\x13\xe0\x12\xe0\x13"
        !          49287:             "\xe0\x12\xe0\x13\xe0\x12\xb0\xf1\x43\xb0\x42\xc0\xf1"
        !          49288:             "\x33\xc0\x32\xd0\xf2\x23\xd0\x22\xe0\xf4\x13\xe0\x12"
        !          49289:             "\xe0\x1f\xe3\xe0\x13\xe0\x22\xe0\x10\xf4\x13\xe0\x22"
        !          49290:             "\xe0\xf2\x23\xd0\x32\xd0\xf1\x33\xc0\x42\xc0\xf1\x43"
        !          49291:             "\xb0\x52\xe0\x23\xe0\x22\xe0\x23\xe0\x22\xe0\x23\xe0"
        !          49292:             "\x22\xe0\x32\xe0\x23\xe0\x22\xe0\x32\xe0\x32\xe0\x32"
        !          49293:             "\xe0\x32\xe0\x32\xe0\x32" }  },
        !          49294:       /* --- pixel bitmap for cmex325 char#17 \Big) --- */
        !          49295:       {  17, 7789,                      /* character number, location */
        !          49296:           2, 1,  -78, 1,      /* topleft row,col, and botleft row,col */
        !          49297:           { 18,   80, 3,223, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          49298:             "\x02\xe0\x32\xe0\x32\xe0\x32\xe0\x32\xe0\x32\xe0\x32"
        !          49299:             "\xe0\x23\xe0\x22\xe0\x32\xe0\x23\xe0\x22\xe0\x23\xe0"
        !          49300:             "\x22\xe0\x23\xe0\x22\x50\xf1\xb3\x40\xc2\x40\xf1\xc3"
        !          49301:             "\x30\xd2\x30\xf2\xd3\x20\xe2\x20\xf4\xe3\x10\xe0\x12"
        !          49302:             "\x10\xfe\xe0\x13\xe0\x13\xe0\x12\x10\xf4\xe3\x10\xe2"
        !          49303:             "\x20\xf2\xd3\x20\xd2\x30\xf1\xc3\x30\xc2\x40\xf1\xb3"
        !          49304:             "\x40\xb2\xe0\x13\xe0\x12\xe0\x13\xe0\x12\xe0\x13\xe0"
        !          49305:             "\x12\xe0\x12\xe0\x13\xe0\x12\xe0\x12\xe0\x12\xe0\x12"
        !          49306:             "\xe0\x12\xe0\x12\xe0\x12\xe0\x20" }  },
        !          49307:       /* --- pixel bitmap for cmex325 char#18 \bigg( --- */
        !          49308:       {  18, 2376,                      /* character number, location */
        !          49309:           2, 9,  -105, 9,     /* topleft row,col, and botleft row,col */
        !          49310:           { 23,  107, 3,304, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          49311:             "\xe0\x72\xe0\x62\xe0\x62\xe0\x62\xe0\x62\xe0\x62\xe0"
        !          49312:             "\x63\xe0\x53\xe0\x53\xe0\x62\xe0\x63\xe0\x53\xe0\x62"
        !          49313:             "\xe0\x63\xa0\xf1\x93\xb0\xf1\x83\xc0\xf1\x73\xd0\x64"
        !          49314:             "\xe0\x53\xe0\xf1\x54\xe0\x53\xe0\x10\xf1\x44\xe0\x10"
        !          49315:             "\x43\xe0\x20\xf1\x34\xe0\x20\xf1\x33\xe0\x30\xf2\x24"
        !          49316:             "\xe0\x30\x23\xe0\x40\xf6\x14\xe0\x4f\xe4\xe0\x5f\x54"
        !          49317:             "\xe0\x50\xf6\x14\xe0\x40\x23\xe0\x40\xf2\x24\xe0\x30"
        !          49318:             "\xf1\x33\xe0\x30\xf1\x34\xe0\x20\x43\xe0\x20\xf1\x44"
        !          49319:             "\xe0\x10\x53\xe0\x10\xf1\x54\xe0\x63\xe0\x64\xd0\xf1"
        !          49320:             "\x73\xd0\xf1\x83\xc0\xf1\x93\xb0\xa3\xe0\x72\xe0\x73"
        !          49321:             "\xe0\x73\xe0\x72\xe0\x73\xe0\x73\xe0\x73\xe0\x72\xe0"
        !          49322:             "\x82\xe0\x82\xe0\x82\xe0\x82\xe0\x82" }  },
        !          49323:       /* --- pixel bitmap for cmex325 char#19 \bigg) --- */
        !          49324:       {  19, 8688,                      /* character number, location */
        !          49325:           2, 1,  -105, 1,     /* topleft row,col, and botleft row,col */
        !          49326:           { 23,  107, 3,305, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          49327:             "\x02\xe0\x82\xe0\x82\xe0\x82\xe0\x82\xe0\x82\xe0\x73"
        !          49328:             "\xe0\x73\xe0\x73\xe0\x72\xe0\x73\xe0\x73\xe0\x72\xe0"
        !          49329:             "\x73\xa0\xf1\xb3\x90\xf1\xc3\x80\xf1\xd3\x70\xd4\xe0"
        !          49330:             "\x63\x60\xf1\xe4\x50\xe0\x13\x50\xf1\xe0\x14\x40\xe0"
        !          49331:             "\x23\x40\xf1\xe0\x24\x30\xf1\xe0\x33\x30\xf2\xe0\x34"
        !          49332:             "\x20\xe0\x43\x20\xf6\xe0\x44\x10\xfe\xe0\x54\xf5\xe0"
        !          49333:             "\x54\xf6\xe0\x44\x10\xe0\x43\x20\xf2\xe0\x34\x20\xf1"
        !          49334:             "\xe0\x33\x30\xf1\xe0\x24\x30\xe0\x23\x40\xf1\xe0\x14"
        !          49335:             "\x40\xe0\x13\x50\xf1\xe4\x50\xe3\xe0\x54\x60\xf1\xd3"
        !          49336:             "\x70\xf1\xc3\x80\xf1\xb3\x90\xa3\xe0\x62\xe0\x63\xe0"
        !          49337:             "\x53\xe0\x62\xe0\x63\xe0\x53\xe0\x53\xe0\x62\xe0\x62"
        !          49338:             "\xe0\x62\xe0\x62\xe0\x62\xe0\x62\xe0\x70" }  },
        !          49339:       /* --- pixel bitmap for cmex325 char#20 \bigg[ --- */
        !          49340:       {  20,15282,                      /* character number, location */
        !          49341:           2,11,  -105,11,     /* topleft row,col, and botleft row,col */
        !          49342:           { 13,  107, 2,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          49343:             "\xff\x02\x00\x0d\x00\xff\x64\x03\x0a\xff\x02\x0d" }  },
        !          49344:       /* --- pixel bitmap for cmex325 char#21 \bigg] --- */
        !          49345:       {  21,21697,                      /* character number, location */
        !          49346:           2, 0,  -105, 0,     /* topleft row,col, and botleft row,col */
        !          49347:           { 13,  107, 2,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          49348:             "\xff\x02\x00\x0d\xff\x64\x0a\x03\x00\xff\x02\x0d" }  },
        !          49349:       /* --- pixel bitmap for cmex325 char#22 (noname) --- */
        !          49350:       {  22,28195,                      /* character number, location */
        !          49351:           2,11,  -105,11,     /* topleft row,col, and botleft row,col */
        !          49352:           { 15,  107, 2, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          49353:             "\xff\x67\x00\x03\x0c\xff\x02\x0f" }  },
        !          49354:       /* --- pixel bitmap for cmex325 char#23 (noname) --- */
        !          49355:       {  23,32166,                      /* character number, location */
        !          49356:           2, 0,  -105, 0,     /* topleft row,col, and botleft row,col */
        !          49357:           { 15,  107, 2, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          49358:             "\xff\x67\x0c\x03\x00\xff\x02\x0f" }  },
        !          49359:       /* --- pixel bitmap for cmex325 char#24 (noname) --- */
        !          49360:       {  24,36143,                      /* character number, location */
        !          49361:           2,11,  -105,11,     /* topleft row,col, and botleft row,col */
        !          49362:           { 15,  107, 2, 9, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          49363:             "\xff\x02\x00\x0f\x00\xff\x67\x03\x0c" }  },
        !          49364:       /* --- pixel bitmap for cmex325 char#25 (noname) --- */
        !          49365:       {  25,40122,                      /* character number, location */
        !          49366:           2, 0,  -105, 0,     /* topleft row,col, and botleft row,col */
        !          49367:           { 15,  107, 2, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          49368:             "\xff\x02\x00\x0f\xff\x67\x0c\x03" }  },
        !          49369:       /* --- pixel bitmap for cmex325 char#26 \bigg{ --- */
        !          49370:       {  26,44412,                      /* character number, location */
        !          49371:           2, 6,  -105, 6,     /* topleft row,col, and botleft row,col */
        !          49372:           { 22,  107, 3,180, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          49373:             "\xe0\x53\xe0\x35\xe0\x24\xe0\x25\xe0\x24\x50\xf1\xc4"
        !          49374:             "\x60\xb4\x70\xf1\xa4\x80\xfe\x94\x90\xfe\x94\x90\xf2"
        !          49375:             "\x94\x90\xf2\x84\xa0\x74\xe0\x43\xe0\x43\xe0\x43\xe0"
        !          49376:             "\x43\xe0\x34\xe0\x34\xe0\x33\xe0\x64\xe0\x54\xe0\x63"
        !          49377:             "\xe0\x63\xe0\x63\xe0\x63\xe0\x54\xb0\xf2\x84\xa0\xfe"
        !          49378:             "\x94\x90\xfe\x94\x90\xf2\x94\x90\xf1\xa4\x80\xb4\x70"
        !          49379:             "\xf1\xc4\x60\xd4\xe0\x55\xe0\x54\xe0\x55\xe0\x53" }  },
        !          49380:       /* --- pixel bitmap for cmex325 char#27 \bigg} --- */
        !          49381:       {  27,52609,                      /* character number, location */
        !          49382:           2, 6,  -105, 6,     /* topleft row,col, and botleft row,col */
        !          49383:           { 22,  107, 3,181, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          49384:             "\x03\xe0\x55\xe0\x54\xe0\x55\xe0\x54\xd0\xf1\x64\xc0"
        !          49385:             "\x74\xb0\xf1\x84\xa0\xfe\x94\x90\xfe\x94\x90\xf2\x94"
        !          49386:             "\x90\xf2\xa4\x80\xb4\xe0\x53\xe0\x63\xe0\x63\xe0\x63"
        !          49387:             "\xe0\x64\xe0\x55\xe0\x53\xe0\x34\xe0\x34\xe0\x33\xe0"
        !          49388:             "\x43\xe0\x43\xe0\x43\xe0\x44\x70\xf2\xa4\x80\xfe\x94"
        !          49389:             "\x90\xfe\x94\x90\xf2\x94\x90\xf1\x84\xa0\x74\xb0\xf1"
        !          49390:             "\x64\xc0\x54\xe0\x25\xe0\x24\xe0\x25\xe0\x33\xe0\x51" }  },
        !          49391:       /* --- pixel bitmap for cmex325 char#28 \bigg< --- */
        !          49392:       {  28,61453,                      /* character number, location */
        !          49393:           2, 6,  -105, 6,     /* topleft row,col, and botleft row,col */
        !          49394:           { 24,  107, 3,433, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          49395:             "\xe0\x81\xe0\x83\xe0\x64\xf1\xe0\x63\x10\xe0\x54\xe0"
        !          49396:             "\x63\xe0\x64\x20\xf1\xe0\x43\x30\xe0\x34\xe0\x63\xe0"
        !          49397:             "\x64\x40\xf1\xe0\x23\x50\xe0\x14\xe0\x63\xe0\x64\x60"
        !          49398:             "\xf1\xe3\x70\xd4\xe0\x63\xe0\x64\x80\xf1\xc3\x90\xb4"
        !          49399:             "\xe0\x63\xe0\x64\xe0\x63\xe0\x64\xb0\xf1\x93\xc0\x84"
        !          49400:             "\xe0\x63\xe0\x64\xd0\xf1\x73\xe0\x64\xe0\x63\xe0\x64"
        !          49401:             "\xe0\x10\xf1\x53\xe0\x20\x44\xe0\x63\xe0\x64\xe0\x30"
        !          49402:             "\xf1\x33\xe0\x40\x24\xe0\x63\xe0\x64\xe0\x50\xf1\x13"
        !          49403:             "\xe0\x64\xe0\x63\xe0\x74\xe0\x60\xf1\x13\xe0\x60\x14"
        !          49404:             "\xe0\x73\xe0\x74\xe0\x40\xf1\x33\xe0\x40\x34\xe0\x73"
        !          49405:             "\xe0\x74\xe0\x20\xf1\x53\xe0\x20\x54\xe0\x73\xe0\x74"
        !          49406:             "\xe0\xf1\x73\xe0\x74\xe0\x73\xe0\x74\xc0\xf1\x93\xc0"
        !          49407:             "\x94\xe0\x73\xe0\x74\xe0\x73\xe0\x74\x90\xf1\xc3\x90"
        !          49408:             "\xc4\xe0\x73\xe0\x74\x70\xf1\xe3\x70\xe4\xe0\x73\xe0"
        !          49409:             "\x74\x50\xf1\xe0\x23\x50\xe0\x24\xe0\x73\xe0\x74\x30"
        !          49410:             "\xf1\xe0\x43\x30\xe0\x44\xe0\x73\xe0\x74\x10\xf1\xe0"
        !          49411:             "\x63\x10\xe0\x64\xe0\x73\xe0\x81\x10" }  },
        !          49412:       /* --- pixel bitmap for cmex325 char#29 \bigg> --- */
        !          49413:       {  29,64704,                      /* character number, location */
        !          49414:           2, 4,  -105, 4,     /* topleft row,col, and botleft row,col */
        !          49415:           { 24,  107, 3,433, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          49416:             "\x11\xe0\x83\xe0\x74\xe0\x60\xf1\x13\xe0\x60\x14\xe0"
        !          49417:             "\x73\xe0\x74\xe0\x40\xf1\x33\xe0\x40\x34\xe0\x73\xe0"
        !          49418:             "\x74\xe0\x20\xf1\x53\xe0\x20\x54\xe0\x73\xe0\x74\xe0"
        !          49419:             "\xf1\x73\xe0\x74\xe0\x73\xe0\x74\xc0\xf1\x93\xc0\x94"
        !          49420:             "\xe0\x73\xe0\x74\xe0\x73\xe0\x74\x90\xf1\xc3\x90\xc4"
        !          49421:             "\xe0\x73\xe0\x74\x70\xf1\xe3\x70\xe4\xe0\x73\xe0\x74"
        !          49422:             "\x50\xf1\xe0\x23\x50\xe0\x24\xe0\x73\xe0\x74\x30\xf1"
        !          49423:             "\xe0\x43\x30\xe0\x44\xe0\x73\xe0\x74\x10\xf1\xe0\x63"
        !          49424:             "\x10\xe0\x64\xe0\x73\xe0\x64\xf1\xe0\x63\x10\xe0\x54"
        !          49425:             "\xe0\x63\xe0\x64\x20\xf1\xe0\x43\x30\xe0\x34\xe0\x63"
        !          49426:             "\xe0\x64\x40\xf1\xe0\x23\x50\xe0\x14\xe0\x63\xe0\x64"
        !          49427:             "\x60\xf1\xe3\x70\xd4\xe0\x63\xe0\x64\x80\xf1\xc3\x90"
        !          49428:             "\xb4\xe0\x63\xe0\x64\xe0\x63\xe0\x64\xb0\xf1\x93\xc0"
        !          49429:             "\x84\xe0\x63\xe0\x64\xd0\xf1\x73\xe0\x64\xe0\x63\xe0"
        !          49430:             "\x64\xe0\x10\xf1\x53\xe0\x20\x44\xe0\x63\xe0\x64\xe0"
        !          49431:             "\x30\xf1\x33\xe0\x40\x24\xe0\x63\xe0\x64\xe0\x50\xf1"
        !          49432:             "\x13\xe0\x64\xe0\x63\xe0\x81\xe0\x80" }  },
        !          49433:       /* --- pixel bitmap for cmex325 char#30 (noname) --- */
        !          49434:       {  30,68111,                      /* character number, location */
        !          49435:           2, 3,  -105, 3,     /* topleft row,col, and botleft row,col */
        !          49436:           { 42,  107, 3,615, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          49437:             "\xe0\xe0\xc1\xe0\xe0\xc3\xe0\xe0\xa4\xf1\xe0\xe0\xa3"
        !          49438:             "\x10\xe0\xe0\x94\x10\xf1\xe0\xe0\x93\x20\xe0\xe0\x84"
        !          49439:             "\xe0\xe0\xa3\xe0\xe0\xa4\x30\xf1\xe0\xe0\x73\x40\xe0"
        !          49440:             "\xe0\x64\x40\xf1\xe0\xe0\x63\x50\xe0\xe0\x54\xe0\xe0"
        !          49441:             "\xa3\xe0\xe0\xa4\x60\xf1\xe0\xe0\x43\x70\xe0\xe0\x34"
        !          49442:             "\x70\xf1\xe0\xe0\x33\x80\xe0\xe0\x24\xe0\xe0\xa3\xe0"
        !          49443:             "\xe0\xa4\x90\xf1\xe0\xe0\x13\xa0\xe0\xe4\xa0\xf1\xe0"
        !          49444:             "\xe3\xb0\xe0\xd4\xe0\xe0\xa3\xe0\xe0\xa4\xc0\xf1\xe0"
        !          49445:             "\xc3\xd0\xe0\xb4\xd0\xf1\xe0\xb3\xe0\xe0\xa4\xe0\xe0"
        !          49446:             "\xa3\xe0\xe0\xa4\xe0\x10\xf1\xe0\x93\xe0\x20\xe0\x84"
        !          49447:             "\xe0\x20\xf1\xe0\x83\xe0\x30\xe0\x74\xe0\xe0\xa3\xe0"
        !          49448:             "\xe0\xa4\xe0\x40\xf1\xe0\x63\xe0\x50\xe0\x54\xe0\x50"
        !          49449:             "\xf1\xe0\x53\xe0\x60\xe0\x44\xe0\xe0\xa3\xe0\xe0\xa4"
        !          49450:             "\xe0\x70\xf1\xe0\x33\xe0\x80\xe0\x24\xe0\x80\xf1\xe0"
        !          49451:             "\x23\xe0\x90\xe0\x14\xe0\xe0\xa3\xe0\xe0\xa4\xe0\xa0"
        !          49452:             "\xf1\xe3\xe0\xb0\xd4\xe0\xb0\xf1\xd3\xe0\xc0\xc4\xe0"
        !          49453:             "\xe0\xa3\xe0\xe0\xa4\xe0\xd0\xf1\xb3\xe0\xe0\xa4\xe0"
        !          49454:             "\xe0\xf1\xa3\xe0\xe0\x10\x94\xe0\xe0\xa3\xe0\xe0\xa4"
        !          49455:             "\xe0\xe0\x20\xf1\x83\xe0\xe0\x30\x74\xe0\xe0\x30\xf1"
        !          49456:             "\x73\xe0\xe0\x40\x64\xe0\xe0\xa3\xe0\xe0\xa4\xe0\xe0"
        !          49457:             "\x50\xf1\x53\xe0\xe0\x60\x44\xe0\xe0\x60\xf1\x43\xe0"
        !          49458:             "\xe0\x70\x34\xe0\xe0\xa3\xe0\xe0\xa4\xe0\xe0\x80\xf1"
        !          49459:             "\x23\xe0\xe0\x90\x14\xe0\xe0\x90\xf1\x13\xe0\xe0\xa4"
        !          49460:             "\xe0\xe0\xa3\xe0\xe0\xc1\xe0\xe0\xc0" }  },
        !          49461:       /* --- pixel bitmap for cmex325 char#31 (noname) --- */
        !          49462:       {  31,71693,                      /* character number, location */
        !          49463:           2, 3,  -105, 3,     /* topleft row,col, and botleft row,col */
        !          49464:           { 42,  107, 3,615, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          49465:             "\x11\xe0\xe0\xc3\xe0\xe0\xb4\xe0\xe0\xa0\xf1\x13\xe0"
        !          49466:             "\xe0\xa0\x14\xe0\xe0\x90\xf1\x23\xe0\xe0\x90\x24\xe0"
        !          49467:             "\xe0\xb3\xe0\xe0\xb4\xe0\xe0\x70\xf1\x43\xe0\xe0\x70"
        !          49468:             "\x44\xe0\xe0\x60\xf1\x53\xe0\xe0\x60\x54\xe0\xe0\xb3"
        !          49469:             "\xe0\xe0\xb4\xe0\xe0\x40\xf1\x73\xe0\xe0\x40\x74\xe0"
        !          49470:             "\xe0\x30\xf1\x83\xe0\xe0\x30\x84\xe0\xe0\xb3\xe0\xe0"
        !          49471:             "\xb4\xe0\xe0\x10\xf1\xa3\xe0\xe0\x10\xa4\xe0\xe0\xf1"
        !          49472:             "\xb3\xe0\xe0\xb4\xe0\xe0\xb3\xe0\xe0\xb4\xe0\xc0\xf1"
        !          49473:             "\xd3\xe0\xc0\xd4\xe0\xb0\xf1\xe3\xe0\xb0\xe4\xe0\xe0"
        !          49474:             "\xb3\xe0\xe0\xb4\xe0\x90\xf1\xe0\x23\xe0\x90\xe0\x24"
        !          49475:             "\xe0\x80\xf1\xe0\x33\xe0\x80\xe0\x34\xe0\xe0\xb3\xe0"
        !          49476:             "\xe0\xb4\xe0\x60\xf1\xe0\x53\xe0\x60\xe0\x54\xe0\x50"
        !          49477:             "\xf1\xe0\x63\xe0\x50\xe0\x64\xe0\xe0\xb3\xe0\xe0\xb4"
        !          49478:             "\xe0\x30\xf1\xe0\x83\xe0\x30\xe0\x84\xe0\x20\xf1\xe0"
        !          49479:             "\x93\xe0\x20\xe0\x94\xe0\xe0\xb3\xe0\xe0\xb4\xe0\xf1"
        !          49480:             "\xe0\xb3\xe0\xe0\xb4\xd0\xf1\xe0\xc3\xd0\xe0\xc4\xe0"
        !          49481:             "\xe0\xb3\xe0\xe0\xb4\xb0\xf1\xe0\xe3\xb0\xe0\xe4\xa0"
        !          49482:             "\xf1\xe0\xe0\x13\xa0\xe0\xe0\x14\xe0\xe0\xb3\xe0\xe0"
        !          49483:             "\xb4\x80\xf1\xe0\xe0\x33\x80\xe0\xe0\x34\x70\xf1\xe0"
        !          49484:             "\xe0\x43\x70\xe0\xe0\x44\xe0\xe0\xb3\xe0\xe0\xb4\x50"
        !          49485:             "\xf1\xe0\xe0\x63\x50\xe0\xe0\x64\x40\xf1\xe0\xe0\x73"
        !          49486:             "\x40\xe0\xe0\x74\xe0\xe0\xb3\xe0\xe0\xb4\x20\xf1\xe0"
        !          49487:             "\xe0\x93\x20\xe0\xe0\x94\x10\xf1\xe0\xe0\xa3\x10\xe0"
        !          49488:             "\xe0\xa4\xe0\xe0\xb3\xe0\xe0\xc1\x11" }  },
        !          49489:       /* --- pixel bitmap for cmex325 char#32 \Bigg( --- */
        !          49490:       {  32, 3354,                      /* character number, location */
        !          49491:           2,10,  -132,10,     /* topleft row,col, and botleft row,col */
        !          49492:           { 25,  134, 3,376, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          49493:             "\xe0\x92\xe0\x82\xe0\x82\xe0\x82\xe0\x83\xe0\x73\xe0"
        !          49494:             "\x82\xe0\x82\xe0\x83\xe0\x73\xe0\x82\xe0\x83\xe0\x73"
        !          49495:             "\xe0\x82\xe0\x83\xa0\xf1\xb3\xb0\xf1\xa3\xc0\xf1\x93"
        !          49496:             "\xd0\x84\xd0\xf1\x83\xe0\xf1\x73\xe0\x10\x64\xe0\x10"
        !          49497:             "\xf1\x63\xe0\x20\x54\xe0\x20\xf1\x53\xe0\x30\xf1\x44"
        !          49498:             "\xe0\x30\xf1\x43\xe0\x40\xf2\x34\xe0\x40\x33\xe0\x50"
        !          49499:             "\xf4\x24\xe0\x50\x23\xe0\x60\xf7\x14\xe0\x60\x13\xe0"
        !          49500:             "\x7f\xe4\xe0\x7f\x84\xe0\x70\x13\xe0\x70\xf7\x14\xe0"
        !          49501:             "\x60\x23\xe0\x60\xf4\x24\xe0\x50\x33\xe0\x50\xf2\x34"
        !          49502:             "\xe0\x40\xf1\x43\xe0\x40\xf1\x44\xe0\x30\xf1\x53\xe0"
        !          49503:             "\x30\x54\xe0\x20\xf1\x63\xe0\x20\x64\xe0\x10\xf1\x73"
        !          49504:             "\xe0\x10\xf1\x83\xe0\x84\xd0\xf1\x93\xd0\xf1\xa3\xc0"
        !          49505:             "\xf1\xb3\xb0\xc3\xe0\x92\xe0\x93\xe0\x93\xe0\x92\xe0"
        !          49506:             "\x93\xe0\x93\xe0\x92\xe0\xa2\xe0\x93\xe0\x93\xe0\x92"
        !          49507:             "\xe0\xa2\xe0\xa2\xe0\xa2" }  },
        !          49508:       /* --- pixel bitmap for cmex325 char#33 \Bigg) --- */
        !          49509:       {  33, 9667,                      /* character number, location */
        !          49510:           2, 1,  -132, 1,     /* topleft row,col, and botleft row,col */
        !          49511:           { 25,  134, 3,377, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          49512:             "\x02\xe0\xa2\xe0\xa2\xe0\xa2\xe0\x93\xe0\x93\xe0\x92"
        !          49513:             "\xe0\xa2\xe0\x93\xe0\x93\xe0\x92\xe0\x93\xe0\x93\xe0"
        !          49514:             "\x92\xe0\x93\xc0\xf1\xb3\xb0\xf1\xc3\xa0\xf1\xd3\x90"
        !          49515:             "\xd4\x80\xf1\xe3\x80\xf1\xe0\x13\x70\xe0\x14\x60\xf1"
        !          49516:             "\xe0\x23\x60\xe0\x24\x50\xf1\xe0\x33\x50\xf1\xe0\x34"
        !          49517:             "\x40\xf1\xe0\x43\x40\xf2\xe0\x44\x30\xe0\x53\x30\xf4"
        !          49518:             "\xe0\x54\x20\xe0\x63\x20\xf7\xe0\x64\x10\xe0\x73\x10"
        !          49519:             "\xfe\xe0\x74\xf8\xe0\x74\xe0\x73\x10\xf7\xe0\x64\x10"
        !          49520:             "\xe0\x63\x20\xf4\xe0\x54\x20\xe0\x53\x30\xf2\xe0\x44"
        !          49521:             "\x30\xf1\xe0\x43\x40\xf1\xe0\x34\x40\xf1\xe0\x33\x50"
        !          49522:             "\xe0\x24\x50\xf1\xe0\x23\x60\xe0\x14\x60\xf1\xe0\x13"
        !          49523:             "\x70\xf1\xe3\x80\xd4\x80\xf1\xd3\x90\xf1\xc3\xa0\xf1"
        !          49524:             "\xb3\xb0\xa3\xe0\x82\xe0\x83\xe0\x73\xe0\x82\xe0\x83"
        !          49525:             "\xe0\x73\xe0\x82\xe0\x82\xe0\x83\xe0\x73\xe0\x82\xe0"
        !          49526:             "\x82\xe0\x82\xe0\x82\xe0\x90" }  },
        !          49527:       /* --- pixel bitmap for cmex325 char#34 \Bigg[ --- */
        !          49528:       {  34,16319,                      /* character number, location */
        !          49529:           2,12,  -132,12,     /* topleft row,col, and botleft row,col */
        !          49530:           { 14,  134, 2,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          49531:             "\xff\x02\x00\x0e\x00\xff\x7f\x03\x0b\xff\x02\x0e" }  },
        !          49532:       /* --- pixel bitmap for cmex325 char#35 \Bigg] --- */
        !          49533:       {  35,22695,                      /* character number, location */
        !          49534:           2, 0,  -132, 0,     /* topleft row,col, and botleft row,col */
        !          49535:           { 14,  134, 2,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          49536:             "\xff\x02\x00\x0e\xff\x7f\x0b\x03\x00\xff\x02\x0e" }  },
        !          49537:       /* --- pixel bitmap for cmex325 char#36 (noname) --- */
        !          49538:       {  36,29264,                      /* character number, location */
        !          49539:           2,12,  -132,12,     /* topleft row,col, and botleft row,col */
        !          49540:           { 17,  134, 2, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          49541:             "\xff\x82\x00\x03\x0e\xff\x02\x11" }  },
        !          49542:       /* --- pixel bitmap for cmex325 char#37 (noname) --- */
        !          49543:       {  37,33196,                      /* character number, location */
        !          49544:           2, 0,  -132, 0,     /* topleft row,col, and botleft row,col */
        !          49545:           { 17,  134, 2, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          49546:             "\xff\x82\x0e\x03\x00\xff\x02\x11" }  },
        !          49547:       /* --- pixel bitmap for cmex325 char#38 (noname) --- */
        !          49548:       {  38,37214,                      /* character number, location */
        !          49549:           2,12,  -132,12,     /* topleft row,col, and botleft row,col */
        !          49550:           { 17,  134, 2, 9, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          49551:             "\xff\x02\x00\x11\x00\xff\x82\x03\x0e" }  },
        !          49552:       /* --- pixel bitmap for cmex325 char#39 (noname) --- */
        !          49553:       {  39,41154,                      /* character number, location */
        !          49554:           2, 0,  -132, 0,     /* topleft row,col, and botleft row,col */
        !          49555:           { 17,  134, 2, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          49556:             "\xff\x02\x00\x11\xff\x82\x0e\x03" }  },
        !          49557:       /* --- pixel bitmap for cmex325 char#40 \Bigg{ --- */
        !          49558:       {  40,45604,                      /* character number, location */
        !          49559:           2, 7,  -132, 7,     /* topleft row,col, and botleft row,col */
        !          49560:           { 22,  134, 3,216, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          49561:             "\xe0\x62\xe0\x44\xe0\x34\xe0\x24\xe0\x34\xe0\x34\xe0"
        !          49562:             "\x43\xe0\x44\x60\xf1\xb4\x70\xf2\xa4\x80\xfe\x94\x90"
        !          49563:             "\xfe\x94\x90\xfa\x94\x90\xf2\x84\xa0\x83\xe0\x44\xe0"
        !          49564:             "\x43\xe0\x44\xe0\x34\xe0\x43\xe0\x43\xe0\x43\xe0\x34"
        !          49565:             "\xe0\x3f\x13\xe0\x50\x14\xe0\x63\xe0\x63\xe0\x63\xe0"
        !          49566:             "\x54\xe0\x54\xe0\x53\xe0\x54\xe0\x53\xb0\xf2\x84\xa0"
        !          49567:             "\xfe\x94\x90\xfe\x94\x90\xfa\x94\x90\xf2\xa4\x80\xf1"
        !          49568:             "\xb4\x70\xc4\xe0\x53\xe0\x54\xe0\x54\xe0\x54\xe0\x64"
        !          49569:             "\xe0\x54\xe0\x62" }  },
        !          49570:       /* --- pixel bitmap for cmex325 char#41 \Bigg} --- */
        !          49571:       {  41,53802,                      /* character number, location */
        !          49572:           2, 7,  -132, 7,     /* topleft row,col, and botleft row,col */
        !          49573:           { 22,  134, 3,217, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          49574:             "\x02\xe0\x64\xe0\x54\xe0\x64\xe0\x54\xe0\x54\xe0\x53"
        !          49575:             "\xe0\x54\xc0\xf1\x74\xb0\xf2\x84\xa0\xfe\x94\x90\xfe"
        !          49576:             "\x94\x90\xfa\x94\x90\xf2\xa4\x80\xb3\xe0\x54\xe0\x53"
        !          49577:             "\xe0\x54\xe0\x54\xe0\x53\xe0\x63\xe0\x63\xe0\x64\x10"
        !          49578:             "\xf1\xe0\x53\xe0\x34\xe0\x33\xe0\x43\xe0\x43\xe0\x44"
        !          49579:             "\xe0\x34\xe0\x43\xe0\x44\xe0\x43\x80\xf2\xa4\x80\xfe"
        !          49580:             "\x94\x90\xfe\x94\x90\xfa\x94\x90\xf2\x84\xa0\xf1\x74"
        !          49581:             "\xb0\x64\xe0\x43\xe0\x44\xe0\x34\xe0\x34\xe0\x24\xe0"
        !          49582:             "\x34\xe0\x42\xe0\x60" }  },
        !          49583:       /* --- pixel bitmap for cmex325 char#42 \Bigg< --- */
        !          49584:       {  42,62363,                      /* character number, location */
        !          49585:           2, 6,  -133, 6,     /* topleft row,col, and botleft row,col */
        !          49586:           { 25,  135, 3,334, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          49587:             "\xe0\x92\xf1\xe0\x83\xf2\xe0\x73\x10\xf2\xe0\x63\x20"
        !          49588:             "\xf2\xe0\x53\x30\xf2\xe0\x43\x40\xf2\xe0\x33\x50\xf2"
        !          49589:             "\xe0\x23\x60\xf2\xe0\x13\x70\xf2\xe3\x80\xf2\xd3\x90"
        !          49590:             "\xf2\xc3\xa0\xf2\xb3\xb0\xf2\xa3\xc0\xf2\x93\xd0\xf2"
        !          49591:             "\x83\xe0\xf2\x73\xe0\x10\xf2\x63\xe0\x20\xf2\x53\xe0"
        !          49592:             "\x30\xf2\x43\xe0\x40\xf2\x33\xe0\x50\xf2\x23\xe0\x60"
        !          49593:             "\xf2\x13\xe0\x7f\x23\xe0\x80\xf2\x13\xe0\x70\xf2\x23"
        !          49594:             "\xe0\x60\xf2\x33\xe0\x50\xf2\x43\xe0\x40\xf2\x53\xe0"
        !          49595:             "\x30\xf2\x63\xe0\x20\xf2\x73\xe0\x10\xf2\x83\xe0\xf2"
        !          49596:             "\x93\xd0\xf2\xa3\xc0\xf2\xb3\xb0\xf2\xc3\xa0\xf2\xd3"
        !          49597:             "\x90\xf2\xe3\x80\xf2\xe0\x13\x70\xf2\xe0\x23\x60\xf2"
        !          49598:             "\xe0\x33\x50\xf2\xe0\x43\x40\xf2\xe0\x53\x30\xf2\xe0"
        !          49599:             "\x63\x20\xf2\xe0\x73\x10\xf1\xe0\x83\xe0\x92" }  },
        !          49600:       /* --- pixel bitmap for cmex325 char#43 \Bigg> --- */
        !          49601:       {  43,65615,                      /* character number, location */
        !          49602:           2, 5,  -133, 5,     /* topleft row,col, and botleft row,col */
        !          49603:           { 25,  135, 3,335, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          49604:             "\x02\xe0\x9f\x13\xe0\x80\xf2\x13\xe0\x70\xf2\x23\xe0"
        !          49605:             "\x60\xf2\x33\xe0\x50\xf2\x43\xe0\x40\xf2\x53\xe0\x30"
        !          49606:             "\xf2\x63\xe0\x20\xf2\x73\xe0\x10\xf2\x83\xe0\xf2\x93"
        !          49607:             "\xd0\xf2\xa3\xc0\xf2\xb3\xb0\xf2\xc3\xa0\xf2\xd3\x90"
        !          49608:             "\xf2\xe3\x80\xf2\xe0\x13\x70\xf2\xe0\x23\x60\xf2\xe0"
        !          49609:             "\x33\x50\xf2\xe0\x43\x40\xf2\xe0\x53\x30\xf2\xe0\x63"
        !          49610:             "\x20\xf2\xe0\x73\x10\xf2\xe0\x83\xf2\xe0\x73\x10\xf2"
        !          49611:             "\xe0\x63\x20\xf2\xe0\x53\x30\xf2\xe0\x43\x40\xf2\xe0"
        !          49612:             "\x33\x50\xf2\xe0\x23\x60\xf2\xe0\x13\x70\xf2\xe3\x80"
        !          49613:             "\xf2\xd3\x90\xf2\xc3\xa0\xf2\xb3\xb0\xf2\xa3\xc0\xf2"
        !          49614:             "\x93\xd0\xf2\x83\xe0\xf2\x73\xe0\x10\xf2\x63\xe0\x20"
        !          49615:             "\xf2\x53\xe0\x30\xf2\x43\xe0\x40\xf2\x33\xe0\x50\xf2"
        !          49616:             "\x23\xe0\x60\xf2\x13\xe0\x7f\x13\xe0\x82\xe0\x93" }  },
        !          49617:       /* --- pixel bitmap for cmex325 char#44 / --- */
        !          49618:       {  44,69187,                      /* character number, location */
        !          49619:           2, 2,  -132, 2,     /* topleft row,col, and botleft row,col */
        !          49620:           { 53,  134, 2,389, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          49621:             "\xff\x01\x32\x03\x31\x04\xff\x01\x31\x03\x01\x00\x30"
        !          49622:             "\x04\x01\x00\xff\x01\x30\x03\x02\x00\x2f\x04\x31\x03"
        !          49623:             "\x31\x04\x03\x00\xff\x01\x2e\x03\x04\x00\x2d\x04\x31"
        !          49624:             "\x03\x31\x04\x05\x00\xff\x01\x2c\x03\x06\x00\x2b\x04"
        !          49625:             "\x06\x00\xff\x01\x2b\x03\x07\x00\x2a\x04\x31\x03\x31"
        !          49626:             "\x04\x08\x00\xff\x01\x29\x03\x09\x00\x28\x04\x09\x00"
        !          49627:             "\xff\x01\x28\x03\x0a\x00\x27\x04\x31\x03\x31\x04\x0b"
        !          49628:             "\x00\xff\x01\x26\x03\x0c\x00\x25\x04\x31\x03\x31\x04"
        !          49629:             "\x0d\x00\xff\x01\x24\x03\x0e\x00\x23\x04\x0e\x00\xff"
        !          49630:             "\x01\x23\x03\x0f\x00\x22\x04\x31\x03\x31\x04\x10\x00"
        !          49631:             "\xff\x01\x21\x03\x11\x00\x20\x04\x31\x03\x31\x04\x12"
        !          49632:             "\x00\xff\x01\x1f\x03\x13\x00\x1e\x04\x13\x00\xff\x01"
        !          49633:             "\x1e\x03\x14\x00\x1d\x04\x31\x03\x31\x04\x15\x00\xff"
        !          49634:             "\x01\x1c\x03\x16\x00\x1b\x04\x16\x00\xff\x01\x1b\x03"
        !          49635:             "\x17\x00\x1a\x04\x31\x03\x31\x04\x18\x00\xff\x01\x19"
        !          49636:             "\x03\x19\x00\x18\x04\x31\x03\x31\x04\x1a\x00\xff\x01"
        !          49637:             "\x17\x03\x1b\x00\x16\x04\x1b\x00\xff\x01\x16\x03\x1c"
        !          49638:             "\x00\x15\x04\x31\x03\x31\x04\x1d\x00\xff\x01\x14\x03"
        !          49639:             "\x1e\x00\x13\x04\x1e\x00\xff\x01\x13\x03\x1f\x00\x12"
        !          49640:             "\x04\x31\x03\x31\x04\x20\x00\xff\x01\x11\x03\x21\x00"
        !          49641:             "\x10\x04\x31\x03\x31\x04\x22\x00\xff\x01\x0f\x03\x23"
        !          49642:             "\x00\x0e\x04\x23\x00\xff\x01\x0e\x03\x24\x00\x0d\x04"
        !          49643:             "\x31\x03\x31\x04\x25\x00\xff\x01\x0c\x03\x26\x00\x0b"
        !          49644:             "\x04\x31\x03\x31\x04\x27\x00\xff\x01\x0a\x03\x28\x00"
        !          49645:             "\x09\x04\x28\x00\xff\x01\x09\x03\x29\x00\x08\x04\x31"
        !          49646:             "\x03\x31\x04\x2a\x00\xff\x01\x07\x03\x2b\x00\x06\x04"
        !          49647:             "\x2b\x00\xff\x01\x06\x03\x2c\x00\x05\x04\x31\x03\x31"
        !          49648:             "\x04\x2d\x00\xff\x01\x04\x03\x2e\x00\x03\x04\x31\x03"
        !          49649:             "\x31\x04\x2f\x00\xff\x01\x02\x03\x30\x00\x01\x04\x30"
        !          49650:             "\x00\xff\x01\x01\x03\x31\x04\x31\xff\x01\x03\x32" }  },
        !          49651:       /* --- pixel bitmap for cmex325 char#45 \ --- */
        !          49652:       {  45,72773,                      /* character number, location */
        !          49653:           2, 2,  -132, 2,     /* topleft row,col, and botleft row,col */
        !          49654:           { 53,  134, 2,392, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          49655:             "\xff\x01\x00\x03\x32\x04\x31\x00\xff\x01\x01\x03\x31"
        !          49656:             "\x00\x01\x04\x30\x00\xff\x01\x02\x03\x30\x00\x02\x04"
        !          49657:             "\x32\x03\x32\x04\x2e\x00\xff\x01\x04\x03\x2e\x00\x04"
        !          49658:             "\x04\x32\x03\x32\x04\x2c\x00\xff\x01\x06\x03\x2c\x00"
        !          49659:             "\x06\x04\x2b\x00\xff\x01\x07\x03\x2b\x00\x07\x04\x32"
        !          49660:             "\x03\x32\x04\x29\x00\xff\x01\x09\x03\x29\x00\x09\x04"
        !          49661:             "\x28\x00\xff\x01\x0a\x03\x28\x00\x0a\x04\x32\x03\x32"
        !          49662:             "\x04\x26\x00\xff\x01\x0c\x03\x26\x00\x0c\x04\x32\x03"
        !          49663:             "\x32\x04\x24\x00\xff\x01\x0e\x03\x24\x00\x0e\x04\x23"
        !          49664:             "\x00\xff\x01\x0f\x03\x23\x00\x0f\x04\x32\x03\x32\x04"
        !          49665:             "\x21\x00\xff\x01\x11\x03\x21\x00\x11\x04\x32\x03\x32"
        !          49666:             "\x04\x1f\x00\xff\x01\x13\x03\x1f\x00\x13\x04\x1e\x00"
        !          49667:             "\xff\x01\x14\x03\x1e\x00\x14\x04\x32\x03\x32\x04\x1c"
        !          49668:             "\x00\xff\x01\x16\x03\x1c\x00\x16\x04\x1b\x00\xff\x01"
        !          49669:             "\x17\x03\x1b\x00\x17\x04\x32\x03\x32\x04\x19\x00\xff"
        !          49670:             "\x01\x19\x03\x19\x00\x19\x04\x32\x03\x32\x04\x17\x00"
        !          49671:             "\xff\x01\x1b\x03\x17\x00\x1b\x04\x16\x00\xff\x01\x1c"
        !          49672:             "\x03\x16\x00\x1c\x04\x32\x03\x32\x04\x14\x00\xff\x01"
        !          49673:             "\x1e\x03\x14\x00\x1e\x04\x13\x00\xff\x01\x1f\x03\x13"
        !          49674:             "\x00\x1f\x04\x32\x03\x32\x04\x11\x00\xff\x01\x21\x03"
        !          49675:             "\x11\x00\x21\x04\x32\x03\x32\x04\x0f\x00\xff\x01\x23"
        !          49676:             "\x03\x0f\x00\x23\x04\x0e\x00\xff\x01\x24\x03\x0e\x00"
        !          49677:             "\x24\x04\x32\x03\x32\x04\x0c\x00\xff\x01\x26\x03\x0c"
        !          49678:             "\x00\x26\x04\x32\x03\x32\x04\x0a\x00\xff\x01\x28\x03"
        !          49679:             "\x0a\x00\x28\x04\x09\x00\xff\x01\x29\x03\x09\x00\x29"
        !          49680:             "\x04\x32\x03\x32\x04\x07\x00\xff\x01\x2b\x03\x07\x00"
        !          49681:             "\x2b\x04\x06\x00\xff\x01\x2c\x03\x06\x00\x2c\x04\x32"
        !          49682:             "\x03\x32\x04\x04\x00\xff\x01\x2e\x03\x04\x00\x2e\x04"
        !          49683:             "\x32\x03\x32\x04\x02\x00\xff\x01\x30\x03\x02\x00\x30"
        !          49684:             "\x04\x01\x00\xff\x01\x31\x03\x01\x00\x31\x04\xff\x01"
        !          49685:             "\x32\x03" }  },
        !          49686:       /* --- pixel bitmap for cmex325 char#46 / --- */
        !          49687:       {  46,67193,                      /* character number, location */
        !          49688:           2, 2,  -78, 2,      /* topleft row,col, and botleft row,col */
        !          49689:           { 32,   80, 3,409, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          49690:             "\xf1\xe0\xe0\x22\xe0\xe0\x13\xe0\xe0\x12\xe0\xe0\x13"
        !          49691:             "\x10\xf1\xe0\xe2\x20\xe0\xd3\x20\xf1\xe0\xd2\x30\xe0"
        !          49692:             "\xc3\xe0\xe0\x12\xe0\xe0\x13\x40\xf1\xe0\xb2\x50\xe0"
        !          49693:             "\xa3\xe0\xe0\x12\xe0\xe0\x13\x60\xf1\xe0\x92\x70\xe0"
        !          49694:             "\x83\x70\xf1\xe0\x82\x80\xe0\x73\xe0\xe0\x12\xe0\xe0"
        !          49695:             "\x13\x90\xf1\xe0\x62\xa0\xe0\x53\xe0\xe0\x12\xe0\xe0"
        !          49696:             "\x13\xb0\xf1\xe0\x42\xc0\xe0\x33\xc0\xf1\xe0\x32\xd0"
        !          49697:             "\xe0\x23\xe0\xe0\x12\xe0\xe0\x13\xe0\xf1\xe0\x12\xe0"
        !          49698:             "\x10\xe3\xe0\xe0\x12\xe0\xe0\x13\xe0\x20\xf1\xd2\xe0"
        !          49699:             "\x30\xc3\xe0\x30\xf1\xc2\xe0\x40\xb3\xe0\xe0\x12\xe0"
        !          49700:             "\xe0\x13\xe0\x50\xf1\xa2\xe0\x60\x93\xe0\xe0\x12\xe0"
        !          49701:             "\xe0\x13\xe0\x70\xf1\x82\xe0\x80\x73\xe0\x80\xf1\x72"
        !          49702:             "\xe0\x90\x63\xe0\xe0\x12\xe0\xe0\x13\xe0\xa0\xf1\x52"
        !          49703:             "\xe0\xb0\x43\xe0\xe0\x12\xe0\xe0\x13\xe0\xc0\xf1\x32"
        !          49704:             "\xe0\xd0\x23\xe0\xd0\xf1\x22\xe0\xe0\x13\xe0\xe0\x12"
        !          49705:             "\xe0\xe0\x13\xe0\xe0\x1f\x12\xe0\xe0\x24" }  },
        !          49706:       /* --- pixel bitmap for cmex325 char#47 \ --- */
        !          49707:       {  47,70771,                      /* character number, location */
        !          49708:           2, 2,  -78, 2,      /* topleft row,col, and botleft row,col */
        !          49709:           { 32,   80, 3,404, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          49710:             "\xf1\x02\xe0\xe0\x23\xe0\xe0\x22\xe0\xe0\x23\xe0\xe0"
        !          49711:             "\xf1\x22\xe0\xe0\x23\xe0\xd0\xf1\x32\xe0\xd0\x33\xe0"
        !          49712:             "\xe0\x22\xe0\xe0\x23\xe0\xb0\xf1\x52\xe0\xb0\x53\xe0"
        !          49713:             "\xe0\x22\xe0\xe0\x23\xe0\x90\xf1\x72\xe0\x90\x73\xe0"
        !          49714:             "\x80\xf1\x82\xe0\x80\x83\xe0\xe0\x22\xe0\xe0\x23\xe0"
        !          49715:             "\x60\xf1\xa2\xe0\x60\xa3\xe0\xe0\x22\xe0\xe0\x23\xe0"
        !          49716:             "\x40\xf1\xc2\xe0\x40\xc3\xe0\x30\xf1\xd2\xe0\x30\xd3"
        !          49717:             "\xe0\xe0\x22\xe0\xe0\x23\xe0\x10\xf1\xe0\x12\xe0\x10"
        !          49718:             "\xe0\x13\xe0\xe0\x22\xe0\xe0\x23\xd0\xf1\xe0\x32\xd0"
        !          49719:             "\xe0\x33\xc0\xf1\xe0\x42\xc0\xe0\x43\xe0\xe0\x22\xe0"
        !          49720:             "\xe0\x23\xa0\xf1\xe0\x62\xa0\xe0\x63\xe0\xe0\x22\xe0"
        !          49721:             "\xe0\x23\x80\xf1\xe0\x82\x80\xe0\x83\x70\xf1\xe0\x92"
        !          49722:             "\x70\xe0\x93\xe0\xe0\x22\xe0\xe0\x23\x50\xf1\xe0\xb2"
        !          49723:             "\x50\xe0\xb3\xe0\xe0\x22\xe0\xe0\x23\x30\xf1\xe0\xd2"
        !          49724:             "\x30\xe0\xd3\x20\xf1\xe0\xe2\x20\xe0\xe3\xe0\xe0\x22"
        !          49725:             "\xe0\xe0\x23\xf1\xe0\xe0\x22" }  },
        !          49726:       /* --- pixel bitmap for cmex325 char#48 \leftparentop --- */
        !          49727:       {  48, 4402,                      /* character number, location */
        !          49728:           1,13,  -80,13,      /* topleft row,col, and botleft row,col */
        !          49729:           { 25,   81, 3,205, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          49730:             "\xe0\x92\xe0\x82\xe0\x83\xe0\x82\xe0\x82\xe0\x83\xe0"
        !          49731:             "\x73\xe0\x82\xe0\x83\x50\xf1\xe0\x23\x60\xe0\x13\xe0"
        !          49732:             "\x74\xe0\x73\xe0\x74\xe0\x73\xe0\x74\xe0\x73\xe0\x74"
        !          49733:             "\xe0\x73\xb0\xf1\xa4\xb0\xf1\x94\xc0\x93\xd0\xf1\x84"
        !          49734:             "\xd0\x83\xe0\xf2\x74\xe0\xf2\x64\xe0\x10\xf3\x54\xe0"
        !          49735:             "\x20\x45\xe0\x20\xf2\x44\xe0\x30\xf1\x35\xe0\x30\xf2"
        !          49736:             "\x34\xe0\x40\xf3\x25\xe0\x40\xf2\x24\xe0\x50\xf7\x15"
        !          49737:             "\xe0\x50\xf1\x14\xe0\x6f\xe5\xe0\x6f\x15\xe0\x64" }  },
        !          49738:       /* --- pixel bitmap for cmex325 char#49 \rightparentop --- */
        !          49739:       {  49,10716,                      /* character number, location */
        !          49740:           1, 1,  -80, 1,      /* topleft row,col, and botleft row,col */
        !          49741:           { 25,   81, 3,204, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          49742:             "\x02\xe0\xa2\xe0\x93\xe0\x92\xe0\xa2\xe0\x93\xe0\x93"
        !          49743:             "\xe0\x92\xe0\x93\xe0\x30\xf1\x63\xe0\x20\x73\xe0\x84"
        !          49744:             "\xe0\x83\xe0\x84\xe0\x83\xe0\x84\xe0\x83\xe0\x84\xe0"
        !          49745:             "\x83\xb0\xf1\xb4\xa0\xf1\xc4\x90\xd3\x90\xf1\xd4\x80"
        !          49746:             "\xe3\x80\xf2\xe4\x70\xf2\xe0\x14\x60\xf3\xe0\x24\x50"
        !          49747:             "\xe0\x25\x40\xf2\xe0\x34\x40\xf1\xe0\x35\x30\xf2\xe0"
        !          49748:             "\x44\x30\xf3\xe0\x45\x20\xf2\xe0\x54\x20\xf7\xe0\x55"
        !          49749:             "\x10\xf1\xe0\x64\x10\xfe\xe0\x65\xf1\xe0\x65" }  },
        !          49750:       /* --- pixel bitmap for cmex325 char#50 (noname) --- */
        !          49751:       {  50,17353,                      /* character number, location */
        !          49752:           1,15,  -79,15,      /* topleft row,col, and botleft row,col */
        !          49753:           { 15,   80, 2, 9, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          49754:             "\xff\x02\x00\x0f\x00\xff\x4c\x03\x0c" }  },
        !          49755:       /* --- pixel bitmap for cmex325 char#51 (noname) --- */
        !          49756:       {  51,23716,                      /* character number, location */
        !          49757:           1, 0,  -79, 0,      /* topleft row,col, and botleft row,col */
        !          49758:           { 15,   80, 2, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          49759:             "\xff\x02\x00\x0f\xff\x4c\x0c\x03" }  },
        !          49760:       /* --- pixel bitmap for cmex325 char#52 (noname) --- */
        !          49761:       {  52,18282,                      /* character number, location */
        !          49762:           2,15,  -78,15,      /* topleft row,col, and botleft row,col */
        !          49763:           { 15,   80, 2, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          49764:             "\xff\x4c\x00\x03\x0c\xff\x02\x0f" }  },
        !          49765:       /* --- pixel bitmap for cmex325 char#53 (noname) --- */
        !          49766:       {  53,24632,                      /* character number, location */
        !          49767:           2, 0,  -78, 0,      /* topleft row,col, and botleft row,col */
        !          49768:           { 15,   80, 2, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          49769:             "\xff\x4c\x0c\x03\x00\xff\x02\x0f" }  },
        !          49770:       /* --- pixel bitmap for cmex325 char#54 (noname) --- */
        !          49771:       {  54,19127,                      /* character number, location */
        !          49772:           1,15,  -28,15,      /* topleft row,col, and botleft row,col */
        !          49773:           {  3,   29, 3, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          49774:             "\xfe\x03\x0f\xd3" }  },
        !          49775:       /* --- pixel bitmap for cmex325 char#55 (noname) --- */
        !          49776:       {  55,25464,                      /* character number, location */
        !          49777:           1,12,  -28,12,      /* topleft row,col, and botleft row,col */
        !          49778:           {  3,   29, 3, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          49779:             "\xfe\x03\x0f\xd3" }  },
        !          49780:       /* --- pixel bitmap for cmex325 char#56 \leftbracetop --- */
        !          49781:       {  56,46699,                      /* character number, location */
        !          49782:          -1,17,  -41,17,      /* topleft row,col, and botleft row,col */
        !          49783:           { 15,   40, 3,43, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          49784:             "\xd2\xb4\x95\x95\x95\x95\x95\x50\xf1\x45\x60\x35\x96"
        !          49785:             "\x95\x80\xf2\x16\x8f\xe6\x9f\x96\x94" }  },
        !          49786:       /* --- pixel bitmap for cmex325 char#57 \rightbracetop --- */
        !          49787:       {  57,54898,                      /* character number, location */
        !          49788:          -1, 8,  -41, 8,      /* topleft row,col, and botleft row,col */
        !          49789:           { 15,   40, 3,44, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          49790:             "\x02\xd4\xc5\xb5\xb5\xb5\xb5\x50\xf1\x65\x40\x75\xa6"
        !          49791:             "\xa5\x20\xf2\x86\x10\xfe\x96\xf9\x96" }  },
        !          49792:       /* --- pixel bitmap for cmex325 char#58 \leftbracebot --- */
        !          49793:       {  58,47628,                      /* character number, location */
        !          49794:           1,17,  -39,17,      /* topleft row,col, and botleft row,col */
        !          49795:           { 15,   40, 3,44, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          49796:             "\xfe\x06\x9f\x96\x90\xf2\x16\x80\x25\xa6\xa5\x70\xf1"
        !          49797:             "\x45\x60\x55\xb5\xb5\xb5\xb5\xc4\xd2" }  },
        !          49798:       /* --- pixel bitmap for cmex325 char#59 \rightbracebot --- */
        !          49799:       {  59,55828,                      /* character number, location */
        !          49800:           1, 8,  -39, 8,      /* topleft row,col, and botleft row,col */
        !          49801:           { 15,   40, 3,43, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          49802:             "\xfe\x96\xf9\x96\xf2\x86\x10\x85\x96\x95\x30\xf1\x65"
        !          49803:             "\x40\x55\x95\x95\x95\x95\x94\xb2\xd6" }  },
        !          49804:       /* --- pixel bitmap for cmex325 char#60 \leftbracemid --- */
        !          49805:       {  60,48632,                      /* character number, location */
        !          49806:           1, 8,  -82, 8,      /* topleft row,col, and botleft row,col */
        !          49807:           { 15,   83, 3,96, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          49808:             "\xfe\x96\xf9\x96\x95\x10\xf2\x86\x10\x85\x96\x20\xf1"
        !          49809:             "\x75\x30\x65\xa4\xa4\xa5\xa4\xa4\xa3\xa4\xb2\xd4\xd3"
        !          49810:             "\xd4\xc4\xb5\xb4\xc4\xb5\x40\xf1\x75\x30\x76\xa5\x20"
        !          49811:             "\xf2\x86\x10\x95\x10\xfe\x96\xf9\x96" }  },
        !          49812:       /* --- pixel bitmap for cmex325 char#61 \rightbracemid --- */
        !          49813:       {  61,56833,                      /* character number, location */
        !          49814:           1,17,  -82,17,      /* topleft row,col, and botleft row,col */
        !          49815:           { 15,   83, 3,97, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          49816:             "\xfe\x06\x9f\x96\x90\x15\x90\xf2\x16\x80\x25\xa6\x70"
        !          49817:             "\xf1\x35\x70\x45\xb4\xc4\xb5\xb4\xc4\xd3\xd4\xd2\xb4"
        !          49818:             "\xa3\xa4\xa4\xa5\xa4\xa4\xa5\x60\xf1\x35\x70\x26\x95"
        !          49819:             "\x80\xf2\x16\x80\x15\x9f\xe6\x9f\x96\x93" }  },
        !          49820:       /* --- pixel bitmap for cmex325 char#62 \leftbracebar --- */
        !          49821:       {  62,49586,                      /* character number, location */
        !          49822:           1,17,  -14,17,      /* topleft row,col, and botleft row,col */
        !          49823:           {  6,   15, 3, 4, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          49824:             "\xfe\x06" }  },
        !          49825:       /* --- pixel bitmap for cmex325 char#63 (noname) --- */
        !          49826:       {  63,76871,                      /* character number, location */
        !          49827:           1,14,  -28,14,      /* topleft row,col, and botleft row,col */
        !          49828:           {  2,   29, 3, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          49829:             "\xfe\x02\x0f\xd2" }  },
        !          49830:       /* --- pixel bitmap for cmex325 char#64 \leftparenbot --- */
        !          49831:       {  64, 5347,                      /* character number, location */
        !          49832:           3,13,  -78,13,      /* topleft row,col, and botleft row,col */
        !          49833:           { 25,   81, 3,204, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          49834:             "\xfe\x05\xe0\x6f\x15\xe0\x60\xf1\x14\xe0\x60\xf7\x15"
        !          49835:             "\xe0\x50\xf2\x24\xe0\x50\xf3\x25\xe0\x40\xf2\x34\xe0"
        !          49836:             "\x40\xf1\x35\xe0\x30\xf2\x44\xe0\x30\x45\xe0\x20\xf3"
        !          49837:             "\x54\xe0\x20\xf2\x64\xe0\x10\xf2\x74\xe0\x83\xe0\xf1"
        !          49838:             "\x84\xd0\x93\xd0\xf1\x94\xc0\xf1\xa4\xb0\xb3\xe0\x84"
        !          49839:             "\xe0\x83\xe0\x84\xe0\x83\xe0\x84\xe0\x83\xe0\x84\xe0"
        !          49840:             "\x83\x70\xf1\xe0\x23\x60\xe0\x33\xe0\x92\xe0\x93\xe0"
        !          49841:             "\x93\xe0\x92\xe0\xa2\xe0\x93\xe0\x92\xe0\xa2" }  },
        !          49842:       /* --- pixel bitmap for cmex325 char#65 \rightparenbot --- */
        !          49843:       {  65,11662,                      /* character number, location */
        !          49844:           3, 1,  -78, 1,      /* topleft row,col, and botleft row,col */
        !          49845:           { 25,   81, 3,205, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          49846:             "\xfe\xe0\x65\xf1\xe0\x65\xf1\xe0\x64\x10\xf7\xe0\x55"
        !          49847:             "\x10\xf2\xe0\x54\x20\xf3\xe0\x45\x20\xf2\xe0\x44\x30"
        !          49848:             "\xf1\xe0\x35\x30\xf2\xe0\x34\x40\xe0\x25\x40\xf3\xe0"
        !          49849:             "\x24\x50\xf2\xe0\x14\x60\xf2\xe4\x70\xe3\x80\xf1\xd4"
        !          49850:             "\x80\xd3\x90\xf1\xc4\x90\xf1\xb4\xa0\xb3\xe0\x74\xe0"
        !          49851:             "\x73\xe0\x74\xe0\x73\xe0\x74\xe0\x73\xe0\x74\xe0\x73"
        !          49852:             "\xe0\x10\xf1\x63\xe0\x20\x53\xe0\x82\xe0\x83\xe0\x73"
        !          49853:             "\xe0\x82\xe0\x82\xe0\x83\xe0\x82\xe0\x82\xe0\x94" }  },
        !          49854:       /* --- pixel bitmap for cmex325 char#66 \leftparenbar --- */
        !          49855:       {  66, 6305,                      /* character number, location */
        !          49856:           1,13,  -28,13,      /* topleft row,col, and botleft row,col */
        !          49857:           {  5,   29, 3, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          49858:             "\xfe\x05\x0f\xd5" }  },
        !          49859:       /* --- pixel bitmap for cmex325 char#67 \rightparenbar --- */
        !          49860:       {  67,12621,                      /* character number, location */
        !          49861:           1,21,  -28,21,      /* topleft row,col, and botleft row,col */
        !          49862:           {  5,   29, 3, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          49863:             "\xfe\x05\x0f\xd5" }  },
        !          49864:       /* --- pixel bitmap for cmex325 char#68 \Big< --- */
        !          49865:       {  68,60623,                      /* character number, location */
        !          49866:           2, 5,  -78, 5,      /* topleft row,col, and botleft row,col */
        !          49867:           { 18,   80, 3,290, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          49868:             "\xf1\xe0\x22\xe0\x13\xe0\x12\xe0\x13\x10\xf1\xe2\x20"
        !          49869:             "\xd3\xe0\x12\xe0\x13\xe0\x12\xe0\x13\x40\xf1\xb2\x50"
        !          49870:             "\xa3\xe0\x12\xe0\x13\x60\xf1\x92\x70\x83\xe0\x12\xe0"
        !          49871:             "\x13\x80\xf1\x72\x90\x63\xe0\x12\xe0\x13\xa0\xf1\x52"
        !          49872:             "\xb0\x43\xe0\x12\xe0\x13\xe0\x12\xe0\x13\xd0\xf1\x22"
        !          49873:             "\xe0\x13\xe0\x12\xe0\x13\xe0\x1f\x12\xe0\x23\xe0\x22"
        !          49874:             "\xe0\x23\xe0\xf1\x22\xe0\x23\xe0\x22\xe0\x23\xe0\x22"
        !          49875:             "\xe0\x23\xb0\xf1\x52\xb0\x53\xe0\x22\xe0\x23\x90\xf1"
        !          49876:             "\x72\x90\x73\xe0\x22\xe0\x23\x70\xf1\x92\x70\x93\xe0"
        !          49877:             "\x22\xe0\x23\x50\xf1\xb2\x50\xb3\xe0\x22\xe0\x23\xe0"
        !          49878:             "\x22\xe0\x23\x20\xf1\xe2\x20\xe3\xe0\x22\xe0\x23\xf1"
        !          49879:             "\xe0\x22" }  },
        !          49880:       /* --- pixel bitmap for cmex325 char#69 \Big> --- */
        !          49881:       {  69,63873,                      /* character number, location */
        !          49882:           2, 4,  -78, 4,      /* topleft row,col, and botleft row,col */
        !          49883:           { 18,   80, 3,291, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          49884:             "\xf1\x02\xe0\x23\xe0\x22\xe0\x23\xe0\xf1\x22\xe0\x23"
        !          49885:             "\xe0\x22\xe0\x23\xe0\x22\xe0\x23\xb0\xf1\x52\xb0\x53"
        !          49886:             "\xe0\x22\xe0\x23\x90\xf1\x72\x90\x73\xe0\x22\xe0\x23"
        !          49887:             "\x70\xf1\x92\x70\x93\xe0\x22\xe0\x23\x50\xf1\xb2\x50"
        !          49888:             "\xb3\xe0\x22\xe0\x23\xe0\x22\xe0\x23\x20\xf1\xe2\x20"
        !          49889:             "\xe3\xe0\x22\xe0\x23\xf1\xe0\x22\xe0\x13\xe0\x12\xe0"
        !          49890:             "\x13\x10\xf1\xe2\x20\xd3\xe0\x12\xe0\x13\xe0\x12\xe0"
        !          49891:             "\x13\x40\xf1\xb2\x50\xa3\xe0\x12\xe0\x13\x60\xf1\x92"
        !          49892:             "\x70\x83\xe0\x12\xe0\x13\x80\xf1\x72\x90\x63\xe0\x12"
        !          49893:             "\xe0\x13\xa0\xf1\x52\xb0\x43\xe0\x12\xe0\x13\xe0\x12"
        !          49894:             "\xe0\x13\xd0\xf1\x22\xe0\x13\xe0\x12\xe0\x13\xe0\x1f"
        !          49895:             "\x12\xe0\x20" }  },
        !          49896:       /* --- pixel bitmap for cmex325 char#70 \bigsqcup --- */
        !          49897:       {  70,88552,                      /* character number, location */
        !          49898:           0, 2,  -45, 2,      /* topleft row,col, and botleft row,col */
        !          49899:           { 33,   45, 2,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          49900:             "\xff\x29\x00\x03\x1b\x03\x00\xff\x01\x21\x01\x20" }  },
        !          49901:       /* --- pixel bitmap for cmex325 char#71 \Bigsqcup --- */
        !          49902:       {  71,89583,                      /* character number, location */
        !          49903:           0, 3,  -63, 3,      /* topleft row,col, and botleft row,col */
        !          49904:           { 44,   63, 2,17, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          49905:             "\x01\x02\x26\x02\x01\xff\x39\x04\x24\x04\x00\xff\x02"
        !          49906:             "\x2c\x01\x2a\x01" }  },
        !          49907:       /* --- pixel bitmap for cmex325 char#72 \oint --- */
        !          49908:       {  72,110419,                     /* character number, location */
        !          49909:           0, 2,  -50, 2,      /* topleft row,col, and botleft row,col */
        !          49910:           { 26,   50, 3,169, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          49911:             "\xe0\x45\xe0\x62\x42\xe0\x32\x53\xf1\xe0\x12\x54\xe3"
        !          49912:             "\x62\x10\xf1\xe2\xa0\xf5\xd3\xa0\xf1\xc4\xa0\xa7\xe0"
        !          49913:             "\x3b\xe3\x24\x13\xc3\x33\x33\xb2\x43\x42\xa3\x34\x43"
        !          49914:             "\x40\xf4\x52\x44\x52\x40\x53\x34\x43\xa2\x34\x42\xb3"
        !          49915:             "\x23\x43\xc3\x13\x33\xeb\xe0\x37\x90\xf2\xa4\xc0\xf5"
        !          49916:             "\xa3\xd0\xf1\xa2\xe0\x12\x63\xef\x14\x52\xe0\x13\x52"
        !          49917:             "\xe0\x32\x42\xe0\x65\xe0\x40" }  },
        !          49918:       /* --- pixel bitmap for cmex325 char#73 \Bigoint --- */
        !          49919:       {  73,111577,                     /* character number, location */
        !          49920:           0, 2,  -100, 2,     /* topleft row,col, and botleft row,col */
        !          49921:           { 41,  100, 3,465, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          49922:             "\xe0\xe0\x64\xe0\xe0\x72\x42\xe0\xe0\x42\x53\xe0\xe0"
        !          49923:             "\x23\x44\xe0\xe0\x22\x54\xe0\xe0\x13\x62\xe0\xe0\x23"
        !          49924:             "\x90\xf2\xe0\xe3\xa0\xe0\xd4\xa0\xf1\xe0\xd3\xb0\xf1"
        !          49925:             "\xe0\xc4\xb0\xf1\xe0\xc3\xc0\xf2\xe0\xb4\xc0\xe0\xb3"
        !          49926:             "\xd0\xf3\xe0\xa4\xd0\xf3\xe0\x94\xe0\xf1\xe0\x85\xe0"
        !          49927:             "\xf2\xe0\x84\xe0\x10\xf1\xe0\x75\xe0\x10\xf1\xe0\x74"
        !          49928:             "\xe0\x20\xe0\x38\xe0\xe0\x3b\xe0\xe4\x38\xe0\xb3\x55"
        !          49929:             "\x13\xe0\x93\x64\x33\xe0\x73\x65\x43\xe0\x53\x75\x53"
        !          49930:             "\x90\xf1\x92\x85\x62\x90\x83\x84\x73\x80\xf3\x82\x85"
        !          49931:             "\x82\x80\x83\x74\x83\x80\xf1\x92\x65\x82\x90\x93\x55"
        !          49932:             "\x73\xe0\x53\x45\x63\xe0\x73\x34\x63\xe0\x93\x15\x53"
        !          49933:             "\xe0\xb8\x34\xe0\xeb\xe0\xe0\x38\xe0\x30\xf1\xe0\x24"
        !          49934:             "\xe0\x70\xf1\xe0\x15\xe0\x70\xf2\xe0\x14\xe0\x80\xf1"
        !          49935:             "\xe5\xe0\x80\xf3\xe4\xe0\x90\xf3\xd4\xe0\xa0\xd3\xe0"
        !          49936:             "\xb0\xf2\xc4\xe0\xb0\xf1\xc3\xe0\xc0\xf1\xb4\xe0\xc0"
        !          49937:             "\xf1\xb3\xe0\xd0\xa4\xe0\xd0\xf2\xa3\xe0\xe0\x93\xe0"
        !          49938:             "\xe0\x22\x63\xe0\xe0\x14\x52\xe0\xe0\x24\x43\xe0\xe0"
        !          49939:             "\x23\x52\xe0\xe0\x42\x42\xe0\xe0\x74\xe0\xe0\x60" }  },
        !          49940:       /* --- pixel bitmap for cmex325 char#74 \bigodot --- */
        !          49941:       {  74,90739,                      /* character number, location */
        !          49942:           0, 3,  -45, 3,      /* topleft row,col, and botleft row,col */
        !          49943:           { 44,   45, 3,305, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          49944:             "\xe0\x3a\xe0\xe0\x3e\x02\xe0\xce\x06\xe0\x88\x88\xe0"
        !          49945:             "\x56\xe6\xe0\x35\xe0\x45\xe0\x14\xe0\x84\xd4\xe0\xa4"
        !          49946:             "\xb4\xe0\xc4\x94\xe0\xe4\x74\xe0\xe0\x24\x63\xe0\xe0"
        !          49947:             "\x43\x54\xe0\xe0\x44\x43\xe0\xe0\x63\x34\xe0\xe0\x64"
        !          49948:             "\x10\xf1\x13\xe0\xe0\x83\x14\xe0\xe0\x87\xe0\xe0\xa6"
        !          49949:             "\xe0\x42\xe0\x46\xe0\x34\xe0\x33\x0f\x23\xe0\x26\xe0"
        !          49950:             "\x23\x03\xe0\x34\xe0\x36\xe0\x42\xe0\x46\xe0\xe0\xa7"
        !          49951:             "\xe0\xe0\x84\xf1\x13\xe0\xe0\x83\x10\x14\xe0\xe0\x64"
        !          49952:             "\x33\xe0\xe0\x63\x44\xe0\xe0\x44\x53\xe0\xe0\x43\x64"
        !          49953:             "\xe0\xe0\x24\x74\xe0\xe4\x94\xe0\xc4\xb4\xe0\xa4\xd4"
        !          49954:             "\xe0\x84\xe0\x15\xe0\x45\xe0\x36\xe6\xe0\x58\x88\xe0"
        !          49955:             "\x8e\x06\xe0\xce\x02\xe0\xe0\x3a\xe0\x30" }  },
        !          49956:       /* --- pixel bitmap for cmex325 char#75 \Bigodot --- */
        !          49957:       {  75,92018,                      /* character number, location */
        !          49958:           0, 3,  -63, 3,      /* topleft row,col, and botleft row,col */
        !          49959:           { 62,   63, 2,229, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          49960:             "\x19\x0c\x2e\x14\x28\x18\x24\x1c\x20\x0b\x0a\x0b\x1d"
        !          49961:             "\x08\x12\x08\x1a\x08\x16\x08\x17\x07\x1a\x07\x15\x06"
        !          49962:             "\x1e\x06\x13\x06\x20\x06\x11\x06\x22\x06\x0f\x06\x24"
        !          49963:             "\x06\x0d\x06\x26\x06\x0b\x06\x28\x06\x0a\x05\x2a\x05"
        !          49964:             "\x09\x05\x2c\x05\x07\x06\x2c\x06\x06\x05\x2e\x05\x06"
        !          49965:             "\x04\x30\x04\x03\x00\xff\x01\x02\x05\x30\x05\x02\x00"
        !          49966:             "\xff\x01\x01\x05\x32\x05\x01\x00\xff\x01\x01\x04\x34"
        !          49967:             "\x04\x01\xff\x01\x05\x34\x05\x00\x04\x36\x08\x19\x04"
        !          49968:             "\x19\x08\x18\x06\x18\x04\x00\xff\x02\x04\x17\x08\x17"
        !          49969:             "\x04\x00\x04\x18\x06\x18\x08\x19\x04\x19\x08\x36\x04"
        !          49970:             "\x00\xff\x01\x05\x34\x05\xff\x01\x01\x04\x34\x04\x01"
        !          49971:             "\x00\xff\x01\x01\x05\x32\x05\x01\x00\xff\x01\x02\x05"
        !          49972:             "\x30\x05\x02\x00\x03\x04\x30\x04\x06\x05\x2e\x05\x06"
        !          49973:             "\x06\x2c\x06\x07\x05\x2c\x05\x09\x05\x2a\x05\x0a\x06"
        !          49974:             "\x28\x06\x0b\x06\x26\x06\x0d\x06\x24\x06\x0f\x06\x22"
        !          49975:             "\x06\x11\x06\x20\x06\x13\x06\x1e\x06\x15\x07\x1a\x07"
        !          49976:             "\x17\x08\x16\x08\x1a\x08\x12\x08\x1d\x0b\x0a\x0b\x20"
        !          49977:             "\x1c\x24\x18\x28\x14\x2e\x0c\x19" }  },
        !          49978:       /* --- pixel bitmap for cmex325 char#76 \bigoplus --- */
        !          49979:       {  76,93181,                      /* character number, location */
        !          49980:           0, 3,  -45, 3,      /* topleft row,col, and botleft row,col */
        !          49981:           { 44,   45, 3,303, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          49982:             "\xe0\x3a\xe0\xe0\x3e\x02\xe0\xce\x06\xe0\x88\x33\x28"
        !          49983:             "\xe0\x56\x63\x56\xe0\x35\x83\x75\xe0\x14\xa3\x94\xd4"
        !          49984:             "\xb3\xa4\xb4\xc3\xb4\x94\xd3\xc4\x74\xe3\xd4\x63\xe0"
        !          49985:             "\x13\xe3\x54\xe0\x13\xe4\x43\xe0\x23\xe0\x13\x34\xe0"
        !          49986:             "\x23\xe0\x14\x10\xf1\x13\xe0\x33\xe0\x23\x14\xe0\x33"
        !          49987:             "\xe0\x24\x0f\x23\xe0\x43\xe0\x33\x0f\x2e\x0e\x0e\x02"
        !          49988:             "\x0f\x23\xe0\x43\xe0\x33\x04\xe0\x33\xe0\x24\xf1\x13"
        !          49989:             "\xe0\x33\xe0\x23\x10\x14\xe0\x23\xe0\x14\x33\xe0\x23"
        !          49990:             "\xe0\x13\x44\xe0\x13\xe4\x53\xe0\x13\xe3\x64\xe3\xd4"
        !          49991:             "\x74\xd3\xc4\x94\xc3\xb4\xb4\xb3\xa4\xd4\xa3\x94\xe0"
        !          49992:             "\x15\x83\x75\xe0\x36\x63\x56\xe0\x58\x33\x28\xe0\x8e"
        !          49993:             "\x06\xe0\xce\x02\xe0\xe0\x3a\xe0\x30" }  },
        !          49994:       /* --- pixel bitmap for cmex325 char#77 \Bigoplus --- */
        !          49995:       {  77,94513,                      /* character number, location */
        !          49996:           0, 3,  -63, 3,      /* topleft row,col, and botleft row,col */
        !          49997:           { 62,   63, 3,497, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          49998:             "\xe0\xbc\xe0\xe0\xe0\x4e\x06\xe0\xe0\xce\x0a\xe0\xe0"
        !          49999:             "\x8e\x0e\xe0\xe0\x4b\x34\x3b\xe0\xe0\x18\x74\x78\xe0"
        !          50000:             "\xc8\x94\x98\xe0\x97\xb4\xb7\xe0\x76\xd4\xd6\xe0\x56"
        !          50001:             "\xe4\xe6\xe0\x36\xe0\x14\xe0\x16\xe0\x16\xe0\x24\xe0"
        !          50002:             "\x26\xd6\xe0\x34\xe0\x36\xb6\xe0\x44\xe0\x46\xa5\xe0"
        !          50003:             "\x54\xe0\x55\x95\xe0\x64\xe0\x65\x76\xe0\x64\xe0\x66"
        !          50004:             "\x65\xe0\x74\xe0\x75\x64\xe0\x84\xe0\x84\x30\xf1\x25"
        !          50005:             "\xe0\x84\xe0\x85\x20\xf1\x15\xe0\x94\xe0\x95\x10\xf1"
        !          50006:             "\x14\xe0\xa4\xe0\xa4\x1f\x15\xe0\xa4\xe0\xa5\x0f\x14"
        !          50007:             "\xe0\xb4\xe0\xb4\x0f\x3e\x0e\x0e\x0e\x06\x0f\x24\xe0"
        !          50008:             "\xb4\xe0\xb4\x0f\x15\xe0\xa4\xe0\xa5\xf1\x14\xe0\xa4"
        !          50009:             "\xe0\xa4\x10\xf1\x15\xe0\x94\xe0\x95\x10\xf1\x25\xe0"
        !          50010:             "\x84\xe0\x85\x20\x34\xe0\x84\xe0\x84\x65\xe0\x74\xe0"
        !          50011:             "\x75\x66\xe0\x64\xe0\x66\x75\xe0\x64\xe0\x65\x95\xe0"
        !          50012:             "\x54\xe0\x55\xa6\xe0\x44\xe0\x46\xb6\xe0\x34\xe0\x36"
        !          50013:             "\xd6\xe0\x24\xe0\x26\xe0\x16\xe0\x14\xe0\x16\xe0\x36"
        !          50014:             "\xe4\xe6\xe0\x56\xd4\xd6\xe0\x77\xb4\xb7\xe0\x98\x94"
        !          50015:             "\x98\xe0\xc8\x74\x78\xe0\xe0\x1b\x34\x3b\xe0\xe0\x4e"
        !          50016:             "\x0e\xe0\xe0\x8e\x0a\xe0\xe0\xce\x06\xe0\xe0\xe0\x4c"
        !          50017:             "\xe0\xb6" }  },
        !          50018:       /* --- pixel bitmap for cmex325 char#78 \bigotimes --- */
        !          50019:       {  78,95757,                      /* character number, location */
        !          50020:           0, 3,  -45, 3,      /* topleft row,col, and botleft row,col */
        !          50021:           { 44,   45, 3,331, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          50022:             "\xe0\x3a\xe0\xe0\x3e\x02\xe0\xce\x06\xe0\x88\x88\xe0"
        !          50023:             "\x56\xe6\xe0\x35\xe0\x45\xe0\x14\xe0\x84\xd4\xe0\xa4"
        !          50024:             "\xb5\xe0\xa5\x97\xe0\x87\x74\x14\xe0\x64\x14\x63\x34"
        !          50025:             "\xe0\x44\x33\x54\x44\xe0\x24\x44\x43\x64\xe4\x63\x34"
        !          50026:             "\x74\xc4\x74\x23\x94\xa4\x93\x23\xa4\x84\xa3\x14\xb4"
        !          50027:             "\x64\xb7\xd4\x44\xd6\xe4\x24\xe6\xe0\x18\xe0\x16\xe0"
        !          50028:             "\x26\xe0\x26\xe0\x34\xe0\x36\xe0\x26\xe0\x26\xe0\x18"
        !          50029:             "\xe0\x16\xe4\x24\xe6\xd4\x44\xd7\xb4\x64\xb4\x13\xa4"
        !          50030:             "\x84\xa3\x23\x94\xa4\x93\x24\x74\xc4\x74\x33\x64\xe4"
        !          50031:             "\x63\x44\x44\xe0\x24\x44\x53\x34\xe0\x44\x33\x64\x14"
        !          50032:             "\xe0\x64\x14\x77\xe0\x87\x95\xe0\xa5\xb4\xe0\xa4\xd4"
        !          50033:             "\xe0\x84\xe0\x15\xe0\x45\xe0\x36\xe6\xe0\x58\x88\xe0"
        !          50034:             "\x8e\x06\xe0\xce\x02\xe0\xe0\x3a\xe0\x35" }  },
        !          50035:       /* --- pixel bitmap for cmex325 char#79 \Bigotimes --- */
        !          50036:       {  79,97114,                      /* character number, location */
        !          50037:           0, 3,  -63, 3,      /* topleft row,col, and botleft row,col */
        !          50038:           { 62,   63, 3,579, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          50039:             "\xe0\xbc\xe0\xe0\xe0\x4e\x06\xe0\xe0\xce\x0a\xe0\xe0"
        !          50040:             "\x8e\x0e\xe0\xe0\x4b\xab\xe0\xe0\x18\xe0\x48\xe0\xc8"
        !          50041:             "\xe0\x88\xe0\x97\xe0\xc7\xe0\x76\xe0\xe0\x26\xe0\x56"
        !          50042:             "\xe0\xe0\x46\xe0\x36\xe0\xe0\x66\xe0\x17\xe0\xe0\x67"
        !          50043:             "\xd9\xe0\xe0\x49\xbb\xe0\xe0\x2b\xa5\x16\xe0\xe6\x15"
        !          50044:             "\x95\x36\xe0\xc6\x35\x76\x46\xe0\xa6\x46\x65\x66\xe0"
        !          50045:             "\x86\x65\x64\x86\xe0\x66\x84\x55\x96\xe0\x46\x95\x45"
        !          50046:             "\xa6\xe0\x26\xa5\x35\xc6\xe6\xc5\x25\xd6\xc6\xd5\x24"
        !          50047:             "\xe0\x16\xa6\xe0\x14\x24\xe0\x26\x86\xe0\x24\x15\xe0"
        !          50048:             "\x36\x66\xe0\x3a\xe0\x46\x46\xe0\x49\xe0\x66\x26\xe0"
        !          50049:             "\x68\xe0\x7c\xe0\x78\xe0\x8a\xe0\x88\xe0\x98\xe0\x98"
        !          50050:             "\xe0\xa6\xe0\xa8\xe0\x98\xe0\x98\xe0\x8a\xe0\x88\xe0"
        !          50051:             "\x7c\xe0\x78\xe0\x66\x26\xe0\x69\xe0\x46\x46\xe0\x4a"
        !          50052:             "\xe0\x36\x66\xe0\x35\x14\xe0\x26\x86\xe0\x24\x24\xe0"
        !          50053:             "\x16\xa6\xe0\x14\x25\xd6\xc6\xd5\x25\xc6\xe6\xc5\x35"
        !          50054:             "\xa6\xe0\x26\xa5\x45\x96\xe0\x46\x95\x54\x86\xe0\x66"
        !          50055:             "\x84\x65\x66\xe0\x86\x65\x66\x46\xe0\xa6\x46\x75\x36"
        !          50056:             "\xe0\xc6\x35\x95\x16\xe0\xe6\x15\xab\xe0\xe0\x2b\xb9"
        !          50057:             "\xe0\xe0\x49\xd7\xe0\xe0\x67\xe0\x16\xe0\xe0\x66\xe0"
        !          50058:             "\x36\xe0\xe0\x46\xe0\x56\xe0\xe0\x26\xe0\x77\xe0\xc7"
        !          50059:             "\xe0\x98\xe0\x88\xe0\xc8\xe0\x48\xe0\xe0\x1b\xab\xe0"
        !          50060:             "\xe0\x4e\x0e\xe0\xe0\x8e\x0a\xe0\xe0\xce\x06\xe0\xe0"
        !          50061:             "\xe0\x4c\xe0\xb0" }  },
        !          50062:       /* --- pixel bitmap for cmex325 char#80 \sum --- */
        !          50063:       {  80,98724,                      /* character number, location */
        !          50064:           0, 2,  -45, 2,      /* topleft row,col, and botleft row,col */
        !          50065:           { 43,   45, 2,127, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          50066:             "\x00\x27\x04\x28\x04\x04\x19\x0a\x04\x05\x1c\x06\x05"
        !          50067:             "\x05\x1d\x05\x05\x05\x1e\x03\x06\x04\x1f\x02\x06\x05"
        !          50068:             "\x1f\x02\x06\x05\x1f\x01\x07\x05\x1e\x01\x08\x04\x1f"
        !          50069:             "\x01\x07\x05\x27\x05\x27\x04\x27\x05\x27\x05\x27\x05"
        !          50070:             "\x27\x04\x27\x05\x27\x05\x27\x05\x27\x04\x27\x05\x27"
        !          50071:             "\x03\x28\x02\x28\x03\x27\x03\x28\x02\x28\x02\x28\x02"
        !          50072:             "\x28\x03\x27\x03\x28\x02\x28\x02\x1f\x01\x08\x02\x1f"
        !          50073:             "\x01\x08\x03\x1f\x01\x07\x03\x1f\x02\x07\x02\x1f\x02"
        !          50074:             "\x07\x02\x1f\x03\x06\x02\x1f\x04\x05\x03\x1c\x06\x05"
        !          50075:             "\x03\x1a\x09\x05\x26\x04\x26\x04\x27\x04" }  },
        !          50076:       /* --- pixel bitmap for cmex325 char#81 \prod --- */
        !          50077:       {  81,101844,                     /* character number, location */
        !          50078:           0, 2,  -45, 2,      /* topleft row,col, and botleft row,col */
        !          50079:           { 38,   45, 2,28, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          50080:             "\xff\x01\x00\x26\x03\x06\x14\x06\x03\x00\xff\x26\x05"
        !          50081:             "\x04\x14\x04\x05\x00\x03\x08\x10\x08\x03\xff\x01\x0e"
        !          50082:             "\x0a\x0e" }  },
        !          50083:       /* --- pixel bitmap for cmex325 char#82 \int --- */
        !          50084:       {  82,108144,                     /* character number, location */
        !          50085:           0, 2,  -50, 2,      /* topleft row,col, and botleft row,col */
        !          50086:           { 26,   50, 3,113, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          50087:             "\xe0\x45\xe0\x62\x42\xe0\x32\x53\xf1\xe0\x12\x54\xe3"
        !          50088:             "\x62\x10\xf1\xe2\xa0\xf5\xd3\xa0\xf4\xc4\xa0\xf1\xc3"
        !          50089:             "\xb0\xf7\xb4\xb0\xf1\xb3\xc0\xf4\xa4\xc0\xf5\xa3\xd0"
        !          50090:             "\xf1\xa2\xe0\x12\x63\xef\x14\x52\xe0\x13\x52\xe0\x32"
        !          50091:             "\x42\xe0\x65\xe0\x40" }  },
        !          50092:       /* --- pixel bitmap for cmex325 char#83 \bigcup --- */
        !          50093:       {  83,112605,                     /* character number, location */
        !          50094:           0, 2,  -45, 2,      /* topleft row,col, and botleft row,col */
        !          50095:           { 33,   45, 3,89, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          50096:             "\xfe\x03\xe0\xd3\x0f\xe3\xe0\xd3\x0f\x23\xe0\xd3\x04"
        !          50097:             "\xe0\xb4\x13\xe0\xb3\x24\xe0\x94\x33\xe0\x93\x44\xe0"
        !          50098:             "\x74\x54\xe0\x54\x74\xe0\x34\x95\xd5\xb7\x77\xde\x05"
        !          50099:             "\xe0\x2e\x01\xe0\x79\xc3" }  },
        !          50100:       /* --- pixel bitmap for cmex325 char#84 \bigcap --- */
        !          50101:       {  84,114627,                     /* character number, location */
        !          50102:           0, 2,  -45, 2,      /* topleft row,col, and botleft row,col */
        !          50103:           { 33,   45, 3,88, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          50104:             "\xc9\xe0\x7e\x01\xe0\x2e\x05\xd7\x77\xb5\xd5\x94\xe0"
        !          50105:             "\x34\x74\xe0\x54\x54\xe0\x74\x43\xe0\x93\x34\xe0\x94"
        !          50106:             "\x23\xe0\xb3\x14\xe0\xb4\x0f\xe3\xe0\xd3\x0f\xe3\xe0"
        !          50107:             "\xd3\x0f\x23\xe0\xd3" }  },
        !          50108:       /* --- pixel bitmap for cmex325 char#85 \biguplus --- */
        !          50109:       {  85,116714,                     /* character number, location */
        !          50110:           0, 2,  -45, 2,      /* topleft row,col, and botleft row,col */
        !          50111:           { 33,   45, 3,115, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          50112:             "\xfa\x03\xe0\xd3\x0f\x83\xc3\xc3\x0f\x13\x3e\x07\x33"
        !          50113:             "\x03\x4e\x05\x43\x0f\x73\xc3\xc3\x03\xd1\xd6\xe0\xd7"
        !          50114:             "\xe0\xb4\x13\xe0\xb3\x24\xe0\x94\x33\xe0\x93\x44\xe0"
        !          50115:             "\x74\x54\xe0\x54\x74\xe0\x34\x95\xd5\xb7\x77\xde\x05"
        !          50116:             "\xe0\x2e\x01\xe0\x79\xc4" }  },
        !          50117:       /* --- pixel bitmap for cmex325 char#86 \bigwedge --- */
        !          50118:       {  86,118868,                     /* character number, location */
        !          50119:           0, 2,  -45, 2,      /* topleft row,col, and botleft row,col */
        !          50120:           { 33,   45, 3,226, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          50121:             "\xe0\x22\xe0\xe0\x23\xe0\x10\xf2\xe5\xe0\xd7\xd0\xf1"
        !          50122:             "\xd3\x13\xd0\xc4\x14\xc0\xf1\xc3\x33\xc0\xb4\x34\xb0"
        !          50123:             "\xf1\xb3\x53\xb0\xa4\x54\xe0\x63\x73\xe0\x54\x74\x90"
        !          50124:             "\xf1\x93\x93\x90\x84\x94\x80\xf1\x83\xb3\x80\x74\xb4"
        !          50125:             "\x70\xf1\x73\xd3\x70\x64\xd4\x60\xf1\x63\xe0\x13\x60"
        !          50126:             "\x54\xe0\x14\xa3\xe0\x33\x94\xe0\x34\x40\xf1\x43\xe0"
        !          50127:             "\x53\x40\x34\xe0\x54\x30\xf1\x33\xe0\x73\x30\x24\xe0"
        !          50128:             "\x74\x20\xf1\x23\xe0\x93\x20\x14\xe0\x94\x10\xf1\x13"
        !          50129:             "\xe0\xb3\x14\xe0\xb7\xe0\xd6\xe0\xe2" }  },
        !          50130:       /* --- pixel bitmap for cmex325 char#87 \bigvee --- */
        !          50131:       {  87,120818,                     /* character number, location */
        !          50132:           0, 2,  -45, 2,      /* topleft row,col, and botleft row,col */
        !          50133:           { 33,   45, 3,227, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          50134:             "\x03\xe0\xe5\xe0\xd7\xe0\xb4\xf1\x13\xe0\xb3\x10\x14"
        !          50135:             "\xe0\x94\x10\xf1\x23\xe0\x93\x20\x24\xe0\x74\x20\xf1"
        !          50136:             "\x33\xe0\x73\x30\x34\xe0\x54\x30\xf1\x43\xe0\x53\x40"
        !          50137:             "\x44\xe0\x34\x93\xe0\x33\xa4\xe0\x14\x50\xf1\x63\xe0"
        !          50138:             "\x13\x60\x64\xd4\x60\xf1\x73\xd3\x70\x74\xb4\x70\xf1"
        !          50139:             "\x83\xb3\x80\x84\x94\x80\xf1\x93\x93\x90\x94\x74\xe0"
        !          50140:             "\x53\x73\xe0\x64\x54\xa0\xf1\xb3\x53\xb0\xb4\x34\xb0"
        !          50141:             "\xf1\xc3\x33\xc0\xc4\x14\xc0\xf1\xd3\x13\xd0\xd7\xd0"
        !          50142:             "\xf2\xe5\xe0\xe0\x13\xe0\xe0\x32\xe0\x15" }  },
        !          50143:       /* --- pixel bitmap for cmex325 char#88 \Bigsum --- */
        !          50144:       {  88,100283,                     /* character number, location */
        !          50145:           0, 3,  -63, 3,      /* topleft row,col, and botleft row,col */
        !          50146:           { 60,   63, 2,175, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          50147:             "\x00\x37\x05\x38\x05\x07\x22\x0e\x05\x08\x27\x08\x06"
        !          50148:             "\x08\x29\x06\x06\x07\x2b\x04\x07\x07\x2b\x04\x06\x08"
        !          50149:             "\x2c\x02\x07\x08\x2c\x02\x07\x07\x2d\x01\x08\x07\x2c"
        !          50150:             "\x01\x08\x08\x2c\x01\x08\x07\x36\x07\x35\x08\x35\x08"
        !          50151:             "\x35\x07\x36\x07\x35\x08\x35\x08\x35\x07\x36\x07\x35"
        !          50152:             "\x08\x35\x07\x36\x07\x35\x08\x35\x08\x35\x07\x36\x07"
        !          50153:             "\x35\x08\x35\x08\x35\x07\x1f\x00\xff\x01\x17\x05\x20"
        !          50154:             "\x00\x18\x03\x38\x03\x38\x03\x38\x03\x38\x03\x38\x04"
        !          50155:             "\x38\x03\x38\x03\x38\x03\x38\x03\x38\x03\x2a\x00\xff"
        !          50156:             "\x01\x0e\x03\x2b\x00\x0d\x03\x38\x03\x38\x03\x2d\x01"
        !          50157:             "\x0a\x03\x2d\x01\x0a\x03\x2e\x01\x09\x04\x2d\x02\x09"
        !          50158:             "\x03\x2d\x02\x09\x03\x2d\x03\x08\x03\x2c\x05\x07\x03"
        !          50159:             "\x2b\x06\x07\x03\x29\x09\x06\x04\x24\x0e\x06\x35\x06"
        !          50160:             "\x36\x05\x37\x04\x37\x05" }  },
        !          50161:       /* --- pixel bitmap for cmex325 char#89 \Bigprod --- */
        !          50162:       {  89,103574,                     /* character number, location */
        !          50163:           0, 2,  -63, 2,      /* topleft row,col, and botleft row,col */
        !          50164:           { 53,   63, 2,36, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          50165:             "\xff\x02\x00\x35\x04\x0a\x19\x0a\x0a\x08\x19\x08\x06"
        !          50166:             "\x00\xff\x34\x07\x07\x19\x07\x07\x00\x06\x09\x17\x09"
        !          50167:             "\x0a\x0d\x13\x0d\x04\xff\x02\x15\x0b\x15" }  },
        !          50168:       /* --- pixel bitmap for cmex325 char#90 \Bigint --- */
        !          50169:       {  90,109242,                     /* character number, location */
        !          50170:           0, 2,  -100, 2,     /* topleft row,col, and botleft row,col */
        !          50171:           { 41,  100, 3,401, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          50172:             "\xe0\xe0\x64\xe0\xe0\x72\x42\xe0\xe0\x42\x53\xe0\xe0"
        !          50173:             "\x23\x44\xe0\xe0\x22\x54\xe0\xe0\x13\x62\xe0\xe0\x23"
        !          50174:             "\x90\xf2\xe0\xe3\xa0\xe0\xd4\xa0\xf1\xe0\xd3\xb0\xf1"
        !          50175:             "\xe0\xc4\xb0\xf1\xe0\xc3\xc0\xf2\xe0\xb4\xc0\xe0\xb3"
        !          50176:             "\xd0\xf3\xe0\xa4\xd0\xf3\xe0\x94\xe0\xf1\xe0\x85\xe0"
        !          50177:             "\xf2\xe0\x84\xe0\x10\xf1\xe0\x75\xe0\x10\xf1\xe0\x74"
        !          50178:             "\xe0\x20\xf3\xe0\x65\xe0\x20\xe0\x64\xe0\x30\xf3\xe0"
        !          50179:             "\x55\xe0\x30\xe0\x54\xe0\x40\xf3\xe0\x45\xe0\x40\xe0"
        !          50180:             "\x44\xe0\x50\xf3\xe0\x35\xe0\x50\xe0\x34\xe0\x60\xf3"
        !          50181:             "\xe0\x25\xe0\x60\xf1\xe0\x24\xe0\x70\xf1\xe0\x15\xe0"
        !          50182:             "\x70\xf2\xe0\x14\xe0\x80\xf1\xe5\xe0\x80\xf3\xe4\xe0"
        !          50183:             "\x90\xf3\xd4\xe0\xa0\xd3\xe0\xb0\xf2\xc4\xe0\xb0\xf1"
        !          50184:             "\xc3\xe0\xc0\xf1\xb4\xe0\xc0\xf1\xb3\xe0\xd0\xa4\xe0"
        !          50185:             "\xd0\xf2\xa3\xe0\xe0\x93\xe0\xe0\x22\x63\xe0\xe0\x14"
        !          50186:             "\x52\xe0\xe0\x24\x43\xe0\xe0\x23\x52\xe0\xe0\x42\x42"
        !          50187:             "\xe0\xe0\x74\xe0\xe0\x63" }  },
        !          50188:       /* --- pixel bitmap for cmex325 char#91 \Bigcup --- */
        !          50189:       {  91,113644,                     /* character number, location */
        !          50190:           0, 3,  -63, 3,      /* topleft row,col, and botleft row,col */
        !          50191:           { 44,   63, 2,75, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          50192:             "\x01\x02\x26\x02\x01\xff\x2b\x04\x24\x04\x00\xff\x01"
        !          50193:             "\x05\x22\x05\x01\x04\x22\x04\x01\x00\xff\x01\x01\x05"
        !          50194:             "\x20\x05\x01\x00\x02\x05\x1e\x05\x04\x06\x1c\x06\x05"
        !          50195:             "\x05\x1c\x05\x07\x05\x1a\x05\x08\x06\x18\x06\x09\x06"
        !          50196:             "\x16\x06\x0b\x07\x12\x07\x0d\x08\x0e\x08\x10\x09\x08"
        !          50197:             "\x09\x13\x18\x16\x14\x1a\x10\x1f\x0a\x11" }  },
        !          50198:       /* --- pixel bitmap for cmex325 char#92 \Bigcap --- */
        !          50199:       {  92,115673,                     /* character number, location */
        !          50200:           0, 3,  -63, 3,      /* topleft row,col, and botleft row,col */
        !          50201:           { 44,   63, 2,75, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          50202:             "\x11\x0a\x1f\x10\x1a\x14\x16\x18\x13\x09\x08\x09\x10"
        !          50203:             "\x08\x0e\x08\x0d\x07\x12\x07\x0b\x06\x16\x06\x09\x06"
        !          50204:             "\x18\x06\x08\x05\x1a\x05\x07\x05\x1c\x05\x05\x06\x1c"
        !          50205:             "\x06\x04\x05\x1e\x05\x02\x00\xff\x01\x01\x05\x20\x05"
        !          50206:             "\x01\x00\x01\x04\x22\x04\x01\xff\x01\x05\x22\x05\x00"
        !          50207:             "\xff\x2b\x04\x24\x04\x01\x02\x26\x02\x01" }  },
        !          50208:       /* --- pixel bitmap for cmex325 char#93 \Biguplus --- */
        !          50209:       {  93,117860,                     /* character number, location */
        !          50210:           0, 3,  -63, 3,      /* topleft row,col, and botleft row,col */
        !          50211:           { 44,   63, 3,189, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          50212:             "\x12\xe0\xe0\xa2\x1f\xe4\xe0\xe0\x84\x0f\xb4\xe0\x24"
        !          50213:             "\xe0\x24\x0f\x24\x4e\x0e\x44\x04\x5e\x0c\x54\x0f\xa4"
        !          50214:             "\xe0\x24\xe0\x24\x04\xe0\x32\xe0\x38\xe0\xe0\x84\x0f"
        !          50215:             "\x15\xe0\xe0\x65\x14\xe0\xe0\x64\x10\xf1\x15\xe0\xe0"
        !          50216:             "\x45\x10\x25\xe0\xe0\x25\x46\xe0\xe6\x55\xe0\xe5\x75"
        !          50217:             "\xe0\xc5\x86\xe0\xa6\x96\xe0\x86\xb7\xe0\x47\xd8\xe8"
        !          50218:             "\xe0\x29\x89\xe0\x5e\x0a\xe0\x8e\x06\xe0\xce\x02\xe0"
        !          50219:             "\xe0\x3a\xe0\x34" }  },
        !          50220:       /* --- pixel bitmap for cmex325 char#94 \Bigwedge --- */
        !          50221:       {  94,119877,                     /* character number, location */
        !          50222:           0, 3,  -63, 3,      /* topleft row,col, and botleft row,col */
        !          50223:           { 44,   63, 3,367, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          50224:             "\xe0\x72\xe0\xe0\xd4\xe0\x60\xf2\xe0\x56\xe0\x50\xf2"
        !          50225:             "\xe0\x48\xe0\x40\xf1\xe0\x3a\xe0\x30\xe0\x34\x24\xe0"
        !          50226:             "\x30\xf1\xe0\x25\x25\xe0\x20\xe0\x24\x44\xe0\x20\xf1"
        !          50227:             "\xe0\x15\x45\xe0\x10\xe0\x14\x64\xe0\x10\xf1\xe5\x65"
        !          50228:             "\xe0\xe4\x84\xe0\xf1\xd5\x85\xd0\xd4\xa4\xd0\xf1\xc5"
        !          50229:             "\xa5\xc0\xc4\xc4\xc0\xf1\xb5\xc5\xb0\xb4\xe4\xb0\xf1"
        !          50230:             "\xa5\xe5\xa0\xa4\xe0\x24\xa0\xf1\x95\xe0\x25\x90\x94"
        !          50231:             "\xe0\x44\x90\xf1\x85\xe0\x45\x80\x84\xe0\x64\x80\xf1"
        !          50232:             "\x75\xe0\x65\x70\x74\xe0\x84\x70\xf1\x65\xe0\x85\x60"
        !          50233:             "\x64\xe0\xa4\x60\xf1\x55\xe0\xa5\x50\x54\xe0\xc4\x50"
        !          50234:             "\xf1\x45\xe0\xc5\x40\x44\xe0\xe4\x40\xf1\x35\xe0\xe5"
        !          50235:             "\x30\x34\xe0\xe0\x24\x30\xf1\x25\xe0\xe0\x25\x20\x24"
        !          50236:             "\xe0\xe0\x44\x20\xf1\x15\xe0\xe0\x45\x10\x14\xe0\xe0"
        !          50237:             "\x64\x1f\x15\xe0\xe0\x65\x04\xe0\xe0\x84\x12\xe0\xe0"
        !          50238:             "\xa2\x12" }  },
        !          50239:       /* --- pixel bitmap for cmex325 char#95 \Bigvee --- */
        !          50240:       {  95,121828,                     /* character number, location */
        !          50241:           0, 3,  -63, 3,      /* topleft row,col, and botleft row,col */
        !          50242:           { 44,   63, 3,367, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          50243:             "\x12\xe0\xe0\xa2\x14\xe0\xe0\x84\x0f\x15\xe0\xe0\x65"
        !          50244:             "\x14\xe0\xe0\x64\x10\xf1\x15\xe0\xe0\x45\x10\x24\xe0"
        !          50245:             "\xe0\x44\x20\xf1\x25\xe0\xe0\x25\x20\x34\xe0\xe0\x24"
        !          50246:             "\x30\xf1\x35\xe0\xe5\x30\x44\xe0\xe4\x40\xf1\x45\xe0"
        !          50247:             "\xc5\x40\x54\xe0\xc4\x50\xf1\x55\xe0\xa5\x50\x64\xe0"
        !          50248:             "\xa4\x60\xf1\x65\xe0\x85\x60\x74\xe0\x84\x70\xf1\x75"
        !          50249:             "\xe0\x65\x70\x84\xe0\x64\x80\xf1\x85\xe0\x45\x80\x94"
        !          50250:             "\xe0\x44\x90\xf1\x95\xe0\x25\x90\xa4\xe0\x24\xa0\xf1"
        !          50251:             "\xa5\xe5\xa0\xb4\xe4\xb0\xf1\xb5\xc5\xb0\xc4\xc4\xc0"
        !          50252:             "\xf1\xc5\xa5\xc0\xd4\xa4\xd0\xf1\xd5\x85\xd0\xe4\x84"
        !          50253:             "\xe0\xf1\xe5\x65\xe0\xe0\x14\x64\xe0\x10\xf1\xe0\x15"
        !          50254:             "\x45\xe0\x10\xe0\x24\x44\xe0\x20\xf1\xe0\x25\x25\xe0"
        !          50255:             "\x20\xe0\x34\x24\xe0\x30\xf1\xe0\x3a\xe0\x30\xf2\xe0"
        !          50256:             "\x48\xe0\x40\xf2\xe0\x56\xe0\x50\xe0\x64\xe0\xe0\xd2"
        !          50257:             "\xe0\x72" }  },
        !          50258:       /* --- pixel bitmap for cmex325 char#96 \coprod --- */
        !          50259:       {  96,105217,                     /* character number, location */
        !          50260:           0, 2,  -45, 2,      /* topleft row,col, and botleft row,col */
        !          50261:           { 38,   45, 2,28, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          50262:             "\xff\x01\x00\x0e\x0a\x0e\x03\x08\x10\x08\x03\x00\xff"
        !          50263:             "\x26\x05\x04\x14\x04\x05\x00\x03\x06\x14\x06\x03\xff"
        !          50264:             "\x01\x26" }  },
        !          50265:       /* --- pixel bitmap for cmex325 char#97 \Bigcoprod --- */
        !          50266:       {  97,106949,                     /* character number, location */
        !          50267:           0, 2,  -63, 2,      /* topleft row,col, and botleft row,col */
        !          50268:           { 53,   63, 2,36, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          50269:             "\xff\x02\x00\x15\x0b\x15\x04\x0d\x13\x0d\x0a\x09\x17"
        !          50270:             "\x09\x06\x00\xff\x34\x07\x07\x19\x07\x07\x00\x06\x08"
        !          50271:             "\x19\x08\x0a\x0a\x19\x0a\x04\xff\x02\x35" }  },
        !          50272:       /* --- pixel bitmap for cmex325 char#98 ^ --- */
        !          50273:       {  98,122731,                     /* character number, location */
        !          50274:          33, 0,   25, 0,      /* topleft row,col, and botleft row,col */
        !          50275:           { 25,    8, 3,34, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          50276:             "\xc1\xe0\x85\xe0\x49\xe5\x35\xb4\x74\x83\xd3\x43\xe0"
        !          50277:             "\x33\x12\xe0\x72" }  },
        !          50278:       /* --- pixel bitmap for cmex325 char#99 ^ --- */
        !          50279:       {  99,123618,                     /* character number, location */
        !          50280:          35, 0,   26, 0,      /* topleft row,col, and botleft row,col */
        !          50281:           { 45,    9, 3,60, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          50282:             "\xe0\x73\xe0\xe0\xb9\xe0\xe0\x6d\xe0\xe0\x17\x57\xe0"
        !          50283:             "\x97\xb7\xe0\x36\xe0\x56\xc5\xe0\xb5\x74\xe0\xe0\x54"
        !          50284:             "\x23\xe0\xe0\xb3" }  },
        !          50285:       /* --- pixel bitmap for cmex325 char#100 ^ --- */
        !          50286:       { 100,124718,                     /* character number, location */
        !          50287:          35, 0,   26, 0,      /* topleft row,col, and botleft row,col */
        !          50288:           { 65,    9, 2,30, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          50289:             "\x1f\x03\x3a\x0b\x32\x13\x2a\x0a\x07\x0a\x22\x09\x11"
        !          50290:             "\x09\x1a\x08\x1b\x08\x12\x07\x25\x07\x0a\x06\x2f\x06"
        !          50291:             "\x03\x04\x39\x04" }  },
        !          50292:       /* --- pixel bitmap for cmex325 char#101 ~ --- */
        !          50293:       { 101,125447,                     /* character number, location */
        !          50294:          32, 0,   27, 0,      /* topleft row,col, and botleft row,col */
        !          50295:           { 25,    5, 3,23, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          50296:             "\x65\xd1\x49\x92\x33\x55\x53\x32\x99\x41\xd5\x6e" }  },
        !          50297:       /* --- pixel bitmap for cmex325 char#102 ~ --- */
        !          50298:       { 102,126377,                     /* character number, location */
        !          50299:          34, 0,   28, 0,      /* topleft row,col, and botleft row,col */
        !          50300:           { 45,    6, 3,41, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          50301:             "\xb8\xe0\xb1\x8e\xe0\x53\x64\xa5\xe0\x13\x63\xe0\x15"
        !          50302:             "\xa4\x63\xe0\x5e\x81\xe0\xb8\xb0" }  },
        !          50303:       /* --- pixel bitmap for cmex325 char#103 ~ --- */
        !          50304:       { 103,127522,                     /* character number, location */
        !          50305:          34, 0,   28, 0,      /* topleft row,col, and botleft row,col */
        !          50306:           { 65,    6, 2,29, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          50307:             "\x10\x0b\x24\x02\x0b\x14\x1d\x03\x0a\x04\x10\x06\x17"
        !          50308:             "\x03\x0a\x03\x17\x06\x10\x04\x0a\x03\x1d\x14\x0b\x02"
        !          50309:             "\x24\x0b\x10" }  },
        !          50310:       /* --- pixel bitmap for cmex325 char#104 \Big[ --- */
        !          50311:       { 104,14325,                      /* character number, location */
        !          50312:           2,10,  -78,10,      /* topleft row,col, and botleft row,col */
        !          50313:           { 10,   80, 2,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          50314:             "\xff\x01\x00\x0a\x00\xff\x4b\x02\x08\xff\x01\x0a" }  },
        !          50315:       /* --- pixel bitmap for cmex325 char#105 \Big] --- */
        !          50316:       { 105,20779,                      /* character number, location */
        !          50317:           2, 1,  -78, 1,      /* topleft row,col, and botleft row,col */
        !          50318:           { 10,   80, 2,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          50319:             "\xff\x01\x00\x0a\xff\x4b\x08\x02\x00\xff\x01\x0a" }  },
        !          50320:       /* --- pixel bitmap for cmex325 char#106 (noname) --- */
        !          50321:       { 106,27206,                      /* character number, location */
        !          50322:           2,10,  -78,10,      /* topleft row,col, and botleft row,col */
        !          50323:           { 13,   80, 2, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          50324:             "\xff\x4d\x00\x02\x0b\xff\x01\x0d" }  },
        !          50325:       /* --- pixel bitmap for cmex325 char#107 (noname) --- */
        !          50326:       { 107,31190,                      /* character number, location */
        !          50327:           2, 1,  -78, 1,      /* topleft row,col, and botleft row,col */
        !          50328:           { 13,   80, 2, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          50329:             "\xff\x4d\x0b\x02\x00\xff\x01\x0d" }  },
        !          50330:       /* --- pixel bitmap for cmex325 char#108 (noname) --- */
        !          50331:       { 108,35152,                      /* character number, location */
        !          50332:           2,10,  -78,10,      /* topleft row,col, and botleft row,col */
        !          50333:           { 13,   80, 2, 9, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          50334:             "\xff\x01\x00\x0d\x00\xff\x4d\x02\x0b" }  },
        !          50335:       /* --- pixel bitmap for cmex325 char#109 (noname) --- */
        !          50336:       { 109,39144,                      /* character number, location */
        !          50337:           2, 1,  -78, 1,      /* topleft row,col, and botleft row,col */
        !          50338:           { 13,   80, 2, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          50339:             "\xff\x01\x00\x0d\xff\x4d\x0b\x02" }  },
        !          50340:       /* --- pixel bitmap for cmex325 char#110 \Big{ --- */
        !          50341:       { 110,43300,                      /* character number, location */
        !          50342:           2, 5,  -78, 5,      /* topleft row,col, and botleft row,col */
        !          50343:           { 20,   80, 3,132, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          50344:             "\xe0\x33\xe0\x15\xd5\xe4\xe0\x13\xe0\x23\x70\xf1\x93"
        !          50345:             "\x80\xfe\x83\x90\xf9\x83\x90\xf1\x73\xa0\x63\xe0\x23"
        !          50346:             "\xe0\x14\xe0\x13\xe0\x1f\x14\xe0\x20\x23\xe0\x44\xe0"
        !          50347:             "\x43\xe0\x43\xb0\xf1\x73\xa0\xfe\x83\x90\xf9\x83\x90"
        !          50348:             "\xf1\x93\x80\xa3\xe0\x43\xe0\x44\xe0\x35\xe0\x35\xe0"
        !          50349:             "\x33" }  },
        !          50350:       /* --- pixel bitmap for cmex325 char#111 \Big} --- */
        !          50351:       { 111,51496,                      /* character number, location */
        !          50352:           2, 5,  -78, 5,      /* topleft row,col, and botleft row,col */
        !          50353:           { 20,   80, 3,139, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          50354:             "\x03\xe0\x35\xe0\x34\xe0\x44\xe0\x34\xe0\x33\xb0\xf1"
        !          50355:             "\x73\xa0\xfe\x83\x90\xf8\x83\x90\x84\xe0\x33\x80\xf1"
        !          50356:             "\xa3\x70\xb4\xe0\x43\xe0\x44\x20\xf1\xe0\x24\xe4\xe0"
        !          50357:             "\x13\xe0\x14\x50\xf1\xa3\x70\x93\xe0\x24\x80\xfe\x83"
        !          50358:             "\x90\xf8\x83\x90\xf1\x73\xa0\x63\xe0\x24\xe0\x14\xe4"
        !          50359:             "\xe5\xe0\x13\xe0\x33" }  },
        !          50360:       /* --- pixel bitmap for cmex325 char#112 (noname) --- */
        !          50361:       { 112,81112,                      /* character number, location */
        !          50362:           2, 5,  -52, 5,      /* topleft row,col, and botleft row,col */
        !          50363:           { 42,   54, 2,159, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          50364:             "\x28\x02\x27\x03\x27\x02\x27\x03\x27\x02\x27\x03\x27"
        !          50365:             "\x02\x27\x03\x27\x02\x27\x03\x27\x02\x27\x03\x27\x02"
        !          50366:             "\x27\x03\x27\x02\x27\x03\x27\x02\x27\x03\x27\x02\x27"
        !          50367:             "\x03\x27\x02\x27\x03\x27\x02\x27\x03\x27\x02\x27\x03"
        !          50368:             "\x27\x02\x12\x01\x14\x03\x11\x03\x13\x02\x11\x04\x12"
        !          50369:             "\x03\x0f\x02\x01\x04\x11\x02\x0f\x02\x02\x04\x10\x03"
        !          50370:             "\x13\x04\x10\x02\x15\x04\x0e\x03\x15\x04\x0e\x02\x17"
        !          50371:             "\x04\x0c\x03\x17\x04\x0c\x02\x19\x04\x0a\x03\x19\x04"
        !          50372:             "\x0a\x02\x1b\x04\x08\x03\x1b\x04\x08\x02\x1c\x04\x07"
        !          50373:             "\x03\x1d\x04\x06\x02\x1e\x04\x05\x03\x1f\x04\x04\x02"
        !          50374:             "\x20\x04\x03\x03\x21\x04\x02\x02\x22\x04\x01\x03\x17"
        !          50375:             "\x00\xff\x01\x0c\x06\x18\x00\x0c\x05\x26\x04\x26\x03"
        !          50376:             "\x28\x02\x1a" }  },
        !          50377:       /* --- pixel bitmap for cmex325 char#113 (noname) --- */
        !          50378:       { 113,82175,                      /* character number, location */
        !          50379:           2, 5,  -79, 5,      /* topleft row,col, and botleft row,col */
        !          50380:           { 42,   81, 3,475, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          50381:             "\xf1\xe0\xe0\xc2\xe0\xe0\xb3\xf1\xe0\xe0\xb2\x10\xe0"
        !          50382:             "\xe0\xa3\x10\xf1\xe0\xe0\xa2\x20\xe0\xe0\x93\x20\xf1"
        !          50383:             "\xe0\xe0\x92\x30\xe0\xe0\x83\x30\xf1\xe0\xe0\x82\x40"
        !          50384:             "\xe0\xe0\x73\x40\xf1\xe0\xe0\x72\x50\xe0\xe0\x63\x50"
        !          50385:             "\xf1\xe0\xe0\x62\x60\xe0\xe0\x53\x60\xf1\xe0\xe0\x52"
        !          50386:             "\x70\xe0\xe0\x43\x70\xf1\xe0\xe0\x42\x80\xe0\xe0\x33"
        !          50387:             "\x80\xf1\xe0\xe0\x32\x90\xe0\xe0\x23\x90\xf1\xe0\xe0"
        !          50388:             "\x22\xa0\xe0\xe0\x13\xa0\xf1\xe0\xe0\x12\xb0\xe0\xe3"
        !          50389:             "\xb0\xf1\xe0\xe2\xc0\xe0\xd3\xc0\xf1\xe0\xd2\xd0\x51"
        !          50390:             "\xe0\x72\xe0\x33\xe0\x53\xe0\x24\xe0\x52\xe0\x25\xe0"
        !          50391:             "\x52\xe0\x25\xe0\x43\xe0\x11\x24\xe0\x32\xe0\x11\x34"
        !          50392:             "\xe0\x32\xe0\x54\xe0\x23\xe0\x10\xf1\x54\xe0\x12\xe0"
        !          50393:             "\x20\x54\xe3\xe0\x20\xf1\x64\xd2\xe0\x30\x64\xc3\xe0"
        !          50394:             "\x94\xc2\xe0\xb4\xb2\xe0\xb4\xa3\xe0\xb4\xa2\xe0\xd4"
        !          50395:             "\x92\xe0\xd4\x83\xe0\xd4\x82\xe0\xe0\x14\x72\xe0\xe0"
        !          50396:             "\x14\x63\xe0\x60\xf1\x94\x62\xe0\x70\xa4\x43\xe0\x70"
        !          50397:             "\xf1\xa4\x42\xe0\x80\xb4\x23\xe0\x80\xf1\xb4\x22\xe0"
        !          50398:             "\x90\xb4\x13\xe0\x90\xf2\xc6\xe0\xa0\xf2\xd4\xe0\xb0"
        !          50399:             "\xf1\xe2\xe0\xc0" }  },
        !          50400:       /* --- pixel bitmap for cmex325 char#114 (noname) --- */
        !          50401:       { 114,83315,                      /* character number, location */
        !          50402:           2, 5,  -106, 5,     /* topleft row,col, and botleft row,col */
        !          50403:           { 42,  108, 3,521, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          50404:             "\xf2\xe0\xe0\xc2\xe0\xe0\xb3\xf2\xe0\xe0\xb2\x10\xe0"
        !          50405:             "\xe0\xa3\x10\xf2\xe0\xe0\xa2\x20\xe0\xe0\x93\x20\xf2"
        !          50406:             "\xe0\xe0\x92\x30\xe0\xe0\x83\x30\xf2\xe0\xe0\x82\x40"
        !          50407:             "\xe0\xe0\x73\x40\xf2\xe0\xe0\x72\x50\xe0\xe0\x63\x50"
        !          50408:             "\xf2\xe0\xe0\x62\x60\xe0\xe0\x53\x60\xf2\xe0\xe0\x52"
        !          50409:             "\x70\xe0\xe0\x43\x70\xf2\xe0\xe0\x42\x80\xe0\xe0\x33"
        !          50410:             "\x80\xf2\xe0\xe0\x32\x90\xe0\xe0\x23\x90\xf2\xe0\xe0"
        !          50411:             "\x22\xa0\xe0\xe0\x13\xa0\xf2\xe0\xe0\x12\xb0\xe0\xe3"
        !          50412:             "\xb0\xf2\xe0\xe2\xc0\xe0\xd3\xc0\xf2\xe0\xd2\xd0\x51"
        !          50413:             "\xe0\x72\xe0\x33\xe0\x53\xe0\x33\xe0\x52\xe0\x34\xe0"
        !          50414:             "\x52\xe0\x25\xe0\x52\xe0\x25\xe0\x43\xe0\x11\x24\xe0"
        !          50415:             "\x32\xe0\x12\x24\xe0\x32\xe0\x11\x34\xe0\x32\xe0\x54"
        !          50416:             "\xe0\x23\xe0\x10\xf2\x54\xe0\x12\xe0\x20\x54\xe3\xe0"
        !          50417:             "\x74\xe2\xe0\x30\xf1\x64\xd2\xe0\x30\x64\xc3\xe0\x94"
        !          50418:             "\xc2\xe0\x40\xf1\x74\xb2\xe0\x40\x74\xa3\xe0\x40\xf1"
        !          50419:             "\x74\xa2\xe0\x50\x84\x92\xe0\xd4\x83\xe0\x50\xf1\x84"
        !          50420:             "\x82\xe0\x60\x94\x72\xe0\xe0\x14\x63\xe0\x60\xf2\x94"
        !          50421:             "\x62\xe0\x70\xa4\x43\xe0\x70\xf2\xa4\x42\xe0\x80\xb4"
        !          50422:             "\x23\xe0\x80\xf2\xb4\x22\xe0\x90\xb4\x13\xe0\x90\xf3"
        !          50423:             "\xc6\xe0\xa0\xf3\xd4\xe0\xb0\xd3\xe0\xc0\xf1\xe2\xe0"
        !          50424:             "\xc0" }  },
        !          50425:       /* --- pixel bitmap for cmex325 char#115 (noname) --- */
        !          50426:       { 115,84531,                      /* character number, location */
        !          50427:           2, 5,  -133, 5,     /* topleft row,col, and botleft row,col */
        !          50428:           { 42,  135, 3,541, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          50429:             "\xf2\xe0\xe0\xc2\xe0\xe0\xb3\xf3\xe0\xe0\xb2\x10\xe0"
        !          50430:             "\xe0\xa3\x10\xf3\xe0\xe0\xa2\x20\xe0\xe0\x93\x20\xf3"
        !          50431:             "\xe0\xe0\x92\x30\xe0\xe0\x83\x30\xf4\xe0\xe0\x82\x40"
        !          50432:             "\xe0\xe0\x73\x40\xf3\xe0\xe0\x72\x50\xe0\xe0\x63\x50"
        !          50433:             "\xf3\xe0\xe0\x62\x60\xe0\xe0\x53\x60\xf3\xe0\xe0\x52"
        !          50434:             "\x70\xe0\xe0\x43\x70\xf3\xe0\xe0\x42\x80\xe0\xe0\x33"
        !          50435:             "\x80\xf3\xe0\xe0\x32\x90\xe0\xe0\x23\x90\xf3\xe0\xe0"
        !          50436:             "\x22\xa0\xe0\xe0\x13\xa0\xf3\xe0\xe0\x12\xb0\xe0\xe3"
        !          50437:             "\xb0\xf3\xe0\xe2\xc0\xe0\xd3\xc0\xf2\xe0\xd2\xd0\xf1"
        !          50438:             "\x51\xe0\x72\xd0\x43\xe0\x53\xe0\x33\xe0\x52\xe0\xf1"
        !          50439:             "\x34\xe0\x52\xe0\x25\xe0\x52\xe0\x25\xe0\x43\xe0\xf1"
        !          50440:             "\x11\x24\xe0\x32\xe0\x11\x34\xe0\x32\xe0\x54\xe0\x32"
        !          50441:             "\xe0\x54\xe0\x23\xe0\x54\xe0\x22\xe0\x20\xf2\x54\xe0"
        !          50442:             "\x12\xe0\x20\x54\xe3\xe0\x74\xe2\xe0\x30\xf2\x64\xd2"
        !          50443:             "\xe0\x30\x64\xc3\xe0\x30\xf1\x64\xc2\xe0\x40\xf1\x74"
        !          50444:             "\xb2\xe0\x40\x74\xa3\xe0\x40\xf1\x74\xa2\xe0\x50\xf1"
        !          50445:             "\x84\x92\xe0\x50\x84\x83\xe0\x50\xf2\x84\x82\xe0\x60"
        !          50446:             "\x94\x72\xe0\xe0\x14\x63\xe0\x60\xf3\x94\x62\xe0\x70"
        !          50447:             "\xa4\x43\xe0\x70\xf3\xa4\x42\xe0\x80\xb4\x32\xe0\xe0"
        !          50448:             "\x54\x23\xe0\x80\xf3\xb4\x22\xe0\x90\xc7\xe0\x90\xf4"
        !          50449:             "\xc6\xe0\xa0\xf4\xd4\xe0\xb0\xf2\xe2\xe0\xc0" }  },
        !          50450:       /* --- pixel bitmap for cmex325 char#116 (noname) --- */
        !          50451:       { 116,85863,                      /* character number, location */
        !          50452:           1, 5,  -81, 5,      /* topleft row,col, and botleft row,col */
        !          50453:           { 28,   82, 3,215, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          50454:             "\xf9\xe0\xc2\xf1\x52\xe0\x52\x43\xe0\x52\x44\xe0\x42"
        !          50455:             "\xf1\x35\xe0\x42\x21\x14\xe0\x42\x21\x24\xe0\x32\xf1"
        !          50456:             "\x11\x34\xe0\x32\x01\x54\xe0\x22\xf1\x64\xe0\x22\xf2"
        !          50457:             "\x74\xe0\x12\xf2\x84\xe2\xf2\x94\xd2\xf2\xa4\xc2\xf2"
        !          50458:             "\xb4\xb2\xf2\xc4\xa2\xf2\xd4\x92\xf2\xe4\x82\xf2\xe0"
        !          50459:             "\x14\x72\xf2\xe0\x24\x62\xf2\xe0\x34\x52\xf2\xe0\x44"
        !          50460:             "\x42\xf2\xe0\x54\x32\xf2\xe0\x64\x22\xf2\xe0\x74\x12"
        !          50461:             "\xf2\xe0\x86\xf2\xe0\x95\xf2\xe0\xa4\xf2\xe0\xb3\xe0"
        !          50462:             "\xc2\xe0\xc1\x12" }  },
        !          50463:       /* --- pixel bitmap for cmex325 char#117 (noname) --- */
        !          50464:       { 117,86942,                      /* character number, location */
        !          50465:           1,31,  -28,31,      /* topleft row,col, and botleft row,col */
        !          50466:           {  2,   29, 3, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          50467:             "\xfe\x02\x0f\xd2" }  },
        !          50468:       /* --- pixel bitmap for cmex325 char#118 (noname) --- */
        !          50469:       { 118,87791,                      /* character number, location */
        !          50470:           2,31,  -26,31,      /* topleft row,col, and botleft row,col */
        !          50471:           { 18,   28, 2, 9, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          50472:             "\xff\x01\x00\x12\x00\xff\x19\x02\x10" }  },
        !          50473:       /* --- pixel bitmap for cmex325 char#119 (noname) --- */
        !          50474:       { 119,80087,                      /* character number, location */
        !          50475:           1,12,  -28,12,      /* topleft row,col, and botleft row,col */
        !          50476:           { 12,   29, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          50477:             "\xfe\x02\x82\x0f\xd2\x82" }  },
        !          50478:       /* --- pixel bitmap for cmex325 char#120 (noname) --- */
        !          50479:       { 120,75137,                      /* character number, location */
        !          50480:          -1, 5,  -27, 5,      /* topleft row,col, and botleft row,col */
        !          50481:           { 20,   26, 3,51, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          50482:             "\x92\xe0\x34\xe0\x16\xd8\xb3\x12\x13\x84\x22\x24\x44"
        !          50483:             "\x42\x44\x13\x62\x64\x82\x81\xfe\x92\x90\xf1\x92\x90" }  },
        !          50484:       /* --- pixel bitmap for cmex325 char#121 (noname) --- */
        !          50485:       { 121,76108,                      /* character number, location */
        !          50486:           0, 5,  -26, 5,      /* topleft row,col, and botleft row,col */
        !          50487:           { 20,   26, 3,51, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          50488:             "\xfe\x92\x90\xf1\x92\x91\x82\x84\x62\x63\x14\x42\x44"
        !          50489:             "\x44\x22\x24\x83\x12\x13\xb8\xd6\xe0\x14\xe0\x32\x90" }  },
        !          50490:       /* --- pixel bitmap for cmex325 char#122 (noname) --- */
        !          50491:       { 122,57566,                      /* character number, location */
        !          50492:           6,-1,   -9,-1,      /* topleft row,col, and botleft row,col */
        !          50493:           { 22,   15, 3,49, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          50494:             "\xe0\x26\xd9\xbb\x9d\x8e\x6e\x02\x5a\xb7\xe6\xe0\x24"
        !          50495:             "\xe0\x34\xe0\x33\xe0\x52\xe0\x53\xe0\x52\xe0\x62" }  },
        !          50496:       /* --- pixel bitmap for cmex325 char#123 (noname) --- */
        !          50497:       { 123,58164,                      /* character number, location */
        !          50498:           6,-1,   -9,-1,      /* topleft row,col, and botleft row,col */
        !          50499:           { 22,   15, 3,50, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          50500:             "\x06\xe0\x29\xdb\xbd\x9e\x8e\x02\xda\xe0\x27\xe0\x36"
        !          50501:             "\xe0\x44\xe0\x54\xe0\x63\xe0\x62\xe0\x63\xe0\x62" }  },
        !          50502:       /* --- pixel bitmap for cmex325 char#124 (noname) --- */
        !          50503:       { 124,58759,                      /* character number, location */
        !          50504:          15,-1,    0,-1,      /* topleft row,col, and botleft row,col */
        !          50505:           { 22,   15, 3,50, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          50506:             "\x02\xe0\x63\xe0\x62\xe0\x63\xe0\x64\xe0\x54\xe0\x46"
        !          50507:             "\xe0\x37\xe0\x2a\xde\x02\x8e\x9d\xbb\xd9\xe0\x26" }  },
        !          50508:       /* --- pixel bitmap for cmex325 char#125 (noname) --- */
        !          50509:       { 125,59355,                      /* character number, location */
        !          50510:          15,-1,    0,-1,      /* topleft row,col, and botleft row,col */
        !          50511:           { 22,   15, 3,49, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          50512:             "\xe0\x62\xe0\x53\xe0\x52\xe0\x53\xe0\x34\xe0\x34\xe0"
        !          50513:             "\x26\xe7\xba\x5e\x02\x6e\x8d\x9b\xb9\xd6\xe0\x26" }  },
        !          50514:       /* --- pixel bitmap for cmex325 char#126 (noname) --- */
        !          50515:       { 126,77959,                      /* character number, location */
        !          50516:          -1, 3,  -27, 3,      /* topleft row,col, and botleft row,col */
        !          50517:           { 30,   26, 3,91, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          50518:             "\xf1\xe2\xe0\xd4\xe0\xb6\xe0\xa2\x22\xe0\x92\x42\xe0"
        !          50519:             "\x72\x62\xe0\x52\x82\xe0\x33\x83\xe5\x85\xb3\x12\x82"
        !          50520:             "\x13\x83\x32\x82\x33\x44\x42\x82\x44\x13\x62\x82\x64"
        !          50521:             "\x82\x82\x81\xfa\x92\x82\x90" }  },
        !          50522:       /* --- pixel bitmap for cmex325 char#127 (noname) --- */
        !          50523:       { 127,79127,                      /* character number, location */
        !          50524:           0, 3,  -26, 3,      /* topleft row,col, and botleft row,col */
        !          50525:           { 30,   26, 3,91, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          50526:             "\xfa\x92\x82\x91\x82\x82\x84\x62\x82\x63\x14\x42\x82"
        !          50527:             "\x44\x43\x32\x82\x33\x83\x12\x82\x13\xb5\x85\xe3\x83"
        !          50528:             "\xe0\x32\x82\xe0\x52\x62\xe0\x72\x42\xe0\x92\x22\xe0"
        !          50529:             "\xa6\xe0\xb4\xd0\xf1\xe2\xe0" }  },
        !          50530:       /* --- trailer  --- */
        !          50531:       { -99, -999,  0,0,0,0, { 0,0,0,0, (pixbyte *)"\0" }  }
        !          50532:    } ;
        !          50533: 
        !          50534: 
        !          50535: /* --- size=9 for .450gf ---
        !          50536:  * mf '\mode=preview; mag=magstep(-9.62468787106292402266); input cmex10'
        !          50537:  * --------------------------------------------------------------------- */
        !          50538: /* --- fontdef for cmex450 --- */
        !          50539: static	chardef  cmex450[] =
        !          50540:    {
        !          50541:       /* --- pixel bitmap for cmex450 char#0 \big( --- */
        !          50542:       {   0,  661,                      /* character number, location */
        !          50543:           2, 9,  -71, 9,      /* topleft row,col, and botleft row,col */
        !          50544:           { 18,   73, 3,188, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          50545:             "\xe0\x22\xe0\x12\xe0\x12\xe3\xe0\x12\xe0\x12\xe0\x12"
        !          50546:             "\xe0\x13\x60\xf1\x83\x70\x73\x80\xf1\x63\x90\xf1\x53"
        !          50547:             "\xa0\x44\xe3\xb0\xf1\x34\xb0\x33\xc0\xf1\x24\xc0\xf1"
        !          50548:             "\x23\xd0\xf3\x14\xd0\x13\xef\xe4\xe0\x13\xe0\xf3\x14"
        !          50549:             "\xd0\xf1\x23\xd0\xf1\x24\xc0\x33\xc0\xf1\x34\xb0\x43"
        !          50550:             "\xe0\x14\xa0\xf1\x53\xa0\xf1\x63\x90\x73\x80\xf1\x83"
        !          50551:             "\x70\x93\xe0\x22\xe0\x32\xe0\x32\xe0\x23\xe0\x32\xe0"
        !          50552:             "\x32\xe0\x32" }  },
        !          50553:       /* --- pixel bitmap for cmex450 char#1 \big) --- */
        !          50554:       {   1, 7531,                      /* character number, location */
        !          50555:           2, 2,  -71, 2,      /* topleft row,col, and botleft row,col */
        !          50556:           { 18,   73, 3,189, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          50557:             "\x02\xe0\x32\xe0\x32\xe0\x33\xe0\x22\xe0\x32\xe0\x32"
        !          50558:             "\xe0\x23\x90\xf1\x73\x80\x83\x70\xf1\x93\x60\xf1\xa3"
        !          50559:             "\x50\xa4\xe0\x13\x40\xf1\xb4\x30\xc3\x30\xf1\xc4\x20"
        !          50560:             "\xf1\xd3\x20\xf3\xd4\x10\xe3\x10\xfe\xe4\xe3\x10\xf3"
        !          50561:             "\xd4\x10\xf1\xd3\x20\xf1\xc4\x20\xc3\x30\xf1\xb4\x30"
        !          50562:             "\xb3\xe4\x40\xf1\xa3\x50\xf1\x93\x60\x83\x70\xf1\x73"
        !          50563:             "\x80\x63\xe0\x12\xe0\x12\xe0\x12\xe0\x13\xe2\xe0\x12"
        !          50564:             "\xe0\x12\xe0\x20" }  },
        !          50565:       /* --- pixel bitmap for cmex450 char#2 \big[ --- */
        !          50566:       {   2,14439,                      /* character number, location */
        !          50567:           2,12,  -71,12,      /* topleft row,col, and botleft row,col */
        !          50568:           { 13,   73, 2,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          50569:             "\xff\x02\x00\x0d\x00\xff\x42\x03\x0a\xff\x02\x0d" }  },
        !          50570:       /* --- pixel bitmap for cmex450 char#3 \big] --- */
        !          50571:       {   3,21362,                      /* character number, location */
        !          50572:           2, 1,  -71, 1,      /* topleft row,col, and botleft row,col */
        !          50573:           { 13,   73, 2,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          50574:             "\xff\x02\x00\x0d\xff\x42\x0a\x03\x00\xff\x02\x0d" }  },
        !          50575:       /* --- pixel bitmap for cmex450 char#4 (noname) --- */
        !          50576:       {   4,28226,                      /* character number, location */
        !          50577:           2,12,  -71,12,      /* topleft row,col, and botleft row,col */
        !          50578:           { 16,   73, 2, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          50579:             "\xff\x45\x00\x03\x0d\xff\x02\x10" }  },
        !          50580:       /* --- pixel bitmap for cmex450 char#5 (noname) --- */
        !          50581:       {   5,32535,                      /* character number, location */
        !          50582:           2, 1,  -71, 1,      /* topleft row,col, and botleft row,col */
        !          50583:           { 16,   73, 2, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          50584:             "\xff\x45\x0d\x03\x00\xff\x02\x10" }  },
        !          50585:       /* --- pixel bitmap for cmex450 char#6 (noname) --- */
        !          50586:       {   6,36794,                      /* character number, location */
        !          50587:           2,12,  -71,12,      /* topleft row,col, and botleft row,col */
        !          50588:           { 16,   73, 2, 9, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          50589:             "\xff\x02\x00\x10\x00\xff\x45\x03\x0d" }  },
        !          50590:       /* --- pixel bitmap for cmex450 char#7 (noname) --- */
        !          50591:       {   7,41111,                      /* character number, location */
        !          50592:           2, 1,  -71, 1,      /* topleft row,col, and botleft row,col */
        !          50593:           { 16,   73, 2, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          50594:             "\xff\x02\x00\x10\xff\x45\x0d\x03" }  },
        !          50595:       /* --- pixel bitmap for cmex450 char#8 \big{ --- */
        !          50596:       {   8,45471,                      /* character number, location */
        !          50597:           2, 7,  -71, 7,      /* topleft row,col, and botleft row,col */
        !          50598:           { 22,   73, 3,128, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          50599:             "\xe0\x53\xe0\x26\xe6\xe6\xe0\x15\xe0\x25\xe0\x34\x80"
        !          50600:             "\xfe\x94\x90\xf7\x94\x90\x84\xe0\x34\xe0\x34\xe0\x34"
        !          50601:             "\xe0\x25\xe0\x15\xe0\x23\xe0\x65\xe0\x55\xe0\x54\xe0"
        !          50602:             "\x54\xe0\x54\xe0\x54\xa0\xfe\x94\x90\xf7\x94\x90\xa4"
        !          50603:             "\xe0\x45\xe0\x45\xe0\x46\xe0\x46\xe0\x46\xe0\x53" }  },
        !          50604:       /* --- pixel bitmap for cmex450 char#9 \big} --- */
        !          50605:       {   9,54194,                      /* character number, location */
        !          50606:           2, 7,  -71, 7,      /* topleft row,col, and botleft row,col */
        !          50607:           { 22,   73, 3,127, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          50608:             "\x03\xe0\x56\xe0\x46\xe0\x46\xe0\x45\xe0\x45\xe0\x44"
        !          50609:             "\xa0\xfe\x94\x90\xf7\x94\x90\xa4\xe0\x54\xe0\x54\xe0"
        !          50610:             "\x54\xe0\x55\xe0\x56\xe0\x53\xe0\x26\xe5\xe0\x24\xe0"
        !          50611:             "\x34\xe0\x34\xe0\x34\x80\xfe\x94\x90\xf7\x94\x90\x84"
        !          50612:             "\xe0\x35\xe0\x25\xe0\x16\xe6\xe6\xe0\x23\xe0\x58" }  },
        !          50613:       /* --- pixel bitmap for cmex450 char#10 \big< --- */
        !          50614:       {  10,64174,                      /* character number, location */
        !          50615:           2, 6,  -71, 6,      /* topleft row,col, and botleft row,col */
        !          50616:           { 18,   73, 3,228, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          50617:             "\xe0\x22\xe0\x13\xe4\xf1\xe3\x10\xd4\xe3\xe4\xe3\xe4"
        !          50618:             "\x30\xf1\xb3\x40\xa4\xe3\xe4\xe3\xe4\xe3\xe4\x70\xf1"
        !          50619:             "\x73\x80\x64\xe3\xe4\xe3\xe4\xa0\xf1\x43\xb0\x34\xe3"
        !          50620:             "\xe4\xe3\xe4\xd0\xf1\x13\xe4\xe3\xe0\x14\xe0\xf1\x13"
        !          50621:             "\xe0\x14\xe0\x13\xe0\x14\xe0\x13\xe0\x14\xb0\xf1\x43"
        !          50622:             "\xb0\x44\xe0\x13\xe0\x14\xe0\x13\xe0\x14\x80\xf1\x73"
        !          50623:             "\x80\x74\xe0\x13\xe0\x14\xe0\x13\xe0\x14\xe0\x13\xe0"
        !          50624:             "\x14\x40\xf1\xb3\x40\xb4\xe0\x13\xe0\x14\xe0\x13\xe0"
        !          50625:             "\x14\x10\xf1\xe3\x10\xe4\xe0\x13\xe0\x22" }  },
        !          50626:       /* --- pixel bitmap for cmex450 char#11 \big> --- */
        !          50627:       {  11,67707,                      /* character number, location */
        !          50628:           2, 5,  -71, 5,      /* topleft row,col, and botleft row,col */
        !          50629:           { 18,   73, 3,225, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          50630:             "\xf1\x03\xe0\x14\xe0\xf1\x13\xe0\x14\xe0\x13\xe0\x14"
        !          50631:             "\xe0\x13\xe0\x14\xb0\xf1\x43\xb0\x44\xe0\x13\xe0\x14"
        !          50632:             "\xe0\x13\xe0\x14\xe0\x13\xe0\x14\x70\xf1\x83\x70\x84"
        !          50633:             "\xe0\x13\xe0\x14\xe0\x13\xe0\x14\x40\xf1\xb3\x40\xb4"
        !          50634:             "\xe0\x13\xe0\x14\xe0\x13\xe0\x14\x10\xf1\xe3\x10\xe4"
        !          50635:             "\xe0\x13\xe4\xf1\xe3\x10\xd4\xe3\xe4\xe3\xe4\x30\xf1"
        !          50636:             "\xb3\x40\xa4\xe3\xe4\xe3\xe4\x60\xf1\x83\x70\x74\xe3"
        !          50637:             "\xe4\xe3\xe4\xe3\xe4\xa0\xf1\x43\xb0\x34\xe3\xe4\xe3"
        !          50638:             "\xe4\xd0\xf1\x13\xe4\xef\x13\xe0\x10" }  },
        !          50639:       /* --- pixel bitmap for cmex450 char#12 (noname) --- */
        !          50640:       {  12,78884,                      /* character number, location */
        !          50641:           2, 9,  -39, 9,      /* topleft row,col, and botleft row,col */
        !          50642:           {  3,   41, 3,17, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          50643:             "\x11\x1f\xe3\x0f\xe3\x0f\x83\x11\x10" }  },
        !          50644:       /* --- pixel bitmap for cmex450 char#13 (noname) --- */
        !          50645:       {  13,79559,                      /* character number, location */
        !          50646:           2, 9,  -39, 9,      /* topleft row,col, and botleft row,col */
        !          50647:           { 17,   41, 3,27, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          50648:             "\x11\xd1\x1f\xe3\xb3\x0f\xe3\xb3\x0f\x83\xb3\x11\xd1"
        !          50649:             "\x14" }  },
        !          50650:       /* --- pixel bitmap for cmex450 char#14 (noname) --- */
        !          50651:       {  14,71252,                      /* character number, location */
        !          50652:           2, 3,  -71, 3,      /* topleft row,col, and botleft row,col */
        !          50653:           { 30,   73, 3,311, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          50654:             "\xf1\xe0\xd3\xe0\xc4\xf1\xe0\xc3\x10\xe0\xb4\xe0\xc3"
        !          50655:             "\xe0\xc4\x20\xf1\xe0\xa3\x30\xe0\x94\x30\xf1\xe0\x93"
        !          50656:             "\x40\xe0\x84\xe0\xc3\xe0\xc4\x50\xf1\xe0\x73\x60\xe0"
        !          50657:             "\x64\xe0\xc3\xe0\xc4\x70\xf1\xe0\x53\x80\xe0\x44\x80"
        !          50658:             "\xf1\xe0\x43\x90\xe0\x34\xe0\xc3\xe0\xc4\xa0\xf1\xe0"
        !          50659:             "\x23\xb0\xe0\x14\xe0\xc3\xe0\xc4\xc0\xf1\xe3\xd0\xd4"
        !          50660:             "\xd0\xf1\xd3\xe0\xc4\xe0\xc3\xe0\xc4\xe0\x10\xf1\xb3"
        !          50661:             "\xe0\x20\xa4\xe0\xc3\xe0\xc4\xe0\x30\xf1\x93\xe0\x40"
        !          50662:             "\x84\xe0\x40\xf1\x83\xe0\x50\x74\xe0\xc3\xe0\xc4\xe0"
        !          50663:             "\x60\xf1\x63\xe0\x70\x54\xe0\xc3\xe0\xc4\xe0\x80\xf1"
        !          50664:             "\x43\xe0\x90\x34\xe0\x90\xf1\x33\xe0\xa0\x24\xe0\xc3"
        !          50665:             "\xe0\xc4\xe0\xb0\xf1\x13\xe0\xc4\xe0\xcf\x13\xe0\xd2" }  },
        !          50666:       /* --- pixel bitmap for cmex450 char#15 (noname) --- */
        !          50667:       {  15,75113,                      /* character number, location */
        !          50668:           2, 3,  -71, 3,      /* topleft row,col, and botleft row,col */
        !          50669:           { 30,   73, 3,310, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          50670:             "\xf1\x03\xe0\xd4\xe0\xc0\xf1\x13\xe0\xc0\x14\xe0\xd3"
        !          50671:             "\xe0\xd4\xe0\xa0\xf1\x33\xe0\xa0\x34\xe0\x90\xf1\x43"
        !          50672:             "\xe0\x90\x44\xe0\xd3\xe0\xd4\xe0\x70\xf1\x63\xe0\x70"
        !          50673:             "\x64\xe0\xd3\xe0\xd4\xe0\x50\xf1\x83\xe0\x50\x84\xe0"
        !          50674:             "\x40\xf1\x93\xe0\x40\x94\xe0\xd3\xe0\xd4\xe0\x20\xf1"
        !          50675:             "\xb3\xe0\x20\xb4\xe0\xd3\xe0\xd4\xe0\xf1\xd3\xe0\xd4"
        !          50676:             "\xd0\xf1\xe3\xd0\xe4\xe0\xd3\xe0\xd4\xb0\xf1\xe0\x23"
        !          50677:             "\xb0\xe0\x24\xe0\xd3\xe0\xd4\x90\xf1\xe0\x43\x90\xe0"
        !          50678:             "\x44\x80\xf1\xe0\x53\x80\xe0\x54\xe0\xd3\xe0\xd4\x60"
        !          50679:             "\xf1\xe0\x73\x60\xe0\x74\xe0\xd3\xe0\xd4\x40\xf1\xe0"
        !          50680:             "\x93\x40\xe0\x94\x30\xf1\xe0\xa3\x30\xe0\xa4\xe0\xd3"
        !          50681:             "\xe0\xd4\x10\xf1\xe0\xc3\x10\xe0\xc4\xf1\xe0\xd3" }  },
        !          50682:       /* --- pixel bitmap for cmex450 char#16 \Big( --- */
        !          50683:       {  16, 1518,                      /* character number, location */
        !          50684:           2,11,  -109,11,     /* topleft row,col, and botleft row,col */
        !          50685:           { 24,  111, 3,316, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          50686:             "\xe0\x73\xe0\x63\xe0\x63\xe0\x63\xe0\x63\xe0\x63\xe0"
        !          50687:             "\x64\xe0\x54\xe0\x63\xe0\x64\xe0\x54\x80\xf1\xb4\x90"
        !          50688:             "\xf1\xa4\xa0\xf1\x94\xb0\xf1\x84\xc0\xf1\x74\xd0\xf1"
        !          50689:             "\x64\xe0\x55\xe0\xf1\x54\xe0\x10\xf1\x45\xe0\x10\x44"
        !          50690:             "\xe0\x20\xf1\x35\xe0\x20\xf1\x34\xe0\x30\xf2\x25\xe0"
        !          50691:             "\x30\xf1\x24\xe0\x40\xf5\x15\xe0\x40\x14\xe0\x5f\xe5"
        !          50692:             "\xe0\x5f\x55\xe0\x50\x14\xe0\x50\xf5\x15\xe0\x40\xf1"
        !          50693:             "\x24\xe0\x40\xf2\x25\xe0\x30\xf1\x34\xe0\x30\xf1\x35"
        !          50694:             "\xe0\x20\x44\xe0\x20\xf1\x45\xe0\x10\xf1\x54\xe0\x10"
        !          50695:             "\x55\xe0\xf1\x64\xe0\xf1\x74\xd0\xf1\x84\xc0\xf1\x94"
        !          50696:             "\xb0\xf1\xa4\xa0\xf1\xb4\x90\xc4\xe0\x74\xe0\x73\xe0"
        !          50697:             "\x74\xe0\x74\xe0\x73\xe0\x83\xe0\x83\xe0\x83\xe0\x83"
        !          50698:             "\xe0\x83" }  },
        !          50699:       /* --- pixel bitmap for cmex450 char#17 \Big) --- */
        !          50700:       {  17, 8363,                      /* character number, location */
        !          50701:           2, 2,  -109, 2,     /* topleft row,col, and botleft row,col */
        !          50702:           { 24,  111, 3,317, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          50703:             "\x03\xe0\x83\xe0\x83\xe0\x83\xe0\x83\xe0\x83\xe0\x74"
        !          50704:             "\xe0\x74\xe0\x73\xe0\x74\xe0\x74\xc0\xf1\x94\xb0\xf1"
        !          50705:             "\xa4\xa0\xf1\xb4\x90\xf1\xc4\x80\xf1\xd4\x70\xf1\xe4"
        !          50706:             "\x60\xe5\x50\xf1\xe0\x14\x50\xf1\xe0\x15\x40\xe0\x24"
        !          50707:             "\x40\xf1\xe0\x25\x30\xf1\xe0\x34\x30\xf2\xe0\x35\x20"
        !          50708:             "\xf1\xe0\x44\x20\xf5\xe0\x45\x10\xe0\x54\x10\xfe\xe0"
        !          50709:             "\x55\xf5\xe0\x55\xe0\x54\x10\xf5\xe0\x45\x10\xf1\xe0"
        !          50710:             "\x44\x20\xf2\xe0\x35\x20\xf1\xe0\x34\x30\xf1\xe0\x25"
        !          50711:             "\x30\xe0\x24\x40\xf1\xe0\x15\x40\xf1\xe0\x14\x50\xe5"
        !          50712:             "\x50\xf1\xe4\x60\xf1\xd4\x70\xf1\xc4\x80\xf1\xb4\x90"
        !          50713:             "\xf1\xa4\xa0\xf1\x94\xb0\x84\xe0\x54\xe0\x63\xe0\x64"
        !          50714:             "\xe0\x54\xe0\x63\xe0\x63\xe0\x63\xe0\x63\xe0\x63\xe0"
        !          50715:             "\x63\xe0\x74" }  },
        !          50716:       /* --- pixel bitmap for cmex450 char#18 \bigg( --- */
        !          50717:       {  18, 2504,                      /* character number, location */
        !          50718:           2,13,  -146,13,     /* topleft row,col, and botleft row,col */
        !          50719:           { 31,  148, 3,462, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          50720:             "\xe0\xe3\xe0\xd3\xe0\xd3\xe0\xd3\xe0\xd3\xe0\xd3\xe0"
        !          50721:             "\xd3\xe0\xd4\xe0\xc4\xe0\xc4\xe0\xd3\xe0\xd4\xe0\xc4"
        !          50722:             "\xa0\xf1\xe0\x24\xb0\xe0\x14\xc0\xf1\xe4\xd0\xf1\xd4"
        !          50723:             "\xe0\xf1\xc4\xe0\x10\xf1\xb4\xe0\x20\xf1\xa4\xe0\x30"
        !          50724:             "\xf1\x94\xe0\x40\x85\xe0\xc4\xe0\xc5\xe0\x50\xf1\x74"
        !          50725:             "\xe0\x60\x65\xe0\x60\xf1\x64\xe0\x70\xf1\x55\xe0\x70"
        !          50726:             "\x54\xe0\x80\xf2\x45\xe0\x80\x44\xe0\x90\xf2\x35\xe0"
        !          50727:             "\x90\xf1\x34\xe0\xa0\xf3\x25\xe0\xa0\x24\xe0\xb0\xf7"
        !          50728:             "\x15\xe0\xb0\x14\xe0\xcf\xe5\xe0\xcf\x85\xe0\xc0\x14"
        !          50729:             "\xe0\xc0\xf7\x15\xe0\xb0\x24\xe0\xb0\xf3\x25\xe0\xa0"
        !          50730:             "\xf1\x34\xe0\xa0\xf2\x35\xe0\x90\x44\xe0\x90\xf2\x45"
        !          50731:             "\xe0\x80\x54\xe0\x80\xf1\x55\xe0\x70\xf1\x64\xe0\x70"
        !          50732:             "\x65\xe0\x60\xf1\x74\xe0\x60\x75\xe0\xd4\xe0\xd5\xe0"
        !          50733:             "\x40\xf1\x94\xe0\x40\xf1\xa4\xe0\x30\xf1\xb4\xe0\x20"
        !          50734:             "\xf1\xc4\xe0\x10\xf1\xd4\xe0\xf1\xe4\xd0\xe0\x14\xc0"
        !          50735:             "\xf1\xe0\x24\xb0\xe0\x34\xe0\xe4\xe0\xe3\xe0\xe4\xe0"
        !          50736:             "\xe4\xe0\xe4\xe0\xe3\xe0\xe0\x13\xe0\xe0\x13\xe0\xe0"
        !          50737:             "\x13\xe0\xe0\x13\xe0\xe0\x13\xe0\xe0\x13" }  },
        !          50738:       /* --- pixel bitmap for cmex450 char#19 \bigg) --- */
        !          50739:       {  19, 9350,                      /* character number, location */
        !          50740:           2, 2,  -146, 2,     /* topleft row,col, and botleft row,col */
        !          50741:           { 31,  148, 3,463, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          50742:             "\x03\xe0\xe0\x13\xe0\xe0\x13\xe0\xe0\x13\xe0\xe0\x13"
        !          50743:             "\xe0\xe0\x13\xe0\xe0\x13\xe0\xe4\xe0\xe4\xe0\xe4\xe0"
        !          50744:             "\xe3\xe0\xe4\xe0\xe4\xe0\x30\xf1\xb4\xe0\x20\xc4\xe0"
        !          50745:             "\x10\xf1\xd4\xe0\xf1\xe4\xd0\xf1\xe0\x14\xc0\xf1\xe0"
        !          50746:             "\x24\xb0\xf1\xe0\x34\xa0\xf1\xe0\x44\x90\xe0\x45\xe0"
        !          50747:             "\xd4\xe0\xd5\x70\xf1\xe0\x64\x70\xe0\x65\x60\xf1\xe0"
        !          50748:             "\x74\x60\xf1\xe0\x75\x50\xe0\x84\x50\xf2\xe0\x85\x40"
        !          50749:             "\xe0\x94\x40\xf2\xe0\x95\x30\xf1\xe0\xa4\x30\xf3\xe0"
        !          50750:             "\xa5\x20\xe0\xb4\x20\xf7\xe0\xb5\x10\xe0\xc4\x10\xfe"
        !          50751:             "\xe0\xc5\xf8\xe0\xc5\xe0\xc4\x10\xf7\xe0\xb5\x10\xe0"
        !          50752:             "\xb4\x20\xf3\xe0\xa5\x20\xf1\xe0\xa4\x30\xf2\xe0\x95"
        !          50753:             "\x30\xe0\x94\x40\xf2\xe0\x85\x40\xe0\x84\x50\xf1\xe0"
        !          50754:             "\x75\x50\xf1\xe0\x74\x60\xe0\x65\x60\xf1\xe0\x64\x70"
        !          50755:             "\xe0\x55\xe0\xc4\xe0\xc5\x80\xf1\xe0\x44\x90\xf1\xe0"
        !          50756:             "\x34\xa0\xf1\xe0\x24\xb0\xf1\xe0\x14\xc0\xf1\xe4\xd0"
        !          50757:             "\xf1\xd4\xe0\xc4\xe0\x10\xf1\xb4\xe0\x20\xa4\xe0\xc4"
        !          50758:             "\xe0\xd3\xe0\xd4\xe0\xc4\xe0\xc4\xe0\xd3\xe0\xd3\xe0"
        !          50759:             "\xd3\xe0\xd3\xe0\xd3\xe0\xd3\xe0\xd3\xe0\xe0" }  },
        !          50760:       /* --- pixel bitmap for cmex450 char#20 \bigg[ --- */
        !          50761:       {  20,16400,                      /* character number, location */
        !          50762:           2,16,  -146,16,     /* topleft row,col, and botleft row,col */
        !          50763:           { 16,  148, 2,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          50764:             "\xff\x03\x00\x10\x00\xff\x8b\x04\x0c\xff\x03\x10" }  },
        !          50765:       /* --- pixel bitmap for cmex450 char#21 \bigg] --- */
        !          50766:       {  21,23271,                      /* character number, location */
        !          50767:           2, 1,  -146, 1,     /* topleft row,col, and botleft row,col */
        !          50768:           { 16,  148, 2,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          50769:             "\xff\x03\x00\x10\xff\x8b\x0c\x04\x00\xff\x03\x10" }  },
        !          50770:       /* --- pixel bitmap for cmex450 char#22 (noname) --- */
        !          50771:       {  22,30251,                      /* character number, location */
        !          50772:           2,15,  -146,15,     /* topleft row,col, and botleft row,col */
        !          50773:           { 20,  148, 2, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          50774:             "\xff\x8f\x00\x04\x10\xff\x03\x14" }  },
        !          50775:       /* --- pixel bitmap for cmex450 char#23 (noname) --- */
        !          50776:       {  23,34508,                      /* character number, location */
        !          50777:           2, 1,  -146, 1,     /* topleft row,col, and botleft row,col */
        !          50778:           { 20,  148, 2, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          50779:             "\xff\x8f\x10\x04\x00\xff\x03\x14" }  },
        !          50780:       /* --- pixel bitmap for cmex450 char#24 (noname) --- */
        !          50781:       {  24,38823,                      /* character number, location */
        !          50782:           2,15,  -146,15,     /* topleft row,col, and botleft row,col */
        !          50783:           { 20,  148, 2, 9, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          50784:             "\xff\x03\x00\x14\x00\xff\x8f\x04\x10" }  },
        !          50785:       /* --- pixel bitmap for cmex450 char#25 (noname) --- */
        !          50786:       {  25,43088,                      /* character number, location */
        !          50787:           2, 1,  -146, 1,     /* topleft row,col, and botleft row,col */
        !          50788:           { 20,  148, 2, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          50789:             "\xff\x03\x00\x14\xff\x8f\x10\x04" }  },
        !          50790:       /* --- pixel bitmap for cmex450 char#26 \bigg{ --- */
        !          50791:       {  26,47690,                      /* character number, location */
        !          50792:           2, 8,  -146, 8,     /* topleft row,col, and botleft row,col */
        !          50793:           { 31,  148, 3,260, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          50794:             "\xe0\xd4\xe0\xb6\xe0\xa7\xe0\x87\xe0\x96\xe0\xa6\xe0"
        !          50795:             "\xa5\xe0\xb5\xe0\xb5\xe0\xb5\xe0\xb6\xe0\xb5\xb0\xf2"
        !          50796:             "\xe5\xc0\xfe\xd5\xd0\xfe\xd5\xd0\xfd\xd5\xd0\xf2\xc5"
        !          50797:             "\xe0\xf1\xb5\xe0\x10\xa5\xe0\x20\xf1\x95\xe0\x30\x85"
        !          50798:             "\xe0\xb5\xe0\xa6\xe0\xa5\xe0\xa6\xe0\xa5\xe0\xbf\x15"
        !          50799:             "\xe0\xc0\x15\xe0\xd6\xe0\xd5\xe0\xd6\xe0\xd5\xe0\xd5"
        !          50800:             "\xe0\x40\xf1\x95\xe0\x30\xa5\xe0\x20\xf1\xb5\xe0\x10"
        !          50801:             "\xf2\xc5\xe0\xfe\xd5\xd0\xfe\xd5\xd0\xfd\xd5\xd0\xf2"
        !          50802:             "\xe5\xc0\xe0\x15\xe0\xc6\xe0\xc5\xe0\xd5\xe0\xd5\xe0"
        !          50803:             "\xd5\xe0\xd6\xe0\xc6\xe0\xc7\xe0\xc7\xe0\xb6\xe0\xd4" }  },
        !          50804:       /* --- pixel bitmap for cmex450 char#27 \bigg} --- */
        !          50805:       {  27,56415,                      /* character number, location */
        !          50806:           2, 8,  -146, 8,     /* topleft row,col, and botleft row,col */
        !          50807:           { 31,  148, 3,259, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          50808:             "\x04\xe0\xd6\xe0\xb7\xe0\xc7\xe0\xc6\xe0\xc6\xe0\xd5"
        !          50809:             "\xe0\xd5\xe0\xd5\xe0\xd5\xe0\xc6\xe0\xc5\xe0\x10\xf2"
        !          50810:             "\xc5\xe0\xfe\xd5\xd0\xfe\xd5\xd0\xfd\xd5\xd0\xf2\xe5"
        !          50811:             "\xc0\xf1\xe0\x15\xb0\xe0\x25\xa0\xf1\xe0\x35\x90\xe0"
        !          50812:             "\x45\xe0\xd5\xe0\xd6\xe0\xd5\xe0\xd6\xe0\xd6\xf1\xe0"
        !          50813:             "\xc5\xe0\xb6\xe0\x96\xe0\xa5\xe0\xa6\xe0\xa5\xe0\xb5"
        !          50814:             "\x80\xf1\xe0\x35\x90\xe0\x25\xa0\xf1\xe0\x15\xb0\xf2"
        !          50815:             "\xe5\xc0\xfe\xd5\xd0\xfe\xd5\xd0\xfd\xd5\xd0\xf2\xc5"
        !          50816:             "\xe0\xb5\xe0\xb6\xe0\xb5\xe0\xb5\xe0\xb5\xe0\xb5\xe0"
        !          50817:             "\xa6\xe0\xa6\xe0\x97\xe0\x87\xe0\xa6\xe0\xb4\xe0\xd3" }  },
        !          50818:       /* --- pixel bitmap for cmex450 char#28 \bigg< --- */
        !          50819:       {  28,65803,                      /* character number, location */
        !          50820:           2, 8,  -146, 8,     /* topleft row,col, and botleft row,col */
        !          50821:           { 33,  148, 3,487, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          50822:             "\xe0\xe0\x22\x10\xf1\xe0\xe0\x14\xf2\xe0\xe4\x10\xf1"
        !          50823:             "\xe0\xd4\x20\xf2\xe0\xc4\x30\xf1\xe0\xb4\x40\xf2\xe0"
        !          50824:             "\xa4\x50\xf1\xe0\x94\x60\xf2\xe0\x84\x70\xf1\xe0\x74"
        !          50825:             "\x80\xf2\xe0\x64\x90\xf1\xe0\x54\xa0\xf2\xe0\x44\xb0"
        !          50826:             "\xf1\xe0\x34\xc0\xf2\xe0\x24\xd0\xf1\xe0\x14\xe0\xf1"
        !          50827:             "\xe4\xe0\x10\xf2\xd4\xe0\x20\xf1\xc4\xe0\x30\xf2\xb4"
        !          50828:             "\xe0\x40\xf1\xa4\xe0\x50\xf2\x94\xe0\x60\xf1\x84\xe0"
        !          50829:             "\x70\xf2\x74\xe0\x80\xf1\x64\xe0\x90\xf2\x54\xe0\xa0"
        !          50830:             "\xf1\x44\xe0\xb0\xf2\x34\xe0\xc0\xf1\x24\xe0\xd0\xf2"
        !          50831:             "\x14\xe0\xef\x14\xe0\xe0\x10\xf2\x14\xe0\xe0\xf1\x24"
        !          50832:             "\xe0\xd0\xf2\x34\xe0\xc0\xf1\x44\xe0\xb0\xf2\x54\xe0"
        !          50833:             "\xa0\xf1\x64\xe0\x90\xf2\x74\xe0\x80\xf1\x84\xe0\x70"
        !          50834:             "\xf2\x94\xe0\x60\xf1\xa4\xe0\x50\xf2\xb4\xe0\x40\xf1"
        !          50835:             "\xc4\xe0\x30\xf2\xd4\xe0\x20\xf1\xe4\xe0\x10\xf1\xe0"
        !          50836:             "\x14\xe0\xf2\xe0\x24\xd0\xf1\xe0\x34\xc0\xf2\xe0\x44"
        !          50837:             "\xb0\xf1\xe0\x54\xa0\xf2\xe0\x64\x90\xf1\xe0\x74\x80"
        !          50838:             "\xf2\xe0\x84\x70\xf1\xe0\x94\x60\xf2\xe0\xa4\x50\xf1"
        !          50839:             "\xe0\xb4\x40\xf2\xe0\xc4\x30\xf1\xe0\xd4\x20\xf2\xe0"
        !          50840:             "\xe4\x10\xf1\xe0\xe0\x14\xe0\xe0\x22\x10" }  },
        !          50841:       /* --- pixel bitmap for cmex450 char#29 \bigg> --- */
        !          50842:       {  29,69338,                      /* character number, location */
        !          50843:           2, 6,  -146, 6,     /* topleft row,col, and botleft row,col */
        !          50844:           { 33,  148, 3,487, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          50845:             "\x12\xe0\xe0\x2f\x14\xe0\xe0\x10\xf2\x14\xe0\xe0\xf1"
        !          50846:             "\x24\xe0\xd0\xf2\x34\xe0\xc0\xf1\x44\xe0\xb0\xf2\x54"
        !          50847:             "\xe0\xa0\xf1\x64\xe0\x90\xf2\x74\xe0\x80\xf1\x84\xe0"
        !          50848:             "\x70\xf2\x94\xe0\x60\xf1\xa4\xe0\x50\xf2\xb4\xe0\x40"
        !          50849:             "\xf1\xc4\xe0\x30\xf2\xd4\xe0\x20\xf1\xe4\xe0\x10\xf1"
        !          50850:             "\xe0\x14\xe0\xf2\xe0\x24\xd0\xf1\xe0\x34\xc0\xf2\xe0"
        !          50851:             "\x44\xb0\xf1\xe0\x54\xa0\xf2\xe0\x64\x90\xf1\xe0\x74"
        !          50852:             "\x80\xf2\xe0\x84\x70\xf1\xe0\x94\x60\xf2\xe0\xa4\x50"
        !          50853:             "\xf1\xe0\xb4\x40\xf2\xe0\xc4\x30\xf1\xe0\xd4\x20\xf2"
        !          50854:             "\xe0\xe4\x10\xf1\xe0\xe0\x14\xf2\xe0\xe4\x10\xf1\xe0"
        !          50855:             "\xd4\x20\xf2\xe0\xc4\x30\xf1\xe0\xb4\x40\xf2\xe0\xa4"
        !          50856:             "\x50\xf1\xe0\x94\x60\xf2\xe0\x84\x70\xf1\xe0\x74\x80"
        !          50857:             "\xf2\xe0\x64\x90\xf1\xe0\x54\xa0\xf2\xe0\x44\xb0\xf1"
        !          50858:             "\xe0\x34\xc0\xf2\xe0\x24\xd0\xf1\xe0\x14\xe0\xf1\xe4"
        !          50859:             "\xe0\x10\xf2\xd4\xe0\x20\xf1\xc4\xe0\x30\xf2\xb4\xe0"
        !          50860:             "\x40\xf1\xa4\xe0\x50\xf2\x94\xe0\x60\xf1\x84\xe0\x70"
        !          50861:             "\xf2\x74\xe0\x80\xf1\x64\xe0\x90\xf2\x54\xe0\xa0\xf1"
        !          50862:             "\x44\xe0\xb0\xf2\x34\xe0\xc0\xf1\x24\xe0\xd0\xf2\x14"
        !          50863:             "\xe0\xef\x14\xe0\xe0\x10\x12\xe0\xe0\x22" }  },
        !          50864:       /* --- pixel bitmap for cmex450 char#30 (noname) --- */
        !          50865:       {  30,73031,                      /* character number, location */
        !          50866:           2, 3,  -146, 3,     /* topleft row,col, and botleft row,col */
        !          50867:           { 59,  148, 2,433, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          50868:             "\x38\x02\x01\x00\xff\x01\x37\x04\x36\x05\x36\x04\x36"
        !          50869:             "\x05\x01\x00\xff\x01\x35\x04\x02\x00\x34\x05\x02\x00"
        !          50870:             "\xff\x01\x34\x04\x03\x00\x33\x05\x36\x04\x36\x05\x04"
        !          50871:             "\x00\xff\x01\x32\x04\x05\x00\x31\x05\x05\x00\xff\x01"
        !          50872:             "\x31\x04\x06\x00\x30\x05\x36\x04\x36\x05\x07\x00\xff"
        !          50873:             "\x01\x2f\x04\x08\x00\x2e\x05\x36\x04\x36\x05\x09\x00"
        !          50874:             "\xff\x01\x2d\x04\x0a\x00\x2c\x05\x0a\x00\xff\x01\x2c"
        !          50875:             "\x04\x0b\x00\x2b\x05\x36\x04\x36\x05\x0c\x00\xff\x01"
        !          50876:             "\x2a\x04\x0d\x00\x29\x05\x36\x04\x36\x05\x0e\x00\xff"
        !          50877:             "\x01\x28\x04\x0f\x00\x27\x05\x0f\x00\xff\x01\x27\x04"
        !          50878:             "\x10\x00\x26\x05\x36\x04\x36\x05\x11\x00\xff\x01\x25"
        !          50879:             "\x04\x12\x00\x24\x05\x12\x00\xff\x01\x24\x04\x13\x00"
        !          50880:             "\x23\x05\x36\x04\x36\x05\x14\x00\xff\x01\x22\x04\x15"
        !          50881:             "\x00\x21\x05\x36\x04\x36\x05\x16\x00\xff\x01\x20\x04"
        !          50882:             "\x17\x00\x1f\x05\x17\x00\xff\x01\x1f\x04\x18\x00\x1e"
        !          50883:             "\x05\x36\x04\x36\x05\x19\x00\xff\x01\x1d\x04\x1a\x00"
        !          50884:             "\x1c\x05\x36\x04\x36\x05\x1b\x00\xff\x01\x1b\x04\x1c"
        !          50885:             "\x00\x1a\x05\x1c\x00\xff\x01\x1a\x04\x1d\x00\x19\x05"
        !          50886:             "\x36\x04\x36\x05\x1e\x00\xff\x01\x18\x04\x1f\x00\x17"
        !          50887:             "\x05\x1f\x00\xff\x01\x17\x04\x20\x00\x16\x05\x36\x04"
        !          50888:             "\x36\x05\x21\x00\xff\x01\x15\x04\x22\x00\x14\x05\x36"
        !          50889:             "\x04\x36\x05\x23\x00\xff\x01\x13\x04\x24\x00\x12\x05"
        !          50890:             "\x24\x00\xff\x01\x12\x04\x25\x00\x11\x05\x36\x04\x36"
        !          50891:             "\x05\x26\x00\xff\x01\x10\x04\x27\x00\x0f\x05\x27\x00"
        !          50892:             "\xff\x01\x0f\x04\x28\x00\x0e\x05\x36\x04\x36\x05\x29"
        !          50893:             "\x00\xff\x01\x0d\x04\x2a\x00\x0c\x05\x36\x04\x36\x05"
        !          50894:             "\x2b\x00\xff\x01\x0b\x04\x2c\x00\x0a\x05\x2c\x00\xff"
        !          50895:             "\x01\x0a\x04\x2d\x00\x09\x05\x36\x04\x36\x05\x2e\x00"
        !          50896:             "\xff\x01\x08\x04\x2f\x00\x07\x05\x36\x04\x36\x05\x30"
        !          50897:             "\x00\xff\x01\x06\x04\x31\x00\x05\x05\x31\x00\xff\x01"
        !          50898:             "\x05\x04\x32\x00\x04\x05\x36\x04\x36\x05\x33\x00\xff"
        !          50899:             "\x01\x03\x04\x34\x00\x02\x05\x34\x00\xff\x01\x02\x04"
        !          50900:             "\x35\x00\x01\x05\x36\x04\x36\x05\x36\xff\x01\x04\x37"
        !          50901:             "\x00\x01\x02\x38" }  },
        !          50902:       /* --- pixel bitmap for cmex450 char#31 (noname) --- */
        !          50903:       {  31,76900,                      /* character number, location */
        !          50904:           2, 3,  -146, 3,     /* topleft row,col, and botleft row,col */
        !          50905:           { 59,  148, 2,429, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          50906:             "\x01\x02\x38\xff\x01\x04\x37\x05\x37\x04\x37\x05\x35"
        !          50907:             "\x00\xff\x01\x02\x04\x35\x00\x02\x05\x34\x00\xff\x01"
        !          50908:             "\x03\x04\x34\x00\x03\x05\x37\x04\x37\x05\x32\x00\xff"
        !          50909:             "\x01\x05\x04\x32\x00\x05\x05\x31\x00\xff\x01\x06\x04"
        !          50910:             "\x31\x00\x06\x05\x37\x04\x37\x05\x2f\x00\xff\x01\x08"
        !          50911:             "\x04\x2f\x00\x08\x05\x37\x04\x37\x05\x2d\x00\xff\x01"
        !          50912:             "\x0a\x04\x2d\x00\x0a\x05\x2c\x00\xff\x01\x0b\x04\x2c"
        !          50913:             "\x00\x0b\x05\x37\x04\x37\x05\x2a\x00\xff\x01\x0d\x04"
        !          50914:             "\x2a\x00\x0d\x05\x37\x04\x37\x05\x28\x00\xff\x01\x0f"
        !          50915:             "\x04\x28\x00\x0f\x05\x27\x00\xff\x01\x10\x04\x27\x00"
        !          50916:             "\x10\x05\x37\x04\x37\x05\x25\x00\xff\x01\x12\x04\x25"
        !          50917:             "\x00\x12\x05\x24\x00\xff\x01\x13\x04\x24\x00\x13\x05"
        !          50918:             "\x37\x04\x37\x05\x22\x00\xff\x01\x15\x04\x22\x00\x15"
        !          50919:             "\x05\x37\x04\x37\x05\x20\x00\xff\x01\x17\x04\x20\x00"
        !          50920:             "\x17\x05\x1f\x00\xff\x01\x18\x04\x1f\x00\x18\x05\x37"
        !          50921:             "\x04\x37\x05\x1d\x00\xff\x01\x1a\x04\x1d\x00\x1a\x05"
        !          50922:             "\x1c\x00\xff\x01\x1b\x04\x1c\x00\x1b\x05\x37\x04\x37"
        !          50923:             "\x05\x1a\x00\xff\x01\x1d\x04\x1a\x00\x1d\x05\x37\x04"
        !          50924:             "\x37\x05\x18\x00\xff\x01\x1f\x04\x18\x00\x1f\x05\x17"
        !          50925:             "\x00\xff\x01\x20\x04\x17\x00\x20\x05\x37\x04\x37\x05"
        !          50926:             "\x15\x00\xff\x01\x22\x04\x15\x00\x22\x05\x37\x04\x37"
        !          50927:             "\x05\x13\x00\xff\x01\x24\x04\x13\x00\x24\x05\x12\x00"
        !          50928:             "\xff\x01\x25\x04\x12\x00\x25\x05\x37\x04\x37\x05\x10"
        !          50929:             "\x00\xff\x01\x27\x04\x10\x00\x27\x05\x0f\x00\xff\x01"
        !          50930:             "\x28\x04\x0f\x00\x28\x05\x37\x04\x37\x05\x0d\x00\xff"
        !          50931:             "\x01\x2a\x04\x0d\x00\x2a\x05\x37\x04\x37\x05\x0b\x00"
        !          50932:             "\xff\x01\x2c\x04\x0b\x00\x2c\x05\x0a\x00\xff\x01\x2d"
        !          50933:             "\x04\x0a\x00\x2d\x05\x37\x04\x37\x05\x08\x00\xff\x01"
        !          50934:             "\x2f\x04\x08\x00\x2f\x05\x37\x04\x37\x05\x06\x00\xff"
        !          50935:             "\x01\x31\x04\x06\x00\x31\x05\x05\x00\xff\x01\x32\x04"
        !          50936:             "\x05\x00\x32\x05\x37\x04\x37\x05\x03\x00\xff\x01\x34"
        !          50937:             "\x04\x03\x00\x34\x05\x02\x00\xff\x01\x35\x04\x02\x00"
        !          50938:             "\x35\x05\x37\x04\x37\x05\xff\x01\x37\x04\x38\x02\x01" }  },
        !          50939:       /* --- pixel bitmap for cmex450 char#32 \Bigg( --- */
        !          50940:       {  32, 3564,                      /* character number, location */
        !          50941:           2,14,  -183,14,     /* topleft row,col, and botleft row,col */
        !          50942:           { 33,  185, 3,588, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          50943:             "\xe0\xe0\x23\xe0\xe0\x13\xe0\xe0\x13\xe0\xe0\x13\xe0"
        !          50944:             "\xe0\x14\xe0\xe4\xe0\xe0\x13\xe0\xe0\x13\xe0\xe0\x14"
        !          50945:             "\xe0\xe4\xe0\xe0\x13\xe0\xe0\x14\xe0\xe4\xe0\xe0\x13"
        !          50946:             "\xe0\xe0\x14\xa0\xf1\xe0\x44\xb0\xe0\x34\xe0\xe5\xe0"
        !          50947:             "\xe4\xe0\xe5\xe0\xe4\xe0\xe5\xe0\xe4\xe0\xe5\xe0\xe4"
        !          50948:             "\xe0\x20\xf1\xc5\xe0\x20\xf1\xb5\xe0\x30\xb4\xe0\x40"
        !          50949:             "\xf1\xa5\xe0\x40\xf2\x95\xe0\x50\xf2\x85\xe0\x60\xf2"
        !          50950:             "\x75\xe0\x70\x66\xe0\x70\xf1\x65\xe0\x80\xf1\x56\xe0"
        !          50951:             "\x80\xf1\x55\xe0\x90\xf1\x46\xe0\x90\xf2\x45\xe0\xa0"
        !          50952:             "\xf2\x36\xe0\xa0\xf1\x35\xe0\xb0\xf4\x26\xe0\xb0\xf1"
        !          50953:             "\x25\xe0\xc0\xf9\x16\xe0\xc0\x15\xe0\xdf\xe6\xe0\xdf"
        !          50954:             "\xe6\xe0\xd6\xe0\xe5\xe0\xd0\xf9\x16\xe0\xc0\xf1\x25"
        !          50955:             "\xe0\xc0\xf4\x26\xe0\xb0\xf1\x35\xe0\xb0\xf2\x36\xe0"
        !          50956:             "\xa0\xf2\x45\xe0\xa0\xf1\x46\xe0\x90\xf1\x55\xe0\x90"
        !          50957:             "\xf1\x56\xe0\x80\xf1\x65\xe0\x80\x66\xe0\x70\xf2\x75"
        !          50958:             "\xe0\x70\xf2\x85\xe0\x60\xf2\x95\xe0\x50\xf1\xa5\xe0"
        !          50959:             "\x40\xb4\xe0\x40\xf1\xb5\xe0\x30\xf1\xc5\xe0\x20\xd4"
        !          50960:             "\xe0\xe0\x15\xe0\xe0\x14\xe0\xe0\x15\xe0\xe0\x14\xe0"
        !          50961:             "\xe0\x15\xe0\xe0\x14\xe0\xe0\x15\xe0\xe0\x14\xc0\xf1"
        !          50962:             "\xe0\x44\xb0\xe0\x54\xe0\xe0\x23\xe0\xe0\x24\xe0\xe0"
        !          50963:             "\x24\xe0\xe0\x23\xe0\xe0\x24\xe0\xe0\x24\xe0\xe0\x23"
        !          50964:             "\xe0\xe0\x33\xe0\xe0\x24\xe0\xe0\x24\xe0\xe0\x23\xe0"
        !          50965:             "\xe0\x33\xe0\xe0\x33\xe0\xe0\x33" }  },
        !          50966:       /* --- pixel bitmap for cmex450 char#33 \Bigg) --- */
        !          50967:       {  33,10437,                      /* character number, location */
        !          50968:           2, 2,  -183, 2,     /* topleft row,col, and botleft row,col */
        !          50969:           { 33,  185, 3,591, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          50970:             "\x03\xe0\xe0\x33\xe0\xe0\x33\xe0\xe0\x33\xe0\xe0\x24"
        !          50971:             "\xe0\xe0\x24\xe0\xe0\x23\xe0\xe0\x33\xe0\xe0\x24\xe0"
        !          50972:             "\xe0\x24\xe0\xe0\x23\xe0\xe0\x24\xe0\xe0\x24\xe0\xe0"
        !          50973:             "\x23\xe0\xe0\x24\xe0\x50\xf1\xb4\xe0\x40\xc4\xe0\xe0"
        !          50974:             "\x15\xe0\xe0\x14\xe0\xe0\x15\xe0\xe0\x14\xe0\xe0\x15"
        !          50975:             "\xe0\xe0\x14\xe0\xe0\x15\xe0\xe0\x14\xd0\xf1\xe0\x25"
        !          50976:             "\xc0\xf1\xe0\x35\xb0\xe0\x44\xb0\xf1\xe0\x45\xa0\xf2"
        !          50977:             "\xe0\x55\x90\xf2\xe0\x65\x80\xf2\xe0\x75\x70\xe0\x76"
        !          50978:             "\x60\xf1\xe0\x85\x60\xf1\xe0\x86\x50\xf1\xe0\x95\x50"
        !          50979:             "\xf1\xe0\x96\x40\xf2\xe0\xa5\x40\xf2\xe0\xa6\x30\xf1"
        !          50980:             "\xe0\xb5\x30\xf4\xe0\xb6\x20\xf1\xe0\xc5\x20\xf9\xe0"
        !          50981:             "\xc6\x10\xe0\xd5\x10\xfe\xe0\xd6\xfe\xe0\xd6\xe0\xd6"
        !          50982:             "\xe0\xd5\x10\xf9\xe0\xc6\x10\xf1\xe0\xc5\x20\xf4\xe0"
        !          50983:             "\xb6\x20\xf1\xe0\xb5\x30\xf2\xe0\xa6\x30\xf2\xe0\xa5"
        !          50984:             "\x40\xf1\xe0\x96\x40\xf1\xe0\x95\x50\xf1\xe0\x86\x50"
        !          50985:             "\xf1\xe0\x85\x60\xe0\x76\x60\xf2\xe0\x75\x70\xf2\xe0"
        !          50986:             "\x65\x80\xf2\xe0\x55\x90\xf1\xe0\x45\xa0\xe0\x44\xb0"
        !          50987:             "\xf1\xe0\x35\xb0\xf1\xe0\x25\xc0\xe0\x24\xe0\xe5\xe0"
        !          50988:             "\xe4\xe0\xe5\xe0\xe4\xe0\xe5\xe0\xe4\xe0\xe5\xe0\xe4"
        !          50989:             "\xe0\x30\xf1\xb4\xe0\x40\xa4\xe0\xe0\x13\xe0\xe0\x14"
        !          50990:             "\xe0\xe4\xe0\xe0\x13\xe0\xe0\x14\xe0\xe4\xe0\xe0\x13"
        !          50991:             "\xe0\xe0\x13\xe0\xe0\x14\xe0\xe4\xe0\xe0\x13\xe0\xe0"
        !          50992:             "\x13\xe0\xe0\x13\xe0\xe0\x13\xe0\xe0\x20" }  },
        !          50993:       /* --- pixel bitmap for cmex450 char#34 \Bigg[ --- */
        !          50994:       {  34,17519,                      /* character number, location */
        !          50995:           2,17,  -183,17,     /* topleft row,col, and botleft row,col */
        !          50996:           { 18,  185, 2,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          50997:             "\xff\x03\x00\x12\x00\xff\xb0\x04\x0e\xff\x03\x12" }  },
        !          50998:       /* --- pixel bitmap for cmex450 char#35 \Bigg] --- */
        !          50999:       {  35,24377,                      /* character number, location */
        !          51000:           2, 1,  -183, 1,     /* topleft row,col, and botleft row,col */
        !          51001:           { 18,  185, 2,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          51002:             "\xff\x03\x00\x12\xff\xb0\x0e\x04\x00\xff\x03\x12" }  },
        !          51003:       /* --- pixel bitmap for cmex450 char#36 (noname) --- */
        !          51004:       {  36,31402,                      /* character number, location */
        !          51005:           2,17,  -183,17,     /* topleft row,col, and botleft row,col */
        !          51006:           { 22,  185, 2, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          51007:             "\xff\xb4\x00\x04\x12\xff\x03\x16" }  },
        !          51008:       /* --- pixel bitmap for cmex450 char#37 (noname) --- */
        !          51009:       {  37,35646,                      /* character number, location */
        !          51010:           2, 1,  -183, 1,     /* topleft row,col, and botleft row,col */
        !          51011:           { 22,  185, 2, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          51012:             "\xff\xb4\x12\x04\x00\xff\x03\x16" }  },
        !          51013:       /* --- pixel bitmap for cmex450 char#38 (noname) --- */
        !          51014:       {  38,39976,                      /* character number, location */
        !          51015:           2,17,  -183,17,     /* topleft row,col, and botleft row,col */
        !          51016:           { 22,  185, 2, 9, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          51017:             "\xff\x03\x00\x16\x00\xff\xb4\x04\x12" }  },
        !          51018:       /* --- pixel bitmap for cmex450 char#39 (noname) --- */
        !          51019:       {  39,44228,                      /* character number, location */
        !          51020:           2, 1,  -183, 1,     /* topleft row,col, and botleft row,col */
        !          51021:           { 22,  185, 2, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          51022:             "\xff\x03\x00\x16\xff\xb4\x12\x04" }  },
        !          51023:       /* --- pixel bitmap for cmex450 char#40 \Bigg{ --- */
        !          51024:       {  40,48964,                      /* character number, location */
        !          51025:           2, 9,  -183, 9,     /* topleft row,col, and botleft row,col */
        !          51026:           { 32,  185, 3,326, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          51027:             "\xe0\xe4\xe0\xd5\xe0\xb7\xe0\xa7\xe0\xa6\xe0\xa7\xe0"
        !          51028:             "\xa6\x60\xf1\xe0\x56\x70\xe0\x46\xe0\xb6\x90\xf1\xe0"
        !          51029:             "\x26\xa0\xf1\xe0\x16\xb0\xf3\xe6\xc0\xfe\xd6\xd0\xfe"
        !          51030:             "\xd6\xd0\xfe\xd6\xd0\xf9\xd6\xd0\xf2\xc6\xe0\xc5\xe0"
        !          51031:             "\xc6\xe0\xc5\xe0\xc6\xe0\xc5\xe0\xc6\xe0\xc5\xe0\xc5"
        !          51032:             "\xe0\xc5\xe0\xc5\xe0\xc5\xe0\xc5\xe0\xc5\xe0\xb6\xe0"
        !          51033:             "\xb5\xe0\xd3\xe0\xe0\x15\xe0\xe6\xe0\xe5\xe0\xe5\xe0"
        !          51034:             "\xe5\xe0\xe5\xe0\xe5\xe0\xe5\xe0\xe5\xe0\xd6\xe0\xd5"
        !          51035:             "\xe0\xd6\xe0\xd5\xe0\xd6\xe0\xd5\xe0\x10\xf2\xc6\xe0"
        !          51036:             "\xfe\xd6\xd0\xfe\xd6\xd0\xfe\xd6\xd0\xf9\xd6\xd0\xf3"
        !          51037:             "\xe6\xc0\xf1\xe0\x16\xb0\xf1\xe0\x26\xa0\xe0\x36\xe0"
        !          51038:             "\xd6\x80\xf1\xe0\x56\x70\xe0\x66\xe0\xd7\xe0\xd6\xe0"
        !          51039:             "\xd7\xe0\xc7\xe0\xd5\xe0\xe4" }  },
        !          51040:       /* --- pixel bitmap for cmex450 char#41 \Bigg} --- */
        !          51041:       {  41,57690,                      /* character number, location */
        !          51042:           2, 9,  -183, 9,     /* topleft row,col, and botleft row,col */
        !          51043:           { 32,  185, 3,327, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          51044:             "\x04\xe0\xe5\xe0\xd7\xe0\xc7\xe0\xd6\xe0\xd7\xe0\xd6"
        !          51045:             "\xe0\x60\xf1\x76\xe0\x50\x86\xe0\xd6\xe0\x30\xf1\xa6"
        !          51046:             "\xe0\x20\xf1\xb6\xe0\x10\xf3\xc6\xe0\xfe\xd6\xd0\xfe"
        !          51047:             "\xd6\xd0\xfe\xd6\xd0\xf9\xd6\xd0\xf2\xe6\xc0\xe0\x15"
        !          51048:             "\xe0\xd6\xe0\xd5\xe0\xd6\xe0\xd5\xe0\xd6\xe0\xd5\xe0"
        !          51049:             "\xe5\xe0\xe5\xe0\xe5\xe0\xe5\xe0\xe5\xe0\xe5\xe0\xe6"
        !          51050:             "\xe0\xe5\xe0\xe0\x13\xe0\xd5\xe0\xb6\xe0\xb5\xe0\xc5"
        !          51051:             "\xe0\xc5\xe0\xc5\xe0\xc5\xe0\xc5\xe0\xc5\xe0\xc6\xe0"
        !          51052:             "\xc5\xe0\xc6\xe0\xc5\xe0\xc6\xe0\xc5\xc0\xf2\xe6\xc0"
        !          51053:             "\xfe\xd6\xd0\xfe\xd6\xd0\xfe\xd6\xd0\xf9\xd6\xd0\xf3"
        !          51054:             "\xc6\xe0\xf1\xb6\xe0\x10\xf1\xa6\xe0\x20\x96\xe0\xb6"
        !          51055:             "\xe0\x40\xf1\x76\xe0\x50\x66\xe0\xa7\xe0\xa6\xe0\xa7"
        !          51056:             "\xe0\xa7\xe0\xb5\xe0\xd4\xe0\xe0" }  },
        !          51057:       /* --- pixel bitmap for cmex450 char#42 \Bigg< --- */
        !          51058:       {  42,66795,                      /* character number, location */
        !          51059:           2, 8,  -184, 8,     /* topleft row,col, and botleft row,col */
        !          51060:           { 36,  186, 3,571, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          51061:             "\xe0\xe0\x52\x10\xf1\xe0\xe0\x44\xf2\xe0\xe0\x34\x10"
        !          51062:             "\xf2\xe0\xe0\x24\x20\xf2\xe0\xe0\x14\x30\xf2\xe0\xe4"
        !          51063:             "\x40\xf2\xe0\xd4\x50\xf1\xe0\xc4\x60\xf2\xe0\xb4\x70"
        !          51064:             "\xf2\xe0\xa4\x80\xf2\xe0\x94\x90\xf2\xe0\x84\xa0\xf2"
        !          51065:             "\xe0\x74\xb0\xf2\xe0\x64\xc0\xf1\xe0\x54\xd0\xf2\xe0"
        !          51066:             "\x44\xe0\xf2\xe0\x34\xe0\x10\xf2\xe0\x24\xe0\x20\xf2"
        !          51067:             "\xe0\x14\xe0\x30\xf2\xe4\xe0\x40\xf1\xd4\xe0\x50\xf2"
        !          51068:             "\xc4\xe0\x60\xf2\xb4\xe0\x70\xf2\xa4\xe0\x80\xf2\x94"
        !          51069:             "\xe0\x90\xf2\x84\xe0\xa0\xf2\x74\xe0\xb0\xf1\x64\xe0"
        !          51070:             "\xc0\xf2\x54\xe0\xd0\xf2\x44\xe0\xe0\xf2\x34\xe0\xe0"
        !          51071:             "\x10\xf2\x24\xe0\xe0\x20\xf2\x14\xe0\xe0\x3f\x14\xe0"
        !          51072:             "\xe0\x40\xf2\x14\xe0\xe0\x30\xf2\x24\xe0\xe0\x20\xf2"
        !          51073:             "\x34\xe0\xe0\x10\xf2\x44\xe0\xe0\xf2\x54\xe0\xd0\xf1"
        !          51074:             "\x64\xe0\xc0\xf2\x74\xe0\xb0\xf2\x84\xe0\xa0\xf2\x94"
        !          51075:             "\xe0\x90\xf2\xa4\xe0\x80\xf2\xb4\xe0\x70\xf2\xc4\xe0"
        !          51076:             "\x60\xf1\xd4\xe0\x50\xf2\xe4\xe0\x40\xf2\xe0\x14\xe0"
        !          51077:             "\x30\xf2\xe0\x24\xe0\x20\xf2\xe0\x34\xe0\x10\xf2\xe0"
        !          51078:             "\x44\xe0\xf1\xe0\x54\xd0\xf2\xe0\x64\xc0\xf2\xe0\x74"
        !          51079:             "\xb0\xf2\xe0\x84\xa0\xf2\xe0\x94\x90\xf2\xe0\xa4\x80"
        !          51080:             "\xf2\xe0\xb4\x70\xf1\xe0\xc4\x60\xf2\xe0\xd4\x50\xf2"
        !          51081:             "\xe0\xe4\x40\xf2\xe0\xe0\x14\x30\xf2\xe0\xe0\x24\x20"
        !          51082:             "\xf2\xe0\xe0\x34\x10\xf1\xe0\xe0\x44\xe0\xe0\x52\x10" }  },
        !          51083:       /* --- pixel bitmap for cmex450 char#43 \Bigg> --- */
        !          51084:       {  43,70331,                      /* character number, location */
        !          51085:           2, 6,  -184, 6,     /* topleft row,col, and botleft row,col */
        !          51086:           { 36,  186, 3,571, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          51087:             "\x12\xe0\xe0\x5f\x14\xe0\xe0\x40\xf2\x14\xe0\xe0\x30"
        !          51088:             "\xf2\x24\xe0\xe0\x20\xf2\x34\xe0\xe0\x10\xf2\x44\xe0"
        !          51089:             "\xe0\xf2\x54\xe0\xd0\xf1\x64\xe0\xc0\xf2\x74\xe0\xb0"
        !          51090:             "\xf2\x84\xe0\xa0\xf2\x94\xe0\x90\xf2\xa4\xe0\x80\xf2"
        !          51091:             "\xb4\xe0\x70\xf2\xc4\xe0\x60\xf1\xd4\xe0\x50\xf2\xe4"
        !          51092:             "\xe0\x40\xf2\xe0\x14\xe0\x30\xf2\xe0\x24\xe0\x20\xf2"
        !          51093:             "\xe0\x34\xe0\x10\xf2\xe0\x44\xe0\xf1\xe0\x54\xd0\xf2"
        !          51094:             "\xe0\x64\xc0\xf2\xe0\x74\xb0\xf2\xe0\x84\xa0\xf2\xe0"
        !          51095:             "\x94\x90\xf2\xe0\xa4\x80\xf2\xe0\xb4\x70\xf1\xe0\xc4"
        !          51096:             "\x60\xf2\xe0\xd4\x50\xf2\xe0\xe4\x40\xf2\xe0\xe0\x14"
        !          51097:             "\x30\xf2\xe0\xe0\x24\x20\xf2\xe0\xe0\x34\x10\xf1\xe0"
        !          51098:             "\xe0\x44\xf2\xe0\xe0\x34\x10\xf2\xe0\xe0\x24\x20\xf2"
        !          51099:             "\xe0\xe0\x14\x30\xf2\xe0\xe4\x40\xf2\xe0\xd4\x50\xf1"
        !          51100:             "\xe0\xc4\x60\xf2\xe0\xb4\x70\xf2\xe0\xa4\x80\xf2\xe0"
        !          51101:             "\x94\x90\xf2\xe0\x84\xa0\xf2\xe0\x74\xb0\xf2\xe0\x64"
        !          51102:             "\xc0\xf1\xe0\x54\xd0\xf2\xe0\x44\xe0\xf2\xe0\x34\xe0"
        !          51103:             "\x10\xf2\xe0\x24\xe0\x20\xf2\xe0\x14\xe0\x30\xf2\xe4"
        !          51104:             "\xe0\x40\xf1\xd4\xe0\x50\xf2\xc4\xe0\x60\xf2\xb4\xe0"
        !          51105:             "\x70\xf2\xa4\xe0\x80\xf2\x94\xe0\x90\xf2\x84\xe0\xa0"
        !          51106:             "\xf2\x74\xe0\xb0\xf1\x64\xe0\xc0\xf2\x54\xe0\xd0\xf2"
        !          51107:             "\x44\xe0\xe0\xf2\x34\xe0\xe0\x10\xf2\x24\xe0\xe0\x20"
        !          51108:             "\xf2\x14\xe0\xe0\x3f\x14\xe0\xe0\x40\x12\xe0\xe0\x50" }  },
        !          51109:       /* --- pixel bitmap for cmex450 char#44 / --- */
        !          51110:       {  44,74189,                      /* character number, location */
        !          51111:           2, 3,  -183, 3,     /* topleft row,col, and botleft row,col */
        !          51112:           { 74,  185, 2,587, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          51113:             "\xff\x01\x46\x04\xff\x01\x45\x05\x45\x04\x01\x00\xff"
        !          51114:             "\x01\x44\x05\x01\x00\xff\x01\x43\x05\x02\x00\x43\x04"
        !          51115:             "\x03\x00\xff\x01\x42\x05\x03\x00\x42\x04\x04\x00\xff"
        !          51116:             "\x01\x41\x05\x04\x00\xff\x01\x40\x05\x05\x00\x40\x04"
        !          51117:             "\x06\x00\xff\x01\x3f\x05\x06\x00\xff\x01\x3e\x05\x07"
        !          51118:             "\x00\x3e\x04\x08\x00\xff\x01\x3d\x05\x08\x00\x3d\x04"
        !          51119:             "\x09\x00\xff\x01\x3c\x05\x09\x00\xff\x01\x3b\x05\x0a"
        !          51120:             "\x00\x3b\x04\x0b\x00\xff\x01\x3a\x05\x0b\x00\xff\x01"
        !          51121:             "\x39\x05\x0c\x00\x39\x04\x0d\x00\xff\x01\x38\x05\x0d"
        !          51122:             "\x00\xff\x01\x37\x05\x0e\x00\x37\x04\x0f\x00\xff\x01"
        !          51123:             "\x36\x05\x0f\x00\x36\x04\x10\x00\xff\x01\x35\x05\x10"
        !          51124:             "\x00\xff\x01\x34\x05\x11\x00\x34\x04\x12\x00\xff\x01"
        !          51125:             "\x33\x05\x12\x00\xff\x01\x32\x05\x13\x00\x32\x04\x14"
        !          51126:             "\x00\xff\x01\x31\x05\x14\x00\x31\x04\x15\x00\xff\x01"
        !          51127:             "\x30\x05\x15\x00\xff\x01\x2f\x05\x16\x00\x2f\x04\x17"
        !          51128:             "\x00\xff\x01\x2e\x05\x17\x00\xff\x01\x2d\x05\x18\x00"
        !          51129:             "\x2d\x04\x19\x00\xff\x01\x2c\x05\x19\x00\x2c\x04\x1a"
        !          51130:             "\x00\xff\x01\x2b\x05\x1a\x00\xff\x01\x2a\x05\x1b\x00"
        !          51131:             "\x2a\x04\x1c\x00\xff\x01\x29\x05\x1c\x00\xff\x01\x28"
        !          51132:             "\x05\x1d\x00\x28\x04\x1e\x00\xff\x01\x27\x05\x1e\x00"
        !          51133:             "\xff\x01\x26\x05\x1f\x00\x26\x04\x20\x00\xff\x01\x25"
        !          51134:             "\x05\x20\x00\x25\x04\x21\x00\xff\x01\x24\x05\x21\x00"
        !          51135:             "\xff\x01\x23\x05\x22\x00\x23\x04\x23\x00\xff\x01\x22"
        !          51136:             "\x05\x23\x00\xff\x01\x21\x05\x24\x00\x21\x04\x25\x00"
        !          51137:             "\xff\x01\x20\x05\x25\x00\x20\x04\x26\x00\xff\x01\x1f"
        !          51138:             "\x05\x26\x00\xff\x01\x1e\x05\x27\x00\x1e\x04\x28\x00"
        !          51139:             "\xff\x01\x1d\x05\x28\x00\xff\x01\x1c\x05\x29\x00\x1c"
        !          51140:             "\x04\x2a\x00\xff\x01\x1b\x05\x2a\x00\xff\x01\x1a\x05"
        !          51141:             "\x2b\x00\x1a\x04\x2c\x00\xff\x01\x19\x05\x2c\x00\x19"
        !          51142:             "\x04\x2d\x00\xff\x01\x18\x05\x2d\x00\xff\x01\x17\x05"
        !          51143:             "\x2e\x00\x17\x04\x2f\x00\xff\x01\x16\x05\x2f\x00\xff"
        !          51144:             "\x01\x15\x05\x30\x00\x15\x04\x31\x00\xff\x01\x14\x05"
        !          51145:             "\x31\x00\x14\x04\x32\x00\xff\x01\x13\x05\x32\x00\xff"
        !          51146:             "\x01\x12\x05\x33\x00\x12\x04\x34\x00\xff\x01\x11\x05"
        !          51147:             "\x34\x00\xff\x01\x10\x05\x35\x00\x10\x04\x36\x00\xff"
        !          51148:             "\x01\x0f\x05\x36\x00\x0f\x04\x37\x00\xff\x01\x0e\x05"
        !          51149:             "\x37\x00\xff\x01\x0d\x05\x38\x00\x0d\x04\x39\x00\xff"
        !          51150:             "\x01\x0c\x05\x39\x00\xff\x01\x0b\x05\x3a\x00\x0b\x04"
        !          51151:             "\x3b\x00\xff\x01\x0a\x05\x3b\x00\xff\x01\x09\x05\x3c"
        !          51152:             "\x00\x09\x04\x3d\x00\xff\x01\x08\x05\x3d\x00\x08\x04"
        !          51153:             "\x3e\x00\xff\x01\x07\x05\x3e\x00\xff\x01\x06\x05\x3f"
        !          51154:             "\x00\x06\x04\x40\x00\xff\x01\x05\x05\x40\x00\xff\x01"
        !          51155:             "\x04\x05\x41\x00\x04\x04\x42\x00\xff\x01\x03\x05\x42"
        !          51156:             "\x00\x03\x04\x43\x00\xff\x01\x02\x05\x43\x00\xff\x01"
        !          51157:             "\x01\x05\x44\x00\x01\x04\x45\xff\x01\x05\x45\xff\x01"
        !          51158:             "\x04\x46" }  },
        !          51159:       /* --- pixel bitmap for cmex450 char#45 \ --- */
        !          51160:       {  45,78062,                      /* character number, location */
        !          51161:           2, 3,  -183, 3,     /* topleft row,col, and botleft row,col */
        !          51162:           { 74,  185, 2,590, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          51163:             "\xff\x01\x00\x04\x46\xff\x01\x05\x45\x00\x01\x04\x45"
        !          51164:             "\x00\xff\x01\x01\x05\x44\x00\xff\x01\x02\x05\x43\x00"
        !          51165:             "\x03\x04\x43\x00\xff\x01\x03\x05\x42\x00\x04\x04\x42"
        !          51166:             "\x00\xff\x01\x04\x05\x41\x00\xff\x01\x05\x05\x40\x00"
        !          51167:             "\x06\x04\x40\x00\xff\x01\x06\x05\x3f\x00\xff\x01\x07"
        !          51168:             "\x05\x3e\x00\x08\x04\x3e\x00\xff\x01\x08\x05\x3d\x00"
        !          51169:             "\x09\x04\x3d\x00\xff\x01\x09\x05\x3c\x00\xff\x01\x0a"
        !          51170:             "\x05\x3b\x00\x0b\x04\x3b\x00\xff\x01\x0b\x05\x3a\x00"
        !          51171:             "\xff\x01\x0c\x05\x39\x00\x0d\x04\x39\x00\xff\x01\x0d"
        !          51172:             "\x05\x38\x00\xff\x01\x0e\x05\x37\x00\x0f\x04\x37\x00"
        !          51173:             "\xff\x01\x0f\x05\x36\x00\x10\x04\x36\x00\xff\x01\x10"
        !          51174:             "\x05\x35\x00\xff\x01\x11\x05\x34\x00\x12\x04\x34\x00"
        !          51175:             "\xff\x01\x12\x05\x33\x00\xff\x01\x13\x05\x32\x00\x14"
        !          51176:             "\x04\x32\x00\xff\x01\x14\x05\x31\x00\x15\x04\x31\x00"
        !          51177:             "\xff\x01\x15\x05\x30\x00\xff\x01\x16\x05\x2f\x00\x17"
        !          51178:             "\x04\x2f\x00\xff\x01\x17\x05\x2e\x00\xff\x01\x18\x05"
        !          51179:             "\x2d\x00\x19\x04\x2d\x00\xff\x01\x19\x05\x2c\x00\x1a"
        !          51180:             "\x04\x2c\x00\xff\x01\x1a\x05\x2b\x00\xff\x01\x1b\x05"
        !          51181:             "\x2a\x00\x1c\x04\x2a\x00\xff\x01\x1c\x05\x29\x00\xff"
        !          51182:             "\x01\x1d\x05\x28\x00\x1e\x04\x28\x00\xff\x01\x1e\x05"
        !          51183:             "\x27\x00\xff\x01\x1f\x05\x26\x00\x20\x04\x26\x00\xff"
        !          51184:             "\x01\x20\x05\x25\x00\x21\x04\x25\x00\xff\x01\x21\x05"
        !          51185:             "\x24\x00\xff\x01\x22\x05\x23\x00\x23\x04\x23\x00\xff"
        !          51186:             "\x01\x23\x05\x22\x00\xff\x01\x24\x05\x21\x00\x25\x04"
        !          51187:             "\x21\x00\xff\x01\x25\x05\x20\x00\x26\x04\x20\x00\xff"
        !          51188:             "\x01\x26\x05\x1f\x00\xff\x01\x27\x05\x1e\x00\x28\x04"
        !          51189:             "\x1e\x00\xff\x01\x28\x05\x1d\x00\xff\x01\x29\x05\x1c"
        !          51190:             "\x00\x2a\x04\x1c\x00\xff\x01\x2a\x05\x1b\x00\xff\x01"
        !          51191:             "\x2b\x05\x1a\x00\x2c\x04\x1a\x00\xff\x01\x2c\x05\x19"
        !          51192:             "\x00\x2d\x04\x19\x00\xff\x01\x2d\x05\x18\x00\xff\x01"
        !          51193:             "\x2e\x05\x17\x00\x2f\x04\x17\x00\xff\x01\x2f\x05\x16"
        !          51194:             "\x00\xff\x01\x30\x05\x15\x00\x31\x04\x15\x00\xff\x01"
        !          51195:             "\x31\x05\x14\x00\x32\x04\x14\x00\xff\x01\x32\x05\x13"
        !          51196:             "\x00\xff\x01\x33\x05\x12\x00\x34\x04\x12\x00\xff\x01"
        !          51197:             "\x34\x05\x11\x00\xff\x01\x35\x05\x10\x00\x36\x04\x10"
        !          51198:             "\x00\xff\x01\x36\x05\x0f\x00\x37\x04\x0f\x00\xff\x01"
        !          51199:             "\x37\x05\x0e\x00\xff\x01\x38\x05\x0d\x00\x39\x04\x0d"
        !          51200:             "\x00\xff\x01\x39\x05\x0c\x00\xff\x01\x3a\x05\x0b\x00"
        !          51201:             "\x3b\x04\x0b\x00\xff\x01\x3b\x05\x0a\x00\xff\x01\x3c"
        !          51202:             "\x05\x09\x00\x3d\x04\x09\x00\xff\x01\x3d\x05\x08\x00"
        !          51203:             "\x3e\x04\x08\x00\xff\x01\x3e\x05\x07\x00\xff\x01\x3f"
        !          51204:             "\x05\x06\x00\x40\x04\x06\x00\xff\x01\x40\x05\x05\x00"
        !          51205:             "\xff\x01\x41\x05\x04\x00\x42\x04\x04\x00\xff\x01\x42"
        !          51206:             "\x05\x03\x00\x43\x04\x03\x00\xff\x01\x43\x05\x02\x00"
        !          51207:             "\xff\x01\x44\x05\x01\x00\x45\x04\x01\x00\xff\x01\x45"
        !          51208:             "\x05\xff\x01\x46\x04" }  },
        !          51209:       /* --- pixel bitmap for cmex450 char#46 / --- */
        !          51210:       {  46,72051,                      /* character number, location */
        !          51211:           2, 3,  -109, 3,     /* topleft row,col, and botleft row,col */
        !          51212:           { 44,  111, 3,409, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          51213:             "\xe0\xe0\xd2\x10\xf1\xe0\xe0\xc4\xf2\xe0\xe0\xb4\x10"
        !          51214:             "\xf2\xe0\xe0\xa4\x20\xf1\xe0\xe0\x94\x30\xf2\xe0\xe0"
        !          51215:             "\x84\x40\xf2\xe0\xe0\x74\x50\xf1\xe0\xe0\x64\x60\xf2"
        !          51216:             "\xe0\xe0\x54\x70\xf2\xe0\xe0\x44\x80\xf1\xe0\xe0\x34"
        !          51217:             "\x90\xf2\xe0\xe0\x24\xa0\xf2\xe0\xe0\x14\xb0\xf1\xe0"
        !          51218:             "\xe4\xc0\xf2\xe0\xd4\xd0\xf2\xe0\xc4\xe0\xf1\xe0\xb4"
        !          51219:             "\xe0\x10\xf2\xe0\xa4\xe0\x20\xf2\xe0\x94\xe0\x30\xf1"
        !          51220:             "\xe0\x84\xe0\x40\xf2\xe0\x74\xe0\x50\xf2\xe0\x64\xe0"
        !          51221:             "\x60\xf2\xe0\x54\xe0\x70\xf1\xe0\x44\xe0\x80\xf2\xe0"
        !          51222:             "\x34\xe0\x90\xf2\xe0\x24\xe0\xa0\xf1\xe0\x14\xe0\xb0"
        !          51223:             "\xf2\xe4\xe0\xc0\xf2\xd4\xe0\xd0\xf1\xc4\xe0\xe0\xf2"
        !          51224:             "\xb4\xe0\xe0\x10\xf2\xa4\xe0\xe0\x20\xf1\x94\xe0\xe0"
        !          51225:             "\x30\xf2\x84\xe0\xe0\x40\xf2\x74\xe0\xe0\x50\xf1\x64"
        !          51226:             "\xe0\xe0\x60\xf2\x54\xe0\xe0\x70\xf2\x44\xe0\xe0\x80"
        !          51227:             "\xf1\x34\xe0\xe0\x90\xf2\x24\xe0\xe0\xa0\xf2\x14\xe0"
        !          51228:             "\xe0\xbf\x14\xe0\xe0\xc0\x12\xe0\xe0\xd2" }  },
        !          51229:       /* --- pixel bitmap for cmex450 char#47 \ --- */
        !          51230:       {  47,75916,                      /* character number, location */
        !          51231:           2, 3,  -109, 3,     /* topleft row,col, and botleft row,col */
        !          51232:           { 44,  111, 3,409, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          51233:             "\x12\xe0\xe0\xdf\x14\xe0\xe0\xc0\xf2\x14\xe0\xe0\xb0"
        !          51234:             "\xf2\x24\xe0\xe0\xa0\xf1\x34\xe0\xe0\x90\xf2\x44\xe0"
        !          51235:             "\xe0\x80\xf2\x54\xe0\xe0\x70\xf1\x64\xe0\xe0\x60\xf2"
        !          51236:             "\x74\xe0\xe0\x50\xf2\x84\xe0\xe0\x40\xf1\x94\xe0\xe0"
        !          51237:             "\x30\xf2\xa4\xe0\xe0\x20\xf2\xb4\xe0\xe0\x10\xf1\xc4"
        !          51238:             "\xe0\xe0\xf2\xd4\xe0\xd0\xf2\xe4\xe0\xc0\xf1\xe0\x14"
        !          51239:             "\xe0\xb0\xf2\xe0\x24\xe0\xa0\xf2\xe0\x34\xe0\x90\xf1"
        !          51240:             "\xe0\x44\xe0\x80\xf2\xe0\x54\xe0\x70\xf2\xe0\x64\xe0"
        !          51241:             "\x60\xf2\xe0\x74\xe0\x50\xf1\xe0\x84\xe0\x40\xf2\xe0"
        !          51242:             "\x94\xe0\x30\xf2\xe0\xa4\xe0\x20\xf1\xe0\xb4\xe0\x10"
        !          51243:             "\xf2\xe0\xc4\xe0\xf2\xe0\xd4\xd0\xf1\xe0\xe4\xc0\xf2"
        !          51244:             "\xe0\xe0\x14\xb0\xf2\xe0\xe0\x24\xa0\xf1\xe0\xe0\x34"
        !          51245:             "\x90\xf2\xe0\xe0\x44\x80\xf2\xe0\xe0\x54\x70\xf1\xe0"
        !          51246:             "\xe0\x64\x60\xf2\xe0\xe0\x74\x50\xf2\xe0\xe0\x84\x40"
        !          51247:             "\xf1\xe0\xe0\x94\x30\xf2\xe0\xe0\xa4\x20\xf2\xe0\xe0"
        !          51248:             "\xb4\x10\xf1\xe0\xe0\xc4\xe0\xe0\xd2\x10" }  },
        !          51249:       /* --- pixel bitmap for cmex450 char#48 \leftparentop --- */
        !          51250:       {  48, 4740,                      /* character number, location */
        !          51251:           1,18,  -111,18,     /* topleft row,col, and botleft row,col */
        !          51252:           { 34,  112, 3,327, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          51253:             "\xe0\xe0\x24\xe0\xe0\x14\xe0\xe0\x15\xe0\xe0\x14\xe0"
        !          51254:             "\xe0\x14\xe0\xe0\x15\xe0\xe5\xe0\xe0\x14\xe0\xe0\x15"
        !          51255:             "\xe0\xe5\xe0\xe0\x14\xe0\xe0\x15\xe0\xe0\x14\xe0\xe0"
        !          51256:             "\x15\x80\xf1\xe0\x65\x90\xf1\xe0\x55\xa0\xf1\xe0\x45"
        !          51257:             "\xb0\xf1\xe0\x35\xc0\xf1\xe0\x25\xd0\xe0\x16\xe0\xe5"
        !          51258:             "\xe0\xe6\xe0\xe5\xe0\x10\xf1\xd6\xe0\x10\xd5\xe0\xe6"
        !          51259:             "\xe0\xe5\xe0\x30\xf1\xb6\xe0\x30\xb5\xe0\x40\xf1\xa6"
        !          51260:             "\xe0\x40\xa5\xe0\x50\xf2\x96\xe0\x50\xf2\x86\xe0\x60"
        !          51261:             "\x77\xe0\x60\xf2\x76\xe0\x70\x67\xe0\x70\xf2\x66\xe0"
        !          51262:             "\x80\xf1\x57\xe0\x80\xf2\x56\xe0\x90\xf1\x47\xe0\x90"
        !          51263:             "\xf2\x46\xe0\xa0\xf3\x37\xe0\xa0\xf2\x36\xe0\xb0\xf5"
        !          51264:             "\x27\xe0\xb0\xf1\x26\xe0\xc0\xfa\x17\xe0\xc0\xf1\x16"
        !          51265:             "\xe0\xdf\xe7\xe0\xdf\x57\xe0\xd5" }  },
        !          51266:       /* --- pixel bitmap for cmex450 char#49 \rightparentop --- */
        !          51267:       {  49,11588,                      /* character number, location */
        !          51268:           1, 2,  -111, 2,     /* topleft row,col, and botleft row,col */
        !          51269:           { 34,  112, 3,336, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          51270:             "\x04\xe0\xe0\x34\xe0\xe0\x25\xe0\xe0\x24\xe0\xe0\x34"
        !          51271:             "\xe0\xe0\x25\xe0\xe0\x25\xe0\xe0\x24\xe0\xe0\x25\xe0"
        !          51272:             "\xe0\x25\xe0\xe0\x24\xe0\xe0\x25\xe0\xe0\x24\xe0\xe0"
        !          51273:             "\x25\xe0\x70\xf1\x95\xe0\x60\xf1\xa5\xe0\x50\xf1\xb5"
        !          51274:             "\xe0\x40\xf1\xc5\xe0\x30\xf1\xd5\xe0\x20\xd6\xe0\xe0"
        !          51275:             "\x15\xe0\xe0\x16\xe0\xe0\x15\xe0\xf1\xe0\x16\xd0\xe0"
        !          51276:             "\x25\xe0\xe0\x16\xe0\xe0\x15\xc0\xf1\xe0\x36\xb0\xe0"
        !          51277:             "\x45\xb0\xf1\xe0\x46\xa0\xe0\x55\xa0\xf2\xe0\x56\x90"
        !          51278:             "\xf2\xe0\x66\x80\xe0\x67\x70\xf2\xe0\x76\x70\xe0\x77"
        !          51279:             "\x60\xf2\xe0\x86\x60\xf1\xe0\x87\x50\xf2\xe0\x96\x50"
        !          51280:             "\xf1\xe0\x97\x40\xf2\xe0\xa6\x40\xf3\xe0\xa7\x30\xf2"
        !          51281:             "\xe0\xb6\x30\xf5\xe0\xb7\x20\xf1\xe0\xc6\x20\xfa\xe0"
        !          51282:             "\xc7\x10\xf1\xe0\xd6\x10\xfe\xe0\xd7\xf5\xe0\xd7" }  },
        !          51283:       /* --- pixel bitmap for cmex450 char#50 (noname) --- */
        !          51284:       {  50,18655,                      /* character number, location */
        !          51285:           1,21,  -110,21,     /* topleft row,col, and botleft row,col */
        !          51286:           { 20,  111, 2, 9, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          51287:             "\xff\x03\x00\x14\x00\xff\x6a\x04\x10" }  },
        !          51288:       /* --- pixel bitmap for cmex450 char#51 (noname) --- */
        !          51289:       {  51,25500,                      /* character number, location */
        !          51290:           1, 1,  -110, 1,     /* topleft row,col, and botleft row,col */
        !          51291:           { 20,  111, 2, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          51292:             "\xff\x03\x00\x14\xff\x6a\x10\x04" }  },
        !          51293:       /* --- pixel bitmap for cmex450 char#52 (noname) --- */
        !          51294:       {  52,19646,                      /* character number, location */
        !          51295:           2,21,  -109,21,     /* topleft row,col, and botleft row,col */
        !          51296:           { 20,  111, 2, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          51297:             "\xff\x6a\x00\x04\x10\xff\x03\x14" }  },
        !          51298:       /* --- pixel bitmap for cmex450 char#53 (noname) --- */
        !          51299:       {  53,26478,                      /* character number, location */
        !          51300:           2, 1,  -109, 1,     /* topleft row,col, and botleft row,col */
        !          51301:           { 20,  111, 2, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          51302:             "\xff\x6a\x10\x04\x00\xff\x03\x14" }  },
        !          51303:       /* --- pixel bitmap for cmex450 char#54 (noname) --- */
        !          51304:       {  54,20553,                      /* character number, location */
        !          51305:           1,21,  -38,21,      /* topleft row,col, and botleft row,col */
        !          51306:           {  4,   39, 2, 4, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          51307:             "\xff\x26\x00\x04" }  },
        !          51308:       /* --- pixel bitmap for cmex450 char#55 (noname) --- */
        !          51309:       {  55,27372,                      /* character number, location */
        !          51310:           1,17,  -38,17,      /* topleft row,col, and botleft row,col */
        !          51311:           {  4,   39, 2, 4, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          51312:             "\xff\x26\x00\x04" }  },
        !          51313:       /* --- pixel bitmap for cmex450 char#56 \leftbracetop --- */
        !          51314:       {  56,50187,                      /* character number, location */
        !          51315:          -1,24,  -57,24,      /* topleft row,col, and botleft row,col */
        !          51316:           { 21,   56, 3,69, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          51317:             "\xe0\x34\xe0\x16\xe7\xc9\xb9\xb8\xc8\xc8\xc8\xc8\xd7"
        !          51318:             "\xd8\x80\xf1\x48\x90\xf1\x38\xa0\xf1\x28\xb0\x27\xc0"
        !          51319:             "\xf2\x18\xcf\xe8\xdf\xe8\xdf\x38\xd0" }  },
        !          51320:       /* --- pixel bitmap for cmex450 char#57 \rightbracetop --- */
        !          51321:       {  57,58914,                      /* character number, location */
        !          51322:          -1,10,  -57,10,      /* topleft row,col, and botleft row,col */
        !          51323:           { 22,   56, 3,80, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          51324:             "\x04\xe0\x46\xe0\x28\xe9\xe9\xe0\x18\xe0\x19\xe9\xe8"
        !          51325:             "\xe0\x18\xe0\x18\x60\xf1\x98\x50\xa8\x40\xf1\xb8\x30"
        !          51326:             "\xf2\xc8\x20\xf2\xd8\x10\xe7\x10\xfe\xe8\xfe\xe8\xf2"
        !          51327:             "\xe8" }  },
        !          51328:       /* --- pixel bitmap for cmex450 char#58 \leftbracebot --- */
        !          51329:       {  58,51174,                      /* character number, location */
        !          51330:           1,24,  -55,24,      /* topleft row,col, and botleft row,col */
        !          51331:           { 21,   56, 3,70, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          51332:             "\xfe\x08\xdf\xe8\xdf\x38\xd0\xf2\x18\xc0\x27\xc0\xf1"
        !          51333:             "\x28\xb0\xf1\x38\xa0\xf1\x48\x90\x58\xe7\xe8\xe8\xe8"
        !          51334:             "\xe8\xe8\xe9\xd9\xe7\xe0\x16\xe0\x34" }  },
        !          51335:       /* --- pixel bitmap for cmex450 char#59 \rightbracebot --- */
        !          51336:       {  59,59902,                      /* character number, location */
        !          51337:           1,10,  -55,10,      /* topleft row,col, and botleft row,col */
        !          51338:           { 22,   56, 3,71, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          51339:             "\xfe\xe8\xfe\xe8\xf2\xe8\xe7\x10\xf2\xd8\x10\xf2\xc8"
        !          51340:             "\x20\xf1\xb8\x30\xa8\x40\xf1\x98\x50\x88\xd8\xd8\xd9"
        !          51341:             "\xc9\xc8\xc9\xc9\xd8\xe6\xe0\x24\xe0\x48" }  },
        !          51342:       /* --- pixel bitmap for cmex450 char#60 \leftbracemid --- */
        !          51343:       {  60,52236,                      /* character number, location */
        !          51344:           1,10,  -113,10,     /* topleft row,col, and botleft row,col */
        !          51345:           { 22,  114, 3,174, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          51346:             "\xfe\xe8\xfe\xe8\xf2\xe8\xe7\x10\xf2\xd8\x10\xd7\x20"
        !          51347:             "\xf1\xc8\x20\xc7\xe8\xe7\xe8\xe7\xe8\xe7\xe7\xe7\xe0"
        !          51348:             "\x16\xe0\x17\xe7\xe6\xe0\x16\xe7\xe7\xe0\x1f\x15\xe0"
        !          51349:             "\x37\xe0\x27\xe0\x36\xe0\x36\xe0\x37\xe0\x27\xe0\x26"
        !          51350:             "\xe0\x27\xe0\x27\xe0\x27\xe0\x18\xe0\x17\xe0\x18\xe0"
        !          51351:             "\x17\xe0\x18\xe0\x17\x30\xf1\xc8\x20\xd7\x20\xf2\xd8"
        !          51352:             "\x10\xe7\x10\xfe\xe8\xfe\xe8\xf2\xe8" }  },
        !          51353:       /* --- pixel bitmap for cmex450 char#61 \rightbracemid --- */
        !          51354:       {  61,60965,                      /* character number, location */
        !          51355:           1,24,  -113,24,     /* topleft row,col, and botleft row,col */
        !          51356:           { 21,  114, 3,159, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          51357:             "\xfe\x08\xdf\xe8\xdf\x28\xd0\x17\xd0\xf3\x18\xc0\x27"
        !          51358:             "\xe8\xb0\xf1\x37\xb0\x38\xe7\xa0\xf1\x57\x90\xf1\x67"
        !          51359:             "\x80\x77\xe0\x17\xe0\x17\xe0\x17\xe0\x16\xe0\x27\xe0"
        !          51360:             "\x17\xe0\x17\xf1\xe0\x25\xe7\xd7\xd7\xd6\xe7\xd7\xd7"
        !          51361:             "\xd7\x70\xf1\x67\x80\xf1\x57\x90\x47\xd8\xa0\xf1\x37"
        !          51362:             "\xb0\x28\xd7\xc0\xf3\x18\xc0\x17\xdf\xe8\xdf\xe8\xdf"
        !          51363:             "\x28\xd5" }  },
        !          51364:       /* --- pixel bitmap for cmex450 char#62 \leftbracebar --- */
        !          51365:       {  62,53278,                      /* character number, location */
        !          51366:           1,24,  -20,24,      /* topleft row,col, and botleft row,col */
        !          51367:           {  8,   21, 3, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          51368:             "\xfe\x08\x0f\x58" }  },
        !          51369:       /* --- pixel bitmap for cmex450 char#63 (noname) --- */
        !          51370:       {  63,82394,                      /* character number, location */
        !          51371:           1,20,  -38,20,      /* topleft row,col, and botleft row,col */
        !          51372:           {  3,   39, 2, 4, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          51373:             "\xff\x26\x00\x03" }  },
        !          51374:       /* --- pixel bitmap for cmex450 char#64 \leftparenbot --- */
        !          51375:       {  64, 5773,                      /* character number, location */
        !          51376:           3,18,  -109,18,     /* topleft row,col, and botleft row,col */
        !          51377:           { 34,  112, 3,336, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          51378:             "\xfe\x07\xe0\xdf\x57\xe0\xd0\xf1\x16\xe0\xd0\xfa\x17"
        !          51379:             "\xe0\xc0\xf1\x26\xe0\xc0\xf5\x27\xe0\xb0\xf2\x36\xe0"
        !          51380:             "\xb0\xf3\x37\xe0\xa0\xf2\x46\xe0\xa0\xf1\x47\xe0\x90"
        !          51381:             "\xf2\x56\xe0\x90\xf1\x57\xe0\x80\xf2\x66\xe0\x80\x67"
        !          51382:             "\xe0\x70\xf2\x76\xe0\x70\x77\xe0\x60\xf2\x86\xe0\x60"
        !          51383:             "\xf2\x96\xe0\x50\xa5\xe0\x50\xf1\xa6\xe0\x40\xb5\xe0"
        !          51384:             "\x40\xf1\xb6\xe0\x30\xc5\xe0\xe0\x16\xe0\xe0\x15\xe0"
        !          51385:             "\x20\xf1\xd6\xe0\x10\xe5\xe0\xe0\x16\xe0\xe0\x15\xe0"
        !          51386:             "\xe0\x16\xd0\xf1\xe0\x25\xd0\xf1\xe0\x35\xc0\xf1\xe0"
        !          51387:             "\x45\xb0\xf1\xe0\x55\xa0\xf1\xe0\x65\x90\xe0\x75\xe0"
        !          51388:             "\xe0\x24\xe0\xe0\x25\xe0\xe0\x24\xe0\xe0\x25\xe0\xe0"
        !          51389:             "\x25\xe0\xe0\x24\xe0\xe0\x25\xe0\xe0\x25\xe0\xe0\x24"
        !          51390:             "\xe0\xe0\x34\xe0\xe0\x25\xe0\xe0\x24\xe0\xe0\x34" }  },
        !          51391:       /* --- pixel bitmap for cmex450 char#65 \rightparenbot --- */
        !          51392:       {  65,12596,                      /* character number, location */
        !          51393:           3, 2,  -109, 2,     /* topleft row,col, and botleft row,col */
        !          51394:           { 34,  112, 3,327, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          51395:             "\xfe\xe0\xd7\xf5\xe0\xd7\xf1\xe0\xd6\x10\xfa\xe0\xc7"
        !          51396:             "\x10\xf1\xe0\xc6\x20\xf5\xe0\xb7\x20\xf2\xe0\xb6\x30"
        !          51397:             "\xf3\xe0\xa7\x30\xf2\xe0\xa6\x40\xf1\xe0\x97\x40\xf2"
        !          51398:             "\xe0\x96\x50\xf1\xe0\x87\x50\xf2\xe0\x86\x60\xe0\x77"
        !          51399:             "\x60\xf2\xe0\x76\x70\xe0\x67\x70\xf2\xe0\x66\x80\xf2"
        !          51400:             "\xe0\x56\x90\xe0\x55\xa0\xf1\xe0\x46\xa0\xe0\x45\xb0"
        !          51401:             "\xf1\xe0\x36\xb0\xe0\x35\xe0\xe6\xe0\xe5\xd0\xf1\xe0"
        !          51402:             "\x16\xd0\xe0\x15\xe0\xe6\xe0\xe5\xe0\xe6\xe0\x10\xf1"
        !          51403:             "\xd5\xe0\x20\xf1\xc5\xe0\x30\xf1\xb5\xe0\x40\xf1\xa5"
        !          51404:             "\xe0\x50\xf1\x95\xe0\x60\x85\xe0\xe0\x14\xe0\xe0\x15"
        !          51405:             "\xe0\xe0\x14\xe0\xe0\x15\xe0\xe5\xe0\xe0\x14\xe0\xe0"
        !          51406:             "\x15\xe0\xe5\xe0\xe0\x14\xe0\xe0\x14\xe0\xe0\x15\xe0"
        !          51407:             "\xe0\x14\xe0\xe0\x14\xe0\xe0\x20" }  },
        !          51408:       /* --- pixel bitmap for cmex450 char#66 \leftparenbar --- */
        !          51409:       {  66, 6819,                      /* character number, location */
        !          51410:           1,18,  -38,18,      /* topleft row,col, and botleft row,col */
        !          51411:           {  7,   39, 2, 4, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          51412:             "\xff\x26\x00\x07" }  },
        !          51413:       /* --- pixel bitmap for cmex450 char#67 \rightparenbar --- */
        !          51414:       {  67,13617,                      /* character number, location */
        !          51415:           1,29,  -38,29,      /* topleft row,col, and botleft row,col */
        !          51416:           {  7,   39, 2, 4, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          51417:             "\xff\x26\x00\x07" }  },
        !          51418:       /* --- pixel bitmap for cmex450 char#68 \Big< --- */
        !          51419:       {  68,64911,                      /* character number, location */
        !          51420:           2, 7,  -109, 7,     /* topleft row,col, and botleft row,col */
        !          51421:           { 26,  111, 3,420, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          51422:             "\xf1\xe0\x93\xf1\xe0\x84\xf1\xe0\x74\x10\xf1\xe0\x64"
        !          51423:             "\x20\xe0\x63\x30\xf1\xe0\x54\x30\xf1\xe0\x44\x40\xf1"
        !          51424:             "\xe0\x34\x50\xe0\x33\x60\xf1\xe0\x24\x60\xf1\xe0\x14"
        !          51425:             "\x70\xf1\xe4\x80\xe3\x90\xf1\xd4\x90\xf1\xc4\xa0\xf1"
        !          51426:             "\xb4\xb0\xb3\xc0\xf1\xa4\xc0\xf1\x94\xd0\x93\xe0\xf1"
        !          51427:             "\x84\xe0\xf1\x74\xe0\x10\xf1\x64\xe0\x20\x63\xe0\x30"
        !          51428:             "\xf1\x54\xe0\x30\xf1\x44\xe0\x40\xf1\x34\xe0\x50\x33"
        !          51429:             "\xe0\x60\xf1\x24\xe0\x60\xf1\x14\xe0\x7f\x14\xe0\x83"
        !          51430:             "\xe0\x9f\x14\xe0\x80\xf1\x14\xe0\x70\xf1\x24\xe0\x60"
        !          51431:             "\x33\xe0\x60\xf1\x34\xe0\x50\xf1\x44\xe0\x40\xf1\x54"
        !          51432:             "\xe0\x30\x63\xe0\x30\xf1\x64\xe0\x20\xf1\x74\xe0\x10"
        !          51433:             "\xf1\x84\xe0\x93\xe0\xf1\x94\xd0\xf1\xa4\xc0\xb3\xc0"
        !          51434:             "\xf1\xb4\xb0\xf1\xc4\xa0\xf1\xd4\x90\xe3\x90\xf1\xe4"
        !          51435:             "\x80\xf1\xe0\x14\x70\xf1\xe0\x24\x60\xe0\x33\x60\xf1"
        !          51436:             "\xe0\x34\x50\xf1\xe0\x44\x40\xf1\xe0\x54\x30\xe0\x63"
        !          51437:             "\x30\xf1\xe0\x64\x20\xf1\xe0\x74\x10\xf1\xe0\x84\xf1"
        !          51438:             "\xe0\x93" }  },
        !          51439:       /* --- pixel bitmap for cmex450 char#69 \Big> --- */
        !          51440:       {  69,68445,                      /* character number, location */
        !          51441:           2, 5,  -109, 5,     /* topleft row,col, and botleft row,col */
        !          51442:           { 26,  111, 3,421, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          51443:             "\xf1\x03\xe0\x9f\x14\xe0\x80\xf1\x14\xe0\x70\xf1\x24"
        !          51444:             "\xe0\x60\x33\xe0\x60\xf1\x34\xe0\x50\xf1\x44\xe0\x40"
        !          51445:             "\xf1\x54\xe0\x30\x63\xe0\x30\xf1\x64\xe0\x20\xf1\x74"
        !          51446:             "\xe0\x10\xf1\x84\xe0\x93\xe0\xf1\x94\xd0\xf1\xa4\xc0"
        !          51447:             "\xf1\xb4\xb0\xc3\xb0\xf1\xc4\xa0\xf1\xd4\x90\xe3\x90"
        !          51448:             "\xf1\xe4\x80\xf1\xe0\x14\x70\xf1\xe0\x24\x60\xe0\x33"
        !          51449:             "\x60\xf1\xe0\x34\x50\xf1\xe0\x44\x40\xf1\xe0\x54\x30"
        !          51450:             "\xe0\x63\x30\xf1\xe0\x64\x20\xf1\xe0\x74\x10\xf1\xe0"
        !          51451:             "\x84\xe0\x93\xf1\xe0\x84\xf1\xe0\x74\x10\xf1\xe0\x64"
        !          51452:             "\x20\xe0\x63\x30\xf1\xe0\x54\x30\xf1\xe0\x44\x40\xf1"
        !          51453:             "\xe0\x34\x50\xe0\x33\x60\xf1\xe0\x24\x60\xf1\xe0\x14"
        !          51454:             "\x70\xf1\xe4\x80\xe3\x90\xf1\xd4\x90\xf1\xc4\xa0\xc3"
        !          51455:             "\xb0\xf1\xb4\xb0\xf1\xa4\xc0\xf1\x94\xd0\x93\xe0\xf1"
        !          51456:             "\x84\xe0\xf1\x74\xe0\x10\xf1\x64\xe0\x20\x63\xe0\x30"
        !          51457:             "\xf1\x54\xe0\x30\xf1\x44\xe0\x40\xf1\x34\xe0\x50\x33"
        !          51458:             "\xe0\x60\xf1\x24\xe0\x60\xf1\x14\xe0\x7f\x14\xe0\x8f"
        !          51459:             "\x13\xe0\x90" }  },
        !          51460:       /* --- pixel bitmap for cmex450 char#70 \bigsqcup --- */
        !          51461:       {  70,94847,                      /* character number, location */
        !          51462:           0, 3,  -62, 3,      /* topleft row,col, and botleft row,col */
        !          51463:           { 46,   62, 2,17, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          51464:             "\x01\x02\x28\x02\x01\xff\x38\x04\x26\x04\x00\xff\x02"
        !          51465:             "\x2e\x01\x2c\x01" }  },
        !          51466:       /* --- pixel bitmap for cmex450 char#71 \Bigsqcup --- */
        !          51467:       {  71,95944,                      /* character number, location */
        !          51468:           0, 3,  -87, 3,      /* topleft row,col, and botleft row,col */
        !          51469:           { 63,   87, 2,17, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          51470:             "\x01\x03\x37\x03\x01\xff\x50\x05\x35\x05\x00\xff\x03"
        !          51471:             "\x3f\x01\x3d\x01" }  },
        !          51472:       /* --- pixel bitmap for cmex450 char#72 \oint --- */
        !          51473:       {  72,118136,                     /* character number, location */
        !          51474:           0, 3,  -69, 3,      /* topleft row,col, and botleft row,col */
        !          51475:           { 35,   69, 3,273, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          51476:             "\xe0\xb6\xe0\xd2\x62\xe0\xa2\x73\xe0\x83\x65\xe0\x72"
        !          51477:             "\x75\xe0\x63\x75\xe0\x63\x83\x10\xf1\xe0\x53\xd0\xf4"
        !          51478:             "\xe0\x44\xd0\xe0\x35\xd0\xf6\xe0\x34\xe0\xe0\x25\xe0"
        !          51479:             "\xe7\xe0\xbd\xe0\x7e\x01\xe0\x56\x1a\xe0\x34\x45\x24"
        !          51480:             "\xe0\x14\x55\x34\xe3\x64\x53\xe3\x55\x53\xd4\x55\x54"
        !          51481:             "\x60\xf4\x63\x65\x63\x60\x64\x55\x54\xd3\x55\x53\xe3"
        !          51482:             "\x54\x63\xe4\x35\x54\xe0\x14\x25\x44\xe0\x3a\x16\xe0"
        !          51483:             "\x5e\x01\xe0\x7d\xe0\xb7\xe0\xe5\xe0\x20\xf6\xe4\xe0"
        !          51484:             "\x30\xd5\xe0\x30\xf4\xd4\xe0\x40\xf1\xd3\xe0\x50\x13"
        !          51485:             "\x83\xe0\x65\x73\xe0\x65\x72\xe0\x75\x63\xe0\x83\x72"
        !          51486:             "\xe0\xa2\x62\xe0\xd6\xe0\xb0" }  },
        !          51487:       /* --- pixel bitmap for cmex450 char#73 \Bigoint --- */
        !          51488:       {  73,119348,                     /* character number, location */
        !          51489:           0, 4,  -138, 4,     /* topleft row,col, and botleft row,col */
        !          51490:           { 55,  138, 3,773, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          51491:             "\xe0\xe0\xe0\x45\xe0\xe0\xe0\x63\x42\xe0\xe0\xe0\x33"
        !          51492:             "\x62\xe0\xe0\xe0\x13\x54\xe0\xe0\xe0\x13\x46\xe0\xe0"
        !          51493:             "\xd3\x56\xf1\xe0\xe0\xc4\x56\xe0\xe0\xb4\x74\xe0\xe0"
        !          51494:             "\xc4\xe0\xe0\xe0\x85\xc0\xf1\xe0\xe0\xa4\xd0\xe0\xe0"
        !          51495:             "\x95\xd0\xf1\xe0\xe0\x94\xe0\xf1\xe0\xe0\x85\xe0\xe0"
        !          51496:             "\xe0\x84\xe0\x10\xf3\xe0\xe0\x75\xe0\x10\xf3\xe0\xe0"
        !          51497:             "\x65\xe0\x20\xe0\xe0\x56\xe0\x20\xf2\xe0\xe0\x55\xe0"
        !          51498:             "\x30\xf1\xe0\xe0\x46\xe0\x30\xf1\xe0\xe0\x45\xe0\x40"
        !          51499:             "\xf3\xe0\xe0\x36\xe0\x40\xf4\xe0\xe0\x26\xe0\x50\xf3"
        !          51500:             "\xe0\xe0\x16\xe0\x60\xf1\xe0\xe7\xe0\x60\xf1\xe0\xe6"
        !          51501:             "\xe0\x70\xe0\x9b\xe0\xe0\xde\x01\xe0\xe0\xbe\x03\xe0"
        !          51502:             "\xe0\x87\x3b\xe0\xe0\x55\x66\x15\xe0\xe0\x35\x67\x25"
        !          51503:             "\xe0\xe0\x14\x87\x44\xe0\xd4\x97\x54\xe0\xb4\xa7\x64"
        !          51504:             "\xe0\xa3\xb6\x83\xe0\x94\xa7\x84\xb0\xf1\xb3\xb7\x93"
        !          51505:             "\xb0\xa4\xb7\x94\xe0\x63\xc7\xa3\xa0\xf3\xa3\xb7\xb3"
        !          51506:             "\xa0\xa3\xa7\xc3\xe0\x64\x97\xb4\xa0\xf1\xb3\x97\xb3"
        !          51507:             "\xb0\xb4\x87\xa4\xe0\x93\x86\xb3\xe0\xa4\x67\xa4\xe0"
        !          51508:             "\xb4\x57\x94\xe0\xd4\x47\x84\xe0\xe0\x15\x27\x65\xe0"
        !          51509:             "\xe0\x35\x16\x65\xe0\xe0\x5b\x37\xe0\xe0\x8e\x03\xe0"
        !          51510:             "\xe0\xbe\x01\xe0\xe0\xdb\xe0\x90\xf1\xe0\x76\xe0\xe0"
        !          51511:             "\xf1\xe0\x67\xe0\xe0\xf3\xe0\x66\xe0\xe0\x10\xf4\xe0"
        !          51512:             "\x56\xe0\xe0\x20\xf3\xe0\x46\xe0\xe0\x30\xf1\xe0\x45"
        !          51513:             "\xe0\xe0\x40\xf1\xe0\x36\xe0\xe0\x40\xf2\xe0\x35\xe0"
        !          51514:             "\xe0\x50\xe0\x26\xe0\xe0\x50\xf3\xe0\x25\xe0\xe0\x60"
        !          51515:             "\xf3\xe0\x15\xe0\xe0\x70\xe0\x14\xe0\xe0\x80\xf1\xe5"
        !          51516:             "\xe0\xe0\x80\xf1\xe4\xe0\xe0\x90\xd5\xe0\xe0\x90\xf1"
        !          51517:             "\xd4\xe0\xe0\xa0\xc5\xe0\xe0\xe0\x84\xe0\xe0\xc4\x74"
        !          51518:             "\xe0\xe0\xbf\x16\x54\xe0\xe0\xc6\x53\xe0\xe0\xd6\x43"
        !          51519:             "\xe0\xe0\xe0\x14\x53\xe0\xe0\xe0\x12\x63\xe0\xe0\xe0"
        !          51520:             "\x32\x43\xe0\xe0\xe0\x65\xe0\xe0\xe0\x40" }  },
        !          51521:       /* --- pixel bitmap for cmex450 char#74 \bigodot --- */
        !          51522:       {  74,97194,                      /* character number, location */
        !          51523:           0, 3,  -62, 3,      /* topleft row,col, and botleft row,col */
        !          51524:           { 63,   62, 2,229, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          51525:             "\x1a\x0b\x30\x13\x29\x19\x24\x1d\x20\x0c\x09\x0c\x1d"
        !          51526:             "\x09\x11\x09\x1a\x08\x17\x08\x17\x07\x1b\x07\x15\x06"
        !          51527:             "\x1f\x06\x13\x06\x21\x06\x11\x06\x23\x06\x0f\x06\x25"
        !          51528:             "\x06\x0d\x06\x27\x06\x0b\x06\x29\x06\x0a\x05\x2b\x05"
        !          51529:             "\x09\x05\x2d\x05\x07\x06\x2d\x06\x06\x05\x2f\x05\x03"
        !          51530:             "\x00\xff\x01\x02\x05\x31\x05\x02\x00\x02\x04\x33\x04"
        !          51531:             "\x02\x00\xff\x01\x01\x05\x33\x05\x01\x00\xff\x01\x01"
        !          51532:             "\x04\x35\x04\x01\xff\x01\x05\x35\x05\x00\x04\x19\x05"
        !          51533:             "\x19\x08\x18\x07\x18\x04\x00\xff\x03\x04\x17\x09\x17"
        !          51534:             "\x04\x00\x04\x18\x07\x18\x08\x19\x05\x19\x04\x00\xff"
        !          51535:             "\x01\x05\x35\x05\xff\x01\x01\x04\x35\x04\x01\x00\xff"
        !          51536:             "\x01\x01\x05\x33\x05\x01\x00\x02\x04\x33\x04\x02\x00"
        !          51537:             "\xff\x01\x02\x05\x31\x05\x02\x00\x03\x05\x2f\x05\x06"
        !          51538:             "\x06\x2d\x06\x07\x05\x2d\x05\x09\x05\x2b\x05\x0a\x06"
        !          51539:             "\x29\x06\x0b\x06\x27\x06\x0d\x06\x25\x06\x0f\x06\x23"
        !          51540:             "\x06\x11\x06\x21\x06\x13\x06\x1f\x06\x15\x07\x1b\x07"
        !          51541:             "\x17\x08\x17\x08\x1a\x09\x11\x09\x1d\x0c\x09\x0c\x20"
        !          51542:             "\x1d\x24\x19\x29\x13\x30\x0b\x1a" }  },
        !          51543:       /* --- pixel bitmap for cmex450 char#75 \Bigodot --- */
        !          51544:       {  75,98539,                      /* character number, location */
        !          51545:           0, 3,  -87, 3,      /* topleft row,col, and botleft row,col */
        !          51546:           { 88,   87, 2,313, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          51547:             "\x25\x0e\x45\x18\x3d\x1e\x38\x22\x34\x26\x30\x0f\x0c"
        !          51548:             "\x0f\x2c\x0c\x16\x0c\x28\x0b\x1c\x0b\x25\x0a\x20\x0a"
        !          51549:             "\x23\x09\x24\x09\x20\x09\x28\x09\x1d\x08\x2c\x08\x1b"
        !          51550:             "\x08\x2e\x08\x19\x08\x30\x08\x17\x07\x34\x07\x15\x07"
        !          51551:             "\x36\x07\x14\x06\x38\x06\x13\x06\x3a\x06\x11\x06\x3c"
        !          51552:             "\x06\x0f\x07\x3c\x07\x0e\x06\x3e\x06\x0d\x06\x40\x06"
        !          51553:             "\x06\x00\xff\x01\x05\x06\x42\x06\x05\x00\x04\x06\x44"
        !          51554:             "\x06\x04\x00\xff\x01\x04\x05\x46\x05\x04\x00\x03\x06"
        !          51555:             "\x46\x06\x06\x05\x48\x05\x05\x06\x48\x06\x02\x00\xff"
        !          51556:             "\x01\x02\x05\x4a\x05\x02\x00\x01\x06\x4a\x06\x01\x00"
        !          51557:             "\xff\x03\x01\x05\x4c\x05\x01\x06\x4c\x0b\x26\x02\x26"
        !          51558:             "\x0a\x24\x06\x24\x0a\x23\x08\x23\x05\x00\xff\x04\x05"
        !          51559:             "\x22\x0a\x22\x05\x00\x05\x23\x08\x23\x0a\x24\x06\x24"
        !          51560:             "\x0a\x26\x02\x26\x0b\x4c\x06\xff\x03\x01\x05\x4c\x05"
        !          51561:             "\x01\x00\x01\x06\x4a\x06\x01\x00\xff\x01\x02\x05\x4a"
        !          51562:             "\x05\x02\x00\x02\x06\x48\x06\x05\x05\x48\x05\x06\x06"
        !          51563:             "\x46\x06\x03\x00\xff\x01\x04\x05\x46\x05\x04\x00\x04"
        !          51564:             "\x06\x44\x06\x04\x00\xff\x01\x05\x06\x42\x06\x05\x00"
        !          51565:             "\x06\x06\x40\x06\x0d\x06\x3e\x06\x0e\x07\x3c\x07\x0f"
        !          51566:             "\x06\x3c\x06\x11\x06\x3a\x06\x13\x06\x38\x06\x14\x07"
        !          51567:             "\x36\x07\x15\x07\x34\x07\x17\x08\x30\x08\x19\x08\x2e"
        !          51568:             "\x08\x1b\x08\x2c\x08\x1d\x09\x28\x09\x20\x09\x24\x09"
        !          51569:             "\x23\x0a\x20\x0a\x25\x0b\x1c\x0b\x28\x0c\x16\x0c\x2c"
        !          51570:             "\x0f\x0c\x0f\x30\x26\x34\x22\x38\x1e\x3d\x18\x45\x0e"
        !          51571:             "\x25" }  },
        !          51572:       /* --- pixel bitmap for cmex450 char#76 \bigoplus --- */
        !          51573:       {  76,99836,                      /* character number, location */
        !          51574:           0, 3,  -62, 3,      /* topleft row,col, and botleft row,col */
        !          51575:           { 63,   62, 3,509, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          51576:             "\xe0\xcb\xe0\xe0\xe0\x6e\x05\xe0\xe0\xde\x0b\xe0\xe0"
        !          51577:             "\x8e\x0e\x01\xe0\xe0\x4c\x34\x2c\xe0\xe0\x19\x74\x69"
        !          51578:             "\xe0\xc8\xa4\x98\xe0\x97\xc4\xb7\xe0\x76\xe4\xd6\xe0"
        !          51579:             "\x56\xe0\x14\xe6\xe0\x36\xe0\x24\xe0\x16\xe0\x16\xe0"
        !          51580:             "\x34\xe0\x26\xd6\xe0\x44\xe0\x36\xb6\xe0\x54\xe0\x46"
        !          51581:             "\xa5\xe0\x64\xe0\x55\x95\xe0\x74\xe0\x65\x76\xe0\x74"
        !          51582:             "\xe0\x66\x65\xe0\x84\xe0\x75\x30\xf1\x25\xe0\x94\xe0"
        !          51583:             "\x85\x20\x24\xe0\xa4\xe0\x94\x20\xf1\x15\xe0\xa4\xe0"
        !          51584:             "\x95\x10\xf1\x14\xe0\xb4\xe0\xa4\x1f\x15\xe0\xb4\xe0"
        !          51585:             "\xa5\x0f\x14\xe0\xc4\xe0\xb4\x0f\x3e\x0e\x0e\x0e\x07"
        !          51586:             "\x0f\x14\xe0\xc4\xe0\xb4\x0f\x15\xe0\xb4\xe0\xa5\xf1"
        !          51587:             "\x14\xe0\xb4\xe0\xa4\x10\xf1\x15\xe0\xa4\xe0\x95\x10"
        !          51588:             "\x24\xe0\xa4\xe0\x94\x20\xf1\x25\xe0\x94\xe0\x85\x20"
        !          51589:             "\x35\xe0\x84\xe0\x75\x66\xe0\x74\xe0\x66\x75\xe0\x74"
        !          51590:             "\xe0\x65\x95\xe0\x64\xe0\x55\xa6\xe0\x54\xe0\x46\xb6"
        !          51591:             "\xe0\x44\xe0\x36\xd6\xe0\x34\xe0\x26\xe0\x16\xe0\x24"
        !          51592:             "\xe0\x16\xe0\x36\xe0\x14\xe6\xe0\x56\xe4\xd6\xe0\x77"
        !          51593:             "\xc4\xb7\xe0\x98\xa4\x98\xe0\xc9\x74\x69\xe0\xe0\x1c"
        !          51594:             "\x34\x2c\xe0\xe0\x4e\x0e\x01\xe0\xe0\x8e\x0b\xe0\xe0"
        !          51595:             "\xde\x05\xe0\xe0\xe0\x6b\xe0\xc0" }  },
        !          51596:       /* --- pixel bitmap for cmex450 char#77 \Bigoplus --- */
        !          51597:       {  77,101258,                     /* character number, location */
        !          51598:           0, 3,  -87, 3,      /* topleft row,col, and botleft row,col */
        !          51599:           { 88,   87, 2,409, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          51600:             "\x25\x0e\x45\x18\x3d\x1e\x38\x22\x34\x26\x30\x0f\x04"
        !          51601:             "\x05\x03\x0f\x2c\x0c\x09\x05\x08\x0c\x28\x0b\x0c\x05"
        !          51602:             "\x0b\x0b\x25\x0a\x0e\x05\x0d\x0a\x23\x09\x10\x05\x0f"
        !          51603:             "\x09\x20\x09\x12\x05\x11\x09\x1d\x08\x14\x05\x13\x08"
        !          51604:             "\x1b\x08\x15\x05\x14\x08\x19\x08\x16\x05\x15\x08\x17"
        !          51605:             "\x07\x18\x05\x17\x07\x15\x07\x19\x05\x18\x07\x14\x06"
        !          51606:             "\x1a\x05\x19\x06\x13\x06\x1b\x05\x1a\x06\x11\x06\x1c"
        !          51607:             "\x05\x1b\x06\x0f\x07\x1c\x05\x1b\x07\x0e\x06\x1d\x05"
        !          51608:             "\x1c\x06\x0d\x06\x1e\x05\x1d\x06\x06\x00\xff\x01\x05"
        !          51609:             "\x06\x1f\x05\x1e\x06\x05\x00\x04\x06\x20\x05\x1f\x06"
        !          51610:             "\x04\x00\xff\x01\x04\x05\x21\x05\x20\x05\x04\x00\x03"
        !          51611:             "\x06\x21\x05\x20\x06\x06\x05\x22\x05\x21\x05\x05\x06"
        !          51612:             "\x22\x05\x21\x06\x02\x00\xff\x01\x02\x05\x23\x05\x22"
        !          51613:             "\x05\x02\x00\x01\x06\x23\x05\x22\x06\x01\x00\xff\x03"
        !          51614:             "\x01\x05\x24\x05\x23\x05\x01\x06\x24\x05\x23\x06\x00"
        !          51615:             "\xff\x02\x05\x25\x05\x24\x05\x00\xff\x04\x58\x00\xff"
        !          51616:             "\x02\x05\x25\x05\x24\x05\x00\x06\x24\x05\x23\x06\xff"
        !          51617:             "\x03\x01\x05\x24\x05\x23\x05\x01\x00\x01\x06\x23\x05"
        !          51618:             "\x22\x06\x01\x00\xff\x01\x02\x05\x23\x05\x22\x05\x02"
        !          51619:             "\x00\x02\x06\x22\x05\x21\x06\x05\x05\x22\x05\x21\x05"
        !          51620:             "\x06\x06\x21\x05\x20\x06\x03\x00\xff\x01\x04\x05\x21"
        !          51621:             "\x05\x20\x05\x04\x00\x04\x06\x20\x05\x1f\x06\x04\x00"
        !          51622:             "\xff\x01\x05\x06\x1f\x05\x1e\x06\x05\x00\x06\x06\x1e"
        !          51623:             "\x05\x1d\x06\x0d\x06\x1d\x05\x1c\x06\x0e\x07\x1c\x05"
        !          51624:             "\x1b\x07\x0f\x06\x1c\x05\x1b\x06\x11\x06\x1b\x05\x1a"
        !          51625:             "\x06\x13\x06\x1a\x05\x19\x06\x14\x07\x19\x05\x18\x07"
        !          51626:             "\x15\x07\x18\x05\x17\x07\x17\x08\x16\x05\x15\x08\x19"
        !          51627:             "\x08\x15\x05\x14\x08\x1b\x08\x14\x05\x13\x08\x1d\x09"
        !          51628:             "\x12\x05\x11\x09\x20\x09\x10\x05\x0f\x09\x23\x0a\x0e"
        !          51629:             "\x05\x0d\x0a\x25\x0b\x0c\x05\x0b\x0b\x28\x0c\x09\x05"
        !          51630:             "\x08\x0c\x2c\x0f\x04\x05\x03\x0f\x30\x26\x34\x22\x38"
        !          51631:             "\x1e\x3d\x18\x45\x0e\x25" }  },
        !          51632:       /* --- pixel bitmap for cmex450 char#78 \bigotimes --- */
        !          51633:       {  78,102639,                     /* character number, location */
        !          51634:           0, 3,  -62, 3,      /* topleft row,col, and botleft row,col */
        !          51635:           { 63,   62, 3,573, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          51636:             "\xe0\xcb\xe0\xe0\xe0\x6e\x05\xe0\xe0\xde\x0b\xe0\xe0"
        !          51637:             "\x8e\x0e\x01\xe0\xe0\x4c\x9c\xe0\xe0\x19\xe0\x39\xe0"
        !          51638:             "\xc8\xe0\x98\xe0\x97\xe0\xd7\xe0\x76\xe0\xe0\x36\xe0"
        !          51639:             "\x56\xe0\xe0\x56\xe0\x36\xe0\xe0\x76\xe0\x18\xe0\xe0"
        !          51640:             "\x58\xda\xe0\xe0\x3a\xbc\xe0\xe0\x1c\xa5\x26\xe0\xd6"
        !          51641:             "\x25\x95\x46\xe0\xb6\x45\x76\x56\xe0\x96\x56\x65\x76"
        !          51642:             "\xe0\x76\x75\x55\x96\xe0\x56\x95\x45\xa6\xe0\x36\xa5"
        !          51643:             "\x44\xc6\xe0\x16\xc4\x35\xd6\xd6\xd5\x25\xe6\xb6\xe5"
        !          51644:             "\x24\xe0\x26\x96\xe0\x24\x24\xe0\x36\x76\xe0\x34\x15"
        !          51645:             "\xe0\x46\x56\xe0\x4a\xe0\x56\x36\xe0\x59\xe0\x76\x16"
        !          51646:             "\xe0\x78\xe0\x8b\xe0\x88\xe0\x99\xe0\x94\x0f\x14\xe0"
        !          51647:             "\xa7\xe0\xa4\x04\xe0\x99\xe0\x98\xe0\x8b\xe0\x88\xe0"
        !          51648:             "\x76\x16\xe0\x79\xe0\x56\x36\xe0\x5a\xe0\x46\x56\xe0"
        !          51649:             "\x45\x14\xe0\x36\x76\xe0\x34\x24\xe0\x26\x96\xe0\x24"
        !          51650:             "\x25\xe6\xb6\xe5\x25\xd6\xd6\xd5\x34\xc6\xe0\x16\xc4"
        !          51651:             "\x45\xa6\xe0\x36\xa5\x45\x96\xe0\x56\x95\x55\x76\xe0"
        !          51652:             "\x76\x75\x66\x56\xe0\x96\x56\x75\x46\xe0\xb6\x45\x95"
        !          51653:             "\x26\xe0\xd6\x25\xac\xe0\xe0\x1c\xba\xe0\xe0\x3a\xd8"
        !          51654:             "\xe0\xe0\x58\xe0\x16\xe0\xe0\x76\xe0\x36\xe0\xe0\x56"
        !          51655:             "\xe0\x56\xe0\xe0\x36\xe0\x77\xe0\xd7\xe0\x98\xe0\x98"
        !          51656:             "\xe0\xc9\xe0\x39\xe0\xe0\x1c\x9c\xe0\xe0\x4e\x0e\x01"
        !          51657:             "\xe0\xe0\x8e\x0b\xe0\xe0\xde\x05\xe0\xe0\xe0\x6b\xe0"
        !          51658:             "\xc6" }  },
        !          51659:       /* --- pixel bitmap for cmex450 char#79 \Bigotimes --- */
        !          51660:       {  79,104094,                     /* character number, location */
        !          51661:           0, 3,  -87, 3,      /* topleft row,col, and botleft row,col */
        !          51662:           { 88,   87, 2,495, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          51663:             "\x25\x0e\x45\x18\x3d\x1e\x38\x22\x34\x26\x30\x0f\x0c"
        !          51664:             "\x0f\x2c\x0c\x16\x0c\x28\x0b\x1c\x0b\x25\x0a\x20\x0a"
        !          51665:             "\x23\x09\x24\x09\x20\x09\x28\x09\x1d\x08\x2c\x08\x1b"
        !          51666:             "\x08\x2e\x08\x19\x08\x30\x08\x17\x07\x34\x07\x15\x09"
        !          51667:             "\x32\x09\x14\x0a\x30\x0a\x13\x0c\x2e\x0c\x11\x06\x01"
        !          51668:             "\x07\x2c\x07\x01\x06\x0f\x07\x02\x07\x2a\x07\x02\x07"
        !          51669:             "\x0e\x06\x04\x07\x28\x07\x04\x06\x0d\x06\x06\x07\x26"
        !          51670:             "\x07\x06\x06\x0b\x06\x08\x07\x24\x07\x08\x06\x0a\x06"
        !          51671:             "\x09\x07\x22\x07\x09\x06\x09\x06\x0b\x07\x20\x07\x0b"
        !          51672:             "\x06\x08\x05\x0d\x07\x1e\x07\x0d\x05\x08\x05\x0e\x07"
        !          51673:             "\x1c\x07\x0e\x05\x07\x06\x0f\x07\x1a\x07\x0f\x06\x06"
        !          51674:             "\x05\x11\x07\x18\x07\x11\x05\x05\x06\x12\x07\x16\x07"
        !          51675:             "\x12\x06\x04\x05\x14\x07\x14\x07\x14\x05\x04\x05\x15"
        !          51676:             "\x07\x12\x07\x15\x05\x03\x06\x16\x07\x10\x07\x16\x06"
        !          51677:             "\x02\x05\x18\x07\x0e\x07\x18\x05\x02\x05\x19\x07\x0c"
        !          51678:             "\x07\x19\x05\x02\x05\x1a\x07\x0a\x07\x1a\x05\x02\x05"
        !          51679:             "\x1b\x07\x08\x07\x1b\x05\x01\x06\x1c\x07\x06\x07\x1c"
        !          51680:             "\x0b\x1e\x07\x04\x07\x1e\x0a\x1f\x07\x02\x07\x1f\x0a"
        !          51681:             "\x20\x0e\x20\x0a\x21\x0c\x21\x0a\x22\x0a\x22\x0a\x23"
        !          51682:             "\x08\x23\x0a\x22\x0a\x22\x0a\x21\x0c\x21\x0a\x20\x0e"
        !          51683:             "\x20\x0a\x1f\x07\x02\x07\x1f\x0a\x1e\x07\x04\x07\x1e"
        !          51684:             "\x0b\x1c\x07\x06\x07\x1c\x06\x01\x05\x1b\x07\x08\x07"
        !          51685:             "\x1b\x05\x02\x05\x1a\x07\x0a\x07\x1a\x05\x02\x05\x19"
        !          51686:             "\x07\x0c\x07\x19\x05\x02\x05\x18\x07\x0e\x07\x18\x05"
        !          51687:             "\x02\x06\x16\x07\x10\x07\x16\x06\x03\x05\x15\x07\x12"
        !          51688:             "\x07\x15\x05\x04\x05\x14\x07\x14\x07\x14\x05\x04\x06"
        !          51689:             "\x12\x07\x16\x07\x12\x06\x05\x05\x11\x07\x18\x07\x11"
        !          51690:             "\x05\x06\x06\x0f\x07\x1a\x07\x0f\x06\x07\x05\x0e\x07"
        !          51691:             "\x1c\x07\x0e\x05\x08\x05\x0d\x07\x1e\x07\x0d\x05\x08"
        !          51692:             "\x06\x0b\x07\x20\x07\x0b\x06\x09\x06\x09\x07\x22\x07"
        !          51693:             "\x09\x06\x0a\x06\x08\x07\x24\x07\x08\x06\x0b\x06\x06"
        !          51694:             "\x07\x26\x07\x06\x06\x0d\x06\x04\x07\x28\x07\x04\x06"
        !          51695:             "\x0e\x07\x02\x07\x2a\x07\x02\x07\x0f\x06\x01\x07\x2c"
        !          51696:             "\x07\x01\x06\x11\x0c\x2e\x0c\x13\x0a\x30\x0a\x14\x09"
        !          51697:             "\x32\x09\x15\x07\x34\x07\x17\x08\x30\x08\x19\x08\x2e"
        !          51698:             "\x08\x1b\x08\x2c\x08\x1d\x09\x28\x09\x20\x09\x24\x09"
        !          51699:             "\x23\x0a\x20\x0a\x25\x0b\x1c\x0b\x28\x0c\x16\x0c\x2c"
        !          51700:             "\x0f\x0c\x0f\x30\x26\x34\x22\x38\x1e\x3d\x18\x45\x0e"
        !          51701:             "\x25" }  },
        !          51702:       /* --- pixel bitmap for cmex450 char#80 \sum --- */
        !          51703:       {  80,105860,                     /* character number, location */
        !          51704:           0, 3,  -62, 3,      /* topleft row,col, and botleft row,col */
        !          51705:           { 60,   62, 2,195, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          51706:             "\xff\x01\x00\x37\x05\x38\x05\x06\x22\x0f\x06\x06\x26"
        !          51707:             "\x0a\x06\x06\x29\x08\x06\x06\x2a\x06\x07\x06\x2a\x05"
        !          51708:             "\x08\x06\x2b\x04\x07\x06\x2c\x03\x08\x06\x2b\x03\x09"
        !          51709:             "\x06\x2b\x03\x01\x00\xff\x01\x08\x06\x2b\x02\x01\x00"
        !          51710:             "\x09\x06\x2b\x02\x0a\x06\x2c\x00\xff\x01\x0b\x06\x2b"
        !          51711:             "\x00\x0c\x06\x37\x06\x29\x00\xff\x01\x0e\x06\x28\x00"
        !          51712:             "\x0f\x06\x37\x06\x26\x00\xff\x01\x11\x06\x25\x00\x12"
        !          51713:             "\x06\x37\x06\x23\x00\xff\x01\x14\x06\x22\x00\x15\x06"
        !          51714:             "\x37\x05\x38\x03\x38\x04\x37\x04\x37\x04\x38\x03\x38"
        !          51715:             "\x03\x38\x04\x37\x04\x37\x04\x38\x03\x38\x03\x38\x04"
        !          51716:             "\x37\x04\x38\x03\x38\x03\x2b\x02\x0b\x04\x2a\x03\x0a"
        !          51717:             "\x04\x2b\x02\x0a\x04\x2b\x03\x0a\x03\x2c\x03\x09\x03"
        !          51718:             "\x2c\x03\x09\x04\x2b\x04\x08\x04\x2a\x06\x07\x04\x2a"
        !          51719:             "\x06\x08\x03\x29\x08\x07\x03\x27\x0b\x06\x04\x22\x0f"
        !          51720:             "\x04\x00\xff\x01\x02\x36\x04\x00\x01\x36\x05\x37\x05" }  },
        !          51721:       /* --- pixel bitmap for cmex450 char#81 \prod --- */
        !          51722:       {  81,109103,                     /* character number, location */
        !          51723:           0, 3,  -62, 3,      /* topleft row,col, and botleft row,col */
        !          51724:           { 53,   62, 2,36, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          51725:             "\xff\x02\x00\x35\x03\x09\x1d\x09\x08\x07\x1d\x07\x05"
        !          51726:             "\x00\xff\x33\x06\x06\x1d\x06\x06\x00\x05\x08\x1b\x08"
        !          51727:             "\x08\x0c\x17\x0c\x03\xff\x02\x12\x11\x12" }  },
        !          51728:       /* --- pixel bitmap for cmex450 char#82 \int --- */
        !          51729:       {  82,115731,                     /* character number, location */
        !          51730:           0, 3,  -69, 3,      /* topleft row,col, and botleft row,col */
        !          51731:           { 35,   69, 3,185, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          51732:             "\xe0\xb6\xe0\xd2\x62\xe0\xa2\x73\xe0\x83\x65\xe0\x72"
        !          51733:             "\x75\xe0\x63\x75\xe0\x63\x83\x10\xf1\xe0\x53\xd0\xf4"
        !          51734:             "\xe0\x44\xd0\xe0\x35\xd0\xf6\xe0\x34\xe0\xf6\xe0\x25"
        !          51735:             "\xe0\xe0\x24\xe0\x10\xf8\xe0\x15\xe0\x10\xe0\x14\xe0"
        !          51736:             "\x20\xf6\xe5\xe0\x20\xf6\xe4\xe0\x30\xd5\xe0\x30\xf4"
        !          51737:             "\xd4\xe0\x40\xf1\xd3\xe0\x50\x13\x83\xe0\x65\x73\xe0"
        !          51738:             "\x65\x72\xe0\x75\x63\xe0\x83\x72\xe0\xa2\x62\xe0\xd6"
        !          51739:             "\xe0\xb0" }  },
        !          51740:       /* --- pixel bitmap for cmex450 char#83 \bigcup --- */
        !          51741:       {  83,120496,                     /* character number, location */
        !          51742:           0, 3,  -62, 3,      /* topleft row,col, and botleft row,col */
        !          51743:           { 46,   62, 2,75, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          51744:             "\x01\x02\x28\x02\x01\xff\x2a\x04\x26\x04\x00\xff\x01"
        !          51745:             "\x05\x24\x05\x01\x04\x24\x04\x01\x00\xff\x01\x01\x05"
        !          51746:             "\x22\x05\x01\x00\x02\x05\x20\x05\x04\x06\x1e\x06\x05"
        !          51747:             "\x05\x1e\x05\x07\x05\x1c\x05\x08\x06\x1a\x06\x09\x07"
        !          51748:             "\x16\x07\x0b\x07\x14\x07\x0e\x07\x10\x07\x11\x0a\x08"
        !          51749:             "\x0a\x13\x1a\x16\x16\x1a\x12\x20\x0a\x12" }  },
        !          51750:       /* --- pixel bitmap for cmex450 char#84 \bigcap --- */
        !          51751:       {  84,122678,                     /* character number, location */
        !          51752:           0, 3,  -62, 3,      /* topleft row,col, and botleft row,col */
        !          51753:           { 46,   62, 2,75, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          51754:             "\x12\x0a\x20\x12\x1a\x16\x16\x1a\x13\x0a\x08\x0a\x11"
        !          51755:             "\x07\x10\x07\x0e\x07\x14\x07\x0b\x07\x16\x07\x09\x06"
        !          51756:             "\x1a\x06\x08\x05\x1c\x05\x07\x05\x1e\x05\x05\x06\x1e"
        !          51757:             "\x06\x04\x05\x20\x05\x02\x00\xff\x01\x01\x05\x22\x05"
        !          51758:             "\x01\x00\x01\x04\x24\x04\x01\xff\x01\x05\x24\x05\x00"
        !          51759:             "\xff\x2a\x04\x26\x04\x01\x02\x28\x02\x01" }  },
        !          51760:       /* --- pixel bitmap for cmex450 char#85 \biguplus --- */
        !          51761:       {  85,124925,                     /* character number, location */
        !          51762:           0, 3,  -62, 3,      /* topleft row,col, and botleft row,col */
        !          51763:           { 46,   62, 3,191, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          51764:             "\x12\xe0\xe0\xc2\x1f\xc4\xe0\xe0\xa4\x04\xe0\x42\xe0"
        !          51765:             "\x44\x0f\xb4\xe0\x34\xe0\x34\x04\x5e\x0e\x54\x0f\x24"
        !          51766:             "\x4e\x0e\x02\x44\x0f\xc4\xe0\x34\xe0\x34\x0f\x15\xe0"
        !          51767:             "\xe0\x85\x14\xe0\xe0\x84\x10\xf1\x15\xe0\xe0\x65\x10"
        !          51768:             "\x25\xe0\xe0\x45\x46\xe0\xe0\x26\x55\xe0\xe0\x25\x75"
        !          51769:             "\xe0\xe5\x86\xe0\xc6\x97\xe0\x87\xb7\xe0\x67\xe7\xe0"
        !          51770:             "\x27\xe0\x3a\x8a\xe0\x5e\x0c\xe0\x8e\x08\xe0\xce\x04"
        !          51771:             "\xe0\xe0\x4a\xe0\x46" }  },
        !          51772:       /* --- pixel bitmap for cmex450 char#86 \bigwedge --- */
        !          51773:       {  86,127287,                     /* character number, location */
        !          51774:           0, 3,  -62, 3,      /* topleft row,col, and botleft row,col */
        !          51775:           { 46,   62, 3,365, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          51776:             "\xe0\x82\xe0\xe0\xe0\x14\xe0\x70\xf2\xe0\x66\xe0\x60"
        !          51777:             "\xf2\xe0\x58\xe0\x50\xf1\xe0\x4a\xe0\x40\xe0\x44\x24"
        !          51778:             "\xe0\x40\xf1\xe0\x35\x25\xe0\x30\xf1\xe0\x25\x45\xe0"
        !          51779:             "\x20\xe0\x24\x64\xe0\x20\xf1\xe0\x15\x65\xe0\x10\xe0"
        !          51780:             "\x14\x84\xe0\x10\xf1\xe5\x85\xe0\xe4\xa4\xe0\xf1\xd5"
        !          51781:             "\xa5\xd0\xf1\xc5\xc5\xc0\xc4\xe4\xc0\xf1\xb5\xe5\xb0"
        !          51782:             "\xb4\xe0\x24\xb0\xf1\xa5\xe0\x25\xa0\xa4\xe0\x44\xa0"
        !          51783:             "\xf1\x95\xe0\x45\x90\x94\xe0\x64\x90\xf1\x85\xe0\x65"
        !          51784:             "\x80\xf1\x75\xe0\x85\x70\x74\xe0\xa4\x70\xf1\x65\xe0"
        !          51785:             "\xa5\x60\x64\xe0\xc4\x60\xf1\x55\xe0\xc5\x50\x54\xe0"
        !          51786:             "\xe4\x50\xf1\x45\xe0\xe5\x40\xf1\x35\xe0\xe0\x25\x30"
        !          51787:             "\x34\xe0\xe0\x44\x30\xf1\x25\xe0\xe0\x45\x20\x24\xe0"
        !          51788:             "\xe0\x64\x20\xf1\x15\xe0\xe0\x65\x10\x14\xe0\xe0\x84"
        !          51789:             "\x1f\x15\xe0\xe0\x85\x04\xe0\xe0\xa4\x12\xe0\xe0\xc2"
        !          51790:             "\x10" }  },
        !          51791:       /* --- pixel bitmap for cmex450 char#87 \bigvee --- */
        !          51792:       {  87,129393,                     /* character number, location */
        !          51793:           0, 3,  -62, 3,      /* topleft row,col, and botleft row,col */
        !          51794:           { 46,   62, 3,365, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          51795:             "\x12\xe0\xe0\xc2\x14\xe0\xe0\xa4\x0f\x15\xe0\xe0\x85"
        !          51796:             "\x14\xe0\xe0\x84\x10\xf1\x15\xe0\xe0\x65\x10\x24\xe0"
        !          51797:             "\xe0\x64\x20\xf1\x25\xe0\xe0\x45\x20\x34\xe0\xe0\x44"
        !          51798:             "\x30\xf1\x35\xe0\xe0\x25\x30\xf1\x45\xe0\xe5\x40\x54"
        !          51799:             "\xe0\xe4\x50\xf1\x55\xe0\xc5\x50\x64\xe0\xc4\x60\xf1"
        !          51800:             "\x65\xe0\xa5\x60\x74\xe0\xa4\x70\xf1\x75\xe0\x85\x70"
        !          51801:             "\xf1\x85\xe0\x65\x80\x94\xe0\x64\x90\xf1\x95\xe0\x45"
        !          51802:             "\x90\xa4\xe0\x44\xa0\xf1\xa5\xe0\x25\xa0\xb4\xe0\x24"
        !          51803:             "\xb0\xf1\xb5\xe5\xb0\xc4\xe4\xc0\xf1\xc5\xc5\xc0\xf1"
        !          51804:             "\xd5\xa5\xd0\xe4\xa4\xe0\xf1\xe5\x85\xe0\xe0\x14\x84"
        !          51805:             "\xe0\x10\xf1\xe0\x15\x65\xe0\x10\xe0\x24\x64\xe0\x20"
        !          51806:             "\xf1\xe0\x25\x45\xe0\x20\xf1\xe0\x35\x25\xe0\x30\xe0"
        !          51807:             "\x44\x24\xe0\x40\xf1\xe0\x4a\xe0\x40\xf2\xe0\x58\xe0"
        !          51808:             "\x50\xf2\xe0\x66\xe0\x60\xe0\x74\xe0\xe0\xe0\x12\xe0"
        !          51809:             "\x80" }  },
        !          51810:       /* --- pixel bitmap for cmex450 char#88 \Bigsum --- */
        !          51811:       {  88,107465,                     /* character number, location */
        !          51812:           0, 3,  -87, 3,      /* topleft row,col, and botleft row,col */
        !          51813:           { 84,   87, 2,237, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          51814:             "\x00\x4c\x08\xff\x01\x4d\x07\x00\x01\x0a\x2d\x16\x07"
        !          51815:             "\x0b\x33\x0f\x08\x0b\x36\x0b\x09\x0a\x38\x0a\x09\x0a"
        !          51816:             "\x39\x08\x09\x0b\x3a\x07\x09\x0b\x3b\x05\x0a\x0a\x3c"
        !          51817:             "\x05\x0a\x0a\x3c\x04\x0a\x0b\x3c\x04\x0a\x0b\x3c\x03"
        !          51818:             "\x0b\x0a\x3d\x02\x0c\x0a\x3d\x02\x0b\x0b\x3c\x02\x0c"
        !          51819:             "\x0b\x3c\x02\x0c\x0a\x4b\x0a\x4a\x0b\x4a\x0a\x4b\x0a"
        !          51820:             "\x4a\x0b\x4a\x0b\x4a\x0a\x4b\x0a\x4a\x0b\x4a\x0b\x4a"
        !          51821:             "\x0a\x4b\x0a\x4a\x0b\x4a\x0b\x4a\x0a\x4b\x0a\x4a\x0b"
        !          51822:             "\x4a\x0b\x4a\x0a\x4b\x0a\x4a\x0b\x4a\x0a\x4b\x0a\x4a"
        !          51823:             "\x0b\x4a\x0b\x4a\x09\x4c\x07\x4d\x06\x4f\x04\x4f\x05"
        !          51824:             "\x4e\x05\x4e\x05\x4e\x05\x4e\x05\x4f\x04\x4f\x05\x4e"
        !          51825:             "\x05\x4e\x05\x4e\x05\x4e\x05\x4f\x04\x4f\x04\x4f\x05"
        !          51826:             "\x4e\x05\x4e\x05\x4e\x05\x4f\x04\x4f\x04\x3d\x02\x10"
        !          51827:             "\x05\x3c\x02\x10\x05\x3d\x02\x0f\x05\x3d\x03\x0e\x05"
        !          51828:             "\x3d\x03\x0f\x04\x3e\x03\x0e\x04\x3e\x04\x0d\x05\x3d"
        !          51829:             "\x04\x0d\x05\x3c\x06\x0c\x05\x3c\x06\x0c\x05\x3b\x08"
        !          51830:             "\x0c\x04\x3a\x0a\x0b\x04\x38\x0c\x0b\x05\x35\x0f\x0a"
        !          51831:             "\x05\x2f\x15\x0a\x4a\x09\x4b\x09\x4a\x09\x4b\x08\x4c"
        !          51832:             "\x07\x4c\x08" }  },
        !          51833:       /* --- pixel bitmap for cmex450 char#89 \Bigprod --- */
        !          51834:       {  89,110899,                     /* character number, location */
        !          51835:           0, 3,  -87, 3,      /* topleft row,col, and botleft row,col */
        !          51836:           { 74,   87, 2,52, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          51837:             "\xff\x03\x00\x4a\x05\x0f\x22\x0f\x0c\x0d\x22\x0d\x07"
        !          51838:             "\x00\xff\x01\x09\x0b\x22\x0b\x09\x00\xff\x46\x0a\x0a"
        !          51839:             "\x22\x0a\x0a\x00\xff\x01\x09\x0c\x20\x0c\x09\x00\x07"
        !          51840:             "\x10\x1c\x10\x0c\x14\x18\x14\x05\xff\x03\x1e\x0e\x1e" }  },
        !          51841:       /* --- pixel bitmap for cmex450 char#90 \Bigint --- */
        !          51842:       {  90,116871,                     /* character number, location */
        !          51843:           0, 4,  -138, 4,     /* topleft row,col, and botleft row,col */
        !          51844:           { 55,  138, 2,313, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          51845:             "\x2e\x05\x30\x03\x04\x02\x2d\x03\x06\x02\x2b\x03\x05"
        !          51846:             "\x04\x2b\x03\x04\x06\x29\x03\x05\x06\xff\x01\x28\x04"
        !          51847:             "\x05\x06\x27\x04\x07\x04\x28\x04\x32\x05\x0c\x00\xff"
        !          51848:             "\x01\x26\x04\x0d\x00\x25\x05\x0d\x00\xff\x01\x25\x04"
        !          51849:             "\x0e\x00\xff\x01\x24\x05\x0e\x00\x24\x04\x0f\x00\xff"
        !          51850:             "\x03\x23\x05\x0f\x00\xff\x03\x22\x05\x10\x00\x21\x06"
        !          51851:             "\x10\x00\xff\x02\x21\x05\x11\x00\xff\x01\x20\x06\x11"
        !          51852:             "\x00\xff\x01\x20\x05\x12\x00\xff\x03\x1f\x06\x12\x00"
        !          51853:             "\xff\x04\x1e\x06\x13\x00\xff\x03\x1d\x06\x14\x00\xff"
        !          51854:             "\x01\x1c\x07\x14\x00\xff\x01\x1c\x06\x15\x00\xff\x03"
        !          51855:             "\x1b\x07\x15\x00\x1b\x06\x16\x00\xff\x03\x1a\x07\x16"
        !          51856:             "\x00\x1a\x06\x17\x00\xff\x04\x19\x07\x17\x00\xff\x03"
        !          51857:             "\x18\x07\x18\x00\xff\x04\x17\x07\x19\x00\x17\x06\x1a"
        !          51858:             "\x00\xff\x03\x16\x07\x1a\x00\x16\x06\x1b\x00\xff\x03"
        !          51859:             "\x15\x07\x1b\x00\xff\x01\x15\x06\x1c\x00\xff\x01\x14"
        !          51860:             "\x07\x1c\x00\xff\x03\x14\x06\x1d\x00\xff\x04\x13\x06"
        !          51861:             "\x1e\x00\xff\x03\x12\x06\x1f\x00\xff\x01\x12\x05\x20"
        !          51862:             "\x00\xff\x01\x11\x06\x20\x00\xff\x02\x11\x05\x21\x00"
        !          51863:             "\x10\x06\x21\x00\xff\x03\x10\x05\x22\x00\xff\x03\x0f"
        !          51864:             "\x05\x23\x00\x0f\x04\x24\x00\xff\x01\x0e\x05\x24\x00"
        !          51865:             "\xff\x01\x0e\x04\x25\x00\x0d\x05\x25\x00\xff\x01\x0d"
        !          51866:             "\x04\x26\x00\x0c\x05\x32\x04\x28\x04\x07\x04\x27\xff"
        !          51867:             "\x01\x06\x05\x04\x28\x06\x05\x03\x29\x06\x04\x03\x2b"
        !          51868:             "\x04\x05\x03\x2b\x02\x06\x03\x2d\x02\x04\x03\x30\x05"
        !          51869:             "\x2e" }  },
        !          51870:       /* --- pixel bitmap for cmex450 char#91 \Bigcup --- */
        !          51871:       {  91,121601,                     /* character number, location */
        !          51872:           0, 3,  -87, 3,      /* topleft row,col, and botleft row,col */
        !          51873:           { 63,   87, 2,103, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          51874:             "\x01\x03\x37\x03\x01\xff\x3c\x05\x35\x05\x00\x06\x33"
        !          51875:             "\x06\xff\x01\x01\x05\x33\x05\x01\x00\x01\x06\x31\x06"
        !          51876:             "\x01\x00\xff\x01\x02\x05\x31\x05\x02\x00\x02\x06\x2f"
        !          51877:             "\x06\x05\x05\x2f\x05\x06\x06\x2d\x06\x07\x06\x2b\x06"
        !          51878:             "\x08\x07\x29\x07\x09\x07\x27\x07\x0b\x06\x27\x06\x0d"
        !          51879:             "\x07\x23\x07\x0f\x07\x21\x07\x10\x08\x1f\x08\x11\x09"
        !          51880:             "\x1b\x09\x14\x09\x17\x09\x17\x0b\x11\x0b\x19\x0d\x0b"
        !          51881:             "\x0d\x1c\x21\x20\x1d\x24\x19\x29\x13\x2f\x0d\x19" }  },
        !          51882:       /* --- pixel bitmap for cmex450 char#92 \Bigcap --- */
        !          51883:       {  92,123790,                     /* character number, location */
        !          51884:           0, 3,  -87, 3,      /* topleft row,col, and botleft row,col */
        !          51885:           { 63,   87, 2,103, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          51886:             "\x19\x0d\x2f\x13\x29\x19\x24\x1d\x20\x21\x1c\x0d\x0b"
        !          51887:             "\x0d\x19\x0b\x11\x0b\x17\x09\x17\x09\x14\x09\x1b\x09"
        !          51888:             "\x11\x08\x1f\x08\x10\x07\x21\x07\x0f\x07\x23\x07\x0d"
        !          51889:             "\x06\x27\x06\x0b\x07\x27\x07\x09\x07\x29\x07\x08\x06"
        !          51890:             "\x2b\x06\x07\x06\x2d\x06\x06\x05\x2f\x05\x05\x06\x2f"
        !          51891:             "\x06\x02\x00\xff\x01\x02\x05\x31\x05\x02\x00\x01\x06"
        !          51892:             "\x31\x06\x01\x00\xff\x01\x01\x05\x33\x05\x01\x06\x33"
        !          51893:             "\x06\x00\xff\x3c\x05\x35\x05\x01\x03\x37\x03\x01" }  },
        !          51894:       /* --- pixel bitmap for cmex450 char#93 \Biguplus --- */
        !          51895:       {  93,126155,                     /* character number, location */
        !          51896:           0, 3,  -87, 3,      /* topleft row,col, and botleft row,col */
        !          51897:           { 63,   87, 2,147, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          51898:             "\x01\x03\x37\x03\x01\xff\x12\x05\x35\x05\x00\x05\x19"
        !          51899:             "\x03\x19\x05\x00\xff\x11\x05\x18\x05\x18\x05\x00\x05"
        !          51900:             "\x06\x29\x06\x05\x00\xff\x02\x05\x05\x2b\x05\x05\x00"
        !          51901:             "\x05\x07\x27\x07\x05\x00\xff\x11\x05\x18\x05\x18\x05"
        !          51902:             "\x00\x06\x19\x01\x19\x06\xff\x01\x01\x05\x33\x05\x01"
        !          51903:             "\x00\x01\x06\x31\x06\x01\x00\xff\x01\x02\x05\x31\x05"
        !          51904:             "\x02\x00\x02\x06\x2f\x06\x05\x05\x2f\x05\x06\x06\x2d"
        !          51905:             "\x06\x07\x06\x2b\x06\x08\x07\x29\x07\x09\x07\x27\x07"
        !          51906:             "\x0b\x06\x27\x06\x0d\x07\x23\x07\x0f\x07\x21\x07\x10"
        !          51907:             "\x08\x1f\x08\x11\x09\x1b\x09\x14\x09\x17\x09\x17\x0b"
        !          51908:             "\x11\x0b\x19\x0d\x0b\x0d\x1c\x21\x20\x1d\x24\x19\x29"
        !          51909:             "\x13\x2f\x0d\x19" }  },
        !          51910:       /* --- pixel bitmap for cmex450 char#94 \Bigwedge --- */
        !          51911:       {  94,128356,                     /* character number, location */
        !          51912:           0, 3,  -87, 3,      /* topleft row,col, and botleft row,col */
        !          51913:           { 63,   87, 3,657, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          51914:             "\xe0\xe0\x23\xe0\xe0\x20\xf1\xe0\xe0\x15\xe0\xe0\x10"
        !          51915:             "\xf2\xe0\xe7\xe0\xe0\xf2\xe0\xd9\xe0\xd0\xe0\xcb\xe0"
        !          51916:             "\xc0\xf1\xe0\xc5\x15\xe0\xc0\xe0\xb6\x16\xe0\xb0\xf1"
        !          51917:             "\xe0\xb5\x35\xe0\xb0\xe0\xa6\x36\xe0\xa0\xf1\xe0\xa5"
        !          51918:             "\x55\xe0\xa0\xe0\x96\x56\xe0\xe0\xe0\x45\x75\xe0\xe0"
        !          51919:             "\xe0\x36\x76\xe0\x80\xf1\xe0\x85\x95\xe0\x80\xe0\x76"
        !          51920:             "\x96\xe0\x70\xf1\xe0\x75\xb5\xe0\x70\xe0\x66\xb6\xe0"
        !          51921:             "\x60\xf1\xe0\x65\xd5\xe0\x60\xe0\x56\xd6\xe0\x50\xf1"
        !          51922:             "\xe0\x55\xe0\x15\xe0\x50\xe0\x46\xe0\x16\xe0\x40\xf1"
        !          51923:             "\xe0\x45\xe0\x35\xe0\x40\xe0\x36\xe0\x36\xe0\xe0\x65"
        !          51924:             "\xe0\x55\xe0\xe0\x56\xe0\x56\xe0\x20\xf1\xe0\x25\xe0"
        !          51925:             "\x75\xe0\x20\xe0\x16\xe0\x76\xe0\x10\xf1\xe0\x15\xe0"
        !          51926:             "\x95\xe0\x10\xe6\xe0\x96\xe0\xf1\xe5\xe0\xb5\xe0\xd6"
        !          51927:             "\xe0\xb6\xd0\xf1\xd5\xe0\xd5\xd0\xc6\xe0\xd6\xe0\xa5"
        !          51928:             "\xe0\xe0\x15\xe0\x96\xe0\xe0\x16\xb0\xf1\xb5\xe0\xe0"
        !          51929:             "\x35\xb0\xa6\xe0\xe0\x36\xa0\xf1\xa5\xe0\xe0\x55\xa0"
        !          51930:             "\x96\xe0\xe0\x56\x90\xf1\x95\xe0\xe0\x75\x90\x86\xe0"
        !          51931:             "\xe0\x76\x80\xf1\x85\xe0\xe0\x95\x80\x76\xe0\xe0\x96"
        !          51932:             "\x70\xf1\x75\xe0\xe0\xb5\x70\x66\xe0\xe0\xb6\xc5\xe0"
        !          51933:             "\xe0\xd5\xb6\xe0\xe0\xd6\x50\xf1\x55\xe0\xe0\xe0\x15"
        !          51934:             "\x50\x46\xe0\xe0\xe0\x16\x40\xf1\x45\xe0\xe0\xe0\x35"
        !          51935:             "\x40\x36\xe0\xe0\xe0\x36\x30\xf1\x35\xe0\xe0\xe0\x55"
        !          51936:             "\x30\x26\xe0\xe0\xe0\x56\x20\xf1\x25\xe0\xe0\xe0\x75"
        !          51937:             "\x20\x16\xe0\xe0\xe0\x76\x10\xf1\x15\xe0\xe0\xe0\x95"
        !          51938:             "\x16\xe0\xe0\xe0\x96\x0f\x15\xe0\xe0\xe0\xb5\x13\xe0"
        !          51939:             "\xe0\xe0\xd3\x11" }  },
        !          51940:       /* --- pixel bitmap for cmex450 char#95 \Bigvee --- */
        !          51941:       {  95,130463,                     /* character number, location */
        !          51942:           0, 3,  -87, 3,      /* topleft row,col, and botleft row,col */
        !          51943:           { 63,   87, 3,657, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          51944:             "\x13\xe0\xe0\xe0\xd3\x1f\x15\xe0\xe0\xe0\xb5\x06\xe0"
        !          51945:             "\xe0\xe0\x96\xf1\x15\xe0\xe0\xe0\x95\x10\x16\xe0\xe0"
        !          51946:             "\xe0\x76\x10\xf1\x25\xe0\xe0\xe0\x75\x20\x26\xe0\xe0"
        !          51947:             "\xe0\x56\x20\xf1\x35\xe0\xe0\xe0\x55\x30\x36\xe0\xe0"
        !          51948:             "\xe0\x36\x30\xf1\x45\xe0\xe0\xe0\x35\x40\x46\xe0\xe0"
        !          51949:             "\xe0\x16\x40\xf1\x55\xe0\xe0\xe0\x15\x50\x56\xe0\xe0"
        !          51950:             "\xd6\xb5\xe0\xe0\xd5\xc6\xe0\xe0\xb6\x60\xf1\x75\xe0"
        !          51951:             "\xe0\xb5\x70\x76\xe0\xe0\x96\x70\xf1\x85\xe0\xe0\x95"
        !          51952:             "\x80\x86\xe0\xe0\x76\x80\xf1\x95\xe0\xe0\x75\x90\x96"
        !          51953:             "\xe0\xe0\x56\x90\xf1\xa5\xe0\xe0\x55\xa0\xa6\xe0\xe0"
        !          51954:             "\x36\xa0\xf1\xb5\xe0\xe0\x35\xb0\xb6\xe0\xe0\x16\xe0"
        !          51955:             "\x95\xe0\xe0\x15\xe0\xa6\xe0\xd6\xc0\xf1\xd5\xe0\xd5"
        !          51956:             "\xd0\xd6\xe0\xb6\xd0\xf1\xe5\xe0\xb5\xe0\xe6\xe0\x96"
        !          51957:             "\xe0\xf1\xe0\x15\xe0\x95\xe0\x10\xe0\x16\xe0\x76\xe0"
        !          51958:             "\x10\xf1\xe0\x25\xe0\x75\xe0\x20\xe0\x26\xe0\x56\xe0"
        !          51959:             "\xe0\x55\xe0\x55\xe0\xe0\x66\xe0\x36\xe0\x30\xf1\xe0"
        !          51960:             "\x45\xe0\x35\xe0\x40\xe0\x46\xe0\x16\xe0\x40\xf1\xe0"
        !          51961:             "\x55\xe0\x15\xe0\x50\xe0\x56\xd6\xe0\x50\xf1\xe0\x65"
        !          51962:             "\xd5\xe0\x60\xe0\x66\xb6\xe0\x60\xf1\xe0\x75\xb5\xe0"
        !          51963:             "\x70\xe0\x76\x96\xe0\x70\xf1\xe0\x85\x95\xe0\x80\xe0"
        !          51964:             "\x86\x76\xe0\xe0\xe0\x35\x75\xe0\xe0\xe0\x46\x56\xe0"
        !          51965:             "\x90\xf1\xe0\xa5\x55\xe0\xa0\xe0\xa6\x36\xe0\xa0\xf1"
        !          51966:             "\xe0\xb5\x35\xe0\xb0\xe0\xb6\x16\xe0\xb0\xf1\xe0\xc5"
        !          51967:             "\x15\xe0\xc0\xe0\xcb\xe0\xc0\xf2\xe0\xd9\xe0\xd0\xf2"
        !          51968:             "\xe0\xe7\xe0\xe0\xf1\xe0\xe0\x15\xe0\xe0\x10\xe0\xe0"
        !          51969:             "\x23\xe0\xe0\x21" }  },
        !          51970:       /* --- pixel bitmap for cmex450 char#96 \coprod --- */
        !          51971:       {  96,112640,                     /* character number, location */
        !          51972:           0, 3,  -62, 3,      /* topleft row,col, and botleft row,col */
        !          51973:           { 53,   62, 2,36, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          51974:             "\xff\x02\x00\x12\x11\x12\x03\x0c\x17\x0c\x08\x08\x1b"
        !          51975:             "\x08\x05\x00\xff\x33\x06\x06\x1d\x06\x06\x00\x05\x07"
        !          51976:             "\x1d\x07\x08\x09\x1d\x09\x03\xff\x02\x35" }  },
        !          51977:       /* --- pixel bitmap for cmex450 char#97 \Bigcoprod --- */
        !          51978:       {  97,114438,                     /* character number, location */
        !          51979:           0, 3,  -87, 3,      /* topleft row,col, and botleft row,col */
        !          51980:           { 74,   87, 2,52, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          51981:             "\xff\x03\x00\x1e\x0e\x1e\x05\x14\x18\x14\x0c\x10\x1c"
        !          51982:             "\x10\x07\x00\xff\x01\x09\x0c\x20\x0c\x09\x00\xff\x46"
        !          51983:             "\x0a\x0a\x22\x0a\x0a\x00\xff\x01\x09\x0b\x22\x0b\x09"
        !          51984:             "\x00\x07\x0d\x22\x0d\x0c\x0f\x22\x0f\x05\xff\x03\x4a" }  },
        !          51985:       /* --- pixel bitmap for cmex450 char#98 ^ --- */
        !          51986:       {  98,131462,                     /* character number, location */
        !          51987:          46, 0,   35, 0,      /* topleft row,col, and botleft row,col */
        !          51988:           { 35,   11, 3,60, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          51989:             "\xe0\x31\xe0\xe0\x45\xe0\xe9\xe0\xa6\x16\xe0\x66\x56"
        !          51990:             "\xe0\x26\x96\xc6\xd6\x86\xe0\x36\x45\xe0\x95\x14\xe0"
        !          51991:             "\xd6\xe0\xe0\x32" }  },
        !          51992:       /* --- pixel bitmap for cmex450 char#99 ^ --- */
        !          51993:       {  99,132361,                     /* character number, location */
        !          51994:          48, 0,   36, 0,      /* topleft row,col, and botleft row,col */
        !          51995:           { 62,   12, 2,38, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          51996:             "\x1d\x04\x37\x0a\x31\x10\x2b\x16\x25\x0a\x08\x0a\x1f"
        !          51997:             "\x0a\x0e\x0a\x19\x09\x16\x09\x13\x09\x1c\x09\x0d\x08"
        !          51998:             "\x24\x08\x07\x08\x2a\x08\x02\x07\x30\x0a\x38\x03" }  },
        !          51999:       /* --- pixel bitmap for cmex450 char#100 ^ --- */
        !          52000:       { 100,133471,                     /* character number, location */
        !          52001:          48, 0,   36, 0,      /* topleft row,col, and botleft row,col */
        !          52002:           { 90,   12, 2,40, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          52003:             "\x2b\x04\x51\x0e\x48\x16\x40\x0e\x02\x0e\x37\x0e\x0c"
        !          52004:             "\x0e\x2e\x0d\x16\x0d\x26\x0c\x20\x0c\x1d\x0c\x2a\x0c"
        !          52005:             "\x14\x0b\x34\x0b\x0c\x0a\x3e\x0a\x04\x09\x48\x0d\x52"
        !          52006:             "\x04" }  },
        !          52007:       /* --- pixel bitmap for cmex450 char#101 ~ --- */
        !          52008:       { 101,134214,                     /* character number, location */
        !          52009:          45, 0,   38, 0,      /* topleft row,col, and botleft row,col */
        !          52010:           { 35,    7, 3,43, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          52011:             "\x96\xe0\x51\x7a\xe0\x12\x63\x55\xd2\x62\x95\x92\x62"
        !          52012:             "\xd5\x53\x62\xe0\x1a\x71\xe0\x56\x9e" }  },
        !          52013:       /* --- pixel bitmap for cmex450 char#102 ~ --- */
        !          52014:       { 102,135156,                     /* character number, location */
        !          52015:          47, 0,   39, 0,      /* topleft row,col, and botleft row,col */
        !          52016:           { 62,    8, 3,77, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          52017:             "\xe0\x39\xe0\xe0\x71\xde\x02\xe0\xe0\x13\xb5\xa6\xe0"
        !          52018:             "\xb3\xb3\xe0\x26\xe0\x73\xa3\xe0\x76\xe0\x23\xb3\xe0"
        !          52019:             "\xb6\xa5\xb3\xe0\xe0\x1e\x02\xd1\xe0\xe0\x79\xe0\x30" }  },
        !          52020:       /* --- pixel bitmap for cmex450 char#103 ~ --- */
        !          52021:       { 103,136313,                     /* character number, location */
        !          52022:          47, 0,   39, 0,      /* topleft row,col, and botleft row,col */
        !          52023:           { 90,    8, 2,41, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          52024:             "\x19\x0d\x32\x02\x13\x16\x2c\x03\x11\x06\x10\x07\x26"
        !          52025:             "\x03\x10\x05\x19\x06\x1f\x04\x10\x04\x1f\x06\x19\x05"
        !          52026:             "\x10\x03\x26\x07\x10\x06\x11\x03\x2c\x16\x13\x02\x32"
        !          52027:             "\x0d\x19" }  },
        !          52028:       /* --- pixel bitmap for cmex450 char#104 \Big[ --- */
        !          52029:       { 104,15381,                      /* character number, location */
        !          52030:           2,14,  -109,14,     /* topleft row,col, and botleft row,col */
        !          52031:           { 14,  111, 2,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          52032:             "\xff\x02\x00\x0e\x00\xff\x68\x03\x0b\xff\x02\x0e" }  },
        !          52033:       /* --- pixel bitmap for cmex450 char#105 \Big] --- */
        !          52034:       { 105,22265,                      /* character number, location */
        !          52035:           2, 1,  -109, 1,     /* topleft row,col, and botleft row,col */
        !          52036:           { 14,  111, 2,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          52037:             "\xff\x02\x00\x0e\xff\x68\x0b\x03\x00\xff\x02\x0e" }  },
        !          52038:       /* --- pixel bitmap for cmex450 char#106 (noname) --- */
        !          52039:       { 106,29200,                      /* character number, location */
        !          52040:           2,14,  -109,14,     /* topleft row,col, and botleft row,col */
        !          52041:           { 18,  111, 2, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          52042:             "\xff\x6b\x00\x03\x0f\xff\x02\x12" }  },
        !          52043:       /* --- pixel bitmap for cmex450 char#107 (noname) --- */
        !          52044:       { 107,33470,                      /* character number, location */
        !          52045:           2, 1,  -109, 1,     /* topleft row,col, and botleft row,col */
        !          52046:           { 18,  111, 2, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          52047:             "\xff\x6b\x0f\x03\x00\xff\x02\x12" }  },
        !          52048:       /* --- pixel bitmap for cmex450 char#108 (noname) --- */
        !          52049:       { 108,37770,                      /* character number, location */
        !          52050:           2,14,  -109,14,     /* topleft row,col, and botleft row,col */
        !          52051:           { 18,  111, 2, 9, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          52052:             "\xff\x02\x00\x12\x00\xff\x6b\x03\x0f" }  },
        !          52053:       /* --- pixel bitmap for cmex450 char#109 (noname) --- */
        !          52054:       { 109,42048,                      /* character number, location */
        !          52055:           2, 1,  -109, 1,     /* topleft row,col, and botleft row,col */
        !          52056:           { 18,  111, 2, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          52057:             "\xff\x02\x00\x12\xff\x6b\x0f\x03" }  },
        !          52058:       /* --- pixel bitmap for cmex450 char#110 \Big{ --- */
        !          52059:       { 110,46516,                      /* character number, location */
        !          52060:           2, 7,  -109, 7,     /* topleft row,col, and botleft row,col */
        !          52061:           { 28,  111, 3,200, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          52062:             "\xe0\xa4\xe0\x86\xe0\x68\xe0\x48\xe0\x57\xe0\x66\xe0"
        !          52063:             "\x76\xe0\x76\xe0\x85\x90\xf1\xd5\xa0\xfe\xc5\xb0\xfe"
        !          52064:             "\xc5\xb0\xf2\xc5\xb0\xf2\xb5\xc0\xa5\xe0\x85\xe0\x85"
        !          52065:             "\xe0\x85\xe0\x85\xe0\x76\xe0\x66\xe0\x66\xe0\x84\xe0"
        !          52066:             "\xa6\xe0\xa6\xe0\xa6\xe0\xa5\xe0\xa5\xe0\xa5\xe0\xa5"
        !          52067:             "\xe0\xa5\xd0\xf2\xb5\xc0\xfe\xc5\xb0\xfe\xc5\xb0\xf2"
        !          52068:             "\xc5\xb0\xf1\xd5\xa0\xe5\xe0\x96\xe0\x96\xe0\x96\xe0"
        !          52069:             "\x97\xe0\x88\xe0\x88\xe0\x86\xe0\xa4" }  },
        !          52070:       /* --- pixel bitmap for cmex450 char#111 \Big} --- */
        !          52071:       { 111,55240,                      /* character number, location */
        !          52072:           2, 7,  -109, 7,     /* topleft row,col, and botleft row,col */
        !          52073:           { 28,  111, 3,201, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          52074:             "\x04\xe0\xa6\xe0\x88\xe0\x88\xe0\x88\xe0\x87\xe0\x96"
        !          52075:             "\xe0\x96\xe0\x95\xd0\xf1\xb5\xc0\xfe\xc5\xb0\xfe\xc5"
        !          52076:             "\xb0\xf2\xc5\xb0\xf2\xd5\xa0\xe5\xe0\xa5\xe0\xa5\xe0"
        !          52077:             "\xa5\xe0\xa5\xe0\xa5\xe0\xa6\xe0\xa6\xe0\xa4\xe0\x86"
        !          52078:             "\xe0\x66\xe0\x75\xe0\x85\xe0\x85\xe0\x85\xe0\x85\xe0"
        !          52079:             "\x85\x90\xf2\xd5\xa0\xfe\xc5\xb0\xfe\xc5\xb0\xf2\xc5"
        !          52080:             "\xb0\xf1\xb5\xc0\xa5\xe0\x86\xe0\x76\xe0\x67\xe0\x58"
        !          52081:             "\xe0\x48\xe0\x48\xe0\x66\xe0\x84\xe0\xa0" }  },
        !          52082:       /* --- pixel bitmap for cmex450 char#112 (noname) --- */
        !          52083:       { 112,86787,                      /* character number, location */
        !          52084:           3, 7,  -72, 7,      /* topleft row,col, and botleft row,col */
        !          52085:           { 57,   75, 2,227, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          52086:             "\x37\x02\x36\x03\x35\x04\x35\x03\x35\x04\x35\x03\x35"
        !          52087:             "\x04\x35\x03\x35\x04\x35\x03\x35\x04\x35\x03\x35\x04"
        !          52088:             "\x35\x03\x35\x04\x35\x03\x35\x04\x35\x03\x35\x04\x08"
        !          52089:             "\x00\xff\x01\x2d\x03\x09\x00\x2c\x04\x35\x03\x35\x04"
        !          52090:             "\x35\x03\x35\x04\x35\x03\x35\x04\x35\x03\x35\x04\x35"
        !          52091:             "\x03\x35\x04\x35\x03\x35\x04\x35\x03\x35\x04\x35\x03"
        !          52092:             "\x35\x04\x18\x01\x1c\x03\x17\x04\x1a\x04\x16\x05\x1a"
        !          52093:             "\x03\x16\x01\x01\x05\x18\x04\x14\x02\x02\x05\x18\x03"
        !          52094:             "\x14\x02\x04\x05\x16\x04\x1a\x05\x16\x03\x1b\x05\x15"
        !          52095:             "\x04\x1c\x05\x14\x03\x1d\x05\x13\x04\x1e\x05\x12\x03"
        !          52096:             "\x1f\x05\x11\x04\x20\x05\x10\x03\x21\x05\x0f\x04\x21"
        !          52097:             "\x05\x0f\x03\x23\x05\x0d\x04\x23\x05\x0d\x03\x25\x05"
        !          52098:             "\x0c\x03\x25\x05\x0b\x04\x26\x05\x0a\x03\x27\x05\x09"
        !          52099:             "\x04\x27\x05\x09\x03\x29\x05\x07\x04\x29\x05\x07\x03"
        !          52100:             "\x2b\x05\x05\x04\x2b\x05\x05\x03\x2d\x05\x03\x04\x2d"
        !          52101:             "\x05\x03\x03\x2e\x05\x02\x04\x2f\x05\x01\x03\x30\x09"
        !          52102:             "\x20\x00\xff\x01\x11\x07\x21\x00\xff\x01\x12\x05\x22"
        !          52103:             "\x00\x12\x04\x36\x03\x23" }  },
        !          52104:       /* --- pixel bitmap for cmex450 char#113 (noname) --- */
        !          52105:       { 113,87912,                      /* character number, location */
        !          52106:           3, 7,  -110, 7,     /* topleft row,col, and botleft row,col */
        !          52107:           { 57,  113, 3,791, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          52108:             "\xe0\xe0\xe0\xd2\xf1\xe0\xe0\xe0\xc3\xe0\xe0\xe0\xb4"
        !          52109:             "\xf1\xe0\xe0\xe0\xb3\x10\xe0\xe0\xe0\xa4\x10\xf1\xe0"
        !          52110:             "\xe0\xe0\xa3\x20\xe0\xe0\xe0\x94\x20\xf1\xe0\xe0\xe0"
        !          52111:             "\x93\x30\xe0\xe0\xe0\x84\x30\xf1\xe0\xe0\xe0\x83\x40"
        !          52112:             "\xe0\xe0\xe0\x74\x40\xf1\xe0\xe0\xe0\x73\x50\xe0\xe0"
        !          52113:             "\xe0\x64\x50\xf1\xe0\xe0\xe0\x63\x60\xe0\xe0\xe0\x54"
        !          52114:             "\x60\xf2\xe0\xe0\xe0\x53\x70\xe0\xe0\xe0\x44\x70\xf1"
        !          52115:             "\xe0\xe0\xe0\x43\x80\xe0\xe0\xe0\x34\x80\xf1\xe0\xe0"
        !          52116:             "\xe0\x33\x90\xe0\xe0\xe0\x24\x90\xf1\xe0\xe0\xe0\x23"
        !          52117:             "\xa0\xe0\xe0\xe0\x14\xa0\xf1\xe0\xe0\xe0\x13\xb0\xe0"
        !          52118:             "\xe0\xe4\xb0\xf1\xe0\xe0\xe3\xc0\xe0\xe0\xd4\xc0\xf1"
        !          52119:             "\xe0\xe0\xd3\xd0\xe0\xe0\xc4\xd0\xf2\xe0\xe0\xc3\xe0"
        !          52120:             "\xe0\xe0\xb4\xe0\xf1\xe0\xe0\xb3\xe0\x10\xe0\xe0\xa4"
        !          52121:             "\xe0\x10\xf1\xe0\xe0\xa3\xe0\x20\xe0\xe0\x94\xe0\x20"
        !          52122:             "\xf1\xe0\xe0\x93\xe0\x30\xe0\xe0\x84\xe0\xa1\xe0\xe3"
        !          52123:             "\xe0\xa3\xe0\xd3\xe0\x94\xe0\xc4\xe0\x94\xe0\xc3\xe0"
        !          52124:             "\x95\xe0\xc3\xe0\x81\x15\xe0\xa4\xe0\x71\x25\xe0\xa3"
        !          52125:             "\xe0\x71\x35\xe0\xa3\xe0\x62\x45\xe0\x84\xe0\x60\xf2"
        !          52126:             "\x65\xe0\x83\xe0\x70\x75\xe0\x64\xe0\x70\xf1\x75\xe0"
        !          52127:             "\x63\xe0\x80\x85\xe0\x44\xe0\x80\xf1\x85\xe0\x43\xe0"
        !          52128:             "\x90\x85\xe0\x34\xe0\x90\xf1\x95\xe0\x23\xe0\xa0\x95"
        !          52129:             "\xe0\x14\xe0\xa0\xf1\xa5\xe3\xe0\xb0\xa5\xd4\xe0\xe0"
        !          52130:             "\x75\xd3\xe0\xe0\x95\xc3\xe0\xe0\x95\xb4\xe0\xc0\xf1"
        !          52131:             "\xb5\xb3\xe0\xd0\xc5\x94\xe0\xd0\xf1\xc5\x93\xe0\xe0"
        !          52132:             "\xd5\x83\xe0\xe0\xd5\x74\xe0\xe0\xf1\xd5\x73\xe0\xe0"
        !          52133:             "\x10\xe5\x54\xe0\xe0\x10\xf1\xe5\x53\xe0\xe0\x20\xe0"
        !          52134:             "\x15\x34\xe0\xe0\x20\xf1\xe0\x15\x33\xe0\xe0\x30\xe0"
        !          52135:             "\x15\x24\xe0\xe0\x30\xf1\xe0\x25\x13\xe0\xe0\x40\xe0"
        !          52136:             "\x29\xe0\xe0\x40\xf2\xe0\x37\xe0\xe0\x50\xe0\x36\xe0"
        !          52137:             "\xe0\x60\xf1\xe0\x45\xe0\xe0\x60\xe0\x44\xe0\xe0\x70"
        !          52138:             "\xf1\xe0\x53\xe0\xe0\x75" }  },
        !          52139:       /* --- pixel bitmap for cmex450 char#114 (noname) --- */
        !          52140:       { 114,89148,                      /* character number, location */
        !          52141:           3, 7,  -147, 7,     /* topleft row,col, and botleft row,col */
        !          52142:           { 57,  150, 3,827, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          52143:             "\xe0\xe0\xe0\xd2\xf1\xe0\xe0\xe0\xc3\xe0\xe0\xe0\xb4"
        !          52144:             "\xf2\xe0\xe0\xe0\xb3\x10\xe0\xe0\xe0\xa4\x10\xf2\xe0"
        !          52145:             "\xe0\xe0\xa3\x20\xe0\xe0\xe0\x94\x20\xf3\xe0\xe0\xe0"
        !          52146:             "\x93\x30\xe0\xe0\xe0\x84\x30\xf2\xe0\xe0\xe0\x83\x40"
        !          52147:             "\xe0\xe0\xe0\x74\x40\xf2\xe0\xe0\xe0\x73\x50\xe0\xe0"
        !          52148:             "\xe0\x64\x50\xf2\xe0\xe0\xe0\x63\x60\xe0\xe0\xe0\x54"
        !          52149:             "\x60\xf2\xe0\xe0\xe0\x53\x70\xe0\xe0\xe0\x44\x70\xf3"
        !          52150:             "\xe0\xe0\xe0\x43\x80\xe0\xe0\xe0\x34\x80\xf2\xe0\xe0"
        !          52151:             "\xe0\x33\x90\xe0\xe0\xe0\x24\x90\xf2\xe0\xe0\xe0\x23"
        !          52152:             "\xa0\xe0\xe0\xe0\x14\xa0\xf2\xe0\xe0\xe0\x13\xb0\xe0"
        !          52153:             "\xe0\xe4\xb0\xf2\xe0\xe0\xe3\xc0\xe0\xe0\xd4\xc0\xf3"
        !          52154:             "\xe0\xe0\xd3\xd0\xe0\xe0\xc4\xd0\xf2\xe0\xe0\xc3\xe0"
        !          52155:             "\xe0\xe0\xb4\xe0\xf2\xe0\xe0\xb3\xe0\x10\xe0\xe0\xa4"
        !          52156:             "\xe0\x10\xf2\xe0\xe0\xa3\xe0\x20\xe0\xe0\x94\xe0\x20"
        !          52157:             "\xf2\xe0\xe0\x93\xe0\x30\xe0\xe0\x84\xe0\xe0\xe0\xb3"
        !          52158:             "\xe0\xb1\xe0\xe3\xe0\x40\xf1\x63\xe0\xd3\xe0\x40\x54"
        !          52159:             "\xe0\xc4\xe0\x40\xf1\x45\xe0\xc3\xe0\x50\x31\x15\xe0"
        !          52160:             "\xb3\xe0\x81\x15\xe0\xa4\xe0\x71\x25\xe0\xa3\xe0\x60"
        !          52161:             "\xf1\x11\x35\xe0\xa3\xe0\x61\x55\xe0\x84\xe0\x60\xf2"
        !          52162:             "\x65\xe0\x83\xe0\x70\x75\xe0\x64\xe0\x70\xf2\x75\xe0"
        !          52163:             "\x63\xe0\x80\x75\xe0\x54\xe0\x80\xf3\x85\xe0\x43\xe0"
        !          52164:             "\x90\x85\xe0\x34\xe0\x90\xf2\x95\xe0\x23\xe0\xa0\x95"
        !          52165:             "\xe0\x14\xe0\xa0\xf2\xa5\xe3\xe0\xb0\xa5\xd4\xe0\xe0"
        !          52166:             "\x75\xd3\xe0\xc0\xf1\xb5\xc3\xe0\xc0\xb5\xb4\xe0\xc0"
        !          52167:             "\xf1\xb5\xb3\xe0\xd0\xc5\xa3\xe0\xe0\xb5\x94\xe0\xd0"
        !          52168:             "\xf2\xc5\x93\xe0\xe0\xd5\x83\xe0\xe0\xd5\x74\xe0\xe0"
        !          52169:             "\xf1\xd5\x73\xe0\xe0\x10\xe5\x63\xe0\xe0\xe0\x15\x54"
        !          52170:             "\xe0\xe0\x10\xf2\xe5\x53\xe0\xe0\x20\xe0\x15\x34\xe0"
        !          52171:             "\xe0\x20\xf2\xe0\x15\x33\xe0\xe0\x30\xe0\x15\x24\xe0"
        !          52172:             "\xe0\x30\xf2\xe0\x25\x13\xe0\xe0\x40\xe0\x29\xe0\xe0"
        !          52173:             "\x40\xf4\xe0\x37\xe0\xe0\x50\xf3\xe0\x45\xe0\xe0\x60"
        !          52174:             "\xe0\x44\xe0\xe0\x70\xf1\xe0\x53\xe0\xe0\x70" }  },
        !          52175:       /* --- pixel bitmap for cmex450 char#115 (noname) --- */
        !          52176:       { 115,90492,                      /* character number, location */
        !          52177:           3, 7,  -184, 7,     /* topleft row,col, and botleft row,col */
        !          52178:           { 57,  187, 3,847, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          52179:             "\xe0\xe0\xe0\xd2\xf2\xe0\xe0\xe0\xc3\xe0\xe0\xe0\xb4"
        !          52180:             "\xf3\xe0\xe0\xe0\xb3\x10\xe0\xe0\xe0\xa4\x10\xf3\xe0"
        !          52181:             "\xe0\xe0\xa3\x20\xe0\xe0\xe0\x94\x20\xf3\xe0\xe0\xe0"
        !          52182:             "\x93\x30\xe0\xe0\xe0\x84\x30\xf4\xe0\xe0\xe0\x83\x40"
        !          52183:             "\xe0\xe0\xe0\x74\x40\xf3\xe0\xe0\xe0\x73\x50\xe0\xe0"
        !          52184:             "\xe0\x64\x50\xf3\xe0\xe0\xe0\x63\x60\xe0\xe0\xe0\x54"
        !          52185:             "\x60\xf3\xe0\xe0\xe0\x53\x70\xe0\xe0\xe0\x44\x70\xf4"
        !          52186:             "\xe0\xe0\xe0\x43\x80\xe0\xe0\xe0\x34\x80\xf3\xe0\xe0"
        !          52187:             "\xe0\x33\x90\xe0\xe0\xe0\x24\x90\xf3\xe0\xe0\xe0\x23"
        !          52188:             "\xa0\xe0\xe0\xe0\x14\xa0\xf3\xe0\xe0\xe0\x13\xb0\xe0"
        !          52189:             "\xe0\xe4\xb0\xf4\xe0\xe0\xe3\xc0\xe0\xe0\xd4\xc0\xf3"
        !          52190:             "\xe0\xe0\xd3\xd0\xe0\xe0\xc4\xd0\xf3\xe0\xe0\xc3\xe0"
        !          52191:             "\xe0\xe0\xb4\xe0\xf3\xe0\xe0\xb3\xe0\x10\xe0\xe0\xa4"
        !          52192:             "\xe0\x10\xf4\xe0\xe0\xa3\xe0\x20\xe0\xe0\x94\xe0\x20"
        !          52193:             "\xf3\xe0\xe0\x93\xe0\x30\xe0\xe0\x84\xe0\x30\xf1\x71"
        !          52194:             "\xe0\xe3\xe0\x40\xf1\x63\xe0\xd3\xe0\x40\x54\xe0\xc4"
        !          52195:             "\xe0\x94\xe0\xc3\xe0\x50\xf1\x45\xe0\xc3\xe0\x50\xf1"
        !          52196:             "\x31\x15\xe0\xb3\xe0\x50\x21\x25\xe0\xa4\xe0\x71\x25"
        !          52197:             "\xe0\xa3\xe0\x60\xf1\x11\x35\xe0\xa3\xe0\x61\x55\xe0"
        !          52198:             "\x93\xe0\xc5\xe0\x84\xe0\x60\xf3\x65\xe0\x83\xe0\x70"
        !          52199:             "\x75\xe0\x64\xe0\x70\xf3\x75\xe0\x63\xe0\x80\x75\xe0"
        !          52200:             "\x54\xe0\x80\xf4\x85\xe0\x43\xe0\x90\x85\xe0\x34\xe0"
        !          52201:             "\x90\xf3\x95\xe0\x23\xe0\xa0\x95\xe0\x14\xe0\xa0\xf3"
        !          52202:             "\xa5\xe3\xe0\xb0\xa5\xd4\xe0\xe0\x75\xd3\xe0\xc0\xf2"
        !          52203:             "\xb5\xc3\xe0\xc0\xb5\xb4\xe0\xc0\xf1\xb5\xb3\xe0\xd0"
        !          52204:             "\xf2\xc5\xa3\xe0\xd0\xc5\x94\xe0\xd0\xf1\xc5\x93\xe0"
        !          52205:             "\xe0\xf1\xd5\x83\xe0\xe0\xd5\x74\xe0\xe0\xf2\xd5\x73"
        !          52206:             "\xe0\xe0\x10\xe5\x63\xe0\xe0\xe0\x15\x54\xe0\xe0\x10"
        !          52207:             "\xf3\xe5\x53\xe0\xe0\x20\xe0\x15\x34\xe0\xe0\x20\xf4"
        !          52208:             "\xe0\x15\x33\xe0\xe0\x30\xe0\x25\x14\xe0\xe0\x30\xf3"
        !          52209:             "\xe0\x25\x13\xe0\xe0\x40\xe0\x38\xe0\xe0\x40\xf4\xe0"
        !          52210:             "\x37\xe0\xe0\x50\xf4\xe0\x45\xe0\xe0\x60\xe0\x44\xe0"
        !          52211:             "\xe0\x70\xf2\xe0\x53\xe0\xe0\x70" }  },
        !          52212:       /* --- pixel bitmap for cmex450 char#116 (noname) --- */
        !          52213:       { 116,91986,                      /* character number, location */
        !          52214:           2, 7,  -112, 7,     /* topleft row,col, and botleft row,col */
        !          52215:           { 40,  114, 3,347, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          52216:             "\xe0\xe0\xa1\x10\xfc\xe0\xe0\x93\xf1\x72\xe0\xe3\x63"
        !          52217:             "\xe0\xe3\x64\xe0\xd3\xf1\x55\xe0\xd3\xf1\x41\x15\xe0"
        !          52218:             "\xc3\x31\x25\xe0\xc3\x22\x35\xe0\xb3\x21\x45\xe0\xb3"
        !          52219:             "\x11\x55\xe0\xb3\x11\x65\xe0\xa3\x0f\x11\x75\xe0\xa3"
        !          52220:             "\xf2\x95\xe0\x93\xf2\xa5\xe0\x83\xf2\xb5\xe0\x73\xf2"
        !          52221:             "\xc5\xe0\x63\xf2\xd5\xe0\x53\xf2\xe5\xe0\x43\xf2\xe0"
        !          52222:             "\x15\xe0\x33\xf2\xe0\x25\xe0\x23\xf2\xe0\x35\xe0\x13"
        !          52223:             "\xf2\xe0\x45\xe3\xf2\xe0\x55\xd3\xf2\xe0\x65\xc3\xf2"
        !          52224:             "\xe0\x75\xb3\xf2\xe0\x85\xa3\xf2\xe0\x95\x93\xf2\xe0"
        !          52225:             "\xa5\x83\xf2\xe0\xb5\x73\xf2\xe0\xc5\x63\xf2\xe0\xd5"
        !          52226:             "\x53\xf2\xe0\xe5\x43\xf2\xe0\xe0\x15\x33\xf2\xe0\xe0"
        !          52227:             "\x25\x23\xf2\xe0\xe0\x35\x13\xf2\xe0\xe0\x48\xf2\xe0"
        !          52228:             "\xe0\x57\xf2\xe0\xe0\x66\xf2\xe0\xe0\x75\xf2\xe0\xe0"
        !          52229:             "\x84\xe0\xe0\x92\x10" }  },
        !          52230:       /* --- pixel bitmap for cmex450 char#117 (noname) --- */
        !          52231:       { 117,93189,                      /* character number, location */
        !          52232:           2,44,  -39,44,      /* topleft row,col, and botleft row,col */
        !          52233:           {  3,   41, 3,17, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          52234:             "\x11\x1f\xe3\x0f\xe3\x0f\x83\x11\x11" }  },
        !          52235:       /* --- pixel bitmap for cmex450 char#118 (noname) --- */
        !          52236:       { 118,94062,                      /* character number, location */
        !          52237:           3,44,  -37,44,      /* topleft row,col, and botleft row,col */
        !          52238:           { 24,   40, 2,15, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          52239:             "\x01\x17\x00\xff\x01\x18\x00\xff\x23\x03\x15\x00\x01"
        !          52240:             "\x01\x16" }  },
        !          52241:       /* --- pixel bitmap for cmex450 char#119 (noname) --- */
        !          52242:       { 119,85722,                      /* character number, location */
        !          52243:           1,16,  -38,16,      /* topleft row,col, and botleft row,col */
        !          52244:           { 16,   39, 2, 6, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          52245:             "\xff\x26\x00\x03\x0a\x03" }  },
        !          52246:       /* --- pixel bitmap for cmex450 char#120 (noname) --- */
        !          52247:       { 120,80600,                      /* character number, location */
        !          52248:           0, 7,  -37, 7,      /* topleft row,col, and botleft row,col */
        !          52249:           { 29,   37, 3,75, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          52250:             "\xe1\xe0\xf1\xd3\xd0\xc5\xe0\x97\xe0\x79\xe0\x5b\xe0"
        !          52251:             "\x25\x13\x15\xd5\x23\x25\xa5\x43\x45\x66\x53\x56\x26"
        !          52252:             "\x73\x7a\x93\x96\xb3\xb2\xfe\xd3\xd0\xf7\xd3\xd0" }  },
        !          52253:       /* --- pixel bitmap for cmex450 char#121 (noname) --- */
        !          52254:       { 121,81601,                      /* character number, location */
        !          52255:           0, 7,  -37, 7,      /* topleft row,col, and botleft row,col */
        !          52256:           { 29,   37, 3,75, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          52257:             "\xfe\xd3\xd0\xf7\xd3\xd2\xb3\xb6\x93\x9a\x73\x76\x26"
        !          52258:             "\x53\x56\x65\x43\x45\xa5\x23\x25\xd5\x13\x15\xe0\x2b"
        !          52259:             "\xe0\x59\xe0\x77\xe0\x95\xc0\xf1\xd3\xd0\xe1\xe0" }  },
        !          52260:       /* --- pixel bitmap for cmex450 char#122 (noname) --- */
        !          52261:       { 122,61760,                      /* character number, location */
        !          52262:           8,-2,  -14,-2,      /* topleft row,col, and botleft row,col */
        !          52263:           { 31,   22, 3,89, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          52264:             "\xe0\xa7\xe0\x6b\xe0\x4d\xe0\x1e\x02\xee\x03\xce\x05"
        !          52265:             "\xbe\x06\x9e\x08\x8e\x02\xed\xe0\x3b\xe0\x5a\xe0\x69"
        !          52266:             "\xe0\x78\xe0\x97\xe0\x97\xe0\x97\xe0\xa6\xe0\xa6\xe0"
        !          52267:             "\xbf\x15\xe0\xc4\xe0\xd5" }  },
        !          52268:       /* --- pixel bitmap for cmex450 char#123 (noname) --- */
        !          52269:       { 123,62372,                      /* character number, location */
        !          52270:           8,-1,  -14,-1,      /* topleft row,col, and botleft row,col */
        !          52271:           { 31,   22, 2,44, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          52272:             "\x00\x07\x18\x0b\x14\x0d\x12\x10\x0f\x11\x0e\x13\x0c"
        !          52273:             "\x14\x0b\x16\x10\x10\x13\x0d\x15\x0b\x16\x0a\x17\x09"
        !          52274:             "\x18\x08\x18\x07\x19\x07\x19\x07\x19\x06\x1a\x06\xff"
        !          52275:             "\x01\x1a\x05\x1b\x04" }  },
        !          52276:       /* --- pixel bitmap for cmex450 char#124 (noname) --- */
        !          52277:       { 124,62981,                      /* character number, location */
        !          52278:          22,-2,    0,-2,      /* topleft row,col, and botleft row,col */
        !          52279:           { 31,   22, 2,44, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          52280:             "\x00\x04\x1b\xff\x01\x05\x1a\x06\x1a\x06\x19\x07\x19"
        !          52281:             "\x07\x19\x07\x18\x08\x18\x09\x17\x0a\x16\x0b\x15\x0d"
        !          52282:             "\x13\x10\x10\x16\x0b\x14\x0c\x13\x0e\x11\x0f\x10\x12"
        !          52283:             "\x0d\x14\x0b\x18\x07" }  },
        !          52284:       /* --- pixel bitmap for cmex450 char#125 (noname) --- */
        !          52285:       { 125,63591,                      /* character number, location */
        !          52286:          22,-1,    0,-1,      /* topleft row,col, and botleft row,col */
        !          52287:           { 31,   22, 3,89, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          52288:             "\xe0\xd4\xf1\xe0\xc5\xe0\xb6\xe0\xa6\xe0\xa7\xe0\x97"
        !          52289:             "\xe0\x97\xe0\x98\xe0\x79\xe0\x6a\xe0\x5b\xe0\x3d\xee"
        !          52290:             "\x02\x8e\x08\x9e\x06\xbe\x05\xce\x03\xee\x02\xe0\x1d"
        !          52291:             "\xe0\x4b\xe0\x67\xe0\xa7" }  },
        !          52292:       /* --- pixel bitmap for cmex450 char#126 (noname) --- */
        !          52293:       { 126,83502,                      /* character number, location */
        !          52294:          -1, 4,  -37, 4,      /* topleft row,col, and botleft row,col */
        !          52295:           { 40,   36, 3,147, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          52296:             "\xf1\xe0\x52\xe0\x50\xf1\xe0\x44\xe0\x40\xe0\x36\xe0"
        !          52297:             "\xe0\x53\x23\xe0\xe0\x34\x24\xe0\xe0\x23\x43\xe0\xe0"
        !          52298:             "\x13\x63\xe0\xd3\x83\xe0\xb3\xa3\xe0\x94\xa4\xe0\x75"
        !          52299:             "\xa5\xe0\x47\xa7\xe0\x14\x13\xa3\x14\xc5\x23\xa3\x25"
        !          52300:             "\x86\x33\xa3\x36\x46\x53\xa3\x56\x15\x73\xa3\x78\x93"
        !          52301:             "\xa3\x94\xb3\xa3\xb1\xfe\xc3\xa3\xc5" }  },
        !          52302:       /* --- pixel bitmap for cmex450 char#127 (noname) --- */
        !          52303:       { 127,84716,                      /* character number, location */
        !          52304:           0, 4,  -36, 4,      /* topleft row,col, and botleft row,col */
        !          52305:           { 40,   36, 3,147, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          52306:             "\xfe\xc3\xa3\xc1\xb3\xa3\xb4\x93\xa3\x98\x73\xa3\x75"
        !          52307:             "\x16\x53\xa3\x56\x46\x33\xa3\x36\x85\x23\xa3\x25\xc4"
        !          52308:             "\x13\xa3\x14\xe0\x17\xa7\xe0\x45\xa5\xe0\x74\xa4\xe0"
        !          52309:             "\x93\xa3\xe0\xb3\x83\xe0\xd3\x63\xe0\xe0\x13\x43\xe0"
        !          52310:             "\xe0\x24\x24\xe0\xe0\x33\x23\xe0\xe0\x56\xe0\x30\xf1"
        !          52311:             "\xe0\x44\xe0\x40\xf1\xe0\x52\xe0\x55" }  },
        !          52312:       /* --- trailer  --- */
        !          52313:       { -99, -999,  0,0,0,0, { 0,0,0,0, (pixbyte *)"\0" }  }
        !          52314:    } ;
        !          52315: 
        !          52316: 
        !          52317: /* --- size=10 for .600gf ---
        !          52318:  * mf '\mode=preview; mag=magstep(-8.04680493988053835544); input cmex10'
        !          52319:  * --------------------------------------------------------------------- */
        !          52320: /* --- fontdef for cmex600 --- */
        !          52321: static	chardef  cmex600[] =
        !          52322:    {
        !          52323:       /* --- pixel bitmap for cmex600 char#0 \big( --- */
        !          52324:       {   0,  661,                      /* character number, location */
        !          52325:           3,13,  -95,13,      /* topleft row,col, and botleft row,col */
        !          52326:           { 21,   98, 3,248, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          52327:             "\xe0\x52\xe0\x43\xe0\x33\xe0\x33\xe0\x33\xe0\x34\xe0"
        !          52328:             "\x24\x40\xf1\xc4\x50\xb4\xe0\x24\xe0\x25\xe0\x24\xe0"
        !          52329:             "\x25\xe0\x24\xe0\x25\xe0\x24\xa0\xf1\x65\xa0\xf2\x55"
        !          52330:             "\xb0\xf1\x45\xc0\xf1\x36\xc0\xf1\x35\xd0\xf2\x26\xd0"
        !          52331:             "\x25\xe0\xf5\x16\xe0\x15\xe0\x1f\xe6\xe0\x1f\x46\xe0"
        !          52332:             "\x10\x15\xe0\x10\xf5\x16\xe0\x25\xe0\xf2\x26\xd0\xf1"
        !          52333:             "\x35\xd0\xf1\x36\xc0\xf1\x45\xc0\xf2\x55\xb0\xf1\x65"
        !          52334:             "\xa0\x74\xe0\x35\xe0\x34\xe0\x35\xe0\x34\xe0\x35\xe0"
        !          52335:             "\x34\xe0\x44\x60\xf1\xc4\x50\xd4\xe0\x44\xe0\x43\xe0"
        !          52336:             "\x53\xe0\x53\xe0\x53\xe0\x52" }  },
        !          52337:       /* --- pixel bitmap for cmex600 char#1 \big) --- */
        !          52338:       {   1, 8003,                      /* character number, location */
        !          52339:           3, 4,  -95, 4,      /* topleft row,col, and botleft row,col */
        !          52340:           { 21,   98, 3,249, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          52341:             "\x02\xe0\x53\xe0\x53\xe0\x53\xe0\x53\xe0\x44\xe0\x44"
        !          52342:             "\xd0\xf1\x54\xc0\x64\xe0\x44\xe0\x35\xe0\x34\xe0\x35"
        !          52343:             "\xe0\x34\xe0\x35\xe0\x34\x70\xf1\xa5\x60\xf2\xb5\x50"
        !          52344:             "\xf1\xc5\x40\xf1\xc6\x30\xf1\xd5\x30\xf2\xd6\x20\xe5"
        !          52345:             "\x20\xf5\xe6\x10\xe0\x15\x10\xfe\xe0\x16\xf4\xe0\x16"
        !          52346:             "\xe0\x15\x10\xf5\xe6\x10\xe5\x20\xf2\xd6\x20\xf1\xd5"
        !          52347:             "\x30\xf1\xc6\x30\xf1\xc5\x40\xf2\xb5\x50\xf1\xa5\x60"
        !          52348:             "\xa4\xe0\x25\xe0\x24\xe0\x25\xe0\x24\xe0\x25\xe0\x24"
        !          52349:             "\xe0\x24\xb0\xf1\x54\xc0\x44\xe0\x24\xe0\x33\xe0\x33"
        !          52350:             "\xe0\x33\xe0\x33\xe0\x42\xe0\x50" }  },
        !          52351:       /* --- pixel bitmap for cmex600 char#2 \big[ --- */
        !          52352:       {   2,15435,                      /* character number, location */
        !          52353:           3,17,  -95,17,      /* topleft row,col, and botleft row,col */
        !          52354:           { 17,   98, 2,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          52355:             "\xff\x03\x00\x11\x00\xff\x59\x04\x0d\xff\x03\x11" }  },
        !          52356:       /* --- pixel bitmap for cmex600 char#3 \big] --- */
        !          52357:       {   3,22882,                      /* character number, location */
        !          52358:           3, 2,  -95, 2,      /* topleft row,col, and botleft row,col */
        !          52359:           { 16,   98, 2,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          52360:             "\xff\x03\x00\x10\xff\x59\x0c\x04\x00\xff\x03\x10" }  },
        !          52361:       /* --- pixel bitmap for cmex600 char#4 (noname) --- */
        !          52362:       {   4,30270,                      /* character number, location */
        !          52363:           3,16,  -95,16,      /* topleft row,col, and botleft row,col */
        !          52364:           { 22,   98, 2, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          52365:             "\xff\x5d\x00\x04\x12\xff\x03\x16" }  },
        !          52366:       /* --- pixel bitmap for cmex600 char#5 (noname) --- */
        !          52367:       {   5,34929,                      /* character number, location */
        !          52368:           3, 1,  -95, 1,      /* topleft row,col, and botleft row,col */
        !          52369:           { 22,   98, 2, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          52370:             "\xff\x5d\x12\x04\x00\xff\x03\x16" }  },
        !          52371:       /* --- pixel bitmap for cmex600 char#6 (noname) --- */
        !          52372:       {   6,39538,                      /* character number, location */
        !          52373:           3,16,  -95,16,      /* topleft row,col, and botleft row,col */
        !          52374:           { 22,   98, 2, 9, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          52375:             "\xff\x03\x00\x16\x00\xff\x5d\x04\x12" }  },
        !          52376:       /* --- pixel bitmap for cmex600 char#7 (noname) --- */
        !          52377:       {   7,44205,                      /* character number, location */
        !          52378:           3, 1,  -95, 1,      /* topleft row,col, and botleft row,col */
        !          52379:           { 22,   98, 2, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          52380:             "\xff\x03\x00\x16\xff\x5d\x12\x04" }  },
        !          52381:       /* --- pixel bitmap for cmex600 char#8 \big{ --- */
        !          52382:       {   8,48915,                      /* character number, location */
        !          52383:           3, 9,  -95, 9,      /* topleft row,col, and botleft row,col */
        !          52384:           { 30,   98, 3,184, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          52385:             "\xe0\xd3\xe0\xa6\xe0\x77\xe0\x76\xe0\x87\xe0\x86\xe0"
        !          52386:             "\x96\xe0\x96\xa0\xf1\xd6\xb0\xc7\xb0\xfe\xc6\xc0\xfc"
        !          52387:             "\xc6\xc0\xb7\xc0\xf1\xb6\xd0\xa6\xe0\x96\xe0\x96\xe0"
        !          52388:             "\x87\xe0\x86\xe0\x77\xe0\x7f\x16\xe0\xa0\x27\xe0\xc6"
        !          52389:             "\xe0\xb7\xe0\xb6\xe0\xb6\xe0\xb6\xe0\xf1\xb6\xd0\xb7"
        !          52390:             "\xc0\xfe\xc6\xc0\xfc\xc6\xc0\xc7\xb0\xf1\xd6\xb0\xe6"
        !          52391:             "\xe0\xb6\xe0\xb6\xe0\xb7\xe0\xb6\xe0\xc7\xe0\xc6\xe0"
        !          52392:             "\xd3" }  },
        !          52393:       /* --- pixel bitmap for cmex600 char#9 \big} --- */
        !          52394:       {   9,58098,                      /* character number, location */
        !          52395:           3, 9,  -95, 9,      /* topleft row,col, and botleft row,col */
        !          52396:           { 30,   98, 3,185, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          52397:             "\x03\xe0\xd6\xe0\xc7\xe0\xc6\xe0\xb7\xe0\xb6\xe0\xb6"
        !          52398:             "\xe0\xb6\xe0\xf1\xb6\xd0\xb7\xc0\xfe\xc6\xc0\xfc\xc6"
        !          52399:             "\xc0\xc7\xb0\xf1\xd6\xb0\xe6\xe0\xb6\xe0\xb6\xe0\xb7"
        !          52400:             "\xe0\xb6\xe0\xc7\x20\xf1\xe0\xa6\xe0\x77\xe0\x76\xe0"
        !          52401:             "\x87\xe0\x86\xe0\x96\xe0\x96\xa0\xf1\xd6\xb0\xc7\xb0"
        !          52402:             "\xfe\xc6\xc0\xfc\xc6\xc0\xb7\xc0\xf1\xb6\xd0\xa6\xe0"
        !          52403:             "\x96\xe0\x96\xe0\x87\xe0\x86\xe0\x77\xe0\x76\xe0\xa3"
        !          52404:             "\xe0\xd0" }  },
        !          52405:       /* --- pixel bitmap for cmex600 char#10 \big< --- */
        !          52406:       {  10,68600,                      /* character number, location */
        !          52407:           3, 8,  -95, 8,      /* topleft row,col, and botleft row,col */
        !          52408:           { 25,   98, 3,359, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          52409:             "\xe0\x82\xe0\x84\xf1\xe0\x65\xf1\xe0\x55\x10\xe0\x54"
        !          52410:             "\x20\xf1\xe0\x45\x20\xf1\xe0\x35\x30\xf1\xe0\x25\x40"
        !          52411:             "\xf1\xe0\x15\x50\xe0\x14\x60\xf1\xe5\x60\xf1\xd5\x70"
        !          52412:             "\xf1\xc5\x80\xf1\xb5\x90\xf1\xa5\xa0\xa4\xb0\xf1\x95"
        !          52413:             "\xb0\xf1\x85\xc0\xf1\x75\xd0\xf1\x65\xe0\x64\xe0\x10"
        !          52414:             "\xf1\x55\xe0\x10\xf1\x45\xe0\x20\xf1\x35\xe0\x30\xf1"
        !          52415:             "\x25\xe0\x40\x24\xe0\x50\xf1\x15\xe0\x5f\x35\xe0\x60"
        !          52416:             "\xf1\x15\xe0\x50\x24\xe0\x50\xf1\x25\xe0\x40\xf1\x35"
        !          52417:             "\xe0\x30\xf1\x45\xe0\x20\xf1\x55\xe0\x10\x64\xe0\x10"
        !          52418:             "\xf1\x65\xe0\xf1\x75\xd0\xf1\x85\xc0\xf1\x95\xb0\xa4"
        !          52419:             "\xb0\xf1\xa5\xa0\xf1\xb5\x90\xf1\xc5\x80\xf1\xd5\x70"
        !          52420:             "\xf1\xe5\x60\xe0\x14\x60\xf1\xe0\x15\x50\xf1\xe0\x25"
        !          52421:             "\x40\xf1\xe0\x35\x30\xf1\xe0\x45\x20\xe0\x54\x20\xf1"
        !          52422:             "\xe0\x55\x10\xf1\xe0\x65\xe0\x74\xe0\x82\x10" }  },
        !          52423:       /* --- pixel bitmap for cmex600 char#11 \big> --- */
        !          52424:       {  11,72537,                      /* character number, location */
        !          52425:           3, 6,  -95, 6,      /* topleft row,col, and botleft row,col */
        !          52426:           { 25,   98, 3,359, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          52427:             "\x12\xe0\x84\xe0\x7f\x15\xe0\x60\xf1\x15\xe0\x50\x24"
        !          52428:             "\xe0\x50\xf1\x25\xe0\x40\xf1\x35\xe0\x30\xf1\x45\xe0"
        !          52429:             "\x20\xf1\x55\xe0\x10\x64\xe0\x10\xf1\x65\xe0\xf1\x75"
        !          52430:             "\xd0\xf1\x85\xc0\xf1\x95\xb0\xf1\xa5\xa0\xb4\xa0\xf1"
        !          52431:             "\xb5\x90\xf1\xc5\x80\xf1\xd5\x70\xf1\xe5\x60\xe0\x14"
        !          52432:             "\x60\xf1\xe0\x15\x50\xf1\xe0\x25\x40\xf1\xe0\x35\x30"
        !          52433:             "\xf1\xe0\x45\x20\xe0\x54\x20\xf1\xe0\x55\x10\xf3\xe0"
        !          52434:             "\x65\xf1\xe0\x55\x10\xe0\x54\x20\xf1\xe0\x45\x20\xf1"
        !          52435:             "\xe0\x35\x30\xf1\xe0\x25\x40\xf1\xe0\x15\x50\xe0\x14"
        !          52436:             "\x60\xf1\xe5\x60\xf1\xd5\x70\xf1\xc5\x80\xf1\xb5\x90"
        !          52437:             "\xb4\xa0\xf1\xa5\xa0\xf1\x95\xb0\xf1\x85\xc0\xf1\x75"
        !          52438:             "\xd0\xf1\x65\xe0\x64\xe0\x10\xf1\x55\xe0\x10\xf1\x45"
        !          52439:             "\xe0\x20\xf1\x35\xe0\x30\xf1\x25\xe0\x40\x24\xe0\x50"
        !          52440:             "\xf1\x15\xe0\x5f\x15\xe0\x64\xe0\x82\xe0\x80" }  },
        !          52441:       /* --- pixel bitmap for cmex600 char#12 (noname) --- */
        !          52442:       {  12,84819,                      /* character number, location */
        !          52443:           2,12,  -52,12,      /* topleft row,col, and botleft row,col */
        !          52444:           {  4,   54, 2, 4, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          52445:             "\xff\x35\x00\x04" }  },
        !          52446:       /* --- pixel bitmap for cmex600 char#13 (noname) --- */
        !          52447:       {  13,85520,                      /* character number, location */
        !          52448:           2,12,  -52,12,      /* topleft row,col, and botleft row,col */
        !          52449:           { 22,   54, 2, 6, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          52450:             "\xff\x35\x00\x04\x0e\x04" }  },
        !          52451:       /* --- pixel bitmap for cmex600 char#14 (noname) --- */
        !          52452:       {  14,76486,                      /* character number, location */
        !          52453:           3, 5,  -95, 5,      /* topleft row,col, and botleft row,col */
        !          52454:           { 38,   98, 3,509, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          52455:             "\xf2\xe0\xe0\x64\xe0\xe0\x55\xf1\xe0\xe0\x54\x10\xe0"
        !          52456:             "\xe0\x45\xe0\xe0\x54\xe0\xe0\x55\x20\xf1\xe0\xe0\x34"
        !          52457:             "\x30\xe0\xe0\x25\x30\xf1\xe0\xe0\x24\x40\xe0\xe0\x15"
        !          52458:             "\x40\xf1\xe0\xe0\x14\x50\xe0\xe5\xe0\xe0\x54\xe0\xe0"
        !          52459:             "\x55\x60\xf1\xe0\xd4\x70\xe0\xc5\x70\xf1\xe0\xc4\x80"
        !          52460:             "\xe0\xb5\x80\xf1\xe0\xb4\x90\xe0\xa5\x90\xf1\xe0\xa4"
        !          52461:             "\xa0\xe0\x95\xe0\xe0\x54\xe0\xe0\x55\xb0\xf1\xe0\x84"
        !          52462:             "\xc0\xe0\x75\xc0\xf1\xe0\x74\xd0\xe0\x65\xd0\xf1\xe0"
        !          52463:             "\x64\xe0\xe0\x55\xe0\xe0\x54\xe0\xe0\x55\xe0\x10\xf1"
        !          52464:             "\xe0\x44\xe0\x20\xe0\x35\xe0\x20\xf1\xe0\x34\xe0\x30"
        !          52465:             "\xe0\x25\xe0\x30\xf1\xe0\x24\xe0\x40\xe0\x15\xe0\xe0"
        !          52466:             "\x54\xe0\xe0\x55\xe0\x50\xf1\xe4\xe0\x60\xd5\xe0\x60"
        !          52467:             "\xf1\xd4\xe0\x70\xc5\xe0\x70\xf1\xc4\xe0\x80\xb5\xe0"
        !          52468:             "\xe0\x54\xe0\xe0\x55\xe0\x90\xf1\xa4\xe0\xa0\x95\xe0"
        !          52469:             "\xa0\xf1\x94\xe0\xb0\x85\xe0\xb0\xf1\x84\xe0\xc0\x75"
        !          52470:             "\xe0\xc0\xf1\x74\xe0\xd0\x65\xe0\xe0\x54\xe0\xe0\x55"
        !          52471:             "\xe0\xe0\xf1\x54\xe0\xe0\x10\x45\xe0\xe0\x10\xf1\x44"
        !          52472:             "\xe0\xe0\x20\x35\xe0\xe0\x20\xf1\x34\xe0\xe0\x30\x25"
        !          52473:             "\xe0\xe0\x54\xe0\xe0\x55\xe0\xe0\x40\xf1\x14\xe0\xe0"
        !          52474:             "\x55\xe0\xe0\x5f\x24\xe0\xe0\x60" }  },
        !          52475:       /* --- pixel bitmap for cmex600 char#15 (noname) --- */
        !          52476:       {  15,80698,                      /* character number, location */
        !          52477:           3, 5,  -95, 5,      /* topleft row,col, and botleft row,col */
        !          52478:           { 38,   98, 3,508, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          52479:             "\xf2\x04\xe0\xe0\x65\xe0\xe0\x50\xf1\x14\xe0\xe0\x50"
        !          52480:             "\x15\xe0\xe0\x64\xe0\xe0\x65\xe0\xe0\x30\xf1\x34\xe0"
        !          52481:             "\xe0\x30\x35\xe0\xe0\x20\xf1\x44\xe0\xe0\x20\x45\xe0"
        !          52482:             "\xe0\x10\xf1\x54\xe0\xe0\x10\x55\xe0\xe0\x64\xe0\xe0"
        !          52483:             "\x65\xe0\xd0\xf1\x74\xe0\xd0\x75\xe0\xc0\xf1\x84\xe0"
        !          52484:             "\xc0\x85\xe0\xb0\xf1\x94\xe0\xb0\x95\xe0\xa0\xf1\xa4"
        !          52485:             "\xe0\xa0\xa5\xe0\xe0\x64\xe0\xe0\x65\xe0\x80\xf1\xc4"
        !          52486:             "\xe0\x80\xc5\xe0\x70\xf1\xd4\xe0\x70\xd5\xe0\x60\xf1"
        !          52487:             "\xe4\xe0\x60\xe5\xe0\xe0\x64\xe0\xe0\x65\xe0\x40\xf1"
        !          52488:             "\xe0\x24\xe0\x40\xe0\x25\xe0\x30\xf1\xe0\x34\xe0\x30"
        !          52489:             "\xe0\x35\xe0\x20\xf1\xe0\x44\xe0\x20\xe0\x45\xe0\xe0"
        !          52490:             "\x64\xe0\xe0\x65\xe0\xf1\xe0\x64\xe0\xe0\x65\xd0\xf1"
        !          52491:             "\xe0\x74\xd0\xe0\x75\xc0\xf1\xe0\x84\xc0\xe0\x85\xe0"
        !          52492:             "\xe0\x64\xe0\xe0\x65\xa0\xf1\xe0\xa4\xa0\xe0\xa5\x90"
        !          52493:             "\xf1\xe0\xb4\x90\xe0\xb5\x80\xf1\xe0\xc4\x80\xe0\xc5"
        !          52494:             "\x70\xf1\xe0\xd4\x70\xe0\xd5\xe0\xe0\x64\xe0\xe0\x65"
        !          52495:             "\x50\xf1\xe0\xe0\x14\x50\xe0\xe0\x15\x40\xf1\xe0\xe0"
        !          52496:             "\x24\x40\xe0\xe0\x25\x30\xf1\xe0\xe0\x34\x30\xe0\xe0"
        !          52497:             "\x35\xe0\xe0\x64\xe0\xe0\x65\x10\xf1\xe0\xe0\x54\x10"
        !          52498:             "\xe0\xe0\x55\xf2\xe0\xe0\x64" }  },
        !          52499:       /* --- pixel bitmap for cmex600 char#16 \Big( --- */
        !          52500:       {  16, 1542,                      /* character number, location */
        !          52501:           3,15,  -145,15,     /* topleft row,col, and botleft row,col */
        !          52502:           { 32,  148, 3,412, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          52503:             "\xe0\xe4\xe0\xd5\xe0\xc5\xe0\xc5\xe0\xc5\xe0\xc5\xe0"
        !          52504:             "\xc5\xe0\xc5\xe0\xc5\xe0\xc6\xe0\xc5\xe0\xc5\xe0\xc5"
        !          52505:             "\xe0\xc6\xe0\xc5\xe0\xc5\xe0\xc6\xe0\xc5\xe0\xc6\xe0"
        !          52506:             "\xc5\xe0\xc6\xe0\xf1\xb6\xe0\x10\xf1\xa6\xe0\x20\xa5"
        !          52507:             "\xe0\xc6\xe0\xc5\xe0\xc6\xe0\xc5\xe0\x50\xf1\x76\xe0"
        !          52508:             "\x50\x75\xe0\x60\xf1\x66\xe0\x60\x65\xe0\x70\xf2\x56"
        !          52509:             "\xe0\x70\xf2\x46\xe0\x80\x45\xe0\x90\xf3\x36\xe0\x90"
        !          52510:             "\xf5\x26\xe0\xa0\xf7\x16\xe0\xb7\xe0\xbf\xe6\xe0\xcf"
        !          52511:             "\x86\xe0\xc7\xe0\xb0\xf7\x16\xe0\xb0\xf5\x26\xe0\xa0"
        !          52512:             "\xf3\x36\xe0\x90\x45\xe0\x90\xf2\x46\xe0\x80\xf2\x56"
        !          52513:             "\xe0\x70\x65\xe0\x70\xf1\x66\xe0\x60\x75\xe0\x60\xf1"
        !          52514:             "\x76\xe0\x50\x85\xe0\xd6\xe0\xd5\xe0\xd6\xe0\xd5\xe0"
        !          52515:             "\x30\xf1\xa6\xe0\x20\xf1\xb6\xe0\x10\xc6\xe0\xd5\xe0"
        !          52516:             "\xd6\xe0\xd5\xe0\xd6\xe0\xd5\xe0\xe5\xe0\xd6\xe0\xd5"
        !          52517:             "\xe0\xe5\xe0\xe5\xe0\xd6\xe0\xd5\xe0\xe5\xe0\xe5\xe0"
        !          52518:             "\xe5\xe0\xe5\xe0\xe5\xe0\xe5\xe0\xe5\xe0\xe4" }  },
        !          52519:       /* --- pixel bitmap for cmex600 char#17 \Big) --- */
        !          52520:       {  17, 8885,                      /* character number, location */
        !          52521:           3, 3,  -145, 3,     /* topleft row,col, and botleft row,col */
        !          52522:           { 32,  148, 3,413, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          52523:             "\x04\xe0\xe5\xe0\xe5\xe0\xe5\xe0\xe5\xe0\xe5\xe0\xe5"
        !          52524:             "\xe0\xe5\xe0\xe5\xe0\xd6\xe0\xd5\xe0\xe5\xe0\xe5\xe0"
        !          52525:             "\xd6\xe0\xd5\xe0\xe5\xe0\xd6\xe0\xd5\xe0\xd6\xe0\xd5"
        !          52526:             "\xe0\xd6\xc0\xf1\xe0\x16\xb0\xf1\xe0\x26\xa0\xe0\x35"
        !          52527:             "\xe0\xd6\xe0\xd5\xe0\xd6\xe0\xd5\x80\xf1\xe0\x56\x70"
        !          52528:             "\xe0\x65\x70\xf1\xe0\x66\x60\xe0\x75\x60\xf2\xe0\x76"
        !          52529:             "\x50\xf2\xe0\x86\x40\xe0\x95\x40\xf3\xe0\x96\x30\xf5"
        !          52530:             "\xe0\xa6\x20\xf7\xe0\xb6\x10\xe0\xb7\xfe\xe0\xc6\xf8"
        !          52531:             "\xe0\xc6\xe0\xb7\xf7\xe0\xb6\x10\xf5\xe0\xa6\x20\xf3"
        !          52532:             "\xe0\x96\x30\xe0\x95\x40\xf2\xe0\x86\x40\xf2\xe0\x76"
        !          52533:             "\x50\xe0\x75\x60\xf1\xe0\x66\x60\xe0\x65\x70\xf1\xe0"
        !          52534:             "\x56\x70\xe0\x55\xe0\xc6\xe0\xc5\xe0\xc6\xe0\xc5\xa0"
        !          52535:             "\xf1\xe0\x26\xa0\xf1\xe0\x16\xb0\xe6\xe0\xc5\xe0\xc6"
        !          52536:             "\xe0\xc5\xe0\xc6\xe0\xc5\xe0\xc5\xe0\xc6\xe0\xc5\xe0"
        !          52537:             "\xc5\xe0\xc5\xe0\xc6\xe0\xc5\xe0\xc5\xe0\xc5\xe0\xc5"
        !          52538:             "\xe0\xc5\xe0\xc5\xe0\xc5\xe0\xc5\xe0\xd4\xe0\xe6" }  },
        !          52539:       /* --- pixel bitmap for cmex600 char#18 \bigg( --- */
        !          52540:       {  18, 2602,                      /* character number, location */
        !          52541:           3,18,  -195,18,     /* topleft row,col, and botleft row,col */
        !          52542:           { 40,  198, 3,732, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          52543:             "\xe0\xe0\x84\xe0\xe0\x75\xe0\xe0\x65\xe0\xe0\x65\xe0"
        !          52544:             "\xe0\x65\xe0\xe0\x65\xe0\xe0\x65\xe0\xe0\x65\xe0\xe0"
        !          52545:             "\x66\xe0\xe0\x56\xe0\xe0\x65\xe0\xe0\x65\xe0\xe0\x66"
        !          52546:             "\xe0\xe0\x56\xe0\xe0\x56\xe0\xe0\x65\xe0\xe0\x66\xe0"
        !          52547:             "\xe0\x56\xe0\xe0\x65\xe0\xe0\x66\xe0\xf1\xe0\x56\xe0"
        !          52548:             "\x10\xe0\x46\xe0\xe0\x65\xe0\xe0\x66\xe0\x30\xf1\xe0"
        !          52549:             "\x26\xe0\x40\xf1\xe0\x16\xe0\x50\xf1\xe6\xe0\x60\xf1"
        !          52550:             "\xd6\xe0\x70\xc7\xe0\x70\xf1\xc6\xe0\x80\xf1\xb6\xe0"
        !          52551:             "\x90\xa7\xe0\x90\xf1\xa6\xe0\xa0\x97\xe0\xe0\x56\xe0"
        !          52552:             "\xb0\xf1\x87\xe0\xb0\x86\xe0\xc0\xf1\x77\xe0\xc0\x76"
        !          52553:             "\xe0\xd0\xf2\x67\xe0\xd0\x66\xe0\xe0\xf2\x57\xe0\xe0"
        !          52554:             "\x56\xe0\xe0\x10\xf2\x47\xe0\xe0\x10\xf1\x46\xe0\xe0"
        !          52555:             "\x20\xf3\x37\xe0\xe0\x20\x36\xe0\xe0\x30\xf5\x27\xe0"
        !          52556:             "\xe0\x30\x26\xe0\xe0\x40\xf9\x17\xe0\xe0\x4f\xe7\xe0"
        !          52557:             "\xe0\x5f\xe7\xe0\xe0\x50\xf9\x17\xe0\xe0\x40\x26\xe0"
        !          52558:             "\xe0\x40\xf5\x27\xe0\xe0\x30\x36\xe0\xe0\x30\xf3\x37"
        !          52559:             "\xe0\xe0\x20\xf1\x46\xe0\xe0\x20\xf2\x47\xe0\xe0\x10"
        !          52560:             "\x56\xe0\xe0\x10\xf2\x57\xe0\xe0\x66\xe0\xe0\xf2\x67"
        !          52561:             "\xe0\xd0\x76\xe0\xd0\xf1\x77\xe0\xc0\x86\xe0\xc0\xf1"
        !          52562:             "\x87\xe0\xb0\x96\xe0\xe0\x67\xe0\xa0\xf1\xa6\xe0\xa0"
        !          52563:             "\xa7\xe0\x90\xf1\xb6\xe0\x90\xf1\xc6\xe0\x80\xc7\xe0"
        !          52564:             "\x70\xf1\xd6\xe0\x70\xf1\xe6\xe0\x60\xf1\xe0\x16\xe0"
        !          52565:             "\x50\xf1\xe0\x26\xe0\x40\xe0\x36\xe0\xe0\x75\xe0\xe0"
        !          52566:             "\x76\xe0\x20\xf1\xe0\x56\xe0\x10\xe0\x66\xe0\xe0\x75"
        !          52567:             "\xe0\xe0\x76\xe0\xe0\x76\xe0\xe0\x75\xe0\xe0\x76\xe0"
        !          52568:             "\xe0\x76\xe0\xe0\x76\xe0\xe0\x75\xe0\xe0\x85\xe0\xe0"
        !          52569:             "\x76\xe0\xe0\x76\xe0\xe0\x75\xe0\xe0\x85\xe0\xe0\x85"
        !          52570:             "\xe0\xe0\x85\xe0\xe0\x85\xe0\xe0\x85\xe0\xe0\x85\xe0"
        !          52571:             "\xe0\x84" }  },
        !          52572:       /* --- pixel bitmap for cmex600 char#19 \bigg) --- */
        !          52573:       {  19, 9946,                      /* character number, location */
        !          52574:           3, 3,  -195, 3,     /* topleft row,col, and botleft row,col */
        !          52575:           { 40,  198, 3,733, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          52576:             "\x04\xe0\xe0\x85\xe0\xe0\x85\xe0\xe0\x85\xe0\xe0\x85"
        !          52577:             "\xe0\xe0\x85\xe0\xe0\x85\xe0\xe0\x85\xe0\xe0\x76\xe0"
        !          52578:             "\xe0\x76\xe0\xe0\x75\xe0\xe0\x85\xe0\xe0\x76\xe0\xe0"
        !          52579:             "\x76\xe0\xe0\x76\xe0\xe0\x75\xe0\xe0\x76\xe0\xe0\x76"
        !          52580:             "\xe0\xe0\x75\xe0\xe0\x76\xe0\x60\xf1\xe0\x16\xe0\x50"
        !          52581:             "\xe0\x26\xe0\xe0\x75\xe0\xe0\x76\xe0\x30\xf1\xe0\x46"
        !          52582:             "\xe0\x20\xf1\xe0\x56\xe0\x10\xf1\xe0\x66\xe0\xf1\xe0"
        !          52583:             "\x76\xd0\xe0\x77\xc0\xf1\xe0\x86\xc0\xf1\xe0\x96\xb0"
        !          52584:             "\xe0\x97\xa0\xf1\xe0\xa6\xa0\xe0\xa7\xe0\xe0\x66\x90"
        !          52585:             "\xf1\xe0\xb7\x80\xe0\xc6\x80\xf1\xe0\xc7\x70\xe0\xd6"
        !          52586:             "\x70\xf2\xe0\xd7\x60\xe0\xe6\x60\xf2\xe0\xe7\x50\xe0"
        !          52587:             "\xe0\x16\x50\xf2\xe0\xe0\x17\x40\xf1\xe0\xe0\x26\x40"
        !          52588:             "\xf3\xe0\xe0\x27\x30\xe0\xe0\x36\x30\xf5\xe0\xe0\x37"
        !          52589:             "\x20\xe0\xe0\x46\x20\xf9\xe0\xe0\x47\x10\xfe\xe0\xe0"
        !          52590:             "\x57\xfe\xe0\xe0\x57\xf9\xe0\xe0\x47\x10\xe0\xe0\x46"
        !          52591:             "\x20\xf5\xe0\xe0\x37\x20\xe0\xe0\x36\x30\xf3\xe0\xe0"
        !          52592:             "\x27\x30\xf1\xe0\xe0\x26\x40\xf2\xe0\xe0\x17\x40\xe0"
        !          52593:             "\xe0\x16\x50\xf2\xe0\xe7\x50\xe0\xe6\x60\xf2\xe0\xd7"
        !          52594:             "\x60\xe0\xd6\x70\xf1\xe0\xc7\x70\xe0\xc6\x80\xf1\xe0"
        !          52595:             "\xb7\x80\xe0\xb6\xe0\xe0\x57\x90\xf1\xe0\xa6\xa0\xe0"
        !          52596:             "\x97\xa0\xf1\xe0\x96\xb0\xf1\xe0\x86\xc0\xe0\x77\xc0"
        !          52597:             "\xf1\xe0\x76\xd0\xf1\xe0\x66\xe0\xf1\xe0\x56\xe0\x10"
        !          52598:             "\xf1\xe0\x46\xe0\x20\xe0\x36\xe0\xe0\x65\xe0\xe0\x66"
        !          52599:             "\xe0\x40\xf1\xe0\x16\xe0\x50\xe6\xe0\xe0\x65\xe0\xe0"
        !          52600:             "\x66\xe0\xe0\x56\xe0\xe0\x65\xe0\xe0\x66\xe0\xe0\x56"
        !          52601:             "\xe0\xe0\x56\xe0\xe0\x65\xe0\xe0\x65\xe0\xe0\x66\xe0"
        !          52602:             "\xe0\x56\xe0\xe0\x65\xe0\xe0\x65\xe0\xe0\x65\xe0\xe0"
        !          52603:             "\x65\xe0\xe0\x65\xe0\xe0\x65\xe0\xe0\x65\xe0\xe0\x74"
        !          52604:             "\xe0\xe0\x86" }  },
        !          52605:       /* --- pixel bitmap for cmex600 char#20 \bigg[ --- */
        !          52606:       {  20,17494,                      /* character number, location */
        !          52607:           3,21,  -195,21,     /* topleft row,col, and botleft row,col */
        !          52608:           { 22,  198, 2,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          52609:             "\xff\x04\x00\x16\x00\xff\xbb\x05\x11\xff\x04\x16" }  },
        !          52610:       /* --- pixel bitmap for cmex600 char#21 \bigg] --- */
        !          52611:       {  21,24915,                      /* character number, location */
        !          52612:           3, 1,  -195, 1,     /* topleft row,col, and botleft row,col */
        !          52613:           { 22,  198, 2,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          52614:             "\xff\x04\x00\x16\xff\xbb\x11\x05\x00\xff\x04\x16" }  },
        !          52615:       /* --- pixel bitmap for cmex600 char#22 (noname) --- */
        !          52616:       {  22,32393,                      /* character number, location */
        !          52617:           3,21,  -195,21,     /* topleft row,col, and botleft row,col */
        !          52618:           { 26,  198, 2, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          52619:             "\xff\xc0\x00\x05\x15\xff\x04\x1a" }  },
        !          52620:       /* --- pixel bitmap for cmex600 char#23 (noname) --- */
        !          52621:       {  23,37026,                      /* character number, location */
        !          52622:           3, 1,  -195, 1,     /* topleft row,col, and botleft row,col */
        !          52623:           { 26,  198, 2, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          52624:             "\xff\xc0\x15\x05\x00\xff\x04\x1a" }  },
        !          52625:       /* --- pixel bitmap for cmex600 char#24 (noname) --- */
        !          52626:       {  24,41665,                      /* character number, location */
        !          52627:           3,21,  -195,21,     /* topleft row,col, and botleft row,col */
        !          52628:           { 26,  198, 2, 9, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          52629:             "\xff\x04\x00\x1a\x00\xff\xc0\x05\x15" }  },
        !          52630:       /* --- pixel bitmap for cmex600 char#25 (noname) --- */
        !          52631:       {  25,46306,                      /* character number, location */
        !          52632:           3, 1,  -195, 1,     /* topleft row,col, and botleft row,col */
        !          52633:           { 26,  198, 2, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          52634:             "\xff\x04\x00\x1a\xff\xc0\x15\x05" }  },
        !          52635:       /* --- pixel bitmap for cmex600 char#26 \bigg{ --- */
        !          52636:       {  26,51310,                      /* character number, location */
        !          52637:           3,11,  -195,11,     /* topleft row,col, and botleft row,col */
        !          52638:           { 40,  198, 2,212, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          52639:             "\x24\x04\x22\x06\x20\x08\x1e\x0a\x1d\x09\x1d\x09\x1e"
        !          52640:             "\x09\x1e\x09\x1e\x08\x1f\x08\x1f\x08\x20\x07\x20\x08"
        !          52641:             "\x1f\x08\x20\x07\x20\x08\x20\x07\x20\x08\x0e\x00\xff"
        !          52642:             "\x01\x12\x07\x0f\x00\x11\x08\x0f\x00\xff\x38\x11\x07"
        !          52643:             "\x10\x00\x10\x08\x10\x00\xff\x01\x10\x07\x11\x00\x0f"
        !          52644:             "\x08\x11\x00\xff\x01\x0f\x07\x12\x00\xff\x01\x0e\x07"
        !          52645:             "\x13\x00\x0d\x07\x20\x08\x1f\x08\x20\x07\x20\x07\x20"
        !          52646:             "\x07\x20\x07\x1f\x08\x1f\x08\x1f\x07\x1f\x08\x1e\x08"
        !          52647:             "\x20\xff\x01\x06\x22\x08\x22\x08\x22\x07\x22\x08\x21"
        !          52648:             "\x08\x22\x07\x22\x07\x22\x07\x22\x07\x21\x08\x21\x08"
        !          52649:             "\x21\x07\x14\x00\xff\x01\x0e\x07\x13\x00\xff\x01\x0f"
        !          52650:             "\x07\x12\x00\x0f\x08\x11\x00\xff\x01\x10\x07\x11\x00"
        !          52651:             "\x10\x08\x10\x00\xff\x38\x11\x07\x10\x00\x11\x08\x0f"
        !          52652:             "\x00\xff\x01\x12\x07\x0f\x00\x12\x08\x21\x07\x21\x08"
        !          52653:             "\x21\x07\x21\x08\x21\x08\x21\x07\x21\x08\x21\x08\x21"
        !          52654:             "\x08\x21\x09\x20\x09\x20\x09\x21\x09\x20\x0a\x20\x08"
        !          52655:             "\x22\x06\x24\x04" }  },
        !          52656:       /* --- pixel bitmap for cmex600 char#27 \bigg} --- */
        !          52657:       {  27,60495,                      /* character number, location */
        !          52658:           3,11,  -195,11,     /* topleft row,col, and botleft row,col */
        !          52659:           { 40,  198, 2,209, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          52660:             "\x00\x04\x24\x06\x22\x08\x20\x0a\x20\x0a\x20\x09\x20"
        !          52661:             "\x09\x21\x09\x20\x09\x20\x09\x20\x08\x21\x08\x21\x08"
        !          52662:             "\x21\x08\x21\x07\x21\x08\x21\x07\x21\x08\x11\x00\xff"
        !          52663:             "\x01\x10\x07\x11\x00\x10\x08\x10\x00\xff\x38\x11\x07"
        !          52664:             "\x10\x00\x11\x08\x0f\x00\xff\x02\x12\x07\x0f\x00\xff"
        !          52665:             "\x01\x13\x07\x0e\x00\x13\x08\x21\x07\x0d\x00\xff\x01"
        !          52666:             "\x15\x07\x0c\x00\x16\x07\x22\x07\x21\x08\x21\x08\x21"
        !          52667:             "\x08\x21\x08\x22\x07\x22\x08\x21\x08\x22\x08\xff\x01"
        !          52668:             "\x22\x06\x20\x08\x1e\x08\x1f\x08\x1f\x07\x1f\x08\x1f"
        !          52669:             "\x08\x1f\x08\x1f\x08\x20\x07\x20\x07\x0b\x00\xff\x01"
        !          52670:             "\x15\x07\x0c\x00\x14\x07\x20\x08\x0d\x00\xff\x01\x13"
        !          52671:             "\x07\x0e\x00\xff\x02\x12\x07\x0f\x00\x11\x08\x0f\x00"
        !          52672:             "\xff\x38\x11\x07\x10\x00\x10\x08\x10\x00\xff\x01\x10"
        !          52673:             "\x07\x11\x00\x0f\x08\x20\x07\x20\x08\x20\x07\x20\x08"
        !          52674:             "\x1f\x08\x1f\x08\x1f\x08\x1f\x09\x1e\x09\x1e\x09\x1d"
        !          52675:             "\x09\x1e\x09\x1d\x0a\x1c\x0a\x1e\x08\x20\x06\x22\x04"
        !          52676:             "\x24" }  },
        !          52677:       /* --- pixel bitmap for cmex600 char#28 \bigg< --- */
        !          52678:       {  28,70407,                      /* character number, location */
        !          52679:           3,11,  -196,11,     /* topleft row,col, and botleft row,col */
        !          52680:           { 43,  199, 2,565, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          52681:             "\x27\x03\x01\x00\xff\x01\x26\x05\x25\x06\xff\x01\x25"
        !          52682:             "\x05\x01\x00\x24\x06\x25\x05\x25\x06\x02\x00\xff\x01"
        !          52683:             "\x23\x05\x03\x00\x22\x06\x25\x05\x25\x06\x04\x00\xff"
        !          52684:             "\x01\x21\x05\x05\x00\x20\x06\x05\x00\xff\x01\x20\x05"
        !          52685:             "\x06\x00\x1f\x06\x25\x05\x25\x06\x07\x00\xff\x01\x1e"
        !          52686:             "\x05\x08\x00\x1d\x06\x25\x05\x25\x06\x09\x00\xff\x01"
        !          52687:             "\x1c\x05\x0a\x00\x1b\x06\x25\x05\x25\x06\x0b\x00\xff"
        !          52688:             "\x01\x1a\x05\x0c\x00\x19\x06\x25\x05\x25\x06\x0d\x00"
        !          52689:             "\xff\x01\x18\x05\x0e\x00\x17\x06\x0e\x00\xff\x01\x17"
        !          52690:             "\x05\x0f\x00\x16\x06\x25\x05\x25\x06\x10\x00\xff\x01"
        !          52691:             "\x15\x05\x11\x00\x14\x06\x25\x05\x25\x06\x12\x00\xff"
        !          52692:             "\x01\x13\x05\x13\x00\x12\x06\x25\x05\x25\x06\x14\x00"
        !          52693:             "\xff\x01\x11\x05\x15\x00\x10\x06\x25\x05\x25\x06\x16"
        !          52694:             "\x00\xff\x01\x0f\x05\x17\x00\x0e\x06\x17\x00\xff\x01"
        !          52695:             "\x0e\x05\x18\x00\x0d\x06\x25\x05\x25\x06\x19\x00\xff"
        !          52696:             "\x01\x0c\x05\x1a\x00\x0b\x06\x25\x05\x25\x06\x1b\x00"
        !          52697:             "\xff\x01\x0a\x05\x1c\x00\x09\x06\x25\x05\x25\x06\x1d"
        !          52698:             "\x00\xff\x01\x08\x05\x1e\x00\x07\x06\x25\x05\x25\x06"
        !          52699:             "\x1f\x00\xff\x01\x06\x05\x20\x00\x05\x06\x20\x00\xff"
        !          52700:             "\x01\x05\x05\x21\x00\x04\x06\x25\x05\x25\x06\x22\x00"
        !          52701:             "\xff\x01\x03\x05\x23\x00\x02\x06\x25\x05\x25\x06\x24"
        !          52702:             "\x00\xff\x01\x01\x05\x25\x06\x25\x05\x26\x06\x25\x00"
        !          52703:             "\xff\x01\x01\x05\x25\x00\x01\x06\x26\x05\x26\x06\x23"
        !          52704:             "\x00\xff\x01\x03\x05\x23\x00\x03\x06\x26\x05\x26\x06"
        !          52705:             "\x21\x00\xff\x01\x05\x05\x21\x00\x05\x06\x20\x00\xff"
        !          52706:             "\x01\x06\x05\x20\x00\x06\x06\x26\x05\x26\x06\x1e\x00"
        !          52707:             "\xff\x01\x08\x05\x1e\x00\x08\x06\x26\x05\x26\x06\x1c"
        !          52708:             "\x00\xff\x01\x0a\x05\x1c\x00\x0a\x06\x26\x05\x26\x06"
        !          52709:             "\x1a\x00\xff\x01\x0c\x05\x1a\x00\x0c\x06\x26\x05\x26"
        !          52710:             "\x06\x18\x00\xff\x01\x0e\x05\x18\x00\x0e\x06\x17\x00"
        !          52711:             "\xff\x01\x0f\x05\x17\x00\x0f\x06\x26\x05\x26\x06\x15"
        !          52712:             "\x00\xff\x01\x11\x05\x15\x00\x11\x06\x26\x05\x26\x06"
        !          52713:             "\x13\x00\xff\x01\x13\x05\x13\x00\x13\x06\x26\x05\x26"
        !          52714:             "\x06\x11\x00\xff\x01\x15\x05\x11\x00\x15\x06\x26\x05"
        !          52715:             "\x26\x06\x0f\x00\xff\x01\x17\x05\x0f\x00\x17\x06\x0e"
        !          52716:             "\x00\xff\x01\x18\x05\x0e\x00\x18\x06\x26\x05\x26\x06"
        !          52717:             "\x0c\x00\xff\x01\x1a\x05\x0c\x00\x1a\x06\x26\x05\x26"
        !          52718:             "\x06\x0a\x00\xff\x01\x1c\x05\x0a\x00\x1c\x06\x26\x05"
        !          52719:             "\x26\x06\x08\x00\xff\x01\x1e\x05\x08\x00\x1e\x06\x26"
        !          52720:             "\x05\x26\x06\x06\x00\xff\x01\x20\x05\x06\x00\x20\x06"
        !          52721:             "\x05\x00\xff\x01\x21\x05\x05\x00\x21\x06\x26\x05\x26"
        !          52722:             "\x06\x03\x00\xff\x01\x23\x05\x03\x00\x23\x06\x26\x05"
        !          52723:             "\x26\x06\x01\x00\xff\x01\x25\x05\x01\x00\x25\x06\xff"
        !          52724:             "\x01\x26\x05\x27\x03\x01" }  },
        !          52725:       /* --- pixel bitmap for cmex600 char#29 \bigg> --- */
        !          52726:       {  29,74346,                      /* character number, location */
        !          52727:           3, 8,  -196, 8,     /* topleft row,col, and botleft row,col */
        !          52728:           { 43,  199, 2,565, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          52729:             "\x01\x03\x27\xff\x01\x05\x26\x06\x25\x00\xff\x01\x01"
        !          52730:             "\x05\x25\x00\x01\x06\x26\x05\x26\x06\x23\x00\xff\x01"
        !          52731:             "\x03\x05\x23\x00\x03\x06\x26\x05\x26\x06\x21\x00\xff"
        !          52732:             "\x01\x05\x05\x21\x00\x05\x06\x20\x00\xff\x01\x06\x05"
        !          52733:             "\x20\x00\x06\x06\x26\x05\x26\x06\x1e\x00\xff\x01\x08"
        !          52734:             "\x05\x1e\x00\x08\x06\x26\x05\x26\x06\x1c\x00\xff\x01"
        !          52735:             "\x0a\x05\x1c\x00\x0a\x06\x26\x05\x26\x06\x1a\x00\xff"
        !          52736:             "\x01\x0c\x05\x1a\x00\x0c\x06\x26\x05\x26\x06\x18\x00"
        !          52737:             "\xff\x01\x0e\x05\x18\x00\x0e\x06\x17\x00\xff\x01\x0f"
        !          52738:             "\x05\x17\x00\x0f\x06\x26\x05\x26\x06\x15\x00\xff\x01"
        !          52739:             "\x11\x05\x15\x00\x11\x06\x26\x05\x26\x06\x13\x00\xff"
        !          52740:             "\x01\x13\x05\x13\x00\x13\x06\x26\x05\x26\x06\x11\x00"
        !          52741:             "\xff\x01\x15\x05\x11\x00\x15\x06\x26\x05\x26\x06\x0f"
        !          52742:             "\x00\xff\x01\x17\x05\x0f\x00\x17\x06\x0e\x00\xff\x01"
        !          52743:             "\x18\x05\x0e\x00\x18\x06\x26\x05\x26\x06\x0c\x00\xff"
        !          52744:             "\x01\x1a\x05\x0c\x00\x1a\x06\x26\x05\x26\x06\x0a\x00"
        !          52745:             "\xff\x01\x1c\x05\x0a\x00\x1c\x06\x26\x05\x26\x06\x08"
        !          52746:             "\x00\xff\x01\x1e\x05\x08\x00\x1e\x06\x26\x05\x26\x06"
        !          52747:             "\x06\x00\xff\x01\x20\x05\x06\x00\x20\x06\x05\x00\xff"
        !          52748:             "\x01\x21\x05\x05\x00\x21\x06\x26\x05\x26\x06\x03\x00"
        !          52749:             "\xff\x01\x23\x05\x03\x00\x23\x06\x26\x05\x26\x06\x01"
        !          52750:             "\x00\xff\x01\x25\x05\x01\x00\x25\x06\x26\x05\x25\x06"
        !          52751:             "\xff\x01\x25\x05\x01\x00\x24\x06\x25\x05\x25\x06\x02"
        !          52752:             "\x00\xff\x01\x23\x05\x03\x00\x22\x06\x25\x05\x25\x06"
        !          52753:             "\x04\x00\xff\x01\x21\x05\x05\x00\x20\x06\x05\x00\xff"
        !          52754:             "\x01\x20\x05\x06\x00\x1f\x06\x25\x05\x25\x06\x07\x00"
        !          52755:             "\xff\x01\x1e\x05\x08\x00\x1d\x06\x25\x05\x25\x06\x09"
        !          52756:             "\x00\xff\x01\x1c\x05\x0a\x00\x1b\x06\x25\x05\x25\x06"
        !          52757:             "\x0b\x00\xff\x01\x1a\x05\x0c\x00\x19\x06\x25\x05\x25"
        !          52758:             "\x06\x0d\x00\xff\x01\x18\x05\x0e\x00\x17\x06\x0e\x00"
        !          52759:             "\xff\x01\x17\x05\x0f\x00\x16\x06\x25\x05\x25\x06\x10"
        !          52760:             "\x00\xff\x01\x15\x05\x11\x00\x14\x06\x25\x05\x25\x06"
        !          52761:             "\x12\x00\xff\x01\x13\x05\x13\x00\x12\x06\x25\x05\x25"
        !          52762:             "\x06\x14\x00\xff\x01\x11\x05\x15\x00\x10\x06\x25\x05"
        !          52763:             "\x25\x06\x16\x00\xff\x01\x0f\x05\x17\x00\x0e\x06\x17"
        !          52764:             "\x00\xff\x01\x0e\x05\x18\x00\x0d\x06\x25\x05\x25\x06"
        !          52765:             "\x19\x00\xff\x01\x0c\x05\x1a\x00\x0b\x06\x25\x05\x25"
        !          52766:             "\x06\x1b\x00\xff\x01\x0a\x05\x1c\x00\x09\x06\x25\x05"
        !          52767:             "\x25\x06\x1d\x00\xff\x01\x08\x05\x1e\x00\x07\x06\x25"
        !          52768:             "\x05\x25\x06\x1f\x00\xff\x01\x06\x05\x20\x00\x05\x06"
        !          52769:             "\x20\x00\xff\x01\x05\x05\x21\x00\x04\x06\x25\x05\x25"
        !          52770:             "\x06\x22\x00\xff\x01\x03\x05\x23\x00\x02\x06\x25\x05"
        !          52771:             "\x25\x06\x24\x00\xff\x01\x01\x05\x25\x06\x25\xff\x01"
        !          52772:             "\x05\x26\x00\x01\x03\x27" }  },
        !          52773:       /* --- pixel bitmap for cmex600 char#30 (noname) --- */
        !          52774:       {  30,78389,                      /* character number, location */
        !          52775:           3, 5,  -195, 5,     /* topleft row,col, and botleft row,col */
        !          52776:           { 77,  198, 2,635, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          52777:             "\x49\x03\x01\x00\xff\x01\x48\x05\xff\x01\x47\x06\x47"
        !          52778:             "\x05\x01\x00\xff\x01\x46\x06\x01\x00\xff\x01\x45\x06"
        !          52779:             "\x02\x00\x45\x05\x03\x00\xff\x01\x44\x06\x03\x00\x44"
        !          52780:             "\x05\x04\x00\xff\x01\x43\x06\x04\x00\xff\x01\x42\x06"
        !          52781:             "\x05\x00\x42\x05\x06\x00\xff\x01\x41\x06\x06\x00\x41"
        !          52782:             "\x05\x07\x00\xff\x01\x40\x06\x07\x00\xff\x01\x3f\x06"
        !          52783:             "\x08\x00\x3f\x05\x09\x00\xff\x01\x3e\x06\x09\x00\x3e"
        !          52784:             "\x05\x0a\x00\xff\x01\x3d\x06\x0a\x00\xff\x01\x3c\x06"
        !          52785:             "\x0b\x00\x3c\x05\x0c\x00\xff\x01\x3b\x06\x0c\x00\x3b"
        !          52786:             "\x05\x0d\x00\xff\x01\x3a\x06\x0d\x00\xff\x01\x39\x06"
        !          52787:             "\x0e\x00\x39\x05\x0f\x00\xff\x01\x38\x06\x0f\x00\x38"
        !          52788:             "\x05\x10\x00\xff\x01\x37\x06\x10\x00\xff\x01\x36\x06"
        !          52789:             "\x11\x00\x36\x05\x12\x00\xff\x01\x35\x06\x12\x00\x35"
        !          52790:             "\x05\x13\x00\xff\x01\x34\x06\x13\x00\xff\x01\x33\x06"
        !          52791:             "\x14\x00\x33\x05\x15\x00\xff\x01\x32\x06\x15\x00\x32"
        !          52792:             "\x05\x16\x00\xff\x01\x31\x06\x16\x00\xff\x01\x30\x06"
        !          52793:             "\x17\x00\x30\x05\x18\x00\xff\x01\x2f\x06\x18\x00\x2f"
        !          52794:             "\x05\x19\x00\xff\x01\x2e\x06\x19\x00\x2e\x05\x1a\x00"
        !          52795:             "\xff\x01\x2d\x06\x1a\x00\xff\x01\x2c\x06\x1b\x00\x2c"
        !          52796:             "\x05\x1c\x00\xff\x01\x2b\x06\x1c\x00\x2b\x05\x1d\x00"
        !          52797:             "\xff\x01\x2a\x06\x1d\x00\xff\x01\x29\x06\x1e\x00\x29"
        !          52798:             "\x05\x1f\x00\xff\x01\x28\x06\x1f\x00\x28\x05\x20\x00"
        !          52799:             "\xff\x01\x27\x06\x20\x00\xff\x01\x26\x06\x21\x00\x26"
        !          52800:             "\x05\x22\x00\xff\x01\x25\x06\x22\x00\x25\x05\x23\x00"
        !          52801:             "\xff\x01\x24\x06\x23\x00\xff\x01\x23\x06\x24\x00\x23"
        !          52802:             "\x05\x25\x00\xff\x01\x22\x06\x25\x00\x22\x05\x26\x00"
        !          52803:             "\xff\x01\x21\x06\x26\x00\xff\x01\x20\x06\x27\x00\x20"
        !          52804:             "\x05\x28\x00\xff\x01\x1f\x06\x28\x00\x1f\x05\x29\x00"
        !          52805:             "\xff\x01\x1e\x06\x29\x00\xff\x01\x1d\x06\x2a\x00\x1d"
        !          52806:             "\x05\x2b\x00\xff\x01\x1c\x06\x2b\x00\x1c\x05\x2c\x00"
        !          52807:             "\xff\x01\x1b\x06\x2c\x00\xff\x01\x1a\x06\x2d\x00\x1a"
        !          52808:             "\x05\x2e\x00\xff\x01\x19\x06\x2e\x00\x19\x05\x2f\x00"
        !          52809:             "\xff\x01\x18\x06\x2f\x00\x18\x05\x30\x00\xff\x01\x17"
        !          52810:             "\x06\x30\x00\xff\x01\x16\x06\x31\x00\x16\x05\x32\x00"
        !          52811:             "\xff\x01\x15\x06\x32\x00\x15\x05\x33\x00\xff\x01\x14"
        !          52812:             "\x06\x33\x00\xff\x01\x13\x06\x34\x00\x13\x05\x35\x00"
        !          52813:             "\xff\x01\x12\x06\x35\x00\x12\x05\x36\x00\xff\x01\x11"
        !          52814:             "\x06\x36\x00\xff\x01\x10\x06\x37\x00\x10\x05\x38\x00"
        !          52815:             "\xff\x01\x0f\x06\x38\x00\x0f\x05\x39\x00\xff\x01\x0e"
        !          52816:             "\x06\x39\x00\xff\x01\x0d\x06\x3a\x00\x0d\x05\x3b\x00"
        !          52817:             "\xff\x01\x0c\x06\x3b\x00\x0c\x05\x3c\x00\xff\x01\x0b"
        !          52818:             "\x06\x3c\x00\xff\x01\x0a\x06\x3d\x00\x0a\x05\x3e\x00"
        !          52819:             "\xff\x01\x09\x06\x3e\x00\x09\x05\x3f\x00\xff\x01\x08"
        !          52820:             "\x06\x3f\x00\xff\x01\x07\x06\x40\x00\x07\x05\x41\x00"
        !          52821:             "\xff\x01\x06\x06\x41\x00\x06\x05\x42\x00\xff\x01\x05"
        !          52822:             "\x06\x42\x00\xff\x01\x04\x06\x43\x00\x04\x05\x44\x00"
        !          52823:             "\xff\x01\x03\x06\x44\x00\x03\x05\x45\x00\xff\x01\x02"
        !          52824:             "\x06\x45\x00\xff\x01\x01\x06\x46\x00\x01\x05\x47\xff"
        !          52825:             "\x01\x06\x47\xff\x01\x05\x48\x00\x01\x03\x49" }  },
        !          52826:       /* --- pixel bitmap for cmex600 char#31 (noname) --- */
        !          52827:       {  31,82609,                      /* character number, location */
        !          52828:           3, 5,  -195, 5,     /* topleft row,col, and botleft row,col */
        !          52829:           { 77,  198, 2,635, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          52830:             "\x01\x03\x49\xff\x01\x05\x48\xff\x01\x06\x47\x00\x01"
        !          52831:             "\x05\x47\x00\xff\x01\x01\x06\x46\x00\xff\x01\x02\x06"
        !          52832:             "\x45\x00\x03\x05\x45\x00\xff\x01\x03\x06\x44\x00\x04"
        !          52833:             "\x05\x44\x00\xff\x01\x04\x06\x43\x00\xff\x01\x05\x06"
        !          52834:             "\x42\x00\x06\x05\x42\x00\xff\x01\x06\x06\x41\x00\x07"
        !          52835:             "\x05\x41\x00\xff\x01\x07\x06\x40\x00\xff\x01\x08\x06"
        !          52836:             "\x3f\x00\x09\x05\x3f\x00\xff\x01\x09\x06\x3e\x00\x0a"
        !          52837:             "\x05\x3e\x00\xff\x01\x0a\x06\x3d\x00\xff\x01\x0b\x06"
        !          52838:             "\x3c\x00\x0c\x05\x3c\x00\xff\x01\x0c\x06\x3b\x00\x0d"
        !          52839:             "\x05\x3b\x00\xff\x01\x0d\x06\x3a\x00\xff\x01\x0e\x06"
        !          52840:             "\x39\x00\x0f\x05\x39\x00\xff\x01\x0f\x06\x38\x00\x10"
        !          52841:             "\x05\x38\x00\xff\x01\x10\x06\x37\x00\xff\x01\x11\x06"
        !          52842:             "\x36\x00\x12\x05\x36\x00\xff\x01\x12\x06\x35\x00\x13"
        !          52843:             "\x05\x35\x00\xff\x01\x13\x06\x34\x00\xff\x01\x14\x06"
        !          52844:             "\x33\x00\x15\x05\x33\x00\xff\x01\x15\x06\x32\x00\x16"
        !          52845:             "\x05\x32\x00\xff\x01\x16\x06\x31\x00\xff\x01\x17\x06"
        !          52846:             "\x30\x00\x18\x05\x30\x00\xff\x01\x18\x06\x2f\x00\x19"
        !          52847:             "\x05\x2f\x00\xff\x01\x19\x06\x2e\x00\x1a\x05\x2e\x00"
        !          52848:             "\xff\x01\x1a\x06\x2d\x00\xff\x01\x1b\x06\x2c\x00\x1c"
        !          52849:             "\x05\x2c\x00\xff\x01\x1c\x06\x2b\x00\x1d\x05\x2b\x00"
        !          52850:             "\xff\x01\x1d\x06\x2a\x00\xff\x01\x1e\x06\x29\x00\x1f"
        !          52851:             "\x05\x29\x00\xff\x01\x1f\x06\x28\x00\x20\x05\x28\x00"
        !          52852:             "\xff\x01\x20\x06\x27\x00\xff\x01\x21\x06\x26\x00\x22"
        !          52853:             "\x05\x26\x00\xff\x01\x22\x06\x25\x00\x23\x05\x25\x00"
        !          52854:             "\xff\x01\x23\x06\x24\x00\xff\x01\x24\x06\x23\x00\x25"
        !          52855:             "\x05\x23\x00\xff\x01\x25\x06\x22\x00\x26\x05\x22\x00"
        !          52856:             "\xff\x01\x26\x06\x21\x00\xff\x01\x27\x06\x20\x00\x28"
        !          52857:             "\x05\x20\x00\xff\x01\x28\x06\x1f\x00\x29\x05\x1f\x00"
        !          52858:             "\xff\x01\x29\x06\x1e\x00\xff\x01\x2a\x06\x1d\x00\x2b"
        !          52859:             "\x05\x1d\x00\xff\x01\x2b\x06\x1c\x00\x2c\x05\x1c\x00"
        !          52860:             "\xff\x01\x2c\x06\x1b\x00\xff\x01\x2d\x06\x1a\x00\x2e"
        !          52861:             "\x05\x1a\x00\xff\x01\x2e\x06\x19\x00\x2f\x05\x19\x00"
        !          52862:             "\xff\x01\x2f\x06\x18\x00\x30\x05\x18\x00\xff\x01\x30"
        !          52863:             "\x06\x17\x00\xff\x01\x31\x06\x16\x00\x32\x05\x16\x00"
        !          52864:             "\xff\x01\x32\x06\x15\x00\x33\x05\x15\x00\xff\x01\x33"
        !          52865:             "\x06\x14\x00\xff\x01\x34\x06\x13\x00\x35\x05\x13\x00"
        !          52866:             "\xff\x01\x35\x06\x12\x00\x36\x05\x12\x00\xff\x01\x36"
        !          52867:             "\x06\x11\x00\xff\x01\x37\x06\x10\x00\x38\x05\x10\x00"
        !          52868:             "\xff\x01\x38\x06\x0f\x00\x39\x05\x0f\x00\xff\x01\x39"
        !          52869:             "\x06\x0e\x00\xff\x01\x3a\x06\x0d\x00\x3b\x05\x0d\x00"
        !          52870:             "\xff\x01\x3b\x06\x0c\x00\x3c\x05\x0c\x00\xff\x01\x3c"
        !          52871:             "\x06\x0b\x00\xff\x01\x3d\x06\x0a\x00\x3e\x05\x0a\x00"
        !          52872:             "\xff\x01\x3e\x06\x09\x00\x3f\x05\x09\x00\xff\x01\x3f"
        !          52873:             "\x06\x08\x00\xff\x01\x40\x06\x07\x00\x41\x05\x07\x00"
        !          52874:             "\xff\x01\x41\x06\x06\x00\x42\x05\x06\x00\xff\x01\x42"
        !          52875:             "\x06\x05\x00\xff\x01\x43\x06\x04\x00\x44\x05\x04\x00"
        !          52876:             "\xff\x01\x44\x06\x03\x00\x45\x05\x03\x00\xff\x01\x45"
        !          52877:             "\x06\x02\x00\xff\x01\x46\x06\x01\x00\x47\x05\x01\x00"
        !          52878:             "\xff\x01\x47\x06\xff\x01\x48\x05\x49\x03\x01" }  },
        !          52879:       /* --- pixel bitmap for cmex600 char#32 \Bigg( --- */
        !          52880:       {  32, 3814,                      /* character number, location */
        !          52881:           3,20,  -245,20,     /* topleft row,col, and botleft row,col */
        !          52882:           { 43,  248, 2,438, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          52883:             "\x27\x04\x26\x05\x25\x05\x25\x05\x25\x06\x25\x05\x25"
        !          52884:             "\x05\x25\x05\x25\x05\x25\x06\x25\x05\x25\x05\x25\x06"
        !          52885:             "\x24\x06\x25\x05\x25\x06\x24\x06\x25\x05\x25\x06\x0c"
        !          52886:             "\x00\xff\x01\x18\x06\x0d\x00\x17\x06\x24\x07\x24\x06"
        !          52887:             "\x24\x07\x24\x06\x24\x07\x24\x06\x24\x07\x24\x06\x24"
        !          52888:             "\x07\x24\x06\x24\x07\x24\x06\x24\x07\x24\x06\x15\x00"
        !          52889:             "\xff\x01\x0f\x07\x15\x00\x0f\x06\x24\x07\x24\x06\x17"
        !          52890:             "\x00\xff\x01\x0d\x07\x17\x00\x0d\x06\x18\x00\xff\x01"
        !          52891:             "\x0c\x07\x18\x00\xff\x02\x0b\x07\x19\x00\xff\x02\x0a"
        !          52892:             "\x07\x1a\x00\x09\x08\x1a\x00\xff\x01\x09\x07\x1b\x00"
        !          52893:             "\x08\x08\x1b\x00\xff\x02\x08\x07\x1c\x00\x07\x08\x1c"
        !          52894:             "\x00\xff\x02\x07\x07\x1d\x00\xff\x01\x06\x08\x1d\x00"
        !          52895:             "\xff\x01\x06\x07\x1e\x00\xff\x02\x05\x08\x1e\x00\xff"
        !          52896:             "\x01\x05\x07\x1f\x00\xff\x02\x04\x08\x1f\x00\xff\x02"
        !          52897:             "\x04\x07\x20\x00\xff\x03\x03\x08\x20\x00\xff\x01\x03"
        !          52898:             "\x07\x21\x00\xff\x06\x02\x08\x21\x00\x02\x07\x22\x00"
        !          52899:             "\xff\x0b\x01\x08\x22\x00\x01\x07\x23\xff\x25\x08\x23"
        !          52900:             "\x00\x01\x07\x23\x00\xff\x0b\x01\x08\x22\x00\x02\x07"
        !          52901:             "\x22\x00\xff\x06\x02\x08\x21\x00\xff\x01\x03\x07\x21"
        !          52902:             "\x00\xff\x03\x03\x08\x20\x00\xff\x02\x04\x07\x20\x00"
        !          52903:             "\xff\x02\x04\x08\x1f\x00\xff\x01\x05\x07\x1f\x00\xff"
        !          52904:             "\x02\x05\x08\x1e\x00\xff\x01\x06\x07\x1e\x00\xff\x01"
        !          52905:             "\x06\x08\x1d\x00\xff\x02\x07\x07\x1d\x00\x07\x08\x1c"
        !          52906:             "\x00\xff\x02\x08\x07\x1c\x00\x08\x08\x1b\x00\xff\x01"
        !          52907:             "\x09\x07\x1b\x00\x09\x08\x1a\x00\xff\x02\x0a\x07\x1a"
        !          52908:             "\x00\xff\x02\x0b\x07\x19\x00\xff\x01\x0c\x07\x18\x00"
        !          52909:             "\x0d\x06\x18\x00\xff\x01\x0d\x07\x17\x00\x0e\x06\x25"
        !          52910:             "\x07\x25\x06\x16\x00\xff\x01\x0f\x07\x15\x00\x10\x06"
        !          52911:             "\x25\x07\x25\x06\x25\x07\x25\x06\x25\x07\x25\x06\x25"
        !          52912:             "\x07\x25\x06\x25\x07\x25\x06\x25\x07\x25\x06\x25\x07"
        !          52913:             "\x25\x06\x0e\x00\xff\x01\x18\x06\x0d\x00\x19\x06\x26"
        !          52914:             "\x05\x26\x06\x26\x06\x26\x05\x26\x06\x26\x06\x26\x05"
        !          52915:             "\x27\x05\x26\x06\x26\x05\x27\x05\x27\x05\x27\x05\x26"
        !          52916:             "\x06\x26\x05\x27\x05\x27\x05\x27\x04" }  },
        !          52917:       /* --- pixel bitmap for cmex600 char#33 \Bigg) --- */
        !          52918:       {  33,11133,                      /* character number, location */
        !          52919:           3, 3,  -245, 3,     /* topleft row,col, and botleft row,col */
        !          52920:           { 43,  248, 2,439, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          52921:             "\x00\x04\x27\x05\x27\x05\x27\x05\x26\x06\x26\x05\x27"
        !          52922:             "\x05\x27\x05\x27\x05\x26\x06\x26\x05\x27\x05\x26\x06"
        !          52923:             "\x26\x06\x26\x05\x26\x06\x26\x06\x26\x05\x26\x06\x19"
        !          52924:             "\x00\xff\x01\x0d\x06\x18\x00\x0e\x06\x25\x07\x25\x06"
        !          52925:             "\x25\x07\x25\x06\x25\x07\x25\x06\x25\x07\x25\x06\x25"
        !          52926:             "\x07\x25\x06\x25\x07\x25\x06\x25\x07\x25\x06\x10\x00"
        !          52927:             "\xff\x01\x15\x07\x0f\x00\x16\x06\x25\x07\x25\x06\x0e"
        !          52928:             "\x00\xff\x01\x17\x07\x0d\x00\x18\x06\x0d\x00\xff\x01"
        !          52929:             "\x18\x07\x0c\x00\xff\x02\x19\x07\x0b\x00\xff\x02\x1a"
        !          52930:             "\x07\x0a\x00\x1a\x08\x09\x00\xff\x01\x1b\x07\x09\x00"
        !          52931:             "\x1b\x08\x08\x00\xff\x02\x1c\x07\x08\x00\x1c\x08\x07"
        !          52932:             "\x00\xff\x02\x1d\x07\x07\x00\xff\x01\x1d\x08\x06\x00"
        !          52933:             "\xff\x01\x1e\x07\x06\x00\xff\x02\x1e\x08\x05\x00\xff"
        !          52934:             "\x01\x1f\x07\x05\x00\xff\x02\x1f\x08\x04\x00\xff\x02"
        !          52935:             "\x20\x07\x04\x00\xff\x03\x20\x08\x03\x00\xff\x01\x21"
        !          52936:             "\x07\x03\x00\xff\x06\x21\x08\x02\x00\x22\x07\x02\x00"
        !          52937:             "\xff\x0b\x22\x08\x01\x00\x23\x07\x01\x00\xff\x25\x23"
        !          52938:             "\x08\x23\x07\x01\x00\xff\x0b\x22\x08\x01\x00\x22\x07"
        !          52939:             "\x02\x00\xff\x06\x21\x08\x02\x00\xff\x01\x21\x07\x03"
        !          52940:             "\x00\xff\x03\x20\x08\x03\x00\xff\x02\x20\x07\x04\x00"
        !          52941:             "\xff\x02\x1f\x08\x04\x00\xff\x01\x1f\x07\x05\x00\xff"
        !          52942:             "\x02\x1e\x08\x05\x00\xff\x01\x1e\x07\x06\x00\xff\x01"
        !          52943:             "\x1d\x08\x06\x00\xff\x02\x1d\x07\x07\x00\x1c\x08\x07"
        !          52944:             "\x00\xff\x02\x1c\x07\x08\x00\x1b\x08\x08\x00\xff\x01"
        !          52945:             "\x1b\x07\x09\x00\x1a\x08\x09\x00\xff\x02\x1a\x07\x0a"
        !          52946:             "\x00\xff\x02\x19\x07\x0b\x00\xff\x01\x18\x07\x0c\x00"
        !          52947:             "\x18\x06\x0d\x00\xff\x01\x17\x07\x0d\x00\x17\x06\x24"
        !          52948:             "\x07\x24\x06\x0f\x00\xff\x01\x15\x07\x0f\x00\x15\x06"
        !          52949:             "\x24\x07\x24\x06\x24\x07\x24\x06\x24\x07\x24\x06\x24"
        !          52950:             "\x07\x24\x06\x24\x07\x24\x06\x24\x07\x24\x06\x24\x07"
        !          52951:             "\x24\x06\x17\x00\xff\x01\x0d\x06\x18\x00\x0c\x06\x25"
        !          52952:             "\x05\x25\x06\x24\x06\x25\x05\x25\x06\x24\x06\x25\x05"
        !          52953:             "\x25\x05\x25\x06\x25\x05\x25\x05\x25\x05\x25\x05\x25"
        !          52954:             "\x06\x25\x05\x25\x05\x25\x05\x26\x04\x27" }  },
        !          52955:       /* --- pixel bitmap for cmex600 char#34 \Bigg[ --- */
        !          52956:       {  34,18739,                      /* character number, location */
        !          52957:           3,22,  -245,22,     /* topleft row,col, and botleft row,col */
        !          52958:           { 26,  248, 2,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          52959:             "\xff\x05\x00\x1a\x00\xff\xeb\x06\x14\xff\x05\x1a" }  },
        !          52960:       /* --- pixel bitmap for cmex600 char#35 \Bigg] --- */
        !          52961:       {  35,26121,                      /* character number, location */
        !          52962:           3, 0,  -245, 0,     /* topleft row,col, and botleft row,col */
        !          52963:           { 26,  248, 2,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          52964:             "\xff\x05\x00\x1a\xff\xeb\x14\x06\x00\xff\x05\x1a" }  },
        !          52965:       /* --- pixel bitmap for cmex600 char#36 (noname) --- */
        !          52966:       {  36,33670,                      /* character number, location */
        !          52967:           3,22,  -245,22,     /* topleft row,col, and botleft row,col */
        !          52968:           { 31,  248, 2, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          52969:             "\xff\xf1\x00\x06\x19\xff\x05\x1f" }  },
        !          52970:       /* --- pixel bitmap for cmex600 char#37 (noname) --- */
        !          52971:       {  37,38264,                      /* character number, location */
        !          52972:           3, 0,  -245, 0,     /* topleft row,col, and botleft row,col */
        !          52973:           { 31,  248, 2, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          52974:             "\xff\xf1\x19\x06\x00\xff\x05\x1f" }  },
        !          52975:       /* --- pixel bitmap for cmex600 char#38 (noname) --- */
        !          52976:       {  38,42944,                      /* character number, location */
        !          52977:           3,22,  -245,22,     /* topleft row,col, and botleft row,col */
        !          52978:           { 31,  248, 2, 9, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          52979:             "\xff\x05\x00\x1f\x00\xff\xf1\x06\x19" }  },
        !          52980:       /* --- pixel bitmap for cmex600 char#39 (noname) --- */
        !          52981:       {  39,47546,                      /* character number, location */
        !          52982:           3, 0,  -245, 0,     /* topleft row,col, and botleft row,col */
        !          52983:           { 31,  248, 2, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          52984:             "\xff\x05\x00\x1f\xff\xf1\x19\x06" }  },
        !          52985:       /* --- pixel bitmap for cmex600 char#40 \Bigg{ --- */
        !          52986:       {  40,52684,                      /* character number, location */
        !          52987:           3,12,  -245,12,     /* topleft row,col, and botleft row,col */
        !          52988:           { 43,  248, 2,256, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          52989:             "\x27\x04\x25\x06\x23\x08\x22\x09\x20\x09\x21\x09\x20"
        !          52990:             "\x09\x21\x09\x21\x09\x21\x09\x21\x09\x21\x09\x22\x08"
        !          52991:             "\x22\x08\x22\x09\x22\x08\x22\x08\x22\x09\x22\x08\x22"
        !          52992:             "\x09\x0f\x00\xff\x01\x13\x08\x10\x00\x12\x09\x10\x00"
        !          52993:             "\xff\x02\x12\x08\x11\x00\x11\x09\x11\x00\xff\x46\x11"
        !          52994:             "\x08\x12\x00\x10\x09\x12\x00\xff\x02\x10\x08\x13\x00"
        !          52995:             "\x0f\x09\x13\x00\xff\x01\x0f\x08\x14\x00\xff\x01\x0e"
        !          52996:             "\x08\x15\x00\x0e\x07\x23\x08\x23\x07\x23\x08\x22\x08"
        !          52997:             "\x23\x07\x23\x08\x22\x08\x22\x08\x22\x08\x22\x08\x22"
        !          52998:             "\x08\x22\x08\x22\x07\x23\x07\x22\x08\x23\xff\x01\x06"
        !          52999:             "\x25\x08\x25\x07\x25\x07\x25\x08\x24\x08\x24\x08\x24"
        !          53000:             "\x08\x24\x08\x24\x08\x24\x08\x24\x07\x24\x08\x24\x08"
        !          53001:             "\x24\x07\x24\x08\x24\x07\x16\x00\xff\x01\x0e\x08\x15"
        !          53002:             "\x00\xff\x01\x0f\x08\x14\x00\x0f\x09\x13\x00\xff\x02"
        !          53003:             "\x10\x08\x13\x00\x10\x09\x12\x00\xff\x46\x11\x08\x12"
        !          53004:             "\x00\x11\x09\x11\x00\xff\x02\x12\x08\x11\x00\x12\x09"
        !          53005:             "\x10\x00\xff\x01\x13\x08\x10\x00\x13\x09\x23\x08\x23"
        !          53006:             "\x09\x23\x08\x24\x08\x23\x09\x23\x08\x24\x08\x23\x09"
        !          53007:             "\x23\x09\x23\x09\x23\x09\x23\x09\x23\x09\x24\x09\x23"
        !          53008:             "\x09\x24\x09\x23\x08\x25\x06\x27\x04" }  },
        !          53009:       /* --- pixel bitmap for cmex600 char#41 \Bigg} --- */
        !          53010:       {  41,61870,                      /* character number, location */
        !          53011:           3,12,  -245,12,     /* topleft row,col, and botleft row,col */
        !          53012:           { 43,  248, 2,241, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          53013:             "\x00\x04\x27\x06\x25\x08\x23\x09\x24\x09\x23\x09\x23"
        !          53014:             "\x09\x24\x08\x24\x08\x24\x08\x24\x08\x24\x08\x23\x09"
        !          53015:             "\x23\x08\x24\x08\x23\x09\x23\x08\x16\x00\xff\x01\x0e"
        !          53016:             "\x08\x15\x00\x0e\x09\x14\x00\xff\x01\x0f\x08\x14\x00"
        !          53017:             "\xff\x03\x10\x08\x13\x00\xff\x47\x11\x08\x12\x00\xff"
        !          53018:             "\x03\x12\x08\x11\x00\xff\x02\x13\x08\x10\x00\xff\x01"
        !          53019:             "\x14\x08\x0f\x00\xff\x01\x15\x08\x0e\x00\xff\x01\x16"
        !          53020:             "\x08\x0d\x00\x17\x08\x24\x08\x24\x07\x25\x07\x24\x08"
        !          53021:             "\x24\x08\x25\x07\x25\x07\x25\x08\x24\x08\x25\x07\x25"
        !          53022:             "\x08\xff\x01\x25\x06\x23\x08\x22\x07\x22\x08\x22\x08"
        !          53023:             "\x22\x07\x23\x07\x22\x08\x22\x08\x23\x07\x23\x07\x23"
        !          53024:             "\x08\x22\x08\x0c\x00\xff\x01\x16\x08\x0d\x00\xff\x01"
        !          53025:             "\x15\x08\x0e\x00\xff\x01\x14\x08\x0f\x00\xff\x02\x13"
        !          53026:             "\x08\x10\x00\xff\x03\x12\x08\x11\x00\xff\x47\x11\x08"
        !          53027:             "\x12\x00\xff\x03\x10\x08\x13\x00\xff\x01\x0f\x08\x14"
        !          53028:             "\x00\x0e\x09\x14\x00\xff\x01\x0e\x08\x15\x00\x0d\x08"
        !          53029:             "\x22\x09\x22\x08\x22\x08\x22\x09\x22\x08\x22\x08\x22"
        !          53030:             "\x08\x22\x08\x22\x08\x21\x09\x21\x09\x21\x09\x20\x09"
        !          53031:             "\x22\x08\x23\x06\x25\x04\x27" }  },
        !          53032:       /* --- pixel bitmap for cmex600 char#42 \Bigg< --- */
        !          53033:       {  42,71501,                      /* character number, location */
        !          53034:           3,12,  -245,12,     /* topleft row,col, and botleft row,col */
        !          53035:           { 46,  248, 3,811, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          53036:             "\xe0\xe0\xe2\xe0\xe0\xe0\x14\x10\xf2\xe0\xe0\xc6\xf2"
        !          53037:             "\xe0\xe0\xb6\x10\xf2\xe0\xe0\xa6\x20\xf2\xe0\xe0\x96"
        !          53038:             "\x30\xf2\xe0\xe0\x86\x40\xf2\xe0\xe0\x76\x50\xf2\xe0"
        !          53039:             "\xe0\x66\x60\xf2\xe0\xe0\x56\x70\xf2\xe0\xe0\x46\x80"
        !          53040:             "\xf2\xe0\xe0\x36\x90\xf2\xe0\xe0\x26\xa0\xf2\xe0\xe0"
        !          53041:             "\x16\xb0\xf2\xe0\xe6\xc0\xf2\xe0\xd6\xd0\xf2\xe0\xc6"
        !          53042:             "\xe0\xf2\xe0\xb6\xe0\x10\xf2\xe0\xa6\xe0\x20\xf2\xe0"
        !          53043:             "\x96\xe0\x30\xf2\xe0\x86\xe0\x40\xf2\xe0\x76\xe0\x50"
        !          53044:             "\xf2\xe0\x66\xe0\x60\xf2\xe0\x56\xe0\x70\xf2\xe0\x46"
        !          53045:             "\xe0\x80\xf2\xe0\x36\xe0\x90\xf2\xe0\x26\xe0\xa0\xf2"
        !          53046:             "\xe0\x16\xe0\xb0\xf2\xe6\xe0\xc0\xf2\xd6\xe0\xd0\xf2"
        !          53047:             "\xc6\xe0\xe0\xf2\xb6\xe0\xe0\x10\xf2\xa6\xe0\xe0\x20"
        !          53048:             "\xf2\x96\xe0\xe0\x30\xf2\x86\xe0\xe0\x40\xf2\x76\xe0"
        !          53049:             "\xe0\x50\xf2\x66\xe0\xe0\x60\xf2\x56\xe0\xe0\x70\xf2"
        !          53050:             "\x46\xe0\xe0\x80\xf2\x36\xe0\xe0\x90\xf2\x26\xe0\xe0"
        !          53051:             "\xa0\xf2\x16\xe0\xe0\xbf\x36\xe0\xe0\xc0\xf2\x16\xe0"
        !          53052:             "\xe0\xb0\xf2\x26\xe0\xe0\xa0\xf2\x36\xe0\xe0\x90\xf2"
        !          53053:             "\x46\xe0\xe0\x80\xf2\x56\xe0\xe0\x70\xf2\x66\xe0\xe0"
        !          53054:             "\x60\xf2\x76\xe0\xe0\x50\xf2\x86\xe0\xe0\x40\xf2\x96"
        !          53055:             "\xe0\xe0\x30\xf2\xa6\xe0\xe0\x20\xf2\xb6\xe0\xe0\x10"
        !          53056:             "\xf2\xc6\xe0\xe0\xf2\xd6\xe0\xd0\xf2\xe6\xe0\xc0\xf2"
        !          53057:             "\xe0\x16\xe0\xb0\xf2\xe0\x26\xe0\xa0\xf2\xe0\x36\xe0"
        !          53058:             "\x90\xf2\xe0\x46\xe0\x80\xf2\xe0\x56\xe0\x70\xf2\xe0"
        !          53059:             "\x66\xe0\x60\xf2\xe0\x76\xe0\x50\xf2\xe0\x86\xe0\x40"
        !          53060:             "\xf2\xe0\x96\xe0\x30\xf2\xe0\xa6\xe0\x20\xf2\xe0\xb6"
        !          53061:             "\xe0\x10\xf2\xe0\xc6\xe0\xf2\xe0\xd6\xd0\xf2\xe0\xe6"
        !          53062:             "\xc0\xf2\xe0\xe0\x16\xb0\xf2\xe0\xe0\x26\xa0\xf2\xe0"
        !          53063:             "\xe0\x36\x90\xf2\xe0\xe0\x46\x80\xf2\xe0\xe0\x56\x70"
        !          53064:             "\xf2\xe0\xe0\x66\x60\xf2\xe0\xe0\x76\x50\xf2\xe0\xe0"
        !          53065:             "\x86\x40\xf2\xe0\xe0\x96\x30\xf2\xe0\xe0\xa6\x20\xf2"
        !          53066:             "\xe0\xe0\xb6\x10\xf2\xe0\xe0\xc6\xe0\xe0\xd4\xe0\xe0"
        !          53067:             "\xe0\x12\x21" }  },
        !          53068:       /* --- pixel bitmap for cmex600 char#43 \Bigg> --- */
        !          53069:       {  43,75441,                      /* character number, location */
        !          53070:           3, 9,  -245, 9,     /* topleft row,col, and botleft row,col */
        !          53071:           { 46,  248, 3,811, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          53072:             "\x22\xe0\xe0\xe0\x14\xe0\xe0\xdf\x26\xe0\xe0\xc0\xf2"
        !          53073:             "\x16\xe0\xe0\xb0\xf2\x26\xe0\xe0\xa0\xf2\x36\xe0\xe0"
        !          53074:             "\x90\xf2\x46\xe0\xe0\x80\xf2\x56\xe0\xe0\x70\xf2\x66"
        !          53075:             "\xe0\xe0\x60\xf2\x76\xe0\xe0\x50\xf2\x86\xe0\xe0\x40"
        !          53076:             "\xf2\x96\xe0\xe0\x30\xf2\xa6\xe0\xe0\x20\xf2\xb6\xe0"
        !          53077:             "\xe0\x10\xf2\xc6\xe0\xe0\xf2\xd6\xe0\xd0\xf2\xe6\xe0"
        !          53078:             "\xc0\xf2\xe0\x16\xe0\xb0\xf2\xe0\x26\xe0\xa0\xf2\xe0"
        !          53079:             "\x36\xe0\x90\xf2\xe0\x46\xe0\x80\xf2\xe0\x56\xe0\x70"
        !          53080:             "\xf2\xe0\x66\xe0\x60\xf2\xe0\x76\xe0\x50\xf2\xe0\x86"
        !          53081:             "\xe0\x40\xf2\xe0\x96\xe0\x30\xf2\xe0\xa6\xe0\x20\xf2"
        !          53082:             "\xe0\xb6\xe0\x10\xf2\xe0\xc6\xe0\xf2\xe0\xd6\xd0\xf2"
        !          53083:             "\xe0\xe6\xc0\xf2\xe0\xe0\x16\xb0\xf2\xe0\xe0\x26\xa0"
        !          53084:             "\xf2\xe0\xe0\x36\x90\xf2\xe0\xe0\x46\x80\xf2\xe0\xe0"
        !          53085:             "\x56\x70\xf2\xe0\xe0\x66\x60\xf2\xe0\xe0\x76\x50\xf2"
        !          53086:             "\xe0\xe0\x86\x40\xf2\xe0\xe0\x96\x30\xf2\xe0\xe0\xa6"
        !          53087:             "\x20\xf2\xe0\xe0\xb6\x10\xf3\xe0\xe0\xc6\xf2\xe0\xe0"
        !          53088:             "\xb6\x10\xf2\xe0\xe0\xa6\x20\xf2\xe0\xe0\x96\x30\xf2"
        !          53089:             "\xe0\xe0\x86\x40\xf2\xe0\xe0\x76\x50\xf2\xe0\xe0\x66"
        !          53090:             "\x60\xf2\xe0\xe0\x56\x70\xf2\xe0\xe0\x46\x80\xf2\xe0"
        !          53091:             "\xe0\x36\x90\xf2\xe0\xe0\x26\xa0\xf2\xe0\xe0\x16\xb0"
        !          53092:             "\xf2\xe0\xe6\xc0\xf2\xe0\xd6\xd0\xf2\xe0\xc6\xe0\xf2"
        !          53093:             "\xe0\xb6\xe0\x10\xf2\xe0\xa6\xe0\x20\xf2\xe0\x96\xe0"
        !          53094:             "\x30\xf2\xe0\x86\xe0\x40\xf2\xe0\x76\xe0\x50\xf2\xe0"
        !          53095:             "\x66\xe0\x60\xf2\xe0\x56\xe0\x70\xf2\xe0\x46\xe0\x80"
        !          53096:             "\xf2\xe0\x36\xe0\x90\xf2\xe0\x26\xe0\xa0\xf2\xe0\x16"
        !          53097:             "\xe0\xb0\xf2\xe6\xe0\xc0\xf2\xd6\xe0\xd0\xf2\xc6\xe0"
        !          53098:             "\xe0\xf2\xb6\xe0\xe0\x10\xf2\xa6\xe0\xe0\x20\xf2\x96"
        !          53099:             "\xe0\xe0\x30\xf2\x86\xe0\xe0\x40\xf2\x76\xe0\xe0\x50"
        !          53100:             "\xf2\x66\xe0\xe0\x60\xf2\x56\xe0\xe0\x70\xf2\x46\xe0"
        !          53101:             "\xe0\x80\xf2\x36\xe0\xe0\x90\xf2\x26\xe0\xe0\xa0\xf2"
        !          53102:             "\x16\xe0\xe0\xbf\x26\xe0\xe0\xc0\x14\xe0\xe0\xe0\x12"
        !          53103:             "\xe0\xe0\xe0" }  },
        !          53104:       /* --- pixel bitmap for cmex600 char#44 / --- */
        !          53105:       {  44,79648,                      /* character number, location */
        !          53106:           3, 5,  -245, 5,     /* topleft row,col, and botleft row,col */
        !          53107:           { 96,  248, 2,657, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          53108:             "\x5b\x04\x01\x00\xff\x02\x5a\x06\xff\x02\x59\x06\x01"
        !          53109:             "\x00\xff\x02\x58\x06\x02\x00\xff\x01\x57\x06\x03\x00"
        !          53110:             "\x56\x07\x03\x00\xff\x01\x56\x06\x04\x00\xff\x02\x55"
        !          53111:             "\x06\x05\x00\xff\x01\x54\x06\x06\x00\x53\x07\x06\x00"
        !          53112:             "\xff\x01\x53\x06\x07\x00\xff\x02\x52\x06\x08\x00\xff"
        !          53113:             "\x01\x51\x06\x09\x00\x50\x07\x09\x00\xff\x01\x50\x06"
        !          53114:             "\x0a\x00\xff\x02\x4f\x06\x0b\x00\xff\x01\x4e\x06\x0c"
        !          53115:             "\x00\x4d\x07\x0c\x00\xff\x01\x4d\x06\x0d\x00\xff\x02"
        !          53116:             "\x4c\x06\x0e\x00\xff\x02\x4b\x06\x0f\x00\xff\x01\x4a"
        !          53117:             "\x06\x10\x00\x49\x07\x10\x00\xff\x01\x49\x06\x11\x00"
        !          53118:             "\xff\x02\x48\x06\x12\x00\xff\x01\x47\x06\x13\x00\x46"
        !          53119:             "\x07\x13\x00\xff\x01\x46\x06\x14\x00\xff\x02\x45\x06"
        !          53120:             "\x15\x00\xff\x01\x44\x06\x16\x00\x43\x07\x16\x00\xff"
        !          53121:             "\x01\x43\x06\x17\x00\xff\x02\x42\x06\x18\x00\xff\x01"
        !          53122:             "\x41\x06\x19\x00\x40\x07\x19\x00\xff\x01\x40\x06\x1a"
        !          53123:             "\x00\xff\x02\x3f\x06\x1b\x00\xff\x01\x3e\x06\x1c\x00"
        !          53124:             "\x3d\x07\x1c\x00\xff\x01\x3d\x06\x1d\x00\xff\x02\x3c"
        !          53125:             "\x06\x1e\x00\xff\x02\x3b\x06\x1f\x00\xff\x01\x3a\x06"
        !          53126:             "\x20\x00\x39\x07\x20\x00\xff\x01\x39\x06\x21\x00\xff"
        !          53127:             "\x02\x38\x06\x22\x00\xff\x01\x37\x06\x23\x00\x36\x07"
        !          53128:             "\x23\x00\xff\x01\x36\x06\x24\x00\xff\x02\x35\x06\x25"
        !          53129:             "\x00\xff\x01\x34\x06\x26\x00\x33\x07\x26\x00\xff\x01"
        !          53130:             "\x33\x06\x27\x00\xff\x02\x32\x06\x28\x00\xff\x01\x31"
        !          53131:             "\x06\x29\x00\x30\x07\x29\x00\xff\x01\x30\x06\x2a\x00"
        !          53132:             "\xff\x02\x2f\x06\x2b\x00\xff\x02\x2e\x06\x2c\x00\xff"
        !          53133:             "\x01\x2d\x06\x2d\x00\x2c\x07\x2d\x00\xff\x01\x2c\x06"
        !          53134:             "\x2e\x00\xff\x02\x2b\x06\x2f\x00\xff\x01\x2a\x06\x30"
        !          53135:             "\x00\x29\x07\x30\x00\xff\x01\x29\x06\x31\x00\xff\x02"
        !          53136:             "\x28\x06\x32\x00\xff\x01\x27\x06\x33\x00\x26\x07\x33"
        !          53137:             "\x00\xff\x01\x26\x06\x34\x00\xff\x02\x25\x06\x35\x00"
        !          53138:             "\xff\x01\x24\x06\x36\x00\x23\x07\x36\x00\xff\x01\x23"
        !          53139:             "\x06\x37\x00\xff\x02\x22\x06\x38\x00\xff\x01\x21\x06"
        !          53140:             "\x39\x00\x20\x07\x39\x00\xff\x01\x20\x06\x3a\x00\xff"
        !          53141:             "\x02\x1f\x06\x3b\x00\xff\x02\x1e\x06\x3c\x00\xff\x01"
        !          53142:             "\x1d\x06\x3d\x00\x1c\x07\x3d\x00\xff\x01\x1c\x06\x3e"
        !          53143:             "\x00\xff\x02\x1b\x06\x3f\x00\xff\x01\x1a\x06\x40\x00"
        !          53144:             "\x19\x07\x40\x00\xff\x01\x19\x06\x41\x00\xff\x02\x18"
        !          53145:             "\x06\x42\x00\xff\x01\x17\x06\x43\x00\x16\x07\x43\x00"
        !          53146:             "\xff\x01\x16\x06\x44\x00\xff\x02\x15\x06\x45\x00\xff"
        !          53147:             "\x01\x14\x06\x46\x00\x13\x07\x46\x00\xff\x01\x13\x06"
        !          53148:             "\x47\x00\xff\x02\x12\x06\x48\x00\xff\x01\x11\x06\x49"
        !          53149:             "\x00\x10\x07\x49\x00\xff\x01\x10\x06\x4a\x00\xff\x02"
        !          53150:             "\x0f\x06\x4b\x00\xff\x02\x0e\x06\x4c\x00\xff\x01\x0d"
        !          53151:             "\x06\x4d\x00\x0c\x07\x4d\x00\xff\x01\x0c\x06\x4e\x00"
        !          53152:             "\xff\x02\x0b\x06\x4f\x00\xff\x01\x0a\x06\x50\x00\x09"
        !          53153:             "\x07\x50\x00\xff\x01\x09\x06\x51\x00\xff\x02\x08\x06"
        !          53154:             "\x52\x00\xff\x01\x07\x06\x53\x00\x06\x07\x53\x00\xff"
        !          53155:             "\x01\x06\x06\x54\x00\xff\x02\x05\x06\x55\x00\xff\x01"
        !          53156:             "\x04\x06\x56\x00\x03\x07\x56\x00\xff\x01\x03\x06\x57"
        !          53157:             "\x00\xff\x02\x02\x06\x58\x00\xff\x02\x01\x06\x59\xff"
        !          53158:             "\x02\x06\x5a\x00\x01\x04\x5b" }  },
        !          53159:       /* --- pixel bitmap for cmex600 char#45 \ --- */
        !          53160:       {  45,83871,                      /* character number, location */
        !          53161:           3, 5,  -245, 5,     /* topleft row,col, and botleft row,col */
        !          53162:           { 96,  248, 2,657, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          53163:             "\x01\x04\x5b\xff\x02\x06\x5a\x00\xff\x02\x01\x06\x59"
        !          53164:             "\x00\xff\x02\x02\x06\x58\x00\xff\x01\x03\x06\x57\x00"
        !          53165:             "\x03\x07\x56\x00\xff\x01\x04\x06\x56\x00\xff\x02\x05"
        !          53166:             "\x06\x55\x00\xff\x01\x06\x06\x54\x00\x06\x07\x53\x00"
        !          53167:             "\xff\x01\x07\x06\x53\x00\xff\x02\x08\x06\x52\x00\xff"
        !          53168:             "\x01\x09\x06\x51\x00\x09\x07\x50\x00\xff\x01\x0a\x06"
        !          53169:             "\x50\x00\xff\x02\x0b\x06\x4f\x00\xff\x01\x0c\x06\x4e"
        !          53170:             "\x00\x0c\x07\x4d\x00\xff\x01\x0d\x06\x4d\x00\xff\x02"
        !          53171:             "\x0e\x06\x4c\x00\xff\x02\x0f\x06\x4b\x00\xff\x01\x10"
        !          53172:             "\x06\x4a\x00\x10\x07\x49\x00\xff\x01\x11\x06\x49\x00"
        !          53173:             "\xff\x02\x12\x06\x48\x00\xff\x01\x13\x06\x47\x00\x13"
        !          53174:             "\x07\x46\x00\xff\x01\x14\x06\x46\x00\xff\x02\x15\x06"
        !          53175:             "\x45\x00\xff\x01\x16\x06\x44\x00\x16\x07\x43\x00\xff"
        !          53176:             "\x01\x17\x06\x43\x00\xff\x02\x18\x06\x42\x00\xff\x01"
        !          53177:             "\x19\x06\x41\x00\x19\x07\x40\x00\xff\x01\x1a\x06\x40"
        !          53178:             "\x00\xff\x02\x1b\x06\x3f\x00\xff\x01\x1c\x06\x3e\x00"
        !          53179:             "\x1c\x07\x3d\x00\xff\x01\x1d\x06\x3d\x00\xff\x02\x1e"
        !          53180:             "\x06\x3c\x00\xff\x02\x1f\x06\x3b\x00\xff\x01\x20\x06"
        !          53181:             "\x3a\x00\x20\x07\x39\x00\xff\x01\x21\x06\x39\x00\xff"
        !          53182:             "\x02\x22\x06\x38\x00\xff\x01\x23\x06\x37\x00\x23\x07"
        !          53183:             "\x36\x00\xff\x01\x24\x06\x36\x00\xff\x02\x25\x06\x35"
        !          53184:             "\x00\xff\x01\x26\x06\x34\x00\x26\x07\x33\x00\xff\x01"
        !          53185:             "\x27\x06\x33\x00\xff\x02\x28\x06\x32\x00\xff\x01\x29"
        !          53186:             "\x06\x31\x00\x29\x07\x30\x00\xff\x01\x2a\x06\x30\x00"
        !          53187:             "\xff\x02\x2b\x06\x2f\x00\xff\x01\x2c\x06\x2e\x00\x2c"
        !          53188:             "\x07\x2d\x00\xff\x01\x2d\x06\x2d\x00\xff\x02\x2e\x06"
        !          53189:             "\x2c\x00\xff\x02\x2f\x06\x2b\x00\xff\x01\x30\x06\x2a"
        !          53190:             "\x00\x30\x07\x29\x00\xff\x01\x31\x06\x29\x00\xff\x02"
        !          53191:             "\x32\x06\x28\x00\xff\x01\x33\x06\x27\x00\x33\x07\x26"
        !          53192:             "\x00\xff\x01\x34\x06\x26\x00\xff\x02\x35\x06\x25\x00"
        !          53193:             "\xff\x01\x36\x06\x24\x00\x36\x07\x23\x00\xff\x01\x37"
        !          53194:             "\x06\x23\x00\xff\x02\x38\x06\x22\x00\xff\x01\x39\x06"
        !          53195:             "\x21\x00\x39\x07\x20\x00\xff\x01\x3a\x06\x20\x00\xff"
        !          53196:             "\x02\x3b\x06\x1f\x00\xff\x02\x3c\x06\x1e\x00\xff\x01"
        !          53197:             "\x3d\x06\x1d\x00\x3d\x07\x1c\x00\xff\x01\x3e\x06\x1c"
        !          53198:             "\x00\xff\x02\x3f\x06\x1b\x00\xff\x01\x40\x06\x1a\x00"
        !          53199:             "\x40\x07\x19\x00\xff\x01\x41\x06\x19\x00\xff\x02\x42"
        !          53200:             "\x06\x18\x00\xff\x01\x43\x06\x17\x00\x43\x07\x16\x00"
        !          53201:             "\xff\x01\x44\x06\x16\x00\xff\x02\x45\x06\x15\x00\xff"
        !          53202:             "\x01\x46\x06\x14\x00\x46\x07\x13\x00\xff\x01\x47\x06"
        !          53203:             "\x13\x00\xff\x02\x48\x06\x12\x00\xff\x01\x49\x06\x11"
        !          53204:             "\x00\x49\x07\x10\x00\xff\x01\x4a\x06\x10\x00\xff\x02"
        !          53205:             "\x4b\x06\x0f\x00\xff\x02\x4c\x06\x0e\x00\xff\x01\x4d"
        !          53206:             "\x06\x0d\x00\x4d\x07\x0c\x00\xff\x01\x4e\x06\x0c\x00"
        !          53207:             "\xff\x02\x4f\x06\x0b\x00\xff\x01\x50\x06\x0a\x00\x50"
        !          53208:             "\x07\x09\x00\xff\x01\x51\x06\x09\x00\xff\x02\x52\x06"
        !          53209:             "\x08\x00\xff\x01\x53\x06\x07\x00\x53\x07\x06\x00\xff"
        !          53210:             "\x01\x54\x06\x06\x00\xff\x02\x55\x06\x05\x00\xff\x01"
        !          53211:             "\x56\x06\x04\x00\x56\x07\x03\x00\xff\x01\x57\x06\x03"
        !          53212:             "\x00\xff\x02\x58\x06\x02\x00\xff\x02\x59\x06\x01\x00"
        !          53213:             "\xff\x02\x5a\x06\x5b\x04\x01" }  },
        !          53214:       /* --- pixel bitmap for cmex600 char#46 / --- */
        !          53215:       {  46,77335,                      /* character number, location */
        !          53216:           3, 5,  -145, 5,     /* topleft row,col, and botleft row,col */
        !          53217:           { 57,  148, 3,741, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          53218:             "\xe0\xe0\xe0\xb3\x10\xf2\xe0\xe0\xe0\xa5\xf1\xe0\xe0"
        !          53219:             "\xe0\x95\x10\xe0\xe0\xe0\x86\x10\xf1\xe0\xe0\xe0\x85"
        !          53220:             "\x20\xf2\xe0\xe0\xe0\x75\x30\xf2\xe0\xe0\xe0\x65\x40"
        !          53221:             "\xf1\xe0\xe0\xe0\x55\x50\xe0\xe0\xe0\x46\x50\xf1\xe0"
        !          53222:             "\xe0\xe0\x45\x60\xf2\xe0\xe0\xe0\x35\x70\xf2\xe0\xe0"
        !          53223:             "\xe0\x25\x80\xf1\xe0\xe0\xe0\x15\x90\xe0\xe0\xe6\x90"
        !          53224:             "\xf1\xe0\xe0\xe5\xa0\xf2\xe0\xe0\xd5\xb0\xf2\xe0\xe0"
        !          53225:             "\xc5\xc0\xf1\xe0\xe0\xb5\xd0\xe0\xe0\xa6\xd0\xf1\xe0"
        !          53226:             "\xe0\xa5\xe0\xf2\xe0\xe0\x95\xe0\x10\xf2\xe0\xe0\x85"
        !          53227:             "\xe0\x20\xf1\xe0\xe0\x75\xe0\x30\xe0\xe0\x66\xe0\x30"
        !          53228:             "\xf1\xe0\xe0\x65\xe0\x40\xf2\xe0\xe0\x55\xe0\x50\xf2"
        !          53229:             "\xe0\xe0\x45\xe0\x60\xf1\xe0\xe0\x35\xe0\x70\xe0\xe0"
        !          53230:             "\x26\xe0\x70\xf1\xe0\xe0\x25\xe0\x80\xf2\xe0\xe0\x15"
        !          53231:             "\xe0\x90\xf2\xe0\xe5\xe0\xa0\xf1\xe0\xd5\xe0\xb0\xe0"
        !          53232:             "\xc6\xe0\xb0\xf1\xe0\xc5\xe0\xc0\xf2\xe0\xb5\xe0\xd0"
        !          53233:             "\xf2\xe0\xa5\xe0\xe0\xf2\xe0\x95\xe0\xe0\x10\xf1\xe0"
        !          53234:             "\x85\xe0\xe0\x20\xe0\x76\xe0\xe0\x20\xf1\xe0\x75\xe0"
        !          53235:             "\xe0\x30\xf2\xe0\x65\xe0\xe0\x40\xf2\xe0\x55\xe0\xe0"
        !          53236:             "\x50\xf1\xe0\x45\xe0\xe0\x60\xe0\x36\xe0\xe0\x60\xf1"
        !          53237:             "\xe0\x35\xe0\xe0\x70\xf2\xe0\x25\xe0\xe0\x80\xf2\xe0"
        !          53238:             "\x15\xe0\xe0\x90\xf1\xe5\xe0\xe0\xa0\xd6\xe0\xe0\xa0"
        !          53239:             "\xf1\xd5\xe0\xe0\xb0\xf2\xc5\xe0\xe0\xc0\xf2\xb5\xe0"
        !          53240:             "\xe0\xd0\xf1\xa5\xe0\xe0\xe0\x96\xe0\xe0\xe0\xf1\x95"
        !          53241:             "\xe0\xe0\xe0\x10\xf2\x85\xe0\xe0\xe0\x20\xf2\x75\xe0"
        !          53242:             "\xe0\xe0\x30\xf1\x65\xe0\xe0\xe0\x40\x56\xe0\xe0\xe0"
        !          53243:             "\x40\xf1\x55\xe0\xe0\xe0\x50\xf2\x45\xe0\xe0\xe0\x60"
        !          53244:             "\xf2\x35\xe0\xe0\xe0\x70\xf1\x25\xe0\xe0\xe0\x80\x16"
        !          53245:             "\xe0\xe0\xe0\x80\xf1\x15\xe0\xe0\xe0\x9f\x25\xe0\xe0"
        !          53246:             "\xe0\xa0\x13\xe0\xe0\xe0\xb6" }  },
        !          53247:       /* --- pixel bitmap for cmex600 char#47 \ --- */
        !          53248:       {  47,81551,                      /* character number, location */
        !          53249:           3, 5,  -145, 5,     /* topleft row,col, and botleft row,col */
        !          53250:           { 57,  148, 3,741, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          53251:             "\x13\xe0\xe0\xe0\xbf\x25\xe0\xe0\xe0\xa0\xf1\x15\xe0"
        !          53252:             "\xe0\xe0\x90\x16\xe0\xe0\xe0\x80\xf1\x25\xe0\xe0\xe0"
        !          53253:             "\x80\xf2\x35\xe0\xe0\xe0\x70\xf2\x45\xe0\xe0\xe0\x60"
        !          53254:             "\xf1\x55\xe0\xe0\xe0\x50\x56\xe0\xe0\xe0\x40\xf1\x65"
        !          53255:             "\xe0\xe0\xe0\x40\xf2\x75\xe0\xe0\xe0\x30\xf2\x85\xe0"
        !          53256:             "\xe0\xe0\x20\xf1\x95\xe0\xe0\xe0\x10\x96\xe0\xe0\xe0"
        !          53257:             "\xf1\xa5\xe0\xe0\xe0\xf2\xb5\xe0\xe0\xd0\xf2\xc5\xe0"
        !          53258:             "\xe0\xc0\xf1\xd5\xe0\xe0\xb0\xd6\xe0\xe0\xa0\xf1\xe5"
        !          53259:             "\xe0\xe0\xa0\xf2\xe0\x15\xe0\xe0\x90\xf2\xe0\x25\xe0"
        !          53260:             "\xe0\x80\xf1\xe0\x35\xe0\xe0\x70\xe0\x36\xe0\xe0\x60"
        !          53261:             "\xf1\xe0\x45\xe0\xe0\x60\xf2\xe0\x55\xe0\xe0\x50\xf2"
        !          53262:             "\xe0\x65\xe0\xe0\x40\xf1\xe0\x75\xe0\xe0\x30\xe0\x76"
        !          53263:             "\xe0\xe0\x20\xf1\xe0\x85\xe0\xe0\x20\xf2\xe0\x95\xe0"
        !          53264:             "\xe0\x10\xf2\xe0\xa5\xe0\xe0\xf2\xe0\xb5\xe0\xd0\xf1"
        !          53265:             "\xe0\xc5\xe0\xc0\xe0\xc6\xe0\xb0\xf1\xe0\xd5\xe0\xb0"
        !          53266:             "\xf2\xe0\xe5\xe0\xa0\xf2\xe0\xe0\x15\xe0\x90\xf1\xe0"
        !          53267:             "\xe0\x25\xe0\x80\xe0\xe0\x26\xe0\x70\xf1\xe0\xe0\x35"
        !          53268:             "\xe0\x70\xf2\xe0\xe0\x45\xe0\x60\xf2\xe0\xe0\x55\xe0"
        !          53269:             "\x50\xf1\xe0\xe0\x65\xe0\x40\xe0\xe0\x66\xe0\x30\xf1"
        !          53270:             "\xe0\xe0\x75\xe0\x30\xf2\xe0\xe0\x85\xe0\x20\xf2\xe0"
        !          53271:             "\xe0\x95\xe0\x10\xf1\xe0\xe0\xa5\xe0\xe0\xe0\xa6\xd0"
        !          53272:             "\xf1\xe0\xe0\xb5\xd0\xf2\xe0\xe0\xc5\xc0\xf2\xe0\xe0"
        !          53273:             "\xd5\xb0\xf1\xe0\xe0\xe5\xa0\xe0\xe0\xe6\x90\xf1\xe0"
        !          53274:             "\xe0\xe0\x15\x90\xf2\xe0\xe0\xe0\x25\x80\xf2\xe0\xe0"
        !          53275:             "\xe0\x35\x70\xf1\xe0\xe0\xe0\x45\x60\xe0\xe0\xe0\x46"
        !          53276:             "\x50\xf1\xe0\xe0\xe0\x55\x50\xf2\xe0\xe0\xe0\x65\x40"
        !          53277:             "\xf2\xe0\xe0\xe0\x75\x30\xf1\xe0\xe0\xe0\x85\x20\xe0"
        !          53278:             "\xe0\xe0\x86\x10\xf1\xe0\xe0\xe0\x95\x10\xf2\xe0\xe0"
        !          53279:             "\xe0\xa5\xe0\xe0\xe0\xb3\x10" }  },
        !          53280:       /* --- pixel bitmap for cmex600 char#48 \leftparentop --- */
        !          53281:       {  48, 5090,                      /* character number, location */
        !          53282:           2,24,  -147,24,     /* topleft row,col, and botleft row,col */
        !          53283:           { 47,  149, 3,503, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          53284:             "\xe0\xe0\xe5\xe0\xe0\xd6\xe0\xe0\xc6\x10\xf1\xe0\xe0"
        !          53285:             "\xb6\x20\xe0\xe0\xa6\xe0\xe0\xc6\xe0\xe0\xc7\xe0\xe0"
        !          53286:             "\xc6\xe0\xe0\xc6\xe0\xe0\xc7\xe0\xe0\xb7\xe0\xe0\xc6"
        !          53287:             "\xe0\xe0\xc7\xe0\xe0\xb7\xe0\xe0\xc6\xe0\xe0\xc7\xa0"
        !          53288:             "\xf1\xe0\xe0\x17\xb0\xe0\xe7\xe0\xe0\xc6\xe0\xe0\xc7"
        !          53289:             "\xd0\xf1\xe0\xc7\xe0\xf1\xe0\xb7\xe0\x10\xf1\xe0\xa7"
        !          53290:             "\xe0\x20\xf1\xe0\x97\xe0\x30\xf1\xe0\x87\xe0\x40\xf1"
        !          53291:             "\xe0\x77\xe0\x50\xe0\x68\xe0\xe0\xb7\xe0\xe0\xb8\xe0"
        !          53292:             "\xe0\xb7\xe0\x70\xf1\xe0\x48\xe0\x70\xe0\x47\xe0\xe0"
        !          53293:             "\xb8\xe0\xe0\xb7\xe0\x90\xf1\xe0\x28\xe0\x90\xe0\x27"
        !          53294:             "\xe0\xa0\xf1\xe0\x18\xe0\xa0\xf2\xe8\xe0\xb0\xf2\xd8"
        !          53295:             "\xe0\xc0\xf2\xc8\xe0\xd0\xf3\xb8\xe0\xe0\xf2\xa8\xe0"
        !          53296:             "\xe0\x10\x99\xe0\xe0\x10\xf2\x98\xe0\xe0\x20\x89\xe0"
        !          53297:             "\xe0\x20\xf2\x88\xe0\xe0\x30\x79\xe0\xe0\x30\xf2\x78"
        !          53298:             "\xe0\xe0\x40\xf1\x69\xe0\xe0\x40\xf2\x68\xe0\xe0\x50"
        !          53299:             "\xf2\x59\xe0\xe0\x50\xf2\x58\xe0\xe0\x60\xf3\x49\xe0"
        !          53300:             "\xe0\x60\xf1\x48\xe0\xe0\x70\xf5\x39\xe0\xe0\x70\xf1"
        !          53301:             "\x38\xe0\xe0\x80\xf7\x29\xe0\xe0\x80\xf1\x28\xe0\xe0"
        !          53302:             "\x90\xfc\x19\xe0\xe0\x90\x18\xe0\xe0\xaf\xe9\xe0\xe0"
        !          53303:             "\xaf\x89\xe0\xe0\xa0" }  },
        !          53304:       /* --- pixel bitmap for cmex600 char#49 \rightparentop --- */
        !          53305:       {  49,12410,                      /* character number, location */
        !          53306:           2, 2,  -147, 2,     /* topleft row,col, and botleft row,col */
        !          53307:           { 47,  149, 3,504, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          53308:             "\x05\xe0\xe0\xe6\xe0\xe0\xe6\xe0\xe0\xc0\xf1\x26\xe0"
        !          53309:             "\xe0\xb0\x36\xe0\xe0\xe6\xe0\xe0\xd7\xe0\xe0\xd6\xe0"
        !          53310:             "\xe0\xe6\xe0\xe0\xd7\xe0\xe0\xd7\xe0\xe0\xd6\xe0\xe0"
        !          53311:             "\xd7\xe0\xe0\xd7\xe0\xe0\xd6\xe0\xe0\xd7\xe0\xe0\x20"
        !          53312:             "\xf1\xb7\xe0\xe0\x10\xc7\xe0\xe0\xd6\xe0\xe0\xd7\xe0"
        !          53313:             "\xd0\xf1\xe7\xe0\xc0\xf1\xe0\x17\xe0\xb0\xf1\xe0\x27"
        !          53314:             "\xe0\xa0\xf1\xe0\x37\xe0\x90\xf1\xe0\x47\xe0\x80\xf1"
        !          53315:             "\xe0\x57\xe0\x70\xe0\x58\xe0\xe0\xc7\xe0\xe0\xc8\xe0"
        !          53316:             "\xe0\xc7\xe0\x50\xf1\xe0\x78\xe0\x40\xe0\x87\xe0\xe0"
        !          53317:             "\xc8\xe0\xe0\xc7\xe0\x30\xf1\xe0\x98\xe0\x20\xe0\xa7"
        !          53318:             "\xe0\x20\xf1\xe0\xa8\xe0\x10\xf2\xe0\xb8\xe0\xf2\xe0"
        !          53319:             "\xc8\xd0\xf2\xe0\xd8\xc0\xf3\xe0\xe8\xb0\xf2\xe0\xe0"
        !          53320:             "\x18\xa0\xe0\xe0\x19\x90\xf2\xe0\xe0\x28\x90\xe0\xe0"
        !          53321:             "\x29\x80\xf2\xe0\xe0\x38\x80\xe0\xe0\x39\x70\xf2\xe0"
        !          53322:             "\xe0\x48\x70\xf1\xe0\xe0\x49\x60\xf2\xe0\xe0\x58\x60"
        !          53323:             "\xf2\xe0\xe0\x59\x50\xf2\xe0\xe0\x68\x50\xf3\xe0\xe0"
        !          53324:             "\x69\x40\xf1\xe0\xe0\x78\x40\xf5\xe0\xe0\x79\x30\xf1"
        !          53325:             "\xe0\xe0\x88\x30\xf7\xe0\xe0\x89\x20\xf1\xe0\xe0\x98"
        !          53326:             "\x20\xfc\xe0\xe0\x99\x10\xe0\xe0\xa8\x10\xfe\xe0\xe0"
        !          53327:             "\xa9\xf8\xe0\xe0\xa9" }  },
        !          53328:       /* --- pixel bitmap for cmex600 char#50 (noname) --- */
        !          53329:       {  50,20001,                      /* character number, location */
        !          53330:           2,27,  -146,27,     /* topleft row,col, and botleft row,col */
        !          53331:           { 28,  148, 2, 9, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          53332:             "\xff\x05\x00\x1c\x00\xff\x8d\x06\x16" }  },
        !          53333:       /* --- pixel bitmap for cmex600 char#51 (noname) --- */
        !          53334:       {  51,27370,                      /* character number, location */
        !          53335:           2, 0,  -146, 0,     /* topleft row,col, and botleft row,col */
        !          53336:           { 28,  148, 2, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          53337:             "\xff\x05\x00\x1c\xff\x8d\x16\x06" }  },
        !          53338:       /* --- pixel bitmap for cmex600 char#52 (noname) --- */
        !          53339:       {  52,21066,                      /* character number, location */
        !          53340:           3,27,  -145,27,     /* topleft row,col, and botleft row,col */
        !          53341:           { 28,  148, 2, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          53342:             "\xff\x8d\x00\x06\x16\xff\x05\x1c" }  },
        !          53343:       /* --- pixel bitmap for cmex600 char#53 (noname) --- */
        !          53344:       {  53,28422,                      /* character number, location */
        !          53345:           3, 0,  -145, 0,     /* topleft row,col, and botleft row,col */
        !          53346:           { 28,  148, 2, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          53347:             "\xff\x8d\x16\x06\x00\xff\x05\x1c" }  },
        !          53348:       /* --- pixel bitmap for cmex600 char#54 (noname) --- */
        !          53349:       {  54,22047,                      /* character number, location */
        !          53350:           1,27,  -51,27,      /* topleft row,col, and botleft row,col */
        !          53351:           {  6,   52, 2, 4, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          53352:             "\xff\x33\x00\x06" }  },
        !          53353:       /* --- pixel bitmap for cmex600 char#55 (noname) --- */
        !          53354:       {  55,29390,                      /* character number, location */
        !          53355:           1,22,  -51,22,      /* topleft row,col, and botleft row,col */
        !          53356:           {  6,   52, 2, 4, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          53357:             "\xff\x33\x00\x06" }  },
        !          53358:       /* --- pixel bitmap for cmex600 char#56 \leftbracetop --- */
        !          53359:       {  56,54007,                      /* character number, location */
        !          53360:          -1,32,  -76,32,      /* topleft row,col, and botleft row,col */
        !          53361:           { 28,   75, 3,139, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          53362:             "\xe0\x95\xe0\x77\xe0\x68\xe0\x4a\xe0\x3b\xe0\x1b\xe0"
        !          53363:             "\x2b\xe0\x2b\xe0\x2b\xe0\x2b\xe0\x2b\xe0\x2b\xe0\x3a"
        !          53364:             "\xe0\x3a\xe0\x3a\xe0\x3b\xe0\x3a\xc0\xf1\x5a\xd0\xf1"
        !          53365:             "\x4a\xe0\xf1\x3a\xe0\x10\x2b\xe0\x10\xf1\x2a\xe0\x20"
        !          53366:             "\x1b\xe0\x20\xf3\x1a\xe0\x3b\xe0\x3f\xea\xe0\x4f\xea"
        !          53367:             "\xe0\x4f\xca\xe0\x40" }  },
        !          53368:       /* --- pixel bitmap for cmex600 char#57 \rightbracetop --- */
        !          53369:       {  57,63194,                      /* character number, location */
        !          53370:          -1,14,  -76,14,      /* topleft row,col, and botleft row,col */
        !          53371:           { 28,   75, 3,138, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          53372:             "\x05\xe0\x97\xe0\x78\xe0\x6a\xe0\x4b\xe0\x5b\xe0\x4b"
        !          53373:             "\xe0\x4b\xe0\x4b\xe0\x4b\xe0\x4b\xe0\x4b\xe0\x4a\xe0"
        !          53374:             "\x5a\xe0\x5a\xe0\x4b\xe0\x4a\x60\xf1\xda\x50\xf1\xea"
        !          53375:             "\x40\xf1\xe0\x1a\x30\xe0\x1b\x20\xf1\xe0\x2a\x20\xe0"
        !          53376:             "\x2b\x10\xf3\xe0\x3a\x10\xe0\x3b\xfe\xe0\x4a\xfe\xe0"
        !          53377:             "\x4a\xfc\xe0\x4a" }  },
        !          53378:       /* --- pixel bitmap for cmex600 char#58 \leftbracebot --- */
        !          53379:       {  58,55006,                      /* character number, location */
        !          53380:           1,32,  -74,32,      /* topleft row,col, and botleft row,col */
        !          53381:           { 28,   75, 3,138, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          53382:             "\xfe\x0a\xe0\x4f\xea\xe0\x4f\xca\xe0\x4b\xe0\x30\xf3"
        !          53383:             "\x1a\xe0\x30\x1b\xe0\x20\xf1\x2a\xe0\x20\x2b\xe0\x10"
        !          53384:             "\xf1\x3a\xe0\x10\xf1\x4a\xe0\xf1\x5a\xd0\x6a\xe0\x4b"
        !          53385:             "\xe0\x4a\xe0\x5a\xe0\x5a\xe0\x4b\xe0\x4b\xe0\x4b\xe0"
        !          53386:             "\x4b\xe0\x4b\xe0\x4b\xe0\x4b\xe0\x5b\xe0\x4a\xe0\x68"
        !          53387:             "\xe0\x77\xe0\x95" }  },
        !          53388:       /* --- pixel bitmap for cmex600 char#59 \rightbracebot --- */
        !          53389:       {  59,64194,                      /* character number, location */
        !          53390:           1,14,  -74,14,      /* topleft row,col, and botleft row,col */
        !          53391:           { 28,   75, 3,139, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          53392:             "\xfe\xe0\x4a\xfe\xe0\x4a\xfc\xe0\x4a\xe0\x3b\xf3\xe0"
        !          53393:             "\x3a\x10\xe0\x2b\x10\xf1\xe0\x2a\x20\xe0\x1b\x20\xf1"
        !          53394:             "\xe0\x1a\x30\xf1\xea\x40\xf1\xda\x50\xca\xe0\x3b\xe0"
        !          53395:             "\x3a\xe0\x3a\xe0\x3a\xe0\x3b\xe0\x2b\xe0\x2b\xe0\x2b"
        !          53396:             "\xe0\x2b\xe0\x2b\xe0\x2b\xe0\x1b\xe0\x3a\xe0\x48\xe0"
        !          53397:             "\x67\xe0\x75\xe0\x90" }  },
        !          53398:       /* --- pixel bitmap for cmex600 char#60 \leftbracemid --- */
        !          53399:       {  60,56080,                      /* character number, location */
        !          53400:           1,14,  -150,14,     /* topleft row,col, and botleft row,col */
        !          53401:           { 28,  151, 3,256, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          53402:             "\xfe\xe0\x4a\xfe\xe0\x4a\xfd\xe0\x4a\xf4\xe0\x3a\x10"
        !          53403:             "\xf2\xe0\x2a\x20\xf1\xe0\x1a\x30\xe0\x19\x40\xf1\xea"
        !          53404:             "\x40\xda\xe0\x49\xe0\x4a\xe0\x49\xe0\x4a\xe0\x49\xe0"
        !          53405:             "\x49\xe0\x49\xe0\x4a\xe0\x49\xe0\x49\xe0\x49\xe0\x49"
        !          53406:             "\xe0\x49\xe0\x49\xe0\x39\xe0\x49\xe0\x57\xe0\x76\xe0"
        !          53407:             "\x87\xe0\x79\xe0\x69\xe0\x79\xe0\x69\xe0\x69\xe0\x69"
        !          53408:             "\xe0\x69\xe0\x69\xe0\x5a\xe0\x59\xe0\x69\xe0\x69\xe0"
        !          53409:             "\x5a\xe0\x59\xe0\x5a\xe0\x59\xe0\x5a\x50\xf1\xea\x40"
        !          53410:             "\xe0\x19\x40\xf1\xe0\x1a\x30\xf2\xe0\x2a\x20\xf4\xe0"
        !          53411:             "\x3a\x10\xfe\xe0\x4a\xfe\xe0\x4a\xfd\xe0\x4a" }  },
        !          53412:       /* --- pixel bitmap for cmex600 char#61 \rightbracemid --- */
        !          53413:       {  61,65269,                      /* character number, location */
        !          53414:           1,32,  -150,32,     /* topleft row,col, and botleft row,col */
        !          53415:           { 28,  151, 3,257, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          53416:             "\xfe\x0a\xe0\x4f\xea\xe0\x4f\xda\xe0\x40\xf4\x1a\xe0"
        !          53417:             "\x30\xf2\x2a\xe0\x20\xf1\x3a\xe0\x10\x49\xe0\x10\xf1"
        !          53418:             "\x4a\xe0\x5a\xe0\x59\xe0\x5a\xe0\x59\xe0\x5a\xe0\x59"
        !          53419:             "\xe0\x69\xe0\x69\xe0\x5a\xe0\x59\xe0\x69\xe0\x69\xe0"
        !          53420:             "\x69\xe0\x69\xe0\x69\xe0\x79\xe0\x69\xe0\x77\xe0\x86"
        !          53421:             "\xe0\x77\xe0\x59\xe0\x49\xe0\x39\xe0\x49\xe0\x49\xe0"
        !          53422:             "\x49\xe0\x49\xe0\x49\xe0\x4a\xe0\x49\xe0\x49\xe0\x49"
        !          53423:             "\xe0\x4a\xe0\x49\xe0\x4a\xe0\x49\xe0\x4a\xd0\xf1\x4a"
        !          53424:             "\xe0\x49\xe0\x10\xf1\x3a\xe0\x10\xf2\x2a\xe0\x20\xf4"
        !          53425:             "\x1a\xe0\x3f\xea\xe0\x4f\xea\xe0\x4f\xda\xe0\x40" }  },
        !          53426:       /* --- pixel bitmap for cmex600 char#62 \leftbracebar --- */
        !          53427:       {  62,57170,                      /* character number, location */
        !          53428:           1,32,  -26,32,      /* topleft row,col, and botleft row,col */
        !          53429:           { 10,   27, 3, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          53430:             "\xfe\x0a\x0f\xba" }  },
        !          53431:       /* --- pixel bitmap for cmex600 char#63 (noname) --- */
        !          53432:       {  63,88479,                      /* character number, location */
        !          53433:           1,26,  -51,26,      /* topleft row,col, and botleft row,col */
        !          53434:           {  4,   52, 2, 4, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          53435:             "\xff\x33\x00\x04" }  },
        !          53436:       /* --- pixel bitmap for cmex600 char#64 \leftparenbot --- */
        !          53437:       {  64, 6171,                      /* character number, location */
        !          53438:           4,24,  -145,24,     /* topleft row,col, and botleft row,col */
        !          53439:           { 47,  149, 3,504, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          53440:             "\xfe\x09\xe0\xe0\xaf\x89\xe0\xe0\xa0\x18\xe0\xe0\xa0"
        !          53441:             "\xfc\x19\xe0\xe0\x90\xf1\x28\xe0\xe0\x90\xf7\x29\xe0"
        !          53442:             "\xe0\x80\xf1\x38\xe0\xe0\x80\xf5\x39\xe0\xe0\x70\xf1"
        !          53443:             "\x48\xe0\xe0\x70\xf3\x49\xe0\xe0\x60\xf2\x58\xe0\xe0"
        !          53444:             "\x60\xf2\x59\xe0\xe0\x50\xf2\x68\xe0\xe0\x50\xf1\x69"
        !          53445:             "\xe0\xe0\x40\xf2\x78\xe0\xe0\x40\x79\xe0\xe0\x30\xf2"
        !          53446:             "\x88\xe0\xe0\x30\x89\xe0\xe0\x20\xf2\x98\xe0\xe0\x20"
        !          53447:             "\x99\xe0\xe0\x10\xf2\xa8\xe0\xe0\x10\xf3\xb8\xe0\xe0"
        !          53448:             "\xf2\xc8\xe0\xd0\xf2\xd8\xe0\xc0\xf2\xe8\xe0\xb0\xf1"
        !          53449:             "\xe0\x18\xe0\xa0\xe0\x27\xe0\xa0\xf1\xe0\x28\xe0\x90"
        !          53450:             "\xe0\x37\xe0\xe0\xc8\xe0\xe0\xc7\xe0\x80\xf1\xe0\x48"
        !          53451:             "\xe0\x70\xe0\x57\xe0\xe0\xc8\xe0\xe0\xc7\xe0\xe0\xc8"
        !          53452:             "\xe0\x50\xf1\xe0\x77\xe0\x50\xf1\xe0\x87\xe0\x40\xf1"
        !          53453:             "\xe0\x97\xe0\x30\xf1\xe0\xa7\xe0\x20\xf1\xe0\xb7\xe0"
        !          53454:             "\x10\xf1\xe0\xc7\xe0\xe0\xd7\xe0\xe0\xd6\xe0\xe0\xd7"
        !          53455:             "\xc0\xf1\xe0\xe0\x17\xb0\xe0\xe0\x27\xe0\xe0\xd6\xe0"
        !          53456:             "\xe0\xd7\xe0\xe0\xd7\xe0\xe0\xd6\xe0\xe0\xd7\xe0\xe0"
        !          53457:             "\xd7\xe0\xe0\xd6\xe0\xe0\xe6\xe0\xe0\xd7\xe0\xe0\xd6"
        !          53458:             "\xe0\xe0\xe6\x30\xf1\xe0\xe0\xb6\x20\xe0\xe0\xc6\xe0"
        !          53459:             "\xe0\xe6\xe0\xe0\xe5" }  },
        !          53460:       /* --- pixel bitmap for cmex600 char#65 \rightparenbot --- */
        !          53461:       {  65,13492,                      /* character number, location */
        !          53462:           4, 2,  -145, 2,     /* topleft row,col, and botleft row,col */
        !          53463:           { 47,  149, 3,503, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          53464:             "\xfe\xe0\xe0\xa9\xf8\xe0\xe0\xa9\xe0\xe0\xa8\x10\xfc"
        !          53465:             "\xe0\xe0\x99\x10\xf1\xe0\xe0\x98\x20\xf7\xe0\xe0\x89"
        !          53466:             "\x20\xf1\xe0\xe0\x88\x30\xf5\xe0\xe0\x79\x30\xf1\xe0"
        !          53467:             "\xe0\x78\x40\xf3\xe0\xe0\x69\x40\xf2\xe0\xe0\x68\x50"
        !          53468:             "\xf2\xe0\xe0\x59\x50\xf2\xe0\xe0\x58\x60\xf1\xe0\xe0"
        !          53469:             "\x49\x60\xf2\xe0\xe0\x48\x70\xe0\xe0\x39\x70\xf2\xe0"
        !          53470:             "\xe0\x38\x80\xe0\xe0\x29\x80\xf2\xe0\xe0\x28\x90\xe0"
        !          53471:             "\xe0\x19\x90\xf2\xe0\xe0\x18\xa0\xf3\xe0\xe8\xb0\xf2"
        !          53472:             "\xe0\xd8\xc0\xf2\xe0\xc8\xd0\xf2\xe0\xb8\xe0\xf1\xe0"
        !          53473:             "\xa8\xe0\x10\xe0\xa7\xe0\x20\xf1\xe0\x98\xe0\x20\xe0"
        !          53474:             "\x97\xe0\xe0\xb8\xe0\xe0\xb7\xe0\x40\xf1\xe0\x78\xe0"
        !          53475:             "\x40\xe0\x77\xe0\xe0\xb8\xe0\xe0\xb7\xe0\xe0\xb8\xe0"
        !          53476:             "\x60\xf1\xe0\x57\xe0\x70\xf1\xe0\x47\xe0\x80\xf1\xe0"
        !          53477:             "\x37\xe0\x90\xf1\xe0\x27\xe0\xa0\xf1\xe0\x17\xe0\xb0"
        !          53478:             "\xf1\xe7\xe0\xc0\xd7\xe0\xe0\xc6\xe0\xe0\xc7\xe0\xe0"
        !          53479:             "\xf1\xb7\xe0\xe0\x10\xa7\xe0\xe0\xc6\xe0\xe0\xc7\xe0"
        !          53480:             "\xe0\xb7\xe0\xe0\xc6\xe0\xe0\xc7\xe0\xe0\xb7\xe0\xe0"
        !          53481:             "\xc6\xe0\xe0\xc6\xe0\xe0\xc7\xe0\xe0\xc6\xe0\xe0\xc6"
        !          53482:             "\xe0\xe0\xa0\xf1\x26\xe0\xe0\xb0\x16\xe0\xe0\xc6\xe0"
        !          53483:             "\xe0\xd5\xe0\xe0\xe9" }  },
        !          53484:       /* --- pixel bitmap for cmex600 char#66 \leftparenbar --- */
        !          53485:       {  66, 7265,                      /* character number, location */
        !          53486:           1,24,  -51,24,      /* topleft row,col, and botleft row,col */
        !          53487:           {  9,   52, 2, 4, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          53488:             "\xff\x33\x00\x09" }  },
        !          53489:       /* --- pixel bitmap for cmex600 char#67 \rightparenbar --- */
        !          53490:       {  67,14587,                      /* character number, location */
        !          53491:           1,40,  -51,40,      /* topleft row,col, and botleft row,col */
        !          53492:           {  9,   52, 2, 4, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          53493:             "\xff\x33\x00\x09" }  },
        !          53494:       /* --- pixel bitmap for cmex600 char#68 \Big< --- */
        !          53495:       {  68,69413,                      /* character number, location */
        !          53496:           3,10,  -146,10,     /* topleft row,col, and botleft row,col */
        !          53497:           { 34,  149, 3,497, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          53498:             "\xe0\xe0\x32\xe0\xe0\x34\xf1\xe0\xe0\x15\xf1\xe0\xe5"
        !          53499:             "\x10\xf2\xe0\xd5\x20\xf1\xe0\xc5\x30\xf2\xe0\xb5\x40"
        !          53500:             "\xf1\xe0\xa5\x50\xf2\xe0\x95\x60\xf1\xe0\x85\x70\xf2"
        !          53501:             "\xe0\x75\x80\xf1\xe0\x65\x90\xf2\xe0\x55\xa0\xf1\xe0"
        !          53502:             "\x45\xb0\xf2\xe0\x35\xc0\xf1\xe0\x25\xd0\xf1\xe0\x15"
        !          53503:             "\xe0\xf2\xe5\xe0\x10\xf1\xd5\xe0\x20\xf2\xc5\xe0\x30"
        !          53504:             "\xf1\xb5\xe0\x40\xf2\xa5\xe0\x50\xf1\x95\xe0\x60\xf2"
        !          53505:             "\x85\xe0\x70\xf1\x75\xe0\x80\xf2\x65\xe0\x90\xf1\x55"
        !          53506:             "\xe0\xa0\xf2\x45\xe0\xb0\xf1\x35\xe0\xc0\xf2\x25\xe0"
        !          53507:             "\xd0\xf1\x15\xe0\xef\x25\xe0\xe0\x10\xf1\x15\xe0\xe0"
        !          53508:             "\xf2\x25\xe0\xd0\xf1\x35\xe0\xc0\xf2\x45\xe0\xb0\xf1"
        !          53509:             "\x55\xe0\xa0\xf2\x65\xe0\x90\xf1\x75\xe0\x80\xf2\x85"
        !          53510:             "\xe0\x70\xf1\x95\xe0\x60\xf2\xa5\xe0\x50\xf1\xb5\xe0"
        !          53511:             "\x40\xf2\xc5\xe0\x30\xf1\xd5\xe0\x20\xf2\xe5\xe0\x10"
        !          53512:             "\xf1\xe0\x15\xe0\xf1\xe0\x25\xd0\xf2\xe0\x35\xc0\xf1"
        !          53513:             "\xe0\x45\xb0\xf2\xe0\x55\xa0\xf1\xe0\x65\x90\xf2\xe0"
        !          53514:             "\x75\x80\xf1\xe0\x85\x70\xf2\xe0\x95\x60\xf1\xe0\xa5"
        !          53515:             "\x50\xf2\xe0\xb5\x40\xf1\xe0\xc5\x30\xf2\xe0\xd5\x20"
        !          53516:             "\xf1\xe0\xe5\x10\xf1\xe0\xe0\x15\xe0\xe0\x24\xe0\xe0"
        !          53517:             "\x32\x10" }  },
        !          53518:       /* --- pixel bitmap for cmex600 char#69 \Big> --- */
        !          53519:       {  69,73351,                      /* character number, location */
        !          53520:           3, 7,  -146, 7,     /* topleft row,col, and botleft row,col */
        !          53521:           { 34,  149, 3,497, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          53522:             "\x13\xe0\xe0\x24\xe0\xe0\x2f\x15\xe0\xe0\x10\xf1\x15"
        !          53523:             "\xe0\xe0\xf2\x25\xe0\xd0\xf1\x35\xe0\xc0\xf2\x45\xe0"
        !          53524:             "\xb0\xf1\x55\xe0\xa0\xf2\x65\xe0\x90\xf1\x75\xe0\x80"
        !          53525:             "\xf2\x85\xe0\x70\xf1\x95\xe0\x60\xf2\xa5\xe0\x50\xf1"
        !          53526:             "\xb5\xe0\x40\xf2\xc5\xe0\x30\xf1\xd5\xe0\x20\xf1\xe5"
        !          53527:             "\xe0\x10\xf2\xe0\x15\xe0\xf1\xe0\x25\xd0\xf2\xe0\x35"
        !          53528:             "\xc0\xf1\xe0\x45\xb0\xf2\xe0\x55\xa0\xf1\xe0\x65\x90"
        !          53529:             "\xf2\xe0\x75\x80\xf1\xe0\x85\x70\xf2\xe0\x95\x60\xf1"
        !          53530:             "\xe0\xa5\x50\xf2\xe0\xb5\x40\xf1\xe0\xc5\x30\xf2\xe0"
        !          53531:             "\xd5\x20\xf1\xe0\xe5\x10\xf2\xe0\xe0\x15\xf1\xe0\xe5"
        !          53532:             "\x10\xf2\xe0\xd5\x20\xf1\xe0\xc5\x30\xf2\xe0\xb5\x40"
        !          53533:             "\xf1\xe0\xa5\x50\xf2\xe0\x95\x60\xf1\xe0\x85\x70\xf2"
        !          53534:             "\xe0\x75\x80\xf1\xe0\x65\x90\xf2\xe0\x55\xa0\xf1\xe0"
        !          53535:             "\x45\xb0\xf2\xe0\x35\xc0\xf1\xe0\x25\xd0\xf2\xe0\x15"
        !          53536:             "\xe0\xf1\xe5\xe0\x10\xf1\xd5\xe0\x20\xf2\xc5\xe0\x30"
        !          53537:             "\xf1\xb5\xe0\x40\xf2\xa5\xe0\x50\xf1\x95\xe0\x60\xf2"
        !          53538:             "\x85\xe0\x70\xf1\x75\xe0\x80\xf2\x65\xe0\x90\xf1\x55"
        !          53539:             "\xe0\xa0\xf2\x45\xe0\xb0\xf1\x35\xe0\xc0\xf2\x25\xe0"
        !          53540:             "\xd0\xf1\x15\xe0\xef\x15\xe0\xe0\x14\xe0\xe0\x33\xe0"
        !          53541:             "\xe0\x20" }  },
        !          53542:       /* --- pixel bitmap for cmex600 char#70 \bigsqcup --- */
        !          53543:       {  70,101828,                     /* character number, location */
        !          53544:           0, 5,  -83, 5,      /* topleft row,col, and botleft row,col */
        !          53545:           { 59,   83, 2,19, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          53546:             "\x01\x04\x31\x04\x01\xff\x4b\x06\x2f\x06\x00\xff\x03"
        !          53547:             "\x3b\x01\x3a\x02\x38\x01" }  },
        !          53548:       /* --- pixel bitmap for cmex600 char#71 \Bigsqcup --- */
        !          53549:       {  71,103005,                     /* character number, location */
        !          53550:           0, 5,  -116, 5,     /* topleft row,col, and botleft row,col */
        !          53551:           { 82,  116, 2,21, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          53552:             "\xff\x01\x01\x05\x46\x05\x01\xff\x6a\x07\x44\x07\x00"
        !          53553:             "\xff\x04\x52\x01\x50\x03\x4f\x01" }  },
        !          53554:       /* --- pixel bitmap for cmex600 char#72 \oint --- */
        !          53555:       {  72,126952,                     /* character number, location */
        !          53556:           0, 5,  -92, 5,      /* topleft row,col, and botleft row,col */
        !          53557:           { 45,   92, 3,413, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          53558:             "\xe0\xe0\x56\xe0\xe0\x9a\xe0\xe0\x55\x54\xe0\xe0\x24"
        !          53559:             "\x93\xe0\xe5\x84\xe0\xe4\x77\xe0\xc5\x77\xf1\xe0\xb5"
        !          53560:             "\x87\xe0\xa6\x87\xe0\xa5\xb3\xe0\xc5\xe0\x20\xf4\xe0"
        !          53561:             "\x96\xe0\x20\xf6\xe0\x86\xe0\x30\xf4\xe0\x77\xe0\x30"
        !          53562:             "\xe0\x76\xe0\xe0\x98\xe0\xe0\x6d\xe0\xe0\x3e\x01\xe0"
        !          53563:             "\xee\x05\xe0\xbe\x07\xe0\x96\x37\x16\xe0\x76\x47\x26"
        !          53564:             "\xe0\x56\x57\x36\xe0\x45\x67\x45\x90\xf1\x85\x77\x55"
        !          53565:             "\x80\x84\x77\x74\x80\xf1\x75\x77\x75\x70\xf3\x74\x87"
        !          53566:             "\x84\x70\xf1\x75\x77\x75\x70\x84\x77\x74\x80\xf1\x85"
        !          53567:             "\x57\x75\x80\x95\x47\x65\xe0\x46\x37\x56\xe0\x56\x27"
        !          53568:             "\x46\xe0\x76\x17\x36\xe0\x9e\x07\xe0\xbe\x05\xe0\xee"
        !          53569:             "\x01\xe0\xe0\x3d\xe0\xe0\x68\xe0\xe0\x96\xe0\x70\xf4"
        !          53570:             "\xe0\x37\xe0\x70\xf6\xe0\x36\xe0\x80\xf4\xe0\x26\xe0"
        !          53571:             "\x90\xe0\x25\xe0\xc3\xb5\xe0\xa7\x86\xe0\xaf\x17\x85"
        !          53572:             "\xe0\xb7\x75\xe0\xc7\x74\xe0\xe4\x85\xe0\xe3\x94\xe0"
        !          53573:             "\xe0\x24\x55\xe0\xe0\x5a\xe0\xe0\x96\xe0\xe0\x50" }  },
        !          53574:       /* --- pixel bitmap for cmex600 char#73 \Bigoint --- */
        !          53575:       {  73,128246,                     /* character number, location */
        !          53576:           0, 5,  -184, 5,     /* topleft row,col, and botleft row,col */
        !          53577:           { 73,  184, 2,585, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          53578:             "\x3d\x06\x41\x0a\x3e\x05\x04\x04\x3b\x05\x07\x03\x39"
        !          53579:             "\x05\x06\x05\x38\x05\x06\x07\x37\x05\x05\x08\x36\x05"
        !          53580:             "\x06\x08\x35\x06\x06\x08\x35\x05\x07\x08\x34\x06\x08"
        !          53581:             "\x06\x35\x06\x09\x04\x02\x00\xff\x02\x33\x06\x10\x00"
        !          53582:             "\xff\x01\x32\x06\x11\x00\x31\x07\x11\x00\xff\x01\x31"
        !          53583:             "\x06\x12\x00\xff\x01\x30\x07\x12\x00\xff\x01\x30\x06"
        !          53584:             "\x13\x00\xff\x01\x2f\x07\x13\x00\x2f\x06\x14\x00\xff"
        !          53585:             "\x03\x2e\x07\x14\x00\xff\x03\x2d\x07\x15\x00\x2c\x08"
        !          53586:             "\x15\x00\xff\x02\x2c\x07\x16\x00\xff\x01\x2b\x08\x16"
        !          53587:             "\x00\xff\x02\x2b\x07\x17\x00\xff\x01\x2a\x08\x17\x00"
        !          53588:             "\xff\x01\x2a\x07\x18\x00\xff\x02\x29\x08\x18\x00\x29"
        !          53589:             "\x07\x19\x00\xff\x03\x28\x08\x19\x00\x27\x09\x19\x00"
        !          53590:             "\xff\x03\x27\x08\x1a\x00\xff\x01\x26\x09\x1a\x00\xff"
        !          53591:             "\x01\x26\x08\x1b\x00\xff\x02\x25\x09\x1b\x00\x25\x08"
        !          53592:             "\x3c\x0d\x39\x10\x37\x13\x34\x17\x31\x09\x03\x0d\x2e"
        !          53593:             "\x08\x06\x0f\x2b\x07\x07\x09\x01\x07\x29\x06\x09\x09"
        !          53594:             "\x03\x06\x27\x06\x0a\x09\x04\x06\x25\x06\x0b\x09\x05"
        !          53595:             "\x06\x24\x05\x0b\x0a\x06\x05\x23\x05\x0c\x09\x08\x05"
        !          53596:             "\x21\x06\x0c\x09\x08\x06\x20\x05\x0d\x09\x09\x05\x1f"
        !          53597:             "\x05\x0e\x09\x0a\x05\x1e\x05\x0d\x0a\x0a\x05\x0f\x00"
        !          53598:             "\xff\x01\x0f\x04\x0e\x09\x0c\x04\x0f\x00\xff\x01\x0e"
        !          53599:             "\x05\x0e\x09\x0c\x05\x0e\x00\x0e\x04\x0e\x0a\x0d\x04"
        !          53600:             "\x0e\x00\xff\x03\x0e\x04\x0e\x09\x0e\x04\x0e\x00\x0e"
        !          53601:             "\x04\x0d\x0a\x0e\x04\x0e\x00\xff\x01\x0e\x05\x0c\x09"
        !          53602:             "\x0e\x05\x0e\x00\xff\x01\x0f\x04\x0c\x09\x0e\x04\x0f"
        !          53603:             "\x00\x0f\x05\x0a\x0a\x0d\x05\x1e\x05\x0a\x09\x0e\x05"
        !          53604:             "\x1f\x05\x09\x09\x0d\x05\x20\x06\x08\x09\x0c\x06\x21"
        !          53605:             "\x05\x08\x09\x0c\x05\x23\x05\x06\x0a\x0b\x05\x24\x06"
        !          53606:             "\x05\x09\x0b\x06\x25\x06\x04\x09\x0a\x06\x27\x06\x03"
        !          53607:             "\x09\x09\x06\x29\x07\x01\x09\x07\x07\x2b\x0f\x06\x08"
        !          53608:             "\x2e\x0d\x03\x09\x31\x17\x34\x13\x37\x10\x39\x0d\x3c"
        !          53609:             "\x08\x25\x00\xff\x02\x1b\x09\x25\x00\xff\x01\x1b\x08"
        !          53610:             "\x26\x00\xff\x01\x1a\x09\x26\x00\xff\x03\x1a\x08\x27"
        !          53611:             "\x00\x19\x09\x27\x00\xff\x03\x19\x08\x28\x00\x19\x07"
        !          53612:             "\x29\x00\xff\x02\x18\x08\x29\x00\xff\x01\x18\x07\x2a"
        !          53613:             "\x00\xff\x01\x17\x08\x2a\x00\xff\x02\x17\x07\x2b\x00"
        !          53614:             "\xff\x01\x16\x08\x2b\x00\xff\x02\x16\x07\x2c\x00\x15"
        !          53615:             "\x08\x2c\x00\xff\x03\x15\x07\x2d\x00\xff\x03\x14\x07"
        !          53616:             "\x2e\x00\x14\x06\x2f\x00\xff\x01\x13\x07\x2f\x00\xff"
        !          53617:             "\x01\x13\x06\x30\x00\xff\x01\x12\x07\x30\x00\xff\x01"
        !          53618:             "\x12\x06\x31\x00\x11\x07\x31\x00\xff\x01\x11\x06\x32"
        !          53619:             "\x00\xff\x02\x10\x06\x33\x00\x02\x04\x09\x06\x35\x06"
        !          53620:             "\x08\x06\x34\x08\x07\x05\x35\x08\x06\x06\x35\x08\x06"
        !          53621:             "\x05\x36\x08\x05\x05\x37\x07\x06\x05\x38\x05\x06\x05"
        !          53622:             "\x39\x03\x07\x05\x3b\x04\x04\x05\x3e\x0a\x41\x06\x3d" }  },
        !          53623:       /* --- pixel bitmap for cmex600 char#74 \bigodot --- */
        !          53624:       {  74,104483,                     /* character number, location */
        !          53625:           0, 5,  -83, 5,      /* topleft row,col, and botleft row,col */
        !          53626:           { 82,   83, 2,297, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          53627:             "\x22\x0e\x40\x16\x39\x1c\x34\x20\x30\x24\x2c\x28\x28"
        !          53628:             "\x10\x0c\x10\x25\x0d\x14\x0d\x22\x0c\x1a\x0c\x1f\x0b"
        !          53629:             "\x1e\x0b\x1d\x0a\x22\x0a\x1b\x09\x26\x09\x19\x09\x28"
        !          53630:             "\x09\x17\x08\x2c\x08\x15\x08\x2e\x08\x13\x08\x30\x08"
        !          53631:             "\x11\x08\x32\x08\x10\x07\x34\x07\x0f\x07\x36\x07\x07"
        !          53632:             "\x00\xff\x01\x06\x07\x38\x07\x06\x00\x05\x07\x3a\x07"
        !          53633:             "\x0a\x06\x3c\x06\x09\x07\x3c\x07\x08\x06\x3e\x06\x07"
        !          53634:             "\x07\x3e\x07\x06\x06\x40\x06\x05\x07\x40\x07\x02\x00"
        !          53635:             "\xff\x01\x02\x06\x42\x06\x02\x00\x01\x07\x42\x07\x01"
        !          53636:             "\x00\xff\x03\x01\x06\x44\x06\x01\x07\x44\x0d\x20\x06"
        !          53637:             "\x20\x0c\x1f\x08\x1f\x06\x00\xff\x01\x06\x1e\x0a\x1e"
        !          53638:             "\x06\x00\xff\x02\x06\x1d\x0c\x1d\x06\x00\xff\x01\x06"
        !          53639:             "\x1e\x0a\x1e\x06\x00\x06\x1f\x08\x1f\x0c\x20\x06\x20"
        !          53640:             "\x0d\x44\x07\xff\x03\x01\x06\x44\x06\x01\x00\x01\x07"
        !          53641:             "\x42\x07\x01\x00\xff\x01\x02\x06\x42\x06\x02\x00\x02"
        !          53642:             "\x07\x40\x07\x05\x06\x40\x06\x06\x07\x3e\x07\x07\x06"
        !          53643:             "\x3e\x06\x08\x07\x3c\x07\x09\x06\x3c\x06\x0a\x07\x3a"
        !          53644:             "\x07\x05\x00\xff\x01\x06\x07\x38\x07\x06\x00\x07\x07"
        !          53645:             "\x36\x07\x0f\x07\x34\x07\x10\x08\x32\x08\x11\x08\x30"
        !          53646:             "\x08\x13\x08\x2e\x08\x15\x08\x2c\x08\x17\x09\x28\x09"
        !          53647:             "\x19\x09\x26\x09\x1b\x0a\x22\x0a\x1d\x0b\x1e\x0b\x1f"
        !          53648:             "\x0c\x1a\x0c\x22\x0d\x14\x0d\x25\x10\x0c\x10\x28\x28"
        !          53649:             "\x2c\x24\x30\x20\x34\x1c\x39\x16\x40\x0e\x22" }  },
        !          53650:       /* --- pixel bitmap for cmex600 char#75 \Bigodot --- */
        !          53651:       {  75,105930,                     /* character number, location */
        !          53652:           0, 5,  -116, 5,     /* topleft row,col, and botleft row,col */
        !          53653:           { 115,  116, 2,417, (pixbyte *)/* width,ht, fmt,pixsz,map.. */
        !          53654:             "\x32\x0f\x5e\x1b\x55\x21\x4f\x27\x49\x2d\x44\x31\x40"
        !          53655:             "\x35\x3c\x16\x0d\x16\x38\x12\x19\x12\x35\x10\x1f\x10"
        !          53656:             "\x32\x0f\x25\x0f\x2f\x0e\x29\x0e\x2d\x0d\x2d\x0d\x2a"
        !          53657:             "\x0d\x31\x0d\x27\x0c\x35\x0c\x25\x0c\x37\x0c\x23\x0b"
        !          53658:             "\x3b\x0b\x21\x0b\x3d\x0b\x1f\x0b\x3f\x0b\x1d\x0a\x43"
        !          53659:             "\x0a\x1c\x09\x45\x09\x1b\x09\x47\x09\x19\x09\x49\x09"
        !          53660:             "\x17\x09\x4b\x09\x16\x08\x4d\x08\x15\x09\x4d\x09\x13"
        !          53661:             "\x09\x4f\x09\x12\x08\x51\x08\x11\x08\x53\x08\x0f\x09"
        !          53662:             "\x53\x09\x0e\x08\x55\x08\x07\x00\xff\x01\x06\x08\x57"
        !          53663:             "\x08\x06\x00\xff\x01\x05\x08\x59\x08\x05\x00\xff\x01"
        !          53664:             "\x04\x08\x5b\x08\x04\x00\x04\x07\x5d\x07\x04\x00\xff"
        !          53665:             "\x01\x03\x08\x5d\x08\x03\x00\x03\x07\x5f\x07\x03\x00"
        !          53666:             "\xff\x01\x02\x08\x5f\x08\x02\x00\x02\x07\x61\x07\x02"
        !          53667:             "\x00\xff\x01\x01\x08\x61\x08\x01\x00\xff\x03\x01\x07"
        !          53668:             "\x63\x07\x01\x08\x63\x10\x2f\x05\x2f\x0f\x2e\x09\x2e"
        !          53669:             "\x07\x00\xff\x01\x07\x2d\x0b\x2d\x07\x00\xff\x05\x07"
        !          53670:             "\x2c\x0d\x2c\x07\x00\xff\x01\x07\x2d\x0b\x2d\x07\x00"
        !          53671:             "\x07\x2e\x09\x2e\x0f\x2f\x05\x2f\x10\x63\x08\xff\x03"
        !          53672:             "\x01\x07\x63\x07\x01\x00\xff\x01\x01\x08\x61\x08\x01"
        !          53673:             "\x00\x02\x07\x61\x07\x02\x00\xff\x01\x02\x08\x5f\x08"
        !          53674:             "\x02\x00\x03\x07\x5f\x07\x03\x00\xff\x01\x03\x08\x5d"
        !          53675:             "\x08\x03\x00\x04\x07\x5d\x07\x04\x00\xff\x01\x04\x08"
        !          53676:             "\x5b\x08\x04\x00\xff\x01\x05\x08\x59\x08\x05\x00\xff"
        !          53677:             "\x01\x06\x08\x57\x08\x06\x00\x07\x08\x55\x08\x0e\x09"
        !          53678:             "\x53\x09\x0f\x08\x53\x08\x11\x08\x51\x08\x12\x09\x4f"
        !          53679:             "\x09\x13\x09\x4d\x09\x15\x08\x4d\x08\x16\x09\x4b\x09"
        !          53680:             "\x17\x09\x49\x09\x19\x09\x47\x09\x1b\x09\x45\x09\x1c"
        !          53681:             "\x0a\x43\x0a\x1d\x0b\x3f\x0b\x1f\x0b\x3d\x0b\x21\x0b"
        !          53682:             "\x3b\x0b\x23\x0c\x37\x0c\x25\x0c\x35\x0c\x27\x0d\x31"
        !          53683:             "\x0d\x2a\x0d\x2d\x0d\x2d\x0e\x29\x0e\x2f\x0f\x25\x0f"
        !          53684:             "\x32\x10\x1f\x10\x35\x12\x19\x12\x38\x16\x0d\x16\x3c"
        !          53685:             "\x35\x40\x31\x44\x2d\x49\x27\x4f\x21\x55\x1b\x5e\x0f"
        !          53686:             "\x32" }  },
        !          53687:       /* --- pixel bitmap for cmex600 char#76 \bigoplus --- */
        !          53688:       {  76,107371,                     /* character number, location */
        !          53689:           0, 5,  -83, 5,      /* topleft row,col, and botleft row,col */
        !          53690:           { 82,   83, 2,377, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          53691:             "\x22\x0e\x40\x16\x39\x1c\x34\x20\x30\x24\x2c\x28\x28"
        !          53692:             "\x10\x03\x06\x03\x10\x25\x0d\x07\x06\x07\x0d\x22\x0c"
        !          53693:             "\x0a\x06\x0a\x0c\x1f\x0b\x0c\x06\x0c\x0b\x1d\x0a\x0e"
        !          53694:             "\x06\x0e\x0a\x1b\x09\x10\x06\x10\x09\x19\x09\x11\x06"
        !          53695:             "\x11\x09\x17\x08\x13\x06\x13\x08\x15\x08\x14\x06\x14"
        !          53696:             "\x08\x13\x08\x15\x06\x15\x08\x11\x08\x16\x06\x16\x08"
        !          53697:             "\x10\x07\x17\x06\x17\x07\x0f\x07\x18\x06\x18\x07\x07"
        !          53698:             "\x00\xff\x01\x06\x07\x19\x06\x19\x07\x06\x00\x05\x07"
        !          53699:             "\x1a\x06\x1a\x07\x0a\x06\x1b\x06\x1b\x06\x09\x07\x1b"
        !          53700:             "\x06\x1b\x07\x08\x06\x1c\x06\x1c\x06\x07\x07\x1c\x06"
        !          53701:             "\x1c\x07\x06\x06\x1d\x06\x1d\x06\x05\x07\x1d\x06\x1d"
        !          53702:             "\x07\x02\x00\xff\x01\x02\x06\x1e\x06\x1e\x06\x02\x00"
        !          53703:             "\x01\x07\x1e\x06\x1e\x07\x01\x00\xff\x03\x01\x06\x1f"
        !          53704:             "\x06\x1f\x06\x01\x07\x1f\x06\x1f\x07\x00\xff\x01\x06"
        !          53705:             "\x20\x06\x20\x06\x00\xff\x05\x52\x00\xff\x02\x06\x20"
        !          53706:             "\x06\x20\x06\x00\x07\x1f\x06\x1f\x07\xff\x03\x01\x06"
        !          53707:             "\x1f\x06\x1f\x06\x01\x00\x01\x07\x1e\x06\x1e\x07\x01"
        !          53708:             "\x00\xff\x01\x02\x06\x1e\x06\x1e\x06\x02\x00\x02\x07"
        !          53709:             "\x1d\x06\x1d\x07\x05\x06\x1d\x06\x1d\x06\x06\x07\x1c"
        !          53710:             "\x06\x1c\x07\x07\x06\x1c\x06\x1c\x06\x08\x07\x1b\x06"
        !          53711:             "\x1b\x07\x09\x06\x1b\x06\x1b\x06\x0a\x07\x1a\x06\x1a"
        !          53712:             "\x07\x05\x00\xff\x01\x06\x07\x19\x06\x19\x07\x06\x00"
        !          53713:             "\x07\x07\x18\x06\x18\x07\x0f\x07\x17\x06\x17\x07\x10"
        !          53714:             "\x08\x16\x06\x16\x08\x11\x08\x15\x06\x15\x08\x13\x08"
        !          53715:             "\x14\x06\x14\x08\x15\x08\x13\x06\x13\x08\x17\x09\x11"
        !          53716:             "\x06\x11\x09\x19\x09\x10\x06\x10\x09\x1b\x0a\x0e\x06"
        !          53717:             "\x0e\x0a\x1d\x0b\x0c\x06\x0c\x0b\x1f\x0c\x0a\x06\x0a"
        !          53718:             "\x0c\x22\x0d\x07\x06\x07\x0d\x25\x10\x03\x06\x03\x10"
        !          53719:             "\x28\x28\x2c\x24\x30\x20\x34\x1c\x39\x16\x40\x0e\x22" }  },
        !          53720:       /* --- pixel bitmap for cmex600 char#77 \Bigoplus --- */
        !          53721:       {  77,108901,                     /* character number, location */
        !          53722:           0, 5,  -116, 5,     /* topleft row,col, and botleft row,col */
        !          53723:           { 115,  116, 2,541, (pixbyte *)/* width,ht, fmt,pixsz,map.. */
        !          53724:             "\x32\x0f\x5e\x1b\x55\x21\x4f\x27\x49\x2d\x44\x31\x40"
        !          53725:             "\x35\x3c\x16\x03\x07\x03\x16\x38\x12\x09\x07\x09\x12"
        !          53726:             "\x35\x10\x0c\x07\x0c\x10\x32\x0f\x0f\x07\x0f\x0f\x2f"
        !          53727:             "\x0e\x11\x07\x11\x0e\x2d\x0d\x13\x07\x13\x0d\x2a\x0d"
        !          53728:             "\x15\x07\x15\x0d\x27\x0c\x17\x07\x17\x0c\x25\x0c\x18"
        !          53729:             "\x07\x18\x0c\x23\x0b\x1a\x07\x1a\x0b\x21\x0b\x1b\x07"
        !          53730:             "\x1b\x0b\x1f\x0b\x1c\x07\x1c\x0b\x1d\x0a\x1e\x07\x1e"
        !          53731:             "\x0a\x1c\x09\x1f\x07\x1f\x09\x1b\x09\x20\x07\x20\x09"
        !          53732:             "\x19\x09\x21\x07\x21\x09\x17\x09\x22\x07\x22\x09\x16"
        !          53733:             "\x08\x23\x07\x23\x08\x15\x09\x23\x07\x23\x09\x13\x09"
        !          53734:             "\x24\x07\x24\x09\x12\x08\x25\x07\x25\x08\x11\x08\x26"
        !          53735:             "\x07\x26\x08\x0f\x09\x26\x07\x26\x09\x0e\x08\x27\x07"
        !          53736:             "\x27\x08\x07\x00\xff\x01\x06\x08\x28\x07\x28\x08\x06"
        !          53737:             "\x00\xff\x01\x05\x08\x29\x07\x29\x08\x05\x00\xff\x01"
        !          53738:             "\x04\x08\x2a\x07\x2a\x08\x04\x00\x04\x07\x2b\x07\x2b"
        !          53739:             "\x07\x04\x00\xff\x01\x03\x08\x2b\x07\x2b\x08\x03\x00"
        !          53740:             "\x03\x07\x2c\x07\x2c\x07\x03\x00\xff\x01\x02\x08\x2c"
        !          53741:             "\x07\x2c\x08\x02\x00\x02\x07\x2d\x07\x2d\x07\x02\x00"
        !          53742:             "\xff\x01\x01\x08\x2d\x07\x2d\x08\x01\x00\xff\x03\x01"
        !          53743:             "\x07\x2e\x07\x2e\x07\x01\xff\x01\x08\x2e\x07\x2e\x08"
        !          53744:             "\x00\xff\x01\x07\x2f\x07\x2f\x07\x00\xff\x06\x73\x00"
        !          53745:             "\xff\x02\x07\x2f\x07\x2f\x07\x00\xff\x01\x08\x2e\x07"
        !          53746:             "\x2e\x08\xff\x03\x01\x07\x2e\x07\x2e\x07\x01\x00\xff"
        !          53747:             "\x01\x01\x08\x2d\x07\x2d\x08\x01\x00\x02\x07\x2d\x07"
        !          53748:             "\x2d\x07\x02\x00\xff\x01\x02\x08\x2c\x07\x2c\x08\x02"
        !          53749:             "\x00\x03\x07\x2c\x07\x2c\x07\x03\x00\xff\x01\x03\x08"
        !          53750:             "\x2b\x07\x2b\x08\x03\x00\x04\x07\x2b\x07\x2b\x07\x04"
        !          53751:             "\x00\xff\x01\x04\x08\x2a\x07\x2a\x08\x04\x00\xff\x01"
        !          53752:             "\x05\x08\x29\x07\x29\x08\x05\x00\xff\x01\x06\x08\x28"
        !          53753:             "\x07\x28\x08\x06\x00\x07\x08\x27\x07\x27\x08\x0e\x09"
        !          53754:             "\x26\x07\x26\x09\x0f\x08\x26\x07\x26\x08\x11\x08\x25"
        !          53755:             "\x07\x25\x08\x12\x09\x24\x07\x24\x09\x13\x09\x23\x07"
        !          53756:             "\x23\x09\x15\x08\x23\x07\x23\x08\x16\x09\x22\x07\x22"
        !          53757:             "\x09\x17\x09\x21\x07\x21\x09\x19\x09\x20\x07\x20\x09"
        !          53758:             "\x1b\x09\x1f\x07\x1f\x09\x1c\x0a\x1e\x07\x1e\x0a\x1d"
        !          53759:             "\x0b\x1c\x07\x1c\x0b\x1f\x0b\x1b\x07\x1b\x0b\x21\x0b"
        !          53760:             "\x1a\x07\x1a\x0b\x23\x0c\x18\x07\x18\x0c\x25\x0c\x17"
        !          53761:             "\x07\x17\x0c\x27\x0d\x15\x07\x15\x0d\x2a\x0d\x13\x07"
        !          53762:             "\x13\x0d\x2d\x0e\x11\x07\x11\x0e\x2f\x0f\x0f\x07\x0f"
        !          53763:             "\x0f\x32\x10\x0c\x07\x0c\x10\x35\x12\x09\x07\x09\x12"
        !          53764:             "\x38\x16\x03\x07\x03\x16\x3c\x35\x40\x31\x44\x2d\x49"
        !          53765:             "\x27\x4f\x21\x55\x1b\x5e\x0f\x32" }  },
        !          53766:       /* --- pixel bitmap for cmex600 char#78 \bigotimes --- */
        !          53767:       {  78,110434,                     /* character number, location */
        !          53768:           0, 5,  -83, 5,      /* topleft row,col, and botleft row,col */
        !          53769:           { 82,   83, 2,447, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          53770:             "\x22\x0e\x40\x16\x39\x1c\x34\x20\x30\x24\x2c\x28\x28"
        !          53771:             "\x10\x0c\x10\x25\x0d\x14\x0d\x22\x0c\x1a\x0c\x1f\x0b"
        !          53772:             "\x1e\x0b\x1d\x0a\x22\x0a\x1b\x09\x26\x09\x19\x09\x28"
        !          53773:             "\x09\x17\x08\x2c\x08\x15\x08\x2e\x08\x13\x0a\x2c\x0a"
        !          53774:             "\x11\x0c\x2a\x0c\x10\x0d\x28\x0d\x0f\x0f\x26\x0f\x0d"
        !          53775:             "\x07\x02\x08\x24\x08\x02\x07\x0c\x07\x03\x08\x22\x08"
        !          53776:             "\x03\x07\x0b\x07\x05\x08\x20\x08\x05\x07\x0a\x06\x07"
        !          53777:             "\x08\x1e\x08\x07\x06\x09\x07\x08\x08\x1c\x08\x08\x07"
        !          53778:             "\x08\x06\x0a\x08\x1a\x08\x0a\x06\x07\x07\x0b\x08\x18"
        !          53779:             "\x08\x0b\x07\x06\x06\x0d\x08\x16\x08\x0d\x06\x05\x07"
        !          53780:             "\x0e\x08\x14\x08\x0e\x07\x04\x06\x10\x08\x12\x08\x10"
        !          53781:             "\x06\x04\x06\x11\x08\x10\x08\x11\x06\x03\x07\x12\x08"
        !          53782:             "\x0e\x08\x12\x07\x02\x06\x14\x08\x0c\x08\x14\x06\x02"
        !          53783:             "\x06\x15\x08\x0a\x08\x15\x06\x02\x06\x16\x08\x08\x08"
        !          53784:             "\x16\x06\x02\x06\x17\x08\x06\x08\x17\x06\x01\x07\x18"
        !          53785:             "\x08\x04\x08\x18\x0d\x1a\x08\x02\x08\x1a\x0c\x1b\x10"
        !          53786:             "\x1b\x0c\x1c\x0e\x1c\x0c\x1d\x0c\x1d\x0c\x1e\x0a\x1e"
        !          53787:             "\x0c\x1f\x08\x1f\x0c\x1e\x0a\x1e\x0c\x1d\x0c\x1d\x0c"
        !          53788:             "\x1c\x0e\x1c\x0c\x1b\x10\x1b\x0c\x1a\x08\x02\x08\x1a"
        !          53789:             "\x0d\x18\x08\x04\x08\x18\x07\x01\x06\x17\x08\x06\x08"
        !          53790:             "\x17\x06\x02\x06\x16\x08\x08\x08\x16\x06\x02\x06\x15"
        !          53791:             "\x08\x0a\x08\x15\x06\x02\x06\x14\x08\x0c\x08\x14\x06"
        !          53792:             "\x02\x07\x12\x08\x0e\x08\x12\x07\x03\x06\x11\x08\x10"
        !          53793:             "\x08\x11\x06\x04\x06\x10\x08\x12\x08\x10\x06\x04\x07"
        !          53794:             "\x0e\x08\x14\x08\x0e\x07\x05\x06\x0d\x08\x16\x08\x0d"
        !          53795:             "\x06\x06\x07\x0b\x08\x18\x08\x0b\x07\x07\x06\x0a\x08"
        !          53796:             "\x1a\x08\x0a\x06\x08\x07\x08\x08\x1c\x08\x08\x07\x09"
        !          53797:             "\x06\x07\x08\x1e\x08\x07\x06\x0a\x07\x05\x08\x20\x08"
        !          53798:             "\x05\x07\x0b\x07\x03\x08\x22\x08\x03\x07\x0c\x07\x02"
        !          53799:             "\x08\x24\x08\x02\x07\x0d\x0f\x26\x0f\x0f\x0d\x28\x0d"
        !          53800:             "\x10\x0c\x2a\x0c\x11\x0a\x2c\x0a\x13\x08\x2e\x08\x15"
        !          53801:             "\x08\x2c\x08\x17\x09\x28\x09\x19\x09\x26\x09\x1b\x0a"
        !          53802:             "\x22\x0a\x1d\x0b\x1e\x0b\x1f\x0c\x1a\x0c\x22\x0d\x14"
        !          53803:             "\x0d\x25\x10\x0c\x10\x28\x28\x2c\x24\x30\x20\x34\x1c"
        !          53804:             "\x39\x16\x40\x0e\x22" }  },
        !          53805:       /* --- pixel bitmap for cmex600 char#79 \Bigotimes --- */
        !          53806:       {  79,112003,                     /* character number, location */
        !          53807:           0, 5,  -116, 5,     /* topleft row,col, and botleft row,col */
        !          53808:           { 115,  116, 2,653, (pixbyte *)/* width,ht, fmt,pixsz,map.. */
        !          53809:             "\x32\x0f\x5e\x1b\x55\x21\x4f\x27\x49\x2d\x44\x31\x40"
        !          53810:             "\x35\x3c\x16\x0d\x16\x38\x12\x19\x12\x35\x10\x1f\x10"
        !          53811:             "\x32\x0f\x25\x0f\x2f\x0e\x29\x0e\x2d\x0d\x2d\x0d\x2a"
        !          53812:             "\x0d\x31\x0d\x27\x0c\x35\x0c\x25\x0c\x37\x0c\x23\x0b"
        !          53813:             "\x3b\x0b\x21\x0b\x3d\x0b\x1f\x0b\x3f\x0b\x1d\x0a\x43"
        !          53814:             "\x0a\x1c\x0b\x41\x0b\x1b\x0d\x3f\x0d\x19\x0f\x3d\x0f"
        !          53815:             "\x17\x11\x3b\x11\x16\x12\x39\x12\x15\x09\x01\x0a\x37"
        !          53816:             "\x0a\x01\x09\x13\x09\x03\x0a\x35\x0a\x03\x09\x12\x08"
        !          53817:             "\x05\x0a\x33\x0a\x05\x08\x11\x08\x07\x0a\x31\x0a\x07"
        !          53818:             "\x08\x0f\x09\x08\x0a\x2f\x0a\x08\x09\x0e\x08\x0a\x0a"
        !          53819:             "\x2d\x0a\x0a\x08\x0d\x08\x0c\x0a\x2b\x0a\x0c\x08\x0c"
        !          53820:             "\x08\x0d\x0a\x29\x0a\x0d\x08\x0b\x08\x0f\x0a\x27\x0a"
        !          53821:             "\x0f\x08\x0a\x08\x10\x0a\x25\x0a\x10\x08\x09\x08\x12"
        !          53822:             "\x0a\x23\x0a\x12\x08\x08\x08\x13\x0a\x21\x0a\x13\x08"
        !          53823:             "\x08\x07\x15\x0a\x1f\x0a\x15\x07\x07\x08\x16\x0a\x1d"
        !          53824:             "\x0a\x16\x08\x06\x08\x17\x0a\x1b\x0a\x17\x08\x06\x07"
        !          53825:             "\x19\x0a\x19\x0a\x19\x07\x05\x08\x1a\x0a\x17\x0a\x1a"
        !          53826:             "\x08\x04\x08\x1b\x0a\x15\x0a\x1b\x08\x04\x07\x1d\x0a"
        !          53827:             "\x13\x0a\x1d\x07\x03\x08\x1e\x0a\x11\x0a\x1e\x08\x02"
        !          53828:             "\x08\x1f\x0a\x0f\x0a\x1f\x08\x02\x07\x21\x0a\x0d\x0a"
        !          53829:             "\x21\x07\x02\x07\x22\x0a\x0b\x0a\x22\x07\x02\x07\x23"
        !          53830:             "\x0a\x09\x0a\x23\x07\x02\x07\x24\x0a\x07\x0a\x24\x07"
        !          53831:             "\x01\x08\x25\x0a\x05\x0a\x25\x10\x26\x0a\x03\x0a\x26"
        !          53832:             "\x0f\x28\x0a\x01\x0a\x28\x0e\x29\x13\x29\x0e\x2a\x11"
        !          53833:             "\x2a\x0e\x2b\x0f\x2b\x0e\x2c\x0d\x2c\x07\x00\xff\x01"
        !          53834:             "\x07\x2d\x0b\x2d\x07\x00\x07\x2c\x0d\x2c\x0e\x2b\x0f"
        !          53835:             "\x2b\x0e\x2a\x11\x2a\x0e\x29\x13\x29\x0e\x28\x0a\x01"
        !          53836:             "\x0a\x28\x0f\x26\x0a\x03\x0a\x26\x10\x25\x0a\x05\x0a"
        !          53837:             "\x25\x08\x01\x07\x24\x0a\x07\x0a\x24\x07\x02\x07\x23"
        !          53838:             "\x0a\x09\x0a\x23\x07\x02\x07\x22\x0a\x0b\x0a\x22\x07"
        !          53839:             "\x02\x07\x21\x0a\x0d\x0a\x21\x07\x02\x08\x1f\x0a\x0f"
        !          53840:             "\x0a\x1f\x08\x02\x08\x1e\x0a\x11\x0a\x1e\x08\x03\x07"
        !          53841:             "\x1d\x0a\x13\x0a\x1d\x07\x04\x08\x1b\x0a\x15\x0a\x1b"
        !          53842:             "\x08\x04\x08\x1a\x0a\x17\x0a\x1a\x08\x05\x07\x19\x0a"
        !          53843:             "\x19\x0a\x19\x07\x06\x08\x17\x0a\x1b\x0a\x17\x08\x06"
        !          53844:             "\x08\x16\x0a\x1d\x0a\x16\x08\x07\x07\x15\x0a\x1f\x0a"
        !          53845:             "\x15\x07\x08\x08\x13\x0a\x21\x0a\x13\x08\x08\x08\x12"
        !          53846:             "\x0a\x23\x0a\x12\x08\x09\x08\x10\x0a\x25\x0a\x10\x08"
        !          53847:             "\x0a\x08\x0f\x0a\x27\x0a\x0f\x08\x0b\x08\x0d\x0a\x29"
        !          53848:             "\x0a\x0d\x08\x0c\x08\x0c\x0a\x2b\x0a\x0c\x08\x0d\x08"
        !          53849:             "\x0a\x0a\x2d\x0a\x0a\x08\x0e\x09\x08\x0a\x2f\x0a\x08"
        !          53850:             "\x09\x0f\x08\x07\x0a\x31\x0a\x07\x08\x11\x08\x05\x0a"
        !          53851:             "\x33\x0a\x05\x08\x12\x09\x03\x0a\x35\x0a\x03\x09\x13"
        !          53852:             "\x09\x01\x0a\x37\x0a\x01\x09\x15\x12\x39\x12\x16\x11"
        !          53853:             "\x3b\x11\x17\x0f\x3d\x0f\x19\x0d\x3f\x0d\x1b\x0b\x41"
        !          53854:             "\x0b\x1c\x0a\x43\x0a\x1d\x0b\x3f\x0b\x1f\x0b\x3d\x0b"
        !          53855:             "\x21\x0b\x3b\x0b\x23\x0c\x37\x0c\x25\x0c\x35\x0c\x27"
        !          53856:             "\x0d\x31\x0d\x2a\x0d\x2d\x0d\x2d\x0e\x29\x0e\x2f\x0f"
        !          53857:             "\x25\x0f\x32\x10\x1f\x10\x35\x12\x19\x12\x38\x16\x0d"
        !          53858:             "\x16\x3c\x35\x40\x31\x44\x2d\x49\x27\x4f\x21\x55\x1b"
        !          53859:             "\x5e\x0f\x32" }  },
        !          53860:       /* --- pixel bitmap for cmex600 char#80 \sum --- */
        !          53861:       {  80,113935,                     /* character number, location */
        !          53862:           0, 5,  -83, 5,      /* topleft row,col, and botleft row,col */
        !          53863:           { 78,   83, 2,253, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          53864:             "\x00\x47\x07\xff\x02\x48\x06\x00\x01\x09\x2a\x15\x06"
        !          53865:             "\x09\x30\x0f\x07\x09\x33\x0b\x08\x09\x34\x0a\x08\x09"
        !          53866:             "\x35\x08\x08\x09\x37\x06\x09\x09\x37\x06\x09\x09\x37"
        !          53867:             "\x05\x0a\x09\x37\x04\x0a\x09\x38\x04\x0a\x09\x38\x03"
        !          53868:             "\x0b\x09\x38\x02\x0c\x09\x37\x03\x0b\x09\x38\x02\x0c"
        !          53869:             "\x09\x37\x02\x0d\x09\x37\x02\xff\x01\x0d\x09\x38\x00"
        !          53870:             "\x0e\x09\x46\x09\x36\x00\xff\x01\x10\x09\x35\x00\x11"
        !          53871:             "\x09\x46\x09\x33\x00\xff\x01\x13\x09\x32\x00\x14\x09"
        !          53872:             "\x46\x09\x30\x00\xff\x01\x16\x09\x2f\x00\x17\x09\x46"
        !          53873:             "\x09\x2d\x00\xff\x01\x19\x09\x2c\x00\x1a\x09\x46\x09"
        !          53874:             "\x46\x08\x46\x09\x46\x07\x48\x06\x48\x05\x48\x05\x48"
        !          53875:             "\x05\x48\x05\x48\x06\x48\x05\x48\x05\x48\x05\x48\x05"
        !          53876:             "\x48\x06\x48\x05\x48\x05\x48\x05\x48\x05\x48\x06\x48"
        !          53877:             "\x05\x48\x05\x48\x05\x48\x06\x37\x02\x0e\x06\x37\x02"
        !          53878:             "\x0f\x05\x38\x02\x0e\x05\x38\x03\x0d\x05\x39\x02\x0d"
        !          53879:             "\x06\x38\x03\x0c\x06\x38\x04\x0c\x05\x38\x04\x0c\x05"
        !          53880:             "\x38\x05\x0b\x05\x38\x06\x0a\x06\x37\x06\x0a\x06\x36"
        !          53881:             "\x08\x0a\x05\x35\x0a\x09\x05\x34\x0b\x09\x05\x31\x0f"
        !          53882:             "\x08\x06\x2b\x15\x05\x00\xff\x01\x02\x46\x06\x00\x01"
        !          53883:             "\x47\x06\xff\x01\x47\x07" }  },
        !          53884:       /* --- pixel bitmap for cmex600 char#81 \prod --- */
        !          53885:       {  81,117359,                     /* character number, location */
        !          53886:           0, 5,  -83, 5,      /* topleft row,col, and botleft row,col */
        !          53887:           { 68,   83, 2,44, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          53888:             "\xff\x03\x00\x44\x04\x0c\x24\x0c\x0a\x0a\x24\x0a\x0d"
        !          53889:             "\x09\x24\x09\x07\x00\xff\x44\x08\x08\x24\x08\x08\x00"
        !          53890:             "\x07\x0a\x22\x0a\x0d\x0c\x20\x0c\x0a\x10\x1c\x10\x04"
        !          53891:             "\xff\x03\x18\x14\x18" }  },
        !          53892:       /* --- pixel bitmap for cmex600 char#82 \int --- */
        !          53893:       {  82,124389,                     /* character number, location */
        !          53894:           0, 5,  -92, 5,      /* topleft row,col, and botleft row,col */
        !          53895:           { 45,   92, 3,257, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          53896:             "\xe0\xe0\x56\xe0\xe0\x9a\xe0\xe0\x55\x54\xe0\xe0\x24"
        !          53897:             "\x93\xe0\xe5\x84\xe0\xe4\x77\xe0\xc5\x77\xf1\xe0\xb5"
        !          53898:             "\x87\xe0\xa6\x87\xe0\xa5\xb3\xe0\xc5\xe0\x20\xf4\xe0"
        !          53899:             "\x96\xe0\x20\xf6\xe0\x86\xe0\x30\xf4\xe0\x77\xe0\x30"
        !          53900:             "\xf2\xe0\x76\xe0\x40\xf8\xe0\x67\xe0\x40\xf9\xe0\x57"
        !          53901:             "\xe0\x50\xf8\xe0\x47\xe0\x60\xf2\xe0\x46\xe0\x70\xf4"
        !          53902:             "\xe0\x37\xe0\x70\xf6\xe0\x36\xe0\x80\xf4\xe0\x26\xe0"
        !          53903:             "\x90\xe0\x25\xe0\xc3\xb5\xe0\xa7\x86\xe0\xaf\x17\x85"
        !          53904:             "\xe0\xb7\x75\xe0\xc7\x74\xe0\xe4\x85\xe0\xe3\x94\xe0"
        !          53905:             "\xe0\x24\x55\xe0\xe0\x5a\xe0\xe0\x96\xe0\xe0\x51" }  },
        !          53906:       /* --- pixel bitmap for cmex600 char#83 \bigcup --- */
        !          53907:       {  83,129530,                     /* character number, location */
        !          53908:           0, 5,  -83, 5,      /* topleft row,col, and botleft row,col */
        !          53909:           { 59,   83, 2,99, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          53910:             "\x01\x04\x31\x04\x01\xff\x39\x06\x2f\x06\x00\x07\x2d"
        !          53911:             "\x07\xff\x01\x01\x06\x2d\x06\x01\x00\x01\x07\x2b\x07"
        !          53912:             "\x01\x00\xff\x01\x02\x06\x2b\x06\x02\x00\x02\x07\x29"
        !          53913:             "\x07\x02\x00\xff\x01\x03\x07\x27\x07\x03\x00\x04\x07"
        !          53914:             "\x25\x07\x09\x07\x23\x07\x0a\x08\x21\x08\x0b\x08\x1f"
        !          53915:             "\x08\x0d\x08\x1d\x08\x0f\x09\x19\x09\x11\x0a\x15\x0a"
        !          53916:             "\x13\x0b\x11\x0b\x15\x0e\x09\x0e\x17\x23\x1a\x1f\x1e"
        !          53917:             "\x1b\x22\x17\x26\x13\x2c\x0b\x18" }  },
        !          53918:       /* --- pixel bitmap for cmex600 char#84 \bigcap --- */
        !          53919:       {  84,131992,                     /* character number, location */
        !          53920:           0, 5,  -83, 5,      /* topleft row,col, and botleft row,col */
        !          53921:           { 59,   83, 2,99, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          53922:             "\x18\x0b\x2c\x13\x26\x17\x22\x1b\x1e\x1f\x1a\x23\x17"
        !          53923:             "\x0e\x09\x0e\x15\x0b\x11\x0b\x13\x0a\x15\x0a\x11\x09"
        !          53924:             "\x19\x09\x0f\x08\x1d\x08\x0d\x08\x1f\x08\x0b\x08\x21"
        !          53925:             "\x08\x0a\x07\x23\x07\x09\x07\x25\x07\x04\x00\xff\x01"
        !          53926:             "\x03\x07\x27\x07\x03\x00\x02\x07\x29\x07\x02\x00\xff"
        !          53927:             "\x01\x02\x06\x2b\x06\x02\x00\x01\x07\x2b\x07\x01\x00"
        !          53928:             "\xff\x01\x01\x06\x2d\x06\x01\x07\x2d\x07\x00\xff\x39"
        !          53929:             "\x06\x2f\x06\x01\x04\x31\x04\x01" }  },
        !          53930:       /* --- pixel bitmap for cmex600 char#85 \biguplus --- */
        !          53931:       {  85,134519,                     /* character number, location */
        !          53932:           0, 5,  -83, 5,      /* topleft row,col, and botleft row,col */
        !          53933:           { 59,   83, 2,169, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          53934:             "\x01\x04\x31\x04\x01\xff\x14\x06\x2f\x06\x00\x06\x16"
        !          53935:             "\x03\x16\x0c\x15\x05\x15\x06\x00\xff\x0b\x06\x15\x06"
        !          53936:             "\x14\x06\x00\x06\x08\x1f\x08\x0c\x07\x21\x07\x06\x00"
        !          53937:             "\xff\x02\x06\x06\x23\x06\x06\x00\x06\x07\x21\x07\x06"
        !          53938:             "\x00\xff\x0b\x06\x15\x06\x14\x06\x00\xff\x01\x06\x15"
        !          53939:             "\x05\x15\x06\x00\x06\x17\x01\x17\x06\x00\xff\x01\x06"
        !          53940:             "\x2f\x06\x00\x07\x2d\x07\xff\x01\x01\x06\x2d\x06\x01"
        !          53941:             "\x00\x01\x07\x2b\x07\x01\x00\xff\x01\x02\x06\x2b\x06"
        !          53942:             "\x02\x00\x02\x07\x29\x07\x02\x00\xff\x01\x03\x07\x27"
        !          53943:             "\x07\x03\x00\x04\x07\x25\x07\x09\x07\x23\x07\x0a\x08"
        !          53944:             "\x21\x08\x0b\x08\x1f\x08\x0d\x08\x1d\x08\x0f\x09\x19"
        !          53945:             "\x09\x11\x0a\x15\x0a\x13\x0b\x11\x0b\x15\x0e\x09\x0e"
        !          53946:             "\x17\x23\x1a\x1f\x1e\x1b\x22\x17\x26\x13\x2c\x0b\x18" }  },
        !          53947:       /* --- pixel bitmap for cmex600 char#86 \bigwedge --- */
        !          53948:       {  86,137139,                     /* character number, location */
        !          53949:           0, 5,  -83, 5,      /* topleft row,col, and botleft row,col */
        !          53950:           { 59,   83, 3,577, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          53951:             "\xe0\xe3\xe0\xe0\xe0\xd5\xe0\xe0\xe0\xc6\xe0\xc0\xf1"
        !          53952:             "\xe0\xc7\xe0\xc0\xf2\xe0\xb9\xe0\xb0\xf2\xe0\xab\xe0"
        !          53953:             "\xa0\xe0\x9d\xe0\x90\xf1\xe0\x96\x16\xe0\x90\xe0\x87"
        !          53954:             "\x17\xe0\x80\xf1\xe0\x86\x36\xe0\x80\xe0\x77\x37\xe0"
        !          53955:             "\x70\xf1\xe0\x76\x56\xe0\x70\xe0\x67\x57\xe0\x60\xf1"
        !          53956:             "\xe0\x66\x76\xe0\x60\xe0\x57\x77\xe0\x50\xf1\xe0\x56"
        !          53957:             "\x96\xe0\x50\xe0\x47\x97\xe0\x40\xf1\xe0\x46\xb6\xe0"
        !          53958:             "\x40\xe0\x37\xb7\xe0\x30\xf1\xe0\x36\xd6\xe0\x30\xe0"
        !          53959:             "\x27\xd7\xe0\xe0\x46\xe0\x16\xe0\xe0\x37\xe0\x17\xe0"
        !          53960:             "\x10\xf1\xe0\x16\xe0\x36\xe0\x10\xe7\xe0\x37\xe0\xf1"
        !          53961:             "\xe6\xe0\x56\xe0\xd7\xe0\x57\xd0\xf1\xd6\xe0\x76\xd0"
        !          53962:             "\xc7\xe0\x77\xc0\xf1\xc6\xe0\x96\xc0\xb7\xe0\x97\xb0"
        !          53963:             "\xf1\xb6\xe0\xb6\xb0\xa7\xe0\xb7\xa0\xf1\xa6\xe0\xd6"
        !          53964:             "\xa0\x97\xe0\xd7\x90\xf1\x96\xe0\xe0\x16\x90\x87\xe0"
        !          53965:             "\xe0\x17\x80\xf1\x86\xe0\xe0\x36\x80\x77\xe0\xe0\x37"
        !          53966:             "\x70\xf1\x76\xe0\xe0\x56\x70\x67\xe0\xe0\x57\x60\xf1"
        !          53967:             "\x66\xe0\xe0\x76\x60\x57\xe0\xe0\x77\xa6\xe0\xe0\x96"
        !          53968:             "\x97\xe0\xe0\x97\x40\xf1\x46\xe0\xe0\xb6\x40\x37\xe0"
        !          53969:             "\xe0\xb7\x30\xf1\x36\xe0\xe0\xd6\x30\x27\xe0\xe0\xd7"
        !          53970:             "\x20\xf1\x26\xe0\xe0\xe0\x16\x20\x17\xe0\xe0\xe0\x17"
        !          53971:             "\x10\xf1\x16\xe0\xe0\xe0\x36\x17\xe0\xe0\xe0\x37\x0f"
        !          53972:             "\x16\xe0\xe0\xe0\x56\x05\xe0\xe0\xe0\x75\x14\xe0\xe0"
        !          53973:             "\xe0\x83\x10" }  },
        !          53974:       /* --- pixel bitmap for cmex600 char#87 \bigvee --- */
        !          53975:       {  87,139439,                     /* character number, location */
        !          53976:           0, 5,  -83, 5,      /* topleft row,col, and botleft row,col */
        !          53977:           { 59,   83, 3,577, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          53978:             "\x14\xe0\xe0\xe0\x83\x15\xe0\xe0\xe0\x75\x0f\x16\xe0"
        !          53979:             "\xe0\xe0\x56\x07\xe0\xe0\xe0\x37\xf1\x16\xe0\xe0\xe0"
        !          53980:             "\x36\x10\x17\xe0\xe0\xe0\x17\x10\xf1\x26\xe0\xe0\xe0"
        !          53981:             "\x16\x20\x27\xe0\xe0\xd7\x20\xf1\x36\xe0\xe0\xd6\x30"
        !          53982:             "\x37\xe0\xe0\xb7\x30\xf1\x46\xe0\xe0\xb6\x40\x47\xe0"
        !          53983:             "\xe0\x97\x96\xe0\xe0\x96\xa7\xe0\xe0\x77\x50\xf1\x66"
        !          53984:             "\xe0\xe0\x76\x60\x67\xe0\xe0\x57\x60\xf1\x76\xe0\xe0"
        !          53985:             "\x56\x70\x77\xe0\xe0\x37\x70\xf1\x86\xe0\xe0\x36\x80"
        !          53986:             "\x87\xe0\xe0\x17\x80\xf1\x96\xe0\xe0\x16\x90\x97\xe0"
        !          53987:             "\xd7\x90\xf1\xa6\xe0\xd6\xa0\xa7\xe0\xb7\xa0\xf1\xb6"
        !          53988:             "\xe0\xb6\xb0\xb7\xe0\x97\xb0\xf1\xc6\xe0\x96\xc0\xc7"
        !          53989:             "\xe0\x77\xc0\xf1\xd6\xe0\x76\xd0\xd7\xe0\x57\xd0\xf1"
        !          53990:             "\xe6\xe0\x56\xe0\xe7\xe0\x37\xe0\xf1\xe0\x16\xe0\x36"
        !          53991:             "\xe0\x10\xe0\x17\xe0\x17\xe0\xe0\x36\xe0\x16\xe0\xe0"
        !          53992:             "\x47\xd7\xe0\x20\xf1\xe0\x36\xd6\xe0\x30\xe0\x37\xb7"
        !          53993:             "\xe0\x30\xf1\xe0\x46\xb6\xe0\x40\xe0\x47\x97\xe0\x40"
        !          53994:             "\xf1\xe0\x56\x96\xe0\x50\xe0\x57\x77\xe0\x50\xf1\xe0"
        !          53995:             "\x66\x76\xe0\x60\xe0\x67\x57\xe0\x60\xf1\xe0\x76\x56"
        !          53996:             "\xe0\x70\xe0\x77\x37\xe0\x70\xf1\xe0\x86\x36\xe0\x80"
        !          53997:             "\xe0\x87\x17\xe0\x80\xf1\xe0\x96\x16\xe0\x90\xe0\x9d"
        !          53998:             "\xe0\x90\xf2\xe0\xab\xe0\xa0\xf2\xe0\xb9\xe0\xb0\xf1"
        !          53999:             "\xe0\xc7\xe0\xc0\xe0\xd6\xe0\xe0\xe0\xb5\xe0\xe0\xe0"
        !          54000:             "\xd3\xe0\xe0" }  },
        !          54001:       /* --- pixel bitmap for cmex600 char#88 \Bigsum --- */
        !          54002:       {  88,115607,                     /* character number, location */
        !          54003:           0, 5,  -116, 5,     /* topleft row,col, and botleft row,col */
        !          54004:           { 110,  116, 2,327, (pixbyte *)/* width,ht, fmt,pixsz,map.. */
        !          54005:             "\x00\x64\x0a\xff\x02\x65\x09\x66\x09\x0e\x3a\x1d\x09"
        !          54006:             "\x0f\x41\x16\x09\x0f\x45\x11\x0a\x0f\x47\x0f\x0a\x0e"
        !          54007:             "\x4a\x0c\x0a\x0f\x4b\x0a\x0b\x0f\x4c\x09\x0b\x0f\x4d"
        !          54008:             "\x07\x0c\x0e\x4e\x07\x0b\x0f\x4f\x05\x0c\x0f\x4f\x04"
        !          54009:             "\x0d\x0f\x4f\x04\x0d\x0e\x50\x03\x0d\x0f\x50\x03\x0d"
        !          54010:             "\x0f\x4f\x03\x0e\x0f\x4f\x03\x0e\x0e\x50\x02\x0e\x0f"
        !          54011:             "\x4f\x02\x0f\x0f\x4f\x02\x0f\x0f\x60\x0e\x60\x0f\x60"
        !          54012:             "\x0f\x60\x0f\x60\x0e\x60\x0f\x60\x0f\x60\x0f\x60\x0e"
        !          54013:             "\x60\x0f\x60\x0f\x60\x0f\x60\x0e\x60\x0f\x60\x0f\x60"
        !          54014:             "\x0e\x61\x0e\x60\x0f\x60\x0f\x60\x0e\x61\x0e\x60\x0f"
        !          54015:             "\x60\x0f\x60\x0e\x61\x0e\x60\x0f\x60\x0f\x60\x0e\x61"
        !          54016:             "\x0e\x60\x0f\x60\x0f\x60\x0e\x39\x00\xff\x01\x28\x0e"
        !          54017:             "\x38\x00\x29\x0c\x63\x0a\x65\x09\x65\x08\x66\x07\x66"
        !          54018:             "\x07\x66\x07\x3e\x00\xff\x01\x28\x07\x3f\x00\x27\x07"
        !          54019:             "\x66\x07\x66\x07\x66\x07\x43\x00\xff\x01\x23\x07\x44"
        !          54020:             "\x00\x22\x07\x66\x07\x66\x07\x66\x07\x66\x07\x67\x06"
        !          54021:             "\x67\x07\x66\x07\x66\x07\x66\x07\x66\x07\x4e\x00\xff"
        !          54022:             "\x01\x18\x07\x4f\x00\x17\x07\x66\x07\x66\x07\x50\x02"
        !          54023:             "\x14\x07\x50\x02\x14\x07\x51\x02\x14\x07\x50\x03\x13"
        !          54024:             "\x07\x51\x02\x13\x07\x51\x03\x12\x07\x51\x04\x11\x07"
        !          54025:             "\x51\x04\x11\x07\x51\x05\x10\x07\x51\x05\x11\x07\x50"
        !          54026:             "\x06\x10\x07\x4f\x08\x0f\x07\x4f\x08\x0f\x07\x4e\x0a"
        !          54027:             "\x0e\x07\x4d\x0c\x0d\x07\x4b\x0e\x0e\x07\x48\x11\x0d"
        !          54028:             "\x07\x44\x16\x0c\x07\x3d\x1d\x0c\x62\x0b\x62\x08\x00"
        !          54029:             "\xff\x01\x03\x63\x08\x00\x02\x63\x0a\x64\x09\x65\x09"
        !          54030:             "\x64\x0a" }  },
        !          54031:       /* --- pixel bitmap for cmex600 char#89 \Bigprod --- */
        !          54032:       {  89,119241,                     /* character number, location */
        !          54033:           0, 5,  -116, 5,     /* topleft row,col, and botleft row,col */
        !          54034:           { 96,  116, 2,68, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          54035:             "\xff\x04\x00\x60\x06\x15\x2a\x15\x0f\x12\x2a\x12\x14"
        !          54036:             "\x10\x2a\x10\x17\x0f\x2a\x0f\x0c\x00\xff\x01\x0d\x0e"
        !          54037:             "\x2a\x0e\x0d\x00\xff\x5d\x0e\x0d\x2a\x0d\x0e\x00\xff"
        !          54038:             "\x01\x0d\x0f\x28\x0f\x0d\x00\x0c\x11\x26\x11\x17\x13"
        !          54039:             "\x24\x13\x14\x17\x20\x17\x0f\x1d\x1a\x1d\x06\xff\x04"
        !          54040:             "\x29\x0e\x29" }  },
        !          54041:       /* --- pixel bitmap for cmex600 char#90 \Bigint --- */
        !          54042:       {  90,125587,                     /* character number, location */
        !          54043:           0, 5,  -184, 5,     /* topleft row,col, and botleft row,col */
        !          54044:           { 73,  184, 2,457, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          54045:             "\x3d\x06\x41\x0a\x3e\x05\x04\x04\x3b\x05\x07\x03\x39"
        !          54046:             "\x05\x06\x05\x38\x05\x06\x07\x37\x05\x05\x08\x36\x05"
        !          54047:             "\x06\x08\x35\x06\x06\x08\x35\x05\x07\x08\x34\x06\x08"
        !          54048:             "\x06\x35\x06\x09\x04\x02\x00\xff\x02\x33\x06\x10\x00"
        !          54049:             "\xff\x01\x32\x06\x11\x00\x31\x07\x11\x00\xff\x01\x31"
        !          54050:             "\x06\x12\x00\xff\x01\x30\x07\x12\x00\xff\x01\x30\x06"
        !          54051:             "\x13\x00\xff\x01\x2f\x07\x13\x00\x2f\x06\x14\x00\xff"
        !          54052:             "\x03\x2e\x07\x14\x00\xff\x03\x2d\x07\x15\x00\x2c\x08"
        !          54053:             "\x15\x00\xff\x02\x2c\x07\x16\x00\xff\x01\x2b\x08\x16"
        !          54054:             "\x00\xff\x02\x2b\x07\x17\x00\xff\x01\x2a\x08\x17\x00"
        !          54055:             "\xff\x01\x2a\x07\x18\x00\xff\x02\x29\x08\x18\x00\x29"
        !          54056:             "\x07\x19\x00\xff\x03\x28\x08\x19\x00\x27\x09\x19\x00"
        !          54057:             "\xff\x03\x27\x08\x1a\x00\xff\x01\x26\x09\x1a\x00\xff"
        !          54058:             "\x01\x26\x08\x1b\x00\xff\x02\x25\x09\x1b\x00\xff\x01"
        !          54059:             "\x25\x08\x1c\x00\xff\x03\x24\x09\x1c\x00\x24\x08\x1d"
        !          54060:             "\x00\xff\x03\x23\x09\x1d\x00\x22\x0a\x1d\x00\xff\x03"
        !          54061:             "\x22\x09\x1e\x00\x21\x0a\x1e\x00\xff\x03\x21\x09\x1f"
        !          54062:             "\x00\x20\x0a\x1f\x00\xff\x03\x20\x09\x20\x00\x1f\x0a"
        !          54063:             "\x20\x00\xff\x03\x1f\x09\x21\x00\x1e\x0a\x21\x00\xff"
        !          54064:             "\x03\x1e\x09\x22\x00\x1d\x0a\x22\x00\xff\x03\x1d\x09"
        !          54065:             "\x23\x00\x1d\x08\x24\x00\xff\x03\x1c\x09\x24\x00\xff"
        !          54066:             "\x01\x1c\x08\x25\x00\xff\x02\x1b\x09\x25\x00\xff\x01"
        !          54067:             "\x1b\x08\x26\x00\xff\x01\x1a\x09\x26\x00\xff\x03\x1a"
        !          54068:             "\x08\x27\x00\x19\x09\x27\x00\xff\x03\x19\x08\x28\x00"
        !          54069:             "\x19\x07\x29\x00\xff\x02\x18\x08\x29\x00\xff\x01\x18"
        !          54070:             "\x07\x2a\x00\xff\x01\x17\x08\x2a\x00\xff\x02\x17\x07"
        !          54071:             "\x2b\x00\xff\x01\x16\x08\x2b\x00\xff\x02\x16\x07\x2c"
        !          54072:             "\x00\x15\x08\x2c\x00\xff\x03\x15\x07\x2d\x00\xff\x03"
        !          54073:             "\x14\x07\x2e\x00\x14\x06\x2f\x00\xff\x01\x13\x07\x2f"
        !          54074:             "\x00\xff\x01\x13\x06\x30\x00\xff\x01\x12\x07\x30\x00"
        !          54075:             "\xff\x01\x12\x06\x31\x00\x11\x07\x31\x00\xff\x01\x11"
        !          54076:             "\x06\x32\x00\xff\x02\x10\x06\x33\x00\x02\x04\x09\x06"
        !          54077:             "\x35\x06\x08\x06\x34\x08\x07\x05\x35\x08\x06\x06\x35"
        !          54078:             "\x08\x06\x05\x36\x08\x05\x05\x37\x07\x06\x05\x38\x05"
        !          54079:             "\x06\x05\x39\x03\x07\x05\x3b\x04\x04\x05\x3e\x0a\x41"
        !          54080:             "\x06\x3d" }  },
        !          54081:       /* --- pixel bitmap for cmex600 char#91 \Bigcup --- */
        !          54082:       {  91,130715,                     /* character number, location */
        !          54083:           0, 5,  -116, 5,     /* topleft row,col, and botleft row,col */
        !          54084:           { 82,  116, 2,139, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          54085:             "\xff\x01\x01\x05\x46\x05\x01\xff\x4e\x07\x44\x07\x00"
        !          54086:             "\xff\x01\x08\x42\x08\xff\x01\x01\x07\x42\x07\x01\x00"
        !          54087:             "\xff\x01\x01\x08\x40\x08\x01\x00\x02\x07\x40\x07\x02"
        !          54088:             "\x00\xff\x01\x02\x08\x3e\x08\x02\x00\x03\x07\x3e\x07"
        !          54089:             "\x06\x08\x3c\x08\x06\x09\x3a\x09\x07\x08\x3a\x08\x09"
        !          54090:             "\x08\x38\x08\x0a\x09\x36\x09\x0b\x08\x36\x08\x0c\x09"
        !          54091:             "\x34\x09\x0d\x09\x32\x09\x0f\x09\x30\x09\x11\x09\x2e"
        !          54092:             "\x09\x12\x0b\x2a\x0b\x13\x0b\x28\x0b\x15\x0b\x26\x0b"
        !          54093:             "\x17\x0c\x22\x0c\x19\x0d\x1e\x0d\x1b\x0e\x1a\x0e\x1e"
        !          54094:             "\x0f\x14\x0f\x21\x12\x0c\x12\x23\x2e\x26\x2a\x2a\x26"
        !          54095:             "\x2e\x22\x33\x1c\x39\x16\x40\x0e\x22" }  },
        !          54096:       /* --- pixel bitmap for cmex600 char#92 \Bigcap --- */
        !          54097:       {  92,133184,                     /* character number, location */
        !          54098:           0, 5,  -116, 5,     /* topleft row,col, and botleft row,col */
        !          54099:           { 82,  116, 2,139, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          54100:             "\x22\x0e\x40\x16\x39\x1c\x33\x22\x2e\x26\x2a\x2a\x26"
        !          54101:             "\x2e\x23\x12\x0c\x12\x21\x0f\x14\x0f\x1e\x0e\x1a\x0e"
        !          54102:             "\x1b\x0d\x1e\x0d\x19\x0c\x22\x0c\x17\x0b\x26\x0b\x15"
        !          54103:             "\x0b\x28\x0b\x13\x0b\x2a\x0b\x12\x09\x2e\x09\x11\x09"
        !          54104:             "\x30\x09\x0f\x09\x32\x09\x0d\x09\x34\x09\x0c\x08\x36"
        !          54105:             "\x08\x0b\x09\x36\x09\x0a\x08\x38\x08\x09\x08\x3a\x08"
        !          54106:             "\x07\x09\x3a\x09\x06\x08\x3c\x08\x06\x07\x3e\x07\x03"
        !          54107:             "\x00\xff\x01\x02\x08\x3e\x08\x02\x00\x02\x07\x40\x07"
        !          54108:             "\x02\x00\xff\x01\x01\x08\x40\x08\x01\x00\xff\x01\x01"
        !          54109:             "\x07\x42\x07\x01\xff\x01\x08\x42\x08\x00\xff\x4e\x07"
        !          54110:             "\x44\x07\xff\x01\x01\x05\x46\x05\x01" }  },
        !          54111:       /* --- pixel bitmap for cmex600 char#93 \Biguplus --- */
        !          54112:       {  93,135839,                     /* character number, location */
        !          54113:           0, 5,  -116, 5,     /* topleft row,col, and botleft row,col */
        !          54114:           { 82,  116, 2,201, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          54115:             "\xff\x01\x01\x05\x46\x05\x01\xff\x19\x07\x44\x07\x00"
        !          54116:             "\x07\x20\x04\x20\x0e\x1f\x06\x1f\x07\x00\xff\x14\x07"
        !          54117:             "\x1f\x07\x1e\x07\x00\x07\x09\x32\x09\x0e\x08\x34\x08"
        !          54118:             "\x07\x00\xff\x02\x07\x07\x36\x07\x07\x00\xff\x01\x07"
        !          54119:             "\x08\x34\x08\x07\x00\xff\x14\x07\x1f\x07\x1e\x07\x00"
        !          54120:             "\xff\x01\x07\x1f\x06\x1f\x07\x00\x08\x20\x02\x20\x10"
        !          54121:             "\x42\x08\xff\x01\x01\x07\x42\x07\x01\x00\xff\x01\x01"
        !          54122:             "\x08\x40\x08\x01\x00\x02\x07\x40\x07\x02\x00\xff\x01"
        !          54123:             "\x02\x08\x3e\x08\x02\x00\x03\x07\x3e\x07\x06\x08\x3c"
        !          54124:             "\x08\x06\x09\x3a\x09\x07\x08\x3a\x08\x09\x08\x38\x08"
        !          54125:             "\x0a\x09\x36\x09\x0b\x08\x36\x08\x0c\x09\x34\x09\x0d"
        !          54126:             "\x09\x32\x09\x0f\x09\x30\x09\x11\x09\x2e\x09\x12\x0b"
        !          54127:             "\x2a\x0b\x13\x0b\x28\x0b\x15\x0b\x26\x0b\x17\x0c\x22"
        !          54128:             "\x0c\x19\x0d\x1e\x0d\x1b\x0e\x1a\x0e\x1e\x0f\x14\x0f"
        !          54129:             "\x21\x12\x0c\x12\x23\x2e\x26\x2a\x2a\x26\x2e\x22\x33"
        !          54130:             "\x1c\x39\x16\x40\x0e\x22" }  },
        !          54131:       /* --- pixel bitmap for cmex600 char#94 \Bigwedge --- */
        !          54132:       {  94,138288,                     /* character number, location */
        !          54133:           0, 5,  -116, 5,     /* topleft row,col, and botleft row,col */
        !          54134:           { 82,  116, 2,493, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          54135:             "\x27\x04\x4d\x06\x4c\x07\x25\x00\xff\x01\x25\x08\x25"
        !          54136:             "\x00\xff\x02\x24\x0a\x24\x00\xff\x02\x23\x0c\x23\x00"
        !          54137:             "\xff\x02\x22\x0e\x22\x00\xff\x01\x21\x10\x21\x00\x21"
        !          54138:             "\x07\x02\x07\x21\x00\xff\x01\x20\x08\x02\x08\x20\x00"
        !          54139:             "\x20\x07\x04\x07\x20\x00\xff\x01\x1f\x08\x04\x08\x1f"
        !          54140:             "\x00\x1f\x07\x06\x07\x1f\x00\xff\x01\x1e\x08\x06\x08"
        !          54141:             "\x1e\x00\x1e\x07\x08\x07\x1e\x00\xff\x01\x1d\x08\x08"
        !          54142:             "\x08\x1d\x00\x1d\x07\x0a\x07\x1d\x00\xff\x01\x1c\x08"
        !          54143:             "\x0a\x08\x1c\x00\x1c\x07\x0c\x07\x1c\x00\xff\x01\x1b"
        !          54144:             "\x08\x0c\x08\x1b\x00\xff\x01\x1a\x08\x0e\x08\x1a\x00"
        !          54145:             "\x1a\x07\x10\x07\x1a\x00\xff\x01\x19\x08\x10\x08\x19"
        !          54146:             "\x00\x19\x07\x12\x07\x19\x00\xff\x01\x18\x08\x12\x08"
        !          54147:             "\x18\x00\x18\x07\x14\x07\x18\x00\xff\x01\x17\x08\x14"
        !          54148:             "\x08\x17\x00\x17\x07\x16\x07\x17\x00\xff\x01\x16\x08"
        !          54149:             "\x16\x08\x16\x00\x16\x07\x18\x07\x16\x00\xff\x01\x15"
        !          54150:             "\x08\x18\x08\x15\x00\x15\x07\x1a\x07\x15\x00\xff\x01"
        !          54151:             "\x14\x08\x1a\x08\x14\x00\x14\x07\x1c\x07\x14\x00\xff"
        !          54152:             "\x01\x13\x08\x1c\x08\x13\x00\x13\x07\x1e\x07\x13\x00"
        !          54153:             "\xff\x01\x12\x08\x1e\x08\x12\x00\x12\x07\x20\x07\x12"
        !          54154:             "\x00\xff\x01\x11\x08\x20\x08\x11\x00\x11\x07\x22\x07"
        !          54155:             "\x11\x00\xff\x01\x10\x08\x22\x08\x10\x00\xff\x01\x0f"
        !          54156:             "\x08\x24\x08\x0f\x00\x0f\x07\x26\x07\x0f\x00\xff\x01"
        !          54157:             "\x0e\x08\x26\x08\x0e\x00\x0e\x07\x28\x07\x0e\x00\xff"
        !          54158:             "\x01\x0d\x08\x28\x08\x0d\x00\x0d\x07\x2a\x07\x0d\x00"
        !          54159:             "\xff\x01\x0c\x08\x2a\x08\x0c\x00\x0c\x07\x2c\x07\x0c"
        !          54160:             "\x00\xff\x01\x0b\x08\x2c\x08\x0b\x00\x0b\x07\x2e\x07"
        !          54161:             "\x0b\x00\xff\x01\x0a\x08\x2e\x08\x0a\x00\x0a\x07\x30"
        !          54162:             "\x07\x0a\x00\xff\x01\x09\x08\x30\x08\x09\x00\x09\x07"
        !          54163:             "\x32\x07\x09\x00\xff\x01\x08\x08\x32\x08\x08\x00\x08"
        !          54164:             "\x07\x34\x07\x08\x00\xff\x01\x07\x08\x34\x08\x07\x00"
        !          54165:             "\x07\x07\x36\x07\x07\x00\xff\x01\x06\x08\x36\x08\x06"
        !          54166:             "\x00\x06\x07\x38\x07\x06\x00\xff\x01\x05\x08\x38\x08"
        !          54167:             "\x05\x00\xff\x01\x04\x08\x3a\x08\x04\x00\x04\x07\x3c"
        !          54168:             "\x07\x04\x00\xff\x01\x03\x08\x3c\x08\x03\x00\x03\x07"
        !          54169:             "\x3e\x07\x03\x00\xff\x01\x02\x08\x3e\x08\x02\x00\x02"
        !          54170:             "\x07\x40\x07\x02\x00\xff\x01\x01\x08\x40\x08\x01\x00"
        !          54171:             "\x01\x07\x42\x07\x01\xff\x01\x08\x42\x08\x00\xff\x01"
        !          54172:             "\x07\x44\x07\x01\x05\x46\x05\x02\x05\x47\x04\x01" }  },
        !          54173:       /* --- pixel bitmap for cmex600 char#95 \Bigvee --- */
        !          54174:       {  95,140589,                     /* character number, location */
        !          54175:           0, 5,  -116, 5,     /* topleft row,col, and botleft row,col */
        !          54176:           { 82,  116, 2,493, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          54177:             "\x01\x05\x47\x04\x02\x05\x46\x05\x01\xff\x01\x07\x44"
        !          54178:             "\x07\x00\xff\x01\x08\x42\x08\x01\x07\x42\x07\x01\x00"
        !          54179:             "\xff\x01\x01\x08\x40\x08\x01\x00\x02\x07\x40\x07\x02"
        !          54180:             "\x00\xff\x01\x02\x08\x3e\x08\x02\x00\x03\x07\x3e\x07"
        !          54181:             "\x03\x00\xff\x01\x03\x08\x3c\x08\x03\x00\x04\x07\x3c"
        !          54182:             "\x07\x04\x00\xff\x01\x04\x08\x3a\x08\x04\x00\xff\x01"
        !          54183:             "\x05\x08\x38\x08\x05\x00\x06\x07\x38\x07\x06\x00\xff"
        !          54184:             "\x01\x06\x08\x36\x08\x06\x00\x07\x07\x36\x07\x07\x00"
        !          54185:             "\xff\x01\x07\x08\x34\x08\x07\x00\x08\x07\x34\x07\x08"
        !          54186:             "\x00\xff\x01\x08\x08\x32\x08\x08\x00\x09\x07\x32\x07"
        !          54187:             "\x09\x00\xff\x01\x09\x08\x30\x08\x09\x00\x0a\x07\x30"
        !          54188:             "\x07\x0a\x00\xff\x01\x0a\x08\x2e\x08\x0a\x00\x0b\x07"
        !          54189:             "\x2e\x07\x0b\x00\xff\x01\x0b\x08\x2c\x08\x0b\x00\x0c"
        !          54190:             "\x07\x2c\x07\x0c\x00\xff\x01\x0c\x08\x2a\x08\x0c\x00"
        !          54191:             "\x0d\x07\x2a\x07\x0d\x00\xff\x01\x0d\x08\x28\x08\x0d"
        !          54192:             "\x00\x0e\x07\x28\x07\x0e\x00\xff\x01\x0e\x08\x26\x08"
        !          54193:             "\x0e\x00\x0f\x07\x26\x07\x0f\x00\xff\x01\x0f\x08\x24"
        !          54194:             "\x08\x0f\x00\xff\x01\x10\x08\x22\x08\x10\x00\x11\x07"
        !          54195:             "\x22\x07\x11\x00\xff\x01\x11\x08\x20\x08\x11\x00\x12"
        !          54196:             "\x07\x20\x07\x12\x00\xff\x01\x12\x08\x1e\x08\x12\x00"
        !          54197:             "\x13\x07\x1e\x07\x13\x00\xff\x01\x13\x08\x1c\x08\x13"
        !          54198:             "\x00\x14\x07\x1c\x07\x14\x00\xff\x01\x14\x08\x1a\x08"
        !          54199:             "\x14\x00\x15\x07\x1a\x07\x15\x00\xff\x01\x15\x08\x18"
        !          54200:             "\x08\x15\x00\x16\x07\x18\x07\x16\x00\xff\x01\x16\x08"
        !          54201:             "\x16\x08\x16\x00\x17\x07\x16\x07\x17\x00\xff\x01\x17"
        !          54202:             "\x08\x14\x08\x17\x00\x18\x07\x14\x07\x18\x00\xff\x01"
        !          54203:             "\x18\x08\x12\x08\x18\x00\x19\x07\x12\x07\x19\x00\xff"
        !          54204:             "\x01\x19\x08\x10\x08\x19\x00\x1a\x07\x10\x07\x1a\x00"
        !          54205:             "\xff\x01\x1a\x08\x0e\x08\x1a\x00\xff\x01\x1b\x08\x0c"
        !          54206:             "\x08\x1b\x00\x1c\x07\x0c\x07\x1c\x00\xff\x01\x1c\x08"
        !          54207:             "\x0a\x08\x1c\x00\x1d\x07\x0a\x07\x1d\x00\xff\x01\x1d"
        !          54208:             "\x08\x08\x08\x1d\x00\x1e\x07\x08\x07\x1e\x00\xff\x01"
        !          54209:             "\x1e\x08\x06\x08\x1e\x00\x1f\x07\x06\x07\x1f\x00\xff"
        !          54210:             "\x01\x1f\x08\x04\x08\x1f\x00\x20\x07\x04\x07\x20\x00"
        !          54211:             "\xff\x01\x20\x08\x02\x08\x20\x00\x21\x07\x02\x07\x21"
        !          54212:             "\x00\xff\x01\x21\x10\x21\x00\xff\x02\x22\x0e\x22\x00"
        !          54213:             "\xff\x02\x23\x0c\x23\x00\xff\x02\x24\x0a\x24\x00\xff"
        !          54214:             "\x01\x25\x08\x25\x00\x26\x07\x4b\x06\x4d\x04\x27" }  },
        !          54215:       /* --- pixel bitmap for cmex600 char#96 \coprod --- */
        !          54216:       {  96,121097,                     /* character number, location */
        !          54217:           0, 5,  -83, 5,      /* topleft row,col, and botleft row,col */
        !          54218:           { 68,   83, 2,44, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          54219:             "\xff\x03\x00\x18\x14\x18\x04\x10\x1c\x10\x0a\x0c\x20"
        !          54220:             "\x0c\x0d\x0a\x22\x0a\x07\x00\xff\x44\x08\x08\x24\x08"
        !          54221:             "\x08\x00\x07\x09\x24\x09\x0d\x0a\x24\x0a\x0a\x0c\x24"
        !          54222:             "\x0c\x04\xff\x03\x44" }  },
        !          54223:       /* --- pixel bitmap for cmex600 char#97 \Bigcoprod --- */
        !          54224:       {  97,122981,                     /* character number, location */
        !          54225:           0, 5,  -116, 5,     /* topleft row,col, and botleft row,col */
        !          54226:           { 96,  116, 2,68, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          54227:             "\xff\x04\x00\x29\x0e\x29\x06\x1d\x1a\x1d\x0f\x17\x20"
        !          54228:             "\x17\x14\x13\x24\x13\x17\x11\x26\x11\x0c\x00\xff\x01"
        !          54229:             "\x0d\x0f\x28\x0f\x0d\x00\xff\x5d\x0e\x0d\x2a\x0d\x0e"
        !          54230:             "\x00\xff\x01\x0d\x0e\x2a\x0e\x0d\x00\x0c\x0f\x2a\x0f"
        !          54231:             "\x17\x10\x2a\x10\x14\x12\x2a\x12\x0f\x15\x2a\x15\x06"
        !          54232:             "\xff\x04\x60" }  },
        !          54233:       /* --- pixel bitmap for cmex600 char#98 ^ --- */
        !          54234:       {  98,141702,                     /* character number, location */
        !          54235:          62, 0,   47, 0,      /* topleft row,col, and botleft row,col */
        !          54236:           { 46,   15, 3,96, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          54237:             "\xe0\x82\xe0\xe0\xe6\xe0\xe0\xb8\xe0\xe0\x8c\xe0\xe0"
        !          54238:             "\x4e\x02\xe0\xe9\x29\xe0\xb8\x68\xe0\x87\xc7\xe0\x47"
        !          54239:             "\xe0\x27\xe7\xe0\x67\xb6\xe0\xa6\x86\xe0\xe6\x45\xe0"
        !          54240:             "\xe0\x65\x14\xe0\xe0\xa6\xe0\xe0\xe2" }  },
        !          54241:       /* --- pixel bitmap for cmex600 char#99 ^ --- */
        !          54242:       {  99,142613,                     /* character number, location */
        !          54243:          64, 0,   48, 0,      /* topleft row,col, and botleft row,col */
        !          54244:           { 83,   16, 2,52, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          54245:             "\x28\x03\x4d\x09\x47\x0f\x41\x15\x3b\x1b\x35\x0f\x03"
        !          54246:             "\x0f\x2f\x0e\x0b\x0e\x2a\x0c\x13\x0c\x25\x0c\x19\x0c"
        !          54247:             "\x1f\x0b\x21\x0b\x19\x0a\x29\x0a\x13\x0a\x2f\x0a\x0d"
        !          54248:             "\x09\x37\x09\x07\x08\x3f\x08\x02\x07\x45\x0a\x4d\x03" }  },
        !          54249:       /* --- pixel bitmap for cmex600 char#100 ^ --- */
        !          54250:       { 100,143739,                     /* character number, location */
        !          54251:          64, 0,   48, 0,      /* topleft row,col, and botleft row,col */
        !          54252:           { 120,   16, 2,52, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          54253:             "\x3a\x04\x70\x0c\x67\x16\x5e\x1e\x56\x26\x4e\x14\x06"
        !          54254:             "\x14\x46\x13\x10\x13\x3d\x13\x1a\x13\x34\x11\x26\x11"
        !          54255:             "\x2c\x10\x30\x10\x24\x0f\x3a\x0f\x1b\x0e\x46\x0e\x12"
        !          54256:             "\x0d\x50\x0d\x0a\x0c\x5a\x0c\x03\x09\x66\x0d\x70\x04" }  },
        !          54257:       /* --- pixel bitmap for cmex600 char#101 ~ --- */
        !          54258:       { 101,144497,                     /* character number, location */
        !          54259:          60, 0,   50, 0,      /* topleft row,col, and botleft row,col */
        !          54260:           { 46,   10, 3,69, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          54261:             "\xc7\xe0\xb1\xbb\xe0\x83\x8e\x01\xe0\x44\x7e\x04\xe0"
        !          54262:             "\x24\x75\x88\xc4\x84\xc8\x85\x74\xe0\x2e\x04\x74\xe0"
        !          54263:             "\x4e\x01\x83\xe0\x8b\xb1\xe0\xb7\xc0" }  },
        !          54264:       /* --- pixel bitmap for cmex600 char#102 ~ --- */
        !          54265:       { 102,145449,                     /* character number, location */
        !          54266:          62, 0,   52, 0,      /* topleft row,col, and botleft row,col */
        !          54267:           { 83,   10, 2,49, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          54268:             "\x15\x0c\x30\x01\x12\x14\x2a\x04\x0d\x1b\x25\x05\x0b"
        !          54269:             "\x0c\x06\x0f\x1f\x05\x0c\x08\x11\x0d\x19\x06\x0c\x06"
        !          54270:             "\x19\x0d\x11\x08\x0c\x05\x1f\x0f\x06\x0c\x0b\x05\x25"
        !          54271:             "\x1b\x0d\x04\x2a\x14\x12\x01\x30\x0c\x15" }  },
        !          54272:       /* --- pixel bitmap for cmex600 char#103 ~ --- */
        !          54273:       { 103,146614,                     /* character number, location */
        !          54274:          62, 0,   51, 0,      /* topleft row,col, and botleft row,col */
        !          54275:           { 120,   11, 2,55, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          54276:             "\x22\x0f\x45\x02\x1b\x1b\x3d\x05\x17\x22\x36\x07\x15"
        !          54277:             "\x0c\x0f\x0e\x30\x07\x14\x0a\x1a\x0c\x29\x08\x13\x09"
        !          54278:             "\x22\x0c\x22\x09\x13\x08\x29\x0c\x1a\x0a\x14\x07\x30"
        !          54279:             "\x0e\x0f\x0c\x15\x07\x36\x22\x17\x05\x3d\x1b\x1b\x02"
        !          54280:             "\x45\x0f\x22" }  },
        !          54281:       /* --- pixel bitmap for cmex600 char#104 \Big[ --- */
        !          54282:       { 104,16401,                      /* character number, location */
        !          54283:           3,18,  -145,18,     /* topleft row,col, and botleft row,col */
        !          54284:           { 20,  148, 2,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          54285:             "\xff\x04\x00\x14\x00\xff\x89\x05\x0f\xff\x04\x14" }  },
        !          54286:       /* --- pixel bitmap for cmex600 char#105 \Big] --- */
        !          54287:       { 105,23835,                      /* character number, location */
        !          54288:           3, 1,  -145, 1,     /* topleft row,col, and botleft row,col */
        !          54289:           { 20,  148, 2,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          54290:             "\xff\x04\x00\x14\xff\x89\x0f\x05\x00\xff\x04\x14" }  },
        !          54291:       /* --- pixel bitmap for cmex600 char#106 (noname) --- */
        !          54292:       { 106,31268,                      /* character number, location */
        !          54293:           3,18,  -145,18,     /* topleft row,col, and botleft row,col */
        !          54294:           { 25,  148, 2, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          54295:             "\xff\x8e\x00\x05\x14\xff\x04\x19" }  },
        !          54296:       /* --- pixel bitmap for cmex600 char#107 (noname) --- */
        !          54297:       { 107,35914,                      /* character number, location */
        !          54298:           3, 1,  -145, 1,     /* topleft row,col, and botleft row,col */
        !          54299:           { 25,  148, 2, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          54300:             "\xff\x8e\x14\x05\x00\xff\x04\x19" }  },
        !          54301:       /* --- pixel bitmap for cmex600 char#108 (noname) --- */
        !          54302:       { 108,40538,                      /* character number, location */
        !          54303:           3,18,  -145,18,     /* topleft row,col, and botleft row,col */
        !          54304:           { 25,  148, 2, 9, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          54305:             "\xff\x04\x00\x19\x00\xff\x8e\x05\x14" }  },
        !          54306:       /* --- pixel bitmap for cmex600 char#109 (noname) --- */
        !          54307:       { 109,45192,                      /* character number, location */
        !          54308:           3, 1,  -145, 1,     /* topleft row,col, and botleft row,col */
        !          54309:           { 25,  148, 2, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          54310:             "\xff\x04\x00\x19\xff\x8e\x14\x05" }  },
        !          54311:       /* --- pixel bitmap for cmex600 char#110 \Big{ --- */
        !          54312:       { 110,50036,                      /* character number, location */
        !          54313:           3,10,  -145,10,     /* topleft row,col, and botleft row,col */
        !          54314:           { 35,  148, 2,160, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          54315:             "\x1f\x04\x1c\x07\x1a\x09\x18\x0b\x17\x0a\x17\x09\x19"
        !          54316:             "\x09\x19\x08\x1a\x08\x1a\x08\x1a\x08\x1b\x07\x0c\x00"
        !          54317:             "\xff\x01\x0f\x07\x0d\x00\x0f\x06\x1c\x07\x0e\x00\xff"
        !          54318:             "\x29\x0e\x06\x0f\x00\x0d\x07\x0f\x00\xff\x01\x0d\x06"
        !          54319:             "\x10\x00\x0c\x07\x1c\x06\x1c\x07\x1c\x06\x1c\x07\x1b"
        !          54320:             "\x07\x1b\x07\x1b\x07\x1a\x08\x1a\x07\x1a\x08\x19\x08"
        !          54321:             "\x1b\xff\x01\x06\x1d\x08\x1d\x08\x1d\x07\x1d\x08\x1d"
        !          54322:             "\x07\x1d\x07\x1d\x07\x1d\x07\x1d\x06\x1d\x07\x1d\x06"
        !          54323:             "\x1d\x07\x10\x00\xff\x01\x0d\x06\x10\x00\x0d\x07\x0f"
        !          54324:             "\x00\xff\x29\x0e\x06\x0f\x00\x0e\x07\x1d\x06\x0e\x00"
        !          54325:             "\xff\x01\x0f\x07\x0d\x00\x10\x07\x1c\x08\x1c\x08\x1c"
        !          54326:             "\x08\x1c\x08\x1c\x09\x1b\x09\x1c\x0a\x1a\x0b\x1a\x09"
        !          54327:             "\x1c\x07\x1f\x04" }  },
        !          54328:       /* --- pixel bitmap for cmex600 char#111 \Big} --- */
        !          54329:       { 111,59220,                      /* character number, location */
        !          54330:           3,10,  -145,10,     /* topleft row,col, and botleft row,col */
        !          54331:           { 35,  148, 3,345, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          54332:             "\x04\xe0\xe0\x36\xe0\xe0\x18\xe0\xda\xe0\xda\xe0\xd9"
        !          54333:             "\xe0\xe8\xe0\xe8\xe0\xe0\x17\xe0\xe0\x17\xe0\x40\xf1"
        !          54334:             "\xb7\xe0\x30\xc7\xe0\x20\xf1\xd6\xe0\x20\xd7\xe0\x10"
        !          54335:             "\xfe\xe6\xe0\x10\xfe\xe6\xe0\x10\xfb\xe6\xe0\x10\xe7"
        !          54336:             "\xe0\xf1\xe0\x16\xe0\xe0\x17\xe0\xe0\x16\xe0\xe0\x17"
        !          54337:             "\xe0\xe0\x17\xb0\xf1\xe0\x47\xa0\xe0\x58\xe0\xe0\x17"
        !          54338:             "\xe0\xe0\x17\xe0\xe0\x18\xe0\xe0\x18\xe0\xe9\xf1\xe0"
        !          54339:             "\xe7\xe0\xc9\xe0\xb8\xe0\xb8\xe0\xc7\xe0\xd7\xe0\xc8"
        !          54340:             "\x80\xf1\xe0\x47\xa0\xe0\x37\xe0\xd7\xe0\xe6\xe0\xe7"
        !          54341:             "\xd0\xf1\xe0\x16\xe0\xe7\xe0\xfe\xe6\xe0\x10\xfe\xe6"
        !          54342:             "\xe0\x10\xfb\xe6\xe0\x10\xd7\xe0\x10\xf1\xd6\xe0\x20"
        !          54343:             "\xc7\xe0\x20\xf1\xb7\xe0\x30\xa7\xe0\xd7\xe0\xc8\xe0"
        !          54344:             "\xc8\xe0\xb9\xe0\xaa\xe0\x9a\xe0\xb8\xe0\xd6\xe0\xe0"
        !          54345:             "\x14\xe0\xe0\x38" }  },
        !          54346:       /* --- pixel bitmap for cmex600 char#112 (noname) --- */
        !          54347:       { 112,93070,                      /* character number, location */
        !          54348:           4, 9,  -96, 9,      /* topleft row,col, and botleft row,col */
        !          54349:           { 77,  100, 2,347, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          54350:             "\x4a\x02\x4a\x04\xff\x01\x48\x05\xff\x01\x47\x05\x01"
        !          54351:             "\x00\xff\x01\x46\x05\x02\x00\xff\x01\x45\x05\x03\x00"
        !          54352:             "\xff\x01\x44\x05\x04\x00\xff\x01\x43\x05\x05\x00\xff"
        !          54353:             "\x01\x42\x05\x06\x00\xff\x01\x41\x05\x07\x00\xff\x01"
        !          54354:             "\x40\x05\x08\x00\xff\x01\x3f\x05\x09\x00\xff\x01\x3e"
        !          54355:             "\x05\x0a\x00\xff\x01\x3d\x05\x0b\x00\x3d\x04\x0c\x00"
        !          54356:             "\xff\x01\x3c\x05\x0c\x00\xff\x01\x3b\x05\x0d\x00\xff"
        !          54357:             "\x01\x3a\x05\x0e\x00\xff\x01\x39\x05\x0f\x00\xff\x01"
        !          54358:             "\x38\x05\x10\x00\xff\x01\x37\x05\x11\x00\xff\x01\x36"
        !          54359:             "\x05\x12\x00\xff\x01\x35\x05\x13\x00\xff\x01\x34\x05"
        !          54360:             "\x14\x00\xff\x01\x33\x05\x15\x00\xff\x01\x32\x05\x16"
        !          54361:             "\x00\x31\x05\x22\x01\x25\x05\x21\x02\x24\x05\x20\x05"
        !          54362:             "\x23\x05\x1f\x06\x22\x05\x1f\x07\x22\x05\x1d\x0a\x20"
        !          54363:             "\x05\x1d\x03\x01\x07\x20\x05\x1c\x03\x03\x07\x1e\x05"
        !          54364:             "\x1b\x04\x04\x07\x1e\x05\x1c\x01\x07\x07\x1c\x05\x25"
        !          54365:             "\x07\x1c\x05\x25\x07\x1b\x05\x27\x07\x1a\x05\x27\x07"
        !          54366:             "\x19\x05\x29\x07\x18\x05\x29\x07\x17\x05\x2b\x07\x16"
        !          54367:             "\x05\x1f\x00\xff\x01\x0c\x07\x15\x05\x20\x00\xff\x01"
        !          54368:             "\x0d\x07\x13\x05\x21\x00\xff\x01\x0e\x07\x11\x05\x22"
        !          54369:             "\x00\x0f\x07\x10\x04\x23\x00\xff\x01\x0f\x07\x0f\x05"
        !          54370:             "\x23\x00\xff\x01\x10\x07\x0d\x05\x24\x00\xff\x01\x11"
        !          54371:             "\x07\x0b\x05\x25\x00\xff\x01\x12\x07\x09\x05\x26\x00"
        !          54372:             "\x12\x07\x08\x05\x3a\x07\x07\x05\x3a\x07\x06\x05\x3c"
        !          54373:             "\x07\x05\x05\x3c\x07\x04\x05\x3e\x07\x03\x05\x29\x00"
        !          54374:             "\xff\x01\x15\x07\x02\x05\x2a\x00\xff\x01\x16\x0c\x2b"
        !          54375:             "\x00\xff\x01\x17\x0a\x2c\x00\xff\x01\x18\x08\x2d\x00"
        !          54376:             "\x18\x07\x47\x06\x47\x05\x49\x03\x30" }  },
        !          54377:       /* --- pixel bitmap for cmex600 char#113 (noname) --- */
        !          54378:       { 113,94268,                      /* character number, location */
        !          54379:           4, 9,  -146, 9,     /* topleft row,col, and botleft row,col */
        !          54380:           { 77,  150, 2,555, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          54381:             "\x4a\x02\x01\x00\xff\x01\x49\x04\xff\x01\x48\x05\x48"
        !          54382:             "\x04\x01\x00\xff\x01\x47\x05\x01\x00\x47\x04\x02\x00"
        !          54383:             "\xff\x01\x46\x05\x02\x00\x46\x04\x03\x00\xff\x01\x45"
        !          54384:             "\x05\x03\x00\x45\x04\x04\x00\xff\x01\x44\x05\x04\x00"
        !          54385:             "\x44\x04\x05\x00\xff\x01\x43\x05\x05\x00\x43\x04\x06"
        !          54386:             "\x00\xff\x01\x42\x05\x06\x00\x42\x04\x07\x00\xff\x01"
        !          54387:             "\x41\x05\x07\x00\x41\x04\x08\x00\xff\x01\x40\x05\x08"
        !          54388:             "\x00\xff\x01\x40\x04\x09\x00\xff\x01\x3f\x05\x09\x00"
        !          54389:             "\x3f\x04\x0a\x00\xff\x01\x3e\x05\x0a\x00\x3e\x04\x0b"
        !          54390:             "\x00\xff\x01\x3d\x05\x0b\x00\x3d\x04\x0c\x00\xff\x01"
        !          54391:             "\x3c\x05\x0c\x00\x3c\x04\x0d\x00\xff\x01\x3b\x05\x0d"
        !          54392:             "\x00\x3b\x04\x0e\x00\xff\x01\x3a\x05\x0e\x00\x3a\x04"
        !          54393:             "\x0f\x00\xff\x01\x39\x05\x0f\x00\x39\x04\x10\x00\xff"
        !          54394:             "\x01\x38\x05\x10\x00\x38\x04\x11\x00\xff\x01\x37\x05"
        !          54395:             "\x11\x00\x37\x04\x12\x00\xff\x01\x36\x05\x12\x00\xff"
        !          54396:             "\x01\x36\x04\x13\x00\xff\x01\x35\x05\x13\x00\x35\x04"
        !          54397:             "\x14\x00\xff\x01\x34\x05\x14\x00\x34\x04\x15\x00\xff"
        !          54398:             "\x01\x33\x05\x15\x00\x33\x04\x16\x00\xff\x01\x32\x05"
        !          54399:             "\x16\x00\x32\x04\x48\x05\x22\x01\x25\x05\x21\x02\x25"
        !          54400:             "\x04\x21\x03\x24\x05\x20\x05\x23\x05\x20\x05\x23\x04"
        !          54401:             "\x20\x06\x22\x05\x1f\x07\x22\x05\x1e\x09\x21\x04\x1e"
        !          54402:             "\x0a\x20\x05\x1d\x03\x01\x07\x20\x05\x1c\x03\x03\x07"
        !          54403:             "\x1f\x04\x1c\x03\x04\x07\x1e\x05\x1c\x02\x05\x07\x1e"
        !          54404:             "\x05\x1b\x02\x06\x07\x1e\x04\x1d\x01\x07\x07\x1d\x04"
        !          54405:             "\x1c\x00\xff\x01\x09\x07\x1c\x05\x1c\x00\x0a\x07\x1b"
        !          54406:             "\x04\x1d\x00\xff\x01\x0a\x07\x1a\x05\x1d\x00\x0a\x07"
        !          54407:             "\x1a\x04\x1e\x00\xff\x01\x0b\x07\x18\x05\x1e\x00\x0b"
        !          54408:             "\x07\x18\x04\x1f\x00\xff\x01\x0c\x07\x16\x05\x1f\x00"
        !          54409:             "\x0c\x07\x16\x04\x2c\x07\x15\x05\x2d\x07\x14\x05\x2d"
        !          54410:             "\x07\x14\x04\x2e\x07\x13\x05\x2f\x07\x12\x05\x2f\x07"
        !          54411:             "\x12\x04\x22\x00\xff\x01\x0e\x07\x11\x05\x22\x00\x0f"
        !          54412:             "\x07\x10\x04\x23\x00\xff\x01\x0f\x07\x0f\x05\x23\x00"
        !          54413:             "\x10\x07\x0e\x04\x24\x00\xff\x01\x10\x07\x0d\x05\x24"
        !          54414:             "\x00\x10\x07\x0d\x04\x25\x00\xff\x01\x11\x07\x0b\x05"
        !          54415:             "\x25\x00\x11\x07\x0b\x04\x38\x07\x0a\x04\x26\x00\xff"
        !          54416:             "\x01\x12\x07\x09\x05\x26\x00\x12\x07\x09\x04\x27\x00"
        !          54417:             "\xff\x01\x13\x07\x07\x05\x27\x00\x13\x07\x07\x04\x28"
        !          54418:             "\x00\xff\x01\x14\x07\x05\x05\x28\x00\x14\x07\x05\x04"
        !          54419:             "\x3d\x07\x04\x05\x3e\x07\x03\x05\x3e\x07\x03\x04\x3f"
        !          54420:             "\x07\x02\x05\x40\x07\x01\x05\x40\x07\x01\x04\x2b\x00"
        !          54421:             "\xff\x01\x16\x0c\x2b\x00\xff\x02\x17\x0a\x2c\x00\xff"
        !          54422:             "\x02\x18\x08\x2d\x00\x18\x07\x2e\x00\xff\x01\x19\x06"
        !          54423:             "\x2e\x00\x19\x05\x49\x04\x49\x03\x30" }  },
        !          54424:       /* --- pixel bitmap for cmex600 char#114 (noname) --- */
        !          54425:       { 114,95613,                      /* character number, location */
        !          54426:           4, 9,  -196, 9,     /* topleft row,col, and botleft row,col */
        !          54427:           { 77,  200, 2,679, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          54428:             "\x4a\x02\x01\x00\xff\x01\x49\x04\xff\x01\x48\x05\xff"
        !          54429:             "\x01\x48\x04\x01\x00\xff\x01\x47\x05\x01\x00\xff\x01"
        !          54430:             "\x47\x04\x02\x00\xff\x01\x46\x05\x02\x00\xff\x02\x46"
        !          54431:             "\x04\x03\x00\xff\x01\x45\x05\x03\x00\xff\x01\x45\x04"
        !          54432:             "\x04\x00\xff\x01\x44\x05\x04\x00\xff\x01\x44\x04\x05"
        !          54433:             "\x00\xff\x01\x43\x05\x05\x00\xff\x01\x43\x04\x06\x00"
        !          54434:             "\xff\x01\x42\x05\x06\x00\xff\x01\x42\x04\x07\x00\xff"
        !          54435:             "\x01\x41\x05\x07\x00\xff\x01\x41\x04\x08\x00\xff\x01"
        !          54436:             "\x40\x05\x08\x00\xff\x02\x40\x04\x09\x00\xff\x01\x3f"
        !          54437:             "\x05\x09\x00\xff\x01\x3f\x04\x0a\x00\xff\x01\x3e\x05"
        !          54438:             "\x0a\x00\xff\x01\x3e\x04\x0b\x00\xff\x01\x3d\x05\x0b"
        !          54439:             "\x00\xff\x01\x3d\x04\x0c\x00\xff\x01\x3c\x05\x0c\x00"
        !          54440:             "\xff\x01\x3c\x04\x0d\x00\xff\x01\x3b\x05\x0d\x00\xff"
        !          54441:             "\x01\x3b\x04\x0e\x00\xff\x01\x3a\x05\x0e\x00\xff\x02"
        !          54442:             "\x3a\x04\x0f\x00\xff\x01\x39\x05\x0f\x00\xff\x01\x39"
        !          54443:             "\x04\x10\x00\xff\x01\x38\x05\x10\x00\xff\x01\x38\x04"
        !          54444:             "\x11\x00\xff\x01\x37\x05\x11\x00\xff\x01\x37\x04\x12"
        !          54445:             "\x00\xff\x01\x36\x05\x12\x00\xff\x01\x36\x04\x13\x00"
        !          54446:             "\xff\x01\x35\x05\x13\x00\xff\x01\x35\x04\x14\x00\xff"
        !          54447:             "\x01\x34\x05\x14\x00\xff\x02\x34\x04\x15\x00\xff\x01"
        !          54448:             "\x33\x05\x15\x00\xff\x01\x33\x04\x16\x00\xff\x01\x32"
        !          54449:             "\x05\x16\x00\xff\x01\x32\x04\x17\x00\x31\x05\x22\x01"
        !          54450:             "\x25\x05\x22\x01\x25\x04\x22\x02\x25\x04\x18\x00\xff"
        !          54451:             "\x01\x09\x03\x24\x05\x18\x00\x08\x05\x23\x04\x20\x06"
        !          54452:             "\x23\x04\x20\x06\x22\x05\x1f\x07\x22\x05\x19\x00\xff"
        !          54453:             "\x01\x05\x09\x21\x04\x1a\x00\x04\x02\x01\x07\x21\x04"
        !          54454:             "\x1d\x03\x01\x07\x20\x05\x1d\x02\x02\x07\x20\x05\x1c"
        !          54455:             "\x02\x04\x07\x1f\x04\x1c\x03\x04\x07\x1f\x04\x1c\x02"
        !          54456:             "\x05\x07\x1e\x05\x1b\x02\x06\x07\x1e\x05\x1c\x01\x06"
        !          54457:             "\x07\x1e\x04\x25\x07\x1d\x04\x1c\x00\xff\x01\x09\x07"
        !          54458:             "\x1c\x05\x1c\x00\x09\x07\x1c\x04\x27\x07\x1b\x04\x1d"
        !          54459:             "\x00\xff\x01\x0a\x07\x1a\x05\x1d\x00\xff\x01\x0a\x07"
        !          54460:             "\x1a\x04\x1e\x00\xff\x01\x0b\x07\x18\x05\x1e\x00\xff"
        !          54461:             "\x01\x0b\x07\x18\x04\x1f\x00\x0b\x07\x17\x05\x2b\x07"
        !          54462:             "\x16\x05\x1f\x00\xff\x02\x0c\x07\x16\x04\x20\x00\xff"
        !          54463:             "\x01\x0d\x07\x14\x05\x20\x00\xff\x01\x0d\x07\x14\x04"
        !          54464:             "\x21\x00\x0d\x07\x13\x05\x2f\x07\x12\x05\x21\x00\xff"
        !          54465:             "\x01\x0e\x07\x12\x04\x22\x00\xff\x01\x0e\x07\x11\x05"
        !          54466:             "\x22\x00\xff\x01\x0f\x07\x10\x04\x23\x00\xff\x01\x0f"
        !          54467:             "\x07\x0f\x05\x23\x00\xff\x01\x10\x07\x0e\x04\x24\x00"
        !          54468:             "\xff\x01\x10\x07\x0d\x05\x24\x00\x10\x07\x0d\x04\x36"
        !          54469:             "\x07\x0c\x04\x25\x00\xff\x01\x11\x07\x0b\x05\x25\x00"
        !          54470:             "\x11\x07\x0b\x04\x26\x00\xff\x01\x12\x07\x0a\x04\x26"
        !          54471:             "\x00\xff\x01\x12\x07\x09\x05\x26\x00\x12\x07\x09\x04"
        !          54472:             "\x3a\x07\x08\x04\x27\x00\xff\x01\x13\x07\x07\x05\x27"
        !          54473:             "\x00\xff\x01\x13\x07\x07\x04\x28\x00\xff\x01\x14\x07"
        !          54474:             "\x05\x05\x28\x00\xff\x01\x14\x07\x05\x04\x29\x00\xff"
        !          54475:             "\x01\x15\x07\x03\x05\x29\x00\xff\x01\x15\x07\x03\x04"
        !          54476:             "\x2a\x00\x15\x07\x02\x05\x40\x07\x01\x05\x2a\x00\xff"
        !          54477:             "\x01\x16\x07\x01\x04\x2b\x00\xff\x01\x16\x0c\x2b\x00"
        !          54478:             "\xff\x03\x17\x0a\x2c\x00\x18\x09\x2c\x00\xff\x03\x18"
        !          54479:             "\x08\x2d\x00\xff\x03\x19\x06\x2e\x00\x19\x05\x49\x04"
        !          54480:             "\x49\x03\x30" }  },
        !          54481:       /* --- pixel bitmap for cmex600 char#115 (noname) --- */
        !          54482:       { 115,97104,                      /* character number, location */
        !          54483:           4, 9,  -246, 9,     /* topleft row,col, and botleft row,col */
        !          54484:           { 77,  250, 2,737, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          54485:             "\x4a\x02\x01\x00\xff\x02\x49\x04\xff\x01\x48\x05\xff"
        !          54486:             "\x02\x48\x04\x01\x00\xff\x01\x47\x05\x01\x00\xff\x02"
        !          54487:             "\x47\x04\x02\x00\xff\x01\x46\x05\x02\x00\xff\x02\x46"
        !          54488:             "\x04\x03\x00\xff\x01\x45\x05\x03\x00\xff\x03\x45\x04"
        !          54489:             "\x04\x00\xff\x01\x44\x05\x04\x00\xff\x02\x44\x04\x05"
        !          54490:             "\x00\xff\x01\x43\x05\x05\x00\xff\x02\x43\x04\x06\x00"
        !          54491:             "\xff\x01\x42\x05\x06\x00\xff\x02\x42\x04\x07\x00\xff"
        !          54492:             "\x01\x41\x05\x07\x00\xff\x02\x41\x04\x08\x00\xff\x01"
        !          54493:             "\x40\x05\x08\x00\xff\x03\x40\x04\x09\x00\xff\x01\x3f"
        !          54494:             "\x05\x09\x00\xff\x02\x3f\x04\x0a\x00\xff\x01\x3e\x05"
        !          54495:             "\x0a\x00\xff\x02\x3e\x04\x0b\x00\xff\x01\x3d\x05\x0b"
        !          54496:             "\x00\xff\x02\x3d\x04\x0c\x00\xff\x01\x3c\x05\x0c\x00"
        !          54497:             "\xff\x03\x3c\x04\x0d\x00\xff\x01\x3b\x05\x0d\x00\xff"
        !          54498:             "\x02\x3b\x04\x0e\x00\xff\x01\x3a\x05\x0e\x00\xff\x02"
        !          54499:             "\x3a\x04\x0f\x00\xff\x01\x39\x05\x0f\x00\xff\x02\x39"
        !          54500:             "\x04\x10\x00\xff\x01\x38\x05\x10\x00\xff\x03\x38\x04"
        !          54501:             "\x11\x00\xff\x01\x37\x05\x11\x00\xff\x02\x37\x04\x12"
        !          54502:             "\x00\xff\x01\x36\x05\x12\x00\xff\x02\x36\x04\x13\x00"
        !          54503:             "\xff\x01\x35\x05\x13\x00\xff\x02\x35\x04\x14\x00\xff"
        !          54504:             "\x01\x34\x05\x14\x00\xff\x03\x34\x04\x15\x00\xff\x01"
        !          54505:             "\x33\x05\x15\x00\xff\x02\x33\x04\x16\x00\xff\x01\x32"
        !          54506:             "\x05\x16\x00\xff\x02\x32\x04\x17\x00\x31\x05\x22\x01"
        !          54507:             "\x25\x05\x22\x01\x25\x04\x18\x00\xff\x01\x0a\x02\x25"
        !          54508:             "\x04\x18\x00\xff\x01\x09\x03\x24\x05\x18\x00\xff\x01"
        !          54509:             "\x08\x05\x23\x04\x19\x00\x07\x06\x23\x04\x20\x06\x22"
        !          54510:             "\x05\x1f\x07\x22\x05\x1f\x07\x22\x04\x1a\x00\xff\x01"
        !          54511:             "\x05\x09\x21\x04\x1a\x00\x04\x02\x01\x07\x21\x04\x1d"
        !          54512:             "\x03\x01\x07\x20\x05\x1d\x02\x02\x07\x20\x05\x1c\x03"
        !          54513:             "\x03\x07\x1f\x04\x1d\x02\x04\x07\x1f\x04\x1c\x03\x04"
        !          54514:             "\x07\x1f\x04\x1c\x02\x05\x07\x1e\x05\x1b\x03\x05\x07"
        !          54515:             "\x1e\x05\x1b\x02\x06\x07\x1e\x04\x1d\x01\x07\x07\x1d"
        !          54516:             "\x04\x25\x07\x1d\x04\x1c\x00\xff\x01\x09\x07\x1c\x05"
        !          54517:             "\x1c\x00\xff\x01\x09\x07\x1c\x04\x1d\x00\x0a\x07\x1b"
        !          54518:             "\x04\x1d\x00\xff\x01\x0a\x07\x1a\x05\x1d\x00\xff\x02"
        !          54519:             "\x0a\x07\x1a\x04\x1e\x00\x0b\x07\x19\x04\x1e\x00\xff"
        !          54520:             "\x01\x0b\x07\x18\x05\x1e\x00\xff\x02\x0b\x07\x18\x04"
        !          54521:             "\x1f\x00\xff\x01\x0c\x07\x16\x05\x1f\x00\xff\x02\x0c"
        !          54522:             "\x07\x16\x04\x20\x00\x0c\x07\x15\x05\x2d\x07\x14\x05"
        !          54523:             "\x20\x00\xff\x02\x0d\x07\x14\x04\x21\x00\x0d\x07\x13"
        !          54524:             "\x05\x2f\x07\x12\x05\x21\x00\xff\x03\x0e\x07\x12\x04"
        !          54525:             "\x22\x00\x0e\x07\x11\x05\x31\x07\x10\x05\x22\x00\xff"
        !          54526:             "\x02\x0f\x07\x10\x04\x23\x00\xff\x01\x0f\x07\x0f\x05"
        !          54527:             "\x23\x00\xff\x02\x10\x07\x0e\x04\x24\x00\xff\x01\x10"
        !          54528:             "\x07\x0d\x05\x24\x00\x10\x07\x0d\x04\x25\x00\xff\x01"
        !          54529:             "\x11\x07\x0c\x04\x25\x00\xff\x01\x11\x07\x0b\x05\x25"
        !          54530:             "\x00\xff\x01\x11\x07\x0b\x04\x26\x00\xff\x01\x12\x07"
        !          54531:             "\x0a\x04\x26\x00\xff\x01\x12\x07\x09\x05\x26\x00\x12"
        !          54532:             "\x07\x09\x04\x27\x00\xff\x01\x13\x07\x08\x04\x27\x00"
        !          54533:             "\xff\x01\x13\x07\x07\x05\x27\x00\xff\x01\x13\x07\x07"
        !          54534:             "\x04\x28\x00\x14\x07\x06\x04\x28\x00\xff\x01\x14\x07"
        !          54535:             "\x05\x05\x28\x00\xff\x02\x14\x07\x05\x04\x29\x00\xff"
        !          54536:             "\x01\x15\x07\x03\x05\x29\x00\xff\x02\x15\x07\x03\x04"
        !          54537:             "\x2a\x00\x15\x07\x02\x05\x40\x07\x01\x05\x2a\x00\xff"
        !          54538:             "\x03\x16\x07\x01\x04\x2b\x00\x16\x0c\x42\x0b\x2b\x00"
        !          54539:             "\xff\x03\x17\x0a\x2c\x00\x18\x09\x2c\x00\xff\x04\x18"
        !          54540:             "\x08\x2d\x00\xff\x04\x19\x06\x2e\x00\x19\x05\x2f\x00"
        !          54541:             "\xff\x01\x1a\x04\x2f\x00\x1a\x03\x30" }  },
        !          54542:       /* --- pixel bitmap for cmex600 char#116 (noname) --- */
        !          54543:       { 116,98783,                      /* character number, location */
        !          54544:           2, 9,  -149, 9,     /* topleft row,col, and botleft row,col */
        !          54545:           { 53,  151, 3,589, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          54546:             "\xe0\xe0\xe0\x82\x10\xfe\xe0\xe0\xe0\x74\xf1\xe0\xe0"
        !          54547:             "\xe0\x74\xf1\xb2\xe0\xe0\x84\xa3\xe0\xe0\x84\xa4\xe0"
        !          54548:             "\xe0\x74\x95\xe0\xe0\x74\x86\xe0\xe0\x74\x87\xe0\xe0"
        !          54549:             "\x64\xf1\x78\xe0\xe0\x64\x6a\xe0\xe0\x54\x62\x17\xe0"
        !          54550:             "\xe0\x54\x53\x17\xe0\xe0\x54\x52\x37\xe0\xe0\x44\x43"
        !          54551:             "\x37\xe0\xe0\x44\x42\x47\xe0\xe0\x44\x33\x57\xe0\xe0"
        !          54552:             "\x34\x32\x67\xe0\xe0\x34\x23\x67\xe0\xe0\x34\x22\x87"
        !          54553:             "\xe0\xe0\x24\xf1\x12\x97\xe0\xe0\x24\x02\xa7\xe0\xe0"
        !          54554:             "\x26\xb7\xe0\xe0\x14\xf1\xd7\xe0\xe0\x14\xf2\xe7\xe0"
        !          54555:             "\xe4\xf2\xe0\x17\xe0\xd4\xf2\xe0\x27\xe0\xc4\xf2\xe0"
        !          54556:             "\x37\xe0\xb4\xf2\xe0\x47\xe0\xa4\xf2\xe0\x57\xe0\x94"
        !          54557:             "\xf2\xe0\x67\xe0\x84\xf2\xe0\x77\xe0\x74\xf2\xe0\x87"
        !          54558:             "\xe0\x64\xf2\xe0\x97\xe0\x54\xf2\xe0\xa7\xe0\x44\xf2"
        !          54559:             "\xe0\xb7\xe0\x34\xf2\xe0\xc7\xe0\x24\xf2\xe0\xd7\xe0"
        !          54560:             "\x14\xf2\xe0\xe7\xe4\xf2\xe0\xe0\x17\xd4\xf2\xe0\xe0"
        !          54561:             "\x27\xc4\xf3\xe0\xe0\x37\xb4\xf2\xe0\xe0\x47\xa4\xf2"
        !          54562:             "\xe0\xe0\x57\x94\xf2\xe0\xe0\x67\x84\xf2\xe0\xe0\x77"
        !          54563:             "\x74\xf2\xe0\xe0\x87\x64\xf2\xe0\xe0\x97\x54\xf2\xe0"
        !          54564:             "\xe0\xa7\x44\xf2\xe0\xe0\xb7\x34\xf2\xe0\xe0\xc7\x24"
        !          54565:             "\xf2\xe0\xe0\xd7\x14\xf2\xe0\xe0\xeb\xf2\xe0\xe0\xe0"
        !          54566:             "\x1a\xf2\xe0\xe0\xe0\x29\xf2\xe0\xe0\xe0\x38\xf2\xe0"
        !          54567:             "\xe0\xe0\x47\xf2\xe0\xe0\xe0\x56\xf2\xe0\xe0\xe0\x65"
        !          54568:             "\xe0\xe0\xe0\x73\xe0\xe0\xe0\x82\x20" }  },
        !          54569:       /* --- pixel bitmap for cmex600 char#117 (noname) --- */
        !          54570:       { 117,100120,                     /* character number, location */
        !          54571:           2,58,  -52,58,      /* topleft row,col, and botleft row,col */
        !          54572:           {  4,   54, 2, 9, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          54573:             "\x01\x02\x01\xff\x33\x04\x01\x02\x01" }  },
        !          54574:       /* --- pixel bitmap for cmex600 char#118 (noname) --- */
        !          54575:       { 118,101019,                     /* character number, location */
        !          54576:           4,58,  -48,58,      /* topleft row,col, and botleft row,col */
        !          54577:           { 33,   52, 2,17, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          54578:             "\x01\x1f\x01\xff\x01\x21\x00\x20\x01\xff\x2e\x04\x1d"
        !          54579:             "\x00\x01\x02\x1e" }  },
        !          54580:       /* --- pixel bitmap for cmex600 char#119 (noname) --- */
        !          54581:       { 119,91953,                      /* character number, location */
        !          54582:           1,22,  -51,22,      /* topleft row,col, and botleft row,col */
        !          54583:           { 22,   52, 2, 6, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          54584:             "\xff\x33\x00\x04\x0e\x04" }  },
        !          54585:       /* --- pixel bitmap for cmex600 char#120 (noname) --- */
        !          54586:       { 120,86613,                      /* character number, location */
        !          54587:          -1,10,  -50,10,      /* topleft row,col, and botleft row,col */
        !          54588:           { 36,   49, 3,131, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          54589:             "\xe0\x32\xe0\x30\xf1\xe0\x24\xe0\x20\xe0\x16\xe0\xe0"
        !          54590:             "\x18\xe0\xda\xe0\xbc\xe0\x9e\xe0\x66\x14\x16\xe0\x36"
        !          54591:             "\x24\x26\xe0\x16\x34\x36\xc6\x54\x56\x87\x64\x67\x48"
        !          54592:             "\x74\x78\x17\x94\x9c\xb4\xb8\xd4\xd4\xe0\x14\xe0\x11"
        !          54593:             "\xfe\xe0\x24\xe0\x20\xfe\xe0\x24\xe0\x20\xe0\x24\xe0"
        !          54594:             "\x20" }  },
        !          54595:       /* --- pixel bitmap for cmex600 char#121 (noname) --- */
        !          54596:       { 121,87650,                      /* character number, location */
        !          54597:           0,10,  -49,10,      /* topleft row,col, and botleft row,col */
        !          54598:           { 36,   49, 3,131, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          54599:             "\xfe\xe0\x24\xe0\x20\xfe\xe0\x24\xe0\x20\xe0\x24\xe0"
        !          54600:             "\x21\xe0\x14\xe0\x14\xd4\xd8\xb4\xbc\x94\x97\x18\x74"
        !          54601:             "\x78\x47\x64\x67\x86\x54\x56\xc6\x34\x36\xe0\x16\x24"
        !          54602:             "\x26\xe0\x36\x14\x16\xe0\x6e\xe0\x9c\xe0\xba\xe0\xd8"
        !          54603:             "\xe0\xe0\x16\xe0\x10\xf1\xe0\x24\xe0\x20\xe0\x32\xe0"
        !          54604:             "\x30" }  },
        !          54605:       /* --- pixel bitmap for cmex600 char#122 (noname) --- */
        !          54606:       { 122,66138,                      /* character number, location */
        !          54607:          10,-3,  -18,-3,      /* topleft row,col, and botleft row,col */
        !          54608:           { 41,   28, 2,57, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          54609:             "\x21\x08\x1d\x0c\x1a\x0f\x17\x12\x15\x14\x13\x16\x11"
        !          54610:             "\x18\x0f\x1a\x0e\x1b\x0d\x1c\x0b\x16\x12\x12\x16\x0f"
        !          54611:             "\x19\x0e\x1a\x0c\x1c\x0c\x1c\x0b\x1d\x0b\x1e\x09\x1f"
        !          54612:             "\x09\x1f\x09\x20\x08\x20\x08\x20\x08\x21\xff\x01\x07"
        !          54613:             "\x22\x06\x23\x05\x24" }  },
        !          54614:       /* --- pixel bitmap for cmex600 char#123 (noname) --- */
        !          54615:       { 123,66762,                      /* character number, location */
        !          54616:          10,-1,  -18,-1,      /* topleft row,col, and botleft row,col */
        !          54617:           { 41,   28, 2,56, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          54618:             "\x00\x08\x21\x0c\x1d\x0f\x1a\x12\x17\x14\x15\x16\x13"
        !          54619:             "\x18\x11\x1a\x0f\x1b\x0e\x1c\x15\x16\x18\x12\x1b\x0f"
        !          54620:             "\x1c\x0e\x1e\x0c\x1e\x0c\x1f\x0b\x1f\x0b\x20\x09\x21"
        !          54621:             "\x09\x21\x09\x21\x08\x22\x08\x22\x08\xff\x01\x22\x07"
        !          54622:             "\x23\x06\x24\x05" }  },
        !          54623:       /* --- pixel bitmap for cmex600 char#124 (noname) --- */
        !          54624:       { 124,67383,                      /* character number, location */
        !          54625:          28,-3,    0,-3,      /* topleft row,col, and botleft row,col */
        !          54626:           { 41,   28, 2,56, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          54627:             "\x00\x05\x24\x06\x23\xff\x01\x07\x22\x08\x22\x08\x22"
        !          54628:             "\x08\x21\x09\x21\x09\x21\x09\x20\x0b\x1f\x0b\x1f\x0c"
        !          54629:             "\x1e\x0c\x1e\x0e\x1c\x0f\x1b\x12\x18\x16\x15\x1c\x0e"
        !          54630:             "\x1b\x0f\x1a\x11\x18\x13\x16\x15\x14\x17\x12\x1a\x0f"
        !          54631:             "\x1d\x0c\x21\x08" }  },
        !          54632:       /* --- pixel bitmap for cmex600 char#125 (noname) --- */
        !          54633:       { 125,68005,                      /* character number, location */
        !          54634:          28,-1,    0,-1,      /* topleft row,col, and botleft row,col */
        !          54635:           { 41,   28, 2,57, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          54636:             "\x24\x05\x23\x06\xff\x01\x22\x07\x21\x08\x20\x08\x20"
        !          54637:             "\x08\x20\x09\x1f\x09\x1f\x09\x1e\x0b\x1d\x0b\x1c\x0c"
        !          54638:             "\x1c\x0c\x1a\x0e\x19\x0f\x16\x12\x12\x16\x0b\x1c\x0d"
        !          54639:             "\x1b\x0e\x1a\x0f\x18\x11\x16\x13\x14\x15\x12\x17\x0f"
        !          54640:             "\x1a\x0c\x1d\x08\x21" }  },
        !          54641:       /* --- pixel bitmap for cmex600 char#126 (noname) --- */
        !          54642:       { 126,89613,                      /* character number, location */
        !          54643:          -1, 5,  -50, 5,      /* topleft row,col, and botleft row,col */
        !          54644:           { 56,   49, 3,239, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          54645:             "\xf1\xe0\xd2\xe0\xd0\xf1\xe0\xc4\xe0\xc0\xe0\xb6\xe0"
        !          54646:             "\xb0\xf1\xe0\xa8\xe0\xa0\xe0\x94\x24\xe0\xe0\xe0\x35"
        !          54647:             "\x25\xe0\xe0\xe0\x15\x45\xe0\xe0\xe4\x64\xe0\xe0\xd4"
        !          54648:             "\x84\xe0\xe0\xb5\x85\xe0\xe0\x95\xa5\xe0\xe0\x75\xc5"
        !          54649:             "\xe0\xe0\x55\xe5\xe0\xe0\x36\xe6\xe0\xe8\xe8\xe0\xb9"
        !          54650:             "\xe9\xe0\x95\x14\xe4\x15\xe0\x66\x24\xe4\x26\xe0\x27"
        !          54651:             "\x34\xe4\x37\xd6\x54\xe4\x56\xa7\x64\xe4\x67\x58\x84"
        !          54652:             "\xe4\x88\x18\x94\xe4\x9e\xb4\xe4\xba\xd4\xe4\xd5\xe0"
        !          54653:             "\x24\xe4\xe0\x21\xfe\xe0\x34\xe4\xe0\x30\xf4\xe0\x34"
        !          54654:             "\xe4\xe0\x30" }  },
        !          54655:       /* --- pixel bitmap for cmex600 char#127 (noname) --- */
        !          54656:       { 127,90887,                      /* character number, location */
        !          54657:           0, 5,  -49, 5,      /* topleft row,col, and botleft row,col */
        !          54658:           { 56,   49, 3,239, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          54659:             "\xfe\xe0\x34\xe4\xe0\x30\xf4\xe0\x34\xe4\xe0\x31\xe0"
        !          54660:             "\x24\xe4\xe0\x25\xd4\xe4\xda\xb4\xe4\xbe\x94\xe4\x98"
        !          54661:             "\x18\x84\xe4\x88\x57\x64\xe4\x67\xa6\x54\xe4\x56\xd7"
        !          54662:             "\x34\xe4\x37\xe0\x26\x24\xe4\x26\xe0\x65\x14\xe4\x15"
        !          54663:             "\xe0\x99\xe9\xe0\xb8\xe8\xe0\xe6\xe6\xe0\xe0\x35\xe5"
        !          54664:             "\xe0\xe0\x55\xc5\xe0\xe0\x75\xa5\xe0\xe0\x95\x85\xe0"
        !          54665:             "\xe0\xb4\x84\xe0\xe0\xd4\x64\xe0\xe0\xe5\x45\xe0\xe0"
        !          54666:             "\xe0\x15\x25\xe0\xe0\xe0\x34\x24\xe0\x90\xf1\xe0\xa8"
        !          54667:             "\xe0\xa0\xe0\xb6\xe0\xb0\xf1\xe0\xc4\xe0\xc0\xf1\xe0"
        !          54668:             "\xd2\xe0\xd0" }  },
        !          54669:       /* --- trailer  --- */
        !          54670:       { -99, -999,  0,0,0,0, { 0,0,0,0, (pixbyte *)"\0" }  }
        !          54671:    } ;
        !          54672: 
        !          54673: 
1.2       albertel 54674: /* ------------------------------------------------------------------------
1.5     ! raeburn  54675: font sizes 0-10 for bbold10
1.2       albertel 54676: ------------------------------------------------------------------------ */
                   54677: 
                   54678: /* --- size=0 for .83gf ---
                   54679:  * mf '\mode=eighthre;  input bbold10'
                   54680:  * --------------------------------------------------------------------- */
1.1       albertel 54681: /* --- fontdef for bbold83 --- */
                   54682: static	chardef  bbold83[] =
                   54683:    {
1.2       albertel 54684:       /* --- pixel bitmap for bbold83 char#0 \Gamma --- */
1.1       albertel 54685:       {   0,   35,                      /* character number, location */
1.2       albertel 54686:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   54687:           {  6,    8, 3, 7, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   54688:             "\x06\x0f\x62\x40" }  },
                   54689:       /* --- pixel bitmap for bbold83 char#1 \Delta --- */
1.1       albertel 54690:       {   1,   58,                      /* character number, location */
1.2       albertel 54691:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   54692:           {  7,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   54693:             "\x08\x04\x87\x63\x32\x0d\xff" }  },
                   54694:       /* --- pixel bitmap for bbold83 char#2 \Theta --- */
1.1       albertel 54695:       {   2,   87,                      /* character number, location */
1.2       albertel 54696:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   54697:           {  6,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   54698:             "\x8c\x34\xee\xe3\x28\x31" }  },
                   54699:       /* --- pixel bitmap for bbold83 char#3 \Lambda --- */
1.1       albertel 54700:       {   3,  122,                      /* character number, location */
1.2       albertel 54701:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   54702:           {  7,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   54703:             "\x08\x04\x87\x63\x32\x0d\x87" }  },
                   54704:       /* --- pixel bitmap for bbold83 char#4 \Xi --- */
1.1       albertel 54705:       {   4,  153,                      /* character number, location */
1.2       albertel 54706:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   54707:           {  7,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   54708:             "\x7f\x00\x00\x03\x00\x00\xfe" }  },
                   54709:       /* --- pixel bitmap for bbold83 char#5 \Pi --- */
1.1       albertel 54710:       {   5,  170,                      /* character number, location */
1.2       albertel 54711:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   54712:           {  6,    8, 3, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   54713:             "\x06\x0f\x62\x31" }  },
                   54714:       /* --- pixel bitmap for bbold83 char#6 \Sigma --- */
1.1       albertel 54715:       {   6,  207,                      /* character number, location */
1.2       albertel 54716:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   54717:           {  6,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   54718:             "\xbf\x61\x30\x8c\x61\xfc" }  },
                   54719:       /* --- pixel bitmap for bbold83 char#7 \Upsilon --- */
1.1       albertel 54720:       {   7,  230,                      /* character number, location */
1.2       albertel 54721:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   54722:           {  6,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   54723:             "\x52\xdb\x32\x0c\xc3\x30" }  },
                   54724:       /* --- pixel bitmap for bbold83 char#8 \Phi --- */
1.1       albertel 54725:       {   8,  263,                      /* character number, location */
1.2       albertel 54726:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   54727:           {  6,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   54728:             "\x0c\xe3\xb5\xad\xc7\x30" }  },
                   54729:       /* --- pixel bitmap for bbold83 char#9 \Psi --- */
1.1       albertel 54730:       {   9,  294,                      /* character number, location */
1.2       albertel 54731:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   54732:           {  6,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   54733:             "\x0c\xd3\x7a\x1e\xc3\x30" }  },
                   54734:       /* --- pixel bitmap for bbold83 char#10 \Omega --- */
1.1       albertel 54735:       {  10,  321,                      /* character number, location */
1.2       albertel 54736:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   54737:           {  6,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   54738:             "\x8c\x34\x8e\xe3\x38\xce" }  },
                   54739:       /* --- pixel bitmap for bbold83 char#11 \alpha --- */
1.1       albertel 54740:       {  11,  358,                      /* character number, location */
1.2       albertel 54741:           5, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   54742:           {  6,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   54743:             "\xee\x3a\x4f\x3e" }  },
                   54744:       /* --- pixel bitmap for bbold83 char#12 \beta --- */
1.1       albertel 54745:       {  12,  385,                      /* character number, location */
1.2       albertel 54746:           8, 0,   -2, 0,      /* topleft row,col, and botleft row,col */
                   54747:           {  5,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   54748:             "\x4c\xce\x35\xe7\x7c\x63\x00" }  },
                   54749:       /* --- pixel bitmap for bbold83 char#13 \gamma --- */
1.1       albertel 54750:       {  13,  424,                      /* character number, location */
1.2       albertel 54751:           5, 0,   -2, 0,      /* topleft row,col, and botleft row,col */
                   54752:           {  5,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   54753:             "\xdb\xa9\x39\xa7\x03" }  },
                   54754:       /* --- pixel bitmap for bbold83 char#14 \delta --- */
1.1       albertel 54755:       {  14,  455,                      /* character number, location */
1.2       albertel 54756:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   54757:           {  5,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   54758:             "\x2e\x06\x37\xe7\x74" }  },
                   54759:       /* --- pixel bitmap for bbold83 char#15 \epsilon --- */
1.1       albertel 54760:       {  15,  486,                      /* character number, location */
1.2       albertel 54761:           5, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   54762:           {  5,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   54763:             "\x6e\x9e\xe9\x00" }  },
                   54764:       /* --- pixel bitmap for bbold83 char#16 \zeta --- */
1.1       albertel 54765:       {  16,  507,                      /* character number, location */
1.2       albertel 54766:           8, 0,   -2, 0,      /* topleft row,col, and botleft row,col */
                   54767:           {  4,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   54768:             "\x48\x32\x33\x63\x48" }  },
                   54769:       /* --- pixel bitmap for bbold83 char#17 \eta --- */
1.1       albertel 54770:       {  17,  534,                      /* character number, location */
1.2       albertel 54771:           5, 0,   -2, 0,      /* topleft row,col, and botleft row,col */
                   54772:           {  5,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   54773:             "\x6f\xce\x39\x21\x04" }  },
                   54774:       /* --- pixel bitmap for bbold83 char#18 \theta --- */
1.1       albertel 54775:       {  18,  563,                      /* character number, location */
1.2       albertel 54776:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   54777:           {  5,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   54778:             "\x6e\xce\x3f\xe7\x74" }  },
                   54779:       /* --- pixel bitmap for bbold83 char#19 \iota --- */
1.1       albertel 54780:       {  19,  596,                      /* character number, location */
1.2       albertel 54781:           5, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   54782:           {  2,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   54783:             "\xff\x02" }  },
                   54784:       /* --- pixel bitmap for bbold83 char#20 \kappa --- */
1.1       albertel 54785:       {  20,  613,                      /* character number, location */
1.2       albertel 54786:           5, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   54787:           {  5,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   54788:             "\xf3\x9d\xb1\x01" }  },
                   54789:       /* --- pixel bitmap for bbold83 char#21 \lambda --- */
1.1       albertel 54790:       {  21,  634,                      /* character number, location */
1.2       albertel 54791:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   54792:           {  5,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   54793:             "\x63\x18\xc3\x9c\xce" }  },
                   54794:       /* --- pixel bitmap for bbold83 char#22 \mu --- */
1.1       albertel 54795:       {  22,  661,                      /* character number, location */
1.2       albertel 54796:           5, 0,   -2, 0,      /* topleft row,col, and botleft row,col */
                   54797:           {  5,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   54798:             "\x73\xce\xf9\xc7\x00" }  },
                   54799:       /* --- pixel bitmap for bbold83 char#23 \nu --- */
1.1       albertel 54800:       {  23,  690,                      /* character number, location */
1.2       albertel 54801:           5, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   54802:           {  5,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   54803:             "\x73\xae\x37\x00" }  },
                   54804:       /* --- pixel bitmap for bbold83 char#24 \xi --- */
1.1       albertel 54805:       {  24,  713,                      /* character number, location */
1.2       albertel 54806:           8, 0,   -2, 0,      /* topleft row,col, and botleft row,col */
                   54807:           {  4,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   54808:             "\x3e\x63\x33\x63\x48" }  },
                   54809:       /* --- pixel bitmap for bbold83 char#25 \pi --- */
1.1       albertel 54810:       {  25,  740,                      /* character number, location */
1.2       albertel 54811:           5, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   54812:           {  5,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   54813:             "\xdf\x39\xe7\x00" }  },
                   54814:       /* --- pixel bitmap for bbold83 char#26 \rho --- */
1.1       albertel 54815:       {  26,  757,                      /* character number, location */
1.2       albertel 54816:           5, 0,   -2, 0,      /* topleft row,col, and botleft row,col */
                   54817:           {  5,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   54818:             "\x6e\xce\xf9\xc6\x00" }  },
                   54819:       /* --- pixel bitmap for bbold83 char#27 \sigma --- */
1.1       albertel 54820:       {  27,  784,                      /* character number, location */
1.2       albertel 54821:           5, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   54822:           {  6,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   54823:             "\xfe\x34\x4d\x0e" }  },
                   54824:       /* --- pixel bitmap for bbold83 char#28 \tau --- */
1.1       albertel 54825:       {  28,  807,                      /* character number, location */
1.2       albertel 54826:           5, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   54827:           {  4,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   54828:             "\x6f\x66\x04" }  },
                   54829:       /* --- pixel bitmap for bbold83 char#29 \upsilon --- */
1.1       albertel 54830:       {  29,  824,                      /* character number, location */
1.2       albertel 54831:           5, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   54832:           {  5,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   54833:             "\x73\xce\xe9\x00" }  },
                   54834:       /* --- pixel bitmap for bbold83 char#30 \phi --- */
1.1       albertel 54835:       {  30,  849,                      /* character number, location */
1.2       albertel 54836:           8, 0,   -2, 0,      /* topleft row,col, and botleft row,col */
                   54837:           {  4,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   54838:             "\x66\x66\xff\x6f\x66" }  },
                   54839:       /* --- pixel bitmap for bbold83 char#31 \chi --- */
1.1       albertel 54840:       {  31,  876,                      /* character number, location */
1.2       albertel 54841:           5, 0,   -2, 0,      /* topleft row,col, and botleft row,col */
                   54842:           {  5,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   54843:             "\x59\x3b\xe6\xdc\x04" }  },
                   54844:       /* --- pixel bitmap for bbold83 char#32 \psi --- */
1.1       albertel 54845:       {  32,  903,                      /* character number, location */
1.2       albertel 54846:           8, 0,   -2, 0,      /* topleft row,col, and botleft row,col */
                   54847:           {  4,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   54848:             "\x66\xf6\xff\x6f\x66" }  },
                   54849:       /* --- pixel bitmap for bbold83 char#33 ! --- */
1.1       albertel 54850:       {  33, 2697,                      /* character number, location */
1.2       albertel 54851:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   54852:           {  2,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   54853:             "\xff\xff" }  },
1.1       albertel 54854:       /* --- pixel bitmap for bbold83 char#34 (noname) --- */
                   54855:       {  34, 3464,                      /* character number, location */
1.2       albertel 54856:           8, 0,    4, 0,      /* topleft row,col, and botleft row,col */
                   54857:           {  5,    4, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   54858:             "\x7b\xcb\x04" }  },
                   54859:       /* --- pixel bitmap for bbold83 char#35 # --- */
1.1       albertel 54860:       {  35, 2720,                      /* character number, location */
1.2       albertel 54861:           8, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   54862:           {  7,   10, 3,15, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   54863:             "\xf2\x23\x27\x23\x27\xf3\x23\x21" }  },
                   54864:       /* --- pixel bitmap for bbold83 char#36 $ --- */
1.1       albertel 54865:       {  36, 2747,                      /* character number, location */
1.2       albertel 54866:           9, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
                   54867:           {  6,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   54868:             "\x8c\xd7\x36\x1e\xcb\xb6\x1e\x03" }  },
                   54869:       /* --- pixel bitmap for bbold83 char#37 % --- */
1.1       albertel 54870:       {  37, 2788,                      /* character number, location */
1.2       albertel 54871:           9, 0,   -4, 0,      /* topleft row,col, and botleft row,col */
                   54872:           {  6,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   54873:             "\xf3\x8c\x61\x18\xc3\x30\x86\x61\xcc\x33" }  },
                   54874:       /* --- pixel bitmap for bbold83 char#38 & --- */
1.1       albertel 54875:       {  38, 2829,                      /* character number, location */
1.2       albertel 54876:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   54877:           {  8,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   54878:             "\x08\x14\x14\x0c\x0b\x4b\xb3\x7e" }  },
                   54879:       /* --- pixel bitmap for bbold83 char#39 ' --- */
1.1       albertel 54880:       {  39, 2866,                      /* character number, location */
1.2       albertel 54881:           8, 0,    4, 0,      /* topleft row,col, and botleft row,col */
                   54882:           {  2,    4, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   54883:             "\x6f" }  },
                   54884:       /* --- pixel bitmap for bbold83 char#40 ( --- */
1.1       albertel 54885:       {  40, 2881,                      /* character number, location */
1.2       albertel 54886:           9, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   54887:           {  3,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   54888:             "\xde\xb6\x6d\xdb\x0c" }  },
                   54889:       /* --- pixel bitmap for bbold83 char#41 ) --- */
1.1       albertel 54890:       {  41, 2912,                      /* character number, location */
1.2       albertel 54891:           9, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   54892:           {  3,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   54893:             "\xb3\x6d\xdb\xb6\x07" }  },
                   54894:       /* --- pixel bitmap for bbold83 char#42 * --- */
1.1       albertel 54895:       {  42, 2943,                      /* character number, location */
1.2       albertel 54896:           7, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
                   54897:           {  6,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   54898:             "\x0c\xd3\x7a\x5e\xcb\x30" }  },
                   54899:       /* --- pixel bitmap for bbold83 char#43 + --- */
1.1       albertel 54900:       {  43, 2974,                      /* character number, location */
1.2       albertel 54901:           7, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   54902:           {  7,    8, 3,11, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   54903:             "\xf2\x22\x37\xf3\x22\x31" }  },
                   54904:       /* --- pixel bitmap for bbold83 char#44 , --- */
1.1       albertel 54905:       {  44, 2997,                      /* character number, location */
1.2       albertel 54906:           2, 0,   -2, 0,      /* topleft row,col, and botleft row,col */
                   54907:           {  2,    4, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   54908:             "\x6f" }  },
                   54909:       /* --- pixel bitmap for bbold83 char#45 - --- */
1.1       albertel 54910:       {  45, 3012,                      /* character number, location */
1.2       albertel 54911:           3, 0,    2, 0,      /* topleft row,col, and botleft row,col */
                   54912:           {  4,    1, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   54913:             "\x0f" }  },
                   54914:       /* --- pixel bitmap for bbold83 char#46 . --- */
1.1       albertel 54915:       {  46, 3021,                      /* character number, location */
1.2       albertel 54916:           2, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   54917:           {  2,    2, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   54918:             "\x0f" }  },
                   54919:       /* --- pixel bitmap for bbold83 char#47 / --- */
1.1       albertel 54920:       {  47, 3032,                      /* character number, location */
1.2       albertel 54921:           9, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   54922:           {  6,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   54923:             "\x30\x8c\x61\x18\xc3\x18\x86\x31\x0c" }  },
                   54924:       /* --- pixel bitmap for bbold83 char#48 0 --- */
1.1       albertel 54925:       {  48,  961,                      /* character number, location */
1.2       albertel 54926:           7, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   54927:           {  5,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   54928:             "\x6e\xce\x39\xa7\x03" }  },
                   54929:       /* --- pixel bitmap for bbold83 char#49 1 --- */
1.1       albertel 54930:       {  49,  992,                      /* character number, location */
1.2       albertel 54931:           7, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   54932:           {  6,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   54933:             "\x88\xd3\x30\x0c\xf3\x03" }  },
                   54934:       /* --- pixel bitmap for bbold83 char#50 2 --- */
1.1       albertel 54935:       {  50, 1015,                      /* character number, location */
1.2       albertel 54936:           7, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   54937:           {  5,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   54938:             "\x2e\x67\x64\xc2\x07" }  },
                   54939:       /* --- pixel bitmap for bbold83 char#51 3 --- */
1.1       albertel 54940:       {  51, 1040,                      /* character number, location */
1.2       albertel 54941:           7, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   54942:           {  5,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   54943:             "\x2e\x67\x96\xb3\x03" }  },
                   54944:       /* --- pixel bitmap for bbold83 char#52 4 --- */
1.1       albertel 54945:       {  52, 1069,                      /* character number, location */
1.2       albertel 54946:           7, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   54947:           {  5,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   54948:             "\x88\x31\xe7\x3e\x03" }  },
                   54949:       /* --- pixel bitmap for bbold83 char#53 5 --- */
1.1       albertel 54950:       {  53, 1090,                      /* character number, location */
1.2       albertel 54951:           7, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   54952:           {  5,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   54953:             "\xff\x41\x18\xa3\x03" }  },
                   54954:       /* --- pixel bitmap for bbold83 char#54 6 --- */
1.1       albertel 54955:       {  54, 1115,                      /* character number, location */
1.2       albertel 54956:           7, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   54957:           {  5,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   54958:             "\xee\xcf\x39\xa7\x03" }  },
                   54959:       /* --- pixel bitmap for bbold83 char#55 7 --- */
1.1       albertel 54960:       {  55, 1144,                      /* character number, location */
1.2       albertel 54961:           7, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   54962:           {  5,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   54963:             "\x1f\x33\x66\xcc\x00" }  },
                   54964:       /* --- pixel bitmap for bbold83 char#56 8 --- */
1.1       albertel 54965:       {  56, 1165,                      /* character number, location */
1.2       albertel 54966:           7, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   54967:           {  5,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   54968:             "\x6e\x4e\x37\xa7\x03" }  },
                   54969:       /* --- pixel bitmap for bbold83 char#57 9 --- */
1.1       albertel 54970:       {  57, 1194,                      /* character number, location */
1.2       albertel 54971:           7, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   54972:           {  5,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   54973:             "\x6e\xce\x39\xbf\x03" }  },
                   54974:       /* --- pixel bitmap for bbold83 char#58 : --- */
1.1       albertel 54975:       {  58, 3063,                      /* character number, location */
1.2       albertel 54976:           5, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   54977:           {  2,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   54978:             "\xcf\x03" }  },
                   54979:       /* --- pixel bitmap for bbold83 char#59 ; --- */
1.1       albertel 54980:       {  59, 3080,                      /* character number, location */
1.2       albertel 54981:           5, 0,   -2, 0,      /* topleft row,col, and botleft row,col */
                   54982:           {  2,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   54983:             "\xcf\x1b" }  },
                   54984:       /* --- pixel bitmap for bbold83 char#60 < --- */
1.1       albertel 54985:       {  60, 3101,                      /* character number, location */
1.2       albertel 54986:           6, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   54987:           {  8,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   54988:             "\xc0\x38\x06\x0a\x3c\xf0" }  },
                   54989:       /* --- pixel bitmap for bbold83 char#61 \cdot --- */
1.1       albertel 54990:       {  61, 3122,                      /* character number, location */
1.2       albertel 54991:           4, 0,    2, 0,      /* topleft row,col, and botleft row,col */
                   54992:           {  2,    2, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   54993:             "\x0f" }  },
                   54994:       /* --- pixel bitmap for bbold83 char#62 > --- */
1.1       albertel 54995:       {  62, 3133,                      /* character number, location */
1.2       albertel 54996:           6, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   54997:           {  8,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   54998:             "\x03\x1c\xe0\x70\x1c\x07" }  },
                   54999:       /* --- pixel bitmap for bbold83 char#63 ? --- */
1.1       albertel 55000:       {  63, 3152,                      /* character number, location */
1.2       albertel 55001:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55002:           {  6,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55003:             "\x5e\x18\x62\x0c\xc3\x30" }  },
                   55004:       /* --- pixel bitmap for bbold83 char#64 @ --- */
1.1       albertel 55005:       {  64, 3179,                      /* character number, location */
1.2       albertel 55006:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55007:           {  5,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55008:             "\x6e\xce\xbd\xe7\x74" }  },
                   55009:       /* --- pixel bitmap for bbold83 char#65 A --- */
1.1       albertel 55010:       {  65, 1223,                      /* character number, location */
1.2       albertel 55011:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55012:           {  6,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55013:             "\x08\xc3\x58\x96\xf5\x8f" }  },
                   55014:       /* --- pixel bitmap for bbold83 char#66 B --- */
1.1       albertel 55015:       {  66, 1254,                      /* character number, location */
1.2       albertel 55016:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55017:           {  6,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55018:             "\xdf\x38\x7e\xe3\x38\x7e" }  },
                   55019:       /* --- pixel bitmap for bbold83 char#67 C --- */
1.1       albertel 55020:       {  67, 1287,                      /* character number, location */
1.2       albertel 55021:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55022:           {  6,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55023:             "\x9c\x38\x0e\xc3\x28\x72" }  },
                   55024:       /* --- pixel bitmap for bbold83 char#68 D --- */
1.1       albertel 55025:       {  68, 1318,                      /* character number, location */
1.2       albertel 55026:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55027:           {  6,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55028:             "\xcf\x34\x8e\xe3\x38\x3d" }  },
                   55029:       /* --- pixel bitmap for bbold83 char#69 E --- */
1.1       albertel 55030:       {  69, 1353,                      /* character number, location */
1.2       albertel 55031:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55032:           {  6,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55033:             "\xff\x30\x3c\xc3\x30\xfc" }  },
                   55034:       /* --- pixel bitmap for bbold83 char#70 F --- */
1.1       albertel 55035:       {  70, 1376,                      /* character number, location */
1.2       albertel 55036:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55037:           {  6,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55038:             "\xff\x30\x3c\xc3\x30\x0c" }  },
                   55039:       /* --- pixel bitmap for bbold83 char#71 G --- */
1.1       albertel 55040:       {  71, 1399,                      /* character number, location */
1.2       albertel 55041:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55042:           {  6,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55043:             "\x9c\x38\x0e\xfb\x28\x72" }  },
                   55044:       /* --- pixel bitmap for bbold83 char#72 H --- */
1.1       albertel 55045:       {  72, 1432,                      /* character number, location */
1.2       albertel 55046:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55047:           {  6,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55048:             "\xe3\x38\xfe\xe3\x38\x8e" }  },
                   55049:       /* --- pixel bitmap for bbold83 char#73 I --- */
1.1       albertel 55050:       {  73, 1469,                      /* character number, location */
1.2       albertel 55051:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55052:           {  2,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55053:             "\xff\xff" }  },
                   55054:       /* --- pixel bitmap for bbold83 char#74 J --- */
1.1       albertel 55055:       {  74, 1492,                      /* character number, location */
1.2       albertel 55056:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55057:           {  6,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55058:             "\x30\x0c\xc3\x70\x1c\x39" }  },
                   55059:       /* --- pixel bitmap for bbold83 char#75 K --- */
1.1       albertel 55060:       {  75, 1519,                      /* character number, location */
1.2       albertel 55061:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55062:           {  6,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55063:             "\xe3\xb4\x2c\xcf\x34\x8d" }  },
                   55064:       /* --- pixel bitmap for bbold83 char#76 L --- */
1.1       albertel 55065:       {  76, 1556,                      /* character number, location */
1.2       albertel 55066:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55067:           {  6,    8, 3, 6, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55068:             "\xf6\x02\x46" }  },
                   55069:       /* --- pixel bitmap for bbold83 char#77 M --- */
1.1       albertel 55070:       {  77, 1579,                      /* character number, location */
1.2       albertel 55071:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55072:           {  7,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55073:             "\xc1\xf1\x75\x39\x1c\x0e\x87" }  },
                   55074:       /* --- pixel bitmap for bbold83 char#78 N --- */
1.1       albertel 55075:       {  78, 1622,                      /* character number, location */
1.2       albertel 55076:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55077:           {  6,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55078:             "\xe1\x38\x9e\xeb\x3c\x8f" }  },
                   55079:       /* --- pixel bitmap for bbold83 char#79 O --- */
1.1       albertel 55080:       {  79, 1663,                      /* character number, location */
1.2       albertel 55081:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55082:           {  6,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55083:             "\x8c\x34\x8e\xe3\x28\x31" }  },
                   55084:       /* --- pixel bitmap for bbold83 char#80 P --- */
1.1       albertel 55085:       {  80, 1698,                      /* character number, location */
1.2       albertel 55086:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55087:           {  6,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55088:             "\xdf\x38\x7e\xc3\x30\x0c" }  },
                   55089:       /* --- pixel bitmap for bbold83 char#81 Q --- */
1.1       albertel 55090:       {  81, 1725,                      /* character number, location */
1.2       albertel 55091:           8, 0,   -2, 0,      /* topleft row,col, and botleft row,col */
                   55092:           {  6,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55093:             "\x8c\x34\x8e\xe3\xa8\x31\x10\x08" }  },
                   55094:       /* --- pixel bitmap for bbold83 char#82 R --- */
1.1       albertel 55095:       {  82, 1764,                      /* character number, location */
1.2       albertel 55096:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55097:           {  6,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55098:             "\xdf\x38\x7e\xcb\x34\x8d" }  },
                   55099:       /* --- pixel bitmap for bbold83 char#83 S --- */
1.1       albertel 55100:       {  83, 1799,                      /* character number, location */
1.2       albertel 55101:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55102:           {  6,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55103:             "\xde\x38\x7a\x60\x18\x7a" }  },
                   55104:       /* --- pixel bitmap for bbold83 char#84 T --- */
1.1       albertel 55105:       {  84, 1830,                      /* character number, location */
1.2       albertel 55106:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55107:           {  6,    8, 3, 7, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55108:             "\x06\xf6\x22\x21" }  },
                   55109:       /* --- pixel bitmap for bbold83 char#85 U --- */
1.1       albertel 55110:       {  85, 1853,                      /* character number, location */
1.2       albertel 55111:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55112:           {  6,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55113:             "\xe3\x38\x8e\xe3\x28\x31" }  },
                   55114:       /* --- pixel bitmap for bbold83 char#86 V --- */
1.1       albertel 55115:       {  86, 1890,                      /* character number, location */
1.2       albertel 55116:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55117:           {  7,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55118:             "\xc3\xa1\xc9\xc4\xe1\x20\x10" }  },
                   55119:       /* --- pixel bitmap for bbold83 char#87 W --- */
1.1       albertel 55120:       {  87, 1921,                      /* character number, location */
1.2       albertel 55121:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55122:           {  9,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55123:             "\x03\x07\x1a\xb2\xe4\xc9\x15\x1b\x22" }  },
                   55124:       /* --- pixel bitmap for bbold83 char#88 X --- */
1.1       albertel 55125:       {  88, 1964,                      /* character number, location */
1.2       albertel 55126:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55127:           {  6,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55128:             "\xb1\xa6\x31\x8c\x65\x8d" }  },
                   55129:       /* --- pixel bitmap for bbold83 char#89 Y --- */
1.1       albertel 55130:       {  89, 1999,                      /* character number, location */
1.2       albertel 55131:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55132:           {  6,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55133:             "\xa3\x65\x31\x0c\xc3\x30" }  },
                   55134:       /* --- pixel bitmap for bbold83 char#90 Z --- */
1.1       albertel 55135:       {  90, 2028,                      /* character number, location */
1.2       albertel 55136:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55137:           {  6,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55138:             "\x3f\x86\x31\x8c\x61\xfc" }  },
                   55139:       /* --- pixel bitmap for bbold83 char#91 [ --- */
1.1       albertel 55140:       {  91, 3214,                      /* character number, location */
1.2       albertel 55141:           9, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   55142:           {  3,   12, 3, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55143:             "\x03\x0f\x92\x13" }  },
                   55144:       /* --- pixel bitmap for bbold83 char#92 \\ --- */
1.1       albertel 55145:       {  92, 3245,                      /* character number, location */
1.2       albertel 55146:           9, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   55147:           {  6,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55148:             "\xc3\x60\x18\x06\xc3\x60\x18\x06\xc3" }  },
                   55149:       /* --- pixel bitmap for bbold83 char#93 ] --- */
1.1       albertel 55150:       {  93, 3276,                      /* character number, location */
1.2       albertel 55151:           9, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   55152:           {  3,   12, 3, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55153:             "\x03\xf9\x12\x03" }  },
1.1       albertel 55154:       /* --- pixel bitmap for bbold83 char#94 (noname) --- */
                   55155:       {  94, 3307,                      /* character number, location */
1.2       albertel 55156:           9, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   55157:           {  3,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55158:             "\xa4\xed\xd6\x36\x09" }  },
1.1       albertel 55159:       /* --- pixel bitmap for bbold83 char#95 (noname) --- */
                   55160:       {  95, 3342,                      /* character number, location */
1.2       albertel 55161:           9, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   55162:           {  3,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55163:             "\xc9\xb6\x76\x5b\x02" }  },
1.1       albertel 55164:       /* --- pixel bitmap for bbold83 char#96 (noname) --- */
                   55165:       {  96, 3377,                      /* character number, location */
1.2       albertel 55166:           8, 0,    4, 0,      /* topleft row,col, and botleft row,col */
                   55167:           {  2,    4, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55168:             "\xf6" }  },
                   55169:       /* --- pixel bitmap for bbold83 char#97 a --- */
1.1       albertel 55170:       {  97, 2051,                      /* character number, location */
1.2       albertel 55171:           5, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55172:           {  5,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55173:             "\x7e\xce\xe9\x01" }  },
                   55174:       /* --- pixel bitmap for bbold83 char#98 b --- */
1.1       albertel 55175:       {  98, 2074,                      /* character number, location */
1.2       albertel 55176:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55177:           {  6,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55178:             "\xc3\x30\x7c\xe3\x38\x7e" }  },
                   55179:       /* --- pixel bitmap for bbold83 char#99 c --- */
1.1       albertel 55180:       {  99, 2103,                      /* character number, location */
1.2       albertel 55181:           5, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55182:           {  5,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55183:             "\x6e\x8e\xe9\x00" }  },
                   55184:       /* --- pixel bitmap for bbold83 char#100 d --- */
1.1       albertel 55185:       { 100, 2124,                      /* character number, location */
1.2       albertel 55186:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55187:           {  5,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55188:             "\x10\x42\x3f\xe7\xf4" }  },
                   55189:       /* --- pixel bitmap for bbold83 char#101 e --- */
1.1       albertel 55190:       { 101, 2153,                      /* character number, location */
1.2       albertel 55191:           5, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55192:           {  5,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55193:             "\x6e\xfe\xe9\x00" }  },
                   55194:       /* --- pixel bitmap for bbold83 char#102 f --- */
1.1       albertel 55195:       { 102, 2174,                      /* character number, location */
1.2       albertel 55196:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55197:           {  4,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55198:             "\xb6\x73\x33\x33" }  },
                   55199:       /* --- pixel bitmap for bbold83 char#103 g --- */
1.1       albertel 55200:       { 103, 2199,                      /* character number, location */
1.2       albertel 55201:           5, 0,   -2, 0,      /* topleft row,col, and botleft row,col */
                   55202:           {  5,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55203:             "\x7e\xce\xe9\xe1\x03" }  },
                   55204:       /* --- pixel bitmap for bbold83 char#104 h --- */
1.1       albertel 55205:       { 104, 2226,                      /* character number, location */
1.2       albertel 55206:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55207:           {  5,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55208:             "\x63\x8c\x37\xe7\x9c" }  },
                   55209:       /* --- pixel bitmap for bbold83 char#105 i --- */
1.1       albertel 55210:       { 105, 2257,                      /* character number, location */
1.2       albertel 55211:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55212:           {  2,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55213:             "\xcf\xff" }  },
                   55214:       /* --- pixel bitmap for bbold83 char#106 j --- */
1.1       albertel 55215:       { 106, 2280,                      /* character number, location */
1.2       albertel 55216:           8, 0,   -2, 0,      /* topleft row,col, and botleft row,col */
                   55217:           {  4,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55218:             "\xcc\xc0\xcc\xcc\x7c" }  },
                   55219:       /* --- pixel bitmap for bbold83 char#107 k --- */
1.1       albertel 55220:       { 107, 2307,                      /* character number, location */
1.2       albertel 55221:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55222:           {  5,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55223:             "\x63\x8c\xb9\xce\x9a" }  },
                   55224:       /* --- pixel bitmap for bbold83 char#108 l --- */
1.1       albertel 55225:       { 108, 2338,                      /* character number, location */
1.2       albertel 55226:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55227:           {  2,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55228:             "\xff\xbf" }  },
                   55229:       /* --- pixel bitmap for bbold83 char#109 m --- */
1.1       albertel 55230:       { 109, 2361,                      /* character number, location */
1.2       albertel 55231:           5, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55232:           {  7,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55233:             "\xbf\xed\x74\x3a\x05" }  },
                   55234:       /* --- pixel bitmap for bbold83 char#110 n --- */
1.1       albertel 55235:       { 110, 2394,                      /* character number, location */
1.2       albertel 55236:           5, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55237:           {  5,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55238:             "\x6f\xce\x39\x01" }  },
                   55239:       /* --- pixel bitmap for bbold83 char#111 o --- */
1.1       albertel 55240:       { 111, 2419,                      /* character number, location */
1.2       albertel 55241:           5, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55242:           {  5,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55243:             "\x6e\xce\xe9\x00" }  },
                   55244:       /* --- pixel bitmap for bbold83 char#112 p --- */
1.1       albertel 55245:       { 112, 2442,                      /* character number, location */
1.2       albertel 55246:           5, 0,   -2, 0,      /* topleft row,col, and botleft row,col */
                   55247:           {  6,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55248:             "\xdf\x38\x8e\xdf\x30\x00" }  },
                   55249:       /* --- pixel bitmap for bbold83 char#113 q --- */
1.1       albertel 55250:       { 113, 2469,                      /* character number, location */
1.2       albertel 55251:           5, 0,   -2, 0,      /* topleft row,col, and botleft row,col */
                   55252:           {  5,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55253:             "\x7e\xce\xe9\x21\x04" }  },
                   55254:       /* --- pixel bitmap for bbold83 char#114 r --- */
1.1       albertel 55255:       { 114, 2496,                      /* character number, location */
1.2       albertel 55256:           5, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55257:           {  5,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55258:             "\x6f\x8e\x31\x00" }  },
                   55259:       /* --- pixel bitmap for bbold83 char#115 s --- */
1.1       albertel 55260:       { 115, 2515,                      /* character number, location */
1.2       albertel 55261:           5, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55262:           {  4,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55263:             "\xb6\x96\x06" }  },
                   55264:       /* --- pixel bitmap for bbold83 char#116 t --- */
1.1       albertel 55265:       { 116, 2536,                      /* character number, location */
1.2       albertel 55266:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55267:           {  4,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55268:             "\x33\xf3\x33\x6b" }  },
                   55269:       /* --- pixel bitmap for bbold83 char#117 u --- */
1.1       albertel 55270:       { 117, 2561,                      /* character number, location */
1.2       albertel 55271:           5, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55272:           {  5,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55273:             "\x73\xce\xe9\x01" }  },
                   55274:       /* --- pixel bitmap for bbold83 char#118 v --- */
1.1       albertel 55275:       { 118, 2586,                      /* character number, location */
1.2       albertel 55276:           5, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55277:           {  5,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55278:             "\x53\x39\x46\x00" }  },
                   55279:       /* --- pixel bitmap for bbold83 char#119 w --- */
1.1       albertel 55280:       { 119, 2607,                      /* character number, location */
1.2       albertel 55281:           5, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55282:           {  7,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55283:             "\xc3\xa1\xcb\x46\x02" }  },
                   55284:       /* --- pixel bitmap for bbold83 char#120 x --- */
1.1       albertel 55285:       { 120, 2634,                      /* character number, location */
1.2       albertel 55286:           5, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55287:           {  5,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55288:             "\xd9\x19\x37\x01" }  },
                   55289:       /* --- pixel bitmap for bbold83 char#121 y --- */
1.1       albertel 55290:       { 121, 2655,                      /* character number, location */
1.2       albertel 55291:           5, 0,   -2, 0,      /* topleft row,col, and botleft row,col */
                   55292:           {  5,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55293:             "\x53\x39\x42\x44\x00" }  },
                   55294:       /* --- pixel bitmap for bbold83 char#122 z --- */
1.1       albertel 55295:       { 122, 2680,                      /* character number, location */
1.2       albertel 55296:           5, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55297:           {  5,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55298:             "\x9f\x19\xf3\x01" }  },
                   55299:       /* --- pixel bitmap for bbold83 char#123 \- --- */
1.1       albertel 55300:       { 123, 3423,                      /* character number, location */
1.2       albertel 55301:           3, 0,    2, 0,      /* topleft row,col, and botleft row,col */
                   55302:           {  4,    1, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55303:             "\x0f" }  },
                   55304:       /* --- pixel bitmap for bbold83 char#124 | --- */
1.1       albertel 55305:       { 124, 3392,                      /* character number, location */
1.2       albertel 55306:           9, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   55307:           {  2,   12, 3, 4, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55308:             "\xfb\x02" }  },
1.1       albertel 55309:       /* --- pixel bitmap for bbold83 char#125 (noname) --- */
                   55310:       { 125, 3432,                      /* character number, location */
1.2       albertel 55311:           3, 0,    2, 0,      /* topleft row,col, and botleft row,col */
                   55312:           {  9,    1, 3, 2, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55313:             "\x09" }  },
1.1       albertel 55314:       /* --- pixel bitmap for bbold83 char#126 (noname) --- */
                   55315:       { 126, 3441,                      /* character number, location */
1.2       albertel 55316:           8, 0,    4, 0,      /* topleft row,col, and botleft row,col */
                   55317:           {  5,    4, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55318:             "\x32\xed\x0d" }  },
                   55319:       /* --- pixel bitmap for bbold83 char#127 \omega --- */
1.1       albertel 55320:       { 127,  930,                      /* character number, location */
1.2       albertel 55321:           5, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55322:           {  7,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55323:             "\xa2\xe1\x72\x69\x03" }  },
1.1       albertel 55324:       /* --- trailer  --- */
1.2       albertel 55325:       { -99, -999,  0,0,0,0, { 0,0,0,0, (pixbyte *)"\0" }  }
1.1       albertel 55326:    } ;
                   55327: 
                   55328: 
1.2       albertel 55329: /* --- size=1 for .100gf ---
                   55330:  * mf '\mode=preview; mag=magstep(-17.87427405946994351363); input bbold10'
                   55331:  * --------------------------------------------------------------------- */
1.1       albertel 55332: /* --- fontdef for bbold100 --- */
                   55333: static	chardef  bbold100[] =
                   55334:    {
1.2       albertel 55335:       /* --- pixel bitmap for bbold100 char#0 \Gamma --- */
                   55336:       {   0,  246,                      /* character number, location */
                   55337:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   55338:           {  7,    9, 3,11, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55339:             "\x07\x0f\x61\x11\x43\x40" }  },
                   55340:       /* --- pixel bitmap for bbold100 char#1 \Delta --- */
                   55341:       {   1,  496,                      /* character number, location */
                   55342:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55343:           {  7,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55344:             "\x08\x04\x85\xa2\x51\xa9\x8a\x7f" }  },
                   55345:       /* --- pixel bitmap for bbold100 char#2 \Theta --- */
                   55346:       {   2,  750,                      /* character number, location */
                   55347:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55348:           {  8,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55349:             "\x3c\x46\x85\x85\xb5\x85\x85\x46\x3c" }  },
                   55350:       /* --- pixel bitmap for bbold100 char#3 \Lambda --- */
                   55351:       {   3, 1013,                      /* character number, location */
                   55352:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55353:           {  7,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55354:             "\x08\x04\x85\xa2\x51\xa9\x8a\x47" }  },
                   55355:       /* --- pixel bitmap for bbold100 char#4 \Xi --- */
                   55356:       {   4, 1266,                      /* character number, location */
                   55357:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55358:           {  7,    9, 3,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55359:             "\x07\xf2\x70\x23\x20\xf2\x77" }  },
                   55360:       /* --- pixel bitmap for bbold100 char#5 \Pi --- */
                   55361:       {   5, 1491,                      /* character number, location */
                   55362:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   55363:           {  7,    9, 3,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55364:             "\x07\x0f\x61\x11\x31\x03\x31" }  },
                   55365:       /* --- pixel bitmap for bbold100 char#6 \Sigma --- */
                   55366:       {   6, 1757,                      /* character number, location */
                   55367:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55368:           {  8,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55369:             "\xff\x0a\x0a\x14\x28\x14\x0a\x0a\xff" }  },
                   55370:       /* --- pixel bitmap for bbold100 char#7 \Upsilon --- */
                   55371:       {   7, 2009,                      /* character number, location */
                   55372:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55373:           {  7,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55374:             "\xa2\x6a\x95\xc2\xa1\x50\x28\x1c" }  },
                   55375:       /* --- pixel bitmap for bbold100 char#8 \Phi --- */
                   55376:       {   8, 2265,                      /* character number, location */
                   55377:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55378:           {  7,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55379:             "\x1c\x8a\xad\x5a\xad\xda\x28\x1c" }  },
                   55380:       /* --- pixel bitmap for bbold100 char#9 \Psi --- */
                   55381:       {   9, 2525,                      /* character number, location */
                   55382:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55383:           {  7,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55384:             "\x1c\x4a\xd5\x66\xb5\x51\x28\x1c" }  },
                   55385:       /* --- pixel bitmap for bbold100 char#10 \Omega --- */
                   55386:       {  10, 2781,                      /* character number, location */
                   55387:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55388:           {  8,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55389:             "\x3c\x46\x85\x85\x85\x85\x85\x46\xe7" }  },
                   55390:       /* --- pixel bitmap for bbold100 char#11 \alpha --- */
                   55391:       {  11, 3043,                      /* character number, location */
                   55392:           6, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55393:           {  7,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55394:             "\xce\x6a\xb5\x56\xf2\x03" }  },
                   55395:       /* --- pixel bitmap for bbold100 char#12 \beta --- */
                   55396:       {  12, 3294,                      /* character number, location */
                   55397:          10, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   55398:           {  6,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55399:             "\x9c\x59\x96\x55\x59\x96\x65\x57\x14\x07" }  },
                   55400:       /* --- pixel bitmap for bbold100 char#13 \gamma --- */
                   55401:       {  13, 3574,                      /* character number, location */
                   55402:           6, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   55403:           {  6,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55404:             "\x3f\x63\x95\x65\x59\x5a\x0c" }  },
                   55405:       /* --- pixel bitmap for bbold100 char#14 \delta --- */
                   55406:       {  14, 3830,                      /* character number, location */
                   55407:          10, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55408:           {  6,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55409:             "\x5e\x18\x0c\x4e\x55\x96\xa5\x07" }  },
                   55410:       /* --- pixel bitmap for bbold100 char#15 \epsilon --- */
                   55411:       {  15, 4088,                      /* character number, location */
                   55412:           6, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55413:           {  6,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55414:             "\x5e\xd9\x14\xa5\x07" }  },
                   55415:       /* --- pixel bitmap for bbold100 char#16 \zeta --- */
                   55416:       {  16, 4329,                      /* character number, location */
                   55417:          10, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   55418:           {  5,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55419:             "\x90\x11\x53\x4a\x29\x86\x41\x88\x00" }  },
                   55420:       /* --- pixel bitmap for bbold100 char#17 \eta --- */
                   55421:       {  17, 4579,                      /* character number, location */
                   55422:           6, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   55423:           {  6,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55424:             "\x5f\x59\x96\xe5\x09\x82\x20" }  },
                   55425:       /* --- pixel bitmap for bbold100 char#18 \theta --- */
                   55426:       {  18, 4833,                      /* character number, location */
                   55427:          10, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55428:           {  6,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55429:             "\x8c\x55\x96\x7d\x59\x96\x16\x03" }  },
                   55430:       /* --- pixel bitmap for bbold100 char#19 \iota --- */
                   55431:       {  19, 5096,                      /* character number, location */
                   55432:           6, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55433:           {  3,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55434:             "\x6f\x5b\x01" }  },
                   55435:       /* --- pixel bitmap for bbold100 char#20 \kappa --- */
                   55436:       {  20, 5334,                      /* character number, location */
                   55437:           6, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55438:           {  6,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55439:             "\x67\x57\x34\xd5\x09" }  },
                   55440:       /* --- pixel bitmap for bbold100 char#21 \lambda --- */
                   55441:       {  21, 5579,                      /* character number, location */
                   55442:          10, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55443:           {  6,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55444:             "\x47\xa1\x28\x0a\x45\x59\x6a\x0e" }  },
                   55445:       /* --- pixel bitmap for bbold100 char#22 \mu --- */
                   55446:       {  22, 5834,                      /* character number, location */
                   55447:           6, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   55448:           {  6,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55449:             "\x67\x59\x96\x65\x5f\x14\x07" }  },
                   55450:       /* --- pixel bitmap for bbold100 char#23 \nu --- */
                   55451:       {  23, 6091,                      /* character number, location */
                   55452:           6, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55453:           {  6,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55454:             "\x67\x59\x56\xcd\x01" }  },
                   55455:       /* --- pixel bitmap for bbold100 char#24 \xi --- */
                   55456:       {  24, 6334,                      /* character number, location */
                   55457:          10, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   55458:           {  5,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55459:             "\xfc\x94\xe2\x4c\x29\x86\x41\x88\x00" }  },
                   55460:       /* --- pixel bitmap for bbold100 char#25 \pi --- */
                   55461:       {  25, 6583,                      /* character number, location */
                   55462:           6, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55463:           {  6,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55464:             "\xbf\xa6\x69\x9a\x07" }  },
                   55465:       /* --- pixel bitmap for bbold100 char#26 \rho --- */
                   55466:       {  26, 6819,                      /* character number, location */
                   55467:           6, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   55468:           {  6,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55469:             "\x5e\x59\x96\x65\x57\x14\x07" }  },
                   55470:       /* --- pixel bitmap for bbold100 char#27 \sigma --- */
                   55471:       {  27, 7077,                      /* character number, location */
                   55472:           6, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55473:           {  7,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55474:             "\xfe\x52\xa9\x54\xf2\x00" }  },
                   55475:       /* --- pixel bitmap for bbold100 char#28 \tau --- */
                   55476:       {  28, 7321,                      /* character number, location */
                   55477:           6, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55478:           {  5,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55479:             "\x5f\x29\xa5\x18" }  },
                   55480:       /* --- pixel bitmap for bbold100 char#29 \upsilon --- */
                   55481:       {  29, 7561,                      /* character number, location */
                   55482:           6, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55483:           {  6,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55484:             "\x67\x59\x96\xa5\x07" }  },
                   55485:       /* --- pixel bitmap for bbold100 char#30 \phi --- */
                   55486:       {  30, 7807,                      /* character number, location */
                   55487:          10, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   55488:           {  5,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55489:             "\x4e\x29\xa5\xf6\xde\x5b\x29\xe5\x00" }  },
                   55490:       /* --- pixel bitmap for bbold100 char#31 \chi --- */
                   55491:       {  31, 8071,                      /* character number, location */
                   55492:           6, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   55493:           {  6,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55494:             "\xb9\x6a\x51\x8a\xa2\x55\x27" }  },
                   55495:       /* --- pixel bitmap for bbold100 char#32 \psi --- */
                   55496:       {  32, 8327,                      /* character number, location */
                   55497:          10, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   55498:           {  5,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55499:             "\x4e\x29\xb5\xf7\xde\x5b\x29\xe5\x00" }  },
                   55500:       /* --- pixel bitmap for bbold100 char#33 ! --- */
                   55501:       {  33,24040,                      /* character number, location */
                   55502:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   55503:           {  3,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55504:             "\x6f\x7b\xa8\x02" }  },
1.1       albertel 55505:       /* --- pixel bitmap for bbold100 char#34 (noname) --- */
1.2       albertel 55506:       {  34,31584,                      /* character number, location */
                   55507:          10, 0,    5, 0,      /* topleft row,col, and botleft row,col */
                   55508:           {  6,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55509:             "\x52\x6b\x4b\x09" }  },
                   55510:       /* --- pixel bitmap for bbold100 char#35 # --- */
                   55511:       {  35,24280,                      /* character number, location */
                   55512:           9, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   55513:           {  8,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55514:             "\x4e\x4a\x4a\xfb\x4a\x4a\x4a\xfb\x4a\x4a\x4a\x4e" }  },
                   55515:       /* --- pixel bitmap for bbold100 char#36 $ --- */
                   55516:       {  36,24556,                      /* character number, location */
                   55517:          11, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
                   55518:           {  7,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55519:             "\x1c\x8a\xbd\x52\xa9\xd8\xa8\xd4\xaa\x8d\x03" }  },
                   55520:       /* --- pixel bitmap for bbold100 char#37 % --- */
                   55521:       {  37,24828,                      /* character number, location */
                   55522:          10, 0,   -4, 0,      /* topleft row,col, and botleft row,col */
                   55523:           {  7,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55524:             "\xf2\xaa\x0a\x85\xa2\x50\x28\x14\x85\x42\x55\x3d\x01" }  },
                   55525:       /* --- pixel bitmap for bbold100 char#38 & --- */
                   55526:       {  38,25106,                      /* character number, location */
                   55527:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55528:           {  9,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55529:             "\x08\x28\x50\x60\xe0\xa0\x42\x95\x92\xde\x00" }  },
                   55530:       /* --- pixel bitmap for bbold100 char#39 ' --- */
                   55531:       {  39,25357,                      /* character number, location */
                   55532:          10, 0,    5, 0,      /* topleft row,col, and botleft row,col */
                   55533:           {  3,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55534:             "\xaa\x15" }  },
                   55535:       /* --- pixel bitmap for bbold100 char#40 ( --- */
                   55536:       {  40,25582,                      /* character number, location */
                   55537:          10, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   55538:           {  3,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55539:             "\x6e\xdb\xb6\x6d\x6b" }  },
                   55540:       /* --- pixel bitmap for bbold100 char#41 ) --- */
                   55541:       {  41,25844,                      /* character number, location */
                   55542:          10, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   55543:           {  3,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55544:             "\x6b\xdb\xb6\x6d\x3b" }  },
                   55545:       /* --- pixel bitmap for bbold100 char#42 * --- */
                   55546:       {  42,26097,                      /* character number, location */
                   55547:           8, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
                   55548:           {  7,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55549:             "\x1c\x4a\xd5\x46\xb1\x55\x29\x1c" }  },
                   55550:       /* --- pixel bitmap for bbold100 char#43 + --- */
                   55551:       {  43,26347,                      /* character number, location */
                   55552:           8, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
                   55553:           {  9,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55554:             "\x38\x50\xa0\x40\xf1\x1e\x05\x0a\x14\x38\x00" }  },
                   55555:       /* --- pixel bitmap for bbold100 char#44 , --- */
                   55556:       {  44,26585,                      /* character number, location */
                   55557:           3, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   55558:           {  3,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55559:             "\xaa\xa9\x00" }  },
                   55560:       /* --- pixel bitmap for bbold100 char#45 - --- */
                   55561:       {  45,26806,                      /* character number, location */
                   55562:           4, 0,    3, 0,      /* topleft row,col, and botleft row,col */
                   55563:           {  5,    1, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55564:             "\x1e" }  },
                   55565:       /* --- pixel bitmap for bbold100 char#46 . --- */
                   55566:       {  46,27018,                      /* character number, location */
                   55567:           3, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55568:           {  3,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55569:             "\xaa\x00" }  },
                   55570:       /* --- pixel bitmap for bbold100 char#47 / --- */
                   55571:       {  47,27242,                      /* character number, location */
                   55572:          10, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   55573:           {  7,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55574:             "\x70\x28\x0a\x85\xa2\x50\x28\x0a\x85\xa2\x70\x00" }  },
                   55575:       /* --- pixel bitmap for bbold100 char#48 0 --- */
                   55576:       {  48, 8840,                      /* character number, location */
                   55577:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55578:           {  6,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55579:             "\x8c\x55\x96\x65\x59\x5a\x0c" }  },
                   55580:       /* --- pixel bitmap for bbold100 char#49 1 --- */
                   55581:       {  49, 9091,                      /* character number, location */
                   55582:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55583:           {  7,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55584:             "\x10\x4e\x85\x42\xa1\x50\x28\x7f" }  },
                   55585:       /* --- pixel bitmap for bbold100 char#50 2 --- */
                   55586:       {  50, 9332,                      /* character number, location */
                   55587:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55588:           {  6,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55589:             "\x5e\x9a\xa2\x18\x23\x04\x3f" }  },
                   55590:       /* --- pixel bitmap for bbold100 char#51 3 --- */
                   55591:       {  51, 9569,                      /* character number, location */
                   55592:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55593:           {  6,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55594:             "\x5e\x9a\xa2\x18\x9a\xa6\x1e" }  },
                   55595:       /* --- pixel bitmap for bbold100 char#52 4 --- */
                   55596:       {  52, 9816,                      /* character number, location */
                   55597:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55598:           {  6,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55599:             "\x10\x86\x51\x96\x75\x53\x1c" }  },
                   55600:       /* --- pixel bitmap for bbold100 char#53 5 --- */
                   55601:       {  53,10053,                      /* character number, location */
                   55602:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55603:           {  6,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55604:             "\x7f\xf1\x40\x20\x18\x46\x0e" }  },
                   55605:       /* --- pixel bitmap for bbold100 char#54 6 --- */
                   55606:       {  54,10286,                      /* character number, location */
                   55607:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55608:           {  6,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55609:             "\x5e\xd8\x5e\x65\x59\x5a\x0c" }  },
                   55610:       /* --- pixel bitmap for bbold100 char#55 7 --- */
                   55611:       {  55,10535,                      /* character number, location */
                   55612:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55613:           {  6,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55614:             "\x3f\x4a\x51\x8a\xa2\x14\x07" }  },
                   55615:       /* --- pixel bitmap for bbold100 char#56 8 --- */
                   55616:       {  56,10776,                      /* character number, location */
                   55617:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55618:           {  6,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55619:             "\x5e\x59\x96\x5e\x59\x96\x1e" }  },
                   55620:       /* --- pixel bitmap for bbold100 char#57 9 --- */
                   55621:       {  57,11027,                      /* character number, location */
                   55622:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55623:           {  6,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55624:             "\x8c\x55\x96\xa5\xdd\x86\x1e" }  },
                   55625:       /* --- pixel bitmap for bbold100 char#58 : --- */
                   55626:       {  58,27496,                      /* character number, location */
                   55627:           6, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55628:           {  3,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55629:             "\xaa\x54\x01" }  },
                   55630:       /* --- pixel bitmap for bbold100 char#59 ; --- */
                   55631:       {  59,27722,                      /* character number, location */
                   55632:           6, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   55633:           {  3,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55634:             "\xaa\x54\x53\x01" }  },
                   55635:       /* --- pixel bitmap for bbold100 char#60 < --- */
                   55636:       {  60,27959,                      /* character number, location */
                   55637:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   55638:           {  9,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55639:             "\x80\xe1\x30\x58\x60\x03\x1b\x78" }  },
                   55640:       /* --- pixel bitmap for bbold100 char#61 \cdot --- */
                   55641:       {  61,28187,                      /* character number, location */
                   55642:           5, 0,    2, 0,      /* topleft row,col, and botleft row,col */
                   55643:           {  3,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55644:             "\xaa\x00" }  },
                   55645:       /* --- pixel bitmap for bbold100 char#62 > --- */
                   55646:       {  62,28413,                      /* character number, location */
                   55647:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   55648:           {  9,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55649:             "\x03\x18\xc0\x01\x8d\xcd\xc6\x03" }  },
                   55650:       /* --- pixel bitmap for bbold100 char#63 ? --- */
                   55651:       {  63,28647,                      /* character number, location */
                   55652:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55653:           {  7,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55654:             "\x3c\x61\x10\xc7\x01\x20\x28\x08" }  },
                   55655:       /* --- pixel bitmap for bbold100 char#64 @ --- */
                   55656:       {  64,28879,                      /* character number, location */
                   55657:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55658:           {  6,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55659:             "\x8c\x55\xd6\x6d\x55\x9a\x1c" }  },
                   55660:       /* --- pixel bitmap for bbold100 char#65 A --- */
                   55661:       {  65,11276,                      /* character number, location */
                   55662:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55663:           {  8,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55664:             "\x10\x18\x18\x34\x34\x4a\x7a\x85\x87" }  },
                   55665:       /* --- pixel bitmap for bbold100 char#66 B --- */
                   55666:       {  66,11519,                      /* character number, location */
                   55667:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   55668:           {  7,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55669:             "\xbf\x62\xb1\xd8\x2b\x16\x8b\x3f" }  },
                   55670:       /* --- pixel bitmap for bbold100 char#67 C --- */
                   55671:       {  67,11772,                      /* character number, location */
                   55672:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55673:           {  8,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55674:             "\x3c\x46\x85\x05\x05\x05\x85\x46\x3c" }  },
                   55675:       /* --- pixel bitmap for bbold100 char#68 D --- */
                   55676:       {  68,12017,                      /* character number, location */
                   55677:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   55678:           {  8,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55679:             "\x3f\x45\x85\x85\x85\x85\x85\x45\x3f" }  },
                   55680:       /* --- pixel bitmap for bbold100 char#69 E --- */
                   55681:       {  69,12272,                      /* character number, location */
                   55682:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   55683:           {  7,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55684:             "\xff\x42\xa1\xd0\x29\x14\x0a\x7f" }  },
                   55685:       /* --- pixel bitmap for bbold100 char#70 F --- */
                   55686:       {  70,12513,                      /* character number, location */
                   55687:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   55688:           {  7,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55689:             "\xff\x42\xa1\xd0\x29\x14\x0a\x07" }  },
                   55690:       /* --- pixel bitmap for bbold100 char#71 G --- */
                   55691:       {  71,12754,                      /* character number, location */
                   55692:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55693:           {  8,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55694:             "\x3c\x46\x85\x05\xe5\x85\x85\x46\x3c" }  },
                   55695:       /* --- pixel bitmap for bbold100 char#72 H --- */
                   55696:       {  72,13003,                      /* character number, location */
                   55697:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   55698:           {  8,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55699:             "\x87\x85\x85\x85\xfd\x85\x85\x85\x87" }  },
                   55700:       /* --- pixel bitmap for bbold100 char#73 I --- */
                   55701:       {  73,13260,                      /* character number, location */
                   55702:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   55703:           {  3,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55704:             "\x6f\xdb\xb6\x07" }  },
                   55705:       /* --- pixel bitmap for bbold100 char#74 J --- */
                   55706:       {  74,13501,                      /* character number, location */
                   55707:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55708:           {  7,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55709:             "\x70\x28\x14\x0a\x85\x46\x65\x1c" }  },
                   55710:       /* --- pixel bitmap for bbold100 char#75 K --- */
                   55711:       {  75,13744,                      /* character number, location */
                   55712:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   55713:           {  7,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55714:             "\xc7\x52\xa5\xd2\xa8\x54\x4a\x47" }  },
                   55715:       /* --- pixel bitmap for bbold100 char#76 L --- */
                   55716:       {  76,14001,                      /* character number, location */
                   55717:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   55718:           {  7,    9, 3,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55719:             "\x03\x4f\x61\x11\x47" }  },
                   55720:       /* --- pixel bitmap for bbold100 char#77 M --- */
                   55721:       {  77,14242,                      /* character number, location */
                   55722:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   55723:           {  7,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55724:             "\xc1\xf1\xb5\xda\x2c\x16\x8b\x47" }  },
                   55725:       /* --- pixel bitmap for bbold100 char#78 N --- */
                   55726:       {  78,14501,                      /* character number, location */
                   55727:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   55728:           {  8,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55729:             "\x81\x83\x85\x8d\x8d\x95\xa5\xc5\x87" }  },
                   55730:       /* --- pixel bitmap for bbold100 char#79 O --- */
                   55731:       {  79,14762,                      /* character number, location */
                   55732:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55733:           {  8,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55734:             "\x3c\x46\x85\x85\x85\x85\x85\x46\x3c" }  },
                   55735:       /* --- pixel bitmap for bbold100 char#80 P --- */
                   55736:       {  80,15013,                      /* character number, location */
                   55737:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   55738:           {  7,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55739:             "\xbf\x62\xb1\xd8\x2b\x14\x0a\x07" }  },
                   55740:       /* --- pixel bitmap for bbold100 char#81 Q --- */
                   55741:       {  81,15260,                      /* character number, location */
                   55742:           9, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   55743:           {  8,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55744:             "\x3c\x46\x85\x85\x85\x85\x95\x56\x3c\x40\x40\x80" }  },
                   55745:       /* --- pixel bitmap for bbold100 char#82 R --- */
                   55746:       {  82,15521,                      /* character number, location */
                   55747:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   55748:           {  7,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55749:             "\xbf\x62\xb1\xd8\xab\x54\x4a\x47" }  },
                   55750:       /* --- pixel bitmap for bbold100 char#83 S --- */
                   55751:       {  83,15776,                      /* character number, location */
                   55752:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55753:           {  7,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55754:             "\x9e\x52\xb1\xe0\x03\x06\x85\x3c" }  },
                   55755:       /* --- pixel bitmap for bbold100 char#84 T --- */
                   55756:       {  84,16017,                      /* character number, location */
                   55757:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55758:           {  7,    9, 3,13, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55759:             "\x07\xf6\x21\x11\x20\x23\x22" }  },
                   55760:       /* --- pixel bitmap for bbold100 char#85 U --- */
                   55761:       {  85,16258,                      /* character number, location */
                   55762:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   55763:           {  8,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55764:             "\x87\x85\x85\x85\x85\x85\x85\x46\x3c" }  },
                   55765:       /* --- pixel bitmap for bbold100 char#86 V --- */
                   55766:       {  86,16513,                      /* character number, location */
                   55767:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55768:           {  7,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55769:             "\xc7\xa2\x4a\xa5\xa1\x50\x10\x08" }  },
                   55770:       /* --- pixel bitmap for bbold100 char#87 W --- */
                   55771:       {  87,16760,                      /* character number, location */
                   55772:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55773:           { 11,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55774:             "\x07\x2c\xa0\x82\x14\xa4\x22\xaa\x50\x85\x31\x08\x01" }  },
                   55775:       /* --- pixel bitmap for bbold100 char#88 X --- */
                   55776:       {  88,17023,                      /* character number, location */
                   55777:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55778:           {  8,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55779:             "\xe1\x52\x54\x28\x14\x14\x2a\x4a\x87" }  },
                   55780:       /* --- pixel bitmap for bbold100 char#89 Y --- */
                   55781:       {  89,17276,                      /* character number, location */
                   55782:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55783:           {  7,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55784:             "\xc7\x92\x4a\x43\xa1\x50\x28\x1c" }  },
                   55785:       /* --- pixel bitmap for bbold100 char#90 Z --- */
                   55786:       {  90,17523,                      /* character number, location */
                   55787:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55788:           {  8,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55789:             "\xff\x50\x50\x28\x14\x14\x0a\x0a\xff" }  },
                   55790:       /* --- pixel bitmap for bbold100 char#91 [ --- */
                   55791:       {  91,29141,                      /* character number, location */
                   55792:          10, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   55793:           {  3,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55794:             "\x6f\xdb\xb6\x6d\x7b" }  },
                   55795:       /* --- pixel bitmap for bbold100 char#92 \\ --- */
                   55796:       {  92,29403,                      /* character number, location */
                   55797:          10, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   55798:           {  7,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55799:             "\x87\x82\x42\xa1\xa0\x50\x28\x28\x14\x0a\x0a\x07" }  },
                   55800:       /* --- pixel bitmap for bbold100 char#93 ] --- */
                   55801:       {  93,29672,                      /* character number, location */
                   55802:          10, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   55803:           {  3,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55804:             "\x6f\xdb\xb6\x6d\x7b" }  },
1.1       albertel 55805:       /* --- pixel bitmap for bbold100 char#94 (noname) --- */
1.2       albertel 55806:       {  94,29935,                      /* character number, location */
                   55807:          10, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   55808:           {  3,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55809:             "\xa4\xed\xb6\xb6\x49" }  },
1.1       albertel 55810:       /* --- pixel bitmap for bbold100 char#95 (noname) --- */
1.2       albertel 55811:       {  95,30183,                      /* character number, location */
                   55812:          10, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   55813:           {  3,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55814:             "\xc9\xb6\xb6\xdb\x12" }  },
1.1       albertel 55815:       /* --- pixel bitmap for bbold100 char#96 (noname) --- */
1.2       albertel 55816:       {  96,30434,                      /* character number, location */
                   55817:          10, 0,    5, 0,      /* topleft row,col, and botleft row,col */
                   55818:           {  3,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55819:             "\xd4\x2a" }  },
                   55820:       /* --- pixel bitmap for bbold100 char#97 a --- */
                   55821:       {  97,17764,                      /* character number, location */
                   55822:           6, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55823:           {  6,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55824:             "\x7e\x59\x96\xa5\x0f" }  },
                   55825:       /* --- pixel bitmap for bbold100 char#98 b --- */
                   55826:       {  98,18001,                      /* character number, location */
                   55827:          10, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55828:           {  8,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55829:             "\x07\x05\x05\x05\x7d\x85\x85\x85\x85\x7f" }  },
                   55830:       /* --- pixel bitmap for bbold100 char#99 c --- */
                   55831:       {  99,18254,                      /* character number, location */
                   55832:           6, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55833:           {  6,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55834:             "\x5e\x59\x14\xa5\x07" }  },
                   55835:       /* --- pixel bitmap for bbold100 char#100 d --- */
                   55836:       { 100,18487,                      /* character number, location */
                   55837:          10, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55838:           {  6,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55839:             "\x20\x08\x82\x7e\x59\x96\xa5\x0f" }  },
                   55840:       /* --- pixel bitmap for bbold100 char#101 e --- */
                   55841:       { 101,18732,                      /* character number, location */
                   55842:           6, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55843:           {  6,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55844:             "\x5e\xd9\x17\xa5\x07" }  },
                   55845:       /* --- pixel bitmap for bbold100 char#102 f --- */
                   55846:       { 102,18965,                      /* character number, location */
                   55847:          10, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55848:           {  5,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55849:             "\xae\x96\xd2\x4a\x29\xe5\x00" }  },
                   55850:       /* --- pixel bitmap for bbold100 char#103 g --- */
                   55851:       { 103,19212,                      /* character number, location */
                   55852:           6, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   55853:           {  6,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55854:             "\x7e\x59\x96\xa5\x0f\x46\x0e" }  },
                   55855:       /* --- pixel bitmap for bbold100 char#104 h --- */
                   55856:       { 104,19457,                      /* character number, location */
                   55857:          10, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55858:           {  6,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55859:             "\x47\x51\x14\x5d\x59\x96\xe5\x09" }  },
                   55860:       /* --- pixel bitmap for bbold100 char#105 i --- */
                   55861:       { 105,19712,                      /* character number, location */
                   55862:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55863:           {  3,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55864:             "\xaa\xde\xb6\x07" }  },
                   55865:       /* --- pixel bitmap for bbold100 char#106 j --- */
                   55866:       { 106,19949,                      /* character number, location */
                   55867:           9, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   55868:           {  5,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55869:             "\x88\x22\x4e\x29\xa5\x94\x56\x07" }  },
                   55870:       /* --- pixel bitmap for bbold100 char#107 k --- */
                   55871:       { 107,20200,                      /* character number, location */
                   55872:          10, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55873:           {  6,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55874:             "\x47\x51\x14\x65\xd5\x34\xd5\x09" }  },
                   55875:       /* --- pixel bitmap for bbold100 char#108 l --- */
                   55876:       { 108,20453,                      /* character number, location */
                   55877:          10, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55878:           {  3,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55879:             "\x6f\xdb\xb6\x15" }  },
                   55880:       /* --- pixel bitmap for bbold100 char#109 m --- */
                   55881:       { 109,20698,                      /* character number, location */
                   55882:           6, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55883:           {  9,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55884:             "\xdf\x4a\x96\x2c\x59\xf2\x24" }  },
                   55885:       /* --- pixel bitmap for bbold100 char#110 n --- */
                   55886:       { 110,20949,                      /* character number, location */
                   55887:           6, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55888:           {  6,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55889:             "\x5f\x59\x96\xe5\x09" }  },
                   55890:       /* --- pixel bitmap for bbold100 char#111 o --- */
                   55891:       { 111,21188,                      /* character number, location */
                   55892:           6, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55893:           {  6,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55894:             "\x5e\x59\x96\xa5\x07" }  },
                   55895:       /* --- pixel bitmap for bbold100 char#112 p --- */
                   55896:       { 112,21425,                      /* character number, location */
                   55897:           6, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   55898:           {  8,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55899:             "\x7f\x85\x85\x85\x85\x7d\x05\x05\x07" }  },
                   55900:       /* --- pixel bitmap for bbold100 char#113 q --- */
                   55901:       { 113,21674,                      /* character number, location */
                   55902:           6, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   55903:           {  6,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55904:             "\x7e\x59\x96\xa5\x0f\x82\x20" }  },
                   55905:       /* --- pixel bitmap for bbold100 char#114 r --- */
                   55906:       { 114,21917,                      /* character number, location */
                   55907:           6, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55908:           {  6,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55909:             "\x5f\x59\x14\xc5\x01" }  },
                   55910:       /* --- pixel bitmap for bbold100 char#115 s --- */
                   55911:       { 115,22148,                      /* character number, location */
                   55912:           6, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55913:           {  5,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55914:             "\xae\x3a\x18\x1d" }  },
                   55915:       /* --- pixel bitmap for bbold100 char#116 t --- */
                   55916:       { 116,22375,                      /* character number, location */
                   55917:          10, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55918:           {  5,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55919:             "\xa7\x94\xd2\x4b\x29\xd5\x01" }  },
                   55920:       /* --- pixel bitmap for bbold100 char#117 u --- */
                   55921:       { 117,22622,                      /* character number, location */
                   55922:           6, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55923:           {  6,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55924:             "\x67\x59\x96\xa5\x0f" }  },
                   55925:       /* --- pixel bitmap for bbold100 char#118 v --- */
                   55926:       { 118,22861,                      /* character number, location */
                   55927:           6, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55928:           {  5,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55929:             "\xb7\x2a\x45\x08" }  },
                   55930:       /* --- pixel bitmap for bbold100 char#119 w --- */
                   55931:       { 119,23092,                      /* character number, location */
                   55932:           6, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55933:           {  9,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55934:             "\x07\x0b\x6a\x52\xc5\x86\x08" }  },
                   55935:       /* --- pixel bitmap for bbold100 char#120 x --- */
                   55936:       { 120,23333,                      /* character number, location */
                   55937:           6, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55938:           {  6,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55939:             "\xb9\x45\x29\xda\x09" }  },
                   55940:       /* --- pixel bitmap for bbold100 char#121 y --- */
                   55941:       { 121,23566,                      /* character number, location */
                   55942:           6, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   55943:           {  5,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55944:             "\xb7\x2a\x45\x08\x11\x01" }  },
                   55945:       /* --- pixel bitmap for bbold100 char#122 z --- */
                   55946:       { 122,23803,                      /* character number, location */
                   55947:           6, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55948:           {  6,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55949:             "\x3f\x45\x29\xca\x0f" }  },
                   55950:       /* --- pixel bitmap for bbold100 char#123 \- --- */
                   55951:       { 123,30916,                      /* character number, location */
                   55952:           4, 0,    3, 0,      /* topleft row,col, and botleft row,col */
                   55953:           {  5,    1, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55954:             "\x1f" }  },
                   55955:       /* --- pixel bitmap for bbold100 char#124 | --- */
                   55956:       { 124,30659,                      /* character number, location */
                   55957:          10, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   55958:           {  3,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55959:             "\x6f\xdb\xb6\x6d\x7b" }  },
1.1       albertel 55960:       /* --- pixel bitmap for bbold100 char#125 (noname) --- */
1.2       albertel 55961:       { 125,31128,                      /* character number, location */
                   55962:           4, 0,    3, 0,      /* topleft row,col, and botleft row,col */
                   55963:           { 11,    1, 3, 2, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55964:             "\x0b" }  },
1.1       albertel 55965:       /* --- pixel bitmap for bbold100 char#126 (noname) --- */
1.2       albertel 55966:       { 126,31346,                      /* character number, location */
                   55967:          10, 0,    5, 0,      /* topleft row,col, and botleft row,col */
                   55968:           {  6,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55969:             "\xa4\xb4\xb5\x12" }  },
                   55970:       /* --- pixel bitmap for bbold100 char#127 \omega --- */
                   55971:       { 127, 8593,                      /* character number, location */
                   55972:           6, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55973:           {  9,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55974:             "\xc6\x0a\x56\xac\x58\xd1\x1d" }  },
1.1       albertel 55975:       /* --- trailer  --- */
1.2       albertel 55976:       { -99, -999,  0,0,0,0, { 0,0,0,0, (pixbyte *)"\0" }  }
1.1       albertel 55977:    } ;
                   55978: 
                   55979: 
1.2       albertel 55980: /* --- size=2 for .118gf ---
                   55981:  * mf '\mode=preview; mag=magstep(-16.96645799324018499600); input bbold10'
                   55982:  * --------------------------------------------------------------------- */
1.1       albertel 55983: /* --- fontdef for bbold118 --- */
                   55984: static	chardef  bbold118[] =
                   55985:    {
1.2       albertel 55986:       /* --- pixel bitmap for bbold118 char#0 \Gamma --- */
                   55987:       {   0,  246,                      /* character number, location */
                   55988:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   55989:           {  8,   11, 3,11, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55990:             "\x08\x0f\x81\x11\x53\x50" }  },
                   55991:       /* --- pixel bitmap for bbold118 char#1 \Delta --- */
                   55992:       {   1,  504,                      /* character number, location */
                   55993:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55994:           {  9,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   55995:             "\x10\x20\xa0\x40\x41\x85\x0a\x15\x45\x8a\x0a\xfe\x07" }  },
                   55996:       /* --- pixel bitmap for bbold118 char#2 \Theta --- */
                   55997:       {   2,  772,                      /* character number, location */
                   55998:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   55999:           {  9,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56000:             "\x38\x88\x18\x2a\x58\xb0\x6e\xc1\x82\x86\x88\xe0\x00" }  },
                   56001:       /* --- pixel bitmap for bbold118 char#3 \Lambda --- */
                   56002:       {   3, 1043,                      /* character number, location */
                   56003:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   56004:           {  9,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56005:             "\x10\x20\xa0\x40\x41\x85\x0a\x15\x45\x8a\x0a\x1e\x04" }  },
                   56006:       /* --- pixel bitmap for bbold118 char#4 \Xi --- */
                   56007:       {   4, 1310,                      /* character number, location */
                   56008:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   56009:           {  9,   11, 3,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56010:             "\x09\xf3\x90\x33\x30\xf3\x99" }  },
                   56011:       /* --- pixel bitmap for bbold118 char#5 \Pi --- */
                   56012:       {   5, 1535,                      /* character number, location */
                   56013:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   56014:           {  8,   11, 3,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56015:             "\x08\x0f\x81\x11\x41\x03\x41" }  },
                   56016:       /* --- pixel bitmap for bbold118 char#6 \Sigma --- */
                   56017:       {   6, 1813,                      /* character number, location */
                   56018:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   56019:           {  9,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56020:             "\xff\x15\x28\xa0\x40\x01\x05\x05\x0a\x0a\x14\xfc\x07" }  },
                   56021:       /* --- pixel bitmap for bbold118 char#7 \Upsilon --- */
                   56022:       {   7, 2073,                      /* character number, location */
                   56023:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   56024:           {  9,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56025:             "\xc6\x52\xa6\x44\x81\x02\x07\x0a\x14\x28\x50\xe0\x00" }  },
                   56026:       /* --- pixel bitmap for bbold118 char#8 \Phi --- */
                   56027:       {   8, 2337,                      /* character number, location */
                   56028:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   56029:           {  9,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56030:             "\x38\x50\xb0\x51\x95\x32\x65\x4a\x55\x6c\x50\xe0\x00" }  },
                   56031:       /* --- pixel bitmap for bbold118 char#9 \Psi --- */
                   56032:       {   9, 2613,                      /* character number, location */
                   56033:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   56034:           {  9,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56035:             "\x38\x50\xa4\x54\xa5\x4a\x95\x2a\x36\x28\x50\xe0\x00" }  },
                   56036:       /* --- pixel bitmap for bbold118 char#10 \Omega --- */
                   56037:       {  10, 2891,                      /* character number, location */
                   56038:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   56039:           {  9,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56040:             "\x38\x88\x18\x2a\x58\xb0\x60\xc1\x82\x86\x0c\x1d\x07" }  },
                   56041:       /* --- pixel bitmap for bbold118 char#11 \alpha --- */
                   56042:       {  11, 3161,                      /* character number, location */
                   56043:           7, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   56044:           {  8,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56045:             "\x9c\xa6\xa5\xa5\x65\x26\xdc" }  },
                   56046:       /* --- pixel bitmap for bbold118 char#12 \beta --- */
                   56047:       {  12, 3418,                      /* character number, location */
                   56048:          11, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   56049:           {  8,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56050:             "\x78\x86\x86\x85\x65\x45\x85\x85\x85\x45\x3d\x05\x05"
                   56051:             "\x07" }  },
                   56052:       /* --- pixel bitmap for bbold118 char#13 \gamma --- */
                   56053:       {  13, 3702,                      /* character number, location */
                   56054:           7, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   56055:           {  7,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56056:             "\x77\x04\xc5\x54\x2c\x16\x8b\x26\x0e" }  },
                   56057:       /* --- pixel bitmap for bbold118 char#14 \delta --- */
                   56058:       {  14, 3964,                      /* character number, location */
                   56059:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   56060:           {  7,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56061:             "\xbe\x60\x60\xc0\x31\x15\x8b\x45\x13\x07" }  },
                   56062:       /* --- pixel bitmap for bbold118 char#15 \epsilon --- */
                   56063:       {  15, 4224,                      /* character number, location */
                   56064:           7, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   56065:           {  7,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56066:             "\x3c\x63\xa1\x51\x30\xf2\x00" }  },
                   56067:       /* --- pixel bitmap for bbold118 char#16 \zeta --- */
                   56068:       {  16, 4465,                      /* character number, location */
                   56069:          11, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   56070:           {  5,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56071:             "\x10\x11\x63\x4a\x29\xc5\x30\x08\x11" }  },
                   56072:       /* --- pixel bitmap for bbold118 char#17 \eta --- */
                   56073:       {  17, 4717,                      /* character number, location */
                   56074:           7, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   56075:           {  8,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56076:             "\x3f\x45\x85\x85\x85\x85\x87\x80\x80\x80" }  },
                   56077:       /* --- pixel bitmap for bbold118 char#18 \theta --- */
                   56078:       {  18, 4977,                      /* character number, location */
                   56079:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   56080:           {  7,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56081:             "\x1c\x93\xa9\x58\xec\x17\x8b\x26\x13\x07" }  },
                   56082:       /* --- pixel bitmap for bbold118 char#19 \iota --- */
                   56083:       {  19, 5242,                      /* character number, location */
                   56084:           7, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   56085:           {  3,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56086:             "\x6f\xdb\x1a" }  },
                   56087:       /* --- pixel bitmap for bbold118 char#20 \kappa --- */
                   56088:       {  20, 5484,                      /* character number, location */
                   56089:           7, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   56090:           {  8,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56091:             "\x87\x65\x1d\x0d\x15\x25\xc7" }  },
                   56092:       /* --- pixel bitmap for bbold118 char#21 \lambda --- */
                   56093:       {  21, 5737,                      /* character number, location */
                   56094:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   56095:           {  7,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56096:             "\x87\x82\x42\x41\xa1\x50\x58\x2a\x69\x1c" }  },
                   56097:       /* --- pixel bitmap for bbold118 char#22 \mu --- */
                   56098:       {  22, 5998,                      /* character number, location */
                   56099:           7, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   56100:           {  8,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56101:             "\x87\x85\x85\x85\x85\xc5\xbd\x05\x05\x07" }  },
                   56102:       /* --- pixel bitmap for bbold118 char#23 \nu --- */
                   56103:       {  23, 6263,                      /* character number, location */
                   56104:           7, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   56105:           {  7,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56106:             "\xc7\x62\xb1\x54\x69\x1c\x00" }  },
                   56107:       /* --- pixel bitmap for bbold118 char#24 \xi --- */
                   56108:       {  24, 6512,                      /* character number, location */
                   56109:          11, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   56110:           {  5,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56111:             "\xfc\x94\xe2\x4c\x29\xc5\x30\x08\x11" }  },
                   56112:       /* --- pixel bitmap for bbold118 char#25 \pi --- */
                   56113:       {  25, 6765,                      /* character number, location */
                   56114:           7, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   56115:           {  8,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56116:             "\xff\x4a\x4a\x4a\x4a\x4a\x4e" }  },
                   56117:       /* --- pixel bitmap for bbold118 char#26 \rho --- */
                   56118:       {  26, 7017,                      /* character number, location */
                   56119:           7, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   56120:           {  7,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56121:             "\x1c\x53\xb1\x58\x2c\x75\x0a\x85\x03" }  },
                   56122:       /* --- pixel bitmap for bbold118 char#27 \sigma --- */
                   56123:       {  27, 7279,                      /* character number, location */
                   56124:           7, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   56125:           {  8,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56126:             "\xfc\x26\x45\x45\x45\x26\x1c" }  },
                   56127:       /* --- pixel bitmap for bbold118 char#28 \tau --- */
                   56128:       {  28, 7525,                      /* character number, location */
                   56129:           7, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   56130:           {  7,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56131:             "\x7f\x0a\x85\x42\xa1\x60\x00" }  },
                   56132:       /* --- pixel bitmap for bbold118 char#29 \upsilon --- */
                   56133:       {  29, 7769,                      /* character number, location */
                   56134:           7, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   56135:           {  7,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56136:             "\xc7\x62\xb1\x58\x34\x71\x00" }  },
                   56137:       /* --- pixel bitmap for bbold118 char#30 \phi --- */
                   56138:       {  30, 8019,                      /* character number, location */
                   56139:          11, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   56140:           {  7,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56141:             "\x1c\x0a\x85\x42\xb1\x55\xab\x55\x1b\x85\x42\xe1\x00" }  },
                   56142:       /* --- pixel bitmap for bbold118 char#31 \chi --- */
                   56143:       {  31, 8299,                      /* character number, location */
                   56144:           7, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   56145:           {  7,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56146:             "\x71\xa9\x8a\x45\xa1\x68\x54\xa5\x23" }  },
                   56147:       /* --- pixel bitmap for bbold118 char#32 \psi --- */
                   56148:       {  32, 8563,                      /* character number, location */
                   56149:          11, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   56150:           {  7,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56151:             "\x1c\x0a\x85\x52\xad\x56\xab\x55\x1b\x85\x42\xe1\x00" }  },
                   56152:       /* --- pixel bitmap for bbold118 char#33 ! --- */
                   56153:       {  33,24750,                      /* character number, location */
                   56154:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   56155:           {  3,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56156:             "\x6f\xdb\x1e\xaa\x00" }  },
1.1       albertel 56157:       /* --- pixel bitmap for bbold118 char#34 (noname) --- */
1.2       albertel 56158:       {  34,32504,                      /* character number, location */
                   56159:          11, 0,    5, 0,      /* topleft row,col, and botleft row,col */
                   56160:           {  7,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56161:             "\xa2\xaa\x99\x28\x8a\x00" }  },
                   56162:       /* --- pixel bitmap for bbold118 char#35 # --- */
                   56163:       {  35,24998,                      /* character number, location */
                   56164:          11, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   56165:           { 10,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56166:             "\x9c\x50\x42\x09\x25\xf7\x53\x42\x09\x25\xf7\x53\x42"
                   56167:             "\x09\x25\x94\x70\x02" }  },
                   56168:       /* --- pixel bitmap for bbold118 char#36 $ --- */
                   56169:       {  36,25286,                      /* character number, location */
                   56170:          13, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
                   56171:           {  9,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56172:             "\x38\x50\xb0\x57\x91\x22\x85\x0a\x36\xa8\x50\xa2\x5c"
                   56173:             "\xc5\x06\x07" }  },
                   56174:       /* --- pixel bitmap for bbold118 char#37 % --- */
                   56175:       {  37,25570,                      /* character number, location */
                   56176:          12, 0,   -5, 0,      /* topleft row,col, and botleft row,col */
                   56177:           {  9,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56178:             "\xc2\x8b\x8a\x02\x05\x05\x0a\x14\x14\x28\x50\x50\xa0"
                   56179:             "\xa0\x40\x81\xa2\xa2\x87\x00" }  },
                   56180:       /* --- pixel bitmap for bbold118 char#38 & --- */
                   56181:       {  38,25860,                      /* character number, location */
                   56182:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   56183:           { 11,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56184:             "\x18\x40\x01\x0a\x50\x80\x01\x0b\x54\xa0\x24\xc5\x30"
                   56185:             "\x26\xcf\x00" }  },
                   56186:       /* --- pixel bitmap for bbold118 char#39 ' --- */
                   56187:       {  39,26121,                      /* character number, location */
                   56188:          11, 0,    5, 0,      /* topleft row,col, and botleft row,col */
                   56189:           {  3,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56190:             "\xaa\xa9\x00" }  },
                   56191:       /* --- pixel bitmap for bbold118 char#40 ( --- */
                   56192:       {  40,26348,                      /* character number, location */
                   56193:          12, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   56194:           {  4,   16, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56195:             "\x6c\x55\x55\x55\x55\x55\x55\xc6" }  },
                   56196:       /* --- pixel bitmap for bbold118 char#41 ) --- */
                   56197:       {  41,26618,                      /* character number, location */
                   56198:          12, 0,   -4, 0,      /* topleft row,col, and botleft row,col */
                   56199:           {  4,   16, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56200:             "\x63\xaa\xaa\xaa\xaa\xaa\xaa\x36" }  },
                   56201:       /* --- pixel bitmap for bbold118 char#42 * --- */
                   56202:       {  42,26879,                      /* character number, location */
                   56203:          10, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
                   56204:           {  9,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56205:             "\x38\x50\xa0\x48\xed\x0e\x05\x9b\xd5\x28\x50\xe0\x00" }  },
                   56206:       /* --- pixel bitmap for bbold118 char#43 + --- */
                   56207:       {  43,27137,                      /* character number, location */
                   56208:          10, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
                   56209:           { 11,   11, 3,25, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56210:             "\x43\x40\xf3\x41\x11\x45\x15\xf3\x41\x11\x40\x43\x41" }  },
                   56211:       /* --- pixel bitmap for bbold118 char#44 , --- */
                   56212:       {  44,27383,                      /* character number, location */
                   56213:           3, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   56214:           {  3,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56215:             "\xaa\xa9\x00" }  },
                   56216:       /* --- pixel bitmap for bbold118 char#45 - --- */
                   56217:       {  45,27604,                      /* character number, location */
                   56218:           4, 0,    3, 0,      /* topleft row,col, and botleft row,col */
                   56219:           {  5,    1, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56220:             "\x1f" }  },
                   56221:       /* --- pixel bitmap for bbold118 char#46 . --- */
                   56222:       {  46,27816,                      /* character number, location */
                   56223:           3, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   56224:           {  3,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56225:             "\xaa\x00" }  },
                   56226:       /* --- pixel bitmap for bbold118 char#47 / --- */
                   56227:       {  47,28040,                      /* character number, location */
                   56228:          12, 0,   -4, 0,      /* topleft row,col, and botleft row,col */
                   56229:           {  8,   16, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56230:             "\xe0\xa0\x50\x50\x50\x28\x28\x28\x14\x14\x14\x0a\x0a"
                   56231:             "\x0a\x05\x07" }  },
                   56232:       /* --- pixel bitmap for bbold118 char#48 0 --- */
                   56233:       {  48, 9104,                      /* character number, location */
                   56234:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   56235:           {  7,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56236:             "\x1c\x93\xa9\x58\x2c\x16\x8b\x26\x13\x07" }  },
                   56237:       /* --- pixel bitmap for bbold118 char#49 1 --- */
                   56238:       {  49, 9363,                      /* character number, location */
                   56239:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   56240:           {  7,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56241:             "\x10\x4e\x85\x42\xa1\x50\x28\x14\xca\x1f" }  },
                   56242:       /* --- pixel bitmap for bbold118 char#50 2 --- */
                   56243:       {  50, 9612,                      /* character number, location */
                   56244:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   56245:           {  7,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56246:             "\x1c\x59\x14\x0a\x85\x61\x08\x82\xc0\x1f" }  },
                   56247:       /* --- pixel bitmap for bbold118 char#51 3 --- */
                   56248:       {  51, 9853,                      /* character number, location */
                   56249:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   56250:           {  7,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56251:             "\x1c\x59\x14\x0a\xc3\xc0\xa0\x51\x19\x07" }  },
                   56252:       /* --- pixel bitmap for bbold118 char#52 4 --- */
                   56253:       {  52,10100,                      /* character number, location */
                   56254:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   56255:           {  7,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56256:             "\x20\x18\x0c\xc5\x62\xa9\x54\x6f\x14\x0e" }  },
                   56257:       /* --- pixel bitmap for bbold118 char#53 5 --- */
                   56258:       {  53,10349,                      /* character number, location */
                   56259:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   56260:           {  7,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56261:             "\xff\x42\xe1\x03\x02\x02\x81\x41\x11\x07" }  },
                   56262:       /* --- pixel bitmap for bbold118 char#54 6 --- */
                   56263:       {  54,10588,                      /* character number, location */
                   56264:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   56265:           {  7,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56266:             "\x1c\x51\xb0\x73\x2a\x16\x8b\x45\x13\x07" }  },
                   56267:       /* --- pixel bitmap for bbold118 char#55 7 --- */
                   56268:       {  55,10845,                      /* character number, location */
                   56269:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   56270:           {  7,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56271:             "\x7f\x28\x0a\x45\xa1\x50\x14\x8a\xc2\x01" }  },
                   56272:       /* --- pixel bitmap for bbold118 char#56 8 --- */
                   56273:       {  56,11094,                      /* character number, location */
                   56274:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   56275:           {  7,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56276:             "\x1c\x53\xb1\x68\xe2\x98\x8a\x45\x13\x07" }  },
                   56277:       /* --- pixel bitmap for bbold118 char#57 9 --- */
                   56278:       {  57,11349,                      /* character number, location */
                   56279:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   56280:           {  7,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56281:             "\x1c\x53\xb1\x58\x2c\x9a\xb9\x41\x11\x07" }  },
                   56282:       /* --- pixel bitmap for bbold118 char#58 : --- */
                   56283:       {  58,28306,                      /* character number, location */
                   56284:           7, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   56285:           {  3,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56286:             "\xaa\xa0\x0a" }  },
                   56287:       /* --- pixel bitmap for bbold118 char#59 ; --- */
                   56288:       {  59,28534,                      /* character number, location */
                   56289:           7, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   56290:           {  3,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56291:             "\xaa\xa0\x9a\x0a" }  },
                   56292:       /* --- pixel bitmap for bbold118 char#60 < --- */
                   56293:       {  60,28773,                      /* character number, location */
                   56294:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   56295:           { 11,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56296:             "\x00\x06\x0e\x0e\x1c\x20\x01\x36\xc0\x06\xf8" }  },
                   56297:       /* --- pixel bitmap for bbold118 char#61 \cdot --- */
                   56298:       {  61,29003,                      /* character number, location */
                   56299:           6, 0,    3, 0,      /* topleft row,col, and botleft row,col */
                   56300:           {  3,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56301:             "\xaa\x00" }  },
                   56302:       /* --- pixel bitmap for bbold118 char#62 > --- */
                   56303:       {  62,29229,                      /* character number, location */
                   56304:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   56305:           { 11,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56306:             "\x03\xe0\x00\x38\x00\x0e\x6c\xd8\xb0\xe0\x01" }  },
                   56307:       /* --- pixel bitmap for bbold118 char#63 ? --- */
                   56308:       {  63,29465,                      /* character number, location */
                   56309:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   56310:           {  9,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56311:             "\x7c\x04\x07\x04\x08\x0f\x05\x0e\x00\x10\x50\x40\x00" }  },
                   56312:       /* --- pixel bitmap for bbold118 char#64 @ --- */
                   56313:       {  64,29703,                      /* character number, location */
                   56314:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   56315:           {  7,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56316:             "\x1c\x93\xa9\x58\xae\x96\x0a\x46\x13\x07" }  },
                   56317:       /* --- pixel bitmap for bbold118 char#65 A --- */
                   56318:       {  65,11606,                      /* character number, location */
                   56319:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   56320:           {  9,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56321:             "\x10\x20\xa0\x40\x41\x85\x0a\x15\x45\xfa\x0a\x1e\x04" }  },
                   56322:       /* --- pixel bitmap for bbold118 char#66 B --- */
                   56323:       {  66,11865,                      /* character number, location */
                   56324:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   56325:           {  8,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56326:             "\x3f\x45\x85\x85\x45\x3d\x45\x85\x85\x45\x3f" }  },
                   56327:       /* --- pixel bitmap for bbold118 char#67 C --- */
                   56328:       {  67,12130,                      /* character number, location */
                   56329:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   56330:           {  9,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56331:             "\x78\x08\x19\x2c\x50\xa0\x40\x81\x02\x06\x09\xe1\x01" }  },
                   56332:       /* --- pixel bitmap for bbold118 char#68 D --- */
                   56333:       {  68,12379,                      /* character number, location */
                   56334:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   56335:           {  9,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56336:             "\x3f\x8a\x14\x2a\x58\xb0\x60\xc1\x82\x85\x8a\xfc\x00" }  },
                   56337:       /* --- pixel bitmap for bbold118 char#69 E --- */
                   56338:       {  69,12646,                      /* character number, location */
                   56339:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   56340:           {  8,   11, 3,20, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56341:             "\x08\x0f\x31\x11\x51\x13\x3f\x31\x11\x58" }  },
                   56342:       /* --- pixel bitmap for bbold118 char#70 F --- */
                   56343:       {  70,12895,                      /* character number, location */
                   56344:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   56345:           {  8,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56346:             "\xff\x05\x05\x05\x05\x1d\x05\x05\x05\x05\x07" }  },
                   56347:       /* --- pixel bitmap for bbold118 char#71 G --- */
                   56348:       {  71,13144,                      /* character number, location */
                   56349:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   56350:           {  9,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56351:             "\x78\x08\x19\x2c\x50\xa0\x78\xc1\x82\x06\x09\xe1\x01" }  },
                   56352:       /* --- pixel bitmap for bbold118 char#72 H --- */
                   56353:       {  72,13399,                      /* character number, location */
                   56354:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   56355:           {  9,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56356:             "\x07\x0b\x16\x2c\x58\xb0\x7f\xc1\x82\x05\x0b\x1e\x04" }  },
                   56357:       /* --- pixel bitmap for bbold118 char#73 I --- */
                   56358:       {  73,13668,                      /* character number, location */
                   56359:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   56360:           {  3,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56361:             "\x6f\xdb\xb6\xed\x01" }  },
                   56362:       /* --- pixel bitmap for bbold118 char#74 J --- */
                   56363:       {  74,13917,                      /* character number, location */
                   56364:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   56365:           {  8,   11, 3,19, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56366:             "\x53\xf6\x51\x11\x01\x42\x21\x32\x34\x21" }  },
                   56367:       /* --- pixel bitmap for bbold118 char#75 K --- */
                   56368:       {  75,14166,                      /* character number, location */
                   56369:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   56370:           {  8,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56371:             "\x87\x45\x45\x25\x15\x1d\x1d\x25\x45\x45\x87" }  },
                   56372:       /* --- pixel bitmap for bbold118 char#76 L --- */
                   56373:       {  76,14433,                      /* character number, location */
                   56374:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   56375:           {  8,   11, 3,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56376:             "\x03\x5f\x81\x11\x58" }  },
                   56377:       /* --- pixel bitmap for bbold118 char#77 M --- */
                   56378:       {  77,14682,                      /* character number, location */
                   56379:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   56380:           {  9,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56381:             "\x01\x07\x17\x2d\xda\xb2\x62\xc1\x82\x05\x0b\x1e\x04" }  },
                   56382:       /* --- pixel bitmap for bbold118 char#78 N --- */
                   56383:       {  78,14959,                      /* character number, location */
                   56384:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   56385:           {  9,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56386:             "\x01\x07\x16\x2c\xd8\xb0\x62\xc9\xa2\x45\x0b\x1f\x04" }  },
                   56387:       /* --- pixel bitmap for bbold118 char#79 O --- */
                   56388:       {  79,15236,                      /* character number, location */
                   56389:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   56390:           {  9,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56391:             "\x38\x88\x18\x2a\x58\xb0\x60\xc1\x82\x86\x88\xe0\x00" }  },
                   56392:       /* --- pixel bitmap for bbold118 char#80 P --- */
                   56393:       {  80,15495,                      /* character number, location */
                   56394:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   56395:           {  8,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56396:             "\x3f\x45\x85\x85\x45\x3d\x05\x05\x05\x05\x07" }  },
                   56397:       /* --- pixel bitmap for bbold118 char#81 Q --- */
                   56398:       {  81,15752,                      /* character number, location */
                   56399:          11, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   56400:           {  9,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56401:             "\x38\x88\x18\x2a\x58\xb0\x60\xc1\x82\x96\xc8\xe0\x01"
                   56402:             "\x02\x08\x20" }  },
                   56403:       /* --- pixel bitmap for bbold118 char#82 R --- */
                   56404:       {  82,16019,                      /* character number, location */
                   56405:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   56406:           {  8,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56407:             "\x3f\x45\x85\x85\x45\x3d\x15\x25\x45\x45\x87" }  },
                   56408:       /* --- pixel bitmap for bbold118 char#83 S --- */
                   56409:       {  83,16286,                      /* character number, location */
                   56410:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   56411:           {  8,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56412:             "\x3c\x46\x85\x05\x06\x3c\x40\x80\x81\x42\x3c" }  },
                   56413:       /* --- pixel bitmap for bbold118 char#84 T --- */
                   56414:       {  84,16529,                      /* character number, location */
                   56415:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   56416:           {  9,   11, 3,13, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56417:             "\x09\xf8\x31\x11\x30\x33\x31" }  },
                   56418:       /* --- pixel bitmap for bbold118 char#85 U --- */
                   56419:       {  85,16778,                      /* character number, location */
                   56420:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   56421:           {  9,   11, 3,23, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56422:             "\x03\x51\x0f\x61\x11\x51\x12\x41\x31\x31\x53\x31" }  },
                   56423:       /* --- pixel bitmap for bbold118 char#86 V --- */
                   56424:       {  86,17043,                      /* character number, location */
                   56425:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   56426:           {  9,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56427:             "\x07\x0b\x2a\x52\x44\x85\x0a\x15\x14\x28\x20\x40\x00" }  },
                   56428:       /* --- pixel bitmap for bbold118 char#87 W --- */
                   56429:       {  87,17304,                      /* character number, location */
                   56430:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   56431:           { 13,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56432:             "\x07\xb0\x00\x2a\x20\x05\xa4\x80\xb4\x08\x2d\xa1\x25"
                   56433:             "\x14\x05\x63\x20\x08" }  },
                   56434:       /* --- pixel bitmap for bbold118 char#88 X --- */
                   56435:       {  88,17581,                      /* character number, location */
                   56436:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   56437:           {  9,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56438:             "\xc1\x45\x91\xa2\x82\x05\x05\x0d\x2a\x4a\x14\x1d\x04" }  },
                   56439:       /* --- pixel bitmap for bbold118 char#89 Y --- */
                   56440:       {  89,17846,                      /* character number, location */
                   56441:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   56442:           {  9,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56443:             "\x07\x15\x29\xa2\x42\x05\x05\x0a\x14\x28\x50\xe0\x00" }  },
                   56444:       /* --- pixel bitmap for bbold118 char#90 Z --- */
                   56445:       {  90,18105,                      /* character number, location */
                   56446:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   56447:           {  9,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56448:             "\xff\x41\x81\x82\x02\x05\x05\x05\x0a\x0a\x14\xfc\x07" }  },
                   56449:       /* --- pixel bitmap for bbold118 char#91 [ --- */
                   56450:       {  91,29973,                      /* character number, location */
                   56451:          12, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   56452:           {  4,   16, 3,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56453:             "\x04\x0f\xd1\x11\x14" }  },
                   56454:       /* --- pixel bitmap for bbold118 char#92 \\ --- */
                   56455:       {  92,30247,                      /* character number, location */
                   56456:          12, 0,   -4, 0,      /* topleft row,col, and botleft row,col */
                   56457:           {  8,   16, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56458:             "\x07\x05\x0a\x0a\x0a\x14\x14\x14\x28\x28\x28\x50\x50"
                   56459:             "\x50\xa0\xe0" }  },
                   56460:       /* --- pixel bitmap for bbold118 char#93 ] --- */
                   56461:       {  93,30528,                      /* character number, location */
                   56462:          12, 0,   -4, 0,      /* topleft row,col, and botleft row,col */
                   56463:           {  4,   16, 3,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56464:             "\x04\xfd\x11\x11\x04" }  },
1.1       albertel 56465:       /* --- pixel bitmap for bbold118 char#94 (noname) --- */
1.2       albertel 56466:       {  94,30803,                      /* character number, location */
                   56467:          12, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   56468:           {  4,   16, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56469:             "\x88\xcc\xaa\x9a\xa9\xaa\xcc\x88" }  },
1.1       albertel 56470:       /* --- pixel bitmap for bbold118 char#95 (noname) --- */
1.2       albertel 56471:       {  95,31067,                      /* character number, location */
                   56472:          12, 0,   -4, 0,      /* topleft row,col, and botleft row,col */
                   56473:           {  4,   16, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56474:             "\x11\x33\x55\x95\x59\x55\x33\x11" }  },
1.1       albertel 56475:       /* --- pixel bitmap for bbold118 char#96 (noname) --- */
1.2       albertel 56476:       {  96,31334,                      /* character number, location */
                   56477:          11, 0,    5, 0,      /* topleft row,col, and botleft row,col */
                   56478:           {  3,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56479:             "\x54\x56\x01" }  },
                   56480:       /* --- pixel bitmap for bbold118 char#97 a --- */
                   56481:       {  97,18354,                      /* character number, location */
                   56482:           7, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   56483:           {  7,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56484:             "\x7c\x63\xb1\x58\x34\xf2\x01" }  },
                   56485:       /* --- pixel bitmap for bbold118 char#98 b --- */
                   56486:       {  98,18593,                      /* character number, location */
                   56487:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   56488:           {  9,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56489:             "\x07\x0a\x14\x28\xd0\xa7\x50\xc1\x82\x05\x0b\xfd\x01" }  },
                   56490:       /* --- pixel bitmap for bbold118 char#99 c --- */
                   56491:       {  99,18852,                      /* character number, location */
                   56492:           7, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   56493:           {  7,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56494:             "\x3c\x63\xa1\x50\x30\xf2\x00" }  },
                   56495:       /* --- pixel bitmap for bbold118 char#100 d --- */
                   56496:       { 100,19085,                      /* character number, location */
                   56497:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   56498:           {  7,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56499:             "\x40\x20\x10\xc8\x37\x16\x8b\x45\x23\x1f" }  },
                   56500:       /* --- pixel bitmap for bbold118 char#101 e --- */
                   56501:       { 101,19332,                      /* character number, location */
                   56502:           7, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   56503:           {  7,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56504:             "\x1c\x53\xb1\x5f\x30\xf2\x00" }  },
                   56505:       /* --- pixel bitmap for bbold118 char#102 f --- */
                   56506:       { 102,19567,                      /* character number, location */
                   56507:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   56508:           {  5,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56509:             "\xae\x96\xd2\x4a\x29\xa5\x1c" }  },
                   56510:       /* --- pixel bitmap for bbold118 char#103 g --- */
                   56511:       { 103,19818,                      /* character number, location */
                   56512:           7, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   56513:           {  7,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56514:             "\x7c\x63\xb1\x58\x34\xf2\x81\x21\x0f" }  },
                   56515:       /* --- pixel bitmap for bbold118 char#104 h --- */
                   56516:       { 104,20065,                      /* character number, location */
                   56517:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   56518:           {  8,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56519:             "\x07\x05\x05\x05\x3d\x45\x85\x85\x85\x85\x87" }  },
                   56520:       /* --- pixel bitmap for bbold118 char#105 i --- */
                   56521:       { 105,20326,                      /* character number, location */
                   56522:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   56523:           {  3,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56524:             "\xaa\xf0\xb6\xed\x01" }  },
                   56525:       /* --- pixel bitmap for bbold118 char#106 j --- */
                   56526:       { 106,20569,                      /* character number, location */
                   56527:          11, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   56528:           {  5,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56529:             "\x88\x22\xc0\x29\xa5\x94\x52\x5a\x1d" }  },
                   56530:       /* --- pixel bitmap for bbold118 char#107 k --- */
                   56531:       { 107,20826,                      /* character number, location */
                   56532:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   56533:           {  8,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56534:             "\x07\x05\x05\x05\x85\x45\x25\x1d\x25\x45\x87" }  },
                   56535:       /* --- pixel bitmap for bbold118 char#108 l --- */
                   56536:       { 108,21087,                      /* character number, location */
                   56537:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   56538:           {  3,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56539:             "\x6f\xdb\xb6\xad\x01" }  },
                   56540:       /* --- pixel bitmap for bbold118 char#109 m --- */
                   56541:       { 109,21336,                      /* character number, location */
                   56542:           7, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   56543:           {  9,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56544:             "\xdf\x4a\x96\x2c\x59\xb2\xe4\x49" }  },
                   56545:       /* --- pixel bitmap for bbold118 char#110 n --- */
                   56546:       { 110,21595,                      /* character number, location */
                   56547:           7, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   56548:           {  8,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56549:             "\x3f\x45\x85\x85\x85\x85\x87" }  },
                   56550:       /* --- pixel bitmap for bbold118 char#111 o --- */
                   56551:       { 111,21840,                      /* character number, location */
                   56552:           7, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   56553:           {  7,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56554:             "\x1c\x53\xb1\x58\x34\x71\x00" }  },
                   56555:       /* --- pixel bitmap for bbold118 char#112 p --- */
                   56556:       { 112,22079,                      /* character number, location */
                   56557:           7, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   56558:           {  9,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56559:             "\x7f\x0a\x15\x2c\x58\xb0\x50\x9f\x02\x05\x0e\x00" }  },
                   56560:       /* --- pixel bitmap for bbold118 char#113 q --- */
                   56561:       { 113,22334,                      /* character number, location */
                   56562:           7, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   56563:           {  7,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56564:             "\x7c\x63\xb1\x58\x34\xf2\x81\x40\x20" }  },
                   56565:       /* --- pixel bitmap for bbold118 char#114 r --- */
                   56566:       { 114,22579,                      /* character number, location */
                   56567:           7, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   56568:           {  8,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56569:             "\x7f\x85\x05\x05\x05\x05\x07" }  },
                   56570:       /* --- pixel bitmap for bbold118 char#115 s --- */
                   56571:       { 115,22814,                      /* character number, location */
                   56572:           7, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   56573:           {  5,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56574:             "\xae\x16\x07\xa3\x03" }  },
                   56575:       /* --- pixel bitmap for bbold118 char#116 t --- */
                   56576:       { 116,23045,                      /* character number, location */
                   56577:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   56578:           {  5,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56579:             "\xa7\x94\xd2\x4b\x29\xa5\x3a" }  },
                   56580:       /* --- pixel bitmap for bbold118 char#117 u --- */
                   56581:       { 117,23296,                      /* character number, location */
                   56582:           7, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   56583:           {  7,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56584:             "\xc7\x62\xb1\x58\x34\x73\x01" }  },
                   56585:       /* --- pixel bitmap for bbold118 char#118 v --- */
                   56586:       { 118,23541,                      /* character number, location */
                   56587:           7, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   56588:           {  7,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56589:             "\x47\xa5\x8a\x46\xc1\x20\x00" }  },
                   56590:       /* --- pixel bitmap for bbold118 char#119 w --- */
                   56591:       { 119,23778,                      /* character number, location */
                   56592:           7, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   56593:           {  9,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56594:             "\x07\x0b\x2a\xd2\xa4\x8a\x0d\x11" }  },
                   56595:       /* --- pixel bitmap for bbold118 char#120 x --- */
                   56596:       { 120,24025,                      /* character number, location */
                   56597:           7, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   56598:           {  7,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56599:             "\x71\x15\x8b\xa2\x51\x1d\x01" }  },
                   56600:       /* --- pixel bitmap for bbold118 char#121 y --- */
                   56601:       { 121,24266,                      /* character number, location */
                   56602:           7, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   56603:           {  7,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56604:             "\x47\x95\x8a\x42\xc1\x20\x08\x82\x00" }  },
                   56605:       /* --- pixel bitmap for bbold118 char#122 z --- */
                   56606:       { 122,24509,                      /* character number, location */
                   56607:           7, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   56608:           {  7,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56609:             "\x7f\x14\x8a\xa2\x50\xfc\x01" }  },
                   56610:       /* --- pixel bitmap for bbold118 char#123 \- --- */
                   56611:       { 123,31830,                      /* character number, location */
                   56612:           5, 0,    4, 0,      /* topleft row,col, and botleft row,col */
                   56613:           {  6,    1, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56614:             "\x3f" }  },
                   56615:       /* --- pixel bitmap for bbold118 char#124 | --- */
                   56616:       { 124,31561,                      /* character number, location */
                   56617:          12, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   56618:           {  3,   16, 3,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56619:             "\x03\x0f\xd1\x11\x03" }  },
1.1       albertel 56620:       /* --- pixel bitmap for bbold118 char#125 (noname) --- */
1.2       albertel 56621:       { 125,32042,                      /* character number, location */
                   56622:           5, 0,    4, 0,      /* topleft row,col, and botleft row,col */
                   56623:           { 13,    1, 3, 2, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56624:             "\x0d" }  },
1.1       albertel 56625:       /* --- pixel bitmap for bbold118 char#126 (noname) --- */
1.2       albertel 56626:       { 126,32260,                      /* character number, location */
                   56627:          11, 0,    5, 0,      /* topleft row,col, and botleft row,col */
                   56628:           {  7,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56629:             "\x44\x51\x64\x56\x15\x01" }  },
                   56630:       /* --- pixel bitmap for bbold118 char#127 \omega --- */
                   56631:       { 127, 8853,                      /* character number, location */
                   56632:           7, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   56633:           {  9,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56634:             "\x44\x0c\x15\xac\x58\xb1\xa2\x3b" }  },
1.1       albertel 56635:       /* --- trailer  --- */
1.2       albertel 56636:       { -99, -999,  0,0,0,0, { 0,0,0,0, (pixbyte *)"\0" }  }
1.1       albertel 56637:    } ;
                   56638: 
                   56639: 
1.2       albertel 56640: /* --- size=3 for .131gf ---
                   56641:  * mf '\mode=preview; mag=magstep(-16.39322518098640003469); input bbold10'
                   56642:  * --------------------------------------------------------------------- */
1.1       albertel 56643: /* --- fontdef for bbold131 --- */
                   56644: static	chardef  bbold131[] =
                   56645:    {
1.2       albertel 56646:       /* --- pixel bitmap for bbold131 char#0 \Gamma --- */
                   56647:       {   0,  246,                      /* character number, location */
                   56648:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   56649:           {  9,   12, 3,11, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56650:             "\x09\x0f\x91\x11\x63\x60" }  },
                   56651:       /* --- pixel bitmap for bbold131 char#1 \Delta --- */
                   56652:       {   1,  508,                      /* character number, location */
                   56653:          12, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   56654:           { 11,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56655:             "\x20\x00\x01\x14\xa0\x80\x0a\x54\x50\x84\x22\x0a\x52"
1.1       albertel 56656:             "\x50\x01\xff\x0f" }  },
1.2       albertel 56657:       /* --- pixel bitmap for bbold131 char#2 \Theta --- */
                   56658:       {   2,  782,                      /* character number, location */
                   56659:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   56660:           { 10,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56661:             "\x78\x10\x62\x50\x81\x05\x96\x5b\x60\x81\x05\x1a\x44"
1.1       albertel 56662:             "\x08\x1e" }  },
1.2       albertel 56663:       /* --- pixel bitmap for bbold131 char#3 \Lambda --- */
                   56664:       {   3, 1059,                      /* character number, location */
                   56665:          12, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   56666:           { 11,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56667:             "\x20\x00\x01\x14\xa0\x80\x0a\x54\x50\x84\x22\x0a\x52"
1.1       albertel 56668:             "\x50\x01\x0f\x08" }  },
1.2       albertel 56669:       /* --- pixel bitmap for bbold131 char#4 \Xi --- */
                   56670:       {   4, 1332,                      /* character number, location */
                   56671:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   56672:           { 11,   12, 3,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56673:             "\x0b\xf3\xb0\x44\x30\xf4\xbb" }  },
                   56674:       /* --- pixel bitmap for bbold131 char#5 \Pi --- */
                   56675:       {   5, 1557,                      /* character number, location */
                   56676:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   56677:           {  9,   12, 3,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56678:             "\x09\x0f\x91\x11\x51\x03\x51" }  },
                   56679:       /* --- pixel bitmap for bbold131 char#6 \Sigma --- */
                   56680:       {   6, 1841,                      /* character number, location */
                   56681:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   56682:           { 10,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56683:             "\xff\x2b\xa0\x00\x05\x28\xa0\x80\x02\x0a\x14\x28\xa0"
1.1       albertel 56684:             "\xc0\xff" }  },
1.2       albertel 56685:       /* --- pixel bitmap for bbold131 char#7 \Upsilon --- */
                   56686:       {   7, 2105,                      /* character number, location */
                   56687:          12, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   56688:           { 11,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56689:             "\x8e\x8b\x62\x14\xa1\x00\x05\x38\x40\x01\x0a\x50\x80"
1.1       albertel 56690:             "\x02\x14\xe0\x00" }  },
1.2       albertel 56691:       /* --- pixel bitmap for bbold131 char#8 \Phi --- */
                   56692:       {   8, 2373,                      /* character number, location */
                   56693:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   56694:           { 11,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56695:             "\x70\x80\x02\x36\xac\x16\xc5\x28\x46\x31\x8a\x56\xc3"
1.1       albertel 56696:             "\x06\x14\xe0\x00" }  },
1.2       albertel 56697:       /* --- pixel bitmap for bbold131 char#9 \Psi --- */
                   56698:       {   9, 2657,                      /* character number, location */
                   56699:          12, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   56700:           { 11,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56701:             "\x70\x80\xc2\x94\xa5\x24\x25\x29\x51\x85\x2a\xd8\x80"
1.1       albertel 56702:             "\x02\x14\xe0\x00" }  },
1.2       albertel 56703:       /* --- pixel bitmap for bbold131 char#10 \Omega --- */
                   56704:       {  10, 2943,                      /* character number, location */
                   56705:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   56706:           { 10,   12, 3,28, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56707:             "\x34\x51\x41\x32\x51\x1f\x51\x11\x61\xf1\x12\x51\x13"
                   56708:             "\x43" }  },
                   56709:       /* --- pixel bitmap for bbold131 char#11 \alpha --- */
                   56710:       {  11, 3219,                      /* character number, location */
                   56711:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   56712:           { 10,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56713:             "\x1c\x9a\x58\x64\x51\x45\x15\x62\x0c\xcf" }  },
                   56714:       /* --- pixel bitmap for bbold131 char#12 \beta --- */
                   56715:       {  12, 3484,                      /* character number, location */
                   56716:          13, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   56717:           {  8,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56718:             "\x78\x84\x86\x85\x85\x65\x45\x85\x85\x85\x85\x45\x3d"
1.1       albertel 56719:             "\x05\x05\x05\x07" }  },
1.2       albertel 56720:       /* --- pixel bitmap for bbold131 char#13 \gamma --- */
                   56721:       {  13, 3784,                      /* character number, location */
                   56722:           8, 0,   -4, 0,      /* topleft row,col, and botleft row,col */
                   56723:           {  8,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56724:             "\xe7\x18\x24\x46\x46\x85\x85\x85\x85\x85\x46\x3c" }  },
                   56725:       /* --- pixel bitmap for bbold131 char#14 \delta --- */
                   56726:       {  14, 4056,                      /* character number, location */
                   56727:          13, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   56728:           {  8,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56729:             "\x3c\x42\x81\x01\x02\x1c\x66\x85\x85\x85\x85\x46\x3c" }  },
                   56730:       /* --- pixel bitmap for bbold131 char#15 \epsilon --- */
                   56731:       {  15, 4326,                      /* character number, location */
                   56732:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   56733:           {  8,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56734:             "\x3c\x46\x85\x1d\x05\x85\x46\x3c" }  },
                   56735:       /* --- pixel bitmap for bbold131 char#16 \zeta --- */
                   56736:       {  16, 4575,                      /* character number, location */
                   56737:          13, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   56738:           {  6,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56739:             "\x20\x46\x10\x86\x51\x14\x45\x51\x18\x0c\x0c\x82\x18" }  },
                   56740:       /* --- pixel bitmap for bbold131 char#17 \eta --- */
                   56741:       {  17, 4835,                      /* character number, location */
                   56742:           8, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   56743:           {  8,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56744:             "\x3f\x45\x85\x85\x85\x85\x85\x87\x80\x80\x80\x80" }  },
                   56745:       /* --- pixel bitmap for bbold131 char#18 \theta --- */
                   56746:       {  18, 5103,                      /* character number, location */
                   56747:          13, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   56748:           {  8,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56749:             "\x3c\x46\x46\x85\x85\x85\xfd\x85\x85\x85\x46\x46\x3c" }  },
                   56750:       /* --- pixel bitmap for bbold131 char#19 \iota --- */
                   56751:       {  19, 5380,                      /* character number, location */
                   56752:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   56753:           {  3,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56754:             "\x6f\xdb\xd6" }  },
                   56755:       /* --- pixel bitmap for bbold131 char#20 \kappa --- */
                   56756:       {  20, 5626,                      /* character number, location */
                   56757:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   56758:           {  8,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56759:             "\x87\x65\x1d\x0d\x15\x35\x25\xc7" }  },
                   56760:       /* --- pixel bitmap for bbold131 char#21 \lambda --- */
                   56761:       {  21, 5885,                      /* character number, location */
                   56762:          13, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   56763:           {  8,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56764:             "\x07\x05\x0a\x0a\x14\x14\x14\x28\x2c\x54\x52\xa2\xe1" }  },
                   56765:       /* --- pixel bitmap for bbold131 char#22 \mu --- */
                   56766:       {  22, 6156,                      /* character number, location */
                   56767:           8, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   56768:           {  8,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56769:             "\x87\x85\x85\x85\x85\x85\xc5\xbd\x05\x05\x05\x07" }  },
                   56770:       /* --- pixel bitmap for bbold131 char#23 \nu --- */
                   56771:       {  23, 6431,                      /* character number, location */
                   56772:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   56773:           {  8,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56774:             "\x87\x85\x85\x45\x45\x25\x1d\x07" }  },
                   56775:       /* --- pixel bitmap for bbold131 char#24 \xi --- */
                   56776:       {  24, 6686,                      /* character number, location */
                   56777:          13, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   56778:           {  6,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56779:             "\xbc\x51\x14\x06\x67\x14\x45\x51\x18\x0c\x0c\x82\x18" }  },
                   56780:       /* --- pixel bitmap for bbold131 char#25 \pi --- */
                   56781:       {  25, 6947,                      /* character number, location */
                   56782:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   56783:           {  8,    8, 3,13, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56784:             "\x08\xf5\x21\x12\x20\x24\x22" }  },
                   56785:       /* --- pixel bitmap for bbold131 char#26 \rho --- */
                   56786:       {  26, 7191,                      /* character number, location */
                   56787:           8, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   56788:           {  8,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56789:             "\x3c\x46\x85\x85\x85\x85\x45\x3d\x05\x05\x05\x07" }  },
                   56790:       /* --- pixel bitmap for bbold131 char#27 \sigma --- */
                   56791:       {  27, 7463,                      /* character number, location */
                   56792:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   56793:           { 10,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56794:             "\xfc\x1b\x51\x48\x21\x85\x14\x62\x04\x0f" }  },
                   56795:       /* --- pixel bitmap for bbold131 char#28 \tau --- */
                   56796:       {  28, 7715,                      /* character number, location */
                   56797:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   56798:           {  7,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56799:             "\x7f\x0a\x85\x42\xa1\x50\x30" }  },
                   56800:       /* --- pixel bitmap for bbold131 char#29 \upsilon --- */
                   56801:       {  29, 7963,                      /* character number, location */
                   56802:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   56803:           {  8,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56804:             "\x87\x85\x85\x85\x85\x85\x46\x3c" }  },
                   56805:       /* --- pixel bitmap for bbold131 char#30 \phi --- */
                   56806:       {  30, 8219,                      /* character number, location */
                   56807:          13, 0,   -4, 0,      /* topleft row,col, and botleft row,col */
                   56808:           {  7,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56809:             "\x1c\x0a\x85\x42\xa1\xd8\xaa\xd5\x6a\xd5\x46\xa1\x50"
1.1       albertel 56810:             "\x28\x1c" }  },
1.2       albertel 56811:       /* --- pixel bitmap for bbold131 char#31 \chi --- */
                   56812:       {  31, 8515,                      /* character number, location */
                   56813:           8, 0,   -4, 0,      /* topleft row,col, and botleft row,col */
                   56814:           {  8,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56815:             "\xe1\xa2\x52\x54\x28\x28\x14\x14\x2a\x4a\x45\x87" }  },
                   56816:       /* --- pixel bitmap for bbold131 char#32 \psi --- */
                   56817:       {  32, 8791,                      /* character number, location */
                   56818:          13, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   56819:           {  7,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56820:             "\x1c\x0a\x85\x42\xa9\x56\xab\xd5\x6a\xd5\x46\xa1\x50"
1.1       albertel 56821:             "\x28\x1c" }  },
1.2       albertel 56822:       /* --- pixel bitmap for bbold131 char#33 ! --- */
                   56823:       {  33,25408,                      /* character number, location */
                   56824:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   56825:           {  3,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56826:             "\x6f\xdb\xf6\x50\x05" }  },
1.1       albertel 56827:       /* --- pixel bitmap for bbold131 char#34 (noname) --- */
1.2       albertel 56828:       {  34,33332,                      /* character number, location */
                   56829:          13, 1,    6, 1,      /* topleft row,col, and botleft row,col */
                   56830:           {  8,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56831:             "\x42\xa5\xc6\x84\x42\x42\x21" }  },
                   56832:       /* --- pixel bitmap for bbold131 char#35 # --- */
                   56833:       {  35,25660,                      /* character number, location */
                   56834:          12, 2,   -4, 2,      /* topleft row,col, and botleft row,col */
                   56835:           { 11,   16, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56836:             "\x38\x41\x09\x4a\x50\x82\x92\xf7\xa3\x04\x25\x28\x79"
1.1       albertel 56837:             "\x3f\x4a\x50\x82\x12\x94\xa0\x04\x27" }  },
1.2       albertel 56838:       /* --- pixel bitmap for bbold131 char#36 $ --- */
                   56839:       {  36,25960,                      /* character number, location */
                   56840:          14, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   56841:           {  9,   16, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56842:             "\x38\x50\xb0\x57\x91\x22\x85\x0a\x36\xa8\x50\xa2\x44"
1.1       albertel 56843:             "\x89\xea\x0d\x0a\x1c" }  },
1.2       albertel 56844:       /* --- pixel bitmap for bbold131 char#37 % --- */
                   56845:       {  37,26252,                      /* character number, location */
                   56846:          14, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   56847:           {  9,   20, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56848:             "\xc2\x8b\x8a\x02\x05\x0a\x0a\x14\x28\x28\x50\xa0\x40"
1.1       albertel 56849:             "\x41\x81\x02\x05\x05\x0a\x14\x15\x3d\x04" }  },
1.2       albertel 56850:       /* --- pixel bitmap for bbold131 char#38 & --- */
                   56851:       {  38,26554,                      /* character number, location */
                   56852:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   56853:           { 12,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56854:             "\x30\x80\x04\x48\x80\x02\x18\x40\x01\x26\x50\x02\x45"
1.1       albertel 56855:             "\x52\x94\xc6\xc8\x73" }  },
1.2       albertel 56856:       /* --- pixel bitmap for bbold131 char#39 ' --- */
                   56857:       {  39,26823,                      /* character number, location */
                   56858:          13, 1,    6, 1,      /* topleft row,col, and botleft row,col */
                   56859:           {  3,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56860:             "\xaa\x29\x05" }  },
                   56861:       /* --- pixel bitmap for bbold131 char#40 ( --- */
                   56862:       {  40,27052,                      /* character number, location */
                   56863:          14, 1,   -5, 1,      /* topleft row,col, and botleft row,col */
                   56864:           {  5,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56865:             "\x98\x18\x53\x4a\x29\xa5\x94\x52\x4a\x31\x86\x60" }  },
                   56866:       /* --- pixel bitmap for bbold131 char#41 ) --- */
                   56867:       {  41,27326,                      /* character number, location */
                   56868:          14, 0,   -5, 0,      /* topleft row,col, and botleft row,col */
                   56869:           {  5,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56870:             "\x83\x30\x46\x29\xa5\x94\x52\x4a\x29\x65\x8c\x0c" }  },
                   56871:       /* --- pixel bitmap for bbold131 char#42 * --- */
                   56872:       {  42,27591,                      /* character number, location */
                   56873:          11, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   56874:           { 11,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56875:             "\x70\x80\x02\x14\xa2\x68\x35\x6c\x40\x01\x1b\x56\x8b"
1.1       albertel 56876:             "\x22\x14\xa0\x00\x07" }  },
1.2       albertel 56877:       /* --- pixel bitmap for bbold131 char#43 + --- */
                   56878:       {  43,27865,                      /* character number, location */
                   56879:          11, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   56880:           { 12,   13, 3,25, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56881:             "\x53\x40\xf4\x51\x11\x46\x15\xf4\x51\x11\x40\x53\x42" }  },
                   56882:       /* --- pixel bitmap for bbold131 char#44 , --- */
                   56883:       {  44,28119,                      /* character number, location */
                   56884:           3, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   56885:           {  3,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56886:             "\xaa\x29\x05" }  },
                   56887:       /* --- pixel bitmap for bbold131 char#45 - --- */
                   56888:       {  45,28342,                      /* character number, location */
                   56889:           5, 0,    4, 0,      /* topleft row,col, and botleft row,col */
                   56890:           {  6,    1, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56891:             "\x3e" }  },
                   56892:       /* --- pixel bitmap for bbold131 char#46 . --- */
                   56893:       {  46,28554,                      /* character number, location */
                   56894:           3, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   56895:           {  3,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56896:             "\xaa\x00" }  },
                   56897:       /* --- pixel bitmap for bbold131 char#47 / --- */
                   56898:       {  47,28778,                      /* character number, location */
                   56899:          14, 0,   -5, 0,      /* topleft row,col, and botleft row,col */
                   56900:           {  9,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56901:             "\xc0\x81\x82\x02\x05\x0a\x0a\x14\x28\x28\x50\xa0\xa0"
1.1       albertel 56902:             "\x40\x81\x82\x02\x05\x0a\x0a\x1c\x00" }  },
1.2       albertel 56903:       /* --- pixel bitmap for bbold131 char#48 0 --- */
                   56904:       {  48, 9356,                      /* character number, location */
                   56905:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   56906:           {  8,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56907:             "\x3c\x46\x46\x85\x85\x85\x85\x85\x85\x46\x46\x3c" }  },
                   56908:       /* --- pixel bitmap for bbold131 char#49 1 --- */
                   56909:       {  49, 9621,                      /* character number, location */
                   56910:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   56911:           {  9,   12, 3,22, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56912:             "\x42\x52\x11\x32\x11\x11\x30\xf7\x31\x11\x39" }  },
                   56913:       /* --- pixel bitmap for bbold131 char#50 2 --- */
                   56914:       {  50, 9876,                      /* character number, location */
                   56915:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   56916:           {  8,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56917:             "\x3c\x62\xa1\xa0\xa0\x60\x30\x08\x04\x02\x01\xff" }  },
                   56918:       /* --- pixel bitmap for bbold131 char#51 3 --- */
                   56919:       {  51,10119,                      /* character number, location */
                   56920:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   56921:           {  8,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56922:             "\x3c\x62\xa1\xa0\x60\x30\x60\xa0\xa0\xa1\x62\x3c" }  },
                   56923:       /* --- pixel bitmap for bbold131 char#52 4 --- */
                   56924:       {  52,10370,                      /* character number, location */
                   56925:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   56926:           {  8,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56927:             "\x20\x30\x30\x28\x2c\x2c\x2a\x2a\xef\x28\x28\x38" }  },
                   56928:       /* --- pixel bitmap for bbold131 char#53 5 --- */
                   56929:       {  53,10623,                      /* character number, location */
                   56930:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   56931:           {  8,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56932:             "\xff\x05\x05\x3f\x40\x80\x80\x80\x80\x81\x42\x3c" }  },
                   56933:       /* --- pixel bitmap for bbold131 char#54 6 --- */
                   56934:       {  54,10864,                      /* character number, location */
                   56935:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   56936:           {  8,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56937:             "\x3c\x42\x81\x3d\x47\x85\x85\x85\x85\x85\x46\x3c" }  },
                   56938:       /* --- pixel bitmap for bbold131 char#55 7 --- */
                   56939:       {  55,11127,                      /* character number, location */
                   56940:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   56941:           {  8,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56942:             "\xff\xa0\x50\x50\x28\x28\x14\x14\x0a\x0a\x05\x07" }  },
                   56943:       /* --- pixel bitmap for bbold131 char#56 8 --- */
                   56944:       {  56,11380,                      /* character number, location */
                   56945:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   56946:           {  8,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56947:             "\x3c\x46\x85\x85\x46\x3c\x46\x85\x85\x85\x46\x3c" }  },
                   56948:       /* --- pixel bitmap for bbold131 char#57 9 --- */
                   56949:       {  57,11641,                      /* character number, location */
                   56950:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   56951:           {  8,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56952:             "\x3c\x46\x85\x85\x85\x85\x85\xc6\xbc\x81\x42\x3c" }  },
                   56953:       /* --- pixel bitmap for bbold131 char#58 : --- */
                   56954:       {  58,29056,                      /* character number, location */
                   56955:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   56956:           {  3,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56957:             "\xaa\x00\x55" }  },
                   56958:       /* --- pixel bitmap for bbold131 char#59 ; --- */
                   56959:       {  59,29284,                      /* character number, location */
                   56960:           8, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   56961:           {  3,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56962:             "\xaa\x00\xd5\x94\x02" }  },
                   56963:       /* --- pixel bitmap for bbold131 char#60 < --- */
                   56964:       {  60,29525,                      /* character number, location */
                   56965:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   56966:           { 12,    9, 3,24, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56967:             "\xa2\x73\x72\x73\x74\x92\x12\x92\x12\x92\x12\x95" }  },
                   56968:       /* --- pixel bitmap for bbold131 char#61 \cdot --- */
                   56969:       {  61,29757,                      /* character number, location */
                   56970:           6, 1,    3, 1,      /* topleft row,col, and botleft row,col */
                   56971:           {  3,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56972:             "\xaa\x00" }  },
                   56973:       /* --- pixel bitmap for bbold131 char#62 > --- */
                   56974:       {  62,29983,                      /* character number, location */
                   56975:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   56976:           { 12,    9, 3,25, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56977:             "\x02\xc3\xc2\xc3\x95\x53\x11\x62\x11\x62\x11\x65\x71" }  },
                   56978:       /* --- pixel bitmap for bbold131 char#63 ? --- */
                   56979:       {  63,30221,                      /* character number, location */
                   56980:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   56981:           {  9,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56982:             "\x7c\x04\x05\x04\x08\x08\x0e\x0a\x1c\x00\x20\xa0\x80"
                   56983:             "\x00" }  },
                   56984:       /* --- pixel bitmap for bbold131 char#64 @ --- */
                   56985:       {  64,30461,                      /* character number, location */
                   56986:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   56987:           {  8,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56988:             "\x3c\x46\x46\x85\xc5\xa5\xa5\x45\x05\x86\x46\x3c" }  },
                   56989:       /* --- pixel bitmap for bbold131 char#65 A --- */
                   56990:       {  65,11904,                      /* character number, location */
                   56991:          12, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   56992:           { 10,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56993:             "\x20\xc0\x00\x03\x1a\x68\x50\x42\x09\x25\xfa\x29\x54"
1.1       albertel 56994:             "\xe0\x81" }  },
1.2       albertel 56995:       /* --- pixel bitmap for bbold131 char#66 B --- */
                   56996:       {  66,12165,                      /* character number, location */
                   56997:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   56998:           {  9,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   56999:             "\x7f\x0a\x15\x2c\x58\xa8\x4f\xa1\x82\x05\x0b\x16\xfa"
1.1       albertel 57000:             "\x03" }  },
1.2       albertel 57001:       /* --- pixel bitmap for bbold131 char#67 C --- */
                   57002:       {  67,12436,                      /* character number, location */
                   57003:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   57004:           { 10,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57005:             "\x78\x10\x66\x60\x01\x05\x14\x50\x40\x01\x05\x18\x48"
1.1       albertel 57006:             "\x18\x1e" }  },
1.2       albertel 57007:       /* --- pixel bitmap for bbold131 char#68 D --- */
                   57008:       {  68,12689,                      /* character number, location */
                   57009:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   57010:           { 10,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57011:             "\x7f\x14\x52\x50\x81\x05\x16\x58\x60\x81\x05\x16\x54"
1.1       albertel 57012:             "\xc8\x1f" }  },
1.2       albertel 57013:       /* --- pixel bitmap for bbold131 char#69 E --- */
                   57014:       {  69,12962,                      /* character number, location */
                   57015:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   57016:           {  9,   12, 3,20, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57017:             "\x09\x0f\x31\x11\x61\x14\x3f\x41\x11\x69" }  },
                   57018:       /* --- pixel bitmap for bbold131 char#70 F --- */
                   57019:       {  70,13215,                      /* character number, location */
                   57020:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   57021:           {  9,   12, 3,21, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57022:             "\x09\x0f\x31\x11\x61\x14\x3f\x41\x11\x63\x61" }  },
                   57023:       /* --- pixel bitmap for bbold131 char#71 G --- */
                   57024:       {  71,13468,                      /* character number, location */
                   57025:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   57026:           { 10,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57027:             "\x78\x10\x66\x60\x01\x05\x14\x5f\x60\x81\x05\x1a\x48"
1.1       albertel 57028:             "\x18\x1e" }  },
1.2       albertel 57029:       /* --- pixel bitmap for bbold131 char#72 H --- */
                   57030:       {  72,13729,                      /* character number, location */
                   57031:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   57032:           { 10,   12, 3,28, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57033:             "\x03\x61\x0f\x31\x11\x61\x01\x18\x0f\x41\x11\x61\x03"
                   57034:             "\x61" }  },
                   57035:       /* --- pixel bitmap for bbold131 char#73 I --- */
                   57036:       {  73,14004,                      /* character number, location */
                   57037:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   57038:           {  3,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57039:             "\x6f\xdb\xb6\x6d\x0f" }  },
                   57040:       /* --- pixel bitmap for bbold131 char#74 J --- */
                   57041:       {  74,14257,                      /* character number, location */
                   57042:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   57043:           {  9,   12, 3,19, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57044:             "\x63\xf7\x61\x11\x01\x52\x21\x41\x44\x31" }  },
                   57045:       /* --- pixel bitmap for bbold131 char#75 K --- */
                   57046:       {  75,14510,                      /* character number, location */
                   57047:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   57048:           {  9,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57049:             "\x07\x0b\x15\x29\x52\xa2\x42\x8b\x12\x45\x0a\x15\x3a"
1.1       albertel 57050:             "\x08" }  },
1.2       albertel 57051:       /* --- pixel bitmap for bbold131 char#76 L --- */
                   57052:       {  76,14787,                      /* character number, location */
                   57053:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   57054:           {  9,   12, 3,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57055:             "\x03\x6f\x91\x11\x69" }  },
                   57056:       /* --- pixel bitmap for bbold131 char#77 M --- */
                   57057:       {  77,15040,                      /* character number, location */
                   57058:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   57059:           { 11,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57060:             "\x01\x1c\x70\x41\x1b\x59\xc5\x12\x16\xb0\x80\x05\x2c"
1.1       albertel 57061:             "\x60\x01\x0f\x08" }  },
1.2       albertel 57062:       /* --- pixel bitmap for bbold131 char#78 N --- */
                   57063:       {  78,15325,                      /* character number, location */
                   57064:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   57065:           { 10,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57066:             "\x01\x0e\x58\x60\x81\x0d\x56\x58\x62\x91\x85\x16\x5a"
1.1       albertel 57067:             "\xf0\x81" }  },
1.2       albertel 57068:       /* --- pixel bitmap for bbold131 char#79 O --- */
                   57069:       {  79,15610,                      /* character number, location */
                   57070:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   57071:           { 10,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57072:             "\x78\x10\x62\x50\x81\x05\x16\x58\x60\x81\x05\x1a\x44"
1.1       albertel 57073:             "\x08\x1e" }  },
1.2       albertel 57074:       /* --- pixel bitmap for bbold131 char#80 P --- */
                   57075:       {  80,15875,                      /* character number, location */
                   57076:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   57077:           {  9,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57078:             "\x7f\x0a\x15\x2c\x58\xa8\x4f\x81\x02\x05\x0a\x14\x38"
                   57079:             "\x00" }  },
                   57080:       /* --- pixel bitmap for bbold131 char#81 Q --- */
                   57081:       {  81,16136,                      /* character number, location */
                   57082:          12, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   57083:           { 10,   16, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57084:             "\x78\x10\x62\x50\x81\x05\x16\x58\x60\x81\x05\x9a\x44"
1.1       albertel 57085:             "\x0a\x1e\x80\x00\x04\x10\x80" }  },
1.2       albertel 57086:       /* --- pixel bitmap for bbold131 char#82 R --- */
                   57087:       {  82,16413,                      /* character number, location */
                   57088:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   57089:           {  9,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57090:             "\x7f\x0a\x15\x2c\x58\xa8\x4f\x89\x12\x45\x0a\x15\x3a"
1.1       albertel 57091:             "\x08" }  },
1.2       albertel 57092:       /* --- pixel bitmap for bbold131 char#83 S --- */
                   57093:       {  83,16686,                      /* character number, location */
                   57094:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   57095:           {  9,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57096:             "\x7c\x0c\x15\x2c\x60\x80\x0f\x20\x80\x00\x03\x0a\xe2"
1.1       albertel 57097:             "\x03" }  },
1.2       albertel 57098:       /* --- pixel bitmap for bbold131 char#84 T --- */
                   57099:       {  84,16931,                      /* character number, location */
                   57100:          12, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   57101:           { 11,   12, 3,13, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57102:             "\x0b\xf9\x41\x11\x40\x43\x41" }  },
                   57103:       /* --- pixel bitmap for bbold131 char#85 U --- */
                   57104:       {  85,17184,                      /* character number, location */
                   57105:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   57106:           { 10,   12, 3,23, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57107:             "\x03\x61\x0f\x71\x11\x61\x12\x51\x31\x41\x54\x31" }  },
                   57108:       /* --- pixel bitmap for bbold131 char#86 V --- */
                   57109:       {  86,17455,                      /* character number, location */
                   57110:          12, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   57111:           { 11,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57112:             "\x07\x2c\xa0\x82\x14\x44\x11\x8a\xa0\x02\x15\x50\x80"
1.1       albertel 57113:             "\x02\x08\x40\x00" }  },
1.2       albertel 57114:       /* --- pixel bitmap for bbold131 char#87 W --- */
                   57115:       {  87,17722,                      /* character number, location */
                   57116:          12, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   57117:           { 15,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57118:             "\x07\xc0\x02\xa0\x02\x48\x01\xa4\x00\xa2\x84\x50\x45"
1.1       albertel 57119:             "\xa8\x22\x28\x0a\x14\x05\x06\x03\x02\x01" }  },
1.2       albertel 57120:       /* --- pixel bitmap for bbold131 char#88 X --- */
                   57121:       {  88,18011,                      /* character number, location */
                   57122:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   57123:           { 10,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57124:             "\x81\x0b\x45\x14\x29\x58\x40\x81\x02\x1a\x94\x28\xa2"
1.1       albertel 57125:             "\xd0\x81" }  },
1.2       albertel 57126:       /* --- pixel bitmap for bbold131 char#89 Y --- */
                   57127:       {  89,18280,                      /* character number, location */
                   57128:          12, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   57129:           { 11,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57130:             "\x07\x54\x10\x45\x28\x82\x0a\x28\x40\x01\x0a\x50\x80"
1.1       albertel 57131:             "\x02\x14\xe0\x00" }  },
1.2       albertel 57132:       /* --- pixel bitmap for bbold131 char#90 Z --- */
                   57133:       {  90,18543,                      /* character number, location */
                   57134:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   57135:           { 10,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57136:             "\xff\x03\x05\x14\x28\x50\x40\x81\x02\x0a\x14\x28\xa0"
1.1       albertel 57137:             "\xc0\xff" }  },
1.2       albertel 57138:       /* --- pixel bitmap for bbold131 char#91 [ --- */
                   57139:       {  91,30739,                      /* character number, location */
                   57140:          14, 1,   -5, 1,      /* topleft row,col, and botleft row,col */
                   57141:           {  5,   19, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57142:             "\x05\x0f\xe1\x11\x2f\x11\x11\x25" }  },
                   57143:       /* --- pixel bitmap for bbold131 char#92 \\ --- */
                   57144:       {  92,31025,                      /* character number, location */
                   57145:          14, 0,   -5, 0,      /* topleft row,col, and botleft row,col */
                   57146:           {  9,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57147:             "\x07\x0a\x28\x50\xa0\x80\x02\x05\x0a\x28\x50\xa0\x80"
1.1       albertel 57148:             "\x02\x05\x0a\x28\x50\xa0\x80\x02\x07" }  },
1.2       albertel 57149:       /* --- pixel bitmap for bbold131 char#93 ] --- */
                   57150:       {  93,31318,                      /* character number, location */
                   57151:          14, 0,   -5, 0,      /* topleft row,col, and botleft row,col */
                   57152:           {  5,   19, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57153:             "\x05\xfe\x21\x11\xf1\x21\x11\x05" }  },
1.1       albertel 57154:       /* --- pixel bitmap for bbold131 char#94 (noname) --- */
1.2       albertel 57155:       {  94,31605,                      /* character number, location */
                   57156:          14, 1,   -5, 1,      /* topleft row,col, and botleft row,col */
                   57157:           {  5,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57158:             "\x10\x22\xc4\x98\x52\x29\x25\xa5\x18\x43\x08\x42" }  },
1.1       albertel 57159:       /* --- pixel bitmap for bbold131 char#95 (noname) --- */
1.2       albertel 57160:       {  95,31873,                      /* character number, location */
                   57161:          14, 0,   -5, 0,      /* topleft row,col, and botleft row,col */
                   57162:           {  5,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57163:             "\x21\x08\x61\x8c\x52\x52\x4a\xa5\x8c\x11\x22\x04" }  },
1.1       albertel 57164:       /* --- pixel bitmap for bbold131 char#96 (noname) --- */
1.2       albertel 57165:       {  96,32144,                      /* character number, location */
                   57166:          13, 1,    6, 1,      /* topleft row,col, and botleft row,col */
                   57167:           {  3,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57168:             "\x94\xb2\x0a" }  },
                   57169:       /* --- pixel bitmap for bbold131 char#97 a --- */
                   57170:       {  97,18796,                      /* character number, location */
                   57171:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   57172:           {  8,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57173:             "\xbc\xc6\x85\x85\x85\x85\xc6\xbc" }  },
                   57174:       /* --- pixel bitmap for bbold131 char#98 b --- */
                   57175:       {  98,19045,                      /* character number, location */
                   57176:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   57177:           { 10,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57178:             "\x07\x14\x50\x40\x01\x05\xd4\xd3\x50\x81\x05\x16\x58"
1.1       albertel 57179:             "\x60\x43\xf7\x00" }  },
1.2       albertel 57180:       /* --- pixel bitmap for bbold131 char#99 c --- */
                   57181:       {  99,19318,                      /* character number, location */
                   57182:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   57183:           {  8,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57184:             "\x3c\x46\x85\x05\x05\x85\x46\x3c" }  },
                   57185:       /* --- pixel bitmap for bbold131 char#100 d --- */
                   57186:       { 100,19559,                      /* character number, location */
                   57187:          13, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   57188:           {  8,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57189:             "\x80\x80\x80\x80\x80\xbc\xc6\x85\x85\x85\x85\xc6\xbc" }  },
                   57190:       /* --- pixel bitmap for bbold131 char#101 e --- */
                   57191:       { 101,19818,                      /* character number, location */
                   57192:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   57193:           {  8,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57194:             "\x3c\x46\x85\xfd\x05\x85\x46\x3c" }  },
                   57195:       /* --- pixel bitmap for bbold131 char#102 f --- */
                   57196:       { 102,20059,                      /* character number, location */
                   57197:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   57198:           {  6,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57199:             "\x9c\x59\x16\x45\x57\x14\x45\x51\x14\x07" }  },
                   57200:       /* --- pixel bitmap for bbold131 char#103 g --- */
                   57201:       { 103,20318,                      /* character number, location */
                   57202:           8, 0,   -4, 0,      /* topleft row,col, and botleft row,col */
                   57203:           {  8,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57204:             "\xbc\xc6\x85\x85\x85\x85\xc6\xbc\x80\x80\x41\x3e" }  },
                   57205:       /* --- pixel bitmap for bbold131 char#104 h --- */
                   57206:       { 104,20577,                      /* character number, location */
                   57207:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   57208:           {  8,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57209:             "\x07\x05\x05\x05\x05\x3d\x45\x85\x85\x85\x85\x85\x87" }  },
                   57210:       /* --- pixel bitmap for bbold131 char#105 i --- */
                   57211:       { 105,20848,                      /* character number, location */
                   57212:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   57213:           {  3,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57214:             "\xaa\xf0\xb6\x6d\x0f" }  },
                   57215:       /* --- pixel bitmap for bbold131 char#106 j --- */
                   57216:       { 106,21095,                      /* character number, location */
                   57217:          12, 0,   -4, 0,      /* topleft row,col, and botleft row,col */
                   57218:           {  6,   16, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57219:             "\x10\x0a\x01\x38\x8a\xa2\x28\x8a\xa2\x28\x9a\x39" }  },
                   57220:       /* --- pixel bitmap for bbold131 char#107 k --- */
                   57221:       { 107,21358,                      /* character number, location */
                   57222:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   57223:           {  8,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57224:             "\x07\x05\x05\x05\x05\x85\x45\x25\x1d\x15\x25\x45\x87" }  },
                   57225:       /* --- pixel bitmap for bbold131 char#108 l --- */
                   57226:       { 108,21629,                      /* character number, location */
                   57227:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   57228:           {  3,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57229:             "\x6f\xdb\xb6\x6d\x6b" }  },
                   57230:       /* --- pixel bitmap for bbold131 char#109 m --- */
                   57231:       { 109,21886,                      /* character number, location */
                   57232:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   57233:           { 11,    8, 3,20, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57234:             "\x06\x13\x1f\x51\x11\x31\x31\x03\x31\x31" }  },
                   57235:       /* --- pixel bitmap for bbold131 char#110 n --- */
                   57236:       { 110,22153,                      /* character number, location */
                   57237:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   57238:           {  8,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57239:             "\x3f\x45\x85\x85\x85\x85\x85\x87" }  },
                   57240:       /* --- pixel bitmap for bbold131 char#111 o --- */
                   57241:       { 111,22404,                      /* character number, location */
                   57242:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   57243:           {  8,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57244:             "\x3c\x46\x85\x85\x85\x85\x46\x3c" }  },
                   57245:       /* --- pixel bitmap for bbold131 char#112 p --- */
                   57246:       { 112,22649,                      /* character number, location */
                   57247:           8, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   57248:           { 10,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57249:             "\xf7\x34\x54\x60\x81\x05\x16\xd8\x50\x3d\x05\x14\x50"
1.1       albertel 57250:             "\xc0\x01" }  },
1.2       albertel 57251:       /* --- pixel bitmap for bbold131 char#113 q --- */
                   57252:       { 113,22918,                      /* character number, location */
                   57253:           8, 0,   -4, 0,      /* topleft row,col, and botleft row,col */
                   57254:           {  8,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57255:             "\xbc\xc6\x85\x85\x85\x85\xc6\xbc\x80\x80\x80\x80" }  },
                   57256:       /* --- pixel bitmap for bbold131 char#114 r --- */
                   57257:       { 114,23175,                      /* character number, location */
                   57258:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   57259:           {  8,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57260:             "\x7f\x85\x85\x05\x05\x05\x05\x07" }  },
                   57261:       /* --- pixel bitmap for bbold131 char#115 s --- */
                   57262:       { 115,23416,                      /* character number, location */
                   57263:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   57264:           {  6,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57265:             "\x5e\x59\x7a\x60\x18\x7a" }  },
                   57266:       /* --- pixel bitmap for bbold131 char#116 t --- */
                   57267:       { 116,23653,                      /* character number, location */
                   57268:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   57269:           {  6,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57270:             "\x47\x51\x14\x45\x5f\x14\x45\x51\x9a\x1c" }  },
                   57271:       /* --- pixel bitmap for bbold131 char#117 u --- */
                   57272:       { 117,23912,                      /* character number, location */
                   57273:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   57274:           {  8,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57275:             "\x87\x85\x85\x85\x85\x85\xc6\xbc" }  },
                   57276:       /* --- pixel bitmap for bbold131 char#118 v --- */
                   57277:       { 118,24163,                      /* character number, location */
                   57278:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   57279:           {  7,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57280:             "\xc7\xa2\x4a\x45\xa1\x20\x10" }  },
                   57281:       /* --- pixel bitmap for bbold131 char#119 w --- */
                   57282:       { 119,24406,                      /* character number, location */
                   57283:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   57284:           { 11,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57285:             "\x07\x2c\xa0\x82\x54\xa4\x25\xaa\x30\x06\x21" }  },
                   57286:       /* --- pixel bitmap for bbold131 char#120 x --- */
                   57287:       { 120,24663,                      /* character number, location */
                   57288:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   57289:           {  8,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57290:             "\xe1\x52\x54\x28\x14\x2a\x4a\x87" }  },
                   57291:       /* --- pixel bitmap for bbold131 char#121 y --- */
                   57292:       { 121,24912,                      /* character number, location */
                   57293:           8, 0,   -4, 0,      /* topleft row,col, and botleft row,col */
                   57294:           {  7,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57295:             "\xc7\xa2\x4a\x45\xa1\x20\x10\x04\x82\x20\x00" }  },
                   57296:       /* --- pixel bitmap for bbold131 char#122 z --- */
                   57297:       { 122,25163,                      /* character number, location */
                   57298:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   57299:           {  8,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57300:             "\xff\x50\x50\x28\x14\x0a\x0a\xff" }  },
                   57301:       /* --- pixel bitmap for bbold131 char#123 \- --- */
                   57302:       { 123,32654,                      /* character number, location */
                   57303:           5, 0,    4, 0,      /* topleft row,col, and botleft row,col */
                   57304:           {  7,    1, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57305:             "\x7f" }  },
                   57306:       /* --- pixel bitmap for bbold131 char#124 | --- */
                   57307:       { 124,32373,                      /* character number, location */
                   57308:          14, 1,   -5, 1,      /* topleft row,col, and botleft row,col */
                   57309:           {  3,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57310:             "\x6f\xdb\xb6\x6d\xdb\xb6\xed\x01" }  },
1.1       albertel 57311:       /* --- pixel bitmap for bbold131 char#125 (noname) --- */
1.2       albertel 57312:       { 125,32866,                      /* character number, location */
                   57313:           5, 0,    4, 0,      /* topleft row,col, and botleft row,col */
                   57314:           { 14,    1, 3, 2, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57315:             "\x0e" }  },
1.1       albertel 57316:       /* --- pixel bitmap for bbold131 char#126 (noname) --- */
1.2       albertel 57317:       { 126,33084,                      /* character number, location */
                   57318:          13, 1,    6, 1,      /* topleft row,col, and botleft row,col */
                   57319:           {  8,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57320:             "\x84\x42\x42\x21\x63\xa5\x42" }  },
                   57321:       /* --- pixel bitmap for bbold131 char#127 \omega --- */
                   57322:       { 127, 9097,                      /* character number, location */
                   57323:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   57324:           { 11,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57325:             "\x04\x31\x50\x01\x4b\x58\xc2\x12\x5a\x89\x31" }  },
1.1       albertel 57326:       /* --- trailer  --- */
1.2       albertel 57327:       { -99, -999,  0,0,0,0, { 0,0,0,0, (pixbyte *)"\0" }  }
1.1       albertel 57328:    } ;
                   57329: 
                   57330: 
1.2       albertel 57331: /* --- size=4 for .160gf ---
                   57332:  * mf '\mode=preview; mag=magstep(-15.29639112828755784636); input bbold10'
                   57333:  * --------------------------------------------------------------------- */
1.1       albertel 57334: /* --- fontdef for bbold160 --- */
                   57335: static	chardef  bbold160[] =
                   57336:    {
1.2       albertel 57337:       /* --- pixel bitmap for bbold160 char#0 \Gamma --- */
                   57338:       {   0,  246,                      /* character number, location */
                   57339:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   57340:           { 11,   15, 3,11, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57341:             "\x0b\x0f\xc1\x21\x74\x70" }  },
                   57342:       /* --- pixel bitmap for bbold160 char#1 \Delta --- */
                   57343:       {   1,  520,                      /* character number, location */
                   57344:          15, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   57345:           { 13,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57346:             "\x40\x00\x08\x80\x02\x50\x00\x19\x20\x03\x92\x40\x12"
                   57347:             "\x48\x82\x84\x90\x10\x09\x24\x81\x12\xe0\xff\x07" }  },
                   57348:       /* --- pixel bitmap for bbold160 char#2 \Theta --- */
                   57349:       {   2,  808,                      /* character number, location */
                   57350:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   57351:           { 12,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57352:             "\xf0\x80\x10\x0c\xa2\x40\x0a\x94\x80\x09\x98\xbe\x09"
                   57353:             "\x98\x80\x0a\xa4\x40\x0c\x82\x10\xf0\x00" }  },
                   57354:       /* --- pixel bitmap for bbold160 char#3 \Lambda --- */
                   57355:       {   3, 1103,                      /* character number, location */
                   57356:          15, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   57357:           { 13,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57358:             "\x40\x00\x08\x80\x02\x50\x00\x19\x20\x03\x92\x40\x12"
                   57359:             "\x48\x82\x84\x90\x10\x09\x24\x81\x12\xe0\x03\x04" }  },
                   57360:       /* --- pixel bitmap for bbold160 char#4 \Xi --- */
                   57361:       {   4, 1390,                      /* character number, location */
                   57362:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   57363:           { 13,   15, 3,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57364:             "\x0d\xf5\xd0\x45\x40\xf5\xdd" }  },
                   57365:       /* --- pixel bitmap for bbold160 char#5 \Pi --- */
                   57366:       {   5, 1615,                      /* character number, location */
                   57367:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   57368:           { 11,   15, 3,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57369:             "\x0b\x0f\xc1\x21\x61\x04\x61" }  },
                   57370:       /* --- pixel bitmap for bbold160 char#6 \Sigma --- */
                   57371:       {   6, 1917,                      /* character number, location */
                   57372:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   57373:           { 12,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57374:             "\xff\x2f\x01\x12\x40\x02\x24\x80\x04\x48\x00\x09\x48"
                   57375:             "\x80\x04\x24\x40\x02\x12\x20\x01\xff\x0f" }  },
                   57376:       /* --- pixel bitmap for bbold160 char#7 \Upsilon --- */
                   57377:       {   7, 2193,                      /* character number, location */
                   57378:          15, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   57379:           { 12,   15, 3,37, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57380:             "\x13\x43\x1f\x21\x31\x21\x31\xf2\x41\x21\x40\x44\x40"
                   57381:             "\xf5\x41\x21\x40\x44\x41" }  },
                   57382:       /* --- pixel bitmap for bbold160 char#8 \Phi --- */
                   57383:       {   8, 2477,                      /* character number, location */
                   57384:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   57385:           { 12,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57386:             "\xf0\x00\x09\x90\x80\x19\x94\x22\x49\x91\x18\x89\x91"
                   57387:             "\x28\x49\x94\x82\x19\x90\x00\x09\xf0\x00" }  },
                   57388:       /* --- pixel bitmap for bbold160 char#9 \Psi --- */
                   57389:       {   9, 2777,                      /* character number, location */
                   57390:          15, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   57391:           { 12,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57392:             "\xf0\x00\x09\x90\x30\xc9\x92\x24\x49\x92\x24\x49\x92"
                   57393:             "\x44\x29\x98\x01\x09\x90\x00\x09\xf0\x00" }  },
                   57394:       /* --- pixel bitmap for bbold160 char#10 \Omega --- */
                   57395:       {  10, 3079,                      /* character number, location */
                   57396:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   57397:           { 12,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57398:             "\xf0\x80\x10\x0c\xa2\x40\x0a\x94\x80\x09\x98\x80\x09"
                   57399:             "\x98\x80\x09\xa8\x40\x0a\xc4\x20\x0f\x0f" }  },
                   57400:       /* --- pixel bitmap for bbold160 char#11 \alpha --- */
                   57401:       {  11, 3375,                      /* character number, location */
                   57402:          10, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   57403:           { 11,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57404:             "\x38\x74\xa2\x12\x13\x99\xa8\x44\x25\x4a\x21\x8e\xc1"
                   57405:             "\x33" }  },
                   57406:       /* --- pixel bitmap for bbold160 char#12 \beta --- */
                   57407:       {  12, 3656,                      /* character number, location */
                   57408:          15, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   57409:           { 10,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57410:             "\xf0\x30\xa4\x60\x82\x09\x25\x93\x50\x82\x09\x26\x98"
                   57411:             "\x60\x82\x09\x66\x94\x4e\x02\x09\x24\xf0\x00" }  },
                   57412:       /* --- pixel bitmap for bbold160 char#13 \gamma --- */
                   57413:       {  13, 3972,                      /* character number, location */
                   57414:          10, 0,   -4, 0,      /* topleft row,col, and botleft row,col */
                   57415:           {  9,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57416:             "\xc7\x71\xa0\x60\xa2\x48\x51\xc2\x84\x09\x13\x26\x54"
                   57417:             "\xe4\x0c\x07" }  },
                   57418:       /* --- pixel bitmap for bbold160 char#14 \delta --- */
                   57419:       {  14, 4258,                      /* character number, location */
                   57420:          15, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   57421:           {  9,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57422:             "\x7c\x04\x05\x0c\x60\x00\x87\x13\x45\x09\x13\x26\x4c"
                   57423:             "\xa8\xc8\x19\x0e" }  },
                   57424:       /* --- pixel bitmap for bbold160 char#15 \epsilon --- */
                   57425:       {  15, 4540,                      /* character number, location */
                   57426:          10, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   57427:           {  9,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57428:             "\x78\x1c\x29\x4c\x90\x23\x41\x02\x85\x8e\xf0\x00" }  },
                   57429:       /* --- pixel bitmap for bbold160 char#16 \zeta --- */
                   57430:       {  16, 4797,                      /* character number, location */
                   57431:          15, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   57432:           {  7,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57433:             "\x40\x18\x82\xc1\x50\x28\x12\x89\x44\x22\xa1\x70\x60"
                   57434:             "\xc0\x40\x20\x0c" }  },
                   57435:       /* --- pixel bitmap for bbold160 char#17 \eta --- */
                   57436:       {  17, 5067,                      /* character number, location */
                   57437:          10, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   57438:           { 10,   14, 3,26, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57439:             "\x04\x13\x21\x22\x31\x1f\x61\x21\x51\x04\x51\xf3\x91" }  },
                   57440:       /* --- pixel bitmap for bbold160 char#18 \theta --- */
                   57441:       {  18, 5349,                      /* character number, location */
                   57442:          15, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   57443:           {  9,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57444:             "\x38\x98\x28\x52\x94\x30\x61\xc2\xfc\x09\x13\x26\x54"
                   57445:             "\xa4\x88\x09\x0e" }  },
                   57446:       /* --- pixel bitmap for bbold160 char#19 \iota --- */
                   57447:       {  19, 5642,                      /* character number, location */
                   57448:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   57449:           {  4,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57450:             "\x9f\x99\x99\x99\xca" }  },
                   57451:       /* --- pixel bitmap for bbold160 char#20 \kappa --- */
                   57452:       {  20, 5896,                      /* character number, location */
                   57453:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   57454:           { 10,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57455:             "\x0f\x26\x96\x44\x0e\x19\xa4\x90\x44\x12\x89\x3c\x0c" }  },
                   57456:       /* --- pixel bitmap for bbold160 char#21 \lambda --- */
                   57457:       {  21, 6167,                      /* character number, location */
                   57458:          15, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   57459:           {  9,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57460:             "\x0f\x12\x48\x90\x20\x81\x04\x09\x12\x48\x90\x50\xa2"
                   57461:             "\x24\x49\x64\x78" }  },
                   57462:       /* --- pixel bitmap for bbold160 char#22 \mu --- */
                   57463:       {  22, 6448,                      /* character number, location */
                   57464:          10, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   57465:           { 10,   14, 3,33, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57466:             "\x04\x51\x0f\x61\x21\x51\x01\x22\x33\x21\x13\x11\x0f"
                   57467:             "\x21\x21\x64\x61" }  },
                   57468:       /* --- pixel bitmap for bbold160 char#23 \nu --- */
                   57469:       {  23, 6737,                      /* character number, location */
                   57470:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   57471:           {  9,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57472:             "\x0f\x13\x26\x4c\x94\x28\x49\x92\x14\x19\x0e\x00" }  },
                   57473:       /* --- pixel bitmap for bbold160 char#24 \xi --- */
                   57474:       {  24, 7004,                      /* character number, location */
                   57475:          15, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   57476:           {  7,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57477:             "\x7c\x45\x22\xa1\xe0\x31\x14\x89\x44\x22\xa1\x70\x60"
                   57478:             "\xc0\x40\x20\x0c" }  },
                   57479:       /* --- pixel bitmap for bbold160 char#25 \pi --- */
                   57480:       {  25, 7277,                      /* character number, location */
                   57481:          10, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   57482:           { 10,   10, 3,17, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57483:             "\x0a\xf7\x21\x21\x11\x20\x24\x11\x21" }  },
                   57484:       /* --- pixel bitmap for bbold160 char#26 \rho --- */
                   57485:       {  26, 7547,                      /* character number, location */
                   57486:          10, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   57487:           {  9,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57488:             "\x38\x9c\x29\x4a\x98\x30\x61\xc2\x44\xc9\x72\x24\x48"
                   57489:             "\x90\xe0\x01" }  },
                   57490:       /* --- pixel bitmap for bbold160 char#27 \sigma --- */
                   57491:       {  27, 7831,                      /* character number, location */
                   57492:          10, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   57493:           { 11,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57494:             "\xf8\x77\x86\x22\x12\x92\x90\x84\x24\x44\x11\xce\xc0"
                   57495:             "\x01" }  },
                   57496:       /* --- pixel bitmap for bbold160 char#28 \tau --- */
                   57497:       {  28, 8095,                      /* character number, location */
                   57498:          10, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   57499:           { 10,   10, 3,17, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57500:             "\x0a\xf6\x31\x21\x30\x41\x11\x82\x31" }  },
                   57501:       /* --- pixel bitmap for bbold160 char#29 \upsilon --- */
                   57502:       {  29, 8351,                      /* character number, location */
                   57503:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   57504:           {  9,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57505:             "\x0f\x13\x26\x4c\x98\x30\x61\x42\x45\xce\x70\x00" }  },
                   57506:       /* --- pixel bitmap for bbold160 char#30 \phi --- */
                   57507:       {  30, 8619,                      /* character number, location */
                   57508:          15, 0,   -4, 0,      /* topleft row,col, and botleft row,col */
                   57509:           { 10,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57510:             "\x78\x20\x81\x04\x12\x48\x20\xc1\x8c\x52\x49\x26\x99"
                   57511:             "\x64\x92\x4a\x31\x83\x04\x12\x48\x20\x81\x07" }  },
                   57512:       /* --- pixel bitmap for bbold160 char#31 \chi --- */
                   57513:       {  31, 8931,                      /* character number, location */
                   57514:          10, 0,   -4, 0,      /* topleft row,col, and botleft row,col */
                   57515:           {  9,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57516:             "\xe1\x45\x4a\xa2\xc4\x04\x09\x12\x12\x24\xc8\x48\x91"
                   57517:             "\x94\xe8\x21" }  },
                   57518:       /* --- pixel bitmap for bbold160 char#32 \psi --- */
                   57519:       {  32, 9215,                      /* character number, location */
                   57520:          15, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   57521:           { 10,   19, 3,45, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57522:             "\x34\x30\xf3\x31\x21\x3f\x61\x21\x21\x21\x11\x11\x21"
                   57523:             "\x11\x23\x23\x10\xf3\x31\x21\x30\x34\x31" }  },
                   57524:       /* --- pixel bitmap for bbold160 char#33 ! --- */
                   57525:       {  33,26690,                      /* character number, location */
                   57526:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   57527:           {  4,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57528:             "\x9f\x99\x99\x99\xf9\x60\x99\x06" }  },
1.1       albertel 57529:       /* --- pixel bitmap for bbold160 char#34 (noname) --- */
1.2       albertel 57530:       {  34,34970,                      /* character number, location */
                   57531:          15, 1,    7, 1,      /* topleft row,col, and botleft row,col */
                   57532:           { 10,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57533:             "\x86\x25\x99\xa4\xe3\x08\x12\x24\x48\x10" }  },
                   57534:       /* --- pixel bitmap for bbold160 char#35 # --- */
                   57535:       {  35,26954,                      /* character number, location */
                   57536:          15, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   57537:           { 15,   19, 3,45, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57538:             "\x54\x21\x30\xf5\x51\x21\x21\x36\x27\xf2\x51\x21\x21"
                   57539:             "\x36\x27\xf5\x51\x21\x21\x30\x54\x21\x30" }  },
                   57540:       /* --- pixel bitmap for bbold160 char#36 $ --- */
                   57541:       {  36,27272,                      /* character number, location */
                   57542:          17, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   57543:           { 12,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57544:             "\xf0\x00\x09\x98\x63\xc9\x91\x10\x09\x91\x10\x09\x96"
                   57545:             "\x80\x19\x90\x06\x89\x90\x08\x89\x90\x38\x69\x9c\x01"
                   57546:             "\x09\xf0\x00" }  },
                   57547:       /* --- pixel bitmap for bbold160 char#37 % --- */
                   57548:       {  37,27586,                      /* character number, location */
                   57549:          17, 1,   -7, 1,      /* topleft row,col, and botleft row,col */
                   57550:           { 12,   24, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57551:             "\x06\x9f\x90\x89\x64\x48\x80\x04\x24\x40\x02\x24\x20"
                   57552:             "\x01\x12\x20\x01\x09\x90\x80\x04\x48\x80\x04\x24\x40"
                   57553:             "\x02\x24\x20\x01\x12\x26\x91\x09\xf9\x60" }  },
                   57554:       /* --- pixel bitmap for bbold160 char#38 & --- */
                   57555:       {  38,27912,                      /* character number, location */
                   57556:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   57557:           { 15,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57558:             "\x60\x00\x48\x00\x24\x00\x12\x00\x05\x80\x01\xb0\x00"
                   57559:             "\x94\x00\x49\x80\x44\x40\x42\x24\x21\xa1\x60\x54\x2c"
                   57560:             "\xf2\xe1\x00" }  },
                   57561:       /* --- pixel bitmap for bbold160 char#39 ' --- */
                   57562:       {  39,28203,                      /* character number, location */
                   57563:          15, 1,    7, 1,      /* topleft row,col, and botleft row,col */
                   57564:           {  4,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57565:             "\x96\xe9\x48\x12" }  },
                   57566:       /* --- pixel bitmap for bbold160 char#40 ( --- */
                   57567:       {  40,28436,                      /* character number, location */
                   57568:          17, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   57569:           {  6,   23, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57570:             "\x38\xc3\x28\x4a\x92\x24\x49\x92\x24\x49\x92\x24\x49"
                   57571:             "\xa2\x28\x0c\x83\x03" }  },
                   57572:       /* --- pixel bitmap for bbold160 char#41 ) --- */
                   57573:       {  41,28730,                      /* character number, location */
                   57574:          17, 0,   -6, 0,      /* topleft row,col, and botleft row,col */
                   57575:           {  6,   23, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57576:             "\x07\xc3\x50\x14\x49\x92\x24\x49\x92\x24\x49\x92\x24"
                   57577:             "\x49\x51\x0c\x73\x00" }  },
                   57578:       /* --- pixel bitmap for bbold160 char#42 * --- */
                   57579:       {  42,29015,                      /* character number, location */
                   57580:          13, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   57581:           { 12,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57582:             "\xf0\x00\x09\x90\x00\x09\x91\x68\x69\x98\x01\x09\x98"
                   57583:             "\x61\x69\x91\x08\x09\x90\x00\x09\xf0\x00" }  },
                   57584:       /* --- pixel bitmap for bbold160 char#43 + --- */
                   57585:       {  43,29297,                      /* character number, location */
                   57586:          13, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   57587:           { 15,   15, 3,25, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57588:             "\x64\x50\xf5\x61\x21\x57\x26\xf5\x61\x21\x50\x64\x52" }  },
                   57589:       /* --- pixel bitmap for bbold160 char#44 , --- */
                   57590:       {  44,29559,                      /* character number, location */
                   57591:           4, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   57592:           {  4,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57593:             "\x96\xe9\x48\x12" }  },
                   57594:       /* --- pixel bitmap for bbold160 char#45 - --- */
                   57595:       {  45,29786,                      /* character number, location */
                   57596:           6, 0,    5, 0,      /* topleft row,col, and botleft row,col */
                   57597:           {  7,    1, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57598:             "\x7e" }  },
                   57599:       /* --- pixel bitmap for bbold160 char#46 . --- */
                   57600:       {  46,29998,                      /* character number, location */
                   57601:           4, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   57602:           {  4,    4, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57603:             "\x96\x69" }  },
                   57604:       /* --- pixel bitmap for bbold160 char#47 / --- */
                   57605:       {  47,30226,                      /* character number, location */
                   57606:          17, 0,   -6, 0,      /* topleft row,col, and botleft row,col */
                   57607:           { 11,   23, 3,59, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57608:             "\x74\x71\x21\xf2\x61\x21\x10\xf2\x51\x21\x20\xf2\x41"
                   57609:             "\x21\x30\xf3\x31\x21\x40\xf2\x21\x21\x50\xf2\x11\x21"
                   57610:             "\x61\x21\x74\x71" }  },
                   57611:       /* --- pixel bitmap for bbold160 char#48 0 --- */
                   57612:       {  48, 9814,                      /* character number, location */
                   57613:          14, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   57614:           { 10,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57615:             "\x78\x30\xa2\x90\x42\x09\x26\x98\x60\x82\x09\x26\xa8"
                   57616:             "\x90\x42\x8c\xe0\x01" }  },
                   57617:       /* --- pixel bitmap for bbold160 char#49 1 --- */
                   57618:       {  49,10095,                      /* character number, location */
                   57619:          14, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   57620:           { 10,   14, 3,24, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57621:             "\x61\x73\x52\x21\x32\x11\x21\x30\xf8\x31\x21\x3a" }  },
                   57622:       /* --- pixel bitmap for bbold160 char#50 2 --- */
                   57623:       {  50,10356,                      /* character number, location */
                   57624:          14, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   57625:           { 10,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57626:             "\xf8\x18\x25\x64\x90\x40\x02\x05\x1c\x10\x30\x20\x60"
                   57627:             "\x80\x00\x01\xfc\x0f" }  },
                   57628:       /* --- pixel bitmap for bbold160 char#51 3 --- */
                   57629:       {  51,10609,                      /* character number, location */
                   57630:          14, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   57631:           { 10,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57632:             "\xf8\x18\x25\x64\x90\x40\x02\x05\x0e\x70\x40\x02\x19"
                   57633:             "\xa4\x90\xc6\xe1\x01" }  },
                   57634:       /* --- pixel bitmap for bbold160 char#52 4 --- */
                   57635:       {  52,10876,                      /* character number, location */
                   57636:          14, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   57637:           { 10,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57638:             "\x80\x00\x03\x0c\x28\x90\x60\x82\x09\x25\x92\x48\xf2"
                   57639:             "\x39\x24\x90\xc0\x03" }  },
                   57640:       /* --- pixel bitmap for bbold160 char#53 5 --- */
                   57641:       {  53,11139,                      /* character number, location */
                   57642:          14, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   57643:           { 10,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57644:             "\xff\x27\x90\xc0\x1f\x80\x00\x04\x20\x80\x00\x02\x18"
                   57645:             "\xa0\x40\x86\xe0\x01" }  },
                   57646:       /* --- pixel bitmap for bbold160 char#54 6 --- */
                   57647:       {  54,11386,                      /* character number, location */
                   57648:          14, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   57649:           { 10,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57650:             "\x7c\x08\x16\x50\x9e\x8d\x2c\x94\x60\x82\x09\x26\x98"
                   57651:             "\xa0\x42\x8c\xe0\x01" }  },
                   57652:       /* --- pixel bitmap for bbold160 char#55 7 --- */
                   57653:       {  55,11665,                      /* character number, location */
                   57654:          14, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   57655:           { 10,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57656:             "\xff\x03\x09\x12\x48\x90\x40\x82\x04\x12\x24\x90\x20"
                   57657:             "\x81\x04\x09\x3c\x00" }  },
                   57658:       /* --- pixel bitmap for bbold160 char#56 8 --- */
                   57659:       {  56,11926,                      /* character number, location */
                   57660:          14, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   57661:           { 10,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57662:             "\xfc\x28\x94\x60\x82\x09\x2a\xc4\x8f\x63\x09\x26\x98"
                   57663:             "\x60\x82\x8e\xe1\x01" }  },
                   57664:       /* --- pixel bitmap for bbold160 char#57 9 --- */
                   57665:       {  57,12203,                      /* character number, location */
                   57666:          14, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   57667:           { 10,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57668:             "\x78\x30\xa2\x50\x82\x09\x26\x98\x60\x82\x0a\x33\x9a"
                   57669:             "\xa7\x80\x06\xe1\x03" }  },
                   57670:       /* --- pixel bitmap for bbold160 char#58 : --- */
                   57671:       {  58,30520,                      /* character number, location */
                   57672:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   57673:           {  4,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57674:             "\x96\x69\x00\x96\x69" }  },
                   57675:       /* --- pixel bitmap for bbold160 char#59 ; --- */
                   57676:       {  59,30756,                      /* character number, location */
                   57677:          10, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   57678:           {  4,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57679:             "\x96\x69\x00\x96\xe9\x48\x12" }  },
                   57680:       /* --- pixel bitmap for bbold160 char#60 < --- */
                   57681:       {  60,31005,                      /* character number, location */
                   57682:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   57683:           { 15,   11, 3,32, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57684:             "\xd2\xa3\xa2\xa3\x93\xa2\x12\xb2\x22\xb2\x22\xb2\x22"
                   57685:             "\xb2\x22\xb6" }  },
                   57686:       /* --- pixel bitmap for bbold160 char#61 \cdot --- */
                   57687:       {  61,31245,                      /* character number, location */
                   57688:           8, 1,    4, 1,      /* topleft row,col, and botleft row,col */
                   57689:           {  4,    4, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57690:             "\x96\x69" }  },
                   57691:       /* --- pixel bitmap for bbold160 char#62 > --- */
                   57692:       {  62,31475,                      /* character number, location */
                   57693:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   57694:           { 15,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57695:             "\x03\x00\x0e\x00\x18\x00\x70\x00\xc0\x01\x60\x03\xcc"
                   57696:             "\x80\x19\xb0\x03\x32\xc0\x07\x00" }  },
                   57697:       /* --- pixel bitmap for bbold160 char#63 ? --- */
                   57698:       {  63,31721,                      /* character number, location */
                   57699:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   57700:           { 12,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57701:             "\xf8\x41\x60\x02\x18\x80\x00\x08\x40\xc0\x03\x0a\x90"
                   57702:             "\x00\x0f\x00\x00\x06\x90\x00\x09\x60\x00" }  },
                   57703:       /* --- pixel bitmap for bbold160 char#64 @ --- */
                   57704:       {  64,31973,                      /* character number, location */
                   57705:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   57706:           {  9,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57707:             "\x38\x98\x28\x52\x94\x30\x61\xfa\x94\xe9\x13\x24\x50"
                   57708:             "\xa8\x90\x19\x0e" }  },
                   57709:       /* --- pixel bitmap for bbold160 char#65 A --- */
                   57710:       {  65,12482,                      /* character number, location */
                   57711:          15, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   57712:           { 12,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57713:             "\x40\x00\x06\x60\x00\x09\x90\x00\x09\x48\x81\x14\x24"
                   57714:             "\x42\x22\x24\x22\x7f\x12\x94\x80\x0f\x08" }  },
                   57715:       /* --- pixel bitmap for bbold160 char#66 B --- */
                   57716:       {  66,12759,                      /* character number, location */
                   57717:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   57718:           { 11,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57719:             "\xff\x48\x58\x02\x13\x98\xc0\x04\x26\x2c\x1f\x09\x4b"
                   57720:             "\x60\x02\x13\x98\xc0\x84\xfd\x03" }  },
                   57721:       /* --- pixel bitmap for bbold160 char#67 C --- */
                   57722:       {  67,13048,                      /* character number, location */
                   57723:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   57724:           { 12,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57725:             "\xf0\x81\x20\x0c\xa4\x80\x0a\x90\x00\x09\x90\x00\x09"
                   57726:             "\x90\x00\x0a\xa0\x80\x0c\x84\x20\xf0\x01" }  },
                   57727:       /* --- pixel bitmap for bbold160 char#68 D --- */
                   57728:       {  68,13317,                      /* character number, location */
                   57729:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   57730:           { 12,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57731:             "\xff\x90\x10\x09\x92\x40\x09\x94\x80\x09\x98\x80\x09"
                   57732:             "\x98\x80\x09\x94\x40\x09\x92\x10\xff\x00" }  },
                   57733:       /* --- pixel bitmap for bbold160 char#69 E --- */
                   57734:       {  69,13608,                      /* character number, location */
                   57735:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   57736:           { 11,   15, 3,20, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57737:             "\x0b\x0f\x51\x21\x71\x24\x4f\x51\x21\x7b" }  },
                   57738:       /* --- pixel bitmap for bbold160 char#70 F --- */
                   57739:       {  70,13873,                      /* character number, location */
                   57740:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   57741:           { 11,   15, 3,21, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57742:             "\x0b\x0f\x51\x21\x71\x24\x4f\x51\x21\x74\x71" }  },
                   57743:       /* --- pixel bitmap for bbold160 char#71 G --- */
                   57744:       {  71,14138,                      /* character number, location */
                   57745:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   57746:           { 12,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57747:             "\xf0\x81\x20\x0c\xa4\x80\x0a\x90\x00\x09\x90\xf0\x09"
                   57748:             "\x98\x80\x0a\xa8\x80\x0c\x84\x20\xf0\x01" }  },
                   57749:       /* --- pixel bitmap for bbold160 char#72 H --- */
                   57750:       {  72,14415,                      /* character number, location */
                   57751:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   57752:           { 12,   15, 3,28, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57753:             "\x04\x71\x0f\x51\x21\x71\x01\x29\x0f\x51\x21\x71\x04"
                   57754:             "\x71" }  },
                   57755:       /* --- pixel bitmap for bbold160 char#73 I --- */
                   57756:       {  73,14708,                      /* character number, location */
                   57757:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   57758:           {  4,   15, 3,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57759:             "\x04\x0f\xc1\x21\x04" }  },
                   57760:       /* --- pixel bitmap for bbold160 char#74 J --- */
                   57761:       {  74,14973,                      /* character number, location */
                   57762:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   57763:           { 11,   15, 3,27, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57764:             "\x74\xf9\x71\x21\x01\x61\x11\x21\x51\x11\x31\x42\x54"
                   57765:             "\x41" }  },
                   57766:       /* --- pixel bitmap for bbold160 char#75 K --- */
                   57767:       {  75,15242,                      /* character number, location */
                   57768:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   57769:           { 11,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57770:             "\x0f\x4c\x50\x82\x12\x92\x88\x24\x24\x21\x05\x59\xc8"
                   57771:             "\x42\x22\x12\x92\xa0\x04\x3d\x10" }  },
                   57772:       /* --- pixel bitmap for bbold160 char#76 L --- */
                   57773:       {  76,15537,                      /* character number, location */
                   57774:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   57775:           { 11,   15, 3,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57776:             "\x04\x7f\xc1\x21\x7b" }  },
                   57777:       /* --- pixel bitmap for bbold160 char#77 M --- */
                   57778:       {  77,15802,                      /* character number, location */
                   57779:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   57780:           { 13,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57781:             "\x01\x70\x00\x17\xd0\x04\x99\x20\x33\x62\x2a\x4c\x82"
                   57782:             "\x09\x30\x01\x26\xc0\x04\x98\x00\x13\xe0\x03\x04" }  },
                   57783:       /* --- pixel bitmap for bbold160 char#78 N --- */
                   57784:       {  78,16109,                      /* character number, location */
                   57785:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   57786:           { 12,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57787:             "\x01\x38\x80\x05\x58\x80\x09\x98\x81\x29\x98\x82\x49"
                   57788:             "\x98\x88\x09\x99\xa0\x09\x9a\xc0\x0f\x08" }  },
                   57789:       /* --- pixel bitmap for bbold160 char#79 O --- */
                   57790:       {  79,16416,                      /* character number, location */
                   57791:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   57792:           { 12,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57793:             "\xf0\x80\x10\x0c\xa2\x40\x0a\x94\x80\x09\x98\x80\x09"
                   57794:             "\x98\x80\x0a\xa4\x40\x0c\x82\x10\xf0\x00" }  },
                   57795:       /* --- pixel bitmap for bbold160 char#80 P --- */
                   57796:       {  80,16699,                      /* character number, location */
                   57797:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   57798:           { 11,   15, 3,35, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57799:             "\x08\x31\x21\x42\x1f\x31\x21\x61\x01\x21\x42\x11\x25"
                   57800:             "\x3f\x51\x21\x74\x71" }  },
                   57801:       /* --- pixel bitmap for bbold160 char#81 Q --- */
                   57802:       {  81,16976,                      /* character number, location */
                   57803:          15, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   57804:           { 12,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57805:             "\xf0\x80\x10\x0c\xa2\x40\x0a\x94\x80\x09\x98\x80\x09"
                   57806:             "\x98\x80\x0a\xa4\x44\x4c\x82\x18\xf0\x01\x20\x00\x02"
                   57807:             "\x40\x00\x08" }  },
                   57808:       /* --- pixel bitmap for bbold160 char#82 R --- */
                   57809:       {  82,17271,                      /* character number, location */
                   57810:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   57811:           { 11,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57812:             "\xff\x48\x58\x02\x13\x98\xc0\x04\x26\x2c\x1f\x49\x48"
                   57813:             "\x42\x22\x12\x92\xa0\x04\x3d\x10" }  },
                   57814:       /* --- pixel bitmap for bbold160 char#83 S --- */
                   57815:       {  83,17562,                      /* character number, location */
                   57816:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   57817:           { 11,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57818:             "\xf8\x70\x48\x82\x12\x98\x80\x04\x38\x00\x1f\x00\x03"
                   57819:             "\x20\x00\x03\x28\x40\x82\xe1\x03" }  },
                   57820:       /* --- pixel bitmap for bbold160 char#84 T --- */
                   57821:       {  84,17821,                      /* character number, location */
                   57822:          15, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   57823:           { 12,   15, 3,13, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57824:             "\x0c\xfc\x41\x21\x40\x44\x41" }  },
                   57825:       /* --- pixel bitmap for bbold160 char#85 U --- */
                   57826:       {  85,18086,                      /* character number, location */
                   57827:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   57828:           { 12,   15, 3,33, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57829:             "\x04\x71\x0f\x81\x21\x71\xf1\x11\x11\x61\x10\x22\x51"
                   57830:             "\x51\x41\x74\x40" }  },
                   57831:       /* --- pixel bitmap for bbold160 char#86 V --- */
                   57832:       {  86,18375,                      /* character number, location */
                   57833:          15, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   57834:           { 13,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57835:             "\x0f\x30\x01\x4a\x20\x09\x44\x42\x48\x08\x92\x40\x12"
                   57836:             "\x48\x02\x32\x40\x06\x50\x00\x0a\x80\x00\x10\x00" }  },
                   57837:       /* --- pixel bitmap for bbold160 char#87 W --- */
                   57838:       {  87,18656,                      /* character number, location */
                   57839:          15, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   57840:           { 17,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57841:             "\x0f\x00\x13\x00\x4a\x00\x92\x00\x24\x01\x48\x02\x10"
                   57842:             "\x09\x10\x92\x20\xa4\x42\x90\x45\x20\x91\x40\x22\x81"
                   57843:             "\x82\x02\x06\x03\x04\x04" }  },
                   57844:       /* --- pixel bitmap for bbold160 char#88 X --- */
                   57845:       {  88,18963,                      /* character number, location */
                   57846:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   57847:           { 12,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57848:             "\x01\x2f\x48\x84\x44\x24\x48\x02\x13\x20\x01\x09\x48"
                   57849:             "\x80\x0c\x24\x41\x22\x12\x22\x41\x0f\x08" }  },
                   57850:       /* --- pixel bitmap for bbold160 char#89 Y --- */
                   57851:       {  89,19248,                      /* character number, location */
                   57852:          15, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   57853:           { 12,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57854:             "\x0f\x28\x41\x12\x44\x22\x24\x82\x14\x48\x01\x09\x90"
                   57855:             "\x00\x09\x90\x00\x09\x90\x00\x09\xf0\x00" }  },
                   57856:       /* --- pixel bitmap for bbold160 char#90 Z --- */
                   57857:       {  90,19527,                      /* character number, location */
                   57858:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   57859:           { 12,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57860:             "\xff\x0f\x48\x80\x04\x24\x40\x02\x12\x20\x01\x09\x48"
                   57861:             "\x80\x04\x24\x40\x02\x12\x20\x01\xff\x0f" }  },
                   57862:       /* --- pixel bitmap for bbold160 char#91 [ --- */
                   57863:       {  91,32269,                      /* character number, location */
                   57864:          17, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   57865:           {  6,   23, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57866:             "\x06\x0f\xe1\x21\x2f\x51\x21\x26" }  },
                   57867:       /* --- pixel bitmap for bbold160 char#92 \\ --- */
                   57868:       {  92,32571,                      /* character number, location */
                   57869:          17, 0,   -6, 0,      /* topleft row,col, and botleft row,col */
                   57870:           { 11,   23, 3,62, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57871:             "\x04\x71\x21\x70\xf2\x11\x21\x60\xf2\x21\x21\x50\xf3"
                   57872:             "\x31\x21\x40\xf2\x41\x21\x30\xf2\x51\x21\x20\xf2\x61"
                   57873:             "\x21\x10\x71\x21\x74" }  },
                   57874:       /* --- pixel bitmap for bbold160 char#93 ] --- */
                   57875:       {  93,32880,                      /* character number, location */
                   57876:          17, 0,   -6, 0,      /* topleft row,col, and botleft row,col */
                   57877:           {  6,   23, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57878:             "\x06\xfe\x21\x21\xf5\x21\x21\x06" }  },
                   57879:       /* --- pixel bitmap for bbold160 char#94 (noname) --- */
                   57880:       {  94,33183,                      /* character number, location */
                   57881:          17, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   57882:           {  6,   23, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57883:             "\x20\x08\x41\x18\x46\x51\x92\x14\x45\x91\x24\x51\x14"
                   57884:             "\x86\x41\x10\x08\x02" }  },
                   57885:       /* --- pixel bitmap for bbold160 char#95 (noname) --- */
                   57886:       {  95,33467,                      /* character number, location */
                   57887:          17, 0,   -6, 0,      /* topleft row,col, and botleft row,col */
                   57888:           {  6,   23, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57889:             "\x41\x20\x08\x86\xa1\x28\x92\x24\x8a\xa2\x24\x29\x8a"
                   57890:             "\x61\x08\x42\x10\x00" }  },
1.1       albertel 57891:       /* --- pixel bitmap for bbold160 char#96 (noname) --- */
1.2       albertel 57892:       {  96,33754,                      /* character number, location */
                   57893:          15, 1,    7, 1,      /* topleft row,col, and botleft row,col */
                   57894:           {  4,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57895:             "\x48\x12\x97\x69" }  },
                   57896:       /* --- pixel bitmap for bbold160 char#97 a --- */
                   57897:       {  97,19792,                      /* character number, location */
                   57898:          10, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   57899:           {  9,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57900:             "\x78\x1d\x2b\x4c\x98\x30\x61\x42\x85\x8e\xf1\x02" }  },
                   57901:       /* --- pixel bitmap for bbold160 char#98 b --- */
                   57902:       {  98,20053,                      /* character number, location */
                   57903:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   57904:           { 12,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57905:             "\x0f\x90\x00\x09\x90\x00\x09\x90\x1e\x19\x96\x40\x09"
                   57906:             "\x98\x80\x09\x98\x80\x09\x94\x61\xef\x01" }  },
                   57907:       /* --- pixel bitmap for bbold160 char#99 c --- */
                   57908:       {  99,20338,                      /* character number, location */
                   57909:          10, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   57910:           {  9,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57911:             "\x78\x1c\x29\x4c\x90\x20\x41\x02\x85\x8e\xf0\x00" }  },
                   57912:       /* --- pixel bitmap for bbold160 char#100 d --- */
                   57913:       { 100,20587,                      /* character number, location */
                   57914:          15, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   57915:           {  9,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57916:             "\x00\x01\x02\x04\x08\x10\xaf\x63\x85\x09\x13\x26\x4c"
                   57917:             "\xa8\xd0\x31\x5e" }  },
                   57918:       /* --- pixel bitmap for bbold160 char#101 e --- */
                   57919:       { 101,20858,                      /* character number, location */
                   57920:          10, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   57921:           {  9,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57922:             "\x38\x9c\x29\x4a\x98\x3f\x41\x02\x85\x8e\xf0\x00" }  },
                   57923:       /* --- pixel bitmap for bbold160 char#102 f --- */
                   57924:       { 102,21109,                      /* character number, location */
                   57925:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   57926:           {  7,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57927:             "\x1c\x55\x32\x91\xc8\x25\x12\x89\x44\x22\x91\x48\x3c"
                   57928:             "\x00" }  },
                   57929:       /* --- pixel bitmap for bbold160 char#103 g --- */
                   57930:       { 103,21378,                      /* character number, location */
                   57931:          10, 0,   -4, 0,      /* topleft row,col, and botleft row,col */
                   57932:           {  9,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57933:             "\x78\x1d\x2b\x4c\x98\x30\x61\x42\x85\x8e\xf1\x02\x04"
                   57934:             "\x34\x8c\x07" }  },
                   57935:       /* --- pixel bitmap for bbold160 char#104 h --- */
                   57936:       { 104,21649,                      /* character number, location */
                   57937:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   57938:           { 10,   15, 3,32, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57939:             "\x04\x6f\x31\x21\x61\x21\x13\x21\x22\x31\x1f\x61\x21"
                   57940:             "\x51\x04\x51" }  },
                   57941:       /* --- pixel bitmap for bbold160 char#105 i --- */
                   57942:       { 105,21934,                      /* character number, location */
                   57943:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   57944:           {  4,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57945:             "\x96\x69\xf0\x99\x99\x99\x99\x0f" }  },
                   57946:       /* --- pixel bitmap for bbold160 char#106 j --- */
                   57947:       { 106,22193,                      /* character number, location */
                   57948:          15, 0,   -4, 0,      /* topleft row,col, and botleft row,col */
                   57949:           {  7,   19, 3,29, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57950:             "\x42\x10\xf1\x31\x21\x42\xb4\xfa\x31\x21\x01\x21\x11"
                   57951:             "\x24\x24" }  },
                   57952:       /* --- pixel bitmap for bbold160 char#107 k --- */
                   57953:       { 107,22470,                      /* character number, location */
                   57954:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   57955:           { 10,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57956:             "\x0f\x24\x90\x40\x02\x09\x24\x98\x50\x22\x49\xe4\x90"
                   57957:             "\x42\x12\x89\x24\xf4\x20" }  },
                   57958:       /* --- pixel bitmap for bbold160 char#108 l --- */
                   57959:       { 108,22753,                      /* character number, location */
                   57960:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   57961:           {  4,   15, 3,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57962:             "\x04\x0f\xb1\x21\x11\x11\x22" }  },
                   57963:       /* --- pixel bitmap for bbold160 char#109 m --- */
                   57964:       { 109,23018,                      /* character number, location */
                   57965:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   57966:           { 13,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57967:             "\x7f\x26\x31\x25\xc6\xc4\x98\x10\x13\x62\x42\x4c\x88"
                   57968:             "\x09\xf1\x21\x02" }  },
                   57969:       /* --- pixel bitmap for bbold160 char#110 n --- */
                   57970:       { 110,23301,                      /* character number, location */
                   57971:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   57972:           { 10,   10, 3,22, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57973:             "\x04\x13\x21\x22\x31\x1f\x61\x21\x51\x04\x51" }  },
                   57974:       /* --- pixel bitmap for bbold160 char#111 o --- */
                   57975:       { 111,23566,                      /* character number, location */
                   57976:          10, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   57977:           {  9,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57978:             "\x38\x9c\x29\x4a\x98\x30\x61\x42\x45\xce\x70\x00" }  },
                   57979:       /* --- pixel bitmap for bbold160 char#112 p --- */
                   57980:       { 112,23823,                      /* character number, location */
                   57981:          10, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   57982:           { 12,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57983:             "\xef\x91\x61\x09\x94\x80\x09\x98\x80\x09\x98\x40\x19"
                   57984:             "\x96\x1e\x09\x90\x00\x09\xf0\x00" }  },
                   57985:       /* --- pixel bitmap for bbold160 char#113 q --- */
                   57986:       { 113,24104,                      /* character number, location */
                   57987:          10, 0,   -4, 0,      /* topleft row,col, and botleft row,col */
                   57988:           {  9,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57989:             "\x78\x1d\x2b\x4c\x98\x30\x61\x42\x85\x8e\xf1\x02\x04"
                   57990:             "\x08\x10\x20" }  },
                   57991:       /* --- pixel bitmap for bbold160 char#114 r --- */
                   57992:       { 114,24373,                      /* character number, location */
                   57993:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   57994:           { 10,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   57995:             "\xef\x64\x94\x60\x02\x09\x24\x90\x40\x02\x09\x3c\x00" }  },
                   57996:       /* --- pixel bitmap for bbold160 char#115 s --- */
                   57997:       { 115,24624,                      /* character number, location */
                   57998:          10, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   57999:           {  7,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58000:             "\x9e\x54\x32\xe1\x01\x01\x83\x22\x0e" }  },
                   58001:       /* --- pixel bitmap for bbold160 char#116 t --- */
                   58002:       { 116,24867,                      /* character number, location */
                   58003:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   58004:           {  7,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58005:             "\x8f\x44\x22\x91\xc8\x27\x12\x89\x44\x22\x91\x54\x71"
                   58006:             "\x00" }  },
                   58007:       /* --- pixel bitmap for bbold160 char#117 u --- */
                   58008:       { 117,25136,                      /* character number, location */
                   58009:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   58010:           {  9,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58011:             "\x0f\x13\x26\x4c\x98\x30\x61\x42\xc5\xce\x71\x02" }  },
                   58012:       /* --- pixel bitmap for bbold160 char#118 v --- */
                   58013:       { 118,25399,                      /* character number, location */
                   58014:          10, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   58015:           {  9,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58016:             "\x0f\x13\x4a\x92\x44\x86\x0c\x0a\x14\x10\x20\x00" }  },
                   58017:       /* --- pixel bitmap for bbold160 char#119 w --- */
                   58018:       { 119,25650,                      /* character number, location */
                   58019:          10, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   58020:           { 13,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58021:             "\x0f\x30\x01\x4a\x20\x09\x24\x85\x48\x09\x29\xa1\x28"
                   58022:             "\x18\x03\x41\x00" }  },
                   58023:       /* --- pixel bitmap for bbold160 char#120 x --- */
                   58024:       { 120,25921,                      /* character number, location */
                   58025:          10, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   58026:           {  9,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58027:             "\xe1\x25\x51\x42\x82\x84\x04\x09\x29\x92\x1e\x02" }  },
                   58028:       /* --- pixel bitmap for bbold160 char#121 y --- */
                   58029:       { 121,26178,                      /* character number, location */
                   58030:          10, 0,   -4, 0,      /* topleft row,col, and botleft row,col */
                   58031:           {  9,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58032:             "\x0f\x13\x4a\x92\x44\x86\x0c\x0a\x14\x10\x20\x20\x40"
                   58033:             "\x60\x20\x00" }  },
                   58034:       /* --- pixel bitmap for bbold160 char#122 z --- */
                   58035:       { 122,26437,                      /* character number, location */
                   58036:          10, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   58037:           {  9,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58038:             "\xff\x21\x41\x42\x82\x84\x04\x09\x09\x12\xfe\x03" }  },
                   58039:       /* --- pixel bitmap for bbold160 char#123 \- --- */
                   58040:       { 123,34284,                      /* character number, location */
                   58041:           7, 0,    6, 0,      /* topleft row,col, and botleft row,col */
                   58042:           {  9,    1, 3, 2, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58043:             "\x09" }  },
                   58044:       /* --- pixel bitmap for bbold160 char#124 | --- */
                   58045:       { 124,33987,                      /* character number, location */
                   58046:          17, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   58047:           {  4,   23, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58048:             "\x04\x0f\xe1\x21\x0f\x51\x21\x04" }  },
1.1       albertel 58049:       /* --- pixel bitmap for bbold160 char#125 (noname) --- */
1.2       albertel 58050:       { 125,34496,                      /* character number, location */
                   58051:           7, 0,    6, 0,      /* topleft row,col, and botleft row,col */
                   58052:           { 17,    1, 3, 4, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58053:             "\x0e\x03" }  },
1.1       albertel 58054:       /* --- pixel bitmap for bbold160 char#126 (noname) --- */
1.2       albertel 58055:       { 126,34714,                      /* character number, location */
                   58056:          15, 1,    7, 1,      /* topleft row,col, and botleft row,col */
                   58057:           { 10,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58058:             "\x08\x12\x24\x48\x10\xc7\x25\x99\xa4\x61" }  },
                   58059:       /* --- pixel bitmap for bbold160 char#127 \omega --- */
                   58060:       { 127, 9537,                      /* character number, location */
                   58061:          10, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   58062:           { 13,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58063:             "\x08\xc2\x81\x29\xa0\x04\x98\x04\x93\x60\x12\x4c\x85"
                   58064:             "\xaa\x88\xe3\x00" }  },
1.1       albertel 58065:       /* --- trailer  --- */
1.2       albertel 58066:       { -99, -999,  0,0,0,0, { 0,0,0,0, (pixbyte *)"\0" }  }
1.1       albertel 58067:    } ;
                   58068: 
                   58069: 
1.2       albertel 58070: /* --- size=5 for .180gf ---
                   58071:  * mf '\mode=preview; mag=magstep(-14.65037297372839890542); input bbold10'
                   58072:  * --------------------------------------------------------------------- */
1.1       albertel 58073: /* --- fontdef for bbold180 --- */
                   58074: static	chardef  bbold180[] =
                   58075:    {
1.2       albertel 58076:       /* --- pixel bitmap for bbold180 char#0 \Gamma --- */
                   58077:       {   0,  246,                      /* character number, location */
                   58078:          17, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   58079:           { 12,   17, 3,11, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58080:             "\x0c\x0f\xe1\x21\x84\x80" }  },
                   58081:       /* --- pixel bitmap for bbold180 char#1 \Delta --- */
                   58082:       {   1,  528,                      /* character number, location */
                   58083:          17, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   58084:           { 13,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58085:             "\x40\x00\x08\x80\x02\x50\x00\x19\x20\x03\x64\x40\x12"
1.1       albertel 58086:             "\x48\x02\x49\x90\x10\x12\x22\x41\x24\x90\x04\x4a\x80"
                   58087:             "\xff\x1f" }  },
1.2       albertel 58088:       /* --- pixel bitmap for bbold180 char#2 \Theta --- */
                   58089:       {   2,  826,                      /* character number, location */
                   58090:          18, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   58091:           { 14,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58092:             "\xe0\x01\x86\xc1\x80\x30\x20\x0a\x90\x02\x94\x00\x26"
                   58093:             "\x80\x09\x60\xf2\x99\x00\x26\x80\x09\xa0\x02\xa4\x00"
                   58094:             "\x31\x20\x0c\x08\x86\x01\x1e\x00" }  },
                   58095:       /* --- pixel bitmap for bbold180 char#3 \Lambda --- */
                   58096:       {   3, 1141,                      /* character number, location */
                   58097:          17, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   58098:           { 13,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58099:             "\x40\x00\x08\x80\x02\x50\x00\x19\x20\x03\x64\x40\x12"
1.1       albertel 58100:             "\x48\x02\x49\x90\x10\x12\x22\x41\x24\x90\x04\x4a\x80"
                   58101:             "\x0f\x10" }  },
1.2       albertel 58102:       /* --- pixel bitmap for bbold180 char#4 \Xi --- */
                   58103:       {   4, 1438,                      /* character number, location */
                   58104:          17, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   58105:           { 13,   17, 3,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58106:             "\x0d\xf6\xd0\x45\x40\xf6\xdd" }  },
                   58107:       /* --- pixel bitmap for bbold180 char#5 \Pi --- */
                   58108:       {   5, 1663,                      /* character number, location */
                   58109:          17, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   58110:           { 12,   17, 3,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58111:             "\x0c\x0f\xe1\x21\x71\x04\x71" }  },
                   58112:       /* --- pixel bitmap for bbold180 char#6 \Sigma --- */
                   58113:       {   6, 1977,                      /* character number, location */
                   58114:          17, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   58115:           { 14,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58116:             "\xff\xbf\x04\x20\x01\x90\x00\x24\x00\x12\x00\x09\x40"
1.1       albertel 58117:             "\x02\x20\x01\x24\x00\x09\x20\x01\x24\x00\x09\x20\x01"
                   58118:             "\x48\x00\xff\x3f" }  },
1.2       albertel 58119:       /* --- pixel bitmap for bbold180 char#7 \Upsilon --- */
                   58120:       {   7, 2261,                      /* character number, location */
                   58121:          18, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   58122:           { 14,   18, 3,45, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58123:             "\x22\x62\x31\x21\x41\x21\x1f\x21\x41\x21\x41\xf3\x51"
                   58124:             "\x21\x50\x54\x50\xf6\x51\x21\x50\x54\x50" }  },
                   58125:       /* --- pixel bitmap for bbold180 char#8 \Phi --- */
                   58126:       {   8, 2561,                      /* character number, location */
                   58127:          17, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   58128:           { 14,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58129:             "\xe0\x01\x48\x00\x12\xc0\x0c\x2c\x8d\x48\x24\x12\x85"
1.1       albertel 58130:             "\x84\x21\x61\x48\x28\x12\x89\x44\x2c\x0d\xcc\x00\x12"
                   58131:             "\x80\x04\xe0\x01" }  },
1.2       albertel 58132:       /* --- pixel bitmap for bbold180 char#9 \Psi --- */
                   58133:       {   9, 2877,                      /* character number, location */
                   58134:          17, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   58135:           { 14,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58136:             "\xe0\x01\x48\x00\x12\x8c\xc4\x22\x11\x49\x42\x92\x90"
1.1       albertel 58137:             "\x24\x24\x09\x49\x42\x92\xa0\x14\x30\x03\x48\x00\x12"
                   58138:             "\x80\x04\xe0\x01" }  },
1.2       albertel 58139:       /* --- pixel bitmap for bbold180 char#10 \Omega --- */
                   58140:       {  10, 3195,                      /* character number, location */
                   58141:          18, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   58142:           { 14,   18, 3,52, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58143:             "\x54\x82\x42\x30\xf1\x22\x71\x20\xf1\x11\x11\x81\x1f"
                   58144:             "\x61\x21\x91\xf1\x11\x11\x81\x10\xf1\x22\x71\x24\x64" }  },
                   58145:       /* --- pixel bitmap for bbold180 char#11 \alpha --- */
                   58146:       {  11, 3505,                      /* character number, location */
                   58147:          12, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
                   58148:           { 12,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58149:             "\x78\xc0\x88\x8a\xa8\x88\x09\x99\x90\x09\x95\x50\x09"
                   58150:             "\xa5\x30\x0a\xc2\xd8\x78\x00" }  },
                   58151:       /* --- pixel bitmap for bbold180 char#12 \beta --- */
                   58152:       {  12, 3806,                      /* character number, location */
                   58153:          18, 1,   -5, 1,      /* topleft row,col, and botleft row,col */
                   58154:           { 11,   23, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58155:             "\xe0\xc1\x10\x03\x15\xa8\xc0\x04\x26\x28\x31\x09\x4a"
                   58156:             "\x50\x02\x13\x98\xc0\x04\x26\x30\x81\x09\xca\x50\x7a"
                   58157:             "\x12\x90\x80\x04\x3c\x00" }  },
                   58158:       /* --- pixel bitmap for bbold180 char#13 \gamma --- */
                   58159:       {  13, 4144,                      /* character number, location */
                   58160:          11, 0,   -6, 0,      /* topleft row,col, and botleft row,col */
                   58161:           { 10,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58162:             "\x87\xe3\x01\x03\x12\x8c\x28\xa4\x50\x82\x09\x26\x98"
                   58163:             "\x60\x82\x09\x2a\xa4\x10\x23\x78\x00" }  },
                   58164:       /* --- pixel bitmap for bbold180 char#14 \delta --- */
                   58165:       {  14, 4444,                      /* character number, location */
                   58166:          18, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
                   58167:           { 10,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58168:             "\x78\x18\x26\x50\x80\x01\x04\x60\x00\x0e\xcc\x28\x94"
                   58169:             "\x60\x82\x09\x26\x98\xa0\x42\x0a\x31\x82\x07" }  },
                   58170:       /* --- pixel bitmap for bbold180 char#15 \epsilon --- */
                   58171:       {  15, 4744,                      /* character number, location */
                   58172:          12, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
                   58173:           { 10,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58174:             "\x78\x30\xa6\x90\x82\x09\xe4\x90\x40\x02\x09\x28\xa8"
                   58175:             "\x10\x63\x78\x00" }  },
                   58176:       /* --- pixel bitmap for bbold180 char#16 \zeta --- */
                   58177:       {  16, 5017,                      /* character number, location */
                   58178:          17, 1,   -5, 1,      /* topleft row,col, and botleft row,col */
                   58179:           {  8,   22, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58180:             "\x80\x60\x10\x08\x0c\x0c\x0a\x0a\x09\x09\x09\x09\x09"
1.1       albertel 58181:             "\x09\x0a\x0c\x18\x60\x80\x80\x80\x60" }  },
1.2       albertel 58182:       /* --- pixel bitmap for bbold180 char#17 \eta --- */
                   58183:       {  17, 5295,                      /* character number, location */
                   58184:          12, 1,   -5, 1,      /* topleft row,col, and botleft row,col */
                   58185:           { 11,   17, 3,28, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58186:             "\x54\x25\x41\x11\x21\x51\x1f\x71\x21\x61\x04\x61\xf4"
                   58187:             "\xa1" }  },
                   58188:       /* --- pixel bitmap for bbold180 char#18 \theta --- */
                   58189:       {  18, 5587,                      /* character number, location */
                   58190:          18, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
                   58191:           { 10,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58192:             "\x78\x30\xa2\x90\x42\x0a\x25\x98\x60\x82\x09\xe6\x9f"
                   58193:             "\x60\x82\x09\x26\xa8\x90\x42\x0a\x31\x82\x07" }  },
                   58194:       /* --- pixel bitmap for bbold180 char#19 \iota --- */
                   58195:       {  19, 5904,                      /* character number, location */
                   58196:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   58197:           {  4,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58198:             "\x9f\x99\x99\x99\xa9\x0c" }  },
                   58199:       /* --- pixel bitmap for bbold180 char#20 \kappa --- */
                   58200:       {  20, 6162,                      /* character number, location */
                   58201:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   58202:           { 11,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58203:             "\x0f\x4c\x58\x32\x72\x90\x81\x14\x24\x21\x01\x89\x48"
1.1       albertel 58204:             "\xc8\x83\x01" }  },
1.2       albertel 58205:       /* --- pixel bitmap for bbold180 char#21 \lambda --- */
                   58206:       {  21, 6437,                      /* character number, location */
                   58207:          17, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   58208:           { 10,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58209:             "\x0f\x24\x20\x81\x04\x12\x90\x40\x02\x12\x48\x20\x81"
1.1       albertel 58210:             "\x09\x26\x94\x90\x24\x92\x90\xc1\x03" }  },
1.2       albertel 58211:       /* --- pixel bitmap for bbold180 char#22 \mu --- */
                   58212:       {  22, 6726,                      /* character number, location */
                   58213:          11, 1,   -5, 1,      /* topleft row,col, and botleft row,col */
                   58214:           { 11,   16, 3,35, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58215:             "\x04\x61\x0f\x71\x21\x61\x01\x21\x53\x22\x43\x21\x14"
                   58216:             "\x2f\x21\x21\x74\x72" }  },
                   58217:       /* --- pixel bitmap for bbold180 char#23 \nu --- */
                   58218:       {  23, 7025,                      /* character number, location */
                   58219:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   58220:           { 10,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58221:             "\x0f\x26\x98\x60\x82\x09\x25\x94\x48\x12\x29\x64\x70"
                   58222:             "\x00" }  },
                   58223:       /* --- pixel bitmap for bbold180 char#24 \xi --- */
                   58224:       {  24, 7298,                      /* character number, location */
                   58225:          17, 1,   -5, 1,      /* topleft row,col, and botleft row,col */
                   58226:           {  8,   22, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58227:             "\xf8\x0e\x09\x09\x09\x0e\x38\x0c\x0a\x09\x09\x09\x09"
1.1       albertel 58228:             "\x09\x0a\x0c\x18\x60\x80\x80\x80\x60" }  },
1.2       albertel 58229:       /* --- pixel bitmap for bbold180 char#25 \pi --- */
                   58230:       {  25, 7577,                      /* character number, location */
                   58231:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   58232:           { 11,   11, 3,17, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58233:             "\x0b\xf8\x21\x21\x21\x20\x24\x21\x22" }  },
                   58234:       /* --- pixel bitmap for bbold180 char#26 \rho --- */
                   58235:       {  26, 7853,                      /* character number, location */
                   58236:          12, 1,   -5, 1,      /* topleft row,col, and botleft row,col */
                   58237:           { 10,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58238:             "\x78\x30\xa2\x90\x42\x09\x26\x98\x60\x82\x09\x26\x94"
                   58239:             "\x50\x22\x79\x24\x90\x40\x02\x0f\x00" }  },
                   58240:       /* --- pixel bitmap for bbold180 char#27 \sigma --- */
                   58241:       {  27, 8155,                      /* character number, location */
                   58242:          11, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
                   58243:           { 12,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58244:             "\xf8\xcf\x08\x0a\x91\x20\x09\x92\x20\x09\x92\x20\x0a"
                   58245:             "\xa1\x10\x8c\x80\x07" }  },
                   58246:       /* --- pixel bitmap for bbold180 char#28 \tau --- */
                   58247:       {  28, 8431,                      /* character number, location */
                   58248:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   58249:           { 10,   11, 3,17, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58250:             "\x0a\xf7\x31\x21\x30\x41\x11\x82\x31" }  },
                   58251:       /* --- pixel bitmap for bbold180 char#29 \upsilon --- */
                   58252:       {  29, 8691,                      /* character number, location */
                   58253:          11, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   58254:           { 10,   12, 3,25, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58255:             "\x04\x51\x0f\x71\x21\x51\x11\x11\x41\x32\x31\x54\x31" }  },
                   58256:       /* --- pixel bitmap for bbold180 char#30 \phi --- */
                   58257:       {  30, 8971,                      /* character number, location */
                   58258:          17, 0,   -5, 0,      /* topleft row,col, and botleft row,col */
                   58259:           { 10,   22, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58260:             "\x78\x20\x81\x04\x12\x48\x20\x81\x04\x33\x4a\x25\x99"
1.1       albertel 58261:             "\x64\x92\x49\x26\xa9\x14\x33\x48\x20\x81\x04\x12\x48"
                   58262:             "\xe0\x01" }  },
1.2       albertel 58263:       /* --- pixel bitmap for bbold180 char#31 \chi --- */
                   58264:       {  31, 9299,                      /* character number, location */
                   58265:          11, 0,   -5, 0,      /* topleft row,col, and botleft row,col */
                   58266:           { 10,   16, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58267:             "\xc1\x0b\x29\x12\x49\x94\x60\x02\x09\x12\x48\x90\x40"
1.1       albertel 58268:             "\x06\x29\x92\x48\x94\xd0\x83" }  },
1.2       albertel 58269:       /* --- pixel bitmap for bbold180 char#32 \psi --- */
                   58270:       {  32, 9595,                      /* character number, location */
                   58271:          17, 1,   -5, 1,      /* topleft row,col, and botleft row,col */
                   58272:           { 10,   22, 3,45, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58273:             "\x34\x30\xf4\x31\x21\x3f\x71\x21\x21\x21\x11\x11\x21"
                   58274:             "\x11\x23\x23\x10\xf4\x31\x21\x30\x34\x30" }  },
                   58275:       /* --- pixel bitmap for bbold180 char#33 ! --- */
                   58276:       {  33,27898,                      /* character number, location */
                   58277:          17, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   58278:           {  6,   18, 3,25, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58279:             "\x14\x10\xf8\x11\x21\x10\x14\x84\x1f\x31\x41\x14\x11" }  },
1.1       albertel 58280:       /* --- pixel bitmap for bbold180 char#34 (noname) --- */
1.2       albertel 58281:       {  34,36498,                      /* character number, location */
                   58282:          18, 0,    8, 0,      /* topleft row,col, and botleft row,col */
                   58283:           { 13,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58284:             "\x1e\x2f\x14\x86\xc2\x50\x18\x0a\x7d\x3e\x04\x42\x20"
                   58285:             "\x0c\x46\x20\x00" }  },
                   58286:       /* --- pixel bitmap for bbold180 char#35 # --- */
                   58287:       {  35,28174,                      /* character number, location */
                   58288:          17, 2,   -5, 2,      /* topleft row,col, and botleft row,col */
                   58289:           { 16,   22, 3,45, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58290:             "\x44\x41\x30\xf5\x41\x21\x41\x35\x29\xf4\x41\x21\x41"
                   58291:             "\x35\x29\xf6\x41\x21\x41\x30\x44\x41\x30" }  },
                   58292:       /* --- pixel bitmap for bbold180 char#36 $ --- */
                   58293:       {  36,28510,                      /* character number, location */
                   58294:          19, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   58295:           { 12,   21, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58296:             "\xf0\x00\x09\x98\x43\xc9\x92\x10\x09\x91\x10\x09\x92"
1.1       albertel 58297:             "\x40\x09\x90\x00\x29\x90\x04\x89\x90\x08\x89\x90\x34"
                   58298:             "\x29\x9c\x01\x09\xf0\x00" }  },
1.2       albertel 58299:       /* --- pixel bitmap for bbold180 char#37 % --- */
                   58300:       {  37,28836,                      /* character number, location */
                   58301:          20, 0,   -9, 0,      /* topleft row,col, and botleft row,col */
                   58302:           { 14,   29, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58303:             "\x1e\x40\x88\x17\x22\x85\x24\x21\x89\x47\x02\x48\x00"
                   58304:             "\x12\x80\x04\x20\x01\x24\x00\x09\x40\x02\x48\x00\x12"
                   58305:             "\x80\x04\x90\x00\x24\x00\x09\x20\x01\x48\x00\x12\x80"
                   58306:             "\x04\x90\x78\x24\x21\x49\x28\x11\x7a\x84\x00\x1e" }  },
                   58307:       /* --- pixel bitmap for bbold180 char#38 & --- */
                   58308:       {  38,29190,                      /* character number, location */
                   58309:          18, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   58310:           { 17,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58311:             "\xc0\x00\x40\x02\x40\x08\x80\x10\x00\x12\x00\x24\x00"
                   58312:             "\x28\x00\x30\x00\x58\x00\x18\x01\x28\x02\x48\x08\x90"
                   58313:             "\x10\x22\x41\x44\x82\x84\x04\x86\x0a\x0c\x19\x26\xe2"
                   58314:             "\x83\x03" }  },
                   58315:       /* --- pixel bitmap for bbold180 char#39 ' --- */
                   58316:       {  39,29501,                      /* character number, location */
                   58317:          18, 0,    8, 0,      /* topleft row,col, and botleft row,col */
                   58318:           {  6,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58319:             "\x5e\x18\x86\xa1\x0f\x21\x8c\x00" }  },
                   58320:       /* --- pixel bitmap for bbold180 char#40 ( --- */
                   58321:       {  40,29742,                      /* character number, location */
                   58322:          19, 2,   -6, 2,      /* topleft row,col, and botleft row,col */
                   58323:           {  6,   25, 3,32, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58324:             "\x33\x22\x20\xf2\x11\x11\x2f\xe1\x21\x20\xf2\x11\x11"
                   58325:             "\x20\x22\x53" }  },
                   58326:       /* --- pixel bitmap for bbold180 char#41 ) --- */
                   58327:       {  41,30048,                      /* character number, location */
                   58328:          19, 0,   -6, 0,      /* topleft row,col, and botleft row,col */
                   58329:           {  6,   25, 3,33, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58330:             "\x03\x52\x20\xf2\x21\x11\x10\xfe\x21\x21\xf2\x21\x11"
                   58331:             "\x10\x22\x23\x31" }  },
                   58332:       /* --- pixel bitmap for bbold180 char#42 * --- */
                   58333:       {  42,30345,                      /* character number, location */
                   58334:          15, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   58335:           { 14,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58336:             "\xe0\x01\x48\x00\x12\x80\x04\x21\xa1\x49\x86\x73\x80"
1.1       albertel 58337:             "\x04\x20\x01\x48\x80\x73\x98\x64\x21\x21\x48\x00\x12"
                   58338:             "\x80\x04\xe0\x01" }  },
1.2       albertel 58339:       /* --- pixel bitmap for bbold180 char#43 + --- */
                   58340:       {  43,30635,                      /* character number, location */
                   58341:          15, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   58342:           { 17,   17, 3,25, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58343:             "\x74\x60\xf6\x71\x21\x68\x27\xf6\x71\x21\x60\x74\x62" }  },
                   58344:       /* --- pixel bitmap for bbold180 char#44 , --- */
                   58345:       {  44,30905,                      /* character number, location */
                   58346:           5, 0,   -5, 0,      /* topleft row,col, and botleft row,col */
                   58347:           {  6,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58348:             "\x5e\x18\x86\xa1\x0f\x21\x8c\x00" }  },
                   58349:       /* --- pixel bitmap for bbold180 char#45 - --- */
                   58350:       {  45,31140,                      /* character number, location */
                   58351:           6, 0,    5, 0,      /* topleft row,col, and botleft row,col */
                   58352:           {  8,    1, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58353:             "\xff" }  },
                   58354:       /* --- pixel bitmap for bbold180 char#46 . --- */
                   58355:       {  46,31352,                      /* character number, location */
                   58356:           5, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
                   58357:           {  6,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58358:             "\x5e\x18\x86\xa1\x07" }  },
                   58359:       /* --- pixel bitmap for bbold180 char#47 / --- */
                   58360:       {  47,31588,                      /* character number, location */
                   58361:          19, 0,   -6, 0,      /* topleft row,col, and botleft row,col */
                   58362:           { 12,   25, 3,67, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58363:             "\x84\x81\x21\xf2\x71\x21\x10\xf2\x61\x21\x20\xf2\x51"
                   58364:             "\x21\x30\xf2\x41\x21\x40\xf2\x31\x21\x50\xf2\x21\x21"
                   58365:             "\x60\xf2\x11\x21\x71\x21\x84\x80" }  },
                   58366:       /* --- pixel bitmap for bbold180 char#48 0 --- */
                   58367:       {  48,10226,                      /* character number, location */
                   58368:          17, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   58369:           { 11,   18, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58370:             "\x70\x60\x0c\x43\x14\xa4\xa0\x04\x26\x30\x81\x09\x4c"
                   58371:             "\x60\x02\x13\x98\x40\x05\x29\x88\x21\x8c\x81\x03" }  },
                   58372:       /* --- pixel bitmap for bbold180 char#49 1 --- */
                   58373:       {  49,10527,                      /* character number, location */
                   58374:          16, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   58375:           { 12,   16, 3,26, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58376:             "\x62\x82\x11\x63\x21\x42\x21\x21\x40\xfa\x41\x21\x4c" }  },
                   58377:       /* --- pixel bitmap for bbold180 char#50 2 --- */
                   58378:       {  50,10798,                      /* character number, location */
                   58379:          17, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   58380:           { 11,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58381:             "\xf8\x20\x8c\xa0\x02\x19\x48\x40\x02\x12\x50\x80\x01"
                   58382:             "\x04\x18\x30\x40\x00\x01\x04\x20\x00\xff\x07" }  },
                   58383:       /* --- pixel bitmap for bbold180 char#51 3 --- */
                   58384:       {  51,11061,                      /* character number, location */
                   58385:          17, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   58386:           { 11,   18, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58387:             "\xf8\x20\x8c\xa0\x02\x19\x48\x40\x02\x12\x70\xe0\x00"
                   58388:             "\x0c\xa0\x00\x09\xc8\x40\x06\x52\x50\x84\xc1\x07" }  },
                   58389:       /* --- pixel bitmap for bbold180 char#52 4 --- */
                   58390:       {  52,11344,                      /* character number, location */
                   58391:          16, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   58392:           { 11,   16, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58393:             "\x00\x01\x0c\x60\x80\x02\x12\x98\xc0\x04\x25\x24\x11"
1.1       albertel 58394:             "\x89\x48\x7e\x0e\x12\x90\x80\x04\x3c" }  },
1.2       albertel 58395:       /* --- pixel bitmap for bbold180 char#53 5 --- */
                   58396:       {  53,11617,                      /* character number, location */
                   58397:          16, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   58398:           { 11,   17, 3,41, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58399:             "\x0b\x0f\x21\x21\x78\xb1\x20\xf1\x91\x10\xf3\xa1\x01"
                   58400:             "\x92\x81\x21\x71\x31\x42\x54\x40" }  },
                   58401:       /* --- pixel bitmap for bbold180 char#54 6 --- */
                   58402:       {  54,11874,                      /* character number, location */
                   58403:          17, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   58404:           { 11,   18, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58405:             "\xf8\x20\x88\x80\x02\x18\xc0\x7c\x34\x64\x41\x0b\x4a"
                   58406:             "\x60\x02\x13\x98\xc0\x04\x2a\x48\x41\x8c\x81\x03" }  },
                   58407:       /* --- pixel bitmap for bbold180 char#55 7 --- */
                   58408:       {  55,12171,                      /* character number, location */
                   58409:          16, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   58410:           { 11,   16, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58411:             "\xff\x07\x24\x90\x80\x04\x12\x90\x40\x02\x12\x48\x40"
1.1       albertel 58412:             "\x02\x09\x48\x20\x01\x09\x24\xe0\x01" }  },
1.2       albertel 58413:       /* --- pixel bitmap for bbold180 char#56 8 --- */
                   58414:       {  56,12440,                      /* character number, location */
                   58415:          17, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   58416:           { 11,   18, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58417:             "\xf8\x60\x88\x82\x12\x98\xc0\x04\x26\xd0\x61\xf8\x60"
                   58418:             "\x88\x82\x12\x98\xc0\x04\x26\x50\x41\x0c\xc1\x07" }  },
                   58419:       /* --- pixel bitmap for bbold180 char#57 9 --- */
                   58420:       {  57,12737,                      /* character number, location */
                   58421:          17, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   58422:           { 11,   18, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58423:             "\x70\x60\x8c\x82\x14\x94\xc0\x04\x26\x30\x81\x09\x54"
                   58424:             "\xb0\x82\x19\x8a\xcf\x00\x06\x50\x40\x04\xc1\x07" }  },
                   58425:       /* --- pixel bitmap for bbold180 char#58 : --- */
                   58426:       {  58,31890,                      /* character number, location */
                   58427:          12, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
                   58428:           {  6,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58429:             "\x5e\x18\x86\xa1\x07\x78\x61\x18\x86\x1e" }  },
                   58430:       /* --- pixel bitmap for bbold180 char#59 ; --- */
                   58431:       {  59,32142,                      /* character number, location */
                   58432:          12, 0,   -5, 0,      /* topleft row,col, and botleft row,col */
                   58433:           {  6,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58434:             "\x5e\x18\x86\xa1\x07\x78\x61\x18\x86\x3e\x84\x30\x02" }  },
                   58435:       /* --- pixel bitmap for bbold180 char#60 < --- */
                   58436:       {  60,32407,                      /* character number, location */
                   58437:          13, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   58438:           { 17,   13, 3,40, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58439:             "\xe0\x12\xc3\xc2\xc3\xb3\xc3\xc2\x31\xc2\x32\xc2\x32"
                   58440:             "\xc2\x32\xc2\x32\xc2\x32\xc6" }  },
                   58441:       /* --- pixel bitmap for bbold180 char#61 \cdot --- */
                   58442:       {  61,32653,                      /* character number, location */
                   58443:           9, 0,    3, 0,      /* topleft row,col, and botleft row,col */
                   58444:           {  6,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58445:             "\x5e\x18\x86\xa1\x07" }  },
                   58446:       /* --- pixel bitmap for bbold180 char#62 > --- */
                   58447:       {  62,32891,                      /* character number, location */
                   58448:          13, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   58449:           { 17,   13, 3,49, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58450:             "\x02\xe0\x32\xe0\x33\xe0\x33\xe0\x32\xe0\x33\xd1\x32"
                   58451:             "\x92\x32\x82\x32\x82\x32\x82\x32\x82\x32\x96\xb1" }  },
                   58452:       /* --- pixel bitmap for bbold180 char#63 ? --- */
                   58453:       {  63,33143,                      /* character number, location */
                   58454:          18, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   58455:           { 12,   19, 3,51, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58456:             "\x45\x52\x51\x31\x81\x1f\x11\xa1\xb1\xa1\xa2\x73\x81"
                   58457:             "\x11\x81\x21\x84\xe0\x64\x40\xf3\x31\x41\x30\x44\x41" }  },
                   58458:       /* --- pixel bitmap for bbold180 char#64 @ --- */
                   58459:       {  64,33409,                      /* character number, location */
                   58460:          18, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   58461:           { 12,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58462:             "\xf0\xc0\x10\x0c\xa2\x40\x0a\x94\x40\x09\x98\xf8\x49"
                   58463:             "\x98\x84\x49\x98\x78\x09\x90\x00\x0a\xa4\x40\x0c\xc2"
                   58464:             "\x10\xf0\x00" }  },
                   58465:       /* --- pixel bitmap for bbold180 char#65 A --- */
                   58466:       {  65,13034,                      /* character number, location */
                   58467:          17, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   58468:           { 14,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58469:             "\x80\x00\x30\x00\x0c\x80\x04\x20\x01\xa4\x00\x29\x40"
1.1       albertel 58470:             "\x0a\x48\x04\x12\x41\x82\x90\x20\xe4\x8f\x04\x24\x01"
                   58471:             "\x25\x80\x0f\x20" }  },
1.2       albertel 58472:       /* --- pixel bitmap for bbold180 char#66 B --- */
                   58473:       {  66,13325,                      /* character number, location */
                   58474:          17, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   58475:           { 12,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58476:             "\xff\x91\x20\x09\x94\x80\x09\x98\x80\x09\x94\x20\xf9"
1.1       albertel 58477:             "\x91\x20\x09\x94\x80\x09\x98\x80\x09\x94\x20\xff\x01" }  },
1.2       albertel 58478:       /* --- pixel bitmap for bbold180 char#67 C --- */
                   58479:       {  67,13626,                      /* character number, location */
                   58480:          18, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   58481:           { 14,   19, 3,57, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58482:             "\x55\x72\x51\x52\x72\x32\x81\x21\x11\x91\x11\x11\xaf"
                   58483:             "\x61\x21\xa0\x11\x11\xb1\x11\x91\x22\x81\x32\x72\x42"
                   58484:             "\x51\x85\x41" }  },
                   58485:       /* --- pixel bitmap for bbold180 char#68 D --- */
                   58486:       {  68,13911,                      /* character number, location */
                   58487:          17, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   58488:           { 14,   17, 3,53, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58489:             "\x09\x51\x21\x52\x31\x21\x71\x2f\x11\x21\x81\x1f\x61"
                   58490:             "\x21\x91\x0f\x11\x21\x81\x11\x21\x71\x21\x21\x52\x39"
                   58491:             "\x51" }  },
                   58492:       /* --- pixel bitmap for bbold180 char#69 E --- */
                   58493:       {  69,14214,                      /* character number, location */
                   58494:          17, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   58495:           { 12,   17, 3,20, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58496:             "\x0c\x0f\x61\x21\x81\x24\x5f\x61\x21\x8c" }  },
                   58497:       /* --- pixel bitmap for bbold180 char#70 F --- */
                   58498:       {  70,14487,                      /* character number, location */
                   58499:          17, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   58500:           { 12,   17, 3,21, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58501:             "\x0c\x0f\x61\x21\x81\x24\x5f\x61\x21\x84\x81" }  },
                   58502:       /* --- pixel bitmap for bbold180 char#71 G --- */
                   58503:       {  71,14760,                      /* character number, location */
                   58504:          18, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   58505:           { 14,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58506:             "\xe0\x03\x06\xc1\x80\x31\x40\x0a\xa0\x02\x90\x00\x24"
                   58507:             "\x00\x09\x40\x02\x9f\x00\x26\x80\x09\xa0\x02\xa8\x00"
                   58508:             "\x32\x40\x0c\x18\x06\x01\x3e\x00" }  },
                   58509:       /* --- pixel bitmap for bbold180 char#72 H --- */
                   58510:       {  72,15055,                      /* character number, location */
                   58511:          17, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   58512:           { 14,   17, 3,28, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58513:             "\x04\x91\x0f\x61\x21\x91\x01\x2b\x0f\x61\x21\x91\x04"
                   58514:             "\x91" }  },
                   58515:       /* --- pixel bitmap for bbold180 char#73 I --- */
                   58516:       {  73,15360,                      /* character number, location */
                   58517:          17, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   58518:           {  4,   17, 3,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58519:             "\x04\x0f\xe1\x21\x04" }  },
                   58520:       /* --- pixel bitmap for bbold180 char#74 J --- */
                   58521:       {  74,15633,                      /* character number, location */
                   58522:          17, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   58523:           { 12,   18, 3,29, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58524:             "\x84\xfb\x81\x21\x0f\x11\x71\x11\x10\x11\x62\x42\x41"
                   58525:             "\x74\x41" }  },
                   58526:       /* --- pixel bitmap for bbold180 char#75 K --- */
                   58527:       {  75,15914,                      /* character number, location */
                   58528:          17, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   58529:           { 12,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58530:             "\x0f\x98\x40\x09\x94\x20\x09\x91\x10\x89\x90\x04\x69"
1.1       albertel 58531:             "\x90\x06\x99\x90\x10\x09\x91\x20\x09\x94\x40\x0f\x08" }  },
1.2       albertel 58532:       /* --- pixel bitmap for bbold180 char#76 L --- */
                   58533:       {  76,16221,                      /* character number, location */
                   58534:          17, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   58535:           { 12,   17, 3,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58536:             "\x04\x8f\xe1\x21\x8c" }  },
                   58537:       /* --- pixel bitmap for bbold180 char#77 M --- */
                   58538:       {  77,16494,                      /* character number, location */
                   58539:          17, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   58540:           { 13,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58541:             "\x01\x70\x00\x0f\xd0\x02\x9a\x20\x33\x62\x26\x4c\x85"
1.1       albertel 58542:             "\x49\x30\x01\x26\xc0\x04\x98\x00\x13\x60\x02\x4c\x80"
                   58543:             "\x0f\x10" }  },
1.2       albertel 58544:       /* --- pixel bitmap for bbold180 char#78 N --- */
                   58545:       {  78,16813,                      /* character number, location */
                   58546:          17, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   58547:           { 14,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58548:             "\x01\xe0\x00\x58\x00\x16\x80\x09\x60\x06\x98\x02\x26"
1.1       albertel 58549:             "\x81\x49\x60\x22\x98\x10\x26\x88\x09\x64\x02\x9a\x80"
                   58550:             "\x26\xc0\x0f\x20" }  },
1.2       albertel 58551:       /* --- pixel bitmap for bbold180 char#79 O --- */
                   58552:       {  79,17136,                      /* character number, location */
                   58553:          18, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   58554:           { 14,   19, 3,57, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58555:             "\x54\x82\x42\x30\xf1\x22\x71\x20\xf1\x11\x11\x81\x1f"
                   58556:             "\x61\x21\x91\xf1\x11\x11\x81\x10\xf1\x22\x71\x20\x32"
                   58557:             "\x42\x84\x51" }  },
                   58558:       /* --- pixel bitmap for bbold180 char#80 P --- */
                   58559:       {  80,17439,                      /* character number, location */
                   58560:          17, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   58561:           { 12,   17, 3,47, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58562:             "\x09\x31\x21\x51\x21\x21\x61\x1f\x21\x21\x71\x01\x21"
                   58563:             "\x61\x11\x21\x51\x21\x26\x3f\x61\x21\x84\x81" }  },
                   58564:       /* --- pixel bitmap for bbold180 char#81 Q --- */
                   58565:       {  81,17726,                      /* character number, location */
                   58566:          18, 1,   -5, 1,      /* topleft row,col, and botleft row,col */
                   58567:           { 14,   23, 3,76, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58568:             "\x54\x82\x42\x30\xf1\x22\x71\x20\xf1\x11\x11\x81\x1f"
                   58569:             "\x61\x21\x91\xf1\x11\x11\x31\x41\x10\x22\x41\x21\x42"
                   58570:             "\x51\x11\x52\x42\x84\x11\xe1\x20\xf1\xc1\x10\xd1" }  },
                   58571:       /* --- pixel bitmap for bbold180 char#82 R --- */
                   58572:       {  82,18047,                      /* character number, location */
                   58573:          17, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   58574:           { 12,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58575:             "\xff\x91\x20\x09\x94\x80\x09\x98\x80\x09\x94\x20\xf9"
1.1       albertel 58576:             "\x91\x04\x89\x90\x10\x09\x91\x20\x09\x94\x40\x0f\x08" }  },
1.2       albertel 58577:       /* --- pixel bitmap for bbold180 char#83 S --- */
                   58578:       {  83,18350,                      /* character number, location */
                   58579:          18, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   58580:           { 12,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58581:             "\xf0\xc0\x30\x0a\x94\x80\x09\x98\x00\x09\xa0\x00\x0c"
                   58582:             "\x80\x0f\x00\x02\x40\x00\x08\x80\x01\x18\x80\x02\xc4"
                   58583:             "\x30\xf0\x00" }  },
                   58584:       /* --- pixel bitmap for bbold180 char#84 T --- */
                   58585:       {  84,18625,                      /* character number, location */
                   58586:          17, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   58587:           { 14,   17, 3,13, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58588:             "\x0e\xfe\x51\x21\x50\x54\x5f" }  },
                   58589:       /* --- pixel bitmap for bbold180 char#85 U --- */
                   58590:       {  85,18898,                      /* character number, location */
                   58591:          17, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   58592:           { 14,   18, 3,37, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58593:             "\x04\x91\x0f\xa1\x21\x91\xf1\x11\x11\x81\x10\xf1\x22"
                   58594:             "\x71\x20\x32\x42\x84\x51" }  },
                   58595:       /* --- pixel bitmap for bbold180 char#86 V --- */
                   58596:       {  86,19203,                      /* character number, location */
                   58597:          17, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   58598:           { 13,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58599:             "\x0f\x30\x01\x4a\x20\x09\x24\x41\x48\x08\x09\x41\x12"
1.1       albertel 58600:             "\x48\x02\x49\x40\x06\xc8\x00\x19\x40\x01\x28\x00\x02"
                   58601:             "\x40\x00" }  },
1.2       albertel 58602:       /* --- pixel bitmap for bbold180 char#87 W --- */
                   58603:       {  87,19494,                      /* character number, location */
                   58604:          17, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   58605:           { 19,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58606:             "\x0f\x00\x4c\x00\xa0\x04\x80\x24\x00\x24\x01\x20\x09"
1.1       albertel 58607:             "\x00\x91\x00\x84\x04\x20\x24\x02\x41\x2a\x04\x52\x21"
                   58608:             "\x90\x11\x81\x8c\x08\x28\x28\x40\x41\x01\x06\x0c\x20"
                   58609:             "\x40\x00" }  },
1.2       albertel 58610:       /* --- pixel bitmap for bbold180 char#88 X --- */
                   58611:       {  88,19817,                      /* character number, location */
                   58612:          17, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   58613:           { 14,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58614:             "\x01\xbc\x80\x44\x20\x11\x24\x88\x04\x24\x01\x26\x00"
1.1       albertel 58615:             "\x09\x20\x01\x24\x00\x19\x20\x09\x24\x04\x09\x22\x81"
                   58616:             "\x48\x40\x0f\x20" }  },
1.2       albertel 58617:       /* --- pixel bitmap for bbold180 char#89 Y --- */
                   58618:       {  89,20114,                      /* character number, location */
                   58619:          17, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   58620:           { 14,   17, 3,55, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58621:             "\x04\x91\xf1\x11\x21\x71\x10\x21\x21\x51\x41\x21\x41"
                   58622:             "\x61\x21\x31\x30\xf1\x41\x21\x11\x40\xf7\x51\x21\x50"
                   58623:             "\x54\x51" }  },
                   58624:       /* --- pixel bitmap for bbold180 char#90 Z --- */
                   58625:       {  90,20403,                      /* character number, location */
                   58626:          17, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   58627:           { 14,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58628:             "\xff\x3f\x80\x04\x20\x01\x24\x80\x04\x20\x01\x24\x00"
1.1       albertel 58629:             "\x09\x20\x01\x24\x00\x09\x20\x01\x24\x00\x09\x20\x01"
                   58630:             "\x48\x00\xff\x3f" }  },
1.2       albertel 58631:       /* --- pixel bitmap for bbold180 char#91 [ --- */
                   58632:       {  91,33729,                      /* character number, location */
                   58633:          19, 2,   -6, 2,      /* topleft row,col, and botleft row,col */
                   58634:           {  6,   25, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58635:             "\x06\x0f\xe1\x21\x2f\x71\x21\x26" }  },
                   58636:       /* --- pixel bitmap for bbold180 char#92 \\ --- */
                   58637:       {  92,34039,                      /* character number, location */
                   58638:          19, 0,   -6, 0,      /* topleft row,col, and botleft row,col */
                   58639:           { 12,   25, 3,70, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58640:             "\x04\x81\x21\x80\xf2\x11\x21\x70\xf2\x21\x21\x60\xf2"
                   58641:             "\x31\x21\x50\xf2\x41\x21\x40\xf2\x51\x21\x30\xf2\x61"
                   58642:             "\x21\x20\xf2\x71\x21\x10\x81\x21\x84" }  },
                   58643:       /* --- pixel bitmap for bbold180 char#93 ] --- */
                   58644:       {  93,34356,                      /* character number, location */
                   58645:          19, 0,   -6, 0,      /* topleft row,col, and botleft row,col */
                   58646:           {  6,   25, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58647:             "\x06\xfe\x21\x21\xf7\x21\x21\x06" }  },
1.1       albertel 58648:       /* --- pixel bitmap for bbold180 char#94 (noname) --- */
1.2       albertel 58649:       {  94,34667,                      /* character number, location */
                   58650:          19, 2,   -6, 2,      /* topleft row,col, and botleft row,col */
                   58651:           {  6,   25, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58652:             "\x20\x08\x41\x18\x46\x51\x94\x24\x45\x51\x24\x49\x14"
1.1       albertel 58653:             "\x45\x61\x18\x04\x81\x20" }  },
                   58654:       /* --- pixel bitmap for bbold180 char#95 (noname) --- */
1.2       albertel 58655:       {  95,34959,                      /* character number, location */
                   58656:          19, 0,   -6, 0,      /* topleft row,col, and botleft row,col */
                   58657:           {  6,   25, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58658:             "\x41\x20\x08\x86\x61\x28\x8a\x24\x89\xa2\x28\x49\x8a"
1.1       albertel 58659:             "\x62\x18\x86\x20\x04\x01" }  },
                   58660:       /* --- pixel bitmap for bbold180 char#96 (noname) --- */
1.2       albertel 58661:       {  96,35250,                      /* character number, location */
                   58662:          17, 0,    7, 0,      /* topleft row,col, and botleft row,col */
                   58663:           {  6,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58664:             "\x10\x43\x08\x5f\x18\x86\xa1\x07" }  },
                   58665:       /* --- pixel bitmap for bbold180 char#97 a --- */
                   58666:       {  97,20676,                      /* character number, location */
                   58667:          12, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
                   58668:           { 10,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58669:             "\x78\x30\xae\xb0\x82\x09\x26\x98\x60\x82\x09\x2a\xa8"
                   58670:             "\x30\xe3\x78\x00" }  },
                   58671:       /* --- pixel bitmap for bbold180 char#98 b --- */
                   58672:       {  98,20951,                      /* character number, location */
                   58673:          17, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   58674:           { 14,   18, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58675:             "\x0f\x40\x02\x90\x00\x24\x00\x09\x40\xf2\x91\x82\x64"
                   58676:             "\x40\x09\x50\x02\x98\x00\x26\x80\x09\x60\x02\x98\x00"
                   58677:             "\x65\x40\x2f\x08\xf0\x01" }  },
                   58678:       /* --- pixel bitmap for bbold180 char#99 c --- */
                   58679:       {  99,21254,                      /* character number, location */
                   58680:          12, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
                   58681:           { 10,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58682:             "\x78\x30\xa6\x90\x82\x09\x24\x90\x40\x02\x09\x28\xa8"
                   58683:             "\x10\x63\x78\x00" }  },
                   58684:       /* --- pixel bitmap for bbold180 char#100 d --- */
                   58685:       { 100,21519,                      /* character number, location */
                   58686:          17, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
                   58687:           { 10,   18, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58688:             "\x00\x02\x08\x20\x80\x00\xe2\xc9\xb8\xc2\x0a\x26\x98"
                   58689:             "\x60\x82\x09\x26\xa8\xa0\xc2\x8c\xe3\x01" }  },
                   58690:       /* --- pixel bitmap for bbold180 char#101 e --- */
                   58691:       { 101,21806,                      /* character number, location */
                   58692:          12, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
                   58693:           { 10,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58694:             "\x78\x30\xa2\x90\x82\x09\xe6\x9f\x40\x02\x09\x28\xa8"
                   58695:             "\x10\x63\x78\x00" }  },
                   58696:       /* --- pixel bitmap for bbold180 char#102 f --- */
                   58697:       { 102,22073,                      /* character number, location */
                   58698:          18, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   58699:           {  8,   18, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58700:             "\x3c\x4a\x8a\x89\x09\x09\x09\x39\x09\x09\x09\x09\x09"
                   58701:             "\x09\x09\x09\x09\x0f" }  },
                   58702:       /* --- pixel bitmap for bbold180 char#103 g --- */
                   58703:       { 103,22356,                      /* character number, location */
                   58704:          12, 0,   -6, 0,      /* topleft row,col, and botleft row,col */
                   58705:           { 10,   18, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58706:             "\x78\x30\xae\xb0\x82\x09\x26\x98\x60\x82\x09\x2a\xa8"
                   58707:             "\x30\xe3\x78\x02\x08\x50\x40\x86\xe0\x01" }  },
                   58708:       /* --- pixel bitmap for bbold180 char#104 h --- */
                   58709:       { 104,22647,                      /* character number, location */
                   58710:          17, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   58711:           { 11,   17, 3,38, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58712:             "\x04\x7f\x31\x21\x71\x21\x14\x21\x22\x41\x11\x21\x51"
                   58713:             "\x1f\x71\x21\x61\x04\x61" }  },
                   58714:       /* --- pixel bitmap for bbold180 char#105 i --- */
                   58715:       { 105,22944,                      /* character number, location */
                   58716:          18, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   58717:           {  6,   18, 3,25, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58718:             "\x14\x1f\x31\x41\x14\x84\x10\xf8\x11\x21\x10\x14\x11" }  },
                   58719:       /* --- pixel bitmap for bbold180 char#106 j --- */
                   58720:       { 106,23215,                      /* character number, location */
                   58721:          18, 0,   -6, 0,      /* topleft row,col, and botleft row,col */
                   58722:           {  9,   24, 3,37, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58723:             "\x44\x10\xf3\x31\x41\x44\xe4\x10\xfc\x41\x21\x11\x31"
                   58724:             "\x11\x31\x21\x11\x44\x31" }  },
                   58725:       /* --- pixel bitmap for bbold180 char#107 k --- */
                   58726:       { 107,23514,                      /* character number, location */
                   58727:          17, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   58728:           { 11,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58729:             "\x0f\x48\x40\x02\x12\x90\x80\x04\x24\x30\x41\x89\x49"
1.1       albertel 58730:             "\x42\x0a\xb2\x90\x88\x44\x24\x24\x41\x0f\x04" }  },
1.2       albertel 58731:       /* --- pixel bitmap for bbold180 char#108 l --- */
                   58732:       { 108,23809,                      /* character number, location */
                   58733:          17, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   58734:           {  4,   17, 3,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58735:             "\x04\x0f\xd1\x21\x11\x11\x22" }  },
                   58736:       /* --- pixel bitmap for bbold180 char#109 m --- */
                   58737:       { 109,24082,                      /* character number, location */
                   58738:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   58739:           { 15,   12, 3,36, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58740:             "\x53\x23\x25\x32\x31\x1f\x21\x21\x42\x41\x0f\x51\x21"
                   58741:             "\x51\x41\x04\x51\x41" }  },
                   58742:       /* --- pixel bitmap for bbold180 char#110 n --- */
                   58743:       { 110,24379,                      /* character number, location */
                   58744:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   58745:           { 11,   12, 3,24, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58746:             "\x54\x25\x41\x11\x21\x51\x1f\x71\x21\x61\x04\x61" }  },
                   58747:       /* --- pixel bitmap for bbold180 char#111 o --- */
                   58748:       { 111,24652,                      /* character number, location */
                   58749:          12, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
                   58750:           { 10,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58751:             "\x78\x30\xa2\x90\x42\x09\x26\x98\x60\x82\x09\x2a\xa4"
                   58752:             "\x10\x23\x78\x00" }  },
                   58753:       /* --- pixel bitmap for bbold180 char#112 p --- */
                   58754:       { 112,24927,                      /* character number, location */
                   58755:          12, 1,   -5, 1,      /* topleft row,col, and botleft row,col */
                   58756:           { 14,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58757:             "\xc0\xc7\x0b\x92\x01\x25\x40\x09\x60\x02\x98\x00\x26"
                   58758:             "\x80\x09\x60\x02\x94\x01\xa5\x20\xc9\x47\x02\x90\x00"
                   58759:             "\x24\x00\x0f\x00" }  },
                   58760:       /* --- pixel bitmap for bbold180 char#113 q --- */
                   58761:       { 113,25226,                      /* character number, location */
                   58762:          12, 0,   -5, 0,      /* topleft row,col, and botleft row,col */
                   58763:           { 10,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58764:             "\x78\x30\xae\xb0\x82\x09\x26\x98\x60\x82\x09\x2a\xa8"
                   58765:             "\x30\xe3\x78\x02\x08\x20\x80\x00\x02" }  },
                   58766:       /* --- pixel bitmap for bbold180 char#114 r --- */
                   58767:       { 114,25511,                      /* character number, location */
                   58768:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   58769:           { 11,   12, 3,23, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58770:             "\x54\x25\x41\x1f\x11\x21\x61\x0f\x61\x21\x74\x71" }  },
                   58771:       /* --- pixel bitmap for bbold180 char#115 s --- */
                   58772:       { 115,25768,                      /* character number, location */
                   58773:          12, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
                   58774:           {  8,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58775:             "\x3c\x4a\x89\x89\x09\x3e\x40\x80\x80\x81\x81\x42\x3c" }  },
                   58776:       /* --- pixel bitmap for bbold180 char#116 t --- */
                   58777:       { 116,26023,                      /* character number, location */
                   58778:          17, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   58779:           {  8,   18, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58780:             "\x0f\x09\x09\x09\x09\x09\xf9\x09\x09\x09\x09\x09\x09"
                   58781:             "\x09\x89\x8a\x4a\x3c" }  },
                   58782:       /* --- pixel bitmap for bbold180 char#117 u --- */
                   58783:       { 117,26306,                      /* character number, location */
                   58784:          11, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   58785:           { 10,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58786:             "\x0f\x26\x98\x60\x82\x09\x26\x98\x60\x82\x0a\x2b\xcc"
                   58787:             "\x28\x1e" }  },
                   58788:       /* --- pixel bitmap for bbold180 char#118 v --- */
                   58789:       { 118,26581,                      /* character number, location */
                   58790:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   58791:           { 11,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58792:             "\x0f\x0c\x90\x84\x44\x42\x12\x62\x20\x03\x09\x50\x80"
1.1       albertel 58793:             "\x01\x08\x00" }  },
1.2       albertel 58794:       /* --- pixel bitmap for bbold180 char#119 w --- */
                   58795:       { 119,26836,                      /* character number, location */
                   58796:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   58797:           { 15,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58798:             "\x0f\xc0\x04\xa0\x04\x48\x02\x24\x09\x22\x8b\x90\x45"
1.1       albertel 58799:             "\x48\x24\x28\x0a\x0c\x06\x04\x02" }  },
1.2       albertel 58800:       /* --- pixel bitmap for bbold180 char#120 x --- */
                   58801:       { 120,27115,                      /* character number, location */
                   58802:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   58803:           { 10,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58804:             "\xc1\x8b\x44\x12\x26\x90\x20\x41\x02\x19\x92\x48\xf4"
1.1       albertel 58805:             "\x20" }  },
1.2       albertel 58806:       /* --- pixel bitmap for bbold180 char#121 y --- */
                   58807:       { 121,27376,                      /* character number, location */
                   58808:          11, 0,   -6, 0,      /* topleft row,col, and botleft row,col */
                   58809:           { 11,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58810:             "\x0f\x04\x90\x84\x48\x42\x12\x64\x20\x03\x0a\x50\x00"
                   58811:             "\x01\x08\x20\x00\x01\x04\x10\x40\x00\x01\x00" }  },
                   58812:       /* --- pixel bitmap for bbold180 char#122 z --- */
                   58813:       { 122,27641,                      /* character number, location */
                   58814:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   58815:           { 10,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58816:             "\xff\x83\x04\x12\x24\x90\x20\x41\x02\x09\x12\x48\xf0"
1.1       albertel 58817:             "\x3f" }  },
1.2       albertel 58818:       /* --- pixel bitmap for bbold180 char#123 \- --- */
                   58819:       { 123,35796,                      /* character number, location */
                   58820:           7, 0,    6, 0,      /* topleft row,col, and botleft row,col */
                   58821:           { 10,    1, 3, 2, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58822:             "\x0a" }  },
                   58823:       /* --- pixel bitmap for bbold180 char#124 | --- */
                   58824:       { 124,35491,                      /* character number, location */
                   58825:          19, 2,   -6, 2,      /* topleft row,col, and botleft row,col */
                   58826:           {  4,   25, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58827:             "\x04\x0f\xe1\x21\x0f\x71\x21\x04" }  },
1.1       albertel 58828:       /* --- pixel bitmap for bbold180 char#125 (noname) --- */
1.2       albertel 58829:       { 125,36008,                      /* character number, location */
                   58830:           7, 0,    6, 0,      /* topleft row,col, and botleft row,col */
                   58831:           { 19,    1, 3, 4, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58832:             "\x0e\x05" }  },
1.1       albertel 58833:       /* --- pixel bitmap for bbold180 char#126 (noname) --- */
1.2       albertel 58834:       { 126,36226,                      /* character number, location */
                   58835:          17, 0,    7, 0,      /* topleft row,col, and botleft row,col */
                   58836:           { 13,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58837:             "\x10\x88\xc1\x10\x08\x81\xf0\xf9\x42\x61\x28\x0c\x85"
                   58838:             "\xa1\xd0\xe3\x01" }  },
                   58839:       /* --- pixel bitmap for bbold180 char#127 \omega --- */
                   58840:       { 127, 9933,                      /* character number, location */
                   58841:          11, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
                   58842:           { 15,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58843:             "\x08\x08\x06\x88\x02\x28\x01\x98\x08\x4c\x04\x26\x02"
                   58844:             "\x13\x81\x89\x40\xa5\x90\x52\x88\xc7\x03" }  },
                   58845:       /* --- trailer  --- */
                   58846:       { -99, -999,  0,0,0,0, { 0,0,0,0, (pixbyte *)"\0" }  }
                   58847:    } ;
                   58848: 
                   58849: 
                   58850: /* --- size=6 for .210gf ---
                   58851:  * mf '\mode=preview; mag=magstep(-13.80488502080647873125); input bbold10'
                   58852:  * --------------------------------------------------------------------- */
                   58853: /* --- fontdef for bbold210 --- */
                   58854: static	chardef  bbold210[] =
                   58855:    {
                   58856:       /* --- pixel bitmap for bbold210 char#0 \Gamma --- */
                   58857:       {   0,  246,                      /* character number, location */
                   58858:          20, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   58859:           { 15,   20, 3,19, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58860:             "\x0e\x01\x0f\xe1\x31\xaf\x21\x31\xa5\xa0" }  },
                   58861:       /* --- pixel bitmap for bbold210 char#1 \Delta --- */
                   58862:       {   1,  540,                      /* character number, location */
                   58863:          20, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   58864:           { 17,   20, 3,78, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58865:             "\xf1\x81\x80\xf1\x71\x11\x70\xf1\x61\x31\x60\xf2\x51"
                   58866:             "\x31\x11\x50\xf1\x41\x31\x31\x40\xf2\x31\x31\x51\x30"
                   58867:             "\xf1\x21\x31\x71\x20\xf1\x11\x31\x91\x11\x31\xbe\x04" }  },
                   58868:       /* --- pixel bitmap for bbold210 char#2 \Theta --- */
                   58869:       {   2,  858,                      /* character number, location */
                   58870:          21, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   58871:           { 16,   22, 3,85, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58872:             "\x64\xa2\x42\x72\x71\x30\xf1\x21\x11\x81\x20\xf1\x11"
                   58873:             "\x21\x91\x1f\x21\x31\xa1\x01\x31\x35\x21\x0f\x31\x31"
                   58874:             "\xa1\xf1\x11\x21\x91\x10\xf1\x21\x11\x81\x20\x32\x71"
                   58875:             "\x72\x42\xa4\x60" }  },
                   58876:       /* --- pixel bitmap for bbold210 char#3 \Lambda --- */
                   58877:       {   3, 1195,                      /* character number, location */
                   58878:          20, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   58879:           { 17,   20, 3,78, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58880:             "\xf1\x81\x80\xf1\x71\x11\x70\xf1\x61\x31\x60\xf2\x51"
                   58881:             "\x31\x11\x50\xf1\x41\x31\x31\x40\xf2\x31\x31\x51\x30"
                   58882:             "\xf1\x21\x31\x71\x20\xf1\x11\x31\x91\x11\x31\xb6\xb1" }  },
                   58883:       /* --- pixel bitmap for bbold210 char#4 \Xi --- */
                   58884:       {   4, 1512,                      /* character number, location */
                   58885:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   58886:           { 17,   20, 3,22, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58887:             "\x0e\x03\xf7\xe0\x30\x66\x50\xf8\xe0\x3e\x03" }  },
                   58888:       /* --- pixel bitmap for bbold210 char#5 \Pi --- */
                   58889:       {   5, 1737,                      /* character number, location */
                   58890:          20, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   58891:           { 15,   20, 3,24, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58892:             "\x0e\x01\x0f\xe1\x31\x91\x0f\x21\x31\x91\x05\x91" }  },
                   58893:       /* --- pixel bitmap for bbold210 char#6 \Sigma --- */
                   58894:       {   6, 2069,                      /* character number, location */
                   58895:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   58896:           { 16,   20, 3,74, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58897:             "\x0e\x02\xf1\x11\x31\xa0\xf1\x21\x31\x90\xf1\x31\x31"
                   58898:             "\x80\x41\x31\x70\xf3\x51\x31\x60\x41\x31\x70\xf1\x31"
                   58899:             "\x31\x80\xf1\x21\x31\x90\xf1\x11\x31\xae\x02" }  },
                   58900:       /* --- pixel bitmap for bbold210 char#7 \Upsilon --- */
                   58901:       {   7, 2365,                      /* character number, location */
                   58902:          21, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   58903:           { 17,   21, 3,49, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58904:             "\x23\x73\x20\xf1\x11\x31\x51\x31\x1f\x21\x51\x31\x51"
                   58905:             "\xf3\x61\x31\x60\x65\x60\xf8\x61\x31\x60\x65\x61" }  },
                   58906:       /* --- pixel bitmap for bbold210 char#8 \Phi --- */
                   58907:       {   8, 2681,                      /* character number, location */
                   58908:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   58909:           { 17,   20, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58910:             "\xc0\x07\x80\x08\x00\x11\x00\x22\x00\xc6\x00\x8b\x06"
                   58911:             "\x11\x11\x21\x42\x41\x04\x83\x08\x06\x11\x0c\x22\x28"
                   58912:             "\x44\x88\x88\x08\x16\x0d\x30\x06\x40\x04\x80\x08\x00"
                   58913:             "\x11\x00\x3e\x00" }  },
                   58914:       /* --- pixel bitmap for bbold210 char#9 \Psi --- */
                   58915:       {   9, 3013,                      /* character number, location */
                   58916:          20, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   58917:           { 17,   20, 3,59, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58918:             "\x65\x60\xf2\x61\x31\x62\x41\x31\x42\xf6\x21\x31\x31"
                   58919:             "\x31\x20\xf1\x31\x21\x31\x21\x30\x43\x33\x40\xf3\x61"
                   58920:             "\x31\x60\x65\x61" }  },
                   58921:       /* --- pixel bitmap for bbold210 char#10 \Omega --- */
                   58922:       {  10, 3347,                      /* character number, location */
                   58923:          21, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   58924:           { 16,   21, 3,66, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58925:             "\x64\xa2\x42\x72\x71\x30\xf1\x21\x11\x81\x20\xf1\x11"
                   58926:             "\x21\x91\x1f\x71\x31\xa1\xf1\x11\x21\x91\x10\xf1\x21"
                   58927:             "\x11\x81\x20\x32\x71\x35\x65" }  },
                   58928:       /* --- pixel bitmap for bbold210 char#11 \alpha --- */
                   58929:       {  11, 3679,                      /* character number, location */
                   58930:          14, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
                   58931:           { 14,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58932:             "\xf0\x00\x46\x48\x21\x4a\x88\x12\x62\x84\x18\x21\x46"
                   58933:             "\x48\x11\x52\x84\x24\xc1\x48\x30\x14\x0c\xc6\x0c\x0f"
                   58934:             "\x00" }  },
                   58935:       /* --- pixel bitmap for bbold210 char#12 \beta --- */
                   58936:       {  12, 3994,                      /* character number, location */
                   58937:          21, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   58938:           { 13,   27, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58939:             "\xc0\x03\x86\x61\x20\x0a\x28\x01\x25\x60\x04\x8c\x40"
                   58940:             "\x11\x27\x82\x44\xa0\x08\x18\x01\x23\x60\x04\x8c\x80"
                   58941:             "\x11\x30\x02\x46\xa0\x18\x14\x47\x22\x47\x04\x88\x00"
                   58942:             "\x11\x20\x02\x7c\x00" }  },
                   58943:       /* --- pixel bitmap for bbold210 char#13 \gamma --- */
                   58944:       {  13, 4354,                      /* character number, location */
                   58945:          13, 0,   -7, 0,      /* topleft row,col, and botleft row,col */
                   58946:           { 12,   20, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58947:             "\x0f\x0f\x0f\x60\x00\x09\x18\x41\x21\x14\x22\x41\x12"
                   58948:             "\x14\x81\x11\x18\x81\x11\x18\x81\x11\x28\x41\x12\x44"
                   58949:             "\x21\x18\x01\x0f" }  },
                   58950:       /* --- pixel bitmap for bbold210 char#14 \delta --- */
                   58951:       {  14, 4672,                      /* character number, location */
                   58952:          21, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
                   58953:           { 12,   22, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58954:             "\xf8\x40\x30\x02\x14\x80\x01\x18\x00\x02\xc0\x00\x70"
                   58955:             "\xc0\x19\x12\x22\x41\x11\x18\x81\x11\x18\x81\x11\x28"
                   58956:             "\x41\x12\x44\x21\x18\x01\x0f" }  },
                   58957:       /* --- pixel bitmap for bbold210 char#15 \epsilon --- */
                   58958:       {  15, 4988,                      /* character number, location */
                   58959:          14, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
                   58960:           { 12,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58961:             "\xf0\x80\x31\x14\x24\x81\x12\x18\x01\x71\x10\x01\x11"
                   58962:             "\x10\x01\x12\x28\x81\x14\x84\x31\xf0\x00" }  },
                   58963:       /* --- pixel bitmap for bbold210 char#16 \zeta --- */
                   58964:       {  16, 5273,                      /* character number, location */
                   58965:          20, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   58966:           { 10,   26, 3,63, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58967:             "\x82\x71\x72\x71\x50\xf1\x32\x50\x21\x11\x62\x11\x50"
                   58968:             "\xf1\x11\x21\x5f\x51\x31\x50\xf1\x11\x21\x50\x23\x93"
                   58969:             "\xa2\x10\xf3\x91\x72\x11" }  },
                   58970:       /* --- pixel bitmap for bbold210 char#17 \eta --- */
                   58971:       {  17, 5565,                      /* character number, location */
                   58972:          14, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   58973:           { 13,   20, 3,28, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58974:             "\x73\x37\x31\x21\x32\x51\x1f\x91\x31\x71\x05\x71\xf5"
                   58975:             "\xc1" }  },
                   58976:       /* --- pixel bitmap for bbold210 char#18 \theta --- */
                   58977:       {  18, 5871,                      /* character number, location */
                   58978:          21, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
                   58979:           { 12,   22, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58980:             "\xf0\x80\x11\x14\x22\x41\x12\x24\x41\x11\x18\x81\x11"
                   58981:             "\x18\x81\xf1\x1f\x81\x11\x18\x81\x11\x18\x81\x12\x24"
                   58982:             "\x41\x12\x44\x21\x18\x01\x0f" }  },
                   58983:       /* --- pixel bitmap for bbold210 char#19 \iota --- */
                   58984:       {  19, 6206,                      /* character number, location */
                   58985:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   58986:           {  5,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58987:             "\x3f\xc6\x18\x63\x8c\x31\x4a\x8a\x01" }  },
                   58988:       /* --- pixel bitmap for bbold210 char#20 \kappa --- */
                   58989:       {  20, 6472,                      /* character number, location */
                   58990:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   58991:           { 13,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58992:             "\x1f\x30\x82\x45\x88\xc8\x10\x07\x62\x40\x14\x88\x04"
                   58993:             "\x11\x21\x22\x44\x88\x08\xf2\x81\x01" }  },
                   58994:       /* --- pixel bitmap for bbold210 char#21 \lambda --- */
                   58995:       {  21, 6761,                      /* character number, location */
                   58996:          20, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   58997:           { 12,   20, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   58998:             "\x1f\x10\x01\x22\x20\x02\x22\x40\x04\x44\x80\x08\x88"
                   58999:             "\x80\x08\x10\x01\x11\x10\x81\x22\x28\x42\x44\x44\x24"
                   59000:             "\x44\x82\x18\xf8" }  },
                   59001:       /* --- pixel bitmap for bbold210 char#22 \mu --- */
                   59002:       {  22, 7066,                      /* character number, location */
                   59003:          13, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   59004:           { 13,   19, 3,37, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59005:             "\x05\x71\x0f\x91\x31\x71\x01\x32\x53\x33\x31\x12\x31"
                   59006:             "\x23\x3f\x31\x31\x85\x81" }  },
                   59007:       /* --- pixel bitmap for bbold210 char#23 \nu --- */
                   59008:       {  23, 7383,                      /* character number, location */
                   59009:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   59010:           { 12,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59011:             "\x1f\x18\x81\x11\x18\x81\x11\x14\x41\x11\x12\x21\x11"
                   59012:             "\x11\x09\x71\x90\x01\x07\x00" }  },
                   59013:       /* --- pixel bitmap for bbold210 char#24 \xi --- */
                   59014:       {  24, 7666,                      /* character number, location */
                   59015:          20, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   59016:           { 10,   26, 3,61, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59017:             "\x37\x12\x11\x5f\x31\x31\x50\x12\x11\x84\x62\x71\x11"
                   59018:             "\x61\x21\x5f\x41\x31\x50\xf1\x11\x21\x50\x23\x93\xa2"
                   59019:             "\x10\xf3\x91\x72\x11" }  },
                   59020:       /* --- pixel bitmap for bbold210 char#25 \pi --- */
                   59021:       {  25, 7963,                      /* character number, location */
                   59022:          13, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   59023:           { 13,   13, 3,17, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59024:             "\x0d\xfa\x21\x31\x31\x20\x25\x31\x21" }  },
                   59025:       /* --- pixel bitmap for bbold210 char#26 \rho --- */
                   59026:       {  26, 8251,                      /* character number, location */
                   59027:          14, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   59028:           { 12,   20, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59029:             "\xf0\x80\x11\x14\x22\x41\x12\x14\x81\x11\x18\x81\x11"
                   59030:             "\x18\x81\x11\x14\x41\x11\x12\x11\xf1\x10\x01\x11\x10"
                   59031:             "\x01\x11\xf0\x01" }  },
                   59032:       /* --- pixel bitmap for bbold210 char#27 \sigma --- */
                   59033:       {  27, 8569,                      /* character number, location */
                   59034:          13, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
                   59035:           { 14,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59036:             "\xf0\x3f\xc7\x20\x41\x48\x10\x11\x48\x04\x12\x81\x44"
                   59037:             "\x20\x11\x88\x04\x21\x41\x50\x08\x18\x01\x3c\x00" }  },
                   59038:       /* --- pixel bitmap for bbold210 char#28 \tau --- */
                   59039:       {  28, 8857,                      /* character number, location */
                   59040:          13, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   59041:           { 13,   13, 3,21, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59042:             "\x0d\xf8\x41\x31\x40\x51\x21\xa1\x11\xb2\x41" }  },
                   59043:       /* --- pixel bitmap for bbold210 char#29 \upsilon --- */
                   59044:       {  29, 9125,                      /* character number, location */
                   59045:          13, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   59046:           { 12,   14, 3,29, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59047:             "\x05\x61\x0f\x81\x31\x61\xf1\x11\x21\x51\x10\x23\x32"
                   59048:             "\x64\x41" }  },
                   59049:       /* --- pixel bitmap for bbold210 char#30 \phi --- */
                   59050:       {  30, 9417,                      /* character number, location */
                   59051:          20, 0,   -6, 0,      /* topleft row,col, and botleft row,col */
                   59052:           { 13,   26, 3,75, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59053:             "\x45\x40\xf6\x41\x31\x40\x32\x32\x51\x11\x31\x11\x31"
                   59054:             "\x21\x31\x21\x1f\x41\x31\x31\x31\x11\x21\x31\x21\x31"
                   59055:             "\x11\x31\x11\x52\x32\x30\xf5\x41\x31\x40\x45\x43" }  },
                   59056:       /* --- pixel bitmap for bbold210 char#31 \chi --- */
                   59057:       {  31, 9769,                      /* character number, location */
                   59058:          13, 0,   -6, 0,      /* topleft row,col, and botleft row,col */
                   59059:           { 12,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59060:             "\x81\x2f\x88\x42\x44\x44\x24\x82\x22\x30\x02\x11\x10"
                   59061:             "\x81\x08\x88\x80\x08\xc4\x40\x14\x44\x22\x22\x22\x14"
                   59062:             "\x41\x1f\x08" }  },
                   59063:       /* --- pixel bitmap for bbold210 char#32 \psi --- */
                   59064:       {  32,10081,                      /* character number, location */
                   59065:          20, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   59066:           { 13,   26, 3,45, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59067:             "\x45\x40\xf5\x41\x31\x4f\x91\x31\x31\x31\x11\x21\x31"
                   59068:             "\x21\x33\x33\x20\xf5\x41\x31\x40\x45\x41" }  },
                   59069:       /* --- pixel bitmap for bbold210 char#33 ! --- */
                   59070:       {  33,29390,                      /* character number, location */
                   59071:          20, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   59072:           {  7,   21, 3,33, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59073:             "\x15\x10\xfa\x11\x31\x10\x15\xa3\x31\x31\x1f\x21\x51"
                   59074:             "\x11\x31\x33\x21" }  },
                   59075:       /* --- pixel bitmap for bbold210 char#34 (noname) --- */
                   59076:       {  34,38376,                      /* character number, location */
                   59077:          21, 0,   10, 0,      /* topleft row,col, and botleft row,col */
                   59078:           { 15,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59079:             "\x1c\x1c\x11\x51\x50\x30\x28\x18\x14\x14\x13\xf3\xf0"
                   59080:             "\x40\x40\x10\x10\x04\x84\x81\x01" }  },
                   59081:       /* --- pixel bitmap for bbold210 char#35 # --- */
                   59082:       {  35,29678,                      /* character number, location */
                   59083:          20, 2,   -6, 2,      /* topleft row,col, and botleft row,col */
                   59084:           { 18,   26, 3,45, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59085:             "\x55\x31\x40\xf7\x51\x31\x31\x46\x39\xf4\x51\x31\x31"
                   59086:             "\x46\x39\xf8\x51\x31\x31\x40\x55\x31\x41" }  },
                   59087:       /* --- pixel bitmap for bbold210 char#36 $ --- */
                   59088:       {  36,30038,                      /* character number, location */
                   59089:          22, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   59090:           { 15,   24, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59091:             "\xe0\x03\x10\x01\x8c\x81\x45\x27\x22\x0c\x11\x84\x08"
                   59092:             "\x42\x04\x21\x02\x11\x01\x8b\x00\xc6\x00\xa2\x01\x11"
                   59093:             "\x81\x88\x40\x84\x20\x42\x10\x21\x88\x28\x44\xe4\xa2"
                   59094:             "\x81\x31\x80\x08\xc0\x07" }  },
                   59095:       /* --- pixel bitmap for bbold210 char#37 % --- */
                   59096:       {  37,30386,                      /* character number, location */
                   59097:          23, 0,  -10, 0,      /* topleft row,col, and botleft row,col */
                   59098:           { 17,   33, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59099:             "\x1c\x00\x44\xf0\x05\x21\x0a\x22\x12\x44\x44\x84\x08"
                   59100:             "\x87\x08\x00\x11\x00\x22\x00\x22\x00\x44\x00\x88\x00"
                   59101:             "\x88\x00\x10\x01\x20\x02\x20\x02\x40\x04\x80\x08\x80"
                   59102:             "\x08\x00\x11\x00\x22\x00\x22\x00\x44\x00\x88\x00\x88"
                   59103:             "\x00\x10\x01\x20\xc2\x21\x42\x44\x44\x90\x88\xa0\x08"
                   59104:             "\x41\x1f\x44\x00\x70\x00" }  },
                   59105:       /* --- pixel bitmap for bbold210 char#38 & --- */
                   59106:       {  38,30764,                      /* character number, location */
                   59107:          21, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   59108:           { 19,   22, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59109:             "\xc0\x01\x00\x11\x00\x88\x00\x40\x04\x00\x22\x00\x10"
                   59110:             "\x01\x80\x04\x00\x38\x00\x40\x00\x80\x05\x00\x27\x00"
                   59111:             "\x24\x02\x20\x11\x80\x08\x01\x44\x08\x22\x82\x10\x11"
                   59112:             "\x48\x88\x40\xa1\x04\x04\x25\x58\x48\x31\x44\x7c\xc0"
                   59113:             "\x01" }  },
                   59114:       /* --- pixel bitmap for bbold210 char#39 ' --- */
                   59115:       {  39,31097,                      /* character number, location */
                   59116:          21, 0,   10, 0,      /* topleft row,col, and botleft row,col */
                   59117:           {  7,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59118:             "\x1c\x51\x30\x18\x14\xf3\x40\x10\x84\x01" }  },
                   59119:       /* --- pixel bitmap for bbold210 char#40 ( --- */
                   59120:       {  40,31342,                      /* character number, location */
                   59121:          22, 2,   -7, 2,      /* topleft row,col, and botleft row,col */
                   59122:           {  7,   29, 3,40, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59123:             "\x43\x32\x41\x11\x20\xf3\x11\x21\x2f\xe1\x31\x20\xf3"
                   59124:             "\x11\x21\x20\x21\x11\x52\x63" }  },
                   59125:       /* --- pixel bitmap for bbold210 char#41 ) --- */
                   59126:       {  41,31664,                      /* character number, location */
                   59127:          22, 0,   -7, 0,      /* topleft row,col, and botleft row,col */
                   59128:           {  7,   29, 3,41, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59129:             "\x03\x62\x51\x11\x20\xf3\x21\x21\x10\xfe\x21\x31\xf3"
                   59130:             "\x21\x21\x10\x21\x11\x42\x33\x41" }  },
                   59131:       /* --- pixel bitmap for bbold210 char#42 * --- */
                   59132:       {  42,31977,                      /* character number, location */
                   59133:          17, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   59134:           { 17,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59135:             "\xc0\x07\x80\x08\x00\x11\x00\x22\x00\x44\x20\x88\xa0"
                   59136:             "\x11\x31\x2c\x1a\x60\x0c\x80\x08\x00\x11\x80\xe2\x40"
                   59137:             "\x44\x26\x88\x30\x10\x01\x20\x02\x40\x04\x80\x08\x00"
                   59138:             "\x1f\x00" }  },
                   59139:       /* --- pixel bitmap for bbold210 char#43 + --- */
                   59140:       {  43,32281,                      /* character number, location */
                   59141:          17, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   59142:           { 19,   19, 3,25, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59143:             "\x75\x70\xf7\x71\x31\x78\x38\xf7\x71\x31\x70\x75\x72" }  },
                   59144:       /* --- pixel bitmap for bbold210 char#44 , --- */
                   59145:       {  44,32559,                      /* character number, location */
                   59146:           6, 0,   -6, 0,      /* topleft row,col, and botleft row,col */
                   59147:           {  7,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59148:             "\x1c\x51\x30\x18\x14\xf3\x40\x10\x08\x43\x00" }  },
                   59149:       /* --- pixel bitmap for bbold210 char#45 - --- */
                   59150:       {  45,32800,                      /* character number, location */
                   59151:           7, 0,    6, 0,      /* topleft row,col, and botleft row,col */
                   59152:           { 10,    1, 3, 2, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59153:             "\x0a" }  },
                   59154:       /* --- pixel bitmap for bbold210 char#46 . --- */
                   59155:       {  46,33012,                      /* character number, location */
                   59156:           6, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
                   59157:           {  7,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59158:             "\x1c\x51\x30\x18\x14\x71\x00" }  },
                   59159:       /* --- pixel bitmap for bbold210 char#47 / --- */
                   59160:       {  47,33252,                      /* character number, location */
                   59161:          22, 0,   -7, 0,      /* topleft row,col, and botleft row,col */
                   59162:           { 15,   29, 3,83, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59163:             "\xa5\xa1\x31\xf2\x91\x31\x10\xf1\x81\x31\x20\xf2\x71"
                   59164:             "\x31\x30\xf2\x61\x31\x40\xf2\x51\x31\x50\xf2\x41\x31"
                   59165:             "\x60\xf1\x31\x31\x70\xf2\x21\x31\x80\xf2\x11\x31\x91"
                   59166:             "\x31\xa5\xa1" }  },
                   59167:       /* --- pixel bitmap for bbold210 char#48 0 --- */
                   59168:       {  48,10752,                      /* character number, location */
                   59169:          20, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   59170:           { 13,   21, 3,53, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59171:             "\x45\x72\x41\x51\x11\x51\x20\xf2\x11\x21\x61\x1f\x81"
                   59172:             "\x31\x71\xf2\x11\x21\x61\x10\x21\x11\x51\x52\x41\x75"
                   59173:             "\x41" }  },
                   59174:       /* --- pixel bitmap for bbold210 char#49 1 --- */
                   59175:       {  49,11075,                      /* character number, location */
                   59176:          19, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   59177:           { 13,   19, 3,28, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59178:             "\x72\x94\x82\x21\x63\x31\x42\x21\x31\x40\xfc\x41\x31"
                   59179:             "\x4d" }  },
                   59180:       /* --- pixel bitmap for bbold210 char#50 2 --- */
                   59181:       {  50,11356,                      /* character number, location */
                   59182:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   59183:           { 13,   20, 3,60, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59184:             "\x45\x62\x43\x31\x61\x21\x21\x61\x31\x0f\x11\x71\x31"
                   59185:             "\xf1\x81\x31\x81\x21\x91\x11\xa2\xa2\xa1\xa2\xa1\xb1"
                   59186:             "\xb1\xbf\x11\xcd" }  },
                   59187:       /* --- pixel bitmap for bbold210 char#51 3 --- */
                   59188:       {  51,11631,                      /* character number, location */
                   59189:          20, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   59190:           { 13,   21, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59191:             "\xf0\x81\xe1\x08\x24\x81\x18\x10\x03\x22\x40\x04\x48"
                   59192:             "\x00\x05\x78\x00\x1c\x80\x04\x10\x01\x22\x40\x0c\x88"
                   59193:             "\x01\x51\x20\x09\x14\x86\x01\x1f\x00" }  },
                   59194:       /* --- pixel bitmap for bbold210 char#52 4 --- */
                   59195:       {  52,11932,                      /* character number, location */
                   59196:          19, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   59197:           { 13,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59198:             "\x00\x04\xc0\x00\x18\x80\x02\x48\x80\x08\x10\x01\x23"
                   59199:             "\x50\x04\x8a\x20\x11\x22\x22\x44\x84\xc8\x1f\x07\x22"
                   59200:             "\x40\x04\x88\x00\x1f" }  },
                   59201:       /* --- pixel bitmap for bbold210 char#53 5 --- */
                   59202:       {  53,12221,                      /* character number, location */
                   59203:          19, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   59204:           { 13,   20, 3,43, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59205:             "\x0d\x0f\x31\x31\x89\xd1\xd1\xd1\x10\xf4\xc1\x01\xb2"
                   59206:             "\xa1\x21\x91\x21\x81\x42\x51\x75\x40" }  },
                   59207:       /* --- pixel bitmap for bbold210 char#54 6 --- */
                   59208:       {  54,12488,                      /* character number, location */
                   59209:          20, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   59210:           { 13,   21, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59211:             "\xf0\x01\xc1\x10\x20\x01\x14\x00\x03\x60\x7c\xc8\x10"
                   59212:             "\x15\x64\x02\x45\xc0\x08\x18\x01\x23\x60\x04\x8c\x80"
                   59213:             "\x12\x48\x02\x51\x10\x0c\x01\x1f\x00" }  },
                   59214:       /* --- pixel bitmap for bbold210 char#55 7 --- */
                   59215:       {  55,12803,                      /* character number, location */
                   59216:          19, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   59217:           { 13,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59218:             "\xff\x1f\x20\x02\x22\x40\x04\x44\x80\x08\x88\x00\x11"
                   59219:             "\x10\x01\x22\x40\x04\x44\x80\x08\x88\x00\x11\x10\x01"
                   59220:             "\x22\x20\x02\x7c\x00" }  },
                   59221:       /* --- pixel bitmap for bbold210 char#56 8 --- */
                   59222:       {  56,13084,                      /* character number, location */
                   59223:          20, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   59224:           { 13,   21, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59225:             "\xf0\x81\xc3\x48\xa0\x08\x18\x01\x23\x60\x04\x94\x40"
                   59226:             "\x14\x04\x7f\x70\x18\x09\x14\x01\x23\x60\x04\x8c\x80"
                   59227:             "\x11\x50\x02\x51\x10\x0c\x01\x1f\x00" }  },
                   59228:       /* --- pixel bitmap for bbold210 char#57 9 --- */
                   59229:       {  57,13401,                      /* character number, location */
                   59230:          20, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   59231:           { 13,   21, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59232:             "\xf0\x01\x43\x50\x10\x09\x24\x81\x22\x60\x04\x8c\x80"
                   59233:             "\x11\x30\x02\x46\x40\x09\x4c\x41\x31\x24\x7c\x0c\x80"
                   59234:             "\x01\x50\x00\x09\x10\x06\x01\x1f\x00" }  },
                   59235:       /* --- pixel bitmap for bbold210 char#58 : --- */
                   59236:       {  58,33570,                      /* character number, location */
                   59237:          14, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
                   59238:           {  7,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59239:             "\x1c\x51\x30\x18\x14\x71\x00\x1c\x51\x30\x18\x14\x71"
                   59240:             "\x00" }  },
                   59241:       /* --- pixel bitmap for bbold210 char#59 ; --- */
                   59242:       {  59,33830,                      /* character number, location */
                   59243:          14, 0,   -6, 0,      /* topleft row,col, and botleft row,col */
                   59244:           {  7,   20, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59245:             "\x1c\x51\x30\x18\x14\x71\x00\x1c\x51\x30\x18\x14\xf3"
                   59246:             "\x40\x10\x08\x43\x00" }  },
                   59247:       /* --- pixel bitmap for bbold210 char#60 < --- */
                   59248:       {  60,34105,                      /* character number, location */
                   59249:          15, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   59250:           { 19,   16, 3,54, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59251:             "\xe0\x32\xe0\x12\xe3\xe3\xe2\xe3\xe2\xe0\x12\x22\xd1"
                   59252:             "\x51\xd2\x42\xd1\x51\xd2\x42\xd1\x51\xd2\x42\xd2\x42"
                   59253:             "\xd7" }  },
                   59254:       /* --- pixel bitmap for bbold210 char#61 \cdot --- */
                   59255:       {  61,34361,                      /* character number, location */
                   59256:          11, 0,    4, 0,      /* topleft row,col, and botleft row,col */
                   59257:           {  7,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59258:             "\x1c\x51\x30\x18\x14\x71\x00" }  },
                   59259:       /* --- pixel bitmap for bbold210 char#62 > --- */
                   59260:       {  62,34603,                      /* character number, location */
                   59261:          15, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   59262:           { 19,   16, 3,63, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59263:             "\x02\xe0\x52\xe0\x52\xe0\x53\xe0\x52\xe0\x53\xe0\x52"
                   59264:             "\xe0\x21\x23\xb1\x51\xa2\x42\xa1\x51\xa2\x42\x92\x42"
                   59265:             "\xa1\x51\xa2\x42\xa7\xc2" }  },
                   59266:       /* --- pixel bitmap for bbold210 char#63 ? --- */
                   59267:       {  63,34865,                      /* character number, location */
                   59268:          21, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   59269:           { 15,   22, 3,67, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59270:             "\x56\x72\x62\x41\xa1\x21\xb1\x1f\x11\xd1\xe1\xd1\xd1"
                   59271:             "\xa4\x92\x11\xb1\x21\xa1\x31\xa5\xe0\xc3\xb1\x31\x50"
                   59272:             "\xf2\x41\x51\x40\x51\x31\xb3\x61" }  },
                   59273:       /* --- pixel bitmap for bbold210 char#64 @ --- */
                   59274:       {  64,35143,                      /* character number, location */
                   59275:          21, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   59276:           { 13,   22, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59277:             "\xf0\x00\x63\x50\x10\x09\x22\x81\x24\x50\x04\x8a\x90"
                   59278:             "\x91\x3d\x0a\x46\xc1\x28\x18\x05\x23\x5b\x84\x88\x00"
                   59279:             "\x12\x48\x02\x49\x10\x0a\x82\x31\xe0\x01" }  },
                   59280:       /* --- pixel bitmap for bbold210 char#65 A --- */
                   59281:       {  65,13716,                      /* character number, location */
                   59282:          20, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   59283:           { 16,   20, 3,78, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59284:             "\x81\x70\xf1\x72\x70\xf2\x61\x21\x60\xf1\x51\x32\x50"
                   59285:             "\xf2\x41\x31\x21\x40\xf1\x31\x31\x41\x30\xf1\x21\x31"
                   59286:             "\x61\x20\x21\x38\x20\xf1\x11\x31\x81\x11\x31\xa6\xa1" }  },
                   59287:       /* --- pixel bitmap for bbold210 char#66 B --- */
                   59288:       {  66,14019,                      /* character number, location */
                   59289:          20, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   59290:           { 15,   20, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59291:             "\xff\x87\x08\x4c\x04\x28\x02\x18\x01\x8c\x00\x46\x00"
                   59292:             "\x23\x40\x11\x98\xf8\x43\x04\x26\x02\x14\x01\x8a\x00"
                   59293:             "\x46\x00\x23\x80\x11\xa0\x08\x50\x04\xe6\xff\x00" }  },
                   59294:       /* --- pixel bitmap for bbold210 char#67 C --- */
                   59295:       {  67,14338,                      /* character number, location */
                   59296:          21, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   59297:           { 16,   22, 3,73, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59298:             "\x65\x92\x52\x62\x81\x41\x11\x91\x31\x11\xa1\x11\x21"
                   59299:             "\xa1\x11\x21\xbf\x71\x31\xb0\x11\x21\xc1\x21\xa1\x21"
                   59300:             "\x11\xa1\x21\x11\x91\x42\x81\x62\x52\x95\x52" }  },
                   59301:       /* --- pixel bitmap for bbold210 char#68 D --- */
                   59302:       {  68,14643,                      /* character number, location */
                   59303:          20, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   59304:           { 16,   20, 3,69, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59305:             "\x0a\x61\x31\x52\x41\x31\x71\x3f\x11\x31\x81\x2f\x11"
                   59306:             "\x31\x91\x1f\x51\x31\xa1\x0f\x11\x31\x91\x1f\x11\x31"
                   59307:             "\x81\x21\x31\x71\x31\x31\x52\x4a\x62" }  },
                   59308:       /* --- pixel bitmap for bbold210 char#69 E --- */
                   59309:       {  69,14964,                      /* character number, location */
                   59310:          20, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   59311:           { 15,   20, 3,24, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59312:             "\x0e\x01\x0f\x71\x31\xa1\x35\x6f\x81\x31\xae\x01" }  },
                   59313:       /* --- pixel bitmap for bbold210 char#70 F --- */
                   59314:       {  70,15249,                      /* character number, location */
                   59315:          20, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   59316:           { 15,   20, 3,23, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59317:             "\x0e\x01\x0f\x71\x31\xa1\x35\x6f\x81\x31\xa5\xa1" }  },
                   59318:       /* --- pixel bitmap for bbold210 char#71 G --- */
                   59319:       {  71,15534,                      /* character number, location */
                   59320:          21, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   59321:           { 16,   22, 3,83, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59322:             "\x65\x92\x52\x62\x81\x41\x11\x91\x31\x11\xa1\x11\x21"
                   59323:             "\xa1\x11\x21\xbf\x31\x31\xb1\x31\x65\x0f\x21\x31\xa1"
                   59324:             "\xf1\x11\x21\xa1\x21\x11\xa1\x21\x11\x91\x42\x81\x62"
                   59325:             "\x52\x95\x51" }  },
                   59326:       /* --- pixel bitmap for bbold210 char#72 H --- */
                   59327:       {  72,15849,                      /* character number, location */
                   59328:          20, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   59329:           { 16,   20, 3,28, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59330:             "\x05\xa1\x0f\x71\x31\xa1\x01\x3c\x0f\x81\x31\xa1\x05"
                   59331:             "\xa1" }  },
                   59332:       /* --- pixel bitmap for bbold210 char#73 I --- */
                   59333:       {  73,16172,                      /* character number, location */
                   59334:          20, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   59335:           {  5,   20, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59336:             "\x05\x0f\xe1\x31\x0f\x21\x31\x05" }  },
                   59337:       /* --- pixel bitmap for bbold210 char#74 J --- */
                   59338:       {  74,16457,                      /* character number, location */
                   59339:          20, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   59340:           { 15,   21, 3,39, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59341:             "\xa5\xfc\xa1\x31\xa1\x21\x1f\x11\x91\x21\x10\x11\x81"
                   59342:             "\x11\x41\x72\x62\x51\x95\x51" }  },
                   59343:       /* --- pixel bitmap for bbold210 char#75 K --- */
                   59344:       {  75,16752,                      /* character number, location */
                   59345:          20, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   59346:           { 15,   20, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59347:             "\x1f\xc0\x08\x50\x04\x24\x02\x12\x81\x88\x20\x44\x08"
                   59348:             "\x22\x04\x11\x81\x48\x40\x54\x20\x26\x10\x23\x88\x20"
                   59349:             "\x44\x10\x22\x10\x11\x90\x08\x50\x04\xe8\x03\x08" }  },
                   59350:       /* --- pixel bitmap for bbold210 char#76 L --- */
                   59351:       {  76,17079,                      /* character number, location */
                   59352:          20, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   59353:           { 15,   20, 3,18, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59354:             "\x05\xaf\xe1\x31\xaf\x21\x31\xae\x01" }  },
                   59355:       /* --- pixel bitmap for bbold210 char#77 M --- */
                   59356:       {  77,17364,                      /* character number, location */
                   59357:          20, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   59358:           { 17,   20, 3,72, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59359:             "\x01\xe0\x13\xd3\x11\xb1\x12\x21\x91\x21\x0f\x11\x31"
                   59360:             "\x71\x31\x01\x32\x51\x42\x31\x11\x31\x52\x31\x21\x11"
                   59361:             "\x62\x31\x31\x71\x0f\x81\x31\xb1\x05\xb1" }  },
                   59362:       /* --- pixel bitmap for bbold210 char#78 N --- */
                   59363:       {  78,17707,                      /* character number, location */
                   59364:          20, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   59365:           { 16,   20, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59366:             "\x01\x80\x03\x80\x05\x80\x05\x80\x09\x80\x11\x80\x31"
                   59367:             "\x80\x51\x80\x51\x80\x91\x80\x11\x81\x11\x82\x11\x82"
                   59368:             "\x11\x84\x11\x88\x11\x90\x11\xa0\x11\xa0\x11\xc0\x1f"
                   59369:             "\x80" }  },
                   59370:       /* --- pixel bitmap for bbold210 char#79 O --- */
                   59371:       {  79,18052,                      /* character number, location */
                   59372:          21, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   59373:           { 16,   22, 3,69, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59374:             "\x64\xa2\x42\x72\x71\x30\xf1\x21\x11\x81\x20\xf1\x11"
                   59375:             "\x21\x91\x1f\x71\x31\xa1\xf1\x11\x21\x91\x10\xf1\x21"
                   59376:             "\x11\x81\x20\x32\x71\x72\x42\xa4\x62" }  },
                   59377:       /* --- pixel bitmap for bbold210 char#80 P --- */
                   59378:       {  80,18377,                      /* character number, location */
                   59379:          20, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   59380:           { 15,   20, 3,47, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59381:             "\x0b\x41\x31\x62\x21\x31\x81\x1f\x31\x31\x91\x01\x31"
                   59382:             "\x81\x11\x31\x62\x21\x37\x4f\x81\x31\xa5\xa0" }  },
                   59383:       /* --- pixel bitmap for bbold210 char#81 Q --- */
                   59384:       {  81,18678,                      /* character number, location */
                   59385:          21, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   59386:           { 16,   27, 3,100, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   59387:             "\x64\xa2\x42\x72\x71\x30\xf1\x21\x11\x81\x20\xf1\x11"
                   59388:             "\x21\x91\x1f\x71\x31\xa1\xf1\x11\x21\x31\x51\x10\x21"
                   59389:             "\x11\x41\x31\x41\x11\x51\x21\x52\x51\x11\x72\x42\xa4"
                   59390:             "\x21\xe0\x11\xe0\x21\x20\xf1\xe1\x10\xe0\x11" }  },
                   59391:       /* --- pixel bitmap for bbold210 char#82 R --- */
                   59392:       {  82,19025,                      /* character number, location */
                   59393:          20, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   59394:           { 15,   20, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59395:             "\xff\x87\x08\x4c\x04\x28\x02\x18\x01\x8c\x00\x46\x00"
                   59396:             "\x23\x40\x11\x98\xf8\x43\x44\x20\x22\x10\x21\x88\x20"
                   59397:             "\x44\x10\x22\x10\x11\x90\x08\x50\x04\xe8\x03\x08" }  },
                   59398:       /* --- pixel bitmap for bbold210 char#83 S --- */
                   59399:       {  83,19346,                      /* character number, location */
                   59400:          21, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   59401:           { 15,   22, 3,79, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59402:             "\x55\x82\x52\x51\x11\x71\x31\x21\x81\x1f\x11\x31\x91"
                   59403:             "\x0f\x11\x31\xa0\x11\x21\xc3\xe7\xe0\x12\x20\xf1\xd1"
                   59404:             "\x10\xf1\xe1\x0f\x11\xd1\x11\xb1\x31\x91\x52\x52\x85"
                   59405:             "\x51" }  },
                   59406:       /* --- pixel bitmap for bbold210 char#84 T --- */
                   59407:       {  84,19633,                      /* character number, location */
                   59408:          20, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   59409:           { 17,   20, 3,23, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59410:             "\x0e\x03\xfe\x61\x31\x60\xf2\x61\x31\x60\x65\x61" }  },
                   59411:       /* --- pixel bitmap for bbold210 char#85 U --- */
                   59412:       {  85,19918,                      /* character number, location */
                   59413:          20, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   59414:           { 16,   21, 3,43, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59415:             "\x05\xa1\x0f\xc1\x31\xa1\xf1\x11\x21\x91\x10\xf1\x21"
                   59416:             "\x11\x81\x20\x32\x71\x72\x42\xa4\x60" }  },
                   59417:       /* --- pixel bitmap for bbold210 char#86 V --- */
                   59418:       {  86,20243,                      /* character number, location */
                   59419:          20, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   59420:           { 17,   20, 3,79, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59421:             "\x05\xb2\x31\xb1\xf1\x11\x31\x91\x10\xf1\x21\x31\x71"
                   59422:             "\x20\xf2\x31\x31\x51\x30\xf1\x41\x31\x31\x40\xf2\x51"
                   59423:             "\x31\x11\x50\xf1\x61\x31\x60\xf1\x71\x11\x70\xf1\x81"
                   59424:             "\x81" }  },
                   59425:       /* --- pixel bitmap for bbold210 char#87 W --- */
                   59426:       {  87,20554,                      /* character number, location */
                   59427:          20, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   59428:           { 23,   20, 3,111, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   59429:             "\x05\xe0\x32\x31\xe0\x31\xf3\x11\x31\xe0\x11\x10\xf2"
                   59430:             "\x21\x31\xd1\x20\x31\x31\x31\x71\x30\xf1\x31\x31\x21"
                   59431:             "\x11\x61\x30\x31\x31\x11\x31\x51\x71\x32\x31\x41\x40"
                   59432:             "\xf1\x41\x31\x51\x31\x40\xf1\x51\x11\x71\x11\x50\x52"
                   59433:             "\x92\xb1\xa1\x50" }  },
                   59434:       /* --- pixel bitmap for bbold210 char#88 X --- */
                   59435:       {  88,20901,                      /* character number, location */
                   59436:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   59437:           { 16,   20, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59438:             "\x01\xf8\x02\x44\x04\x44\x04\x22\x08\x22\x10\x11\x20"
                   59439:             "\x11\xc0\x08\x40\x04\x40\x04\x20\x02\x20\x02\x10\x03"
                   59440:             "\x88\x04\x88\x08\x44\x10\x44\x20\x22\x20\x22\x40\x1f"
                   59441:             "\x80" }  },
                   59442:       /* --- pixel bitmap for bbold210 char#89 Y --- */
                   59443:       {  89,21214,                      /* character number, location */
                   59444:          20, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   59445:           { 17,   20, 3,61, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59446:             "\x05\xb1\xf1\x11\x31\x91\x10\x21\x31\x71\x20\xf1\x31"
                   59447:             "\x31\x51\x30\x41\x31\x31\x40\xf1\x51\x31\x11\x50\xf9"
                   59448:             "\x61\x31\x60\x65\x60" }  },
                   59449:       /* --- pixel bitmap for bbold210 char#90 Z --- */
                   59450:       {  90,21517,                      /* character number, location */
                   59451:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   59452:           { 16,   20, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59453:             "\xff\xff\x00\x44\x00\x44\x00\x22\x00\x22\x00\x11\x00"
                   59454:             "\x11\x80\x08\x40\x04\x40\x04\x20\x02\x20\x02\x10\x01"
                   59455:             "\x88\x00\x88\x00\x44\x00\x44\x00\x22\x00\x22\x00\xff"
                   59456:             "\xff" }  },
                   59457:       /* --- pixel bitmap for bbold210 char#91 [ --- */
                   59458:       {  91,35495,                      /* character number, location */
                   59459:          22, 2,   -7, 2,      /* topleft row,col, and botleft row,col */
                   59460:           {  7,   29, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59461:             "\x07\x0f\xe1\x31\x2f\xb1\x31\x27" }  },
                   59462:       /* --- pixel bitmap for bbold210 char#92 \\ --- */
                   59463:       {  92,35821,                      /* character number, location */
                   59464:          22, 0,   -7, 0,      /* topleft row,col, and botleft row,col */
                   59465:           { 15,   29, 3,86, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59466:             "\x05\xa1\x31\xa0\xf2\x11\x31\x90\xf2\x21\x31\x80\xf1"
                   59467:             "\x31\x31\x70\xf2\x41\x31\x60\xf2\x51\x31\x50\xf2\x61"
                   59468:             "\x31\x40\xf2\x71\x31\x30\xf1\x81\x31\x20\xf2\x91\x31"
                   59469:             "\x10\xa1\x31\xa5" }  },
                   59470:       /* --- pixel bitmap for bbold210 char#93 ] --- */
                   59471:       {  93,36154,                      /* character number, location */
                   59472:          22, 0,   -7, 0,      /* topleft row,col, and botleft row,col */
                   59473:           {  7,   29, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59474:             "\x07\xfe\x21\x31\xfb\x21\x31\x07" }  },
                   59475:       /* --- pixel bitmap for bbold210 char#94 (noname) --- */
                   59476:       {  94,36481,                      /* character number, location */
                   59477:          22, 2,   -7, 2,      /* topleft row,col, and botleft row,col */
                   59478:           {  7,   29, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59479:             "\x40\x20\x08\x04\x83\xa1\x50\x28\x12\x49\x24\x0a\x85"
                   59480:             "\x42\x22\x11\x89\x84\x42\xa1\x60\x30\x10\x08\x08\x04" }  },
                   59481:       /* --- pixel bitmap for bbold210 char#95 (noname) --- */
                   59482:       {  95,36789,                      /* character number, location */
                   59483:          22, 0,   -7, 0,      /* topleft row,col, and botleft row,col */
                   59484:           {  7,   29, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59485:             "\x81\x80\x40\x60\x30\x28\x14\x0a\x89\x44\x24\x12\x0a"
                   59486:             "\x85\x22\x91\x44\xa2\x50\x28\x0c\x06\x81\x20\x10\x00" }  },
                   59487:       /* --- pixel bitmap for bbold210 char#96 (noname) --- */
                   59488:       {  96,37100,                      /* character number, location */
                   59489:          20, 0,    9, 0,      /* topleft row,col, and botleft row,col */
                   59490:           {  7,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59491:             "\x30\x04\x41\xe0\x19\x05\x83\x41\x11\x07" }  },
                   59492:       /* --- pixel bitmap for bbold210 char#97 a --- */
                   59493:       {  97,21802,                      /* character number, location */
                   59494:          14, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
                   59495:           { 12,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59496:             "\xf0\x80\xb1\x14\x2c\x81\x12\x18\x81\x11\x18\x81\x11"
                   59497:             "\x18\x81\x12\x28\x81\x14\x8c\xb1\xf0\x00" }  },
                   59498:       /* --- pixel bitmap for bbold210 char#98 b --- */
                   59499:       {  98,22093,                      /* character number, location */
                   59500:          20, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   59501:           { 16,   21, 3,67, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59502:             "\x05\xbf\x41\x31\xb1\x31\x34\x41\x31\x12\x41\x31\x32"
                   59503:             "\x71\x2f\x11\x31\x91\x1f\x41\x31\xa1\x0f\x11\x31\x91"
                   59504:             "\x11\x32\x71\x25\x12\x41\xb4\x41" }  },
                   59505:       /* --- pixel bitmap for bbold210 char#99 c --- */
                   59506:       {  99,22412,                      /* character number, location */
                   59507:          14, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
                   59508:           { 12,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59509:             "\xf0\x80\x31\x14\x24\x81\x12\x18\x01\x11\x10\x01\x11"
                   59510:             "\x10\x01\x12\x28\x81\x14\x84\x31\xf0\x00" }  },
                   59511:       /* --- pixel bitmap for bbold210 char#100 d --- */
                   59512:       { 100,22689,                      /* character number, location */
                   59513:          20, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
                   59514:           { 12,   21, 3,59, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59515:             "\xf5\xb1\x44\x31\x32\x32\x11\x21\x11\x52\xf1\x11\x21"
                   59516:             "\x61\x0f\x41\x31\x61\xf1\x11\x21\x61\x21\x11\x52\x32"
                   59517:             "\x32\x11\x44\x45" }  },
                   59518:       /* --- pixel bitmap for bbold210 char#101 e --- */
                   59519:       { 101,22994,                      /* character number, location */
                   59520:          14, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
                   59521:           { 12,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59522:             "\xf0\x80\x31\x14\x24\x41\x12\x18\x81\xf1\x1f\x01\x11"
                   59523:             "\x10\x01\x12\x28\x81\x14\x84\x31\xf0\x00" }  },
                   59524:       /* --- pixel bitmap for bbold210 char#102 f --- */
                   59525:       { 102,23273,                      /* character number, location */
                   59526:          21, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   59527:           { 10,   21, 3,43, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59528:             "\x34\x51\x11\x21\x31\x21\x31\x21\x21\x42\x31\x41\x0f"
                   59529:             "\x21\x31\x51\x33\x3f\xa1\x31\x55\x51" }  },
                   59530:       /* --- pixel bitmap for bbold210 char#103 g --- */
                   59531:       { 103,23570,                      /* character number, location */
                   59532:          14, 0,   -7, 0,      /* topleft row,col, and botleft row,col */
                   59533:           { 12,   21, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59534:             "\xf0\x80\xb1\x14\x2c\x81\x12\x18\x81\x11\x18\x81\x11"
                   59535:             "\x18\x81\x12\x28\x81\x14\x8c\xb1\xf0\x08\x80\x00\x04"
                   59536:             "\x40\x01\x62\x10\xf8\x00" }  },
                   59537:       /* --- pixel bitmap for bbold210 char#104 h --- */
                   59538:       { 104,23879,                      /* character number, location */
                   59539:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   59540:           { 13,   20, 3,38, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59541:             "\x05\x8f\x41\x31\x81\x31\x23\x31\x33\x31\x21\x32\x51"
                   59542:             "\x1f\x91\x31\x71\x05\x71" }  },
                   59543:       /* --- pixel bitmap for bbold210 char#105 i --- */
                   59544:       { 105,24192,                      /* character number, location */
                   59545:          20, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   59546:           {  7,   20, 3,33, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59547:             "\x23\x31\x31\x1f\x21\x51\x11\x31\x33\x35\x10\xfa\x11"
                   59548:             "\x31\x10\x15\x11" }  },
                   59549:       /* --- pixel bitmap for bbold210 char#106 j --- */
                   59550:       { 106,24473,                      /* character number, location */
                   59551:          20, 0,   -7, 0,      /* topleft row,col, and botleft row,col */
                   59552:           { 11,   27, 3,51, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59553:             "\x63\x71\x31\x10\xf2\x41\x51\x51\x31\x73\x75\x10\xfe"
                   59554:             "\x51\x31\x10\x51\x21\x21\x41\x21\x32\x21\x11\x64\x44" }  },
                   59555:       /* --- pixel bitmap for bbold210 char#107 k --- */
                   59556:       { 107,24786,                      /* character number, location */
                   59557:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   59558:           { 13,   20, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59559:             "\x1f\x20\x02\x44\x80\x08\x10\x01\x22\x40\x04\x88\x80"
                   59560:             "\x11\x28\xc2\x44\x84\x48\x10\x05\x62\x41\x44\x88\x10"
                   59561:             "\x11\x22\x82\x44\xa0\x0f\x08" }  },
                   59562:       /* --- pixel bitmap for bbold210 char#108 l --- */
                   59563:       { 108,25097,                      /* character number, location */
                   59564:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   59565:           {  5,   20, 3,22, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59566:             "\x05\x0f\xe1\x31\x01\x31\x11\x21\x21\x11\x32" }  },
                   59567:       /* --- pixel bitmap for bbold210 char#109 m --- */
                   59568:       { 109,25382,                      /* character number, location */
                   59569:          14, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   59570:           { 17,   14, 3,38, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59571:             "\x63\x33\x26\x31\x11\x31\x11\x31\x41\x11\x31\x1f\x91"
                   59572:             "\x31\x51\x51\x05\x51\x51" }  },
                   59573:       /* --- pixel bitmap for bbold210 char#110 n --- */
                   59574:       { 110,25699,                      /* character number, location */
                   59575:          14, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   59576:           { 13,   14, 3,24, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59577:             "\x73\x37\x31\x21\x32\x51\x1f\x91\x31\x71\x05\x71" }  },
                   59578:       /* --- pixel bitmap for bbold210 char#111 o --- */
                   59579:       { 111,25984,                      /* character number, location */
                   59580:          14, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
                   59581:           { 12,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59582:             "\xf0\x80\x11\x14\x22\x41\x12\x14\x81\x11\x18\x81\x11"
                   59583:             "\x18\x81\x12\x24\x41\x14\x82\x11\xf0\x00" }  },
                   59584:       /* --- pixel bitmap for bbold210 char#112 p --- */
                   59585:       { 112,26271,                      /* character number, location */
                   59586:          14, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   59587:           { 16,   20, 3,67, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59588:             "\x84\x45\x12\x41\x31\x32\x71\x2f\x11\x31\x91\x1f\x41"
                   59589:             "\x31\xa1\x0f\x11\x31\x91\x11\x32\x71\x21\x31\x12\x41"
                   59590:             "\x31\x31\x34\x4f\x31\x31\xb5\xb1" }  },
                   59591:       /* --- pixel bitmap for bbold210 char#113 q --- */
                   59592:       { 113,26586,                      /* character number, location */
                   59593:          14, 0,   -6, 0,      /* topleft row,col, and botleft row,col */
                   59594:           { 12,   20, 3,58, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59595:             "\x44\x72\x32\x11\x21\x11\x52\xf1\x11\x21\x61\x0f\x41"
                   59596:             "\x31\x61\xf1\x11\x21\x61\x21\x11\x52\x32\x32\x11\x44"
                   59597:             "\x31\xf4\xb1" }  },
                   59598:       /* --- pixel bitmap for bbold210 char#114 r --- */
                   59599:       { 114,26889,                      /* character number, location */
                   59600:          14, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   59601:           { 13,   14, 3,29, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59602:             "\x73\x37\x32\x11\x32\x51\x1f\x11\x31\x71\x0f\x71\x31"
                   59603:             "\x85\x81" }  },
                   59604:       /* --- pixel bitmap for bbold210 char#115 s --- */
                   59605:       { 115,27156,                      /* character number, location */
                   59606:          14, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
                   59607:           { 10,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59608:             "\x78\x58\x12\x51\x84\x11\x4a\xc0\x07\x60\x00\x02\x18"
                   59609:             "\x60\x80\x02\x11\x82\x07" }  },
                   59610:       /* --- pixel bitmap for bbold210 char#116 t --- */
                   59611:       { 116,27421,                      /* character number, location */
                   59612:          20, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   59613:           { 10,   21, 3,45, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59614:             "\x05\x5f\x51\x31\x51\x36\x0f\x71\x31\x51\x31\x41\x11"
                   59615:             "\x21\x41\x11\x21\x31\x31\x11\x21\x54\x31" }  },
                   59616:       /* --- pixel bitmap for bbold210 char#117 u --- */
                   59617:       { 117,27718,                      /* character number, location */
                   59618:          13, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   59619:           { 12,   14, 3,37, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59620:             "\x05\x61\x0f\x71\x31\x61\xf1\x11\x21\x52\x21\x11\x41"
                   59621:             "\x11\x32\x31\x21\x44\x41" }  },
                   59622:       /* --- pixel bitmap for bbold210 char#118 v --- */
                   59623:       { 118,28007,                      /* character number, location */
                   59624:          13, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   59625:           { 13,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59626:             "\x1f\x50\x04\x8a\x20\x22\x44\x44\x10\x09\xa2\x80\x18"
                   59627:             "\x10\x01\x24\x80\x02\x60\x00\x04\x00" }  },
                   59628:       /* --- pixel bitmap for bbold210 char#119 w --- */
                   59629:       { 119,28276,                      /* character number, location */
                   59630:          13, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   59631:           { 17,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59632:             "\x1f\x00\x23\x00\x8a\x00\x12\x01\x24\x02\x88\x28\x08"
                   59633:             "\xb1\x10\x62\x21\x48\x24\x90\x48\xa0\xa0\x80\xc1\x00"
                   59634:             "\x01\x01" }  },
                   59635:       /* --- pixel bitmap for bbold210 char#120 x --- */
                   59636:       { 120,28569,                      /* character number, location */
                   59637:          13, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   59638:           { 12,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59639:             "\x81\x2f\x44\x44\x84\x22\x30\x02\x11\x88\x80\x08\xc4"
                   59640:             "\x40\x14\x22\x22\x42\x1f\x08" }  },
                   59641:       /* --- pixel bitmap for bbold210 char#121 y --- */
                   59642:       { 121,28842,                      /* character number, location */
                   59643:          13, 0,   -7, 0,      /* topleft row,col, and botleft row,col */
                   59644:           { 13,   20, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59645:             "\x1f\x50\x04\x89\x20\x22\x42\x44\x10\x05\xa2\x80\x08"
                   59646:             "\x10\x01\x34\x80\x02\x60\x00\x04\x40\x00\x08\x80\x00"
                   59647:             "\x08\x80\x00\x08\x80\x00\x00" }  },
                   59648:       /* --- pixel bitmap for bbold210 char#122 z --- */
                   59649:       { 122,29125,                      /* character number, location */
                   59650:          13, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   59651:           { 12,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59652:             "\xff\x0f\x44\x40\x04\x22\x20\x02\x11\x88\x80\x08\x44"
                   59653:             "\x40\x04\x22\x20\x02\xff\x0f" }  },
                   59654:       /* --- pixel bitmap for bbold210 char#123 \- --- */
                   59655:       { 123,37666,                      /* character number, location */
                   59656:           8, 0,    7, 0,      /* topleft row,col, and botleft row,col */
                   59657:           { 11,    1, 3, 2, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59658:             "\x0b" }  },
                   59659:       /* --- pixel bitmap for bbold210 char#124 | --- */
                   59660:       { 124,37345,                      /* character number, location */
                   59661:          22, 2,   -7, 2,      /* topleft row,col, and botleft row,col */
                   59662:           {  5,   29, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59663:             "\x05\x0f\xe1\x31\x0f\xb1\x31\x05" }  },
                   59664:       /* --- pixel bitmap for bbold210 char#125 (noname) --- */
                   59665:       { 125,37878,                      /* character number, location */
                   59666:           8, 0,    7, 0,      /* topleft row,col, and botleft row,col */
                   59667:           { 23,    1, 3, 4, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59668:             "\x0e\x09" }  },
                   59669:       /* --- pixel bitmap for bbold210 char#126 (noname) --- */
                   59670:       { 126,38096,                      /* character number, location */
                   59671:          20, 0,    9, 0,      /* topleft row,col, and botleft row,col */
                   59672:           { 15,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59673:             "\x30\x30\x04\x04\x01\x41\x40\xe0\xe1\x19\x19\x05\x05"
                   59674:             "\x83\x82\x41\x41\x11\x11\x07\x07" }  },
                   59675:       /* --- pixel bitmap for bbold210 char#127 \omega --- */
                   59676:       { 127,10443,                      /* character number, location */
                   59677:          13, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
                   59678:           { 17,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59679:             "\x10\x10\x38\xc0\x48\x00\x92\x00\x14\x01\x30\x22\x60"
                   59680:             "\x44\xc0\x88\x80\x11\x01\x23\x02\x4a\x0a\x92\x14\x44"
                   59681:             "\x45\x04\x07\x07" }  },
                   59682:       /* --- trailer  --- */
                   59683:       { -99, -999,  0,0,0,0, { 0,0,0,0, (pixbyte *)"\0" }  }
                   59684:    } ;
                   59685: 
                   59686: 
                   59687: /* --- size=7 for .250gf ---
                   59688:  * mf '\mode=preview; mag=magstep(-12.84858895680446863032); input bbold10'
                   59689:  * --------------------------------------------------------------------- */
                   59690: /* --- fontdef for bbold250 --- */
                   59691: static	chardef  bbold250[] =
                   59692:    {
                   59693:       /* --- pixel bitmap for bbold250 char#0 \Gamma --- */
                   59694:       {   0,  246,                      /* character number, location */
                   59695:          24, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   59696:           { 17,   24, 3,19, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59697:             "\x0e\x03\x0f\xe1\x31\xcf\x61\x31\xc5\xc0" }  },
                   59698:       /* --- pixel bitmap for bbold250 char#1 \Delta --- */
                   59699:       {   1,  556,                      /* character number, location */
                   59700:          24, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   59701:           { 19,   24, 3,88, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59702:             "\xf1\x91\x90\xf1\x81\x11\x80\xf2\x71\x31\x70\xf1\x61"
                   59703:             "\x31\x11\x60\xf2\x51\x31\x31\x50\xf2\x41\x31\x51\x40"
                   59704:             "\xf1\x31\x31\x71\x30\xf2\x21\x31\x91\x20\xf1\x11\x31"
                   59705:             "\xb1\x11\x31\xde\x06" }  },
                   59706:       /* --- pixel bitmap for bbold250 char#2 \Theta --- */
                   59707:       {   2,  896,                      /* character number, location */
                   59708:          25, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   59709:           { 19,   26, 3,93, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59710:             "\x75\xc2\x52\x91\x91\x72\xa1\x30\xf1\x21\x11\xb1\x20"
                   59711:             "\xf2\x11\x21\xc1\x1f\x21\x31\xd1\x01\x31\x46\x31\x0f"
                   59712:             "\x31\x31\xd1\xf2\x11\x21\xc1\x10\xf1\x21\x11\xb1\x20"
                   59713:             "\x32\xa1\x71\x91\x92\x52\xc5\x70" }  },
                   59714:       /* --- pixel bitmap for bbold250 char#3 \Lambda --- */
                   59715:       {   3, 1253,                      /* character number, location */
                   59716:          24, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   59717:           { 19,   24, 3,88, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59718:             "\xf1\x91\x90\xf1\x81\x11\x80\xf2\x71\x31\x70\xf1\x61"
                   59719:             "\x31\x11\x60\xf2\x51\x31\x31\x50\xf2\x41\x31\x51\x40"
                   59720:             "\xf1\x31\x31\x71\x30\xf2\x21\x31\x91\x20\xf1\x11\x31"
                   59721:             "\xb1\x11\x31\xd6\xd1" }  },
                   59722:       /* --- pixel bitmap for bbold250 char#4 \Xi --- */
                   59723:       {   4, 1592,                      /* character number, location */
                   59724:          24, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   59725:           { 19,   24, 3,22, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59726:             "\x0e\x05\xf9\xe0\x50\x76\x60\xfa\xe0\x5e\x05" }  },
                   59727:       /* --- pixel bitmap for bbold250 char#5 \Pi --- */
                   59728:       {   5, 1817,                      /* character number, location */
                   59729:          24, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   59730:           { 17,   24, 3,24, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59731:             "\x0e\x03\x0f\xe1\x31\xb1\x0f\x61\x31\xb1\x05\xb1" }  },
                   59732:       /* --- pixel bitmap for bbold250 char#6 \Sigma --- */
                   59733:       {   6, 2173,                      /* character number, location */
                   59734:          24, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   59735:           { 19,   24, 3,102, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   59736:             "\x0e\x05\xf1\x11\x31\xd0\xf1\x21\x31\xc0\x31\x31\xb0"
                   59737:             "\xf1\x41\x31\xa0\xf1\x51\x31\x90\x61\x31\x80\xf1\x71"
                   59738:             "\x31\x70\x61\x31\x80\xf1\x51\x31\x90\xf1\x41\x31\xa0"
                   59739:             "\x31\x31\xb0\xf1\x21\x31\xc0\xf1\x11\x31\xde\x05" }  },
                   59740:       /* --- pixel bitmap for bbold250 char#7 \Upsilon --- */
                   59741:       {   7, 2485,                      /* character number, location */
                   59742:          25, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   59743:           { 19,   25, 3,49, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59744:             "\x24\x74\x20\xf1\x11\x41\x51\x41\x1f\x31\x61\x31\x61"
                   59745:             "\xf4\x71\x31\x70\x75\x70\xfa\x71\x31\x70\x75\x71" }  },
                   59746:       /* --- pixel bitmap for bbold250 char#8 \Phi --- */
                   59747:       {   8, 2821,                      /* character number, location */
                   59748:          24, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   59749:           { 19,   24, 3,99, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59750:             "\x75\x70\xf3\x71\x31\x70\x62\x32\xa2\x11\x31\x12\x62"
                   59751:             "\x31\x31\x32\x20\xf1\x11\x51\x31\x51\x1f\x31\x61\x31"
                   59752:             "\x61\xf1\x11\x51\x31\x51\x10\x22\x31\x31\x32\x62\x11"
                   59753:             "\x31\x12\xa2\x32\x60\xf3\x71\x31\x70\x75\x7e" }  },
                   59754:       /* --- pixel bitmap for bbold250 char#9 \Psi --- */
                   59755:       {   9, 3177,                      /* character number, location */
                   59756:          24, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   59757:           { 19,   24, 3,71, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59758:             "\x75\x70\xf3\x71\x31\x72\x51\x31\x52\xf4\x21\x41\x31"
                   59759:             "\x41\x20\xf3\x31\x31\x31\x31\x30\xf1\x41\x21\x31\x21"
                   59760:             "\x40\x53\x33\x50\xf4\x71\x31\x70\x75\x71" }  },
                   59761:       /* --- pixel bitmap for bbold250 char#10 \Omega --- */
                   59762:       {  10, 3535,                      /* character number, location */
                   59763:          25, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   59764:           { 19,   25, 3,72, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59765:             "\x75\xc2\x52\x91\x91\x72\xa1\x30\xf1\x21\x11\xb1\x20"
                   59766:             "\xf2\x11\x21\xc1\x1f\x71\x31\xd1\xf2\x11\x21\xc1\x10"
                   59767:             "\xf1\x21\x11\xb1\x20\xf1\x32\xa1\x35\x95" }  },
                   59768:       /* --- pixel bitmap for bbold250 char#11 \alpha --- */
                   59769:       {  11, 3887,                      /* character number, location */
                   59770:          16, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
                   59771:           { 17,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59772:             "\xe0\x01\x30\x04\x52\x10\x94\x20\x28\x81\x30\x02\x61"
                   59773:             "\x04\xc2\x08\x44\x11\x88\x22\x10\x45\x40\x89\x80\x22"
                   59774:             "\x01\x43\x02\x04\x05\x0c\x0c\xe6\xe0\x03\x00" }  },
                   59775:       /* --- pixel bitmap for bbold250 char#12 \beta --- */
                   59776:       {  12, 4218,                      /* character number, location */
                   59777:          25, 1,   -7, 1,      /* topleft row,col, and botleft row,col */
                   59778:           { 16,   32, 3,115, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   59779:             "\x75\x92\x52\x61\x91\x42\x91\x31\x11\xa1\xf1\x11\x21"
                   59780:             "\xa1\x01\x31\xa2\x31\x91\x11\x31\x81\x21\x31\x53\x31"
                   59781:             "\x31\x71\x31\x31\x81\x2f\x11\x31\x91\x1f\x51\x31\xa1"
                   59782:             "\x0f\x11\x31\x91\x11\x32\x71\x21\x31\x12\x41\x31\x31"
                   59783:             "\x34\x4f\x41\x31\xb5\xb0" }  },
                   59784:       /* --- pixel bitmap for bbold250 char#13 \gamma --- */
                   59785:       {  13, 4606,                      /* character number, location */
                   59786:          15, 0,   -8, 0,      /* topleft row,col, and botleft row,col */
                   59787:           { 14,   23, 3,73, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59788:             "\x04\x64\x42\x22\xa2\xb1\x21\x91\x41\x72\x51\x30\xf1"
                   59789:             "\x21\x11\x61\x20\xf2\x11\x21\x71\x1f\x61\x31\x81\xf1"
                   59790:             "\x11\x21\x71\x10\x21\x11\x61\x52\x42\x84\x51" }  },
                   59791:       /* --- pixel bitmap for bbold250 char#14 \delta --- */
                   59792:       {  14, 4942,                      /* character number, location */
                   59793:          25, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
                   59794:           { 14,   26, 3,83, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59795:             "\x46\x71\x61\x42\x82\x21\xa1\x11\xc1\x0f\x21\xd0\x12"
                   59796:             "\xe2\xe3\x92\x32\x61\x11\x52\x31\x21\x61\x31\x21\x71"
                   59797:             "\x1f\x51\x31\x81\xf1\x11\x21\x71\x10\x21\x11\x61\x52"
                   59798:             "\x42\x84\x51" }  },
                   59799:       /* --- pixel bitmap for bbold250 char#15 \epsilon --- */
                   59800:       {  15, 5274,                      /* character number, location */
                   59801:          16, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
                   59802:           { 14,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59803:             "\xe0\x03\x06\x41\x81\x49\x40\x12\x60\x04\x10\x01\xc4"
                   59804:             "\x03\x11\x40\x04\x10\x01\x44\x00\x12\xa0\x04\x44\x81"
                   59805:             "\x61\x10\xe0\x03" }  },
                   59806:       /* --- pixel bitmap for bbold250 char#16 \zeta --- */
                   59807:       {  16, 5567,                      /* character number, location */
                   59808:          24, 1,   -7, 1,      /* topleft row,col, and botleft row,col */
                   59809:           { 12,   31, 3,71, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59810:             "\xa2\x91\x92\x91\xa1\xa1\x70\xf1\x32\x70\x21\x11\x70"
                   59811:             "\xf2\x11\x21\x7f\x61\x31\x70\xf1\x11\x21\x70\x21\x11"
                   59812:             "\xa2\xc3\xc2\xc1\x10\xf2\xb1\xa1\x92\x21" }  },
                   59813:       /* --- pixel bitmap for bbold250 char#17 \eta --- */
                   59814:       {  17, 5873,                      /* character number, location */
                   59815:          16, 1,   -7, 1,      /* topleft row,col, and botleft row,col */
                   59816:           { 16,   23, 3,40, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59817:             "\x84\x45\x12\x41\x31\x32\x71\x2f\x11\x31\x91\x1f\x91"
                   59818:             "\x31\xa1\x05\xa1\xf6\xe0\x11" }  },
                   59819:       /* --- pixel bitmap for bbold250 char#18 \theta --- */
                   59820:       {  18, 6195,                      /* character number, location */
                   59821:          25, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
                   59822:           { 14,   26, 3,73, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59823:             "\x54\x82\x42\x30\xf1\x21\x11\x61\x20\xf2\x11\x21\x71"
                   59824:             "\x1f\x41\x31\x81\x01\x3a\x0f\x51\x31\x81\xf2\x11\x21"
                   59825:             "\x71\x10\xf1\x21\x11\x61\x20\x32\x42\x84\x51" }  },
                   59826:       /* --- pixel bitmap for bbold250 char#19 \iota --- */
                   59827:       {  19, 6554,                      /* character number, location */
                   59828:          15, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   59829:           {  5,   15, 3,15, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59830:             "\x05\x0f\xb1\x31\x11\x21\x22\x11" }  },
                   59831:       /* --- pixel bitmap for bbold250 char#20 \kappa --- */
                   59832:       {  20, 6828,                      /* character number, location */
                   59833:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   59834:           { 16,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59835:             "\x1f\x80\x11\x60\x11\x18\x11\x06\x91\x01\x71\x00\x71"
                   59836:             "\x00\x91\x00\x11\x01\x11\x02\x11\x02\x11\x04\x11\x08"
                   59837:             "\x11\x10\x1f\xe0" }  },
                   59838:       /* --- pixel bitmap for bbold250 char#21 \lambda --- */
                   59839:       {  21, 7129,                      /* character number, location */
                   59840:          24, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   59841:           { 14,   24, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59842:             "\x1f\x40\x04\x20\x02\x88\x00\x44\x00\x11\x40\x04\x20"
                   59843:             "\x02\x88\x00\x44\x00\x11\x40\x04\x20\x02\x88\x00\x22"
                   59844:             "\x80\x11\x50\x04\x22\x82\x88\x10\x22\x04\x91\x40\x24"
                   59845:             "\x20\x06\xf8" }  },
                   59846:       /* --- pixel bitmap for bbold250 char#22 \mu --- */
                   59847:       {  22, 7452,                      /* character number, location */
                   59848:          15, 1,   -7, 1,      /* topleft row,col, and botleft row,col */
                   59849:           { 16,   22, 3,49, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59850:             "\x05\xa1\x0f\x91\x31\xa1\x0f\x11\x31\x92\x01\x32\x71"
                   59851:             "\x12\x31\x12\x41\x22\x31\x34\x4f\x41\x31\xb5\xb2" }  },
                   59852:       /* --- pixel bitmap for bbold250 char#23 \nu --- */
                   59853:       {  23, 7789,                      /* character number, location */
                   59854:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   59855:           { 14,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59856:             "\x1f\x60\x04\x18\x01\x46\x80\x11\x50\x04\x14\x01\x45"
                   59857:             "\x20\x11\x44\x04\x11\x21\x44\x04\xd1\x40\x0e\x70\x00"
                   59858:             "\x00" }  },
                   59859:       /* --- pixel bitmap for bbold250 char#24 \xi --- */
                   59860:       {  24, 8086,                      /* character number, location */
                   59861:          24, 1,   -7, 1,      /* topleft row,col, and botleft row,col */
                   59862:           { 12,   31, 3,77, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59863:             "\x48\x23\x81\x21\x7f\x31\x31\x70\x11\x21\x93\xb4\x72"
                   59864:             "\x91\x11\x70\xf1\x11\x21\x7f\x41\x31\x70\xf1\x11\x21"
                   59865:             "\x70\x21\x11\xa2\xc3\xc2\xc1\x10\xf2\xb1\xa1\x92\x21" }  },
                   59866:       /* --- pixel bitmap for bbold250 char#25 \pi --- */
                   59867:       {  25, 8397,                      /* character number, location */
                   59868:          15, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   59869:           { 16,   15, 3,19, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59870:             "\x0e\x02\xfc\x31\x31\x41\x30\x35\x41\x31" }  },
                   59871:       /* --- pixel bitmap for bbold250 char#26 \rho --- */
                   59872:       {  26, 8697,                      /* character number, location */
                   59873:          16, 1,   -7, 1,      /* topleft row,col, and botleft row,col */
                   59874:           { 14,   23, 3,63, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59875:             "\x54\x82\x42\x51\x11\x61\x20\xf1\x11\x21\x71\x1f\x61"
                   59876:             "\x31\x81\x0f\x11\x31\x71\x11\x31\x61\x21\x31\x42\x31"
                   59877:             "\x35\x5f\x41\x31\x95\x92" }  },
                   59878:       /* --- pixel bitmap for bbold250 char#27 \sigma --- */
                   59879:       {  27, 9031,                      /* character number, location */
                   59880:          15, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
                   59881:           { 17,   16, 3,55, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59882:             "\x5c\x32\x42\x81\x11\x61\x50\xf1\x11\x21\x71\x4f\x51"
                   59883:             "\x31\x81\x30\xf1\x11\x21\x71\x40\x21\x11\x61\x82\x42"
                   59884:             "\xb4\x8f" }  },
                   59885:       /* --- pixel bitmap for bbold250 char#28 \tau --- */
                   59886:       {  28, 9331,                      /* character number, location */
                   59887:          15, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   59888:           { 15,   15, 3,23, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59889:             "\x0e\x01\xfa\x51\x31\x50\x61\x21\xc1\x11\xd2\x5f" }  },
                   59890:       /* --- pixel bitmap for bbold250 char#29 \upsilon --- */
                   59891:       {  29, 9607,                      /* character number, location */
                   59892:          15, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   59893:           { 14,   16, 3,35, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59894:             "\x05\x81\x0f\x91\x31\x81\xf1\x11\x21\x71\x10\x21\x11"
                   59895:             "\x61\x52\x42\x84\x51" }  },
                   59896:       /* --- pixel bitmap for bbold250 char#30 \phi --- */
                   59897:       {  30, 9911,                      /* character number, location */
                   59898:          24, 0,   -7, 0,      /* topleft row,col, and botleft row,col */
                   59899:           { 15,   31, 3,83, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59900:             "\x55\x50\xf8\x51\x31\x50\x33\x33\x51\x21\x31\x21\x20"
                   59901:             "\xf1\x11\x31\x31\x31\x1f\x41\x41\x31\x41\xf1\x11\x31"
                   59902:             "\x31\x31\x10\x21\x21\x31\x21\x53\x33\x30\xf6\x51\x31"
                   59903:             "\x50\x55\x51" }  },
                   59904:       /* --- pixel bitmap for bbold250 char#31 \chi --- */
                   59905:       {  31,10291,                      /* character number, location */
                   59906:          15, 0,   -7, 0,      /* topleft row,col, and botleft row,col */
                   59907:           { 14,   22, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59908:             "\x01\xbe\x80\x28\x10\x11\x44\x84\x08\x22\x02\x45\x40"
                   59909:             "\x11\x60\x04\x88\x00\x22\x40\x04\x10\x01\x62\x80\x28"
                   59910:             "\x20\x0a\x44\x04\x11\x22\x82\x88\x40\x11\xd0\x07\x08" }  },
                   59911:       /* --- pixel bitmap for bbold250 char#32 \psi --- */
                   59912:       {  32,10623,                      /* character number, location */
                   59913:          24, 1,   -7, 1,      /* topleft row,col, and botleft row,col */
                   59914:           { 15,   31, 3,53, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59915:             "\x55\x50\xf7\x51\x31\x5f\xa1\x41\x31\x41\x11\x31\x31"
                   59916:             "\x31\x31\x21\x31\x21\x53\x33\x30\xf6\x51\x31\x50\x55"
                   59917:             "\x51" }  },
                   59918:       /* --- pixel bitmap for bbold250 char#33 ! --- */
                   59919:       {  33,31030,                      /* character number, location */
                   59920:          24, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   59921:           {  7,   25, 3,39, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59922:             "\x15\x10\xfd\x11\x31\x10\x15\x10\xf1\x70\x23\x31\x31"
                   59923:             "\x1f\x21\x51\x11\x31\x33\x21" }  },
                   59924:       /* --- pixel bitmap for bbold250 char#34 (noname) --- */
                   59925:       {  34,40440,                      /* character number, location */
                   59926:          25, 0,   11, 0,      /* topleft row,col, and botleft row,col */
                   59927:           { 17,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59928:             "\x1c\x70\x44\x10\x05\x11\x0c\x22\x18\x44\x50\x0c\x31"
                   59929:             "\x17\x5c\x10\x40\x20\x80\x20\x80\x40\x00\x41\x00\x41"
                   59930:             "\x00\x41\x00\x01" }  },
                   59931:       /* --- pixel bitmap for bbold250 char#35 # --- */
                   59932:       {  35,31330,                      /* character number, location */
                   59933:          24, 1,   -7, 1,      /* topleft row,col, and botleft row,col */
                   59934:           { 23,   31, 3,45, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59935:             "\x75\x51\x50\xf9\x71\x31\x51\x58\x3c\xf6\x71\x31\x51"
                   59936:             "\x58\x3c\xf9\x71\x31\x51\x50\x75\x51\x50" }  },
                   59937:       /* --- pixel bitmap for bbold250 char#36 $ --- */
                   59938:       {  36,31720,                      /* character number, location */
                   59939:          27, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   59940:           { 17,   30, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59941:             "\xc0\x07\x80\x08\x00\x11\x00\xe3\x80\x45\x86\x88\xb0"
                   59942:             "\x10\x81\x20\x02\x41\x04\x82\x08\x04\x11\x10\x22\x40"
                   59943:             "\x44\x00\x8b\x00\x18\x03\x20\x1a\x40\x44\x80\x08\x01"
                   59944:             "\x11\x04\x22\x08\x44\x10\x88\x20\x10\x41\x20\x42\x43"
                   59945:             "\x44\x98\x68\xc0\x31\x00\x22\x00\x44\x00\xf8\x00" }  },
                   59946:       /* --- pixel bitmap for bbold250 char#37 % --- */
                   59947:       {  37,32100,                      /* character number, location */
                   59948:          27, 0,  -12, 0,      /* topleft row,col, and botleft row,col */
                   59949:           { 19,   39, 3,163, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   59950:             "\x23\xe0\x11\x31\x75\x11\x51\x61\x31\x1f\x11\x51\x51"
                   59951:             "\x31\x20\x11\x31\x61\x31\x43\x61\x31\x30\xf1\xb1\x31"
                   59952:             "\x30\xf2\xa1\x31\x40\xf2\x91\x31\x50\xf2\x81\x31\x60"
                   59953:             "\xf2\x71\x31\x70\xf2\x61\x31\x80\xf2\x51\x31\x90\xf2"
                   59954:             "\x41\x31\xa0\xf1\x31\x31\xb0\x31\x31\x63\x41\x31\x61"
                   59955:             "\x31\x10\xf1\x21\x31\x51\x51\x11\x31\x61\x51\x15\x71"
                   59956:             "\x31\xe0\x13\x20" }  },
                   59957:       /* --- pixel bitmap for bbold250 char#38 & --- */
                   59958:       {  38,32502,                      /* character number, location */
                   59959:          25, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   59960:           { 23,   26, 3,141, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   59961:             "\x83\xe0\x51\x31\xb0\xf4\x61\x51\xa0\x71\x31\xe0\x41"
                   59962:             "\x21\xe0\x51\x11\xe0\x62\xe0\x52\x11\xe0\x32\x41\xe0"
                   59963:             "\x11\x11\x41\xe1\x21\x51\xc1\x31\x51\xc1\x31\x61\xb1"
                   59964:             "\x31\x61\x61\x4f\x11\x31\x71\x41\x51\x31\x81\x21\x71"
                   59965:             "\x21\x92\x61\x11\x21\x91\x71\x21\x11\x72\x11\x61\x32"
                   59966:             "\x52\x42\x31\x56\x83\x21" }  },
                   59967:       /* --- pixel bitmap for bbold250 char#39 ' --- */
                   59968:       {  39,32855,                      /* character number, location */
                   59969:          25, 0,   11, 0,      /* topleft row,col, and botleft row,col */
                   59970:           {  7,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59971:             "\x1c\x51\x30\x18\x14\x73\x41\x20\x08\x04\x41\x10\x00" }  },
                   59972:       /* --- pixel bitmap for bbold250 char#40 ( --- */
                   59973:       {  40,33108,                      /* character number, location */
                   59974:          26, 2,   -9, 2,      /* topleft row,col, and botleft row,col */
                   59975:           {  9,   35, 3,60, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59976:             "\x63\x42\x30\xf1\x32\x40\xf1\x21\x11\x40\xf3\x11\x21"
                   59977:             "\x4f\xe1\x31\x40\xf3\x11\x21\x40\xf1\x21\x11\x40\xf1"
                   59978:             "\x32\x40\x42\x93" }  },
                   59979:       /* --- pixel bitmap for bbold250 char#41 ) --- */
                   59980:       {  41,33446,                      /* character number, location */
                   59981:          26, 0,   -9, 0,      /* topleft row,col, and botleft row,col */
                   59982:           {  9,   35, 3,61, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59983:             "\x03\x92\x40\xf1\x42\x30\xf1\x41\x11\x20\xf3\x41\x21"
                   59984:             "\x10\xfe\x41\x31\xf3\x41\x21\x10\xf1\x41\x11\x20\xf1"
                   59985:             "\x42\x30\x32\x43\x61" }  },
                   59986:       /* --- pixel bitmap for bbold250 char#42 * --- */
                   59987:       {  42,33775,                      /* character number, location */
                   59988:          20, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   59989:           { 19,   23, 3,87, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59990:             "\x75\x70\xf4\x71\x31\x71\x61\x31\x61\x12\x41\x31\x42"
                   59991:             "\x42\x21\x31\x22\x83\x33\x50\xf2\x71\x31\x70\x53\x33"
                   59992:             "\x82\x21\x31\x22\x42\x41\x31\x42\x11\x61\x31\x61\xf4"
                   59993:             "\x71\x31\x70\x75\x71" }  },
                   59994:       /* --- pixel bitmap for bbold250 char#43 + --- */
                   59995:       {  43,34097,                      /* character number, location */
                   59996:          20, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   59997:           { 23,   23, 3,25, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   59998:             "\x95\x90\xf9\x91\x31\x9a\x3a\xf9\x91\x31\x90\x95\x92" }  },
                   59999:       /* --- pixel bitmap for bbold250 char#44 , --- */
                   60000:       {  44,34391,                      /* character number, location */
                   60001:           6, 0,   -7, 0,      /* topleft row,col, and botleft row,col */
                   60002:           {  7,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   60003:             "\x1c\x51\x30\x18\x14\x73\x41\x20\x08\x82\x20\x00" }  },
                   60004:       /* --- pixel bitmap for bbold250 char#45 - --- */
                   60005:       {  45,34636,                      /* character number, location */
                   60006:           8, 0,    7, 0,      /* topleft row,col, and botleft row,col */
                   60007:           { 12,    1, 3, 2, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   60008:             "\x0c" }  },
                   60009:       /* --- pixel bitmap for bbold250 char#46 . --- */
                   60010:       {  46,34848,                      /* character number, location */
                   60011:           6, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
                   60012:           {  7,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   60013:             "\x1c\x51\x30\x18\x14\x71\x00" }  },
                   60014:       /* --- pixel bitmap for bbold250 char#47 / --- */
                   60015:       {  47,35088,                      /* character number, location */
                   60016:          26, 0,   -9, 0,      /* topleft row,col, and botleft row,col */
                   60017:           { 17,   35, 3,99, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   60018:             "\xc5\xc1\x31\xf2\xb1\x31\x10\xf2\xa1\x31\x20\xf1\x91"
                   60019:             "\x31\x30\xf2\x81\x31\x40\xf2\x71\x31\x50\xf2\x61\x31"
                   60020:             "\x60\xf2\x51\x31\x70\xf2\x41\x31\x80\xf1\x31\x31\x90"
                   60021:             "\xf2\x21\x31\xa0\xf2\x11\x31\xb1\x31\xc5\xc1" }  },
                   60022:       /* --- pixel bitmap for bbold250 char#48 0 --- */
                   60023:       {  48,11336,                      /* character number, location */
                   60024:          23, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   60025:           { 15,   24, 3,61, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   60026:             "\x55\x91\x51\x72\x61\x51\x11\x71\x20\xf2\x11\x21\x81"
                   60027:             "\x1f\x91\x31\x91\xf2\x11\x21\x81\x10\x21\x11\x71\x52"
                   60028:             "\x61\x71\x51\x95\x51" }  },
                   60029:       /* --- pixel bitmap for bbold250 char#49 1 --- */
                   60030:       {  49,11673,                      /* character number, location */
                   60031:          22, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   60032:           { 15,   22, 3,36, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   60033:             "\x91\xc3\xa2\x21\x83\x31\x62\x21\x31\x51\x41\x31\x50"
                   60034:             "\xfe\x51\x31\x5e\x01" }  },
                   60035:       /* --- pixel bitmap for bbold250 char#50 2 --- */
                   60036:       {  50,11968,                      /* character number, location */
                   60037:          23, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   60038:           { 15,   23, 3,76, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   60039:             "\x55\x82\x52\x51\x71\x11\x31\x81\x21\x21\x81\x31\x0f"
                   60040:             "\x11\x91\x31\xa1\x31\xf1\xa1\x21\x10\xa1\x11\xc2\xd1"
                   60041:             "\xc2\xb2\xc1\xc2\xc1\xc0\xf1\x11\xdf\x11\xee\x01" }  },
                   60042:       /* --- pixel bitmap for bbold250 char#51 3 --- */
                   60043:       {  51,12253,                      /* character number, location */
                   60044:          23, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   60045:           { 15,   24, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   60046:             "\xe0\x03\x0c\x06\x01\x45\x80\x24\x40\x0c\x20\x06\x10"
                   60047:             "\x01\x88\x00\x24\x00\x0e\xe0\x01\x80\x01\x40\x01\x20"
                   60048:             "\x01\x10\x01\x88\x00\xc4\x00\x62\x00\x51\x80\x24\x40"
                   60049:             "\x22\xa0\x60\x30\xc0\x07" }  },
                   60050:       /* --- pixel bitmap for bbold250 char#52 4 --- */
                   60051:       {  52,12568,                      /* character number, location */
                   60052:          22, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   60053:           { 15,   22, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   60054:             "\x00\x08\x00\x06\x00\x03\x40\x01\x90\x00\x48\x00\x22"
                   60055:             "\x80\x11\xa0\x08\x50\x04\x24\x02\x11\x81\x88\x20\x44"
                   60056:             "\x08\x22\x04\x11\xff\x78\x40\x04\x20\x02\x10\x01\x88"
                   60057:             "\x00\x7c\x00" }  },
                   60058:       /* --- pixel bitmap for bbold250 char#53 5 --- */
                   60059:       {  53,12873,                      /* character number, location */
                   60060:          22, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   60061:           { 15,   23, 3,57, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   60062:             "\x0e\x01\x0f\x41\x31\xaa\xe0\x12\xe0\x11\x20\xf1\xd1"
                   60063:             "\x10\xf4\xe1\x01\xd2\xc1\x21\xb1\x21\xa1\x41\x91\x52"
                   60064:             "\x52\x85\x51" }  },
                   60065:       /* --- pixel bitmap for bbold250 char#54 6 --- */
                   60066:       {  54,13150,                      /* character number, location */
                   60067:          23, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   60068:           { 15,   24, 3,85, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   60069:             "\x55\x82\x52\x51\x91\x20\xf1\x11\xb1\x1f\x11\xd1\x01"
                   60070:             "\x45\x51\x22\x52\x31\x11\x11\x71\x2f\x12\x21\x81\x1f"
                   60071:             "\x51\x31\x91\xf1\x11\x21\x81\x10\xf1\x21\x11\x71\x20"
                   60072:             "\x32\x52\x85\x51" }  },
                   60073:       /* --- pixel bitmap for bbold250 char#55 7 --- */
                   60074:       {  55,13481,                      /* character number, location */
                   60075:          22, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   60076:           { 15,   22, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   60077:             "\xff\x7f\x00\x22\x80\x08\x40\x04\x10\x01\x88\x00\x22"
                   60078:             "\x00\x11\x40\x04\x20\x02\x88\x00\x44\x00\x11\x80\x08"
                   60079:             "\x20\x02\x10\x01\x44\x00\x22\x80\x08\x40\x04\x10\x01"
                   60080:             "\xf8\x00\x00" }  },
                   60081:       /* --- pixel bitmap for bbold250 char#56 8 --- */
                   60082:       {  56,13774,                      /* character number, location */
                   60083:          23, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   60084:           { 15,   24, 3,85, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   60085:             "\x55\x82\x52\x51\x11\x71\x31\x21\x81\x1f\x31\x31\x91"
                   60086:             "\x11\x21\x81\x33\x62\x67\x72\x52\x51\x11\x71\x31\x21"
                   60087:             "\x81\x1f\x41\x31\x91\xf1\x11\x21\x81\x10\x21\x11\x71"
                   60088:             "\x52\x52\x85\x51" }  },
                   60089:       /* --- pixel bitmap for bbold250 char#57 9 --- */
                   60090:       {  57,14107,                      /* character number, location */
                   60091:          23, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   60092:           { 15,   24, 3,85, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   60093:             "\x55\x82\x52\x30\xf1\x21\x11\x71\x20\xf1\x11\x21\x81"
                   60094:             "\x1f\x51\x31\x91\xf1\x11\x21\x82\x21\x11\x71\x11\x32"
                   60095:             "\x52\x21\x55\x41\x0f\x11\xd1\xf1\x11\xb1\x10\x21\x91"
                   60096:             "\x52\x52\x85\x51" }  },
                   60097:       /* --- pixel bitmap for bbold250 char#58 : --- */
                   60098:       {  58,35430,                      /* character number, location */
                   60099:          16, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
                   60100:           {  7,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   60101:             "\x1c\x51\x30\x18\x14\x71\x00\x00\x00\x47\x14\x0c\x06"
                   60102:             "\x45\x1c" }  },
                   60103:       /* --- pixel bitmap for bbold250 char#59 ; --- */
                   60104:       {  59,35690,                      /* character number, location */
                   60105:          16, 0,   -7, 0,      /* topleft row,col, and botleft row,col */
                   60106:           {  7,   23, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   60107:             "\x1c\x51\x30\x18\x14\x71\x00\x00\x00\x47\x14\x0c\x06"
                   60108:             "\xc5\x5c\x10\x08\x82\x20\x08\x00" }  },
                   60109:       /* --- pixel bitmap for bbold250 char#60 < --- */
                   60110:       {  60,35969,                      /* character number, location */
                   60111:          18, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   60112:           { 23,   19, 3,96, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   60113:             "\xe0\x72\xe0\x52\xe0\x43\xe0\x42\xe0\x43\xe0\x42\xe0"
                   60114:             "\x52\xe0\x43\xe0\x42\x12\xe0\x22\x51\xe0\x22\x52\xe0"
                   60115:             "\x22\x52\xe0\x21\x61\xe0\x22\x52\xe0\x22\x52\xe0\x21"
                   60116:             "\x61\xe0\x22\x52\xe0\x22\x52\xe0\x28" }  },
                   60117:       /* --- pixel bitmap for bbold250 char#61 \cdot --- */
                   60118:       {  61,36235,                      /* character number, location */
                   60119:          12, 0,    5, 0,      /* topleft row,col, and botleft row,col */
                   60120:           {  7,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   60121:             "\x1c\x51\x30\x18\x14\x71\x00" }  },
                   60122:       /* --- pixel bitmap for bbold250 char#62 > --- */
                   60123:       {  62,36477,                      /* character number, location */
                   60124:          18, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   60125:           { 23,   19, 3,79, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   60126:             "\x02\xe0\x92\xe0\x93\xe0\x92\xe0\x92\xe0\x93\xe0\x92"
                   60127:             "\xe0\x93\xe0\x62\x12\xe0\x31\x52\xd2\x52\xc2\x52\xd1"
                   60128:             "\x61\xd2\x52\xc2\x52\xd1\x61\xd2\x52\xc2\x52\xd8\xe0"
                   60129:             "\x11" }  },
                   60130:       /* --- pixel bitmap for bbold250 char#63 ? --- */
                   60131:       {  63,36749,                      /* character number, location */
                   60132:          25, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   60133:           { 17,   26, 3,91, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   60134:             "\x66\x92\x62\x61\xa1\x41\xc1\x21\xe1\x0f\x11\xe0\x11"
                   60135:             "\xf1\xe0\x21\xe0\x11\xe2\xb4\xc1\x11\xd1\x21\x60\xf1"
                   60136:             "\x61\x31\x60\x65\x60\xf1\xe0\x30\x73\xd1\x31\x60\xf2"
                   60137:             "\x51\x51\x50\x61\x31\xd3\x72" }  },
                   60138:       /* --- pixel bitmap for bbold250 char#64 @ --- */
                   60139:       {  64,37037,                      /* character number, location */
                   60140:          25, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   60141:           { 16,   26, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   60142:             "\xe0\x03\x10\x0c\x18\x10\x14\x10\x14\x20\x12\x40\x12"
                   60143:             "\x40\x12\x40\x11\x80\x11\x90\x11\xec\x11\x82\x11\x82"
                   60144:             "\x11\x82\x11\x82\x11\x6c\x11\x10\x11\x00\x12\x00\x12"
                   60145:             "\x40\x12\x40\x14\x20\x14\x20\x18\x10\x10\x0c\xe0\x03" }  },
                   60146:       /* --- pixel bitmap for bbold250 char#65 A --- */
                   60147:       {  65,14438,                      /* character number, location */
                   60148:          24, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   60149:           { 19,   24, 3,96, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   60150:             "\xf1\x91\x90\xf1\x81\x11\x80\xf2\x71\x31\x70\xf1\x61"
                   60151:             "\x31\x11\x60\xf2\x51\x31\x31\x50\xf2\x41\x31\x51\x40"
                   60152:             "\xf1\x31\x31\x71\x30\x21\x31\x91\x41\x3b\x41\x31\x91"
                   60153:             "\x20\xf1\x11\x31\xb1\x11\x31\xd6\xd1" }  },
                   60154:       /* --- pixel bitmap for bbold250 char#66 B --- */
                   60155:       {  66,14769,                      /* character number, location */
                   60156:          24, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   60157:           { 17,   24, 3,97, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   60158:             "\x0c\x51\x31\x72\x31\x31\x91\x21\x31\xa1\x1f\x31\x31"
                   60159:             "\xb1\x01\x31\xa1\x11\x31\x91\x21\x31\x72\x31\x38\x51"
                   60160:             "\x31\x72\x31\x31\x91\x21\x31\xa1\x1f\x41\x31\xb1\x01"
                   60161:             "\x31\xa1\x11\x31\x91\x21\x31\x72\x3c\x51" }  },
                   60162:       /* --- pixel bitmap for bbold250 char#67 C --- */
                   60163:       {  67,15112,                      /* character number, location */
                   60164:          25, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   60165:           { 19,   26, 3,87, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   60166:             "\x76\xb2\x62\x81\xa1\x62\xb1\x41\x11\xc1\x31\x11\xd1"
                   60167:             "\x11\x21\xd1\xf1\x11\x21\xef\x71\x31\xe0\xf1\x11\x21"
                   60168:             "\xe0\x11\x21\xd1\x21\x11\xd1\x21\x11\xc1\x42\xb1\x61"
                   60169:             "\xa1\x82\x62\xb6\x61" }  },
                   60170:       /* --- pixel bitmap for bbold250 char#68 D --- */
                   60171:       {  68,15433,                      /* character number, location */
                   60172:          24, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   60173:           { 19,   24, 3,81, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   60174:             "\x0c\x71\x31\x72\x51\x31\x91\x41\x31\xa1\x3f\x11\x31"
                   60175:             "\xb1\x2f\x11\x31\xc1\x1f\x71\x31\xd1\x0f\x11\x31\xc1"
                   60176:             "\x1f\x11\x31\xb1\x21\x31\xa1\x31\x31\x91\x41\x31\x72"
                   60177:             "\x5c\x72" }  },
                   60178:       /* --- pixel bitmap for bbold250 char#69 E --- */
                   60179:       {  69,15778,                      /* character number, location */
                   60180:          24, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   60181:           { 17,   24, 3,24, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   60182:             "\x0e\x03\x0f\x91\x31\xc1\x36\x7f\xa1\x31\xce\x03" }  },
                   60183:       /* --- pixel bitmap for bbold250 char#70 F --- */
                   60184:       {  70,16079,                      /* character number, location */
                   60185:          24, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   60186:           { 17,   24, 3,23, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   60187:             "\x0e\x03\x0f\x91\x31\xc1\x36\x7f\xa1\x31\xc5\xc3" }  },
                   60188:       /* --- pixel bitmap for bbold250 char#71 G --- */
                   60189:       {  71,16380,                      /* character number, location */
                   60190:          25, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   60191:           { 19,   26, 3,93, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   60192:             "\x76\xb2\x62\x81\xa1\x62\xb1\x41\x11\xc1\x31\x11\xd1"
                   60193:             "\x11\x21\xd1\xf1\x11\x21\xef\x31\x31\xe1\x31\x86\x0f"
                   60194:             "\x21\x31\xd1\xf2\x11\x21\xd1\x21\x11\xd1\x21\x11\xc1"
                   60195:             "\x42\xb1\x61\xa1\x82\x62\xb6\x62" }  },
                   60196:       /* --- pixel bitmap for bbold250 char#72 H --- */
                   60197:       {  72,16713,                      /* character number, location */
                   60198:          24, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   60199:           { 19,   24, 3,30, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   60200:             "\x05\xd1\x0f\x91\x31\xd1\x01\x3e\x01\x0f\xa1\x31\xd1"
                   60201:             "\x05\xd1" }  },
                   60202:       /* --- pixel bitmap for bbold250 char#73 I --- */
                   60203:       {  73,17060,                      /* character number, location */
                   60204:          24, 3,    0, 3,      /* topleft row,col, and botleft row,col */
                   60205:           {  5,   24, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   60206:             "\x05\x0f\xe1\x31\x0f\x61\x31\x05" }  },
                   60207:       /* --- pixel bitmap for bbold250 char#74 J --- */
                   60208:       {  74,17361,                      /* character number, location */
                   60209:          24, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   60210:           { 17,   25, 3,47, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   60211:             "\xc5\xfe\xc1\x31\xc1\x31\xc1\x21\x1f\x11\xb1\x21\x10"
                   60212:             "\x11\xa1\x11\x41\x92\x61\x82\x72\x52\xa5\x61" }  },
                   60213:       /* --- pixel bitmap for bbold250 char#75 K --- */
                   60214:       {  75,17672,                      /* character number, location */
                   60215:          24, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   60216:           { 17,   24, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   60217:             "\x1f\x00\x23\x00\x45\x00\x8a\x00\x12\x01\x22\x02\x42"
                   60218:             "\x04\x84\x08\x04\x11\x04\x22\x04\x44\x08\x88\x08\x10"
                   60219:             "\x29\x20\x52\x40\x14\x81\x18\x04\x11\x08\x22\x20\x44"
                   60220:             "\x80\x88\x00\x11\x01\x24\x02\x50\x04\xa0\x0f\x80" }  },
                   60221:       /* --- pixel bitmap for bbold250 char#76 L --- */
                   60222:       {  76,18027,                      /* character number, location */
                   60223:          24, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   60224:           { 17,   24, 3,18, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   60225:             "\x05\xcf\xe1\x31\xcf\x61\x31\xce\x03" }  },
                   60226:       /* --- pixel bitmap for bbold250 char#77 M --- */
                   60227:       {  77,18328,                      /* character number, location */
                   60228:          24, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   60229:           { 19,   24, 3,88, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   60230:             "\x01\xe0\x33\xe0\x12\x0f\x11\x11\xd1\x11\x01\x21\xb1"
                   60231:             "\x22\x31\x91\x32\x32\x71\x42\x31\x11\x51\x51\x0f\x11"
                   60232:             "\x31\x21\x31\x61\x01\x31\x31\x11\x72\x31\x41\x81\x0f"
                   60233:             "\xa1\x31\xd1\x05\xd1" }  },
                   60234:       /* --- pixel bitmap for bbold250 char#78 N --- */
                   60235:       {  78,18703,                      /* character number, location */
                   60236:          24, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   60237:           { 19,   24, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   60238:             "\x01\x00\x1c\x00\x60\x01\x00\x0b\x00\x98\x00\xc0\x08"
                   60239:             "\x00\xc6\x00\x30\x06\x80\x51\x00\x8c\x04\x60\x44\x00"
                   60240:             "\x23\x04\x18\x21\xc0\x08\x02\x46\x20\x30\x02\x82\x11"
                   60241:             "\x20\x8c\x00\x61\x04\x10\x23\x00\x19\x01\xd0\x08\x80"
                   60242:             "\x46\x00\xf8\x03\x80" }  },
                   60243:       /* --- pixel bitmap for bbold250 char#79 O --- */
                   60244:       {  79,19078,                      /* character number, location */
                   60245:          25, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   60246:           { 19,   26, 3,77, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   60247:             "\x75\xc2\x52\x91\x91\x72\xa1\x30\xf1\x21\x11\xb1\x20"
                   60248:             "\xf2\x11\x21\xc1\x1f\x71\x31\xd1\xf2\x11\x21\xc1\x10"
                   60249:             "\xf1\x21\x11\xb1\x20\x32\xa1\x71\x91\x92\x52\xc5\x71" }  },
                   60250:       /* --- pixel bitmap for bbold250 char#80 P --- */
                   60251:       {  80,19423,                      /* character number, location */
                   60252:          24, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   60253:           { 17,   24, 3,59, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   60254:             "\x0c\x51\x31\x72\x31\x31\x91\x21\x31\xa1\x1f\x31\x31"
                   60255:             "\xb1\x01\x31\xa1\x11\x31\x91\x21\x31\x72\x31\x38\x5f"
                   60256:             "\xa1\x31\xc5\xc1" }  },
                   60257:       /* --- pixel bitmap for bbold250 char#81 Q --- */
                   60258:       {  81,19744,                      /* character number, location */
                   60259:          25, 1,   -7, 1,      /* topleft row,col, and botleft row,col */
                   60260:           { 19,   32, 3,128, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   60261:             "\x75\xc2\x52\x91\x91\x72\xa1\x30\xf1\x21\x11\xb1\x20"
                   60262:             "\xf2\x11\x21\xc1\x1f\x71\x31\xd1\x11\x21\xc1\x21\x21"
                   60263:             "\x41\x71\x21\x21\x51\x61\x31\x11\x51\x51\x41\x11\x61"
                   60264:             "\x41\x52\x71\x21\x71\x71\x11\x92\x52\xc5\x21\x40\xf1"
                   60265:             "\xe0\x11\x30\xe0\x21\x20\xf1\xe0\x31\x10\xe0\x41" }  },
                   60266:       /* --- pixel bitmap for bbold250 char#82 R --- */
                   60267:       {  82,20115,                      /* character number, location */
                   60268:          24, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   60269:           { 17,   24, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   60270:             "\xff\x0f\x22\x60\x44\x00\x89\x00\x14\x01\x30\x02\x60"
                   60271:             "\x04\xc0\x08\x80\x11\x80\x22\x80\x44\xc0\x88\x7f\x10"
                   60272:             "\x21\x20\x42\x40\x04\x81\x08\x04\x11\x08\x22\x20\x44"
                   60273:             "\x80\x88\x00\x11\x01\x24\x02\x50\x04\xa0\x0f\x80" }  },
                   60274:       /* --- pixel bitmap for bbold250 char#83 S --- */
                   60275:       {  83,20460,                      /* character number, location */
                   60276:          25, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   60277:           { 17,   26, 3,103, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   60278:             "\x56\x92\x62\x61\x11\x81\x41\x21\x91\x31\x21\xa1\x1f"
                   60279:             "\x11\x31\xb1\x0f\x11\x31\xc0\x11\x21\xe1\x11\xe0\x12"
                   60280:             "\xe0\x37\xe0\x32\xe0\x31\xe0\x31\x10\xf2\xe0\x21\x0f"
                   60281:             "\x11\xe0\x11\x11\xd1\x31\xc1\x41\x92\x62\x52\xa5\x61" }  },
                   60282:       /* --- pixel bitmap for bbold250 char#84 T --- */
                   60283:       {  84,20763,                      /* character number, location */
                   60284:          24, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   60285:           { 19,   24, 3,23, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   60286:             "\x0e\x05\xfe\x71\x31\x70\xf6\x71\x31\x70\x75\x71" }  },
                   60287:       /* --- pixel bitmap for bbold250 char#85 U --- */
                   60288:       {  85,21064,                      /* character number, location */
                   60289:          24, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   60290:           { 19,   25, 3,47, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   60291:             "\x05\xd1\x0f\xe1\x31\xd1\xf2\x11\x21\xc1\x10\xf1\x21"
                   60292:             "\x11\xb1\x20\x32\xa1\x71\x91\x92\x52\xc5\x71" }  },
                   60293:       /* --- pixel bitmap for bbold250 char#86 V --- */
                   60294:       {  86,21411,                      /* character number, location */
                   60295:          24, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   60296:           { 19,   24, 3,89, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   60297:             "\x05\xd2\x31\xd1\xf1\x11\x31\xb1\x10\xf2\x21\x31\x91"
                   60298:             "\x20\xf1\x31\x31\x71\x30\xf2\x41\x31\x51\x40\xf2\x51"
                   60299:             "\x31\x31\x50\xf1\x61\x31\x11\x60\xf2\x71\x31\x70\xf1"
                   60300:             "\x81\x11\x80\xf1\x91\x91" }  },
                   60301:       /* --- pixel bitmap for bbold250 char#87 W --- */
                   60302:       {  87,21744,                      /* character number, location */
                   60303:          24, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   60304:           { 27,   24, 3,137, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   60305:             "\x05\xe0\x72\x31\xe0\x71\xf3\x11\x31\xe0\x51\x10\xf2"
                   60306:             "\x21\x31\xe0\x31\x20\xf1\x31\x31\xe0\x11\x30\x31\x31"
                   60307:             "\x51\x91\x61\x31\x41\x11\x81\x71\x31\x31\x11\x71\x40"
                   60308:             "\xf1\x41\x31\x21\x31\x61\x40\xf1\x51\x32\x51\x41\x50"
                   60309:             "\xf1\x51\x31\x71\x31\x50\xf1\x61\x11\x91\x11\x60\x62"
                   60310:             "\xb2\xd1\xc1\x60" }  },
                   60311:       /* --- pixel bitmap for bbold250 char#88 X --- */
                   60312:       {  88,22121,                      /* character number, location */
                   60313:          24, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   60314:           { 19,   24, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   60315:             "\x01\xc0\x17\x00\x11\x01\x88\x08\x20\x82\x00\x11\x08"
                   60316:             "\x44\x80\x10\x01\x84\x08\x40\x22\x00\x14\x01\x40\x04"
                   60317:             "\x00\x11\x00\x88\x00\x20\x02\x80\x28\x00\x44\x02\x10"
                   60318:             "\x21\x80\x08\x01\x22\x10\x88\x00\x41\x04\x10\x11\x80"
                   60319:             "\x88\x00\xe8\x03\x80" }  },
                   60320:       /* --- pixel bitmap for bbold250 char#89 Y --- */
                   60321:       {  89,22462,                      /* character number, location */
                   60322:          24, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   60323:           { 19,   24, 3,71, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   60324:             "\x05\xd1\xf1\x11\x31\xb1\x10\x21\x31\x91\x20\xf1\x31"
                   60325:             "\x31\x71\x30\xf1\x41\x31\x51\x40\x51\x31\x31\x50\xf1"
                   60326:             "\x61\x31\x11\x60\xfb\x71\x31\x70\x75\x70" }  },
                   60327:       /* --- pixel bitmap for bbold250 char#90 Z --- */
                   60328:       {  90,22785,                      /* character number, location */
                   60329:          24, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   60330:           { 19,   24, 3,102, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   60331:             "\x0e\x05\xf1\xd1\x31\x10\xf1\xc1\x31\x20\xb1\x31\x30"
                   60332:             "\xf1\xa1\x31\x40\xf1\x91\x31\x50\x81\x31\x60\xf1\x71"
                   60333:             "\x31\x70\x61\x31\x80\xf1\x51\x31\x90\xf1\x41\x31\xa0"
                   60334:             "\x31\x31\xb0\xf1\x21\x31\xc0\xf1\x11\x31\xde\x05" }  },
                   60335:       /* --- pixel bitmap for bbold250 char#91 [ --- */
                   60336:       {  91,37407,                      /* character number, location */
                   60337:          26, 2,   -9, 2,      /* topleft row,col, and botleft row,col */
                   60338:           {  9,   35, 2,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   60339:             "\x00\x09\x00\xff\x20\x01\x03\x01\x04\x09" }  },
                   60340:       /* --- pixel bitmap for bbold250 char#92 \\ --- */
                   60341:       {  92,37757,                      /* character number, location */
                   60342:          26, 0,   -9, 0,      /* topleft row,col, and botleft row,col */
                   60343:           { 17,   35, 3,102, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   60344:             "\x05\xc1\x31\xc0\xf2\x11\x31\xb0\xf2\x21\x31\xa0\xf1"
                   60345:             "\x31\x31\x90\xf2\x41\x31\x80\xf2\x51\x31\x70\xf2\x61"
                   60346:             "\x31\x60\xf2\x71\x31\x50\xf2\x81\x31\x40\xf1\x91\x31"
                   60347:             "\x30\xf2\xa1\x31\x20\xf2\xb1\x31\x10\xc1\x31\xc5" }  },
                   60348:       /* --- pixel bitmap for bbold250 char#93 ] --- */
                   60349:       {  93,38114,                      /* character number, location */
                   60350:          26, 0,   -9, 0,      /* topleft row,col, and botleft row,col */
                   60351:           {  9,   35, 2,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   60352:             "\x00\x09\xff\x20\x04\x01\x03\x01\x00\x09" }  },
                   60353:       /* --- pixel bitmap for bbold250 char#94 (noname) --- */
                   60354:       {  94,38465,                      /* character number, location */
                   60355:          26, 2,   -9, 2,      /* topleft row,col, and botleft row,col */
                   60356:           {  9,   35, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   60357:             "\x00\x01\x02\x02\x04\x04\x08\x18\x30\x50\xa0\x20\x41"
                   60358:             "\x42\x84\x88\x10\x21\x41\x82\x04\x11\x22\x84\x08\x11"
                   60359:             "\x24\x48\xa0\x40\x01\x03\x06\x08\x10\x40\x80\x00\x02"
                   60360:             "\x04" }  },
                   60361:       /* --- pixel bitmap for bbold250 char#95 (noname) --- */
                   60362:       {  95,38789,                      /* character number, location */
                   60363:          26, 0,   -9, 0,      /* topleft row,col, and botleft row,col */
                   60364:           {  9,   35, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   60365:             "\x01\x02\x08\x10\x40\x80\x00\x03\x06\x14\x28\x90\x20"
                   60366:             "\x41\x84\x08\x21\x42\x04\x09\x12\x24\x44\x88\x08\x11"
                   60367:             "\x12\x24\x28\x50\x60\xc0\x80\x00\x01\x01\x02\x02\x04"
                   60368:             "\x00" }  },
                   60369:       /* --- pixel bitmap for bbold250 char#96 (noname) --- */
                   60370:       {  96,39116,                      /* character number, location */
                   60371:          24, 0,   10, 0,      /* topleft row,col, and botleft row,col */
                   60372:           {  7,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   60373:             "\x20\x08\x82\x40\x10\x08\x3a\xa3\x60\x30\x28\xe2\x00" }  },
                   60374:       /* --- pixel bitmap for bbold250 char#97 a --- */
                   60375:       {  97,23086,                      /* character number, location */
                   60376:          16, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
                   60377:           { 14,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   60378:             "\xe0\x03\x06\x49\x81\x4b\xc0\x12\x60\x04\x18\x01\x46"
                   60379:             "\x80\x11\x60\x04\x18\x01\x46\x80\x12\xa0\x04\x4c\x81"
                   60380:             "\x63\x90\xe0\x03" }  },
                   60381:       /* --- pixel bitmap for bbold250 char#98 b --- */
                   60382:       {  98,23389,                      /* character number, location */
                   60383:          24, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   60384:           { 19,   25, 3,83, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   60385:             "\x05\xef\x61\x31\xe1\x31\x45\x51\x31\x22\x52\x31\x31"
                   60386:             "\x11\x91\x21\x32\xa1\x2f\x11\x31\xc1\x1f\x41\x31\xd1"
                   60387:             "\x0f\x11\x31\xc1\x11\x32\xa1\x21\x31\x11\x91\x25\x22"
                   60388:             "\x52\xc5\x50" }  },
                   60389:       /* --- pixel bitmap for bbold250 char#99 c --- */
                   60390:       {  99,23732,                      /* character number, location */
                   60391:          16, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
                   60392:           { 14,   17, 3,57, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   60393:             "\x55\x72\x51\x51\x11\x62\x21\x21\x71\x21\x21\x81\x0f"
                   60394:             "\x61\x31\x90\x11\x21\x81\x11\x21\x71\x31\x11\x62\x42"
                   60395:             "\x51\x85\x41" }  },
                   60396:       /* --- pixel bitmap for bbold250 char#100 d --- */
                   60397:       { 100,24017,                      /* character number, location */
                   60398:          24, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
                   60399:           { 14,   25, 3,67, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   60400:             "\xf7\xd1\x55\x31\x32\x51\x21\x21\x11\x63\x11\x21\x72"
                   60401:             "\x11\x21\x81\x0f\x61\x31\x81\x11\x21\x81\x11\x21\x72"
                   60402:             "\x21\x11\x63\x32\x51\x21\x55\x41" }  },
                   60403:       /* --- pixel bitmap for bbold250 char#101 e --- */
                   60404:       { 101,24338,                      /* character number, location */
                   60405:          16, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
                   60406:           { 14,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   60407:             "\xe0\x03\x06\x41\x81\x48\x40\x12\x60\x04\x18\x01\xc6"
                   60408:             "\xff\x11\x40\x04\x10\x01\x44\x00\x12\xa0\x04\x44\x81"
                   60409:             "\x61\x10\xe0\x03" }  },
                   60410:       /* --- pixel bitmap for bbold250 char#102 f --- */
                   60411:       { 102,24627,                      /* character number, location */
                   60412:          25, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   60413:           { 12,   25, 3,41, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   60414:             "\x44\x72\x32\x41\x11\x51\x10\xf1\x11\x21\x61\x0f\x41"
                   60415:             "\x31\x71\x34\x4f\xc1\x31\x75\x71" }  },
                   60416:       /* --- pixel bitmap for bbold250 char#103 g --- */
                   60417:       { 103,24938,                      /* character number, location */
                   60418:          16, 0,   -8, 0,      /* topleft row,col, and botleft row,col */
                   60419:           { 14,   24, 3,81, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   60420:             "\x55\x72\x51\x21\x21\x11\x63\x11\x21\x72\x11\x21\x81"
                   60421:             "\x0f\x61\x31\x81\x11\x21\x81\x11\x21\x72\x21\x11\x63"
                   60422:             "\x32\x51\x21\x55\x31\xf1\xd1\xf1\xc1\x11\xa1\x33\x52"
                   60423:             "\x75\x55" }  },
                   60424:       /* --- pixel bitmap for bbold250 char#104 h --- */
                   60425:       { 104,25261,                      /* character number, location */
                   60426:          24, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   60427:           { 16,   24, 3,48, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   60428:             "\x05\xbf\x61\x31\xb1\x31\x34\x41\x31\x12\x41\x31\x32"
                   60429:             "\x71\x2f\x11\x31\x91\x1f\x91\x31\xa1\x05\xa1" }  },
                   60430:       /* --- pixel bitmap for bbold250 char#105 i --- */
                   60431:       { 105,25596,                      /* character number, location */
                   60432:          24, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   60433:           {  7,   24, 3,39, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   60434:             "\x23\x31\x31\x1f\x21\x51\x11\x31\x33\x20\xf1\x70\x15"
                   60435:             "\x10\xfc\x11\x31\x10\x15\x11" }  },
                   60436:       /* --- pixel bitmap for bbold250 char#106 j --- */
                   60437:       { 106,25887,                      /* character number, location */
                   60438:          24, 0,   -8, 0,      /* topleft row,col, and botleft row,col */
                   60439:           { 13,   32, 3,65, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   60440:             "\x83\x91\x31\x10\xf2\x61\x51\x71\x31\x93\x20\xf1\xd0"
                   60441:             "\x75\x10\xfe\x71\x31\x10\xf1\x71\x31\x10\xf1\x71\x21"
                   60442:             "\x21\x61\x11\x42\x42\x75\x51" }  },
                   60443:       /* --- pixel bitmap for bbold250 char#107 k --- */
                   60444:       { 107,26212,                      /* character number, location */
                   60445:          24, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   60446:           { 16,   24, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   60447:             "\x1f\x00\x11\x00\x11\x00\x11\x00\x11\x00\x11\x00\x11"
                   60448:             "\x00\x11\x00\x11\x00\x11\x80\x11\x40\x11\x30\x11\x08"
                   60449:             "\x11\x04\x11\x02\x91\x01\x51\x01\x31\x02\x11\x04\x11"
                   60450:             "\x08\x11\x10\x11\x20\x11\x40\x1f\x80" }  },
                   60451:       /* --- pixel bitmap for bbold250 char#108 l --- */
                   60452:       { 108,26545,                      /* character number, location */
                   60453:          24, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   60454:           {  5,   24, 3,21, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   60455:             "\x05\x0f\xe1\x31\x0f\x51\x31\x11\x21\x22\x11" }  },
                   60456:       /* --- pixel bitmap for bbold250 char#109 m --- */
                   60457:       { 109,26846,                      /* character number, location */
                   60458:          16, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   60459:           { 21,   16, 3,48, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   60460:             "\x73\x53\x37\x31\x31\x31\x21\x32\x51\x11\x51\x11\x31"
                   60461:             "\x61\x11\x51\x1f\xa1\x31\x71\x71\x05\x71\x71" }  },
                   60462:       /* --- pixel bitmap for bbold250 char#110 n --- */
                   60463:       { 110,27181,                      /* character number, location */
                   60464:          16, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   60465:           { 16,   16, 3,34, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   60466:             "\x84\x45\x12\x41\x31\x32\x71\x2f\x11\x31\x91\x1f\x91"
                   60467:             "\x31\xa1\x05\xa1" }  },
                   60468:       /* --- pixel bitmap for bbold250 char#111 o --- */
                   60469:       { 111,27480,                      /* character number, location */
                   60470:          16, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
                   60471:           { 14,   17, 3,53, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   60472:             "\x54\x82\x42\x51\x11\x61\x20\xf1\x11\x21\x71\x1f\x61"
                   60473:             "\x31\x81\xf1\x11\x21\x71\x10\x21\x11\x61\x52\x42\x84"
                   60474:             "\x51" }  },
                   60475:       /* --- pixel bitmap for bbold250 char#112 p --- */
                   60476:       { 112,27779,                      /* character number, location */
                   60477:          16, 1,   -7, 1,      /* topleft row,col, and botleft row,col */
                   60478:           { 19,   23, 3,83, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   60479:             "\x95\x55\x22\x52\x31\x31\x11\x91\x21\x32\xa1\x2f\x11"
                   60480:             "\x31\xc1\x1f\x41\x31\xd1\x0f\x11\x31\xc1\x11\x32\xa1"
                   60481:             "\x21\x31\x11\x91\x21\x31\x22\x52\x31\x31\x45\x5f\x41"
                   60482:             "\x31\xe5\xe1" }  },
                   60483:       /* --- pixel bitmap for bbold250 char#113 q --- */
                   60484:       { 113,28114,                      /* character number, location */
                   60485:          16, 0,   -7, 0,      /* topleft row,col, and botleft row,col */
                   60486:           { 14,   23, 3,66, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   60487:             "\x55\x72\x51\x21\x21\x11\x63\x11\x21\x72\x11\x21\x81"
                   60488:             "\x0f\x61\x31\x81\x11\x21\x81\x11\x21\x72\x21\x11\x63"
                   60489:             "\x32\x51\x21\x55\x31\xf5\xd1" }  },
                   60490:       /* --- pixel bitmap for bbold250 char#114 r --- */
                   60491:       { 114,28431,                      /* character number, location */
                   60492:          16, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   60493:           { 16,   16, 3,31, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   60494:             "\x84\x45\x12\x42\x21\x32\x81\x1f\x11\x31\xa1\x0f\x91"
                   60495:             "\x31\xb5\xb1" }  },
                   60496:       /* --- pixel bitmap for bbold250 char#115 s --- */
                   60497:       { 115,28708,                      /* character number, location */
                   60498:          16, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
                   60499:           { 12,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   60500:             "\xf8\x40\x31\x12\x14\x81\x11\x18\x01\x16\x80\x0f\x00"
                   60501:             "\x02\x40\x00\x08\x80\x01\x18\x80\x02\xc4\x30\xf0\x00" }  },
                   60502:       /* --- pixel bitmap for bbold250 char#116 t --- */
                   60503:       { 116,28979,                      /* character number, location */
                   60504:          24, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   60505:           { 12,   25, 3,41, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   60506:             "\x05\x7f\x71\x31\x71\x38\x0f\x91\x31\x70\xf1\x11\x21"
                   60507:             "\x61\x21\x11\x51\x42\x32\x64\x41" }  },
                   60508:       /* --- pixel bitmap for bbold250 char#117 u --- */
                   60509:       { 117,29290,                      /* character number, location */
                   60510:          15, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   60511:           { 14,   16, 3,37, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   60512:             "\x05\x81\x0f\x91\x31\x81\xf1\x11\x21\x72\x21\x11\x61"
                   60513:             "\x11\x32\x42\x21\x54\x52" }  },
                   60514:       /* --- pixel bitmap for bbold250 char#118 v --- */
                   60515:       { 118,29591,                      /* character number, location */
                   60516:          15, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   60517:           { 15,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   60518:             "\x1f\x40\x08\x90\x08\x08\x04\x42\x04\x41\x42\x20\x22"
                   60519:             "\x20\x09\x10\x05\x90\x01\x88\x00\x68\x00\x14\x00\x0c"
                   60520:             "\x00\x02\x00" }  },
                   60521:       /* --- pixel bitmap for bbold250 char#119 w --- */
                   60522:       { 119,29868,                      /* character number, location */
                   60523:          15, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   60524:           { 21,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   60525:             "\x1f\x00\x30\x02\x00\x8a\x00\x20\x11\x00\x24\x02\x80"
                   60526:             "\x88\x00\x08\x11\x01\x21\x52\x10\x88\x0a\x02\x31\x42"
                   60527:             "\x40\x42\x04\x48\x90\x00\x05\x14\xc0\x80\x01\x08\x20"
                   60528:             "\x00" }  },
                   60529:       /* --- pixel bitmap for bbold250 char#120 x --- */
                   60530:       { 120,30179,                      /* character number, location */
                   60531:          15, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   60532:           { 14,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   60533:             "\x01\xbe\x40\x44\x10\x21\x22\x50\x04\x18\x01\x22\x40"
                   60534:             "\x04\x10\x01\x62\x80\x28\x10\x11\x22\x88\x08\xf4\x01"
                   60535:             "\x02" }  },
                   60536:       /* --- pixel bitmap for bbold250 char#121 y --- */
                   60537:       { 121,30464,                      /* character number, location */
                   60538:          15, 0,   -8, 0,      /* topleft row,col, and botleft row,col */
                   60539:           { 15,   23, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   60540:             "\x1f\x40\x08\x90\x08\x08\x04\x42\x04\x41\x42\x20\x22"
                   60541:             "\x20\x09\x10\x05\x90\x01\x88\x00\x68\x00\x14\x00\x0c"
                   60542:             "\x00\x02\x80\x00\x40\x00\x10\x00\x04\x00\x02\xc0\x00"
                   60543:             "\x10\x00\x04\x00\x00" }  },
                   60544:       /* --- pixel bitmap for bbold250 char#122 z --- */
                   60545:       { 122,30757,                      /* character number, location */
                   60546:          15, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   60547:           { 14,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   60548:             "\xff\x3f\x40\x04\x10\x01\x22\x40\x04\x10\x01\x22\x40"
                   60549:             "\x04\x10\x01\x22\x80\x08\x10\x01\x22\x80\x08\xf0\xff"
                   60550:             "\x03" }  },
                   60551:       /* --- pixel bitmap for bbold250 char#123 \- --- */
                   60552:       { 123,39714,                      /* character number, location */
                   60553:          10, 0,    9, 0,      /* topleft row,col, and botleft row,col */
                   60554:           { 13,    1, 3, 2, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   60555:             "\x0d" }  },
                   60556:       /* --- pixel bitmap for bbold250 char#124 | --- */
                   60557:       { 124,39369,                      /* character number, location */
                   60558:          26, 3,   -9, 3,      /* topleft row,col, and botleft row,col */
                   60559:           {  5,   35, 2,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   60560:             "\x00\x05\x00\xff\x20\x01\x03\x01\x00\x05" }  },
                   60561:       /* --- pixel bitmap for bbold250 char#125 (noname) --- */
                   60562:       { 125,39926,                      /* character number, location */
                   60563:          10, 0,    9, 0,      /* topleft row,col, and botleft row,col */
                   60564:           { 27,    1, 3, 4, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   60565:             "\x0e\x0d" }  },
                   60566:       /* --- pixel bitmap for bbold250 char#126 (noname) --- */
                   60567:       { 126,40144,                      /* character number, location */
                   60568:          24, 0,   10, 0,      /* topleft row,col, and botleft row,col */
                   60569:           { 17,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   60570:             "\x20\x80\x20\x80\x20\x80\x20\x80\x40\x00\x41\x00\x81"
                   60571:             "\x00\x82\x0e\x3a\x23\x8c\x82\x08\x06\x11\x0c\x22\x28"
                   60572:             "\x82\x88\x03\x0e" }  },
                   60573:       /* --- pixel bitmap for bbold250 char#127 \omega --- */
                   60574:       { 127,11013,                      /* character number, location */
                   60575:          15, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
                   60576:           { 21,   16, 3,79, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   60577:             "\x41\xb1\x72\xc1\x51\x11\xd1\x20\xf1\x11\x21\xe1\x11"
                   60578:             "\x31\xe0\x11\x0f\x41\x31\x51\x91\xf1\x11\x21\x41\x11"
                   60579:             "\x71\x10\x21\x11\x31\x31\x51\x43\x22\x32\x32\x63\x73"
                   60580:             "\x41" }  },
                   60581:       /* --- trailer  --- */
                   60582:       { -99, -999,  0,0,0,0, { 0,0,0,0, (pixbyte *)"\0" }  }
                   60583:    } ;
                   60584: 
                   60585: 
1.5     ! raeburn  60586: /* --- size=8 for .325gf ---
        !          60587:  * mf '\mode=preview; mag=magstep(-11.40956951729850636869); input bbold10'
        !          60588:  * --------------------------------------------------------------------- */
        !          60589: /* --- fontdef for bbold325 --- */
        !          60590: static	chardef  bbold325[] =
        !          60591:    {
        !          60592:       /* --- pixel bitmap for bbold325 char#0 \Gamma --- */
        !          60593:       {   0,  246,                      /* character number, location */
        !          60594:          31, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          60595:           { 22,   31, 3,23, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          60596:             "\xf1\x0e\x08\x0f\xe2\x42\xef\xb2\x42\xef\x18\xe0" }  },
        !          60597:       /* --- pixel bitmap for bbold325 char#1 \Delta --- */
        !          60598:       {   1,  580,                      /* character number, location */
        !          60599:          31, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          60600:           { 24,   31, 3,152, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          60601:             "\xf1\xb2\xb0\xf1\xa4\xa0\x96\x90\xf1\x92\x22\x90\x83"
        !          60602:             "\x23\x80\xf1\x82\x42\x80\x73\x34\xe2\x44\xd3\x36\x60"
        !          60603:             "\xf1\x62\x42\x22\x60\x53\x33\x23\x50\xf1\x52\x42\x42"
        !          60604:             "\x50\x43\x33\x43\x82\x42\x62\x73\x33\x63\x30\xf1\x32"
        !          60605:             "\x42\x82\x30\x23\x33\x83\x20\xf1\x22\x42\xa2\x20\x13"
        !          60606:             "\x33\xa3\x22\x42\xc2\x13\x33\xc3\x0f\x1e\x0a" }  },
        !          60607:       /* --- pixel bitmap for bbold325 char#2 \Theta --- */
        !          60608:       {   2,  940,                      /* character number, location */
        !          60609:          32, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          60610:           { 25,   33, 3,147, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          60611:             "\x97\xe0\x2b\xd3\x73\xb3\x93\x94\xa3\x75\xb3\x53\x12"
        !          60612:             "\xc3\x42\x22\xd2\x33\x22\xd3\x10\xf1\x12\x32\xe2\x13"
        !          60613:             "\x32\xe3\x0f\x22\x42\xe0\x12\x02\x42\x47\x44\x42\x39"
        !          60614:             "\x32\x0f\x32\x42\xe0\x12\x03\x32\xe3\xf1\x12\x32\xe2"
        !          60615:             "\x10\x13\x22\xd3\x32\x22\xd2\x43\x12\xc3\x55\xb3\x74"
        !          60616:             "\xa3\x93\x93\xb3\x73\xdb\xe0\x27\x9f" }  },
        !          60617:       /* --- pixel bitmap for bbold325 char#3 \Lambda --- */
        !          60618:       {   3, 1329,                      /* character number, location */
        !          60619:          31, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          60620:           { 24,   31, 3,152, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          60621:             "\xf1\xb2\xb0\xf1\xa4\xa0\x96\x90\xf1\x92\x22\x90\x83"
        !          60622:             "\x23\x80\xf1\x82\x42\x80\x73\x34\xe2\x44\xd3\x36\x60"
        !          60623:             "\xf1\x62\x42\x22\x60\x53\x33\x23\x50\xf1\x52\x42\x42"
        !          60624:             "\x50\x43\x33\x43\x82\x42\x62\x73\x33\x63\x30\xf1\x32"
        !          60625:             "\x42\x82\x30\x23\x33\x83\x20\xf1\x22\x42\xa2\x20\x13"
        !          60626:             "\x33\xa3\x22\x42\xc2\x13\x33\xc3\x0f\x18\xe2" }  },
        !          60627:       /* --- pixel bitmap for bbold325 char#4 \Xi --- */
        !          60628:       {   4, 1690,                      /* character number, location */
        !          60629:          31, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          60630:           { 24,   31, 3,30, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          60631:             "\xf1\x0e\x0a\xfb\xe0\xa0\x88\xe0\x1a\x70\xfc\xe0\xaf"
        !          60632:             "\x1e\x0a" }  },
        !          60633:       /* --- pixel bitmap for bbold325 char#5 \Pi --- */
        !          60634:       {   5, 1921,                      /* character number, location */
        !          60635:          31, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          60636:           { 22,   31, 3,28, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          60637:             "\xf1\x0e\x08\x0f\xe2\x42\xc2\x0f\xb2\x42\xc2\x0f\x18"
        !          60638:             "\xc2" }  },
        !          60639:       /* --- pixel bitmap for bbold325 char#6 \Sigma --- */
        !          60640:       {   6, 2313,                      /* character number, location */
        !          60641:          31, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          60642:           { 25,   31, 3,174, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          60643:             "\xf1\x0e\x0b\x12\x42\xe0\x33\x33\xe0\x32\x42\xe0\x33"
        !          60644:             "\x33\xe0\x33\x33\xe0\x32\x42\xe0\x33\x33\xe0\x32\x42"
        !          60645:             "\xe0\x33\x33\xe0\x32\x42\xe0\x33\x33\xe0\x33\x33\xe0"
        !          60646:             "\x32\x42\xe0\x33\x33\xe0\x22\x42\xe0\x23\x33\xe0\x13"
        !          60647:             "\x33\xe0\x22\x42\xe0\x23\x33\xe0\x22\x42\xe0\x23\x33"
        !          60648:             "\xe0\x22\x42\xe0\x23\x33\xe0\x13\x33\xe0\x22\x42\xe0"
        !          60649:             "\x23\x33\xe0\x22\x42\xe0\x2f\x1e\x0b" }  },
        !          60650:       /* --- pixel bitmap for bbold325 char#7 \Upsilon --- */
        !          60651:       {   7, 2649,                      /* character number, location */
        !          60652:          32, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          60653:           { 24,   32, 3,69, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          60654:             "\x34\xa4\x56\x86\x33\x23\x63\x23\x22\x42\x62\x42\x13"
        !          60655:             "\x43\x43\x43\x0f\x32\x62\x42\x62\xf5\x82\x42\x80\xf1"
        !          60656:             "\x88\x80\xfc\x82\x42\x80\xf1\x88\x83" }  },
        !          60657:       /* --- pixel bitmap for bbold325 char#8 \Phi --- */
        !          60658:       {   8, 3013,                      /* character number, location */
        !          60659:          31, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          60660:           { 24,   31, 3,119, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          60661:             "\xf1\x88\x80\xf4\x82\x42\x80\x64\x44\xa6\x46\x73\x22"
        !          60662:             "\x42\x23\x53\x32\x42\x33\x33\x42\x42\x43\x13\x52\x42"
        !          60663:             "\x53\x0f\x42\x62\x42\x62\x03\x52\x42\x53\x13\x42\x42"
        !          60664:             "\x43\x33\x32\x42\x33\x53\x22\x42\x23\x76\x46\xa4\x44"
        !          60665:             "\x60\xf4\x82\x42\x80\xf1\x88\x80" }  },
        !          60666:       /* --- pixel bitmap for bbold325 char#9 \Psi --- */
        !          60667:       {   9, 3397,                      /* character number, location */
        !          60668:          31, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          60669:           { 24,   31, 3,129, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          60670:             "\xf1\x88\x80\xf3\x82\x42\x83\x52\x42\x57\x42\x42\x44"
        !          60671:             "\x22\x42\x42\x42\x43\x32\x42\x33\x20\xf4\x32\x32\x42"
        !          60672:             "\x32\x30\x32\x32\x42\x33\x20\xf1\x32\x32\x42\x32\x30"
        !          60673:             "\x32\x32\x42\x23\x63\x22\x42\x22\x83\x12\x42\x13\x95"
        !          60674:             "\x45\xb4\x44\xd3\x43\x70\xf4\x82\x42\x80\xf1\x88\x83" }  },
        !          60675:       /* --- pixel bitmap for bbold325 char#10 \Omega --- */
        !          60676:       {  10, 3791,                      /* character number, location */
        !          60677:          32, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          60678:           { 25,   32, 3,118, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          60679:             "\x97\xe0\x2b\xd3\x73\xb3\x93\x94\xa3\x75\xb3\x53\x12"
        !          60680:             "\xc3\x42\x22\xd2\x33\x22\xd3\x10\xf1\x12\x32\xe2\x13"
        !          60681:             "\x32\xe3\x0f\x82\x42\xe0\x12\x03\x32\xe3\xf1\x12\x32"
        !          60682:             "\xe2\x10\x13\x22\xd3\x32\x22\xd2\x43\x12\xc3\x55\xb3"
        !          60683:             "\x74\xb2\x84\xa3\x4f\x18\x98" }  },
        !          60684:       /* --- pixel bitmap for bbold325 char#11 \alpha --- */
        !          60685:       {  11, 4175,                      /* character number, location */
        !          60686:          20, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
        !          60687:           { 23,   21, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          60688:             "\x80\x0f\x00\xf0\x1f\x30\x3e\x1c\x98\x1b\x0c\xcc\x0c"
        !          60689:             "\x0e\x76\x06\x06\x1b\x03\x83\x8f\x81\xe1\xc3\xc0\xb1"
        !          60690:             "\x61\xc0\xd8\x30\x60\x6e\x18\x30\x33\x0c\xd8\x39\x06"
        !          60691:             "\x7c\x18\x03\x3c\x9c\x01\x0e\xcc\x00\x07\x6e\xc0\x07"
        !          60692:             "\x3e\x78\x1f\xfc\x0f\x0e\xf8\x01\x00" }  },
        !          60693:       /* --- pixel bitmap for bbold325 char#12 \beta --- */
        !          60694:       {  12, 4526,                      /* character number, location */
        !          60695:          32, 2,   -9, 2,      /* topleft row,col, and botleft row,col */
        !          60696:           { 21,   41, 3,151, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          60697:             "\xa6\xda\x94\x63\x73\x93\x45\xa2\x42\x12\xa3\x23\x12"
        !          60698:             "\xb2\x13\x22\xb2\xf1\x12\x32\xb2\x03\x32\xa5\x42\x93"
        !          60699:             "\x12\x42\x83\x2f\x12\x42\x55\x32\x42\x83\x22\x42\x93"
        !          60700:             "\x1f\x12\x42\xa2\x12\x42\xa3\x0f\x52\x42\xb2\x02\x42"
        !          60701:             "\xa5\x42\xa2\x12\x43\x83\x12\x44\x72\x22\x45\x53\x22"
        !          60702:             "\x42\x19\x32\x42\x35\x5f\x52\x42\xdf\x18\xd2" }  },
        !          60703:       /* --- pixel bitmap for bbold325 char#13 \gamma --- */
        !          60704:       {  13, 4956,                      /* character number, location */
        !          60705:          19, 1,  -10, 1,      /* topleft row,col, and botleft row,col */
        !          60706:           { 19,   29, 3,109, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          60707:             "\x05\x9d\x38\x59\xc5\xd3\x13\xb3\x33\x94\x43\x75\x53"
        !          60708:             "\x62\x12\x62\x53\x12\x63\x42\x22\x72\x33\x22\x73\x22"
        !          60709:             "\x32\x82\x13\x32\x83\x0f\x62\x42\x92\x03\x32\x83\x12"
        !          60710:             "\x32\x82\x23\x22\x73\x32\x22\x72\x43\x12\x63\x55\x44"
        !          60711:             "\x89\xc5\x72" }  },
        !          60712:       /* --- pixel bitmap for bbold325 char#14 \delta --- */
        !          60713:       {  14, 5318,                      /* character number, location */
        !          60714:          32, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
        !          60715:           { 19,   33, 3,125, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          60716:             "\x67\xab\x73\x73\x44\x94\x22\xd2\x13\xd5\xe0\x12\x0f"
        !          60717:             "\x12\xe0\x33\xe0\x32\xe0\x34\xe0\x35\xe0\x26\xd8\x95"
        !          60718:             "\x34\x63\x12\x53\x43\x22\x63\x32\x32\x73\x13\x32\x83"
        !          60719:             "\x0f\x42\x42\x92\x03\x32\x83\x12\x32\x82\x23\x22\x73"
        !          60720:             "\x32\x22\x72\x43\x12\x63\x55\x44\x89\xc5\x75" }  },
        !          60721:       /* --- pixel bitmap for bbold325 char#15 \epsilon --- */
        !          60722:       {  15, 5674,                      /* character number, location */
        !          60723:          20, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
        !          60724:           { 19,   21, 3,83, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          60725:             "\x76\xba\x75\x53\x53\x12\x64\x32\x22\x82\x23\x22\x83"
        !          60726:             "\x12\x32\x95\x32\xbf\x12\x46\x7f\x22\x42\xb3\x32\xc2"
        !          60727:             "\x32\x92\x13\x22\x83\x22\x22\x82\x33\x12\x64\x45\x53"
        !          60728:             "\x8a\xb6\x62" }  },
        !          60729:       /* --- pixel bitmap for bbold325 char#16 \zeta --- */
        !          60730:       {  16, 5983,                      /* character number, location */
        !          60731:          31, 2,   -9, 2,      /* topleft row,col, and botleft row,col */
        !          60732:           { 15,   40, 3,97, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          60733:             "\xd2\xb4\xa3\xa4\xa3\xb3\xb3\x70\xf1\x44\x70\x35\xa2"
        !          60734:             "\x12\x93\x12\x92\x22\x83\x22\x70\xf1\x12\x32\x73\x32"
        !          60735:             "\x7f\x62\x42\x73\x32\x82\x32\x83\x22\x93\x12\xa5\xb5"
        !          60736:             "\xc6\xc5\xd3\xf2\xd2\xc3\xc2\xa5\xa3\x32" }  },
        !          60737:       /* --- pixel bitmap for bbold325 char#17 \eta --- */
        !          60738:       {  17, 6315,                      /* character number, location */
        !          60739:          20, 2,   -9, 2,      /* topleft row,col, and botleft row,col */
        !          60740:           { 21,   29, 3,54, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          60741:             "\xb5\x58\x19\x3b\x53\x22\x44\x72\x22\x43\x83\x12\x42"
        !          60742:             "\xa2\x12\x42\xa3\x0f\xa2\x42\xb2\x0f\x18\xb2\xf8\xe0"
        !          60743:             "\x52" }  },
        !          60744:       /* --- pixel bitmap for bbold325 char#18 \theta --- */
        !          60745:       {  18, 6659,                      /* character number, location */
        !          60746:          32, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
        !          60747:           { 19,   33, 3,115, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          60748:             "\x75\xc9\x94\x43\x75\x53\x53\x12\x63\x42\x22\x72\x33"
        !          60749:             "\x22\x73\x10\xf2\x12\x32\x82\x13\x32\x83\x0f\x32\x42"
        !          60750:             "\x92\x0f\x12\x4d\x0f\x42\x42\x92\x03\x32\x83\xf2\x12"
        !          60751:             "\x32\x82\x10\x13\x22\x73\x32\x22\x72\x43\x12\x63\x55"
        !          60752:             "\x53\x74\x43\x99\xc5\x73" }  },
        !          60753:       /* --- pixel bitmap for bbold325 char#19 \iota --- */
        !          60754:       {  19, 7046,                      /* character number, location */
        !          60755:          19, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          60756:           {  8,   19, 3,30, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          60757:             "\xf1\x08\x0f\xa2\x42\x03\x32\x12\x32\x13\x22\x23\x12"
        !          60758:             "\x35\x53" }  },
        !          60759:       /* --- pixel bitmap for bbold325 char#20 \kappa --- */
        !          60760:       {  20, 7332,                      /* character number, location */
        !          60761:          19, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          60762:           { 21,   19, 3,90, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          60763:             "\x08\xba\x96\x42\x74\x22\x42\x54\x42\x42\x43\x62\x42"
        !          60764:             "\x24\x72\x46\x92\x44\xb2\x45\xa2\x42\x13\x92\x42\x23"
        !          60765:             "\x82\x42\x33\x7f\x12\x42\x43\x62\x42\x53\x52\x42\x63"
        !          60766:             "\x42\x42\x73\x38\x8d\xa3" }  },
        !          60767:       /* --- pixel bitmap for bbold325 char#21 \lambda --- */
        !          60768:       {  21, 7651,                      /* character number, location */
        !          60769:          31, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          60770:           { 19,   31, 3,140, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          60771:             "\xf1\x08\xb3\x33\xb2\x42\xb3\x33\x90\xf1\x22\x42\x90"
        !          60772:             "\x23\x33\x80\xf1\x32\x42\x80\x33\x33\xb2\x42\xb3\x33"
        !          60773:             "\x60\xf1\x52\x42\x60\x53\x33\x50\xf1\x62\x42\x50\x63"
        !          60774:             "\x33\xa3\x42\x95\x33\x82\x12\x42\x73\x12\x42\x72\x23"
        !          60775:             "\x33\x53\x32\x42\x43\x42\x42\x42\x53\x33\x23\x62\x42"
        !          60776:             "\x22\x73\x36\x8a\x98" }  },
        !          60777:       /* --- pixel bitmap for bbold325 char#22 \mu --- */
        !          60778:       {  22, 8002,                      /* character number, location */
        !          60779:          19, 2,   -9, 2,      /* topleft row,col, and botleft row,col */
        !          60780:           { 21,   28, 3,57, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          60781:             "\xf1\x08\xb2\x0f\xa2\x42\xb2\x0f\x12\x42\xa3\x02\x43"
        !          60782:             "\x86\x44\x76\x45\x57\x42\x19\x14\x42\x35\x5f\x52\x42"
        !          60783:             "\xdf\x18\xd2" }  },
        !          60784:       /* --- pixel bitmap for bbold325 char#23 \nu --- */
        !          60785:       {  23, 8363,                      /* character number, location */
        !          60786:          19, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          60787:           { 19,   19, 3,85, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          60788:             "\xf1\x08\x92\x0f\x22\x42\x92\x02\x42\x85\x42\x82\x12"
        !          60789:             "\x42\x73\x12\x42\x72\x22\x42\x63\x22\x42\x62\x32\x42"
        !          60790:             "\x53\x32\x42\x43\x42\x42\x33\x52\x42\x23\x62\x46\x72"
        !          60791:             "\x35\x98\xb5\xe5" }  },
        !          60792:       /* --- pixel bitmap for bbold325 char#24 \xi --- */
        !          60793:       {  24, 8676,                      /* character number, location */
        !          60794:          31, 2,   -9, 2,      /* topleft row,col, and botleft row,col */
        !          60795:           { 15,   40, 3,95, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          60796:             "\x78\x4b\x26\x83\x22\x73\x32\x7f\x32\x42\x73\x32\x83"
        !          60797:             "\x22\x96\xb8\x87\x74\x96\x83\x22\x82\x32\x73\x32\x7f"
        !          60798:             "\x42\x42\x73\x32\x82\x32\x83\x22\x93\x12\xa5\xb5\xc6"
        !          60799:             "\xc5\xd3\xf2\xd2\xc3\xc2\xa5\xa3\x33" }  },
        !          60800:       /* --- pixel bitmap for bbold325 char#25 \pi --- */
        !          60801:       {  25, 9011,                      /* character number, location */
        !          60802:          19, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          60803:           { 21,   19, 3,23, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          60804:             "\xf1\x0e\x07\xfe\x42\x42\x32\x40\xf1\x48\x32\x42" }  },
        !          60805:       /* --- pixel bitmap for bbold325 char#26 \rho --- */
        !          60806:       {  26, 9329,                      /* character number, location */
        !          60807:          20, 2,   -9, 2,      /* topleft row,col, and botleft row,col */
        !          60808:           { 19,   29, 3,99, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          60809:             "\x75\xc9\x85\x44\x53\x12\x63\x42\x22\x72\x33\x22\x73"
        !          60810:             "\x22\x32\x82\x13\x32\x83\x0f\x42\x42\x92\x02\x42\x85"
        !          60811:             "\x42\x82\x12\x42\x73\x12\x42\x72\x22\x42\x63\x22\x42"
        !          60812:             "\x44\x32\x48\x52\x46\x7f\x52\x42\xbf\x18\xb2" }  },
        !          60813:       /* --- pixel bitmap for bbold325 char#27 \sigma --- */
        !          60814:       {  27, 9687,                      /* character number, location */
        !          60815:          19, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
        !          60816:           { 23,   20, 3,85, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          60817:             "\x7e\x02\x5e\x04\x35\x44\x93\x12\x63\x73\x22\x73\x62"
        !          60818:             "\x32\x82\x53\x32\x83\x4f\x42\x42\x92\x43\x32\x83\x52"
        !          60819:             "\x32\x82\x63\x22\x73\x72\x22\x72\x83\x12\x63\x95\x44"
        !          60820:             "\xc9\xe0\x25\xb2" }  },
        !          60821:       /* --- pixel bitmap for bbold325 char#28 \tau --- */
        !          60822:       {  28,10003,                      /* character number, location */
        !          60823:          19, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          60824:           { 18,   19, 3,37, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          60825:             "\xf1\x0e\x04\xfa\x52\x42\x50\x53\x32\xb2\x32\xb3\x22"
        !          60826:             "\xc3\x12\xd5\xe0\x13\x5f" }  },
        !          60827:       /* --- pixel bitmap for bbold325 char#29 \upsilon --- */
        !          60828:       {  29,10291,                      /* character number, location */
        !          60829:          19, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          60830:           { 19,   20, 3,47, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          60831:             "\xf1\x08\x92\x0f\xa2\x42\x92\x03\x32\x83\x12\x32\x82"
        !          60832:             "\x23\x22\x73\x33\x12\x63\x55\x44\x89\xc5\x72" }  },
        !          60833:       /* --- pixel bitmap for bbold325 char#30 \phi --- */
        !          60834:       {  30,10613,                      /* character number, location */
        !          60835:          31, 1,   -9, 1,      /* topleft row,col, and botleft row,col */
        !          60836:           { 18,   40, 3,111, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          60837:             "\xf1\x58\x50\xfa\x52\x42\x50\x43\x43\x74\x44\x55\x45"
        !          60838:             "\x33\x12\x42\x13\x22\x22\x42\x22\x13\x22\x42\x23\x0f"
        !          60839:             "\x42\x32\x42\x32\x03\x22\x42\x23\x12\x22\x42\x22\x23"
        !          60840:             "\x12\x42\x13\x35\x45\x54\x44\x73\x43\x40\xf7\x52\x42"
        !          60841:             "\x50\xf1\x58\x52" }  },
        !          60842:       /* --- pixel bitmap for bbold325 char#31 \chi --- */
        !          60843:       {  31,11025,                      /* character number, location */
        !          60844:          19, 1,   -9, 1,      /* topleft row,col, and botleft row,col */
        !          60845:           { 19,   28, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          60846:             "\x03\xf8\x3f\xc0\xbf\x01\xc7\x1d\x18\xc6\xe1\x38\x0c"
        !          60847:             "\xc3\xe0\x1c\x07\x6e\x18\x60\xc3\x00\x1f\x07\x70\x18"
        !          60848:             "\x80\xe3\x00\x0c\x03\x70\x1c\x80\x61\x00\x0c\x03\x70"
        !          60849:             "\x1c\x80\xe1\x00\x8e\x0f\x30\x6c\x80\x61\x07\x8e\x73"
        !          60850:             "\x30\x0c\xc3\x71\x38\x86\x81\x3b\x0e\xd8\x3f\xc0\xff"
        !          60851:             "\x01\x0c" }  },
        !          60852:       /* --- pixel bitmap for bbold325 char#32 \psi --- */
        !          60853:       {  32,11381,                      /* character number, location */
        !          60854:          31, 2,   -9, 2,      /* topleft row,col, and botleft row,col */
        !          60855:           { 18,   40, 3,73, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          60856:             "\xf1\x58\x50\xf9\x52\x42\x5f\xb2\x32\x42\x32\x03\x22"
        !          60857:             "\x42\x23\x12\x22\x42\x22\x23\x12\x42\x13\x35\x45\x54"
        !          60858:             "\x44\x73\x43\x40\xf7\x52\x42\x50\xf1\x58\x52" }  },
        !          60859:       /* --- pixel bitmap for bbold325 char#33 ! --- */
        !          60860:       {  33,33354,                      /* character number, location */
        !          60861:          31, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          60862:           { 10,   32, 3,61, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          60863:             "\xf1\x18\x10\xfe\x12\x42\x10\x12\x42\x10\xf1\x18\x10"
        !          60864:             "\xf1\xa0\x34\x48\x22\x42\x13\x43\x0f\x12\x62\x03\x43"
        !          60865:             "\x12\x42\x28\x44\x33" }  },
        !          60866:       /* --- pixel bitmap for bbold325 char#34 (noname) --- */
        !          60867:       {  34,43464,                      /* character number, location */
        !          60868:          32, 1,   15, 1,      /* topleft row,col, and botleft row,col */
        !          60869:           { 22,   17, 3,87, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          60870:             "\x34\x84\x48\x48\x22\x42\x42\x42\x13\x43\x23\x43\x0f"
        !          60871:             "\x12\x62\x22\x62\x03\x43\x23\x43\x12\x43\x32\x43\x19"
        !          60872:             "\x39\x36\x66\x73\x93\x72\xa2\x73\x93\x63\x93\x63\x93"
        !          60873:             "\x54\x84\x62\xa2\x70" }  },
        !          60874:       /* --- pixel bitmap for bbold325 char#35 # --- */
        !          60875:       {  35,33674,                      /* character number, location */
        !          60876:          31, 2,   -9, 2,      /* topleft row,col, and botleft row,col */
        !          60877:           { 30,   40, 3,57, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          60878:             "\xf1\x98\x52\x60\xfb\x92\x42\x52\x6f\x1b\x4e\x01\xf7"
        !          60879:             "\x92\x42\x52\x6f\x1b\x4e\x01\xfb\x92\x42\x52\x60\xf1"
        !          60880:             "\x98\x52\x68" }  },
        !          60881:       /* --- pixel bitmap for bbold325 char#36 $ --- */
        !          60882:       {  36,34110,                      /* character number, location */
        !          60883:          34, 2,   -4, 2,      /* topleft row,col, and botleft row,col */
        !          60884:           { 22,   38, 3,171, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          60885:             "\xf1\x78\x70\xf1\x72\x42\x70\x54\x45\x76\x47\x43\x22"
        !          60886:             "\x42\x34\x13\x32\x42\x55\x42\x42\x7f\x32\x52\x42\x73"
        !          60887:             "\x42\x42\x83\x32\x42\x93\x22\x42\xa6\x42\xc4\x42\xe2"
        !          60888:             "\x44\xc2\x46\xa2\x42\x23\x92\x42\x33\x82\x42\x42\x82"
        !          60889:             "\x42\x43\xf2\x72\x42\x52\x72\x42\x43\x72\x42\x42\x82"
        !          60890:             "\x42\x33\x12\x52\x42\x23\x26\x12\x46\x57\x44\xb3\x42"
        !          60891:             "\x70\xf1\x72\x42\x70\xf1\x78\x7f" }  },
        !          60892:       /* --- pixel bitmap for bbold325 char#37 % --- */
        !          60893:       {  37,34518,                      /* character number, location */
        !          60894:          35, 1,  -15, 1,      /* topleft row,col, and botleft row,col */
        !          60895:           { 24,   50, 3,255, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          60896:             "\x34\xe0\x48\x68\x22\x42\x68\x13\x43\x43\x33\x1f\x12"
        !          60897:             "\x62\x42\x42\x23\x43\x33\x33\x32\x42\x42\x42\x48\x42"
        !          60898:             "\x42\x64\x62\x42\xe0\x13\x33\x30\xf1\xc2\x42\x40\xb3"
        !          60899:             "\x33\x40\xf1\xb2\x42\x50\xa3\x33\x50\xf2\xa2\x42\x60"
        !          60900:             "\x93\x33\x60\xf1\x92\x42\x70\x83\x33\x70\xf1\x82\x42"
        !          60901:             "\x80\x73\x33\x80\xf1\x72\x42\x90\x63\x33\x90\xf2\x62"
        !          60902:             "\x42\xa0\x53\x33\xa0\xf1\x52\x42\xb0\x43\x33\xb0\xf1"
        !          60903:             "\x42\x42\xc0\x33\x33\xe0\x12\x42\x64\x62\x42\x48\x42"
        !          60904:             "\x42\x42\x42\x33\x33\x33\x43\xf1\x22\x42\x42\x62\x13"
        !          60905:             "\x33\x43\x43\x18\x62\x42\x28\x68\xe0\x44\x30" }  },
        !          60906:       /* --- pixel bitmap for bbold325 char#38 & --- */
        !          60907:       {  38,34976,                      /* character number, location */
        !          60908:          32, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          60909:           { 30,   33, 3,195, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          60910:             "\xa4\xe0\xa8\xe0\x82\x42\xe0\x73\x43\xd0\xf3\x72\x62"
        !          60911:             "\xd0\x73\x43\xe0\x72\x42\xe0\x82\x33\xe0\x83\x13\xe0"
        !          60912:             "\xa5\xe0\xb4\xe0\xa5\xe0\x94\x12\xe0\x84\x23\xe0\x56"
        !          60913:             "\x32\xe0\x43\x22\x33\xe0\x32\x32\x42\xe0\x23\x32\x43"
        !          60914:             "\xe0\x12\x42\x53\xe2\x42\x62\x72\x52\x42\x63\x53\x52"
        !          60915:             "\x42\x72\x43\x62\x42\x73\x32\x73\x32\x83\x13\x52\x12"
        !          60916:             "\x32\x95\x62\x13\x22\x94\x72\x23\x12\x77\x62\x35\x45"
        !          60917:             "\x33\x43\x4b\x68\x76\xb4\x32" }  },
        !          60918:       /* --- pixel bitmap for bbold325 char#39 ' --- */
        !          60919:       {  39,35355,                      /* character number, location */
        !          60920:          32, 1,   15, 1,      /* topleft row,col, and botleft row,col */
        !          60921:           { 10,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          60922:             "\x78\xf8\x67\xd8\xe1\x03\x0f\x7c\xb8\xe1\xfe\xe3\x07"
        !          60923:             "\x1c\x30\xe0\xc0\x81\x83\x07\x06\x00" }  },
        !          60924:       /* --- pixel bitmap for bbold325 char#40 ( --- */
        !          60925:       {  40,35614,                      /* character number, location */
        !          60926:          34, 3,  -11, 3,      /* topleft row,col, and botleft row,col */
        !          60927:           { 11,   45, 3,90, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          60928:             "\x74\x56\x44\x65\x53\x12\x30\xf1\x22\x22\x30\x13\x22"
        !          60929:             "\x30\xf2\x12\x32\x33\x32\x3f\xe2\x42\x3f\x52\x42\x33"
        !          60930:             "\x32\x30\xf2\x12\x32\x30\x13\x22\x30\xf1\x22\x22\x30"
        !          60931:             "\x23\x12\x65\x74\x86\x74" }  },
        !          60932:       /* --- pixel bitmap for bbold325 char#41 ) --- */
        !          60933:       {  41,35992,                      /* character number, location */
        !          60934:          34, 1,  -11, 1,      /* topleft row,col, and botleft row,col */
        !          60935:           { 11,   45, 3,91, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          60936:             "\x04\x76\x84\x75\x62\x13\x20\xf1\x32\x22\x20\x32\x23"
        !          60937:             "\x10\xf2\x32\x32\x10\x32\x33\xfe\x32\x42\xf5\x32\x42"
        !          60938:             "\x32\x33\xf2\x32\x32\x10\x32\x23\x10\xf1\x32\x22\x20"
        !          60939:             "\x32\x13\x55\x64\x46\x54\x72" }  },
        !          60940:       /* --- pixel bitmap for bbold325 char#42 * --- */
        !          60941:       {  42,36361,                      /* character number, location */
        !          60942:          26, 2,   -4, 2,      /* topleft row,col, and botleft row,col */
        !          60943:           { 26,   30, 3,111, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          60944:             "\xf1\x98\x90\xf4\x92\x42\x92\x72\x42\x76\x52\x42\x54"
        !          60945:             "\x23\x42\x42\x43\x54\x22\x42\x24\x86\x46\xc4\x44\x70"
        !          60946:             "\xf3\x92\x42\x90\x74\x44\xc6\x46\x84\x22\x42\x24\x53"
        !          60947:             "\x42\x42\x43\x24\x52\x42\x56\x72\x42\x72\xf4\x92\x42"
        !          60948:             "\x90\xf1\x98\x93" }  },
        !          60949:       /* --- pixel bitmap for bbold325 char#43 + --- */
        !          60950:       {  43,36715,                      /* character number, location */
        !          60951:          26, 2,   -4, 2,      /* topleft row,col, and botleft row,col */
        !          60952:           { 30,   30, 3,31, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          60953:             "\xf1\xb8\xb0\xfb\xb2\x42\xbf\x1d\x4d\xfb\xb2\x42\xb0"
        !          60954:             "\xf1\xb8\xb2" }  },
        !          60955:       /* --- pixel bitmap for bbold325 char#44 , --- */
        !          60956:       {  44,37033,                      /* character number, location */
        !          60957:           9, 1,   -9, 1,      /* topleft row,col, and botleft row,col */
        !          60958:           { 10,   18, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          60959:             "\x78\xf8\x67\xd8\xe1\x03\x0f\x7c\xb8\xe1\xfe\xe3\x07"
        !          60960:             "\x18\x70\xe0\x80\x01\x07\x0e\x1e\x18\x00" }  },
        !          60961:       /* --- pixel bitmap for bbold325 char#45 - --- */
        !          60962:       {  45,37288,                      /* character number, location */
        !          60963:          11, 1,    9, 1,      /* topleft row,col, and botleft row,col */
        !          60964:           { 15,    2, 3, 6, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          60965:             "\x1d\x1e\x01" }  },
        !          60966:       /* --- pixel bitmap for bbold325 char#46 . --- */
        !          60967:       {  46,37502,                      /* character number, location */
        !          60968:           9, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
        !          60969:           { 10,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          60970:             "\x78\xf8\x67\xd8\xe1\x03\x0f\x7c\xb8\x61\xfe\xe1\x01" }  },
        !          60971:       /* --- pixel bitmap for bbold325 char#47 / --- */
        !          60972:       {  47,37750,                      /* character number, location */
        !          60973:          34, 1,  -11, 1,      /* topleft row,col, and botleft row,col */
        !          60974:           { 22,   45, 3,191, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          60975:             "\xf1\xe8\xd3\x33\xf1\xd2\x42\x10\xc3\x33\x10\xf1\xc2"
        !          60976:             "\x42\x20\xb3\x33\x20\xf1\xb2\x42\x30\xa3\x33\x30\xf1"
        !          60977:             "\xa2\x42\x40\x93\x33\x40\xf1\x92\x42\x50\x83\x33\x50"
        !          60978:             "\xf1\x82\x42\x60\x73\x33\x60\xf2\x72\x42\x70\x63\x33"
        !          60979:             "\x70\xf1\x62\x42\x80\x53\x33\x80\xf1\x52\x42\x90\x43"
        !          60980:             "\x33\x90\xf1\x42\x42\xa0\x33\x33\xa0\xf1\x32\x42\xb0"
        !          60981:             "\x23\x33\xb0\xf1\x22\x42\xc0\x13\x33\xc0\xf1\x12\x42"
        !          60982:             "\xd3\x33\xdf\x18\xe6" }  },
        !          60983:       /* --- pixel bitmap for bbold325 char#48 0 --- */
        !          60984:       {  48,12156,                      /* character number, location */
        !          60985:          30, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          60986:           { 20,   31, 3,101, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          60987:             "\x76\xca\x94\x53\x75\x63\x53\x12\x73\x42\x22\x82\x33"
        !          60988:             "\x22\x83\x10\xf2\x12\x32\x92\x13\x32\x93\x0f\x82\x42"
        !          60989:             "\xa2\x03\x32\x93\xf2\x12\x32\x92\x10\x13\x22\x83\x32"
        !          60990:             "\x22\x82\x43\x12\x73\x55\x63\x74\x53\x9a\xc6\x73" }  },
        !          60991:       /* --- pixel bitmap for bbold325 char#49 1 --- */
        !          60992:       {  49,12527,                      /* character number, location */
        !          60993:          29, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          60994:           { 20,   29, 3,54, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          60995:             "\xc2\xe0\x24\xe6\xc4\x22\xa4\x42\x86\x42\x64\x22\x42"
        !          60996:             "\x62\x42\x42\x60\xfe\x62\x42\x60\xf3\x62\x42\x6f\x1e"
        !          60997:             "\x06" }  },
        !          60998:       /* --- pixel bitmap for bbold325 char#50 2 --- */
        !          60999:       {  50,12846,                      /* character number, location */
        !          61000:          30, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          61001:           { 20,   30, 3,116, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          61002:             "\x76\xca\x84\x55\x53\x72\x13\x33\x82\x23\x22\x92\x36"
        !          61003:             "\x92\x42\x0f\x12\xa2\x42\xc2\x42\xc2\x33\xc2\x32\xd2"
        !          61004:             "\x23\xd2\x13\xe5\xe0\x14\xe0\x23\xe0\x14\xe4\xe4\xe0"
        !          61005:             "\x13\xe0\x23\xe0\x23\xe0\x23\xe0\x23\xe0\x32\xe0\x33"
        !          61006:             "\xe0\x32\xe0\x4f\x1e\x06" }  },
        !          61007:       /* --- pixel bitmap for bbold325 char#51 3 --- */
        !          61008:       {  51,13151,                      /* character number, location */
        !          61009:          30, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          61010:           { 20,   31, 3,121, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          61011:             "\x76\xca\x84\x55\x53\x72\x13\x33\x82\x23\x22\x92\x36"
        !          61012:             "\x92\x42\x0f\x12\xa2\x42\xc2\x42\xc2\x33\xc2\x23\xd6"
        !          61013:             "\xb7\xd6\xe0\x35\xe0\x12\x13\xe2\x23\xd2\x33\xf2\xc2"
        !          61014:             "\x42\x0f\x12\xa2\x42\x03\x92\x33\x12\x92\x32\x23\x82"
        !          61015:             "\x23\x33\x72\x13\x54\x55\x8a\xc6\x72" }  },
        !          61016:       /* --- pixel bitmap for bbold325 char#52 4 --- */
        !          61017:       {  52,13492,                      /* character number, location */
        !          61018:          29, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          61019:           { 20,   29, 3,109, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          61020:             "\xe2\x40\xf1\xd3\x40\xc4\xe0\x15\xe3\x12\xe2\x22\xd3"
        !          61021:             "\x22\xc3\x32\xc2\x42\xb3\x42\x40\xf1\x64\x42\x40\x55"
        !          61022:             "\x42\x83\x12\x42\x73\x22\x42\x72\x32\x42\x63\x32\x42"
        !          61023:             "\x53\x42\x42\x52\x52\x42\x4f\x1a\x46\xf4\x82\x42\x40"
        !          61024:             "\xf1\x88\x42" }  },
        !          61025:       /* --- pixel bitmap for bbold325 char#53 5 --- */
        !          61026:       {  53,13815,                      /* character number, location */
        !          61027:          29, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          61028:           { 20,   30, 3,83, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          61029:             "\xf1\x0e\x06\x0f\x52\x42\xcd\x7e\x01\xe0\x44\xe0\x43"
        !          61030:             "\xe0\x42\xe0\x43\xe0\x42\xe0\x43\xf4\xe0\x42\x02\xe0"
        !          61031:             "\x15\xe0\x12\x13\xd3\x22\xd3\x23\xb3\x43\x93\x64\x63"
        !          61032:             "\x9a\xc6\x72" }  },
        !          61033:       /* --- pixel bitmap for bbold325 char#54 6 --- */
        !          61034:       {  54,14110,                      /* character number, location */
        !          61035:          30, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          61036:           { 20,   31, 3,125, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          61037:             "\x76\xca\x84\x64\x53\xa3\x42\xc3\x23\xd2\x22\xe6\xe0"
        !          61038:             "\x14\xe0\x24\x56\x72\x3a\x52\x15\x54\x35\x12\x73\x24"
        !          61039:             "\x22\x82\x24\x22\x83\x13\x32\x92\x13\x32\x93\x0f\x42"
        !          61040:             "\x42\xa2\x03\x32\x93\x12\x32\x92\x23\x22\x83\x32\x22"
        !          61041:             "\x83\x33\x12\x73\x55\x63\x74\x53\x9a\xc6\x73" }  },
        !          61042:       /* --- pixel bitmap for bbold325 char#55 7 --- */
        !          61043:       {  55,14467,                      /* character number, location */
        !          61044:          29, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          61045:           { 20,   29, 3,115, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          61046:             "\xf1\x0e\x06\xb3\x33\xb2\x42\xb3\x33\xb2\x42\xb3\x33"
        !          61047:             "\xb2\x42\xb3\x33\x30\xf1\x82\x42\x40\x73\x33\xb2\x42"
        !          61048:             "\xb3\x33\xb2\x42\xb3\x33\xb2\x42\xb3\x33\x70\xf1\x42"
        !          61049:             "\x42\x80\x33\x33\xb2\x42\xb3\x33\xb2\x42\xb3\x33\xb2"
        !          61050:             "\x42\xb3\x33\xbf\x18\xc3" }  },
        !          61051:       /* --- pixel bitmap for bbold325 char#56 8 --- */
        !          61052:       {  56,14784,                      /* character number, location */
        !          61053:          30, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          61054:           { 20,   31, 3,117, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          61055:             "\x76\xca\x85\x54\x53\x12\x73\x33\x22\x83\x13\x32\x93"
        !          61056:             "\x0f\x32\x42\xa2\x03\x32\x93\x13\x22\x83\x36\x64\x6c"
        !          61057:             "\x9a\x85\x54\x53\x12\x73\x33\x22\x83\x13\x32\x93\x0f"
        !          61058:             "\x42\x42\xa2\x03\x32\x93\x12\x32\x92\x23\x22\x83\x33"
        !          61059:             "\x12\x73\x55\x54\x8a\xc6\x74" }  },
        !          61060:       /* --- pixel bitmap for bbold325 char#57 9 --- */
        !          61061:       {  57,15147,                      /* character number, location */
        !          61062:          30, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          61063:           { 20,   31, 3,125, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          61064:             "\x76\xca\x94\x53\x75\x63\x53\x12\x73\x33\x22\x82\x33"
        !          61065:             "\x22\x83\x22\x32\x92\x13\x32\x93\x0f\x42\x42\xa2\x03"
        !          61066:             "\x32\x93\x12\x32\x93\x13\x22\x84\x22\x22\x84\x23\x12"
        !          61067:             "\x75\x35\x54\x12\x5a\x32\x76\x54\xe0\x24\xe0\x16\xe2"
        !          61068:             "\x22\xd3\x23\xc2\x43\xa3\x54\x64\x8a\xc6\x73" }  },
        !          61069:       /* --- pixel bitmap for bbold325 char#58 : --- */
        !          61070:       {  58,38128,                      /* character number, location */
        !          61071:          20, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
        !          61072:           { 10,   21, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          61073:             "\x78\xf8\x67\xd8\xe1\x03\x0f\x7c\xb8\x61\xfe\xe1\x01"
        !          61074:             "\x00\x1e\xfe\x19\x76\xf8\xc0\x03\x1f\x6e\x98\x7f\x78"
        !          61075:             "\x00" }  },
        !          61076:       /* --- pixel bitmap for bbold325 char#59 ; --- */
        !          61077:       {  59,38404,                      /* character number, location */
        !          61078:          20, 1,   -9, 1,      /* topleft row,col, and botleft row,col */
        !          61079:           { 10,   29, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          61080:             "\x78\xf8\x67\xd8\xe1\x03\x0f\x7c\xb8\x61\xfe\xe1\x01"
        !          61081:             "\x00\x1e\xfe\x19\x76\xf8\xc0\x03\x1f\x6e\xb8\xff\xf8"
        !          61082:             "\x01\x06\x1c\x38\x60\xc0\x81\x83\x07\x06\x00" }  },
        !          61083:       /* --- pixel bitmap for bbold325 char#60 < --- */
        !          61084:       {  60,38701,                      /* character number, location */
        !          61085:          23, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          61086:           { 30,   24, 3,118, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          61087:             "\xe0\xe2\xe0\xb5\xe0\x95\xe0\x85\xe0\x95\xe0\x85\xe0"
        !          61088:             "\x86\xe0\x85\xe0\x85\xe0\x95\xe0\x87\xe0\x75\x24\xe0"
        !          61089:             "\x54\x54\xe0\x53\x63\xe0\x54\x54\xe0\x54\x54\xe0\x54"
        !          61090:             "\x54\xe0\x53\x63\xe0\x54\x54\xe0\x54\x54\xe0\x54\x54"
        !          61091:             "\xe0\x53\x63\xe0\x5d\xe0\x5b" }  },
        !          61092:       /* --- pixel bitmap for bbold325 char#61 \cdot --- */
        !          61093:       {  61,38979,                      /* character number, location */
        !          61094:          16, 1,    6, 1,      /* topleft row,col, and botleft row,col */
        !          61095:           { 10,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          61096:             "\x78\xf8\x67\xd8\xe1\x03\x0f\x7c\xb8\x61\xfe\xe1\x01" }  },
        !          61097:       /* --- pixel bitmap for bbold325 char#62 > --- */
        !          61098:       {  62,39229,                      /* character number, location */
        !          61099:          23, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          61100:           { 30,   24, 3,119, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          61101:             "\x02\xe0\xe5\xe0\xd5\xe0\xe5\xe0\xd5\xe0\xe5\xe0\xd6"
        !          61102:             "\xe0\xd5\xe0\xe5\xe0\xd5\xe0\xc7\xe0\x74\x25\xe0\x34"
        !          61103:             "\x54\xe0\x23\x63\xe0\x24\x54\xe0\x14\x54\xe0\x14\x54"
        !          61104:             "\xe0\x23\x63\xe0\x24\x54\xe0\x14\x54\xe0\x14\x54\xe0"
        !          61105:             "\x23\x63\xe0\x2d\xe0\x3b\xe0\x50" }  },
        !          61106:       /* --- pixel bitmap for bbold325 char#63 ? --- */
        !          61107:       {  63,39513,                      /* character number, location */
        !          61108:          32, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          61109:           { 22,   33, 3,125, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          61110:             "\x87\xdb\x94\x74\x63\xb3\x43\xd3\x23\xe0\x16\xe0\x32"
        !          61111:             "\x0f\x12\xe0\x42\xe0\x62\xe0\x53\xe0\x43\xe0\x34\xe7"
        !          61112:             "\xd7\xe3\x12\xe0\x13\x22\xe3\x32\xe2\x42\x70\xf1\x78"
        !          61113:             "\x70\xf1\xe0\x80\x94\xe0\x28\xe2\x42\xd3\x43\x60\xf1"
        !          61114:             "\x62\x62\x60\x63\x43\xd2\x42\xe8\xe0\x24\x92" }  },
        !          61115:       /* --- pixel bitmap for bbold325 char#64 @ --- */
        !          61116:       {  64,39819,                      /* character number, location */
        !          61117:          32, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          61118:           { 20,   33, 3,155, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          61119:             "\x75\xd9\xa4\x44\x75\x63\x53\x12\x72\x52\x22\x73\x33"
        !          61120:             "\x22\x82\x32\x32\x83\x10\xf1\x12\x32\x92\x13\x32\x92"
        !          61121:             "\x12\x42\x95\x42\x4a\x42\x3b\x42\x23\x43\x0f\x22\x42"
        !          61122:             "\x22\x62\x02\x42\x23\x45\x42\x38\x12\x42\x46\x22\x42"
        !          61123:             "\xc3\x32\xd2\x32\xc0\xf1\x12\x32\x92\x10\x13\x22\x83"
        !          61124:             "\x32\x22\x82\x43\x12\x73\x55\x63\x74\x44\x99\xd5\x80" }  },
        !          61125:       /* --- pixel bitmap for bbold325 char#65 A --- */
        !          61126:       {  65,15504,                      /* character number, location */
        !          61127:          31, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          61128:           { 25,   31, 3,160, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          61129:             "\xc2\xb0\xf1\xb3\xb0\xa5\xa0\xf1\xa2\x12\xa0\x93\x13"
        !          61130:             "\xe0\x42\x32\xe0\x33\x33\x80\xf1\x82\x43\x80\x73\x35"
        !          61131:             "\xe2\x42\x12\xd3\x33\x13\x60\xf1\x62\x42\x32\x60\x53"
        !          61132:             "\x33\x33\xa2\x42\x52\x93\x33\x53\x40\xf1\x42\x42\x72"
        !          61133:             "\x40\x33\x33\x73\x62\x4d\x53\x3e\x01\x20\xf1\x22\x42"
        !          61134:             "\xb2\x20\x13\x33\xb3\x22\x42\xd2\x13\x33\xd3\x0f\x18"
        !          61135:             "\xe0\x12" }  },
        !          61136:       /* --- pixel bitmap for bbold325 char#66 B --- */
        !          61137:       {  66,15859,                      /* character number, location */
        !          61138:          31, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          61139:           { 22,   31, 3,143, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          61140:             "\x0e\x01\x7e\x03\x52\x42\x74\x32\x42\x93\x22\x42\xa3"
        !          61141:             "\x12\x42\xb3\x0f\x32\x42\xc2\x02\x42\xb5\x42\xa3\x12"
        !          61142:             "\x42\x93\x22\x42\x74\x3f\x12\x4b\x52\x42\x74\x32\x42"
        !          61143:             "\x93\x22\x42\xa3\x12\x42\xb2\x12\x42\xb3\x0f\x22\x42"
        !          61144:             "\xc2\x02\x42\xb5\x42\xb2\x12\x42\xa3\x12\x42\x93\x22"
        !          61145:             "\x42\x74\x3e\x03\x5e\x01\x72" }  },
        !          61146:       /* --- pixel bitmap for bbold325 char#67 C --- */
        !          61147:       {  67,16234,                      /* character number, location */
        !          61148:          32, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          61149:           { 25,   33, 3,125, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          61150:             "\x97\xe0\x2b\xd3\x74\xa3\xa4\x74\xc3\x55\xd3\x33\x12"
        !          61151:             "\xe2\x32\x22\xe3\x13\x22\xe0\x12\xf1\x12\x32\xe0\x33"
        !          61152:             "\x32\xe0\x3f\x82\x42\xe0\x33\x32\xe0\x30\xf1\x12\x32"
        !          61153:             "\xe0\x30\x13\x22\xe0\x12\x22\x22\xe3\x23\x12\xe2\x45"
        !          61154:             "\xd3\x54\xc3\x73\xa4\x93\x74\xcb\xe0\x27\x92" }  },
        !          61155:       /* --- pixel bitmap for bbold325 char#68 D --- */
        !          61156:       {  68,16579,                      /* character number, location */
        !          61157:          31, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          61158:           { 25,   31, 3,139, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          61159:             "\x0e\x02\x9e\x04\x72\x42\x83\x62\x42\x94\x42\x42\xb3"
        !          61160:             "\x32\x42\xc2\x32\x42\xc3\x22\x42\xd2\x22\x42\xd3\x1f"
        !          61161:             "\x12\x42\xe2\x12\x42\xe3\x0f\x62\x42\xe0\x12\x02\x42"
        !          61162:             "\xe3\x0f\x12\x42\xe2\x12\x42\xd3\x12\x42\xd2\x22\x42"
        !          61163:             "\xc3\x22\x42\xc2\x32\x42\xb3\x32\x42\x94\x42\x42\x83"
        !          61164:             "\x6e\x04\x7e\x02\x9e" }  },
        !          61165:       /* --- pixel bitmap for bbold325 char#69 E --- */
        !          61166:       {  69,16958,                      /* character number, location */
        !          61167:          31, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          61168:           { 22,   31, 3,30, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          61169:             "\xf1\x0e\x08\x0f\xb2\x42\xef\x12\x48\x8f\xc2\x42\xef"
        !          61170:             "\x1e\x08" }  },
        !          61171:       /* --- pixel bitmap for bbold325 char#70 F --- */
        !          61172:       {  70,17283,                      /* character number, location */
        !          61173:          31, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          61174:           { 22,   31, 3,29, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          61175:             "\xf1\x0e\x08\x0f\xb2\x42\xef\x12\x48\x8f\xc2\x42\xef"
        !          61176:             "\x18\xe8" }  },
        !          61177:       /* --- pixel bitmap for bbold325 char#71 G --- */
        !          61178:       {  71,17608,                      /* character number, location */
        !          61179:          32, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          61180:           { 25,   33, 3,143, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          61181:             "\x97\xe0\x2b\xd3\x74\xa3\xa4\x74\xc3\x55\xd3\x33\x12"
        !          61182:             "\xe2\x32\x22\xe3\x13\x22\xe0\x12\xf1\x12\x32\xe0\x33"
        !          61183:             "\x32\xe0\x3f\x32\x42\xe0\x3f\x12\x42\x98\x0f\x22\x42"
        !          61184:             "\xe0\x12\x03\x32\xe0\x12\xf1\x12\x32\xe0\x12\x13\x22"
        !          61185:             "\xe0\x12\x22\x22\xe3\x23\x12\xe2\x45\xd3\x54\xc3\x73"
        !          61186:             "\xa4\x93\x74\xcb\xe0\x27\x92" }  },
        !          61187:       /* --- pixel bitmap for bbold325 char#72 H --- */
        !          61188:       {  72,17969,                      /* character number, location */
        !          61189:          31, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          61190:           { 25,   31, 3,44, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          61191:             "\xf1\x08\xe0\x12\x0f\xb2\x42\xe0\x12\x0f\x12\x4e\x05"
        !          61192:             "\x0f\xc2\x42\xe0\x12\x0f\x18\xe0\x12" }  },
        !          61193:       /* --- pixel bitmap for bbold325 char#73 I --- */
        !          61194:       {  73,18352,                      /* character number, location */
        !          61195:          31, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          61196:           {  8,   31, 3,20, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          61197:             "\xf1\x08\x0f\xe2\x42\x0f\xb2\x42\x0f\x18" }  },
        !          61198:       /* --- pixel bitmap for bbold325 char#74 J --- */
        !          61199:       {  74,18677,                      /* character number, location */
        !          61200:          31, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          61201:           { 22,   32, 3,67, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          61202:             "\xf1\xe8\xfe\xe2\x42\xf2\xe2\x42\xe2\x33\xf1\xe2\x32"
        !          61203:             "\x12\xc2\x32\x12\xc2\x23\x13\xb2\x22\x33\xa2\x13\x43"
        !          61204:             "\x95\x63\x84\x84\x63\xba\xe6\x82" }  },
        !          61205:       /* --- pixel bitmap for bbold325 char#75 K --- */
        !          61206:       {  75,19014,                      /* character number, location */
        !          61207:          31, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          61208:           { 22,   31, 3,166, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          61209:             "\x08\xca\xb5\x42\xb2\x12\x42\xa3\x12\x42\x93\x22\x42"
        !          61210:             "\x83\x32\x42\x82\x42\x42\x73\x42\x42\x63\x52\x42\x62"
        !          61211:             "\x62\x42\x53\x62\x42\x43\x72\x42\x33\x82\x42\x32\x92"
        !          61212:             "\x42\x23\x9f\x12\x42\x14\x92\x48\x82\x44\x23\x72\x43"
        !          61213:             "\x42\x72\x42\x53\x62\x42\x63\x52\x42\x72\x52\x42\x73"
        !          61214:             "\x42\x42\x83\x32\x42\x92\x32\x42\x93\x22\x42\xa3\x12"
        !          61215:             "\x42\xb2\x18\xbb\xc2" }  },
        !          61216:       /* --- pixel bitmap for bbold325 char#76 L --- */
        !          61217:       {  76,19399,                      /* character number, location */
        !          61218:          31, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          61219:           { 22,   31, 3,22, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          61220:             "\xf1\x08\xef\xe2\x42\xef\xb2\x42\xef\x1e\x08" }  },
        !          61221:       /* --- pixel bitmap for bbold325 char#77 M --- */
        !          61222:       {  77,19724,                      /* character number, location */
        !          61223:          31, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          61224:           { 24,   31, 3,104, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          61225:             "\x02\xe0\x65\xe0\x43\x0f\x14\xe0\x24\x05\xe7\x13\xc3"
        !          61226:             "\x14\x23\xa3\x24\x33\x83\x34\x33\x82\x44\x43\x63\x44"
        !          61227:             "\x44\x43\x54\x45\x23\x64\x42\x12\x22\x74\x42\x16\x74"
        !          61228:             "\x42\x24\x84\x42\x32\x92\x0f\xc2\x42\xe2\x0f\x18\xe2" }  },
        !          61229:       /* --- pixel bitmap for bbold325 char#78 N --- */
        !          61230:       {  78,20129,                      /* character number, location */
        !          61231:          31, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          61232:           { 25,   31, 3,164, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          61233:             "\x02\xe0\x75\xe0\x62\x0f\x14\xe0\x52\x05\xe0\x44\x13"
        !          61234:             "\xe0\x34\x23\xe0\x24\x33\xe0\x14\x42\xe0\x14\x43\xe4"
        !          61235:             "\x44\xd4\x45\xc4\x42\x13\xb4\x42\x22\xb4\x42\x23\xa4"
        !          61236:             "\x42\x33\x94\x42\x43\x84\x42\x52\x84\x42\x53\x74\x42"
        !          61237:             "\x63\x64\x42\x73\x54\x42\x83\x44\x42\x92\x44\x42\x93"
        !          61238:             "\x34\x42\xa3\x24\x42\xb3\x14\x42\xc5\x0f\x12\x42\xd4"
        !          61239:             "\x08\xeb\xe0\x12" }  },
        !          61240:       /* --- pixel bitmap for bbold325 char#79 O --- */
        !          61241:       {  79,20538,                      /* character number, location */
        !          61242:          32, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          61243:           { 25,   33, 3,123, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          61244:             "\x97\xe0\x2b\xd3\x73\xb3\x93\x94\xa3\x75\xb3\x53\x12"
        !          61245:             "\xc3\x42\x22\xd2\x33\x22\xd3\x10\xf1\x12\x32\xe2\x13"
        !          61246:             "\x32\xe3\x0f\x82\x42\xe0\x12\x03\x32\xe3\xf1\x12\x32"
        !          61247:             "\xe2\x10\x13\x22\xd3\x32\x22\xd2\x43\x12\xc3\x55\xb3"
        !          61248:             "\x74\xa3\x93\x93\xb3\x73\xdb\xe0\x27\x92" }  },
        !          61249:       /* --- pixel bitmap for bbold325 char#80 P --- */
        !          61250:       {  80,20913,                      /* character number, location */
        !          61251:          31, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          61252:           { 22,   31, 3,81, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          61253:             "\x0e\x01\x7e\x03\x52\x42\x74\x32\x42\x93\x22\x42\xa3"
        !          61254:             "\x12\x42\xb3\x0f\x32\x42\xc2\x02\x42\xb5\x42\xa3\x12"
        !          61255:             "\x42\x93\x22\x42\x74\x32\x4b\x52\x49\x7f\xc2\x42\xef"
        !          61256:             "\x18\xe0" }  },
        !          61257:       /* --- pixel bitmap for bbold325 char#81 Q --- */
        !          61258:       {  81,21262,                      /* character number, location */
        !          61259:          32, 2,   -9, 2,      /* topleft row,col, and botleft row,col */
        !          61260:           { 25,   41, 3,170, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          61261:             "\x97\xe0\x2b\xd3\x73\xb3\x93\x94\xa3\x75\xb3\x53\x12"
        !          61262:             "\xc3\x42\x22\xd2\x33\x22\xd3\x10\xf1\x12\x32\xe2\x13"
        !          61263:             "\x32\xe3\x0f\x82\x42\xe0\x12\x03\x32\xe3\x12\x32\xe2"
        !          61264:             "\x22\x32\x42\x82\x23\x22\x42\x73\x32\x22\x43\x62\x43"
        !          61265:             "\x12\x53\x43\x55\x62\x33\x74\x63\x13\x93\x75\xb3\x73"
        !          61266:             "\xdc\xe0\x17\x13\xe0\x93\xe0\x92\xe0\x93\xe0\x93\xe0"
        !          61267:             "\x93\xe0\x92\xe0\x93\xe0\x92" }  },
        !          61268:       /* --- pixel bitmap for bbold325 char#82 R --- */
        !          61269:       {  82,21667,                      /* character number, location */
        !          61270:          31, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          61271:           { 22,   31, 3,154, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          61272:             "\x0e\x01\x7e\x03\x52\x42\x74\x32\x42\x93\x22\x42\xa3"
        !          61273:             "\x12\x42\xb3\x0f\x32\x42\xc2\x02\x42\xb5\x42\xa3\x12"
        !          61274:             "\x42\x93\x22\x42\x74\x32\x4b\x52\x49\x72\x42\x32\x92"
        !          61275:             "\x42\x33\x82\x42\x43\x72\x42\x52\x72\x42\x53\x62\x42"
        !          61276:             "\x63\x52\x42\x72\x52\x42\x73\x42\x42\x83\x32\x42\x92"
        !          61277:             "\x32\x42\x93\x22\x42\xa3\x12\x42\xb2\x18\xbb\xc2" }  },
        !          61278:       /* --- pixel bitmap for bbold325 char#83 S --- */
        !          61279:       {  83,22046,                      /* character number, location */
        !          61280:          32, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          61281:           { 22,   33, 3,137, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          61282:             "\x77\xdb\x95\x64\x63\x12\x83\x43\x22\x93\x32\x32\xa3"
        !          61283:             "\x13\x32\xb3\x0f\x12\x42\xc2\x0f\x12\x42\xe3\x32\xe0"
        !          61284:             "\x13\x22\xe0\x23\x12\xe0\x35\xe0\x59\xe0\x29\xe0\x64"
        !          61285:             "\xe0\x63\xe0\x63\xe0\x62\xe0\x63\xf1\xe0\x62\x0f\x12"
        !          61286:             "\xe0\x42\x03\xe0\x23\x13\xe0\x12\x33\xd3\x43\xa4\x64"
        !          61287:             "\x64\xaa\xe6\x82" }  },
        !          61288:       /* --- pixel bitmap for bbold325 char#84 T --- */
        !          61289:       {  84,22371,                      /* character number, location */
        !          61290:          31, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          61291:           { 24,   31, 3,27, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          61292:             "\xf1\x0e\x0a\xfe\x82\x42\x80\xfb\x82\x42\x80\xf1\x88"
        !          61293:             "\x83" }  },
        !          61294:       /* --- pixel bitmap for bbold325 char#85 U --- */
        !          61295:       {  85,22696,                      /* character number, location */
        !          61296:          31, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          61297:           { 25,   32, 3,85, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          61298:             "\xf1\x08\xe0\x12\x0f\xe2\x42\xe0\x12\x0f\x22\x42\xe0"
        !          61299:             "\x12\x03\x32\xe3\xf1\x12\x32\xe2\x10\x13\x22\xd3\x32"
        !          61300:             "\x22\xd2\x43\x12\xc3\x55\xb3\x74\xa3\x93\x93\xb3\x73"
        !          61301:             "\xdb\xe0\x27\x93" }  },
        !          61302:       /* --- pixel bitmap for bbold325 char#86 V --- */
        !          61303:       {  86,23077,                      /* character number, location */
        !          61304:          31, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          61305:           { 24,   31, 3,153, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          61306:             "\xf1\x08\xe2\x03\x33\xc3\x12\x42\xc2\x23\x33\xa3\x10"
        !          61307:             "\xf1\x22\x42\xa2\x20\x23\x33\x83\x20\xf1\x32\x42\x82"
        !          61308:             "\x30\x33\x33\x63\x72\x42\x62\x83\x33\x43\x40\xf1\x52"
        !          61309:             "\x42\x42\x50\x53\x33\x23\x50\xf1\x62\x42\x22\x60\x63"
        !          61310:             "\x36\xd2\x44\xe3\x34\x70\xf1\x82\x42\x80\x83\x23\x80"
        !          61311:             "\xf1\x92\x22\x90\x96\x90\xf1\xa4\xa0\xf1\xb2\xb2" }  },
        !          61312:       /* --- pixel bitmap for bbold325 char#87 W --- */
        !          61313:       {  87,23432,                      /* character number, location */
        !          61314:          31, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          61315:           { 34,   31, 3,205, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          61316:             "\xf1\x08\xe0\xa2\x03\x33\xe0\x83\xf2\x12\x42\xe0\x82"
        !          61317:             "\x10\x13\x33\xe0\x63\x10\xf2\x22\x42\xe0\x62\x20\x23"
        !          61318:             "\x33\xe0\x43\x20\xf1\x32\x42\xe0\x42\x30\x33\x33\xe0"
        !          61319:             "\x23\x72\x42\x42\xa2\x40\xf1\x42\x42\x34\x92\x40\x43"
        !          61320:             "\x33\x16\x73\x92\x42\x12\x22\x72\xa2\x45\x23\x62\xa3"
        !          61321:             "\x34\x42\x53\xb2\x43\x43\x42\xc2\x42\x62\x42\xc2\x33"
        !          61322:             "\x63\x32\xc3\x22\x82\x23\xd2\x13\x83\x12\xe2\x12\xa2"
        !          61323:             "\x12\xe5\xa5\xe4\xc4\xe0\x13\xc3\xe0\x22\xe2\x80" }  },
        !          61324:       /* --- pixel bitmap for bbold325 char#88 X --- */
        !          61325:       {  88,23843,                      /* character number, location */
        !          61326:          31, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          61327:           { 25,   31, 3,176, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          61328:             "\x02\xe0\x1b\xd9\x13\xc2\x42\x32\xb3\x33\x33\xa2\x42"
        !          61329:             "\x53\x83\x33\x63\x63\x33\x83\x52\x42\xa2\x43\x33\xa3"
        !          61330:             "\x32\x42\xc3\x13\x33\xd5\x42\xe0\x14\x33\xe0\x13\x33"
        !          61331:             "\xe0\x22\x42\xe0\x23\x33\xe0\x22\x42\xe0\x23\x33\xe0"
        !          61332:             "\x13\x34\xe0\x12\x45\xd3\x33\x13\xc2\x42\x33\xa3\x33"
        !          61333:             "\x42\xa2\x42\x53\x83\x33\x63\x63\x33\x83\x52\x42\xa3"
        !          61334:             "\x33\x33\xb2\x32\x42\xc3\x19\xdb\xe0\x12" }  },
        !          61335:       /* --- pixel bitmap for bbold325 char#89 Y --- */
        !          61336:       {  89,24212,                      /* character number, location */
        !          61337:          31, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          61338:           { 24,   31, 3,93, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          61339:             "\x08\xeb\xc3\x12\x42\xc2\x23\x33\xa3\x32\x42\xa2\x43"
        !          61340:             "\x33\x83\x52\x42\x82\x63\x33\x63\x73\x33\x43\x92\x42"
        !          61341:             "\x42\xa3\x33\x23\xb2\x42\x22\xc3\x36\xd2\x44\xe3\x34"
        !          61342:             "\x70\xfd\x82\x42\x80\xf1\x88\x82" }  },
        !          61343:       /* --- pixel bitmap for bbold325 char#90 Z --- */
        !          61344:       {  90,24561,                      /* character number, location */
        !          61345:          31, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          61346:           { 25,   31, 3,176, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          61347:             "\xf1\x0e\x0b\xe0\x22\x42\xe0\x23\x33\xe0\x22\x42\xe0"
        !          61348:             "\x23\x33\xe0\x13\x33\xe0\x22\x42\xe0\x23\x33\xe0\x22"
        !          61349:             "\x42\xe0\x23\x33\xe0\x22\x42\xe0\x23\x33\xe0\x13\x33"
        !          61350:             "\xe0\x22\x42\xe0\x23\x33\xe0\x22\x42\xe0\x23\x33\xe0"
        !          61351:             "\x13\x33\xe0\x22\x42\xe0\x23\x33\xe0\x22\x42\xe0\x23"
        !          61352:             "\x33\xe0\x22\x42\xe0\x23\x33\xe0\x13\x33\xe0\x22\x42"
        !          61353:             "\xe0\x23\x33\xe0\x22\x42\xe0\x2f\x1e\x0b" }  },
        !          61354:       /* --- pixel bitmap for bbold325 char#91 [ --- */
        !          61355:       {  91,40217,                      /* character number, location */
        !          61356:          34, 3,  -11, 3,      /* topleft row,col, and botleft row,col */
        !          61357:           { 11,   45, 3,26, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          61358:             "\xf1\x0b\x0f\xe2\x42\x3f\xe2\x42\x3f\xa2\x42\x3f\x1b" }  },
        !          61359:       /* --- pixel bitmap for bbold325 char#92 \\ --- */
        !          61360:       {  92,40603,                      /* character number, location */
        !          61361:          34, 1,  -11, 1,      /* topleft row,col, and botleft row,col */
        !          61362:           { 22,   45, 3,194, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          61363:             "\xf1\x08\xe3\x33\xd0\xf1\x12\x42\xd0\x13\x33\xc0\xf1"
        !          61364:             "\x22\x42\xc0\x23\x33\xb0\xf1\x32\x42\xb0\x33\x33\xa0"
        !          61365:             "\xf1\x42\x42\xa0\x43\x33\x90\xf1\x52\x42\x90\x53\x33"
        !          61366:             "\x80\xf1\x62\x42\x80\x63\x33\x70\xf2\x72\x42\x70\x73"
        !          61367:             "\x33\x60\xf1\x82\x42\x60\x83\x33\x50\xf1\x92\x42\x50"
        !          61368:             "\x93\x33\x40\xf1\xa2\x42\x40\xa3\x33\x30\xf1\xb2\x42"
        !          61369:             "\x30\xb3\x33\x20\xf1\xc2\x42\x20\xc3\x33\x10\xf1\xd2"
        !          61370:             "\x42\x10\xd3\x33\xf1\xe8" }  },
        !          61371:       /* --- pixel bitmap for bbold325 char#93 ] --- */
        !          61372:       {  93,40996,                      /* character number, location */
        !          61373:          34, 1,  -11, 1,      /* topleft row,col, and botleft row,col */
        !          61374:           { 11,   45, 3,26, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          61375:             "\xf1\x0b\xfe\x32\x42\xfe\x32\x42\xfa\x32\x42\x0f\x1b" }  },
        !          61376:       /* --- pixel bitmap for bbold325 char#94 (noname) --- */
        !          61377:       {  94,41383,                      /* character number, location */
        !          61378:          34, 3,  -11, 3,      /* topleft row,col, and botleft row,col */
        !          61379:           { 11,   45, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          61380:             "\x00\x06\x30\xc0\x01\x06\x38\xc0\x00\x07\x38\xc0\x01"
        !          61381:             "\x0f\x78\xe0\x03\x1b\xd8\xe0\x06\x33\x9c\x61\x8c\x63"
        !          61382:             "\x0c\x63\x98\xc3\x0c\xe6\x30\x86\x31\x8c\x63\x18\xc3"
        !          61383:             "\x19\xcc\xe0\x06\x36\xb0\x81\x0f\x78\xc0\x03\x1c\xe0"
        !          61384:             "\x00\x07\x30\x80\x03\x18\xc0\x01\x0c\x60" }  },
        !          61385:       /* --- pixel bitmap for bbold325 char#95 (noname) --- */
        !          61386:       {  95,41731,                      /* character number, location */
        !          61387:          34, 1,  -11, 1,      /* topleft row,col, and botleft row,col */
        !          61388:           { 11,   45, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          61389:             "\x03\x18\xc0\x01\x0c\xe0\x00\x06\x70\x80\x03\x1c\xe0"
        !          61390:             "\x01\x0f\xf8\xc0\x06\x36\xb0\x83\x19\xcc\x61\x0c\xe3"
        !          61391:             "\x18\xc6\x30\x86\x33\x98\xe1\x0c\x63\x18\xe3\x18\xc3"
        !          61392:             "\x1c\x66\xb0\x83\x0d\x6c\xe0\x03\x0f\x78\xc0\x01\x0e"
        !          61393:             "\x70\x80\x01\x0e\x30\xc0\x01\x06\x30\x00" }  },
        !          61394:       /* --- pixel bitmap for bbold325 char#96 (noname) --- */
        !          61395:       {  96,42082,                      /* character number, location */
        !          61396:          31, 1,   14, 1,      /* topleft row,col, and botleft row,col */
        !          61397:           { 10,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          61398:             "\x80\x81\x07\x07\x0e\x1c\x30\xe0\x80\x1f\xff\x1d\x76"
        !          61399:             "\xf8\xc0\x03\x1f\x6e\x98\x7f\x78\x00" }  },
        !          61400:       /* --- pixel bitmap for bbold325 char#97 a --- */
        !          61401:       {  97,24886,                      /* character number, location */
        !          61402:          20, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
        !          61403:           { 19,   21, 3,91, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          61404:             "\x76\xba\x22\x35\x53\x12\x23\x12\x65\x22\x22\x83\x13"
        !          61405:             "\x22\x83\x12\x32\x95\x32\x92\x0f\x42\x42\x92\x03\x32"
        !          61406:             "\x92\x12\x32\x92\x13\x22\x83\x22\x22\x83\x23\x12\x65"
        !          61407:             "\x35\x53\x12\x5a\x22\x76\x60" }  },
        !          61408:       /* --- pixel bitmap for bbold325 char#98 b --- */
        !          61409:       {  98,25209,                      /* character number, location */
        !          61410:          31, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          61411:           { 24,   32, 3,107, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          61412:             "\xf1\x08\xe0\x2f\x82\x42\xe0\x22\x42\x46\x62\x42\x2a"
        !          61413:             "\x42\x46\x63\x32\x44\x93\x22\x43\xb3\x12\x43\xc2\x12"
        !          61414:             "\x42\xd2\x12\x42\xd3\x0f\x42\x42\xe2\x02\x42\xd5\x42"
        !          61415:             "\xd2\x1f\x12\x43\xb3\x12\x44\x93\x2c\x63\x38\x2a\xe0"
        !          61416:             "\x26\x63" }  },
        !          61417:       /* --- pixel bitmap for bbold325 char#99 c --- */
        !          61418:       {  99,25576,                      /* character number, location */
        !          61419:          20, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
        !          61420:           { 19,   21, 3,77, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          61421:             "\x76\xba\x75\x53\x53\x12\x64\x32\x22\x82\x23\x22\x83"
        !          61422:             "\x12\x32\x95\x32\xbf\x42\x42\xb3\x32\xc2\x32\x92\x13"
        !          61423:             "\x22\x83\x22\x22\x82\x33\x12\x64\x45\x53\x8a\xb6\x62" }  },
        !          61424:       /* --- pixel bitmap for bbold325 char#100 d --- */
        !          61425:       { 100,25877,                      /* character number, location */
        !          61426:          31, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
        !          61427:           { 19,   32, 3,99, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          61428:             "\xfa\xe0\x32\x76\x42\x5a\x22\x35\x53\x12\x23\x12\x65"
        !          61429:             "\x22\x22\x83\x13\x22\x83\x12\x32\x95\x32\x92\x0f\x42"
        !          61430:             "\x42\x92\x03\x32\x92\x12\x32\x92\x13\x22\x83\x22\x22"
        !          61431:             "\x83\x23\x12\x65\x35\x53\x12\x5a\x22\x76\x68" }  },
        !          61432:       /* --- pixel bitmap for bbold325 char#101 e --- */
        !          61433:       { 101,26224,                      /* character number, location */
        !          61434:          20, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
        !          61435:           { 19,   21, 3,85, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          61436:             "\x75\xc9\x85\x44\x53\x12\x63\x42\x22\x73\x23\x22\x82"
        !          61437:             "\x22\x32\x86\x32\x92\x0f\x12\x4d\x0f\x22\x42\xb3\x32"
        !          61438:             "\xc2\x32\x92\x13\x22\x83\x22\x22\x82\x33\x12\x64\x45"
        !          61439:             "\x53\x8a\xb6\x65" }  },
        !          61440:       /* --- pixel bitmap for bbold325 char#102 f --- */
        !          61441:       { 102,26527,                      /* character number, location */
        !          61442:          32, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          61443:           { 15,   32, 3,55, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          61444:             "\x55\x89\x53\x12\x23\x42\x22\x33\x23\x22\x43\x12\x32"
        !          61445:             "\x55\x32\x52\x0f\x52\x42\x7f\x12\x46\x3f\xe2\x42\x7f"
        !          61446:             "\x18\x72" }  },
        !          61447:       /* --- pixel bitmap for bbold325 char#103 g --- */
        !          61448:       { 103,26866,                      /* character number, location */
        !          61449:          20, 1,  -10, 1,      /* topleft row,col, and botleft row,col */
        !          61450:           { 19,   30, 3,125, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          61451:             "\x76\xba\x22\x35\x53\x12\x23\x12\x65\x22\x22\x83\x13"
        !          61452:             "\x22\x83\x12\x32\x95\x32\x92\x0f\x42\x42\x92\x03\x32"
        !          61453:             "\x92\x12\x32\x92\x13\x22\x83\x22\x22\x83\x23\x12\x65"
        !          61454:             "\x35\x53\x12\x5a\x22\x76\x42\xe0\x32\xe0\x23\xe0\x22"
        !          61455:             "\xe0\x23\x12\xd2\x23\xb3\x35\x64\x6b\xb6\x72" }  },
        !          61456:       /* --- pixel bitmap for bbold325 char#104 h --- */
        !          61457:       { 104,27215,                      /* character number, location */
        !          61458:          31, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          61459:           { 21,   31, 3,66, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          61460:             "\xf1\x08\xdf\x82\x42\xd2\x42\x35\x52\x42\x19\x32\x45"
        !          61461:             "\x53\x22\x44\x72\x22\x43\x83\x12\x42\xa2\x12\x42\xa3"
        !          61462:             "\x0f\xa2\x42\xb2\x0f\x18\xb2" }  },
        !          61463:       /* --- pixel bitmap for bbold325 char#105 i --- */
        !          61464:       { 105,27580,                      /* character number, location */
        !          61465:          31, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          61466:           { 10,   31, 3,55, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          61467:             "\x34\x48\x22\x42\x13\x43\x0f\x12\x62\x03\x43\x12\x42"
        !          61468:             "\x28\x44\x30\xf1\xa0\xf1\x18\x10\xfe\x12\x42\x10\xf1"
        !          61469:             "\x18\x12" }  },
        !          61470:       /* --- pixel bitmap for bbold325 char#106 j --- */
        !          61471:       { 106,27891,                      /* character number, location */
        !          61472:          31, 0,  -10, 0,      /* topleft row,col, and botleft row,col */
        !          61473:           { 16,   41, 3,91, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          61474:             "\x94\xa8\x82\x42\x73\x43\xf1\x62\x62\x63\x43\x72\x42"
        !          61475:             "\x88\xa4\x30\xf1\xe0\x20\xf1\x78\x10\xfe\x72\x42\x10"
        !          61476:             "\xf4\x72\x42\x10\x72\x33\x82\x32\x22\x52\x23\x23\x42"
        !          61477:             "\x22\x44\x22\x13\x69\x95\x62" }  },
        !          61478:       /* --- pixel bitmap for bbold325 char#107 k --- */
        !          61479:       { 107,28248,                      /* character number, location */
        !          61480:          31, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          61481:           { 21,   31, 3,110, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          61482:             "\xf1\x08\xdf\x92\x42\xd2\x42\xb4\x42\xa5\x42\x84\x12"
        !          61483:             "\x42\x73\x32\x42\x63\x42\x42\x44\x52\x42\x33\x72\x42"
        !          61484:             "\x23\x82\x46\x92\x47\x82\x43\x23\x72\x42\x43\x62\x42"
        !          61485:             "\x53\x52\x42\x63\x42\x42\x73\x32\x42\x83\x22\x42\x93"
        !          61486:             "\x18\xab\xb2" }  },
        !          61487:       /* --- pixel bitmap for bbold325 char#108 l --- */
        !          61488:       { 108,28607,                      /* character number, location */
        !          61489:          31, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          61490:           {  8,   31, 3,36, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          61491:             "\xf1\x08\x0f\xe2\x42\x0f\x72\x42\x03\x32\x12\x32\x13"
        !          61492:             "\x22\x23\x12\x35\x53" }  },
        !          61493:       /* --- pixel bitmap for bbold325 char#109 m --- */
        !          61494:       { 109,28932,                      /* character number, location */
        !          61495:          20, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          61496:           { 28,   20, 3,60, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          61497:             "\xa4\x64\x4e\x02\x28\x2a\x42\x22\x42\x22\x43\x56\x43"
        !          61498:             "\x12\x42\x74\x62\x12\x42\x74\x63\x0f\xb2\x42\x82\x82"
        !          61499:             "\x0f\x18\x82\x82" }  },
        !          61500:       /* --- pixel bitmap for bbold325 char#110 n --- */
        !          61501:       { 110,29289,                      /* character number, location */
        !          61502:          20, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          61503:           { 21,   20, 3,48, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          61504:             "\xb5\x58\x19\x3b\x53\x22\x44\x72\x22\x43\x83\x12\x42"
        !          61505:             "\xa2\x12\x42\xa3\x0f\xa2\x42\xb2\x0f\x18\xb2" }  },
        !          61506:       /* --- pixel bitmap for bbold325 char#111 o --- */
        !          61507:       { 111,29606,                      /* character number, location */
        !          61508:          20, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
        !          61509:           { 19,   21, 3,85, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          61510:             "\x75\xc9\x85\x44\x53\x12\x63\x42\x22\x72\x33\x22\x73"
        !          61511:             "\x22\x32\x82\x13\x32\x83\x0f\x42\x42\x92\x03\x32\x83"
        !          61512:             "\x12\x32\x82\x23\x22\x73\x32\x22\x72\x43\x12\x63\x55"
        !          61513:             "\x44\x89\xc5\x73" }  },
        !          61514:       /* --- pixel bitmap for bbold325 char#112 p --- */
        !          61515:       { 112,29921,                      /* character number, location */
        !          61516:          20, 2,   -9, 2,      /* topleft row,col, and botleft row,col */
        !          61517:           { 24,   29, 3,105, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          61518:             "\xc6\x68\x2a\x4c\x63\x32\x44\x93\x22\x43\xb3\x12\x43"
        !          61519:             "\xc2\x12\x42\xd2\x12\x42\xd3\x0f\x42\x42\xe2\x02\x42"
        !          61520:             "\xd5\x42\xd2\x1f\x12\x43\xb3\x12\x44\x93\x22\x46\x63"
        !          61521:             "\x32\x42\x2a\x42\x42\x46\x6f\x52\x42\xe0\x2f\x18\xe0"
        !          61522:             "\x28" }  },
        !          61523:       /* --- pixel bitmap for bbold325 char#113 q --- */
        !          61524:       { 113,30276,                      /* character number, location */
        !          61525:          20, 1,   -9, 1,      /* topleft row,col, and botleft row,col */
        !          61526:           { 19,   29, 3,98, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          61527:             "\x76\xba\x22\x35\x53\x12\x23\x12\x65\x22\x22\x83\x13"
        !          61528:             "\x22\x83\x12\x32\x95\x32\x92\x0f\x42\x42\x92\x03\x32"
        !          61529:             "\x92\x12\x32\x92\x13\x22\x83\x22\x22\x83\x23\x12\x65"
        !          61530:             "\x35\x53\x12\x5a\x22\x76\x42\xf7\xe0\x32" }  },
        !          61531:       /* --- pixel bitmap for bbold325 char#114 r --- */
        !          61532:       { 114,30617,                      /* character number, location */
        !          61533:          20, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          61534:           { 21,   20, 3,41, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          61535:             "\xb5\x58\x19\x3b\x53\x22\x44\x73\x12\x43\x93\x0f\x12"
        !          61536:             "\x42\xb2\x0f\xa2\x42\xdf\x18\xdf" }  },
        !          61537:       /* --- pixel bitmap for bbold325 char#115 s --- */
        !          61538:       { 115,30908,                      /* character number, location */
        !          61539:          20, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
        !          61540:           { 15,   21, 3,69, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          61541:             "\x46\x7a\x43\x22\x23\x23\x32\x33\x12\x42\x43\x0f\x12"
        !          61542:             "\x42\x52\x04\x22\x97\xa8\xd4\xd2\xd3\xd2\x0f\x12\xb2"
        !          61543:             "\x03\x93\x13\x73\x33\x53\x59\x85\x52" }  },
        !          61544:       /* --- pixel bitmap for bbold325 char#116 t --- */
        !          61545:       { 116,31191,                      /* character number, location */
        !          61546:          31, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          61547:           { 15,   32, 3,57, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          61548:             "\xf1\x08\x7f\x92\x42\x7f\x12\x49\x0f\xa2\x42\x73\x32"
        !          61549:             "\x52\x12\x32\x52\x13\x22\x43\x22\x22\x33\x33\x12\x23"
        !          61550:             "\x59\x85\x53" }  },
        !          61551:       /* --- pixel bitmap for bbold325 char#117 u --- */
        !          61552:       { 117,31530,                      /* character number, location */
        !          61553:          19, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          61554:           { 19,   20, 3,57, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          61555:             "\xf1\x08\x92\x0f\x92\x42\x92\x03\x32\x83\x12\x32\x83"
        !          61556:             "\x13\x22\x74\x22\x22\x74\x23\x12\x65\x35\x44\x12\x59"
        !          61557:             "\x32\x75\x73" }  },
        !          61558:       /* --- pixel bitmap for bbold325 char#118 v --- */
        !          61559:       { 118,31849,                      /* character number, location */
        !          61560:          19, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          61561:           { 18,   19, 3,81, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          61562:             "\xf1\x08\x82\x03\x33\x63\x12\x42\x62\x23\x33\x43\x32"
        !          61563:             "\x42\x42\x43\x33\x23\x52\x42\x22\x63\x36\x72\x44\x83"
        !          61564:             "\x34\x92\x42\xa3\x23\xb2\x22\xc6\x60\xf1\x74\x70\xf1"
        !          61565:             "\x82\x83" }  },
        !          61566:       /* --- pixel bitmap for bbold325 char#119 w --- */
        !          61567:       { 119,32136,                      /* character number, location */
        !          61568:          19, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          61569:           { 28,   19, 3,119, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          61570:             "\xf1\x08\xe0\x42\x03\x33\xe0\x23\x12\x42\xe0\x22\x23"
        !          61571:             "\x33\xe3\x10\xf1\x22\x42\xe2\x20\x23\x33\x22\x83\x20"
        !          61572:             "\xf1\x32\x42\x14\x72\x30\x33\x38\x53\x72\x43\x23\x42"
        !          61573:             "\x83\x32\x42\x33\x92\x23\x43\x22\xa2\x13\x63\x12\xa5"
        !          61574:             "\x85\xb4\x84\xc3\xa3\xd2\xb2\x64" }  },
        !          61575:       /* --- pixel bitmap for bbold325 char#120 x --- */
        !          61576:       { 120,32461,                      /* character number, location */
        !          61577:          19, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          61578:           { 19,   19, 3,88, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          61579:             "\x02\x9b\x79\x13\x62\x42\x33\x43\x33\x43\x23\x33\x63"
        !          61580:             "\x12\x42\x85\x33\x93\x33\xa2\x42\xa3\x33\xa2\x42\xa3"
        !          61581:             "\x33\x93\x35\x82\x42\x13\x63\x33\x23\x43\x33\x43\x32"
        !          61582:             "\x42\x63\x19\x7b\x92" }  },
        !          61583:       /* --- pixel bitmap for bbold325 char#121 y --- */
        !          61584:       { 121,32762,                      /* character number, location */
        !          61585:          19, 1,  -10, 1,      /* topleft row,col, and botleft row,col */
        !          61586:           { 18,   29, 3,115, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          61587:             "\xf1\x08\x82\x03\x33\x63\x12\x42\x62\x23\x33\x43\x32"
        !          61588:             "\x42\x42\x43\x33\x23\x52\x42\x22\x63\x36\x72\x44\x83"
        !          61589:             "\x34\x92\x42\xa3\x23\xb2\x22\xc6\x60\xf1\x74\x70\x82"
        !          61590:             "\xe0\x13\xe0\x12\xe0\x13\xe0\x12\xe0\x13\xe3\xe3\xe3"
        !          61591:             "\xe3\xe3\xe0\x12\xe0\x22" }  },
        !          61592:       /* --- pixel bitmap for bbold325 char#122 z --- */
        !          61593:       { 122,33069,                      /* character number, location */
        !          61594:          19, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          61595:           { 19,   19, 3,72, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          61596:             "\xf1\x0e\x05\xa2\x42\xa3\x33\x93\x33\xa2\x42\xa3\x33"
        !          61597:             "\x93\x33\xa2\x42\xa3\x33\xa2\x42\xa3\x33\x93\x33\xa2"
        !          61598:             "\x42\xa3\x33\x93\x33\xa2\x42\xaf\x1e\x05" }  },
        !          61599:       /* --- pixel bitmap for bbold325 char#123 \- --- */
        !          61600:       { 123,42722,                      /* character number, location */
        !          61601:          13, 1,   11, 1,      /* topleft row,col, and botleft row,col */
        !          61602:           { 17,    2, 3, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          61603:             "\x1e\x01\x1e\x03" }  },
        !          61604:       /* --- pixel bitmap for bbold325 char#124 | --- */
        !          61605:       { 124,42341,                      /* character number, location */
        !          61606:          34, 3,  -11, 3,      /* topleft row,col, and botleft row,col */
        !          61607:           {  8,   45, 3,26, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          61608:             "\xf1\x08\x0f\xe2\x42\x0f\xe2\x42\x0f\xa2\x42\x0f\x18" }  },
        !          61609:       /* --- pixel bitmap for bbold325 char#125 (noname) --- */
        !          61610:       { 125,42936,                      /* character number, location */
        !          61611:          13, 1,   11, 1,      /* topleft row,col, and botleft row,col */
        !          61612:           { 35,    2, 2, 4, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          61613:             "\x01\x21\x01\x23" }  },
        !          61614:       /* --- pixel bitmap for bbold325 char#126 (noname) --- */
        !          61615:       { 126,43156,                      /* character number, location */
        !          61616:          31, 1,   14, 1,      /* topleft row,col, and botleft row,col */
        !          61617:           { 22,   17, 3,87, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          61618:             "\x72\xa2\x64\x84\x53\x93\x63\x93\x63\x93\x72\xa2\x73"
        !          61619:             "\x93\x76\x66\x39\x39\x13\x42\x33\x42\x13\x43\x23\x43"
        !          61620:             "\x0f\x12\x62\x22\x62\x03\x43\x23\x43\x12\x42\x42\x42"
        !          61621:             "\x28\x48\x44\x84\x30" }  },
        !          61622:       /* --- pixel bitmap for bbold325 char#127 \omega --- */
        !          61623:       { 127,11811,                      /* character number, location */
        !          61624:          19, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
        !          61625:           { 28,   20, 3,113, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          61626:             "\x62\xc2\xa4\xc4\x75\xe3\x53\x12\xe0\x13\x33\x22\xe0"
        !          61627:             "\x23\x22\x32\xe0\x32\x13\x32\xe0\x33\x0f\x42\x42\x52"
        !          61628:             "\xb2\x02\x42\x44\xa5\x32\x44\x93\x12\x32\x44\x92\x23"
        !          61629:             "\x22\x36\x73\x32\x22\x32\x22\x72\x43\x12\x23\x23\x53"
        !          61630:             "\x59\x49\x85\x85\x52" }  },
        !          61631:       /* --- trailer  --- */
        !          61632:       { -99, -999,  0,0,0,0, { 0,0,0,0, (pixbyte *)"\0" }  }
        !          61633:    } ;
        !          61634: 
        !          61635: 
        !          61636: /* --- size=9 for .450gf ---
        !          61637:  * mf '\mode=preview; mag=magstep(-9.62468787106292402266); input bbold10'
        !          61638:  * --------------------------------------------------------------------- */
        !          61639: /* --- fontdef for bbold450 --- */
        !          61640: static	chardef  bbold450[] =
        !          61641:    {
        !          61642:       /* --- pixel bitmap for bbold450 char#0 \Gamma --- */
        !          61643:       {   0,  246,                      /* character number, location */
        !          61644:          43, 5,    0, 5,      /* topleft row,col, and botleft row,col */
        !          61645:           { 31,   43, 2,15, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          61646:             "\xff\x01\x00\x1f\x00\xff\x26\x02\x06\x02\x15\xff\x01"
        !          61647:             "\x0a\x15" }  },
        !          61648:       /* --- pixel bitmap for bbold450 char#1 \Delta --- */
        !          61649:       {   1,  628,                      /* character number, location */
        !          61650:          43, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          61651:           { 34,   43, 3,254, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          61652:             "\xf1\xe0\x22\xe0\x20\xf1\xe0\x14\xe0\x10\xe6\xe0\xf1"
        !          61653:             "\xe2\x22\xe0\xd3\x23\xe0\xc2\x42\xe0\xb3\x43\xc0\xf1"
        !          61654:             "\xc2\x62\xc0\xb3\x54\xb0\xf1\xb2\x64\xb0\xa3\x56\xe0"
        !          61655:             "\x62\x62\x22\xe0\x53\x53\x23\x90\xf1\x92\x62\x42\x90"
        !          61656:             "\x83\x53\x43\xe0\x22\x62\x62\xe0\x13\x53\x63\x70\xf1"
        !          61657:             "\x72\x62\x82\x70\x63\x53\x83\xc2\x62\xa2\xb3\x53\xa3"
        !          61658:             "\x50\xf1\x52\x62\xc2\x50\x43\x53\xc3\x40\xf1\x42\x62"
        !          61659:             "\xe2\x40\x33\x53\xe3\x62\x62\xe0\x22\x53\x53\xe0\x23"
        !          61660:             "\x20\xf1\x22\x62\xe0\x42\x20\x13\x53\xe0\x43\x22\x62"
        !          61661:             "\xe0\x62\x13\x53\xe0\x63\x0f\x1e\x0e\x06" }  },
        !          61662:       /* --- pixel bitmap for bbold450 char#2 \Theta --- */
        !          61663:       {   2, 1054,                      /* character number, location */
        !          61664:          44, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          61665:           { 35,   45, 3,259, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          61666:             "\xe7\xe0\xbd\xe0\x65\x75\xe0\x33\xd3\xe0\x13\xe0\x13"
        !          61667:             "\xd4\xe0\x23\xb5\xe0\x33\x93\x12\xe0\x43\x82\x22\xe0"
        !          61668:             "\x52\x73\x22\xe0\x53\x53\x32\xe0\x63\x20\xf1\x22\x42"
        !          61669:             "\xe0\x72\x20\x13\x42\xe0\x73\x10\xf2\x12\x52\xe0\x82"
        !          61670:             "\x13\x52\xe0\x83\x0f\x22\x62\xe0\x92\x02\x62\x6b\x64"
        !          61671:             "\x62\x5d\x52\x0f\x32\x62\xe0\x92\x03\x52\xe0\x83\xf2"
        !          61672:             "\x12\x52\xe0\x82\x10\x13\x42\xe0\x73\x10\xf1\x22\x42"
        !          61673:             "\xe0\x72\x20\x23\x32\xe0\x63\x53\x22\xe0\x53\x72\x22"
        !          61674:             "\xe0\x52\x83\x12\xe0\x43\x95\xe0\x33\xb4\xe0\x23\xd3"
        !          61675:             "\xe0\x13\xe0\x13\xd3\xe0\x35\x75\xe0\x6d\xe0\xb7\xe0" }  },
        !          61676:       /* --- pixel bitmap for bbold450 char#3 \Lambda --- */
        !          61677:       {   3, 1511,                      /* character number, location */
        !          61678:          43, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          61679:           { 34,   43, 3,254, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          61680:             "\xf1\xe0\x22\xe0\x20\xf1\xe0\x14\xe0\x10\xe6\xe0\xf1"
        !          61681:             "\xe2\x22\xe0\xd3\x23\xe0\xc2\x42\xe0\xb3\x43\xc0\xf1"
        !          61682:             "\xc2\x62\xc0\xb3\x54\xb0\xf1\xb2\x64\xb0\xa3\x56\xe0"
        !          61683:             "\x62\x62\x22\xe0\x53\x53\x23\x90\xf1\x92\x62\x42\x90"
        !          61684:             "\x83\x53\x43\xe0\x22\x62\x62\xe0\x13\x53\x63\x70\xf1"
        !          61685:             "\x72\x62\x82\x70\x63\x53\x83\xc2\x62\xa2\xb3\x53\xa3"
        !          61686:             "\x50\xf1\x52\x62\xc2\x50\x43\x53\xc3\x40\xf1\x42\x62"
        !          61687:             "\xe2\x40\x33\x53\xe3\x62\x62\xe0\x22\x53\x53\xe0\x23"
        !          61688:             "\x20\xf1\x22\x62\xe0\x42\x20\x13\x53\xe0\x43\x22\x62"
        !          61689:             "\xe0\x62\x13\x53\xe0\x63\x0f\x1a\xe0\x82" }  },
        !          61690:       /* --- pixel bitmap for bbold450 char#4 \Xi --- */
        !          61691:       {   4, 1938,                      /* character number, location */
        !          61692:          43, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          61693:           { 34,   43, 2,20, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          61694:             "\xff\x01\x00\x22\xff\x11\x22\x00\x0b\x0c\x15\x0e\x0a"
        !          61695:             "\x00\xff\x12\x22\xff\x01\x22" }  },
        !          61696:       /* --- pixel bitmap for bbold450 char#5 \Pi --- */
        !          61697:       {   5, 2169,                      /* character number, location */
        !          61698:          43, 5,    0, 5,      /* topleft row,col, and botleft row,col */
        !          61699:           { 31,   43, 2,18, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          61700:             "\xff\x01\x00\x1f\x00\xff\x26\x02\x06\x02\x13\x02\x00"
        !          61701:             "\xff\x01\x0a\x13\x02" }  },
        !          61702:       /* --- pixel bitmap for bbold450 char#6 \Sigma --- */
        !          61703:       {   6, 2633,                      /* character number, location */
        !          61704:          43, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          61705:           { 35,   43, 3,250, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          61706:             "\xf1\x0e\x0e\x07\x12\x62\xe0\xb3\x53\xe0\xb2\x62\xe0"
        !          61707:             "\xb3\x53\xe0\xb3\x53\xe0\xb2\x62\xe0\xb3\x53\xe0\xb2"
        !          61708:             "\x62\xe0\xb3\x53\xe0\xb3\x53\xe0\xb2\x62\xe0\xb3\x53"
        !          61709:             "\xe0\xb3\x53\xe0\xb2\x62\xe0\xb3\x53\xe0\xb2\x62\xe0"
        !          61710:             "\xb3\x53\xe0\xb3\x53\xe0\xb2\x62\xe0\xb3\x53\xe0\xa2"
        !          61711:             "\x62\xe0\xa3\x53\xe0\x93\x53\xe0\xa2\x62\xe0\xa3\x53"
        !          61712:             "\xe0\xa2\x62\xe0\xa3\x53\xe0\x93\x53\xe0\xa2\x62\xe0"
        !          61713:             "\xa3\x53\xe0\x93\x53\xe0\xa2\x62\xe0\xa3\x53\xe0\xa2"
        !          61714:             "\x62\xe0\xa3\x53\xe0\x93\x53\xe0\xa2\x62\xe0\xa3\x53"
        !          61715:             "\xe0\xa2\x62\xe0\xaf\x1e\x0e\x07" }  },
        !          61716:       /* --- pixel bitmap for bbold450 char#7 \Upsilon --- */
        !          61717:       {   7, 3017,                      /* character number, location */
        !          61718:          44, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          61719:           { 34,   44, 3,91, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          61720:             "\x54\xe0\x24\x88\xc8\x53\x43\xa3\x43\x33\x63\x83\x63"
        !          61721:             "\x10\xf1\x12\x82\x82\x82\x13\x83\x63\x83\x0f\x42\xa2"
        !          61722:             "\x62\xa2\xf8\xc2\x62\xc0\xf1\xca\xc0\xfe\xc2\x62\xc0"
        !          61723:             "\xf3\xc2\x62\xc0\xf1\xca\xc0" }  },
        !          61724:       /* --- pixel bitmap for bbold450 char#8 \Phi --- */
        !          61725:       {   8, 3441,                      /* character number, location */
        !          61726:          43, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          61727:           { 34,   43, 3,171, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          61728:             "\xf1\xca\xc0\xf7\xc2\x62\xc0\x95\x65\xe0\x27\x67\xc4"
        !          61729:             "\x32\x62\x34\x93\x52\x62\x53\x73\x62\x62\x63\x53\x72"
        !          61730:             "\x62\x73\x33\x82\x62\x83\x22\x92\x62\x92\x13\x92\x62"
        !          61731:             "\x93\x0f\x42\xa2\x62\xa2\x03\x92\x62\x93\x12\x92\x62"
        !          61732:             "\x92\x23\x82\x62\x83\x33\x72\x62\x73\x53\x62\x62\x63"
        !          61733:             "\x73\x52\x62\x53\x94\x32\x62\x34\xc7\x67\xe0\x25\x65"
        !          61734:             "\x90\xf7\xc2\x62\xc0\xf1\xca\xc3" }  },
        !          61735:       /* --- pixel bitmap for bbold450 char#9 \Psi --- */
        !          61736:       {   9, 3897,                      /* character number, location */
        !          61737:          43, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          61738:           { 34,   43, 3,141, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          61739:             "\xf1\xca\xc0\xf6\xc2\x62\xc3\x92\x62\x98\x72\x62\x75"
        !          61740:             "\x32\x72\x62\x72\x63\x62\x62\x63\x30\xfa\x42\x62\x62"
        !          61741:             "\x62\x40\x43\x52\x62\x53\x92\x52\x62\x52\xa3\x42\x62"
        !          61742:             "\x43\xb2\x42\x62\x43\xb3\x32\x62\x33\xd3\x22\x62\x23"
        !          61743:             "\xe0\x13\x12\x62\x13\xe0\x35\x65\xe0\x63\x63\xb0\xf7"
        !          61744:             "\xc2\x62\xc0\xf1\xca\xc2" }  },
        !          61745:       /* --- pixel bitmap for bbold450 char#10 \Omega --- */
        !          61746:       {  10, 4367,                      /* character number, location */
        !          61747:          44, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          61748:           { 35,   44, 3,230, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          61749:             "\xe7\xe0\xbd\xe0\x65\x75\xe0\x33\xd3\xe0\x13\xe0\x13"
        !          61750:             "\xd4\xe0\x23\xb5\xe0\x33\x93\x12\xe0\x43\x82\x22\xe0"
        !          61751:             "\x52\x73\x22\xe0\x53\x53\x32\xe0\x63\x20\xf1\x22\x42"
        !          61752:             "\xe0\x72\x20\x13\x42\xe0\x73\x10\xf2\x12\x52\xe0\x82"
        !          61753:             "\x13\x52\xe0\x83\x0f\x82\x62\xe0\x92\x03\x52\xe0\x83"
        !          61754:             "\xf2\x12\x52\xe0\x82\x10\x13\x42\xe0\x73\x10\xf1\x22"
        !          61755:             "\x42\xe0\x72\x20\x23\x32\xe0\x63\x52\x32\xe0\x62\x63"
        !          61756:             "\x22\xe0\x53\x72\x22\xe0\x52\x83\x12\xe0\x43\x95\xe0"
        !          61757:             "\x33\xb4\xe0\x32\xc4\xe0\x23\x6f\x1a\xe0\x1a" }  },
        !          61758:       /* --- pixel bitmap for bbold450 char#11 \alpha --- */
        !          61759:       {  11, 4821,                      /* character number, location */
        !          61760:          28, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
        !          61761:           { 31,   29, 3,185, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          61762:             "\xa6\xe0\x8b\xb2\x64\x63\xa2\x46\x73\x92\x33\x22\x82"
        !          61763:             "\x92\x32\x32\x83\x82\x23\x32\x92\x82\x13\x42\x92\x82"
        !          61764:             "\x12\x52\x93\x63\x12\x52\xa2\x62\x13\x52\xa2\x62\x1f"
        !          61765:             "\x12\x62\xa2\x62\x12\x62\xa3\x43\x1f\x12\x62\xb2\x42"
        !          61766:             "\x22\x62\xb2\x33\x22\x62\xb2\x32\x33\x52\xb2\x23\x42"
        !          61767:             "\x52\xb3\x12\x52\x52\xc5\x53\x42\xc4\x73\x32\xc3\x92"
        !          61768:             "\x32\xc3\x93\x22\xb5\x96\x94\x13\xa4\x74\x46\x7c\x84"
        !          61769:             "\xa7\xe0" }  },
        !          61770:       /* --- pixel bitmap for bbold450 char#12 \beta --- */
        !          61771:       {  12, 5232,                      /* character number, location */
        !          61772:          44, 3,  -12, 3,      /* topleft row,col, and botleft row,col */
        !          61773:           { 29,   56, 3,267, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          61774:             "\xe8\xe0\x4d\xe5\x83\xc3\xc4\x84\xe0\x12\x75\xe0\x13"
        !          61775:             "\x53\x12\xe0\x22\x43\x22\xe0\x23\x32\x32\xe0\x32\x23"
        !          61776:             "\x32\xe0\x32\x22\x42\xe0\x32\x13\x42\xe0\x32\x12\x52"
        !          61777:             "\xe0\x26\x52\xe0\x22\x12\x62\xe0\x13\x12\x62\xe3\x22"
        !          61778:             "\x62\xc4\x32\x62\x86\x52\x62\x85\x62\x62\xb4\x42\x62"
        !          61779:             "\xd3\x32\x62\xe3\x22\x62\xe0\x12\x22\x62\xe0\x13\x1f"
        !          61780:             "\x12\x62\xe0\x22\x12\x62\xe0\x23\x0f\x62\x62\xe0\x32"
        !          61781:             "\x02\x62\xe0\x23\x0f\x12\x62\xe0\x22\x12\x62\xe0\x13"
        !          61782:             "\x12\x63\xe3\x12\x63\xd3\x22\x64\xc2\x32\x65\xa3\x32"
        !          61783:             "\x62\x14\x64\x42\x62\x3a\x62\x62\x56\x8f\x82\x62\xe0"
        !          61784:             "\x5f\x1a\xe0\x50" }  },
        !          61785:       /* --- pixel bitmap for bbold450 char#13 \gamma --- */
        !          61786:       {  13, 5746,                      /* character number, location */
        !          61787:          27, 1,  -13, 1,      /* topleft row,col, and botleft row,col */
        !          61788:           { 26,   40, 3,169, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          61789:             "\x06\xee\x01\x89\x65\x45\xe0\x18\xe0\x64\xe0\x76\xe0"
        !          61790:             "\x44\x24\xe0\x13\x63\xd4\x73\xc4\x82\xb5\x83\x93\x12"
        !          61791:             "\x93\x73\x22\xa3\x62\x32\xb2\x53\x32\xb3\x20\xf1\x22"
        !          61792:             "\x42\xc2\x20\x13\x42\xc3\x10\xf1\x12\x52\xd2\x13\x52"
        !          61793:             "\xd3\x0f\x72\x62\xe2\x03\x52\xd3\xf1\x12\x52\xd2\x10"
        !          61794:             "\x13\x42\xc3\x33\x32\xb3\x52\x32\xb2\x63\x22\xa3\x76"
        !          61795:             "\x84\xa4\x64\xdb\xe0\x46\xa0" }  },
        !          61796:       /* --- pixel bitmap for bbold450 char#14 \delta --- */
        !          61797:       {  14, 6164,                      /* character number, location */
        !          61798:          44, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
        !          61799:           { 26,   45, 3,183, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          61800:             "\x98\xe0\x1e\xa5\x84\x83\xd4\x53\xe0\x23\x33\xe0\x43"
        !          61801:             "\x22\xe0\x66\xe0\x72\x0f\x32\xe0\xa3\xe0\xa3\xe0\xa3"
        !          61802:             "\xe0\xa4\xe0\xa6\xe0\x96\xe0\x5a\xe5\x45\xb3\x12\x74"
        !          61803:             "\x83\x22\x93\x63\x32\xa3\x52\x42\xb3\x33\x42\xc2\x32"
        !          61804:             "\x52\xc3\x13\x52\xd2\x12\x62\xd3\x0f\x52\x62\xe2\x03"
        !          61805:             "\x52\xd3\xf1\x12\x52\xd2\x10\x13\x42\xc3\x33\x32\xb3"
        !          61806:             "\x52\x32\xb2\x63\x22\xa3\x76\x84\xa4\x64\xdb\xe0\x46"
        !          61807:             "\xa2" }  },
        !          61808:       /* --- pixel bitmap for bbold450 char#15 \epsilon --- */
        !          61809:       {  15, 6576,                      /* character number, location */
        !          61810:          28, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
        !          61811:           { 26,   29, 3,129, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          61812:             "\xa7\xe0\x2d\xc4\x74\x96\x94\x63\x22\xb3\x52\x32\xc3"
        !          61813:             "\x33\x32\xd3\x13\x42\xe2\xf1\x12\x52\xe0\x23\x52\xe0"
        !          61814:             "\x22\x62\xe0\x2f\x12\x67\xbf\x32\x62\xe0\x23\x52\xe0"
        !          61815:             "\x20\xf1\x12\x52\xe0\x20\x13\x42\xe2\x23\x32\xd3\x32"
        !          61816:             "\x32\xc3\x43\x22\xb3\x66\x94\x94\x74\xcd\xe0\x27\x93" }  },
        !          61817:       /* --- pixel bitmap for bbold450 char#16 \zeta --- */
        !          61818:       {  16, 6917,                      /* character number, location */
        !          61819:          43, 3,  -12, 3,      /* topleft row,col, and botleft row,col */
        !          61820:           { 21,   55, 3,189, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          61821:             "\xe0\x52\xe0\x34\xe0\x14\xe0\x14\xe0\x23\xe0\x33\xe0"
        !          61822:             "\x33\xe0\x33\xe0\x33\xe0\x33\xe0\x34\xe0\x25\xe0\x22"
        !          61823:             "\x12\xe0\x13\x12\xe0\x12\x22\xe3\x22\xe2\x32\xd3\x32"
        !          61824:             "\xd2\x42\xc3\x42\xb0\xf2\x12\x52\xb3\x52\xbf\x82\x62"
        !          61825:             "\xb3\x52\xc2\x52\xc3\x42\xd2\x42\xd3\x32\xe3\x22\xe0"
        !          61826:             "\x13\x12\xe0\x25\xe0\x45\xe0\x46\xe0\x46\xe0\x54\xe0"
        !          61827:             "\x52\xe0\x53\xf2\xe0\x52\xe0\x43\xe0\x42\xe0\x43\xe0"
        !          61828:             "\x15\xe0\x23\x43" }  },
        !          61829:       /* --- pixel bitmap for bbold450 char#17 \eta --- */
        !          61830:       {  17, 7299,                      /* character number, location */
        !          61831:          28, 3,  -12, 3,      /* topleft row,col, and botleft row,col */
        !          61832:           { 29,   40, 3,88, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          61833:             "\xe0\x16\x8a\x3a\x6a\x14\x64\x42\x65\xa3\x32\x64\xc3"
        !          61834:             "\x22\x63\xe2\x22\x63\xe3\x1f\x12\x62\xe0\x22\x12\x62"
        !          61835:             "\xe0\x23\x0f\xe2\x62\xe0\x32\x02\x62\xe0\x32\x0f\x1a"
        !          61836:             "\xe0\x32\xfb\xe0\xd2" }  },
        !          61837:       /* --- pixel bitmap for bbold450 char#18 \theta --- */
        !          61838:       {  18, 7699,                      /* character number, location */
        !          61839:          44, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
        !          61840:           { 26,   45, 3,169, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          61841:             "\xa6\xe0\x4a\xe4\x64\xb5\x83\x93\x12\x93\x82\x22\xa2"
        !          61842:             "\x73\x22\xa3\x62\x32\xb2\x53\x32\xb3\x42\x42\xc2\x33"
        !          61843:             "\x42\xc3\x10\xf3\x12\x52\xd2\x13\x52\xd3\x0f\x42\x62"
        !          61844:             "\xe2\x0f\x12\x6e\x04\x0f\x52\x62\xe2\x03\x52\xd3\xf3"
        !          61845:             "\x12\x52\xd2\x10\x13\x42\xc3\x32\x42\xc2\x43\x32\xb3"
        !          61846:             "\x52\x32\xb2\x63\x22\xa3\x72\x22\xa2\x83\x12\x93\x95"
        !          61847:             "\x83\xb4\x64\xea\xe0\x46\xa0" }  },
        !          61848:       /* --- pixel bitmap for bbold450 char#19 \iota --- */
        !          61849:       {  19, 8158,                      /* character number, location */
        !          61850:          27, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          61851:           { 10,   27, 3,42, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          61852:             "\xf1\x0a\x0f\xe2\x62\x02\x65\x52\xf1\x12\x52\x13\x42"
        !          61853:             "\x22\x42\x23\x32\x33\x22\x46\x64" }  },
        !          61854:       /* --- pixel bitmap for bbold450 char#20 \kappa --- */
        !          61855:       {  20, 8476,                      /* character number, location */
        !          61856:          27, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          61857:           { 29,   27, 3,156, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          61858:             "\x0a\xe0\x3c\xe0\x16\x62\xe3\x22\x62\xc4\x32\x62\xa4"
        !          61859:             "\x52\x62\x84\x72\x62\x73\x92\x62\x54\xa2\x62\x34\xc2"
        !          61860:             "\x62\x14\xe2\x65\xe0\x22\x64\xe0\x32\x66\xe0\x12\x62"
        !          61861:             "\x23\xe2\x62\x33\xd2\x62\x43\xc2\x62\x53\xb2\x62\x63"
        !          61862:             "\xa2\x62\x73\x92\x62\x82\x92\x62\x83\x82\x62\x93\x72"
        !          61863:             "\x62\xa3\x62\x62\xb3\x52\x62\xc3\x4a\xde\x02\xe0\x14" }  },
        !          61864:       /* --- pixel bitmap for bbold450 char#21 \lambda --- */
        !          61865:       {  21, 8843,                      /* character number, location */
        !          61866:          43, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          61867:           { 26,   43, 3,220, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          61868:             "\xf1\x0a\xe0\x23\x53\xe0\x22\x62\xe0\x23\x53\xe0\xf1"
        !          61869:             "\x22\x62\xe0\x23\x53\xe0\x22\x62\xe0\x23\x53\xc0\xf1"
        !          61870:             "\x42\x62\xc0\x43\x53\xb0\xf1\x52\x62\xb0\x53\x53\xe0"
        !          61871:             "\x22\x62\xe0\x23\x53\x90\xf1\x72\x62\x90\x73\x53\xe0"
        !          61872:             "\x22\x62\xe0\x23\x53\x70\xf1\x92\x62\x70\x93\x53\xe0"
        !          61873:             "\x13\x62\xe5\x53\xd2\x12\x62\xc3\x12\x62\xb3\x23\x53"
        !          61874:             "\xa2\x42\x62\x93\x42\x62\x92\x53\x53\x73\x62\x62\x72"
        !          61875:             "\x73\x53\x53\x82\x62\x43\x92\x62\x42\xa3\x53\x23\xb2"
        !          61876:             "\x62\x22\xc3\x56\xdc\xea" }  },
        !          61877:       /* --- pixel bitmap for bbold450 char#22 \mu --- */
        !          61878:       {  22, 9252,                      /* character number, location */
        !          61879:          27, 3,  -12, 3,      /* topleft row,col, and botleft row,col */
        !          61880:           { 29,   39, 3,89, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          61881:             "\xf1\x0a\xe0\x32\x0f\xe2\x62\xe0\x32\x02\x62\xe0\x32"
        !          61882:             "\x0f\x22\x62\xe0\x23\x0f\x12\x63\xe4\x02\x64\xc7\x65"
        !          61883:             "\xa3\x14\x62\x14\x64\x24\x62\x3a\x44\x62\x56\x8f\x82"
        !          61884:             "\x62\xe0\x5f\x1a\xe0\x50" }  },
        !          61885:       /* --- pixel bitmap for bbold450 char#23 \nu --- */
        !          61886:       {  23, 9679,                      /* character number, location */
        !          61887:          27, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          61888:           { 26,   27, 3,131, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          61889:             "\xf1\x0a\xe2\x0f\x22\x62\xe2\x02\x62\xd3\x0f\x22\x62"
        !          61890:             "\xd2\x12\x62\xc3\x12\x62\xc2\x22\x62\xb3\x22\x62\xb2"
        !          61891:             "\x32\x62\xa3\x32\x62\xa2\x42\x62\x93\x42\x62\x83\x52"
        !          61892:             "\x62\x73\x62\x62\x63\x72\x62\x53\x82\x62\x43\x92\x62"
        !          61893:             "\x33\xa2\x62\x14\xb2\x65\xd2\x36\xe0\x19\xe0\x35\xe0"
        !          61894:             "\x73" }  },
        !          61895:       /* --- pixel bitmap for bbold450 char#24 \xi --- */
        !          61896:       {  24,10040,                      /* character number, location */
        !          61897:          43, 3,  -12, 3,      /* topleft row,col, and botleft row,col */
        !          61898:           { 21,   55, 3,183, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          61899:             "\xab\x6e\x01\x46\xd4\x22\xc3\x42\xc2\x52\xb3\x52\xbf"
        !          61900:             "\x32\x62\xb3\x52\xc2\x52\xc3\x42\xd4\x22\xe0\x16\xe0"
        !          61901:             "\x39\xe7\xc4\xe0\x25\xe4\x12\xe2\x32\xd3\x32\xb0\xf1"
        !          61902:             "\x13\x42\xb0\x12\x52\xb3\x52\xbf\x52\x62\xb3\x52\xc2"
        !          61903:             "\x52\xc3\x42\xd2\x42\xd3\x32\xe3\x22\xe0\x13\x12\xe0"
        !          61904:             "\x25\xe0\x45\xe0\x46\xe0\x46\xe0\x54\xe0\x52\xe0\x53"
        !          61905:             "\xf2\xe0\x52\xe0\x43\xe0\x42\xe0\x43\xe0\x15\xe0\x23"
        !          61906:             "\x43" }  },
        !          61907:       /* --- pixel bitmap for bbold450 char#25 \pi --- */
        !          61908:       {  25,10429,                      /* character number, location */
        !          61909:          27, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          61910:           { 29,   27, 3,35, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          61911:             "\xf1\x0e\x0e\x01\xfe\x52\x62\x72\x50\xf7\x52\x62\x72"
        !          61912:             "\x50\xf1\x5a\x72\x52" }  },
        !          61913:       /* --- pixel bitmap for bbold450 char#26 \rho --- */
        !          61914:       {  26,10795,                      /* character number, location */
        !          61915:          28, 3,  -12, 3,      /* topleft row,col, and botleft row,col */
        !          61916:           { 26,   40, 3,135, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          61917:             "\xa6\xe0\x3b\xe4\x64\xa6\x84\x73\x22\xa3\x62\x32\xb2"
        !          61918:             "\x53\x32\xb3\x33\x42\xc3\x10\xf1\x12\x52\xd2\x13\x52"
        !          61919:             "\xd3\x0f\x62\x62\xe2\x02\x62\xd3\x0f\x12\x62\xd2\x12"
        !          61920:             "\x62\xc3\x12\x62\xb3\x22\x62\xb2\x32\x62\xa3\x32\x62"
        !          61921:             "\x84\x42\x62\x64\x62\x6a\x82\x68\xaf\x82\x62\xe0\x2f"
        !          61922:             "\x1a\xe0\x25" }  },
        !          61923:       /* --- pixel bitmap for bbold450 char#27 \sigma --- */
        !          61924:       {  27,11211,                      /* character number, location */
        !          61925:          27, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
        !          61926:           { 31,   28, 3,125, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          61927:             "\xae\x07\x7e\x0a\x55\x65\xe3\x12\x93\xc3\x22\xa3\xa3"
        !          61928:             "\x32\xb3\x92\x42\xc2\x83\x42\xc3\x72\x52\xd2\x63\x52"
        !          61929:             "\xd3\x5f\x62\x62\xe2\x53\x52\xd3\x50\xf1\x12\x52\xd2"
        !          61930:             "\x60\x13\x42\xc3\x83\x32\xb3\xa2\x32\xb2\xb3\x22\xa3"
        !          61931:             "\xc6\x84\xe0\x14\x64\xe0\x4b\xe0\x96\xe0\x12" }  },
        !          61932:       /* --- pixel bitmap for bbold450 char#28 \tau --- */
        !          61933:       {  28,11573,                      /* character number, location */
        !          61934:          27, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          61935:           { 26,   27, 3,65, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          61936:             "\xf1\x0e\x0c\xfe\x82\x62\x80\x82\x62\xe0\x23\x52\x80"
        !          61937:             "\xf1\x92\x52\x80\x93\x42\xe0\x42\x42\xe0\x43\x32\xe0"
        !          61938:             "\x53\x22\xe0\x66\xe0\x84\x82" }  },
        !          61939:       /* --- pixel bitmap for bbold450 char#29 \upsilon --- */
        !          61940:       {  29,11893,                      /* character number, location */
        !          61941:          27, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          61942:           { 26,   28, 3,71, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          61943:             "\xf1\x0a\xe2\x0f\xe2\x62\xe2\x02\x62\xe5\x52\xd3\x12"
        !          61944:             "\x52\xd2\x23\x42\xc3\x32\x42\xc2\x43\x32\xb3\x53\x22"
        !          61945:             "\xa3\x73\x12\x93\x95\x65\xcc\xe0\x36\xa1" }  },
        !          61946:       /* --- pixel bitmap for bbold450 char#30 \phi --- */
        !          61947:       {  30,12263,                      /* character number, location */
        !          61948:          43, 1,  -12, 1,      /* topleft row,col, and botleft row,col */
        !          61949:           { 26,   55, 3,171, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          61950:             "\xf1\x8a\x80\xfe\x82\x62\x80\x73\x63\xc5\x65\x93\x12"
        !          61951:             "\x62\x13\x73\x22\x62\x23\x53\x32\x62\x33\x42\x42\x62"
        !          61952:             "\x42\x33\x42\x62\x43\x22\x52\x62\x52\x13\x52\x62\x53"
        !          61953:             "\x0f\x52\x62\x62\x62\x02\x62\x62\x56\x52\x62\x52\x22"
        !          61954:             "\x52\x62\x52\x23\x42\x62\x43\x32\x42\x62\x33\x43\x32"
        !          61955:             "\x62\x32\x63\x22\x62\x23\x73\x12\x66\x95\x64\xd3\x62"
        !          61956:             "\x80\xfa\x82\x62\x80\xf1\x8a\x80" }  },
        !          61957:       /* --- pixel bitmap for bbold450 char#31 \chi --- */
        !          61958:       {  31,12773,                      /* character number, location */
        !          61959:          27, 1,  -12, 1,      /* topleft row,col, and botleft row,col */
        !          61960:           { 26,   39, 3,216, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          61961:             "\x02\xed\xda\x12\xc3\x53\x13\xb2\x62\x33\x93\x53\x42"
        !          61962:             "\x92\x62\x53\x73\x53\x63\x62\x62\x82\x62\x62\x83\x43"
        !          61963:             "\x53\x92\x42\x62\xa3\x23\x53\xb3\x12\x62\xd5\x53\xd4"
        !          61964:             "\x62\xe0\x13\x62\xe0\x13\x53\xe0\x12\x62\xe0\x13\x53"
        !          61965:             "\xe0\x12\x62\xe0\x13\x53\xe0\x12\x62\xe0\x13\x53\xe0"
        !          61966:             "\x12\x63\xe0\x12\x64\xd3\x55\xd2\x62\x13\xb3\x53\x23"
        !          61967:             "\xa2\x62\x42\x93\x53\x43\x82\x62\x62\x82\x62\x63\x63"
        !          61968:             "\x53\x73\x52\x62\x92\x43\x53\x93\x32\x62\xb3\x13\x53"
        !          61969:             "\xc2\x1a\xdd\xe2" }  },
        !          61970:       /* --- pixel bitmap for bbold450 char#32 \psi --- */
        !          61971:       {  32,13189,                      /* character number, location */
        !          61972:          43, 3,  -12, 3,      /* topleft row,col, and botleft row,col */
        !          61973:           { 26,   55, 3,103, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          61974:             "\xf1\x8a\x80\xfd\x82\x62\x8f\xe2\x62\x62\x62\x0f\x22"
        !          61975:             "\x62\x62\x62\x03\x52\x62\x53\x12\x52\x62\x52\x23\x42"
        !          61976:             "\x62\x43\x33\x32\x62\x33\x53\x22\x62\x23\x73\x12\x62"
        !          61977:             "\x13\x95\x65\xc3\x63\x70\xfa\x82\x62\x80\xf1\x8a\x83" }  },
        !          61978:       /* --- pixel bitmap for bbold450 char#33 ! --- */
        !          61979:       {  33,38828,                      /* character number, location */
        !          61980:          43, 4,   -1, 4,      /* topleft row,col, and botleft row,col */
        !          61981:           { 12,   44, 3,63, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          61982:             "\xf1\x1a\x10\xfe\x12\x62\x10\xf8\x12\x62\x10\xf1\x1a"
        !          61983:             "\x10\xf3\xc0\x44\x68\x33\x43\x13\x63\x0f\x32\x82\x03"
        !          61984:             "\x63\x13\x43\x38\x64\x43" }  },
        !          61985:       /* --- pixel bitmap for bbold450 char#34 (noname) --- */
        !          61986:       {  34,50340,                      /* character number, location */
        !          61987:          44, 2,   21, 2,      /* topleft row,col, and botleft row,col */
        !          61988:           { 30,   23, 3,127, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          61989:             "\x44\xe4\x68\xa8\x33\x43\x83\x43\x13\x63\x63\x63\x0f"
        !          61990:             "\x32\x82\x62\x82\x03\x63\x63\x63\x13\x44\x73\x44\x2a"
        !          61991:             "\x8a\x44\x12\xb4\x12\xa2\xe0\x22\x93\xe0\x13\x92\xe0"
        !          61992:             "\x22\x93\xe0\x13\x83\xe0\x13\x92\xe0\x22\x93\xe0\x13"
        !          61993:             "\x83\xe0\x13\x74\xe4\x73\xe0\x13\x92\xe0\x22\x92" }  },
        !          61994:       /* --- pixel bitmap for bbold450 char#35 # --- */
        !          61995:       {  35,39188,                      /* character number, location */
        !          61996:          43, 3,  -12, 3,      /* topleft row,col, and botleft row,col */
        !          61997:           { 42,   55, 3,93, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          61998:             "\xf1\xda\x82\x90\xfe\xd2\x62\x82\x90\xf1\xd2\x62\x82"
        !          61999:             "\x90\x1e\x6e\x06\x1e\x01\x6e\x07\xfb\xd2\x62\x82\x90"
        !          62000:             "\x1e\x6e\x06\x1e\x01\x6e\x07\xfe\xd2\x62\x82\x90\xf2"
        !          62001:             "\xd2\x62\x82\x90\xf1\xda\x82\x93" }  },
        !          62002:       /* --- pixel bitmap for bbold450 char#36 $ --- */
        !          62003:       {  36,39714,                      /* character number, location */
        !          62004:          48, 3,   -5, 3,      /* topleft row,col, and botleft row,col */
        !          62005:           { 32,   53, 3,247, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          62006:             "\xf1\xba\xb0\xf3\xb2\x62\xb0\x85\x66\xd7\x69\x84\x32"
        !          62007:             "\x62\x45\x53\x52\x62\x74\x23\x62\x62\x92\x13\x72\x62"
        !          62008:             "\xc2\x82\x62\xb3\x82\x62\xbf\x32\x92\x62\xb3\x82\x62"
        !          62009:             "\xc2\x82\x62\xc3\x72\x62\xd3\x62\x62\xe3\x52\x62\xe0"
        !          62010:             "\x14\x32\x62\xe0\x37\x62\xe0\x55\x62\xe0\x82\x65\xe0"
        !          62011:             "\x52\x67\xe0\x32\x62\x34\xe0\x12\x62\x53\xe2\x62\x63"
        !          62012:             "\xd2\x62\x73\xc2\x62\x82\xc2\x62\x83\xf4\xb2\x62\x92"
        !          62013:             "\xb2\x62\x83\xb2\x62\x82\xc2\x62\x73\x12\x92\x62\x63"
        !          62014:             "\x24\x72\x62\x53\x55\x42\x62\x34\x89\x67\xd6\x65\x80"
        !          62015:             "\xf3\xb2\x62\xb0\xf1\xba\xbe" }  },
        !          62016:       /* --- pixel bitmap for bbold450 char#37 % --- */
        !          62017:       {  37,40210,                      /* character number, location */
        !          62018:          48, 2,  -21, 2,      /* topleft row,col, and botleft row,col */
        !          62019:           { 34,   69, 3,405, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          62020:             "\x44\xe0\xe8\xda\x23\x43\xca\x13\x63\xa3\x53\x1f\x12"
        !          62021:             "\x82\xa2\x62\x22\x82\x93\x53\x22\x82\x92\x62\x33\x63"
        !          62022:             "\x92\x62\x43\x43\x93\x53\x58\xa2\x62\x84\xc2\x62\xe0"
        !          62023:             "\x93\x53\x40\xf1\xe0\x52\x62\x50\xe0\x43\x53\x50\xf1"
        !          62024:             "\xe0\x42\x62\x60\xe0\x33\x53\x60\xf1\xe0\x32\x62\x70"
        !          62025:             "\xe0\x23\x53\x70\xf1\xe0\x22\x62\x80\xe0\x13\x53\x80"
        !          62026:             "\xf1\xe0\x12\x62\x90\xe3\x53\x90\xf1\xe2\x62\xa0\xd3"
        !          62027:             "\x53\xa0\xf1\xd2\x62\xb0\xc3\x53\xe0\x92\x62\xe0\x93"
        !          62028:             "\x53\xc0\xf1\xb2\x62\xd0\xa3\x53\xd0\xf1\xa2\x62\xe0"
        !          62029:             "\x93\x53\xe0\xf1\x92\x62\xe0\x10\x83\x53\xe0\x10\xf1"
        !          62030:             "\x82\x62\xe0\x20\x73\x53\xe0\x20\xf1\x72\x62\xe0\x30"
        !          62031:             "\x63\x53\xe0\x30\xf1\x62\x62\xe0\x40\x53\x53\xe0\x40"
        !          62032:             "\xf1\x52\x62\xe0\x50\x43\x53\xe0\x92\x62\xc4\x82\x62"
        !          62033:             "\xa8\x53\x53\x93\x43\x42\x62\x93\x63\x32\x62\x92\x82"
        !          62034:             "\x23\x53\x92\x82\xf1\x22\x62\xa2\x82\x13\x53\xa3\x63"
        !          62035:             "\x1a\xc3\x43\x2a\xd8\xe0\xe4\x40" }  },
        !          62036:       /* --- pixel bitmap for bbold450 char#38 & --- */
        !          62037:       {  38,40760,                      /* character number, location */
        !          62038:          44, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          62039:           { 42,   45, 3,311, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          62040:             "\xe0\x14\xe0\xe0\x88\xe0\xe0\x53\x43\xe0\xe0\x42\x63"
        !          62041:             "\xe0\xe0\x23\x72\xe0\x50\xf5\xb2\x82\xe0\x50\xb2\x73"
        !          62042:             "\xe0\xe0\x23\x62\xe0\xe0\x42\x53\xe0\xe0\x42\x43\xe0"
        !          62043:             "\xe0\x53\x23\xe0\xe0\x76\xe0\xe0\x84\xe0\xe0\x94\xe0"
        !          62044:             "\xe0\x87\xe0\xe0\x54\x32\xe0\xe0\x34\x53\xe0\xe6\x62"
        !          62045:             "\xe0\xd3\x22\x63\xe0\xb3\x32\x72\xe0\xa3\x42\x73\xe0"
        !          62046:             "\x92\x52\x82\xe0\x83\x52\x83\xe0\x72\x62\x92\xe0\x72"
        !          62047:             "\x62\x93\xe0\x62\x62\xa3\xa2\x72\x62\xb2\x93\x72\x62"
        !          62048:             "\xb3\x73\x82\x62\xc3\x62\x93\x52\xd2\x53\xa2\x52\xd3"
        !          62049:             "\x33\xb2\x52\xe3\x13\xc3\x42\xe0\x15\xa2\x22\x42\xe0"
        !          62050:             "\x14\xb2\x23\x32\xe5\xb2\x33\x22\xc4\x13\xa2\x43\x12"
        !          62051:             "\xa4\x44\x73\x55\x66\x83\x53\x7e\xb9\xa8\xe0\x35\x40" }  },
        !          62052:       /* --- pixel bitmap for bbold450 char#39 ' --- */
        !          62053:       {  39,41209,                      /* character number, location */
        !          62054:          44, 2,   21, 2,      /* topleft row,col, and botleft row,col */
        !          62055:           { 12,   23, 3,55, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          62056:             "\x44\x68\x33\x43\x13\x63\x0f\x32\x82\x03\x63\x13\x44"
        !          62057:             "\x2a\x44\x12\xa2\x93\x92\x93\x83\x92\x93\x83\x74\x73"
        !          62058:             "\x92\x90" }  },
        !          62059:       /* --- pixel bitmap for bbold450 char#40 ( --- */
        !          62060:       {  40,41486,                      /* character number, location */
        !          62061:          47, 5,  -16, 5,      /* topleft row,col, and botleft row,col */
        !          62062:           { 16,   63, 3,134, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          62063:             "\xb5\x97\x74\xb4\xb5\xb2\x12\xa3\x12\xa2\x22\x93\x22"
        !          62064:             "\x92\x32\x83\x32\x60\xf1\x22\x42\x60\x13\x42\x60\xf5"
        !          62065:             "\x12\x52\x63\x52\x6f\xe2\x62\x6f\x52\x62\x63\x52\x60"
        !          62066:             "\xf5\x12\x52\x60\x13\x42\x60\xf1\x22\x42\x60\x23\x32"
        !          62067:             "\x92\x32\x93\x22\xa2\x22\xa3\x12\xb2\x12\xb5\xc4\xd4"
        !          62068:             "\xe7\xb5" }  },
        !          62069:       /* --- pixel bitmap for bbold450 char#41 ) --- */
        !          62070:       {  41,41932,                      /* character number, location */
        !          62071:          47, 1,  -16, 1,      /* topleft row,col, and botleft row,col */
        !          62072:           { 16,   63, 3,135, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          62073:             "\x05\xb7\xe4\xd4\xc5\xb2\x12\xb2\x13\xa2\x22\xa2\x23"
        !          62074:             "\x92\x32\x92\x33\x20\xf1\x62\x42\x20\x62\x43\x10\xf5"
        !          62075:             "\x62\x52\x10\x62\x53\xfe\x62\x62\xf5\x62\x62\x62\x53"
        !          62076:             "\xf5\x62\x52\x10\x62\x43\x10\xf1\x62\x42\x20\x62\x33"
        !          62077:             "\x82\x32\x92\x23\x92\x22\xa2\x13\xa2\x12\xb5\xb4\xb4"
        !          62078:             "\x77\x95\xb2" }  },
        !          62079:       /* --- pixel bitmap for bbold450 char#42 * --- */
        !          62080:       {  42,42369,                      /* character number, location */
        !          62081:          36, 3,   -5, 3,      /* topleft row,col, and botleft row,col */
        !          62082:           { 36,   41, 3,151, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          62083:             "\xf1\xda\xd0\xf7\xd2\x62\xd2\xb2\x62\xb6\x92\x62\x94"
        !          62084:             "\x24\x72\x62\x74\x63\x62\x62\x63\x94\x42\x62\x44\xc4"
        !          62085:             "\x22\x62\x24\xe0\x26\x66\xe0\x64\x64\xb0\xf4\xd2\x62"
        !          62086:             "\xd0\xb4\x64\xe0\x66\x66\xe0\x24\x22\x62\x24\xc4\x42"
        !          62087:             "\x62\x44\x93\x62\x62\x63\x64\x72\x62\x74\x24\x92\x62"
        !          62088:             "\x96\xb2\x62\xb2\xf7\xd2\x62\xd0\xf1\xda\xd2" }  },
        !          62089:       /* --- pixel bitmap for bbold450 char#43 + --- */
        !          62090:       {  43,42783,                      /* character number, location */
        !          62091:          36, 3,   -5, 3,      /* topleft row,col, and botleft row,col */
        !          62092:           { 42,   41, 2,35, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          62093:             "\xff\x01\x10\x0a\x10\x00\xff\x10\x10\x02\x06\x02\x10"
        !          62094:             "\x00\x01\x11\x06\x11\x01\x12\x06\x12\xff\x11\x10\x02"
        !          62095:             "\x06\x02\x10\x00\xff\x01\x10\x0a\x10" }  },
        !          62096:       /* --- pixel bitmap for bbold450 char#44 , --- */
        !          62097:       {  44,43145,                      /* character number, location */
        !          62098:          11, 2,  -12, 2,      /* topleft row,col, and botleft row,col */
        !          62099:           { 12,   23, 3,55, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          62100:             "\x44\x68\x33\x43\x13\x63\x0f\x32\x82\x03\x63\x13\x44"
        !          62101:             "\x2a\x44\x12\xa2\x93\x92\x93\x83\x92\x93\x83\x74\x73"
        !          62102:             "\x92\x92" }  },
        !          62103:       /* --- pixel bitmap for bbold450 char#45 - --- */
        !          62104:       {  45,43416,                      /* character number, location */
        !          62105:          15, 1,   13, 1,      /* topleft row,col, and botleft row,col */
        !          62106:           { 21,    2, 3, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          62107:             "\x1e\x05\x1e\x07" }  },
        !          62108:       /* --- pixel bitmap for bbold450 char#46 . --- */
        !          62109:       {  46,43630,                      /* character number, location */
        !          62110:          11, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          62111:           { 12,   12, 3,31, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          62112:             "\x44\x68\x33\x43\x13\x63\x0f\x32\x82\x03\x63\x13\x43"
        !          62113:             "\x38\x64\x42" }  },
        !          62114:       /* --- pixel bitmap for bbold450 char#47 / --- */
        !          62115:       {  47,43886,                      /* character number, location */
        !          62116:          47, 1,  -16, 1,      /* topleft row,col, and botleft row,col */
        !          62117:           { 31,   63, 3,329, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          62118:             "\xf1\xe0\x7a\xe0\x63\x53\xf1\xe0\x62\x62\x10\xe0\x53"
        !          62119:             "\x53\x10\xf1\xe0\x52\x62\x20\xe0\x43\x53\x20\xf1\xe0"
        !          62120:             "\x42\x62\x30\xe0\x33\x53\x30\xf1\xe0\x32\x62\x40\xe0"
        !          62121:             "\x23\x53\xe0\x62\x62\xe0\x63\x53\x50\xf1\xe0\x12\x62"
        !          62122:             "\x60\xe3\x53\x60\xf1\xe2\x62\x70\xd3\x53\x70\xf1\xd2"
        !          62123:             "\x62\x80\xc3\x53\x80\xf1\xc2\x62\x90\xb3\x53\x90\xf1"
        !          62124:             "\xb2\x62\xa0\xa3\x53\xa0\xf1\xa2\x62\xb0\x93\x53\xb0"
        !          62125:             "\xf1\x92\x62\xc0\x83\x53\xc0\xf1\x82\x62\xd0\x73\x53"
        !          62126:             "\xd0\xf1\x72\x62\xe0\x63\x53\xe0\xf1\x62\x62\xe0\x10"
        !          62127:             "\x53\x53\xe0\x62\x62\xe0\x63\x53\xe0\x20\xf1\x42\x62"
        !          62128:             "\xe0\x30\x33\x53\xe0\x30\xf1\x32\x62\xe0\x40\x23\x53"
        !          62129:             "\xe0\x40\xf1\x22\x62\xe0\x50\x13\x53\xe0\x50\xf1\x12"
        !          62130:             "\x62\xe0\x63\x53\xe0\x6f\x1a\xe0\x72" }  },
        !          62131:       /* --- pixel bitmap for bbold450 char#48 0 --- */
        !          62132:       {  48,14122,                      /* character number, location */
        !          62133:          41, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          62134:           { 28,   42, 3,175, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          62135:             "\xb6\xe0\x6a\xe0\x24\x64\xd4\x93\xb5\xa3\x93\x12\xb3"
        !          62136:             "\x73\x22\xc3\x62\x32\xd2\x53\x32\xd3\x20\xf1\x22\x42"
        !          62137:             "\xe2\x20\x13\x42\xe3\x10\xf2\x12\x52\xe0\x12\x13\x52"
        !          62138:             "\xe0\x13\x0f\x92\x62\xe0\x22\x03\x52\xe0\x13\xf2\x12"
        !          62139:             "\x52\xe0\x12\x10\x13\x42\xe3\x10\xf1\x22\x42\xe2\x20"
        !          62140:             "\x23\x32\xd3\x52\x32\xd2\x63\x22\xc3\x73\x12\xb3\x95"
        !          62141:             "\xa3\xb4\x93\xd4\x64\xe0\x2a\xe0\x66\xba" }  },
        !          62142:       /* --- pixel bitmap for bbold450 char#49 1 --- */
        !          62143:       {  49,14555,                      /* character number, location */
        !          62144:          40, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          62145:           { 28,   40, 3,82, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          62146:             "\xe0\x32\xe0\xa4\xe0\x86\xe0\x64\x22\xe0\x44\x42\xe0"
        !          62147:             "\x33\x62\xe0\x15\x62\xd4\x12\x62\xb4\x32\x62\x94\x52"
        !          62148:             "\x62\x92\x72\x62\x90\xfe\x92\x62\x90\xfb\x92\x62\x9f"
        !          62149:             "\x1e\x0e" }  },
        !          62150:       /* --- pixel bitmap for bbold450 char#50 2 --- */
        !          62151:       {  50,14922,                      /* character number, location */
        !          62152:          41, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          62153:           { 28,   41, 3,194, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          62154:             "\xa8\xe0\x4d\xd4\x85\xa3\xa2\x14\x64\xb2\x33\x52\xd2"
        !          62155:             "\x43\x33\xd2\x52\x23\xe2\x53\x12\xe0\x12\x65\xe0\x12"
        !          62156:             "\x62\x0f\x12\xe0\x22\x62\xe0\x42\x62\xe0\x42\x53\xe0"
        !          62157:             "\x42\x52\x10\xf1\xe0\x42\x43\x10\xe0\x42\x33\xe0\x62"
        !          62158:             "\x23\xe0\x72\x13\xe0\x85\xe0\x94\xe0\x93\xe0\x94\xe0"
        !          62159:             "\x84\xe0\x93\xe0\x94\xe0\x84\xe0\x93\xe0\x94\xe0\x93"
        !          62160:             "\xe0\xa3\xe0\xa3\xe0\xb2\xe0\xb3\xe0\xb2\xe0\xb3\xe0"
        !          62161:             "\xbf\x12\xe0\xcf\x1e\x0e" }  },
        !          62162:       /* --- pixel bitmap for bbold450 char#51 3 --- */
        !          62163:       {  51,15267,                      /* character number, location */
        !          62164:          41, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          62165:           { 28,   42, 3,219, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          62166:             "\xa8\xe0\x4d\xd4\x85\xa3\xa2\x14\x64\xb2\x33\x52\xd2"
        !          62167:             "\x43\x33\xd2\x52\x23\xe2\x53\x12\xe0\x12\x65\xe0\x12"
        !          62168:             "\x62\x0f\x12\xe0\x22\x62\xe0\x42\x62\xe0\x42\x53\xe0"
        !          62169:             "\x42\x43\xe0\x52\x33\xe0\x62\x23\xe0\x76\xe0\x39\xe0"
        !          62170:             "\x58\xe0\xb5\xe0\x92\x13\xe0\x82\x23\xe0\x72\x33\xe0"
        !          62171:             "\x62\x43\xe0\x52\x52\xe0\x52\x53\xf2\xe0\x42\x62\x0f"
        !          62172:             "\x12\xe0\x22\x62\x03\xe0\x12\x53\x12\xe0\x12\x52\x23"
        !          62173:             "\xe2\x43\x33\xd2\x42\x52\xd2\x33\x54\xb2\x23\x83\xa6"
        !          62174:             "\xa4\x84\xec\xe0\x48\xaa" }  },
        !          62175:       /* --- pixel bitmap for bbold450 char#52 4 --- */
        !          62176:       {  52,15662,                      /* character number, location */
        !          62177:          40, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          62178:           { 28,   40, 3,179, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          62179:             "\xe0\x72\xe0\xb3\x50\xf1\xe0\x54\x50\xe0\x45\xe0\x83"
        !          62180:             "\x12\x50\xf1\xe0\x23\x22\x50\xe0\x13\x32\xe0\x53\x42"
        !          62181:             "\x50\xf1\xd3\x52\x50\xc3\x62\xe0\x24\x62\xe0\x15\x62"
        !          62182:             "\xe0\x12\x12\x62\xe3\x12\x62\xd3\x22\x62\xc3\x32\x62"
        !          62183:             "\xc2\x42\x62\xb3\x42\x62\xa3\x52\x62\x93\x62\x62\x92"
        !          62184:             "\x72\x62\x83\x72\x62\x73\x82\x62\x63\x92\x62\x62\xa2"
        !          62185:             "\x62\x5f\x1e\x01\x67\xf7\xd2\x62\x50\xf1\xda\x52" }  },
        !          62186:       /* --- pixel bitmap for bbold450 char#53 5 --- */
        !          62187:       {  53,16043,                      /* character number, location */
        !          62188:          40, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          62189:           { 28,   41, 3,123, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          62190:             "\xf1\x0e\x0e\x0f\x82\x62\xe0\x4e\x04\xae\x06\xe0\xc4"
        !          62191:             "\xe0\xc3\xe0\xc3\xe0\xc3\xe0\xc3\xe0\xc2\xe0\xc3\xe0"
        !          62192:             "\xc2\xe0\xc3\xf6\xe0\xc2\x02\xe0\x95\xe0\x92\x13\xe0"
        !          62193:             "\x82\x22\xe0\x73\x23\xe0\x62\x43\xe0\x43\x52\xe0\x33"
        !          62194:             "\x64\xe3\x93\xc3\xb4\x75\xec\xe0\x47\xb3" }  },
        !          62195:       /* --- pixel bitmap for bbold450 char#54 6 --- */
        !          62196:       {  54,16372,                      /* character number, location */
        !          62197:          41, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          62198:           { 28,   42, 3,203, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          62199:             "\xa8\xe0\x4c\xe4\x84\xa4\xc3\x83\xe0\x14\x53\xe0\x42"
        !          62200:             "\x52\xe0\x53\x33\xe0\x63\x22\xe0\x82\x13\xe0\x83\x0f"
        !          62201:             "\x12\xe0\xa2\x02\x88\xa2\x6c\x82\x44\x84\x62\x35\xa3"
        !          62202:             "\x52\x23\x12\xb3\x42\x13\x22\xc3\x35\x32\xd3\x24\x42"
        !          62203:             "\xe2\x24\x42\xe3\x13\x52\xe0\x12\x13\x52\xe0\x13\x0f"
        !          62204:             "\x62\x62\xe0\x22\x03\x52\xe0\x13\xf1\x12\x52\xe0\x12"
        !          62205:             "\x10\x13\x42\xe3\x32\x42\xe2\x43\x32\xd3\x53\x22\xc3"
        !          62206:             "\x73\x12\xb3\x95\xa3\xb5\x65\xec\xe0\x56\xb3" }  },
        !          62207:       /* --- pixel bitmap for bbold450 char#55 7 --- */
        !          62208:       {  55,16793,                      /* character number, location */
        !          62209:          40, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          62210:           { 28,   40, 3,227, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          62211:             "\xf1\x0e\x0e\xe0\x33\x53\xe0\x32\x62\xe0\x33\x53\xe0"
        !          62212:             "\x32\x62\xe0\x33\x53\xe0\x32\x62\xe0\x33\x53\xe0\x32"
        !          62213:             "\x62\xe0\x33\x53\xe0\x32\x62\xe0\x33\x53\xe0\x32\x62"
        !          62214:             "\xe0\x33\x53\xe0\x32\x62\xe0\x33\x53\xe0\x32\x62\xe0"
        !          62215:             "\x33\x53\x80\xf1\x92\x62\x90\x83\x53\xe0\x32\x62\xe0"
        !          62216:             "\x33\x53\xe0\x32\x62\xe0\x33\x53\xe0\x32\x62\xe0\x33"
        !          62217:             "\x53\xe0\x32\x62\xe0\x33\x53\xe0\x32\x62\xe0\x33\x53"
        !          62218:             "\xe0\x32\x62\xe0\x33\x53\xe0\x32\x62\xe0\x33\x53\xe0"
        !          62219:             "\x32\x62\xe0\x33\x53\xe0\x3f\x1a\xe0\x42" }  },
        !          62220:       /* --- pixel bitmap for bbold450 char#56 8 --- */
        !          62221:       {  56,17154,                      /* character number, location */
        !          62222:          41, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          62223:           { 28,   42, 3,199, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          62224:             "\xa8\xe0\x3e\xc5\x85\x84\x12\xb4\x53\x32\xd3\x33\x42"
        !          62225:             "\xe3\x22\x52\xe0\x12\x13\x52\xe0\x13\x0f\x42\x62\xe0"
        !          62226:             "\x22\x03\x52\xe0\x13\x13\x42\xe3\x33\x32\xd3\x53\x22"
        !          62227:             "\xc3\x76\x95\xae\x02\xde\xc5\x85\x93\x12\xb3\x73\x22"
        !          62228:             "\xc3\x53\x32\xd3\x33\x42\xe3\x22\x52\xe0\x12\x13\x52"
        !          62229:             "\xe0\x13\x0f\x42\x62\xe0\x22\x03\x52\xe0\x13\x12\x52"
        !          62230:             "\xe0\x12\x23\x42\xe3\x32\x42\xe2\x43\x32\xd3\x53\x22"
        !          62231:             "\xc3\x76\xa4\xa4\x84\xec\xe0\x48\xa2" }  },
        !          62232:       /* --- pixel bitmap for bbold450 char#57 9 --- */
        !          62233:       {  57,17581,                      /* character number, location */
        !          62234:          41, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          62235:           { 28,   42, 3,203, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          62236:             "\xb6\xe0\x5c\xe5\x65\xb5\xa3\x93\x12\xb3\x73\x22\xc3"
        !          62237:             "\x53\x32\xd3\x42\x42\xe2\x33\x42\xe3\x10\xf1\x12\x52"
        !          62238:             "\xe0\x12\x13\x52\xe0\x13\x0f\x62\x62\xe0\x22\x03\x52"
        !          62239:             "\xe0\x13\x12\x52\xe0\x13\x13\x42\xe4\x22\x42\xe4\x23"
        !          62240:             "\x32\xd5\x33\x22\xc3\x12\x43\x12\xb3\x22\x55\xa3\x32"
        !          62241:             "\x64\x84\x42\x8c\x62\xa8\x82\x0f\x12\xe0\xa2\x03\xe0"
        !          62242:             "\x83\x12\xe0\x82\x23\xe0\x63\x33\xe0\x52\x52\xe0\x43"
        !          62243:             "\x54\xe0\x13\x83\xc4\xa4\x84\xec\xe0\x48\xa3" }  },
        !          62244:       /* --- pixel bitmap for bbold450 char#58 : --- */
        !          62245:       {  58,44336,                      /* character number, location */
        !          62246:          28, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          62247:           { 12,   29, 3,67, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          62248:             "\x44\x68\x33\x43\x13\x63\x0f\x32\x82\x03\x63\x13\x43"
        !          62249:             "\x38\x64\x40\xf4\xc0\x44\x68\x33\x43\x13\x63\x0f\x32"
        !          62250:             "\x82\x03\x63\x13\x43\x38\x64\x41" }  },
        !          62251:       /* --- pixel bitmap for bbold450 char#59 ; --- */
        !          62252:       {  59,44628,                      /* character number, location */
        !          62253:          28, 2,  -12, 2,      /* topleft row,col, and botleft row,col */
        !          62254:           { 12,   40, 3,91, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          62255:             "\x44\x68\x33\x43\x13\x63\x0f\x32\x82\x03\x63\x13\x43"
        !          62256:             "\x38\x64\x40\xf4\xc0\x44\x68\x33\x43\x13\x63\x0f\x32"
        !          62257:             "\x82\x03\x63\x13\x44\x2a\x44\x12\xa2\x93\x92\x93\x83"
        !          62258:             "\x92\x93\x83\x74\x73\x92\x93" }  },
        !          62259:       /* --- pixel bitmap for bbold450 char#60 < --- */
        !          62260:       {  60,44949,                      /* character number, location */
        !          62261:          32, 5,   -1, 5,      /* topleft row,col, and botleft row,col */
        !          62262:           { 42,   33, 2,98, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          62263:             "\x28\x02\x25\x05\x23\x05\x22\x05\x22\x06\x22\x05\x22"
        !          62264:             "\x05\x23\x05\x22\x05\x22\x06\x22\x05\x22\x05\x23\x05"
        !          62265:             "\x22\x05\x23\x07\x20\x05\x03\x04\x1d\x04\x07\x04\x1c"
        !          62266:             "\x04\x08\x04\x1c\x04\x08\x04\x1c\x03\x09\x03\x1c\x04"
        !          62267:             "\x08\x04\x1c\x04\x08\x04\x1c\x04\x08\x04\x1c\x04\x08"
        !          62268:             "\x04\x1c\x03\x09\x03\x1c\x04\x08\x04\x1c\x04\x08\x04"
        !          62269:             "\x1c\x04\x08\x04\x1c\x04\x08\x04\x1c\x03\x09\x03\x1c"
        !          62270:             "\x04\x08\x04\x1c\x10\x1c\x0e" }  },
        !          62271:       /* --- pixel bitmap for bbold450 char#61 \cdot --- */
        !          62272:       {  61,45255,                      /* character number, location */
        !          62273:          21, 2,    9, 2,      /* topleft row,col, and botleft row,col */
        !          62274:           { 12,   12, 3,31, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          62275:             "\x44\x68\x33\x43\x13\x63\x0f\x32\x82\x03\x63\x13\x43"
        !          62276:             "\x38\x64\x40" }  },
        !          62277:       /* --- pixel bitmap for bbold450 char#62 > --- */
        !          62278:       {  62,45513,                      /* character number, location */
        !          62279:          32, 5,   -1, 5,      /* topleft row,col, and botleft row,col */
        !          62280:           { 42,   33, 3,197, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          62281:             "\x02\xe0\xe0\xc5\xe0\xe0\xb5\xe0\xe0\xc5\xe0\xe0\xb6"
        !          62282:             "\xe0\xe0\xb5\xe0\xe0\xc5\xe0\xe0\xb5\xe0\xe0\xc5\xe0"
        !          62283:             "\xe0\xb6\xe0\xe0\xb5\xe0\xe0\xc5\xe0\xe0\xb5\xe0\xe0"
        !          62284:             "\xc5\xe0\xe0\x97\xe0\xe0\x54\x35\xe0\xe4\x74\xe0\xb4"
        !          62285:             "\x84\xe0\xa4\x84\xe0\xb3\x93\xe0\xb4\x84\xe0\xa4\x84"
        !          62286:             "\xe0\xa4\x84\xe0\xa4\x84\xe0\xb3\x93\xe0\xb4\x84\xe0"
        !          62287:             "\xa4\x84\xe0\xa4\x84\xe0\xa4\x84\xe0\xb3\x93\xe0\xb4"
        !          62288:             "\x84\xe0\xae\x02\xe0\xce\xe0\xe0" }  },
        !          62289:       /* --- pixel bitmap for bbold450 char#63 ? --- */
        !          62290:       {  63,45825,                      /* character number, location */
        !          62291:          44, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          62292:           { 32,   45, 3,203, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          62293:             "\xc9\xe0\x6e\x01\xe0\x15\x95\xc3\xe0\x14\x84\xe0\x44"
        !          62294:             "\x53\xe0\x82\x43\xe0\x93\x32\xe0\xb3\x13\xe0\xc5\xe0"
        !          62295:             "\xd2\x0f\x12\xe0\xe2\xe0\xe0\x22\xe0\xe0\x13\xe0\xe0"
        !          62296:             "\x12\xe0\xe0\x13\xe0\xe3\xe0\xd4\xe0\x79\xe0\x78\xe0"
        !          62297:             "\x84\x12\xe0\xa3\x32\xe0\x93\x42\xe0\x92\x52\xe0\x83"
        !          62298:             "\x52\xb0\xf1\xb2\x62\xb0\xf1\xba\xb0\xf3\xe0\xe0\x40"
        !          62299:             "\xe4\xe0\xc8\xe0\x93\x43\xe0\x73\x63\xa0\xf3\xa2\x82"
        !          62300:             "\xa0\xa3\x63\xe0\x73\x43\xe0\x98\xe0\xc4\xe0" }  },
        !          62301:       /* --- pixel bitmap for bbold450 char#64 @ --- */
        !          62302:       {  64,46167,                      /* character number, location */
        !          62303:          44, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          62304:           { 27,   45, 3,231, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          62305:             "\xa6\xe0\x5a\xe0\x14\x64\xc5\x83\xa3\x12\x93\x92\x22"
        !          62306:             "\xa3\x73\x22\xb3\x62\x32\xc2\x53\x32\xc3\x42\x42\xd2"
        !          62307:             "\x33\x42\xd2\x32\x52\xd3\x10\xf2\x12\x52\xe2\x13\x52"
        !          62308:             "\xe5\x62\xe0\x14\x62\x86\x14\x62\x6d\x62\x62\x65\x62"
        !          62309:             "\x53\x63\x0f\x22\x62\x52\x82\x02\x62\x53\x65\x62\x62"
        !          62310:             "\x62\x12\x62\x6a\x12\x62\x86\x32\x62\xe0\x33\x52\xe0"
        !          62311:             "\x30\xf2\x12\x52\xe0\x30\x12\x52\xe2\x23\x42\xe2\x32"
        !          62312:             "\x42\xd3\x33\x32\xd2\x52\x32\xc3\x53\x22\xc2\x72\x22"
        !          62313:             "\xb3\x73\x12\xa3\x95\x93\xb4\x65\xeb\xe0\x46\xb0" }  },
        !          62314:       /* --- pixel bitmap for bbold450 char#65 A --- */
        !          62315:       {  65,18002,                      /* character number, location */
        !          62316:          43, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          62317:           { 35,   43, 3,270, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          62318:             "\xe0\x32\xe0\x20\xf1\xe0\x23\xe0\x20\xe0\x15\xe0\xe0"
        !          62319:             "\x22\x12\xe0\xe0\x13\x13\xe0\xf1\xe2\x32\xe0\xd3\x33"
        !          62320:             "\xe0\xc2\x52\xe0\xb3\x53\xc0\xf1\xc2\x63\xc0\xb3\x55"
        !          62321:             "\xe0\x82\x62\x12\xe0\x73\x53\x13\xa0\xf1\xa2\x62\x32"
        !          62322:             "\xa0\x93\x53\x33\xe0\x42\x62\x52\xe0\x33\x53\x53\x80"
        !          62323:             "\xf1\x82\x62\x72\x80\x73\x53\x73\xe2\x62\x92\xd3\x53"
        !          62324:             "\x93\x60\xf1\x62\x62\xb2\x60\x53\x53\xb3\xa2\x62\xd2"
        !          62325:             "\x93\x53\xd3\x40\xf1\x42\x6e\x05\x40\x33\x53\xe0\x13"
        !          62326:             "\x62\x62\xe0\x32\x53\x53\xe0\x33\x20\xf1\x22\x62\xe0"
        !          62327:             "\x52\x20\x13\x53\xe0\x53\x22\x62\xe0\x72\x13\x53\xe0"
        !          62328:             "\x73\x0f\x1a\xe0\x92" }  },
        !          62329:       /* --- pixel bitmap for bbold450 char#66 B --- */
        !          62330:       {  66,18425,                      /* character number, location */
        !          62331:          43, 5,    0, 5,      /* topleft row,col, and botleft row,col */
        !          62332:           { 31,   43, 3,249, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          62333:             "\x0e\x06\xbe\x09\x82\x62\xa5\x62\x62\xd4\x42\x62\xe0"
        !          62334:             "\x13\x32\x62\xe0\x23\x22\x62\xe0\x33\x12\x62\xe0\x42"
        !          62335:             "\x12\x62\xe0\x43\x0f\x32\x62\xe0\x52\x02\x62\xe0\x45"
        !          62336:             "\x62\xe0\x42\x12\x62\xe0\x33\x12\x62\xe0\x23\x22\x62"
        !          62337:             "\xe0\x13\x32\x62\xd4\x42\x62\xa5\x6f\x12\x6e\x01\x82"
        !          62338:             "\x62\xa5\x62\x62\xd4\x42\x62\xe0\x13\x32\x62\xe0\x23"
        !          62339:             "\x22\x62\xe0\x33\x12\x62\xe0\x42\x12\x62\xe0\x43\x0f"
        !          62340:             "\x42\x62\xe0\x52\x02\x62\xe0\x45\x62\xe0\x42\x12\x62"
        !          62341:             "\xe0\x33\x12\x62\xe0\x23\x22\x62\xe0\x13\x32\x62\xd4"
        !          62342:             "\x42\x62\xa5\x6e\x09\x8e\x06\xb2" }  },
        !          62343:       /* --- pixel bitmap for bbold450 char#67 C --- */
        !          62344:       {  67,18872,                      /* character number, location */
        !          62345:          44, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          62346:           { 35,   45, 3,219, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          62347:             "\xe8\xe0\xae\xe0\x55\x85\xe0\x23\xe4\xd3\xe0\x33\xb4"
        !          62348:             "\xe0\x43\x95\xe0\x53\x73\x12\xe0\x63\x62\x22\xe0\x73"
        !          62349:             "\x43\x22\xe0\x82\x33\x32\xe0\x83\x22\x42\xe0\x92\x22"
        !          62350:             "\x42\xe0\xc3\x42\xe0\xb0\xf2\x12\x52\xe0\xb3\x52\xe0"
        !          62351:             "\xbf\x82\x62\xe0\xb3\x52\xe0\xb0\xf2\x12\x52\xe0\xb0"
        !          62352:             "\x13\x42\xe0\xd2\x42\xe0\xd2\x42\xe0\x92\x23\x32\xe0"
        !          62353:             "\x83\x33\x22\xe0\x82\x52\x22\xe0\x73\x53\x12\xe0\x63"
        !          62354:             "\x75\xe0\x53\x94\xe0\x43\xb3\xe0\x33\xd3\xe4\xe0\x15"
        !          62355:             "\x85\xe0\x5e\xe0\xa8\xd3" }  },
        !          62356:       /* --- pixel bitmap for bbold450 char#68 D --- */
        !          62357:       {  68,19273,                      /* character number, location */
        !          62358:          43, 5,    0, 5,      /* topleft row,col, and botleft row,col */
        !          62359:           { 35,   43, 3,231, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          62360:             "\x0e\x07\xee\x0a\xb2\x62\xb5\x92\x62\xe3\x82\x62\xe0"
        !          62361:             "\x13\x72\x62\xe0\x23\x62\x62\xe0\x33\x52\x62\xe0\x43"
        !          62362:             "\x42\x62\xe0\x53\x32\x62\xe0\x62\x32\x62\xe0\x63\x22"
        !          62363:             "\x62\xe0\x72\x22\x62\xe0\x73\x1f\x22\x62\xe0\x82\x12"
        !          62364:             "\x62\xe0\x83\x0f\x82\x62\xe0\x92\x02\x62\xe0\x83\x0f"
        !          62365:             "\x22\x62\xe0\x82\x12\x62\xe0\x73\x12\x62\xe0\x72\x22"
        !          62366:             "\x62\xe0\x63\x22\x62\xe0\x62\x32\x62\xe0\x53\x32\x62"
        !          62367:             "\xe0\x43\x42\x62\xe0\x33\x52\x62\xe0\x23\x62\x62\xe0"
        !          62368:             "\x13\x72\x62\xe3\x82\x62\xb5\x9e\x0a\xbe\x07\xe2" }  },
        !          62369:       /* --- pixel bitmap for bbold450 char#69 E --- */
        !          62370:       {  69,19724,                      /* character number, location */
        !          62371:          43, 5,    0, 5,      /* topleft row,col, and botleft row,col */
        !          62372:           { 31,   43, 2,26, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          62373:             "\xff\x01\x00\x1f\x00\xff\x11\x02\x06\x02\x15\xff\x01"
        !          62374:             "\x02\x06\x0b\x0c\xff\x12\x02\x06\x02\x15\xff\x01\x1f" }  },
        !          62375:       /* --- pixel bitmap for bbold450 char#70 F --- */
        !          62376:       {  70,20097,                      /* character number, location */
        !          62377:          43, 5,    0, 5,      /* topleft row,col, and botleft row,col */
        !          62378:           { 31,   43, 3,53, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          62379:             "\xf1\x0e\x0e\x03\x0f\xe2\x62\xe0\x7f\x22\x62\xe0\x7f"
        !          62380:             "\x12\x6b\xcf\xe2\x62\xe0\x7f\x32\x62\xe0\x7f\x1a\xe0"
        !          62381:             "\x73" }  },
        !          62382:       /* --- pixel bitmap for bbold450 char#71 G --- */
        !          62383:       {  71,20470,                      /* character number, location */
        !          62384:          44, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          62385:           { 35,   45, 3,235, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          62386:             "\xe8\xe0\xae\xe0\x55\x85\xe0\x23\xe4\xd3\xe0\x33\xb4"
        !          62387:             "\xe0\x43\x95\xe0\x53\x73\x12\xe0\x63\x62\x22\xe0\x73"
        !          62388:             "\x43\x22\xe0\x82\x33\x32\xe0\x83\x22\x42\xe0\x92\x22"
        !          62389:             "\x42\xe0\xc3\x42\xe0\xb0\xf2\x12\x52\xe0\xb3\x52\xe0"
        !          62390:             "\xbf\x32\x62\xe0\xbf\x12\x62\xeb\x0f\x22\x62\xe0\x92"
        !          62391:             "\x03\x52\xe0\x92\xf2\x12\x52\xe0\x92\x13\x42\xe0\x92"
        !          62392:             "\xf1\x22\x42\xe0\x92\x23\x32\xe0\x83\x33\x22\xe0\x82"
        !          62393:             "\x52\x22\xe0\x73\x53\x12\xe0\x63\x75\xe0\x53\x94\xe0"
        !          62394:             "\x43\xb3\xe0\x33\xd3\xe4\xe0\x15\x85\xe0\x5e\xe0\xa8"
        !          62395:             "\xd2" }  },
        !          62396:       /* --- pixel bitmap for bbold450 char#72 H --- */
        !          62397:       {  72,20893,                      /* character number, location */
        !          62398:          43, 5,    0, 5,      /* topleft row,col, and botleft row,col */
        !          62399:           { 35,   43, 3,64, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          62400:             "\xf1\x0a\xe0\x92\x0f\xe2\x62\xe0\x92\x0f\x22\x62\xe0"
        !          62401:             "\x92\x0f\x12\x6e\x0d\x0f\xe2\x62\xe0\x92\x0f\x32\x62"
        !          62402:             "\xe0\x92\x0f\x1a\xe0\x92" }  },
        !          62403:       /* --- pixel bitmap for bbold450 char#73 I --- */
        !          62404:       {  73,21348,                      /* character number, location */
        !          62405:          43, 5,    0, 5,      /* topleft row,col, and botleft row,col */
        !          62406:           { 10,   43, 3,26, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          62407:             "\xf1\x0a\x0f\xe2\x62\x0f\xe2\x62\x0f\x82\x62\x0f\x1a" }  },
        !          62408:       /* --- pixel bitmap for bbold450 char#74 J --- */
        !          62409:       {  74,21721,                      /* character number, location */
        !          62410:          43, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          62411:           { 31,   44, 3,113, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          62412:             "\xf1\xe0\x7a\xfe\xe0\x72\x62\xf9\xe0\x72\x62\xe0\x72"
        !          62413:             "\x53\xf2\xe0\x72\x52\x10\xe0\x72\x43\x1f\x12\xe0\x52"
        !          62414:             "\x42\x23\xe0\x42\x33\x33\xe0\x32\x32\x52\xe0\x32\x23"
        !          62415:             "\x53\xe0\x22\x13\x73\xe0\x15\x93\xe4\xb4\xc3\xe5\x74"
        !          62416:             "\xe0\x3c\xe0\x87\xcf" }  },
        !          62417:       /* --- pixel bitmap for bbold450 char#75 K --- */
        !          62418:       {  75,22110,                      /* character number, location */
        !          62419:          43, 5,    0, 5,      /* topleft row,col, and botleft row,col */
        !          62420:           { 31,   43, 3,274, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          62421:             "\x0a\xe0\x5c\xe0\x45\x62\xe0\x42\x12\x62\xe0\x33\x12"
        !          62422:             "\x62\xe0\x23\x22\x62\xe0\x13\x32\x62\xe0\x12\x42\x62"
        !          62423:             "\xe3\x42\x62\xd3\x52\x62\xc3\x62\x62\xc2\x72\x62\xb3"
        !          62424:             "\x72\x62\xa3\x82\x62\xa2\x92\x62\x93\x92\x62\x83\xa2"
        !          62425:             "\x62\x73\xb2\x62\x72\xc2\x62\x63\xc2\x62\x53\xdf\x12"
        !          62426:             "\x62\x43\xe2\x62\x35\xd2\x62\x23\x13\xc2\x62\x22\x32"
        !          62427:             "\xc2\x62\x13\x33\xb2\x65\x53\xa2\x64\x72\xa2\x63\x83"
        !          62428:             "\x92\x63\x93\x82\x62\xb2\x82\x62\xb3\x72\x62\xc3\x62"
        !          62429:             "\x62\xd2\x62\x62\xd3\x52\x62\xe3\x42\x62\xe0\x13\x32"
        !          62430:             "\x62\xe0\x22\x32\x62\xe0\x23\x22\x62\xe0\x33\x12\x62"
        !          62431:             "\xe0\x42\x1a\xe0\x4d\xe0\x52" }  },
        !          62432:       /* --- pixel bitmap for bbold450 char#76 L --- */
        !          62433:       {  76,22575,                      /* character number, location */
        !          62434:          43, 5,    0, 5,      /* topleft row,col, and botleft row,col */
        !          62435:           { 31,   43, 2,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          62436:             "\xff\x01\x00\x0a\x15\xff\x26\x02\x06\x02\x15\xff\x01"
        !          62437:             "\x1f" }  },
        !          62438:       /* --- pixel bitmap for bbold450 char#77 M --- */
        !          62439:       {  77,22948,                      /* character number, location */
        !          62440:          43, 5,    0, 5,      /* topleft row,col, and botleft row,col */
        !          62441:           { 34,   43, 3,174, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          62442:             "\x02\xe0\xe0\x25\xe0\xe3\x0f\x14\xe0\xc4\x05\xe0\xa7"
        !          62443:             "\x13\xe0\x83\x14\x23\xe0\x63\x24\x33\xe0\x43\x34\x42"
        !          62444:             "\xe0\x42\x44\x43\xe0\x23\x44\x53\xe3\x54\x63\xc3\x64"
        !          62445:             "\x64\xa3\x74\x64\xa2\x84\x65\x83\x84\x62\x13\x63\x94"
        !          62446:             "\x62\x23\x43\xa4\x62\x33\x23\xb4\x62\x42\x22\xc4\x62"
        !          62447:             "\x46\xc4\x62\x54\xd4\x62\x62\xe2\x0f\xe2\x62\xe0\x82"
        !          62448:             "\x0f\x32\x62\xe0\x82\x0f\x1a\xe0\x82" }  },
        !          62449:       /* --- pixel bitmap for bbold450 char#78 N --- */
        !          62450:       {  78,23443,                      /* character number, location */
        !          62451:          43, 5,    0, 5,      /* topleft row,col, and botleft row,col */
        !          62452:           { 35,   43, 3,278, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          62453:             "\x02\xe0\xe0\x35\xe0\xe0\x22\x0f\x14\xe0\xe0\x12\x05"
        !          62454:             "\xe0\xe4\x13\xe0\xd4\x23\xe0\xc4\x33\xe0\xb4\x42\xe0"
        !          62455:             "\xb4\x43\xe0\xa4\x53\xe0\x94\x63\xe0\x82\x0f\x12\x64"
        !          62456:             "\xe0\x72\x02\x65\xe0\x64\x62\x13\xe0\x54\x62\x23\xe0"
        !          62457:             "\x44\x62\x33\xe0\x34\x62\x42\xe0\x34\x62\x43\xe0\x24"
        !          62458:             "\x62\x53\xe0\x14\x62\x63\xe4\x62\x73\xd4\x62\x83\xc4"
        !          62459:             "\x62\x92\xc4\x62\x93\xb4\x62\xa3\xa4\x62\xb3\x94\x62"
        !          62460:             "\xc3\x84\x62\xd2\x84\x62\xd3\x74\x62\xe3\x64\x62\xe0"
        !          62461:             "\x13\x54\x62\xe0\x23\x44\x62\xe0\x32\x44\x62\xe0\x33"
        !          62462:             "\x34\x62\xe0\x43\x24\x62\xe0\x53\x14\x62\xe0\x65\x0f"
        !          62463:             "\x12\x62\xe0\x74\x0a\xe0\x8d\xe0\x92" }  },
        !          62464:       /* --- pixel bitmap for bbold450 char#79 O --- */
        !          62465:       {  79,23942,                      /* character number, location */
        !          62466:          44, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          62467:           { 35,   45, 3,235, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          62468:             "\xe7\xe0\xbd\xe0\x65\x75\xe0\x33\xd3\xe0\x13\xe0\x13"
        !          62469:             "\xd4\xe0\x23\xb5\xe0\x33\x93\x12\xe0\x43\x82\x22\xe0"
        !          62470:             "\x52\x73\x22\xe0\x53\x53\x32\xe0\x63\x20\xf1\x22\x42"
        !          62471:             "\xe0\x72\x20\x13\x42\xe0\x73\x10\xf2\x12\x52\xe0\x82"
        !          62472:             "\x13\x52\xe0\x83\x0f\x82\x62\xe0\x92\x03\x52\xe0\x83"
        !          62473:             "\xf2\x12\x52\xe0\x82\x10\x13\x42\xe0\x73\x10\xf1\x22"
        !          62474:             "\x42\xe0\x72\x20\x23\x32\xe0\x63\x53\x22\xe0\x53\x72"
        !          62475:             "\x22\xe0\x52\x83\x12\xe0\x43\x95\xe0\x33\xb4\xe0\x23"
        !          62476:             "\xd3\xe0\x13\xe0\x13\xd3\xe0\x35\x75\xe0\x6d\xe0\xb7"
        !          62477:             "\xe4" }  },
        !          62478:       /* --- pixel bitmap for bbold450 char#80 P --- */
        !          62479:       {  80,24385,                      /* character number, location */
        !          62480:          43, 5,    0, 5,      /* topleft row,col, and botleft row,col */
        !          62481:           { 31,   43, 3,153, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          62482:             "\x0e\x06\xbe\x09\x82\x62\xa5\x62\x62\xd4\x42\x62\xe0"
        !          62483:             "\x13\x32\x62\xe0\x23\x22\x62\xe0\x33\x12\x62\xe0\x42"
        !          62484:             "\x12\x62\xe0\x43\x0f\x32\x62\xe0\x52\x02\x62\xe0\x45"
        !          62485:             "\x62\xe0\x42\x12\x62\xe0\x33\x12\x62\xe0\x23\x22\x62"
        !          62486:             "\xe0\x13\x32\x62\xd4\x42\x62\xa5\x62\x6e\x01\x82\x6c"
        !          62487:             "\xbf\xe2\x62\xe0\x7f\x32\x62\xe0\x7f\x1a\xe0\x71" }  },
        !          62488:       /* --- pixel bitmap for bbold450 char#81 Q --- */
        !          62489:       {  81,24794,                      /* character number, location */
        !          62490:          44, 3,  -12, 3,      /* topleft row,col, and botleft row,col */
        !          62491:           { 35,   56, 3,304, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          62492:             "\xe7\xe0\xbd\xe0\x65\x75\xe0\x33\xd3\xe0\x13\xe0\x13"
        !          62493:             "\xd4\xe0\x23\xb5\xe0\x33\x93\x12\xe0\x43\x82\x22\xe0"
        !          62494:             "\x52\x73\x22\xe0\x53\x53\x32\xe0\x63\x20\xf1\x22\x42"
        !          62495:             "\xe0\x72\x20\x13\x42\xe0\x73\x10\xf2\x12\x52\xe0\x82"
        !          62496:             "\x13\x52\xe0\x83\x0f\x82\x62\xe0\x92\x03\x52\xe0\x83"
        !          62497:             "\xf2\x12\x52\xe0\x82\x10\x13\x42\xe0\x73\x10\xf1\x22"
        !          62498:             "\x42\x72\xc2\x20\x23\x32\x73\xa3\x53\x22\x83\x83\x72"
        !          62499:             "\x22\x92\x82\x83\x12\x93\x63\x95\xa3\x43\xb4\xb3\x23"
        !          62500:             "\xd3\xc2\x13\xe0\x13\xb5\xe0\x35\x75\xe0\x6e\x02\xe0"
        !          62501:             "\x87\x42\xe0\xe0\x53\xe0\xe0\x53\xe0\xe0\x53\xe0\xe0"
        !          62502:             "\x52\xe0\xe0\x53\xe0\xe0\x53\xe0\xe0\x53\xe0\xe0\x52"
        !          62503:             "\xe0\xe0\x53\xe0\xe0\x53\xe0\xe0\x52" }  },
        !          62504:       /* --- pixel bitmap for bbold450 char#82 R --- */
        !          62505:       {  82,25279,                      /* character number, location */
        !          62506:          43, 5,    0, 5,      /* topleft row,col, and botleft row,col */
        !          62507:           { 31,   43, 3,264, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          62508:             "\x0e\x06\xbe\x09\x82\x62\xa5\x62\x62\xd4\x42\x62\xe0"
        !          62509:             "\x13\x32\x62\xe0\x23\x22\x62\xe0\x33\x12\x62\xe0\x42"
        !          62510:             "\x12\x62\xe0\x43\x0f\x32\x62\xe0\x52\x02\x62\xe0\x45"
        !          62511:             "\x62\xe0\x42\x12\x62\xe0\x33\x12\x62\xe0\x23\x22\x62"
        !          62512:             "\xe0\x13\x32\x62\xd4\x42\x62\xa5\x62\x6e\x01\x82\x6c"
        !          62513:             "\xb2\x62\x53\xd2\x62\x63\xc2\x62\x72\xc2\x62\x73\xb2"
        !          62514:             "\x62\x83\xa2\x62\x92\xa2\x62\x93\x92\x62\xa3\x82\x62"
        !          62515:             "\xb2\x82\x62\xb3\x72\x62\xc3\x62\x62\xd2\x62\x62\xd3"
        !          62516:             "\x52\x62\xe3\x42\x62\xe0\x13\x32\x62\xe0\x22\x32\x62"
        !          62517:             "\xe0\x23\x22\x62\xe0\x33\x12\x62\xe0\x42\x1a\xe0\x4d"
        !          62518:             "\xe0\x52" }  },
        !          62519:       /* --- pixel bitmap for bbold450 char#83 S --- */
        !          62520:       {  83,25730,                      /* character number, location */
        !          62521:          44, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          62522:           { 31,   45, 3,233, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          62523:             "\xb8\xe0\x6e\xe0\x15\x85\xb6\xc4\x83\x22\xe3\x63\x32"
        !          62524:             "\xe0\x13\x43\x42\xe0\x23\x32\x52\xe0\x32\x23\x52\xe0"
        !          62525:             "\x33\x12\x62\xe0\x43\x0f\x12\x62\xe0\x52\x0f\x12\x62"
        !          62526:             "\xe0\x73\x52\xe0\x82\x52\xe0\x83\x42\xe0\x93\x32\xe0"
        !          62527:             "\xa3\x22\xe0\xb6\xe0\xd5\xe0\xec\xe0\x9b\xe0\xe5\xe0"
        !          62528:             "\xe0\x14\xe0\xe0\x13\xe0\xe0\x13\xe0\xe0\x13\xe0\xe0"
        !          62529:             "\x12\xe0\xe0\x13\xf2\xe0\xe0\x12\x0f\x12\xe0\xd2\x03"
        !          62530:             "\xe0\xb3\x13\xe0\xa2\x32\xe0\x93\x33\xe0\x82\x53\xe0"
        !          62531:             "\x63\x63\xe0\x34\x84\xe3\xc5\x85\xe0\x1e\xe0\x68\xb2" }  },
        !          62532:       /* --- pixel bitmap for bbold450 char#84 T --- */
        !          62533:       {  84,26099,                      /* character number, location */
        !          62534:          43, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          62535:           { 34,   43, 2,17, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          62536:             "\xff\x01\x00\x22\xff\x26\x0c\x02\x06\x02\x0c\x00\xff"
        !          62537:             "\x01\x0c\x0a\x0c" }  },
        !          62538:       /* --- pixel bitmap for bbold450 char#85 U --- */
        !          62539:       {  85,26472,                      /* character number, location */
        !          62540:          43, 5,   -1, 5,      /* topleft row,col, and botleft row,col */
        !          62541:           { 35,   44, 3,141, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          62542:             "\xf1\x0a\xe0\x92\x0f\xe2\x62\xe0\x92\x0f\x82\x62\xe0"
        !          62543:             "\x92\x03\x52\xe0\x83\xf2\x12\x52\xe0\x82\x10\x13\x42"
        !          62544:             "\xe0\x73\x10\xf1\x22\x42\xe0\x72\x20\x23\x32\xe0\x63"
        !          62545:             "\x53\x22\xe0\x53\x72\x22\xe0\x52\x83\x12\xe0\x43\x95"
        !          62546:             "\xe0\x33\xb4\xe0\x23\xd3\xe0\x13\xe0\x13\xd3\xe0\x35"
        !          62547:             "\x75\xe0\x6d\xe0\xb7\xe0" }  },
        !          62548:       /* --- pixel bitmap for bbold450 char#86 V --- */
        !          62549:       {  86,26923,                      /* character number, location */
        !          62550:          43, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          62551:           { 34,   43, 3,255, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          62552:             "\xf1\x0a\xe0\x82\x03\x53\xe0\x63\x12\x62\xe0\x62\x23"
        !          62553:             "\x53\xe0\x43\x10\xf1\x22\x62\xe0\x42\x20\x23\x53\xe0"
        !          62554:             "\x23\x52\x62\xe0\x22\x63\x53\xe3\x30\xf1\x42\x62\xe2"
        !          62555:             "\x40\x43\x53\xc3\x40\xf1\x52\x62\xc2\x50\x53\x53\xa3"
        !          62556:             "\xb2\x62\xa2\xc3\x53\x83\x60\xf1\x72\x62\x82\x70\x73"
        !          62557:             "\x53\x63\xe0\x12\x62\x62\xe0\x23\x53\x43\x80\xf1\x92"
        !          62558:             "\x62\x42\x90\x93\x53\x23\xe0\x52\x62\x22\xe0\x63\x56"
        !          62559:             "\xa0\xf1\xb2\x64\xb0\xb3\x54\xb0\xf1\xc2\x62\xc0\xc3"
        !          62560:             "\x43\xe0\xb2\x42\xe0\xc3\x23\xd0\xf1\xe2\x22\xe0\xe6"
        !          62561:             "\xe0\xf1\xe0\x14\xe0\x10\xf1\xe0\x22\xe0\x2a" }  },
        !          62562:       /* --- pixel bitmap for bbold450 char#87 W --- */
        !          62563:       {  87,27344,                      /* character number, location */
        !          62564:          43, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          62565:           { 48,   43, 3,341, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          62566:             "\xf1\x0a\xe0\xe0\x82\x03\x53\xe0\xe0\x63\xf2\x12\x62"
        !          62567:             "\xe0\xe0\x62\x10\x13\x53\xe0\xe0\x43\x10\xf1\x22\x62"
        !          62568:             "\xe0\xe0\x42\x20\x23\x53\xe0\xe0\x23\x20\xf2\x32\x62"
        !          62569:             "\xe0\xe0\x22\x30\x33\x53\xe0\xe3\x30\xf2\x42\x62\xe0"
        !          62570:             "\xe2\x40\x43\x53\xe0\xc3\x40\xf1\x52\x62\xe0\xc2\x50"
        !          62571:             "\x53\x53\x72\xe0\x13\x50\xf1\x62\x62\x64\xe2\x60\x62"
        !          62572:             "\x62\x56\xd2\xc3\x53\x42\x22\xc3\xd2\x62\x33\x23\xb2"
        !          62573:             "\xe2\x62\x32\x42\xb2\xe3\x53\x13\x43\x93\xe0\x12\x62"
        !          62574:             "\x12\x62\x92\xe0\x22\x65\x63\x82\xe0\x22\x64\x82\x82"
        !          62575:             "\xe0\x23\x54\x83\x63\xe0\x32\x53\xa3\x52\xe0\x42\x52"
        !          62576:             "\xc2\x52\xe0\x43\x33\xc3\x33\xe0\x52\x32\xe2\x32\xe0"
        !          62577:             "\x62\x23\xe3\x22\xe0\x62\x22\xe0\x22\x22\xe0\x66\xe0"
        !          62578:             "\x26\xa0\xf1\xb4\xe0\x44\xb0\xb3\xe0\x63\xe0\x92\xe0"
        !          62579:             "\x72\xb0" }  },
        !          62580:       /* --- pixel bitmap for bbold450 char#88 X --- */
        !          62581:       {  88,27843,                      /* character number, location */
        !          62582:          43, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          62583:           { 35,   43, 3,288, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          62584:             "\x02\xe0\x9d\xe0\x7b\x13\xe0\x62\x62\x32\xe0\x53\x53"
        !          62585:             "\x33\xe0\x42\x62\x53\xe0\x23\x53\x63\xe3\x53\x83\xd2"
        !          62586:             "\x62\xa2\xc3\x53\xa3\xb2\x62\xc3\x93\x53\xd3\x73\x53"
        !          62587:             "\xe0\x13\x62\x62\xe0\x32\x53\x53\xe0\x33\x33\x53\xe0"
        !          62588:             "\x53\x22\x62\xe0\x76\x53\xe0\x84\x62\xe0\xa3\x53\xe0"
        !          62589:             "\x93\x53\xe0\xa2\x62\xe0\xa3\x53\xe0\xa2\x62\xe0\xa3"
        !          62590:             "\x53\xe0\x93\x53\xe0\xa2\x64\xe0\x83\x56\xe0\x72\x62"
        !          62591:             "\x23\xe0\x53\x53\x33\xe0\x33\x53\x52\xe0\x32\x62\x63"
        !          62592:             "\xe0\x13\x53\x73\xd3\x53\x93\xc2\x62\xb3\xa3\x53\xc2"
        !          62593:             "\xa2\x62\xd3\x83\x53\xe3\x63\x53\xe0\x23\x52\x62\xe0"
        !          62594:             "\x43\x33\x53\xe0\x52\x32\x62\xe0\x63\x1b\xe0\x7d\xe0"
        !          62595:             "\x92" }  },
        !          62596:       /* --- pixel bitmap for bbold450 char#89 Y --- */
        !          62597:       {  89,28280,                      /* character number, location */
        !          62598:          43, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          62599:           { 34,   43, 3,163, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          62600:             "\x0a\xe0\x8d\xe0\x63\x12\x62\xe0\x62\x23\x53\xe0\x43"
        !          62601:             "\x32\x62\xe0\x42\x43\x53\xe0\x23\x53\x53\xe3\x72\x62"
        !          62602:             "\xe2\x83\x53\xc3\x92\x62\xc2\xa3\x53\xa3\xb3\x53\x83"
        !          62603:             "\xd2\x62\x82\xe3\x53\x63\xe0\x12\x62\x62\xe0\x23\x53"
        !          62604:             "\x43\xe0\x33\x53\x23\xe0\x52\x62\x22\xe0\x63\x56\xe0"
        !          62605:             "\x72\x64\xe0\x83\x54\xb0\xfe\xc2\x62\xc0\xf4\xc2\x62"
        !          62606:             "\xc0\xf1\xca\xc3" }  },
        !          62607:       /* --- pixel bitmap for bbold450 char#90 Z --- */
        !          62608:       {  90,28689,                      /* character number, location */
        !          62609:          43, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          62610:           { 35,   43, 3,252, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          62611:             "\xf1\x0e\x0e\x07\xe0\xa2\x62\xe0\xa3\x53\xe0\xa2\x62"
        !          62612:             "\xe0\xa3\x53\xe0\x93\x53\xe0\xa2\x62\xe0\xa3\x53\xe0"
        !          62613:             "\xa2\x62\xe0\xa3\x53\xe0\x93\x53\xe0\xa2\x62\xe0\xa3"
        !          62614:             "\x53\xe0\x93\x53\xe0\xa2\x62\xe0\xa3\x53\xe0\xa2\x62"
        !          62615:             "\xe0\xa3\x53\xe0\x93\x53\xe0\xa2\x62\xe0\xa3\x53\xe0"
        !          62616:             "\xa2\x62\xe0\xa3\x53\xe0\x93\x53\xe0\xa2\x62\xe0\xa3"
        !          62617:             "\x53\xe0\xa2\x62\xe0\xa3\x53\xe0\x93\x53\xe0\xa2\x62"
        !          62618:             "\xe0\xa3\x53\xe0\x93\x53\xe0\xa2\x62\xe0\xa3\x53\xe0"
        !          62619:             "\xa2\x62\xe0\xa3\x53\xe0\x93\x53\xe0\xa2\x62\xe0\xa3"
        !          62620:             "\x53\xe0\xa2\x62\xe0\xaf\x1e\x0e\x07" }  },
        !          62621:       /* --- pixel bitmap for bbold450 char#91 [ --- */
        !          62622:       {  91,46639,                      /* character number, location */
        !          62623:          47, 5,  -16, 5,      /* topleft row,col, and botleft row,col */
        !          62624:           { 16,   63, 2,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          62625:             "\xff\x01\x00\x10\x00\xff\x3a\x02\x06\x02\x06\xff\x01"
        !          62626:             "\x10" }  },
        !          62627:       /* --- pixel bitmap for bbold450 char#92 \\ --- */
        !          62628:       {  92,47097,                      /* character number, location */
        !          62629:          47, 1,  -16, 1,      /* topleft row,col, and botleft row,col */
        !          62630:           { 31,   63, 3,332, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          62631:             "\xf1\x0a\xe0\x73\x53\xe0\x60\xf1\x12\x62\xe0\x60\x13"
        !          62632:             "\x53\xe0\x50\xf1\x22\x62\xe0\x50\x23\x53\xe0\x40\xf1"
        !          62633:             "\x32\x62\xe0\x40\x33\x53\xe0\x30\xf1\x42\x62\xe0\x30"
        !          62634:             "\x43\x53\xe0\x72\x62\xe0\x73\x53\xe0\x10\xf1\x62\x62"
        !          62635:             "\xe0\x10\x63\x53\xe0\xf1\x72\x62\xe0\x73\x53\xd0\xf1"
        !          62636:             "\x82\x62\xd0\x83\x53\xc0\xf1\x92\x62\xc0\x93\x53\xb0"
        !          62637:             "\xf1\xa2\x62\xb0\xa3\x53\xa0\xf1\xb2\x62\xa0\xb3\x53"
        !          62638:             "\x90\xf1\xc2\x62\x90\xc3\x53\x80\xf1\xd2\x62\x80\xd3"
        !          62639:             "\x53\x70\xf1\xe2\x62\x70\xe3\x53\x60\xf1\xe0\x12\x62"
        !          62640:             "\x60\xe0\x13\x53\xe0\x72\x62\xe0\x73\x53\x40\xf1\xe0"
        !          62641:             "\x32\x62\x40\xe0\x33\x53\x30\xf1\xe0\x42\x62\x30\xe0"
        !          62642:             "\x43\x53\x20\xf1\xe0\x52\x62\x20\xe0\x53\x53\x10\xf1"
        !          62643:             "\xe0\x62\x62\x10\xe0\x63\x53\xf1\xe0\x7a" }  },
        !          62644:       /* --- pixel bitmap for bbold450 char#93 ] --- */
        !          62645:       {  93,47562,                      /* character number, location */
        !          62646:          47, 1,  -16, 1,      /* topleft row,col, and botleft row,col */
        !          62647:           { 16,   63, 2,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          62648:             "\xff\x01\x00\x10\xff\x3a\x06\x02\x06\x02\x00\xff\x01"
        !          62649:             "\x10" }  },
        !          62650:       /* --- pixel bitmap for bbold450 char#94 (noname) --- */
        !          62651:       {  94,48021,                      /* character number, location */
        !          62652:          47, 5,  -16, 5,      /* topleft row,col, and botleft row,col */
        !          62653:           { 16,   63, 3,200, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          62654:             "\xf1\xe2\xd3\xd2\xd3\xd2\xd3\xd2\xd3\xd2\x40\xf1\x93"
        !          62655:             "\x40\xf2\x84\x40\x75\xb2\x12\xa3\x12\xa2\x22\x93\x22"
        !          62656:             "\x92\x32\x83\x32\x82\x42\x73\x42\x40\xf1\x32\x52\x40"
        !          62657:             "\x23\x52\x62\x62\x53\x62\x52\x72\x43\x72\x42\x82\x43"
        !          62658:             "\x72\x52\x72\x53\x62\x62\x62\x63\x52\x40\xf1\x32\x52"
        !          62659:             "\x40\x33\x42\x82\x42\x83\x32\x92\x32\x93\x22\xa2\x22"
        !          62660:             "\xa3\x12\xb2\x12\xb5\x40\xf2\x84\x40\xf1\x93\x40\xa2"
        !          62661:             "\xe3\xe2\xe3\xe2\xe3\xe2\xe3\xf1\xe2" }  },
        !          62662:       /* --- pixel bitmap for bbold450 char#95 (noname) --- */
        !          62663:       {  95,48425,                      /* character number, location */
        !          62664:          47, 1,  -16, 1,      /* topleft row,col, and botleft row,col */
        !          62665:           { 16,   63, 3,201, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          62666:             "\xf1\x02\xe3\xe2\xe3\xe2\xe3\xe2\xe3\xe2\xa0\xf1\x43"
        !          62667:             "\x90\xf2\x44\x80\x45\xb2\x12\xb2\x13\xa2\x22\xa2\x23"
        !          62668:             "\x92\x32\x92\x33\x82\x42\x82\x43\x30\xf1\x42\x52\x30"
        !          62669:             "\x42\x53\x62\x62\x62\x63\x52\x72\x52\x73\x42\x82\x42"
        !          62670:             "\x73\x42\x72\x52\x63\x52\x62\x62\x53\x20\xf1\x42\x52"
        !          62671:             "\x30\x42\x43\x72\x42\x82\x33\x82\x32\x92\x23\x92\x22"
        !          62672:             "\xa2\x13\xa2\x12\xb5\x70\xf2\x44\x80\xf1\x43\x90\x42"
        !          62673:             "\xd3\xd2\xd3\xd2\xd3\xd2\xd3\xdf\x12\xe2" }  },
        !          62674:       /* --- pixel bitmap for bbold450 char#96 (noname) --- */
        !          62675:       {  96,48832,                      /* character number, location */
        !          62676:          43, 2,   20, 2,      /* topleft row,col, and botleft row,col */
        !          62677:           { 12,   23, 3,55, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          62678:             "\x92\x93\x74\x73\x83\x92\x93\x83\x92\x93\x92\xa2\x14"
        !          62679:             "\x4a\x24\x43\x13\x63\x0f\x32\x82\x03\x63\x13\x43\x38"
        !          62680:             "\x64\x42" }  },
        !          62681:       /* --- pixel bitmap for bbold450 char#97 a --- */
        !          62682:       {  97,29062,                      /* character number, location */
        !          62683:          28, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
        !          62684:           { 26,   29, 3,123, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          62685:             "\xa7\xe0\x2d\x42\x64\x74\x32\x46\x94\x12\x33\x22\xb5"
        !          62686:             "\x32\x32\xc4\x23\x32\xd3\x13\x42\xe2\xf1\x12\x52\xe2"
        !          62687:             "\x03\x52\xe2\x0f\x62\x62\xe2\x03\x52\xe2\xf1\x12\x52"
        !          62688:             "\xe2\x13\x42\xe2\x23\x32\xd3\x32\x32\xc4\x33\x22\xb5"
        !          62689:             "\x46\x94\x12\x64\x74\x32\x7d\x42\xa7\x90" }  },
        !          62690:       /* --- pixel bitmap for bbold450 char#98 b --- */
        !          62691:       {  98,29433,                      /* character number, location */
        !          62692:          43, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          62693:           { 34,   44, 3,175, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          62694:             "\xf1\x0a\xe0\xaf\xc2\x62\xe0\xa2\x62\x77\xa2\x62\x4c"
        !          62695:             "\x82\x62\x34\x74\x62\x62\x14\xb4\x42\x65\xe0\x13\x32"
        !          62696:             "\x64\xe0\x32\x32\x63\xe0\x43\x22\x62\xe0\x63\x1f\x12"
        !          62697:             "\x62\xe0\x72\x12\x62\xe0\x73\x0f\x62\x62\xe0\x82\x02"
        !          62698:             "\x62\xe0\x73\x0f\x12\x62\xe0\x72\x12\x62\xe0\x63\x12"
        !          62699:             "\x63\xe0\x43\x22\x64\xe0\x32\x32\x65\xe0\x13\x32\x62"
        !          62700:             "\x14\xb4\x4a\x34\x74\x6a\x4c\xe0\xb7\xa3" }  },
        !          62701:       /* --- pixel bitmap for bbold450 char#99 c --- */
        !          62702:       {  99,29872,                      /* character number, location */
        !          62703:          28, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
        !          62704:           { 26,   29, 3,117, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          62705:             "\xa7\xe0\x2d\xc4\x74\x96\x94\x63\x22\xb3\x52\x32\xc3"
        !          62706:             "\x33\x32\xd3\x13\x42\xe2\xf1\x12\x52\xe0\x23\x52\xe0"
        !          62707:             "\x2f\x62\x62\xe0\x23\x52\xe0\x20\xf1\x12\x52\xe0\x20"
        !          62708:             "\x13\x42\xe2\x23\x32\xd3\x32\x32\xc3\x43\x22\xb3\x66"
        !          62709:             "\x94\x94\x74\xcd\xe0\x27\x90" }  },
        !          62710:       /* --- pixel bitmap for bbold450 char#100 d --- */
        !          62711:       { 100,30205,                      /* character number, location */
        !          62712:          43, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
        !          62713:           { 26,   44, 3,129, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          62714:             "\xfe\xe0\xa2\xa7\x72\x7d\x42\x64\x74\x32\x46\x94\x12"
        !          62715:             "\x33\x22\xb5\x32\x32\xc4\x23\x32\xd3\x13\x42\xe2\xf1"
        !          62716:             "\x12\x52\xe2\x03\x52\xe2\x0f\x62\x62\xe2\x03\x52\xe2"
        !          62717:             "\xf1\x12\x52\xe2\x13\x42\xe2\x23\x32\xd3\x32\x32\xc4"
        !          62718:             "\x33\x22\xb5\x46\x94\x12\x64\x74\x32\x7d\x42\xa7\x92" }  },
        !          62719:       /* --- pixel bitmap for bbold450 char#101 e --- */
        !          62720:       { 101,30608,                      /* character number, location */
        !          62721:          28, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
        !          62722:           { 26,   29, 3,131, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          62723:             "\xa6\xe0\x3c\xd4\x65\x96\x93\x73\x22\xa3\x62\x32\xb3"
        !          62724:             "\x43\x32\xc2\x33\x42\xc3\x22\x52\xd2\x22\x52\xd6\x52"
        !          62725:             "\xe4\x62\xe2\x0f\x12\x6e\x04\x0f\x32\x62\xe0\x23\x52"
        !          62726:             "\xe0\x20\xf1\x12\x52\xe0\x20\x13\x42\xe2\x23\x32\xd3"
        !          62727:             "\x32\x32\xc3\x43\x22\xb3\x66\x94\x94\x74\xcd\xe0\x27"
        !          62728:             "\x93" }  },
        !          62729:       /* --- pixel bitmap for bbold450 char#102 f --- */
        !          62730:       { 102,30949,                      /* character number, location */
        !          62731:          44, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          62732:           { 21,   44, 3,75, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          62733:             "\x86\xda\x96\x44\x63\x22\x63\x43\x32\x73\x32\x42\x82"
        !          62734:             "\x23\x42\x83\x12\x52\x92\x12\x52\xb3\x52\xbf\x62\x62"
        !          62735:             "\xbf\x12\x67\x6f\xe2\x62\xbf\x72\x62\xbf\x1a\xb3" }  },
        !          62736:       /* --- pixel bitmap for bbold450 char#103 g --- */
        !          62737:       { 103,31336,                      /* character number, location */
        !          62738:          28, 1,  -13, 1,      /* topleft row,col, and botleft row,col */
        !          62739:           { 26,   41, 3,173, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          62740:             "\xa7\xe0\x2d\x42\x64\x74\x32\x46\x94\x12\x33\x22\xb5"
        !          62741:             "\x32\x32\xc4\x23\x32\xd3\x13\x42\xe2\xf1\x12\x52\xe2"
        !          62742:             "\x03\x52\xe2\x0f\x62\x62\xe2\x03\x52\xe2\xf1\x12\x52"
        !          62743:             "\xe2\x13\x42\xe2\x23\x32\xd3\x32\x32\xc4\x33\x22\xb5"
        !          62744:             "\x46\x94\x12\x64\x74\x32\x7d\x42\xa7\x72\xe0\xa2\xe0"
        !          62745:             "\x93\xf1\xe0\x92\x10\xe0\x83\xe0\x83\xe0\x92\x32\xe0"
        !          62746:             "\x43\x34\xe4\x66\x84\xae\xe0\x28\xa7" }  },
        !          62747:       /* --- pixel bitmap for bbold450 char#104 h --- */
        !          62748:       { 104,31739,                      /* character number, location */
        !          62749:          43, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          62750:           { 29,   43, 3,102, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          62751:             "\xf1\x0a\xe0\x5f\xc2\x62\xe0\x52\x62\x56\x82\x62\x3a"
        !          62752:             "\x62\x62\x14\x64\x42\x65\xa3\x32\x64\xc3\x22\x63\xe2"
        !          62753:             "\x22\x63\xe3\x1f\x12\x62\xe0\x22\x12\x62\xe0\x23\x0f"
        !          62754:             "\xe2\x62\xe0\x32\x02\x62\xe0\x32\x0f\x1a\xe0\x32" }  },
        !          62755:       /* --- pixel bitmap for bbold450 char#105 i --- */
        !          62756:       { 105,32170,                      /* character number, location */
        !          62757:          43, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          62758:           { 12,   43, 3,63, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          62759:             "\x44\x68\x33\x43\x13\x63\x0f\x32\x82\x03\x63\x13\x43"
        !          62760:             "\x38\x64\x40\xf3\xc0\xf1\x1a\x10\xfe\x12\x62\x10\xf7"
        !          62761:             "\x12\x62\x10\xf1\x1a\x12" }  },
        !          62762:       /* --- pixel bitmap for bbold450 char#106 j --- */
        !          62763:       { 106,32521,                      /* character number, location */
        !          62764:          43, 0,  -13, 0,      /* topleft row,col, and botleft row,col */
        !          62765:           { 22,   56, 3,107, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          62766:             "\xe4\xe0\x28\xd3\x43\xb3\x63\xf3\xa2\x82\xa3\x63\xb3"
        !          62767:             "\x43\xd8\xe0\x24\x40\xf3\xe0\x80\xf1\xba\x10\xfe\xb2"
        !          62768:             "\x62\x10\xfc\xb2\x62\x10\xb2\x53\x10\xf1\xb2\x52\x20"
        !          62769:             "\xb2\x43\xd2\x33\x32\x92\x32\x44\x72\x23\x64\x56\x9b"
        !          62770:             "\xd7\x94" }  },
        !          62771:       /* --- pixel bitmap for bbold450 char#107 k --- */
        !          62772:       { 107,32928,                      /* character number, location */
        !          62773:          43, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          62774:           { 29,   43, 3,178, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          62775:             "\xf1\x0a\xe0\x5f\xd2\x62\xe0\x52\x62\xe0\x34\x62\xe0"
        !          62776:             "\x25\x62\xe0\x13\x12\x62\xd4\x22\x62\xc3\x42\x62\xb3"
        !          62777:             "\x52\x62\xa3\x62\x62\x84\x72\x62\x73\x92\x62\x63\xa2"
        !          62778:             "\x62\x53\xb2\x62\x43\xc2\x62\x24\xd2\x62\x16\xc2\x65"
        !          62779:             "\x23\xb2\x64\x43\xa2\x63\x63\x92\x62\x83\x82\x62\x93"
        !          62780:             "\x72\x62\xa3\x62\x62\xb3\x52\x62\xc3\x42\x62\xd3\x32"
        !          62781:             "\x62\xe3\x22\x62\xe0\x13\x1a\xe0\x2d\xe0\x32" }  },
        !          62782:       /* --- pixel bitmap for bbold450 char#108 l --- */
        !          62783:       { 108,33355,                      /* character number, location */
        !          62784:          43, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          62785:           { 10,   43, 3,52, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          62786:             "\xf1\x0a\x0f\xe2\x62\x0f\xe2\x62\x0f\x12\x62\x03\x52"
        !          62787:             "\xf1\x12\x52\x13\x42\x22\x42\x23\x32\x33\x22\x46\x64" }  },
        !          62788:       /* --- pixel bitmap for bbold450 char#109 m --- */
        !          62789:       { 109,33728,                      /* character number, location */
        !          62790:          28, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          62791:           { 38,   28, 3,92, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          62792:             "\xd5\xa4\x6a\x19\x68\x4d\x53\x43\x43\x32\x64\x73\x23"
        !          62793:             "\x63\x22\x63\x92\x13\x82\x22\x63\x96\x83\x1f\x12\x62"
        !          62794:             "\xb4\xa2\x12\x62\xb4\xa3\x0f\xe2\x62\xc2\xc2\x0f\x12"
        !          62795:             "\x62\xc2\xc2\x0f\x1a\xc2\xc2" }  },
        !          62796:       /* --- pixel bitmap for bbold450 char#110 n --- */
        !          62797:       { 110,34155,                      /* character number, location */
        !          62798:          28, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          62799:           { 29,   28, 3,82, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          62800:             "\xe0\x16\x8a\x3a\x6a\x14\x64\x42\x65\xa3\x32\x64\xc3"
        !          62801:             "\x22\x63\xe2\x22\x63\xe3\x1f\x12\x62\xe0\x22\x12\x62"
        !          62802:             "\xe0\x23\x0f\xe2\x62\xe0\x32\x02\x62\xe0\x32\x0f\x1a"
        !          62803:             "\xe0\x32" }  },
        !          62804:       /* --- pixel bitmap for bbold450 char#111 o --- */
        !          62805:       { 111,34522,                      /* character number, location */
        !          62806:          28, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
        !          62807:           { 26,   29, 3,117, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          62808:             "\xa6\xe0\x3b\xe4\x64\xa6\x84\x73\x22\xa3\x62\x32\xb2"
        !          62809:             "\x53\x32\xb3\x33\x42\xc3\x10\xf1\x12\x52\xd2\x13\x52"
        !          62810:             "\xd3\x0f\x62\x62\xe2\x03\x52\xd3\xf1\x12\x52\xd2\x10"
        !          62811:             "\x13\x42\xc3\x33\x32\xb3\x52\x32\xb2\x63\x22\xa3\x76"
        !          62812:             "\x84\xa4\x64\xdb\xe0\x46\xa3" }  },
        !          62813:       /* --- pixel bitmap for bbold450 char#112 p --- */
        !          62814:       { 112,34881,                      /* character number, location */
        !          62815:          28, 3,  -12, 3,      /* topleft row,col, and botleft row,col */
        !          62816:           { 34,   40, 3,175, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          62817:             "\xe0\x37\xaa\x4c\x8a\x34\x74\x62\x62\x14\xb4\x42\x65"
        !          62818:             "\xe0\x13\x32\x64\xe0\x32\x32\x63\xe0\x43\x22\x62\xe0"
        !          62819:             "\x63\x1f\x12\x62\xe0\x72\x12\x62\xe0\x73\x0f\x62\x62"
        !          62820:             "\xe0\x82\x02\x62\xe0\x73\x0f\x12\x62\xe0\x72\x12\x62"
        !          62821:             "\xe0\x63\x12\x63\xe0\x43\x22\x64\xe0\x32\x32\x65\xe0"
        !          62822:             "\x13\x32\x62\x14\xb4\x42\x62\x34\x74\x62\x62\x4c\x82"
        !          62823:             "\x62\x77\xaf\x82\x62\xe0\xaf\x1a\xe0\xa0" }  },
        !          62824:       /* --- pixel bitmap for bbold450 char#113 q --- */
        !          62825:       { 113,35304,                      /* character number, location */
        !          62826:          28, 1,  -12, 1,      /* topleft row,col, and botleft row,col */
        !          62827:           { 26,   40, 3,130, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          62828:             "\xa7\xe0\x2d\x42\x64\x74\x32\x46\x94\x12\x33\x22\xb5"
        !          62829:             "\x32\x32\xc4\x23\x32\xd3\x13\x42\xe2\xf1\x12\x52\xe2"
        !          62830:             "\x03\x52\xe2\x0f\x62\x62\xe2\x03\x52\xe2\xf1\x12\x52"
        !          62831:             "\xe2\x13\x42\xe2\x23\x32\xd3\x32\x32\xc4\x33\x22\xb5"
        !          62832:             "\x46\x94\x12\x64\x74\x32\x7d\x42\xa7\x72\xfa\xe0\xa2" }  },
        !          62833:       /* --- pixel bitmap for bbold450 char#114 r --- */
        !          62834:       { 114,35699,                      /* character number, location */
        !          62835:          28, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          62836:           { 29,   28, 3,71, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          62837:             "\xe0\x17\x7a\x3b\x5a\x14\x74\x32\x65\xb3\x22\x64\xd3"
        !          62838:             "\x12\x63\xe0\x12\x12\x63\xe0\x15\x62\xe0\x32\x0f\xe2"
        !          62839:             "\x62\xe0\x5f\x22\x62\xe0\x5f\x1a\xe0\x52" }  },
        !          62840:       /* --- pixel bitmap for bbold450 char#115 s --- */
        !          62841:       { 115,36026,                      /* character number, location */
        !          62842:          28, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
        !          62843:           { 21,   29, 3,111, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          62844:             "\x77\xbc\x75\x12\x44\x43\x42\x63\x32\x52\x73\x13\x52"
        !          62845:             "\x82\x12\x62\x85\x62\x94\x62\xb3\x52\xc3\x42\xd5\x12"
        !          62846:             "\xeb\xdb\xe0\x35\xe0\x53\xe0\x53\xe0\x53\xf2\xe0\x52"
        !          62847:             "\x02\xe0\x35\xe0\x13\x12\xe0\x12\x23\xd3\x33\xb3\x54"
        !          62848:             "\x74\x8b\xc7\x74" }  },
        !          62849:       /* --- pixel bitmap for bbold450 char#116 t --- */
        !          62850:       { 116,36337,                      /* character number, location */
        !          62851:          43, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          62852:           { 21,   44, 3,73, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          62853:             "\xf1\x0a\xbf\xd2\x62\xbf\x12\x6d\x0f\xe2\x62\xb2\x62"
        !          62854:             "\xb3\x52\xc2\x52\xc2\x52\x92\x13\x42\x83\x22\x42\x82"
        !          62855:             "\x33\x32\x73\x43\x22\x63\x66\x44\x9a\xd6\x72" }  },
        !          62856:       /* --- pixel bitmap for bbold450 char#117 u --- */
        !          62857:       { 117,36724,                      /* character number, location */
        !          62858:          27, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          62859:           { 26,   28, 3,75, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          62860:             "\xf1\x0a\xe2\x0f\xe2\x62\xe2\x03\x52\xd3\xf1\x12\x52"
        !          62861:             "\xd3\x13\x42\xc4\x23\x32\xb5\x32\x32\xb2\x12\x33\x22"
        !          62862:             "\xa3\x12\x46\x84\x22\x64\x64\x42\x7b\x62\xa6\xa0" }  },
        !          62863:       /* --- pixel bitmap for bbold450 char#118 v --- */
        !          62864:       { 118,37095,                      /* character number, location */
        !          62865:          27, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          62866:           { 26,   27, 3,137, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          62867:             "\xf1\x0a\xe2\x03\x53\xc3\x12\x62\xc2\x23\x53\xa3\x32"
        !          62868:             "\x62\xa2\x43\x53\x83\x52\x62\x82\x63\x53\x63\x72\x62"
        !          62869:             "\x62\x83\x53\x43\x92\x62\x42\xa3\x53\x23\xb2\x62\x22"
        !          62870:             "\xc3\x56\xd2\x64\xe3\x54\xe0\x12\x62\xe0\x23\x43\xe0"
        !          62871:             "\x32\x42\xe0\x43\x23\xe0\x52\x22\xe0\x66\xa0\xf1\xb4"
        !          62872:             "\xb0\xf1\xc2\xc4" }  },
        !          62873:       /* --- pixel bitmap for bbold450 char#119 w --- */
        !          62874:       { 119,37426,                      /* character number, location */
        !          62875:          27, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          62876:           { 38,   27, 3,199, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          62877:             "\xf1\x0a\xe0\xc2\x03\x53\xe0\xa3\xf1\x12\x62\xe0\xa2"
        !          62878:             "\x10\x13\x53\xe0\x83\x32\x62\xe0\x82\x43\x53\xe0\x63"
        !          62879:             "\x20\xf1\x32\x62\xe0\x62\x30\x33\x53\xe0\x43\x72\x62"
        !          62880:             "\x42\xc2\x82\x62\x34\xb2\x83\x53\x24\xa3\x92\x62\x16"
        !          62881:             "\x92\xa2\x65\x23\x82\xa3\x54\x42\x73\xb2\x63\x43\x62"
        !          62882:             "\xc2\x53\x62\x62\xc3\x42\x73\x43\xd2\x33\x83\x32\xe3"
        !          62883:             "\x22\xa2\x23\xe0\x12\x13\xa3\x12\xe0\x25\xc5\xe0\x24"
        !          62884:             "\xe4\xe0\x33\xe3\xe0\x42\xe0\x22\x92" }  },
        !          62885:       /* --- pixel bitmap for bbold450 char#120 x --- */
        !          62886:       { 120,37809,                      /* character number, location */
        !          62887:          27, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          62888:           { 26,   27, 3,140, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          62889:             "\x02\xed\xcb\x13\xb2\x62\x33\x93\x53\x43\x73\x53\x63"
        !          62890:             "\x62\x62\x83\x43\x53\x93\x32\x62\xb3\x13\x53\xc5\x53"
        !          62891:             "\xe3\x62\xe0\x13\x53\xe3\x53\xe0\x12\x62\xe0\x13\x53"
        !          62892:             "\xe3\x53\xe0\x12\x63\xe3\x55\xc3\x53\x13\xb2\x62\x33"
        !          62893:             "\x93\x53\x43\x82\x62\x63\x63\x53\x73\x43\x53\x93\x32"
        !          62894:             "\x62\xb3\x1b\xcd\xe2" }  },
        !          62895:       /* --- pixel bitmap for bbold450 char#121 y --- */
        !          62896:       { 121,38154,                      /* character number, location */
        !          62897:          27, 1,  -13, 1,      /* topleft row,col, and botleft row,col */
        !          62898:           { 26,   40, 3,193, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          62899:             "\xf1\x0a\xe2\x03\x53\xc3\x12\x62\xc2\x23\x53\xa3\x32"
        !          62900:             "\x62\xa2\x43\x53\x83\x52\x62\x82\x63\x53\x63\x72\x62"
        !          62901:             "\x62\x83\x53\x43\x92\x62\x42\xa3\x53\x23\xb2\x62\x22"
        !          62902:             "\xc3\x56\xd2\x64\xe3\x54\xe0\x12\x62\xe0\x23\x43\xe0"
        !          62903:             "\x32\x42\xe0\x43\x23\xe0\x52\x22\xe0\x66\xa0\xf1\xb4"
        !          62904:             "\xb0\xc2\xe0\x93\xe0\x92\xe0\x93\xe0\x92\xe0\x93\xe0"
        !          62905:             "\x83\xe0\x83\xe0\x83\xe0\x83\xe0\x83\xe0\x83\xe0\x83"
        !          62906:             "\xe0\x74\xe0\x82\xe0\xa2" }  },
        !          62907:       /* --- pixel bitmap for bbold450 char#122 z --- */
        !          62908:       { 122,38511,                      /* character number, location */
        !          62909:          27, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          62910:           { 26,   27, 3,140, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          62911:             "\xf1\x0e\x0c\xe0\x12\x62\xe0\x13\x53\xe3\x53\xe0\x12"
        !          62912:             "\x62\xe0\x13\x53\xe0\x12\x62\xe0\x13\x53\xe3\x53\xe0"
        !          62913:             "\x12\x62\xe0\x13\x53\xe3\x53\xe0\x12\x62\xe0\x13\x53"
        !          62914:             "\xe3\x53\xe0\x12\x62\xe0\x13\x53\xe3\x53\xe0\x12\x62"
        !          62915:             "\xe0\x13\x53\xe0\x12\x62\xe0\x13\x53\xe3\x53\xe0\x12"
        !          62916:             "\x62\xe0\x1f\x1e\x0c" }  },
        !          62917:       /* --- pixel bitmap for bbold450 char#123 \- --- */
        !          62918:       { 123,49562,                      /* character number, location */
        !          62919:          17, 1,   15, 1,      /* topleft row,col, and botleft row,col */
        !          62920:           { 24,    2, 3, 9, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          62921:             "\x0e\x0a\x1e\x08\x12" }  },
        !          62922:       /* --- pixel bitmap for bbold450 char#124 | --- */
        !          62923:       { 124,49109,                      /* character number, location */
        !          62924:          47, 5,  -16, 5,      /* topleft row,col, and botleft row,col */
        !          62925:           { 10,   63, 2,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          62926:             "\xff\x01\x00\x0a\x00\xff\x3a\x02\x06\x02\x00\xff\x01"
        !          62927:             "\x0a" }  },
        !          62928:       /* --- pixel bitmap for bbold450 char#125 (noname) --- */
        !          62929:       { 125,49776,                      /* character number, location */
        !          62930:          17, 1,   15, 1,      /* topleft row,col, and botleft row,col */
        !          62931:           { 48,    2, 2, 5, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          62932:             "\x00\x30\x01\x2e\x01" }  },
        !          62933:       /* --- pixel bitmap for bbold450 char#126 (noname) --- */
        !          62934:       { 126,49996,                      /* character number, location */
        !          62935:          43, 2,   20, 2,      /* topleft row,col, and botleft row,col */
        !          62936:           { 30,   23, 3,127, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          62937:             "\x92\xe0\x22\x93\xe0\x13\x74\xe4\x73\xe0\x13\x83\xe0"
        !          62938:             "\x13\x92\xe0\x22\x93\xe0\x13\x83\xe0\x13\x92\xe0\x22"
        !          62939:             "\x93\xe0\x13\x92\xe0\x22\xa2\x14\xb2\x14\x4a\x8a\x24"
        !          62940:             "\x43\x74\x43\x13\x63\x63\x63\x0f\x32\x82\x62\x82\x03"
        !          62941:             "\x63\x63\x63\x13\x43\x83\x43\x38\xa8\x64\xe4\x42" }  },
        !          62942:       /* --- pixel bitmap for bbold450 char#127 \omega --- */
        !          62943:       { 127,13715,                      /* character number, location */
        !          62944:          27, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
        !          62945:           { 38,   28, 3,183, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          62946:             "\x82\xe0\x42\xe4\xe0\x44\xb5\xe0\x63\x93\x12\xe0\x73"
        !          62947:             "\x73\x22\xe0\x83\x53\x32\xe0\x93\x42\x42\xe0\xa2\x33"
        !          62948:             "\x42\xe0\xa3\x22\x52\xe0\xb2\x13\x52\xe0\xb5\x62\xe0"
        !          62949:             "\xc2\x0f\x52\x62\x82\xe0\x22\x02\x62\x74\xe0\x15\x52"
        !          62950:             "\x74\xe3\x12\x52\x74\xe2\x22\x52\x66\xd2\x23\x42\x62"
        !          62951:             "\x22\xc3\x32\x42\x53\x22\xc2\x43\x32\x53\x23\xa3\x53"
        !          62952:             "\x22\x43\x43\x83\x73\x12\x33\x63\x63\x9a\x8a\xc6\xc6"
        !          62953:             "\x73" }  },
        !          62954:       /* --- trailer  --- */
        !          62955:       { -99, -999,  0,0,0,0, { 0,0,0,0, (pixbyte *)"\0" }  }
        !          62956:    } ;
        !          62957: 
        !          62958: 
        !          62959: /* --- size=10 for .600gf ---
        !          62960:  * mf '\mode=preview; mag=magstep(-8.04680493988053835544); input bbold10'
        !          62961:  * --------------------------------------------------------------------- */
        !          62962: /* --- fontdef for bbold600 --- */
        !          62963: static	chardef  bbold600[] =
        !          62964:    {
        !          62965:       /* --- pixel bitmap for bbold600 char#0 \Gamma --- */
        !          62966:       {   0,  246,                      /* character number, location */
        !          62967:          57, 6,    0, 6,      /* topleft row,col, and botleft row,col */
        !          62968:           { 42,   57, 2,21, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          62969:             "\x01\x29\x00\xff\x01\x2a\x00\xff\x32\x03\x08\x03\x1c"
        !          62970:             "\xff\x01\x0e\x1c\x00\x01\x0d\x1c" }  },
        !          62971:       /* --- pixel bitmap for bbold600 char#1 \Delta --- */
        !          62972:       {   1,  680,                      /* character number, location */
        !          62973:          57, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          62974:           { 47,   57, 3,398, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          62975:             "\xe0\x92\xe0\xe0\xe0\x23\xe0\x80\xf2\xe0\x75\xe0\x70"
        !          62976:             "\xe0\x67\xe0\xe0\xc3\x13\xe0\xe0\xb4\x14\xe0\x50\xf1"
        !          62977:             "\xe0\x53\x33\xe0\x50\xe0\x44\x34\xe0\xe0\x83\x53\xe0"
        !          62978:             "\xe0\x74\x54\xe0\xe0\x63\x73\xe0\xe0\x54\x74\xe0\x20"
        !          62979:             "\xf1\xe0\x23\x84\xe0\x20\xe0\x14\x76\xe0\xe0\x23\x86"
        !          62980:             "\xe0\xe0\x14\x78\xe0\xf1\xe3\x83\x23\xe0\xd4\x74\x24"
        !          62981:             "\xe0\xc3\x83\x43\xe0\xb4\x74\x44\xc0\xf1\xc3\x83\x63"
        !          62982:             "\xc0\xb4\x74\x64\xe0\x83\x83\x83\xe0\x74\x74\x84\xa0"
        !          62983:             "\xf1\xa3\x83\xa3\xa0\x94\x74\xa4\xe0\x43\x83\xc3\xe0"
        !          62984:             "\x34\x74\xc4\x80\xf1\x83\x83\xe3\x80\x74\x74\xe4\xe3"
        !          62985:             "\x83\xe0\x23\xd4\x74\xe0\x24\xc3\x83\xe0\x43\xb4\x74"
        !          62986:             "\xe0\x43\xb3\x84\xe0\x44\xa3\x83\xe0\x63\x94\x74\xe0"
        !          62987:             "\x64\x83\x83\xe0\x83\x74\x74\xe0\x84\x30\xf1\x33\x83"
        !          62988:             "\xe0\xa3\x30\x24\x74\xe0\xa4\x43\x83\xe0\xc3\x34\x74"
        !          62989:             "\xe0\xc4\x10\xf1\x13\x83\xe0\xe3\x1f\x1e\x0e\x0e\x05"
        !          62990:             "\x1e\x0e\x0e\x04" }  },
        !          62991:       /* --- pixel bitmap for bbold600 char#2 \Theta --- */
        !          62992:       {   2, 1176,                      /* character number, location */
        !          62993:          59, 4,   -2, 4,      /* topleft row,col, and botleft row,col */
        !          62994:           { 46,   61, 3,387, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          62995:             "\xe0\x4a\xe0\xe0\x5e\x02\xe0\xee\x06\xe0\xb7\x87\xe0"
        !          62996:             "\x95\xe5\xe0\x74\xe0\x44\xe0\x55\xe0\x54\xe0\x36\xe0"
        !          62997:             "\x64\xe0\x17\xe0\x74\xd4\x13\xe0\x84\xb4\x23\xe0\x94"
        !          62998:             "\xa3\x33\xe0\xa3\x94\x33\xe0\xa4\x83\x43\xe0\xb3\x74"
        !          62999:             "\x43\xe0\xb4\x63\x53\xe0\xc3\x54\x53\xe0\xc4\x20\xf1"
        !          63000:             "\x23\x63\xe0\xd3\x20\x14\x63\xe0\xd4\x10\xf3\x13\x73"
        !          63001:             "\xe0\xe3\x14\x73\xe0\xe4\x0f\x33\x83\xe0\xe0\x13\x03"
        !          63002:             "\x83\x7e\x02\x66\x83\x6e\x03\x66\x83\x7e\x02\x63\x0f"
        !          63003:             "\x33\x83\xe0\xe0\x13\x04\x73\xe0\xe4\xf3\x13\x73\xe0"
        !          63004:             "\xe3\x10\x14\x63\xe0\xd4\x10\xf1\x23\x63\xe0\xd3\x20"
        !          63005:             "\x24\x53\xe0\xc4\x53\x53\xe0\xc3\x64\x43\xe0\xb4\x73"
        !          63006:             "\x43\xe0\xb3\x84\x33\xe0\xa4\x93\x33\xe0\xa3\xa4\x23"
        !          63007:             "\xe0\x94\xb4\x13\xe0\x84\xd7\xe0\x74\xe0\x16\xe0\x64"
        !          63008:             "\xe0\x35\xe0\x54\xe0\x54\xe0\x44\xe0\x75\xe5\xe0\x97"
        !          63009:             "\x87\xe0\xbe\x06\xe0\xee\x02\xe0\xe0\x5a\xe0\x4e" }  },
        !          63010:       /* --- pixel bitmap for bbold600 char#3 \Lambda --- */
        !          63011:       {   3, 1719,                      /* character number, location */
        !          63012:          57, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          63013:           { 47,   57, 3,404, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          63014:             "\xe0\x92\xe0\xe0\xe0\x23\xe0\x80\xf2\xe0\x75\xe0\x70"
        !          63015:             "\xe0\x67\xe0\xe0\xc3\x13\xe0\xe0\xb4\x14\xe0\x50\xf1"
        !          63016:             "\xe0\x53\x33\xe0\x50\xe0\x44\x34\xe0\xe0\x83\x53\xe0"
        !          63017:             "\xe0\x74\x54\xe0\xe0\x63\x73\xe0\xe0\x54\x74\xe0\x20"
        !          63018:             "\xf1\xe0\x23\x84\xe0\x20\xe0\x14\x76\xe0\xe0\x23\x86"
        !          63019:             "\xe0\xe0\x14\x78\xe0\xf1\xe3\x83\x23\xe0\xd4\x74\x24"
        !          63020:             "\xe0\xc3\x83\x43\xe0\xb4\x74\x44\xc0\xf1\xc3\x83\x63"
        !          63021:             "\xc0\xb4\x74\x64\xe0\x83\x83\x83\xe0\x74\x74\x84\xa0"
        !          63022:             "\xf1\xa3\x83\xa3\xa0\x94\x74\xa4\xe0\x43\x83\xc3\xe0"
        !          63023:             "\x34\x74\xc4\x80\xf1\x83\x83\xe3\x80\x74\x74\xe4\xe3"
        !          63024:             "\x83\xe0\x23\xd4\x74\xe0\x24\xc3\x83\xe0\x43\xb4\x74"
        !          63025:             "\xe0\x43\xb3\x84\xe0\x44\xa3\x83\xe0\x63\x94\x74\xe0"
        !          63026:             "\x64\x83\x83\xe0\x83\x74\x74\xe0\x84\x30\xf1\x33\x83"
        !          63027:             "\xe0\xa3\x30\x24\x74\xe0\xa4\x43\x83\xe0\xc3\x34\x74"
        !          63028:             "\xe0\xc4\x10\xf1\x13\x83\xe0\xe3\x1e\x01\xe0\xee\x04"
        !          63029:             "\xe0\xe0\x23\x1d\xe0\xe0\x32" }  },
        !          63030:       /* --- pixel bitmap for bbold600 char#4 \Xi --- */
        !          63031:       {   4, 2218,                      /* character number, location */
        !          63032:          57, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          63033:           { 47,   57, 2,24, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          63034:             "\x01\x5d\x01\x2e\xff\x17\x2f\x00\x0f\x12\x1c\x13\x1d"
        !          63035:             "\x12\x0e\x00\xff\x17\x2f\x00\x01\x5d\x01\x2e" }  },
        !          63036:       /* --- pixel bitmap for bbold600 char#5 \Pi --- */
        !          63037:       {   5, 2455,                      /* character number, location */
        !          63038:          57, 6,    0, 6,      /* topleft row,col, and botleft row,col */
        !          63039:           { 42,   57, 2,24, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          63040:             "\x01\x29\x00\xff\x01\x2a\x00\xff\x32\x03\x08\x03\x19"
        !          63041:             "\x03\x00\xff\x01\x0e\x19\x03\x01\x0d\x1a\x02" }  },
        !          63042:       /* --- pixel bitmap for bbold600 char#6 \Sigma --- */
        !          63043:       {   6, 2997,                      /* character number, location */
        !          63044:          57, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          63045:           { 46,   57, 2,216, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          63046:             "\x01\x2d\x00\xff\x01\x2e\x01\x03\x08\x03\x20\x04\x07"
        !          63047:             "\x04\x20\x04\x07\x04\x20\x03\x08\x03\x20\x04\x07\x04"
        !          63048:             "\x20\x03\x08\x03\x20\x04\x07\x04\x20\x04\x07\x04\x20"
        !          63049:             "\x03\x08\x03\x20\x04\x07\x04\x20\x03\x08\x03\x20\x04"
        !          63050:             "\x07\x04\x20\x04\x07\x04\x20\x03\x08\x03\x20\x04\x07"
        !          63051:             "\x04\x20\x03\x08\x03\x20\x04\x07\x04\x20\x04\x07\x04"
        !          63052:             "\x20\x03\x08\x03\x20\x04\x07\x04\x20\x03\x08\x03\x20"
        !          63053:             "\x04\x07\x04\x20\x04\x07\x04\x20\x03\x08\x03\x20\x04"
        !          63054:             "\x07\x04\x20\x03\x08\x03\x1f\x04\x07\x04\x1f\x03\x08"
        !          63055:             "\x03\x1f\x04\x07\x04\x1e\x04\x07\x04\x1f\x03\x08\x03"
        !          63056:             "\x1f\x04\x07\x04\x1f\x03\x08\x03\x1f\x04\x07\x04\x1e"
        !          63057:             "\x04\x07\x04\x1f\x03\x08\x03\x1f\x04\x07\x04\x1f\x03"
        !          63058:             "\x08\x03\x1f\x04\x07\x04\x1e\x04\x07\x04\x1f\x03\x08"
        !          63059:             "\x03\x1f\x04\x07\x04\x1f\x03\x08\x03\x1f\x04\x07\x04"
        !          63060:             "\x1e\x04\x07\x04\x1f\x03\x08\x03\x1f\x04\x07\x04\x1f"
        !          63061:             "\x03\x08\x03\x1f\x04\x07\x04\x1e\x04\x07\x04\x1f\x03"
        !          63062:             "\x08\x03\x1f\xff\x01\x2e\x01\x2d" }  },
        !          63063:       /* --- pixel bitmap for bbold600 char#7 \Upsilon --- */
        !          63064:       {   7, 3433,                      /* character number, location */
        !          63065:          59, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          63066:           { 46,   59, 3,151, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          63067:             "\x67\xe0\x67\xb9\xe0\x49\x9b\xe0\x2b\x74\x54\xe4\x54"
        !          63068:             "\x54\x74\xc4\x74\x43\x93\xc3\x93\x34\x94\xa4\x94\x10"
        !          63069:             "\xf1\x13\xb3\xa3\xb3\x14\xb4\x84\xb4\x0f\x43\xd3\x83"
        !          63070:             "\xd3\x12\xd3\x83\xe2\xfb\xe0\x23\x83\xe0\x20\xf2\xe0"
        !          63071:             "\x2e\xe0\x20\xfe\xe0\x23\x83\xe0\x20\xf9\xe0\x23\x83"
        !          63072:             "\xe0\x20\xf1\xe0\x2e\xe0\x20\xe0\x3d\xe0\x20" }  },
        !          63073:       /* --- pixel bitmap for bbold600 char#8 \Phi --- */
        !          63074:       {   8, 3925,                      /* character number, location */
        !          63075:          57, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          63076:           { 46,   57, 3,267, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          63077:             "\xe0\x3d\xe0\x20\xf1\xe0\x2e\xe0\x20\xf8\xe0\x23\x83"
        !          63078:             "\xe0\x20\xd6\x86\xe0\xa8\x88\xe0\x6a\x8a\xe0\x27\x23"
        !          63079:             "\x83\x27\xd6\x43\x83\x46\xb5\x63\x83\x65\x94\x83\x83"
        !          63080:             "\x84\x74\x93\x83\x94\x54\xa3\x83\xa4\x43\xb3\x83\xb3"
        !          63081:             "\x34\xb3\x83\xb4\x23\xc3\x83\xc3\x14\xc3\x83\xc4\x0f"
        !          63082:             "\x63\xd3\x83\xd3\x04\xc3\x83\xc4\x13\xc3\x83\xc3\x24"
        !          63083:             "\xb3\x83\xb4\x33\xb3\x83\xb3\x44\xa3\x83\xa4\x54\x93"
        !          63084:             "\x83\x94\x74\x83\x83\x84\x95\x63\x83\x65\xb6\x43\x83"
        !          63085:             "\x46\xd7\x23\x83\x27\xe0\x2a\x8a\xe0\x68\x88\xe0\xa6"
        !          63086:             "\x86\xd0\xf8\xe0\x23\x83\xe0\x20\xf1\xe0\x2e\xe0\x20"
        !          63087:             "\xe0\x3d\xe0\x24" }  },
        !          63088:       /* --- pixel bitmap for bbold600 char#9 \Psi --- */
        !          63089:       {   9, 4465,                      /* character number, location */
        !          63090:          57, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          63091:           { 46,   57, 3,217, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          63092:             "\xe0\x3d\xe0\x20\xf1\xe0\x2e\xe0\x20\xf7\xe0\x23\x83"
        !          63093:             "\xe0\x20\x13\xc3\x83\xca\xa3\x83\xa6\x16\x93\x83\x97"
        !          63094:             "\x34\x93\x83\x94\x74\x83\x83\x84\x40\xfe\x53\x83\x83"
        !          63095:             "\x83\x50\x54\x73\x83\x74\x50\xf1\x63\x73\x83\x73\x60"
        !          63096:             "\x64\x63\x83\x64\xd3\x63\x83\x63\xe4\x53\x83\x54\xe0"
        !          63097:             "\x13\x53\x83\x53\xe0\x24\x43\x83\x44\xe0\x34\x33\x83"
        !          63098:             "\x34\xe0\x55\x13\x83\x15\xe0\x78\x88\xe0\x97\x87\xe0"
        !          63099:             "\xc5\x85\xe0\xf9\xe0\x23\x83\xe0\x20\xf1\xe0\x2e\xe0"
        !          63100:             "\x20\xe0\x3d\xe0\x27" }  },
        !          63101:       /* --- pixel bitmap for bbold600 char#10 \Omega --- */
        !          63102:       {  10, 5019,                      /* character number, location */
        !          63103:          59, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          63104:           { 46,   59, 3,334, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          63105:             "\xe0\x4a\xe0\xe0\x5e\x02\xe0\xee\x06\xe0\xb7\x87\xe0"
        !          63106:             "\x95\xe5\xe0\x74\xe0\x44\xe0\x55\xe0\x54\xe0\x36\xe0"
        !          63107:             "\x64\xe0\x17\xe0\x74\xd4\x13\xe0\x84\xb4\x23\xe0\x94"
        !          63108:             "\xa3\x33\xe0\xa3\x94\x33\xe0\xa4\x83\x43\xe0\xb3\x74"
        !          63109:             "\x43\xe0\xb4\x63\x53\xe0\xc3\x54\x53\xe0\xc4\x20\xf1"
        !          63110:             "\x23\x63\xe0\xd3\x20\x14\x63\xe0\xd4\x10\xf3\x13\x73"
        !          63111:             "\xe0\xe3\x14\x73\xe0\xe4\x0f\xa3\x83\xe0\xe0\x13\x04"
        !          63112:             "\x73\xe0\xe4\xf3\x13\x73\xe0\xe3\x10\x14\x63\xe0\xd4"
        !          63113:             "\x10\xf1\x23\x63\xe0\xd3\x20\x24\x53\xe0\xc4\x53\x53"
        !          63114:             "\xe0\xc3\x64\x43\xe0\xb4\x73\x43\xe0\xb3\x84\x33\xe0"
        !          63115:             "\xa4\x93\x33\xe0\xa3\xa4\x23\xe0\x94\xb4\x13\xe0\x84"
        !          63116:             "\xd3\x13\xe0\x83\xe7\xe0\x74\xe0\x16\xe0\x64\xe0\x35"
        !          63117:             "\xe0\x54\xad\xe0\x4e\x0e\xe0\x4e\x1d\xe0\x5d" }  },
        !          63118:       /* --- pixel bitmap for bbold600 char#11 \alpha --- */
        !          63119:       {  11, 5555,                      /* character number, location */
        !          63120:          38, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
        !          63121:           { 42,   40, 3,293, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          63122:             "\xd8\xe0\xe0\x4c\xe0\xee\x02\xe0\x12\x86\x66\xd3\x68"
        !          63123:             "\x84\xd3\x55\x13\x94\xc3\x54\x23\xa3\xc3\x44\x33\xa4"
        !          63124:             "\xb3\x34\x43\xb3\xb3\x33\x53\xb4\xa3\x24\x53\xc3\xa3"
        !          63125:             "\x23\x63\xc3\x94\x14\x63\xc4\x83\x10\xf1\x13\x73\xd3"
        !          63126:             "\x83\x14\x73\xd3\x83\x13\x83\xd3\x74\x13\x83\xd3\x73"
        !          63127:             "\x23\x83\xd4\x63\x23\x83\xe3\x63\x23\x83\xe3\x54\x2f"
        !          63128:             "\x13\x83\xe3\x53\x33\x83\xe3\x44\x34\x73\xe4\x33\x53"
        !          63129:             "\x73\xe0\x13\x24\x53\x73\xe0\x13\x23\x64\x63\xe0\x13"
        !          63130:             "\x14\x73\x63\xe0\x17\x84\x53\xe0\x25\xa3\x53\xe0\x25"
        !          63131:             "\xa4\x43\xe0\x24\xc4\x33\xe0\x16\xc4\x23\xe8\xb5\x13"
        !          63132:             "\xc5\x16\xa8\xa6\x39\x86\x78\x67\x9e\x04\xa5\xbe\xe0"
        !          63133:             "\xe0\x29\xe0\x63" }  },
        !          63134:       /* --- pixel bitmap for bbold600 char#12 \beta --- */
        !          63135:       {  12, 6040,                      /* character number, location */
        !          63136:          60, 4,  -16, 4,      /* topleft row,col, and botleft row,col */
        !          63137:           { 38,   76, 3,389, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          63138:             "\xe0\x59\xe0\xce\xe0\x8e\x04\xe0\x48\x76\xe0\x26\xc5"
        !          63139:             "\xd6\xe0\x24\xb6\xe0\x44\x97\xe0\x53\x84\x13\xe0\x54"
        !          63140:             "\x64\x23\xe0\x63\x63\x33\xe0\x64\x44\x33\xe0\x73\x34"
        !          63141:             "\x43\xe0\x73\x33\x53\xe0\x73\x24\x53\xe0\x73\x23\x63"
        !          63142:             "\xe0\x73\x14\x63\xe0\x73\x13\x73\xe0\x64\x13\x73\xe0"
        !          63143:             "\x63\x23\x73\xe0\x54\x14\x73\xe0\x53\x23\x83\xe0\x44"
        !          63144:             "\x23\x83\xe0\x25\x33\x83\xe6\x43\x83\xa9\x53\x83\x98"
        !          63145:             "\x73\x83\xa8\x63\x83\xd6\x53\x83\xe0\x15\x43\x83\xe0"
        !          63146:             "\x33\x43\x83\xe0\x34\x33\x83\xe0\x44\x23\x83\xe0\x53"
        !          63147:             "\x23\x83\xe0\x54\x1f\x23\x83\xe0\x63\x13\x83\xe0\x64"
        !          63148:             "\x0f\x83\x83\xe0\x73\x03\x83\xe0\x64\x0f\x23\x83\xe0"
        !          63149:             "\x63\x13\x83\xe0\x54\x13\x84\xe0\x43\x23\x84\xe0\x34"
        !          63150:             "\x23\x85\xe0\x23\x33\x85\xe0\x14\x33\x86\xd4\x43\x88"
        !          63151:             "\xa4\x53\x83\x16\x65\x63\x83\x2e\x01\x73\x83\x4c\x83"
        !          63152:             "\x83\x68\xaf\xa3\x83\xe0\xaf\x1e\xe0\xa0\x1d\xe0\xa4" }  },
        !          63153:       /* --- pixel bitmap for bbold600 char#13 \gamma --- */
        !          63154:       {  13, 6660,                      /* character number, location */
        !          63155:          36, 2,  -18, 2,      /* topleft row,col, and botleft row,col */
        !          63156:           { 35,   54, 3,265, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          63157:             "\x17\xe0\x5e\x06\xbc\x1d\x7e\x79\x39\xe0\x4d\xe0\xa9"
        !          63158:             "\xe0\xd7\xe0\xd9\xe0\xb4\x34\xe0\x94\x54\xe0\x74\x74"
        !          63159:             "\xe0\x55\x84\xe0\x36\x94\xe0\x17\xa4\xd4\x13\xb4\xc3"
        !          63160:             "\x23\xc3\xb4\x23\xc4\x94\x33\xd4\x83\x43\xe3\x74\x43"
        !          63161:             "\xe4\x63\x53\xe0\x13\x54\x53\xe0\x14\x20\xf1\x23\x63"
        !          63162:             "\xe0\x23\x20\x14\x63\xe0\x24\x10\xf2\x13\x73\xe0\x33"
        !          63163:             "\x14\x73\xe0\x34\x0f\x83\x83\xe0\x43\x04\x73\xe0\x34"
        !          63164:             "\xf2\x13\x73\xe0\x33\x10\x14\x63\xe0\x24\x33\x63\xe0"
        !          63165:             "\x23\x44\x53\xe0\x14\x54\x43\xe4\x73\x43\xe3\x84\x33"
        !          63166:             "\xd4\x95\x13\xb5\xb8\x96\xd7\x77\xe0\x2e\x03\xe0\x6d"
        !          63167:             "\xe0\xa9\xd3" }  },
        !          63168:       /* --- pixel bitmap for bbold600 char#14 \delta --- */
        !          63169:       {  14, 7150,                      /* character number, location */
        !          63170:          60, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
        !          63171:           { 35,   62, 3,317, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          63172:             "\xd9\xe0\x8e\x02\xe0\x3e\x06\xe8\x78\xb5\xe6\x94\xe0"
        !          63173:             "\x45\x74\xe0\x74\x54\xe0\x94\x34\xe0\xb4\x24\xe0\xc4"
        !          63174:             "\x13\xe0\xe7\xe0\xe0\x12\x0f\x43\xe0\xe0\x44\xe0\xe0"
        !          63175:             "\x44\xe0\xe0\x44\xe0\xe0\x36\xe0\xe0\x27\xe0\xe0\x28"
        !          63176:             "\xe0\xe0\x19\xe0\xea\xe0\xcc\xe0\x8e\x01\xe0\x47\x48"
        !          63177:             "\xe0\x18\x77\xc5\x13\x96\xa4\x33\xb5\x84\x43\xd4\x73"
        !          63178:             "\x53\xe4\x54\x53\xe0\x13\x53\x63\xe0\x14\x34\x63\xe0"
        !          63179:             "\x23\x33\x73\xe0\x24\x14\x73\xe0\x33\x13\x83\xe0\x34"
        !          63180:             "\x0f\x63\x83\xe0\x43\x04\x73\xe0\x34\xf1\x13\x73\xe0"
        !          63181:             "\x33\x10\x14\x63\xe0\x24\x33\x63\xe0\x23\x44\x53\xe0"
        !          63182:             "\x14\x53\x53\xe0\x13\x64\x43\xe4\x74\x33\xd4\x94\x23"
        !          63183:             "\xc4\xa5\x13\xb5\xb8\x96\xe6\x76\xe0\x3e\x03\xe0\x6d"
        !          63184:             "\xe0\xa9\xd0" }  },
        !          63185:       /* --- pixel bitmap for bbold600 char#15 \epsilon --- */
        !          63186:       {  15, 7632,                      /* character number, location */
        !          63187:          38, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
        !          63188:           { 35,   40, 3,209, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          63189:             "\xd9\xe0\xae\xe0\x5e\x04\xe0\x26\x78\xc8\xa6\xa5\x13"
        !          63190:             "\xc5\x94\x23\xe4\x74\x33\xe0\x14\x54\x43\xe0\x24\x43"
        !          63191:             "\x53\xe0\x34\x24\x53\xe0\x43\x23\x63\xe0\x52\x14\x63"
        !          63192:             "\xe0\x70\xf1\x13\x73\xe0\x74\x73\xe0\x7f\x23\x8a\xef"
        !          63193:             "\x43\x83\xe0\x74\x73\xe0\x70\xf1\x13\x73\xe0\x70\x14"
        !          63194:             "\x63\xe0\x93\x63\xe0\x52\x24\x53\xe0\x43\x33\x53\xe0"
        !          63195:             "\x34\x34\x43\xe0\x24\x54\x33\xe0\x14\x74\x23\xe4\x85"
        !          63196:             "\x13\xc5\xa8\xa6\xd6\x78\xe0\x1e\x04\xe0\x5e\xe0\x99"
        !          63197:             "\xdf" }  },
        !          63198:       /* --- pixel bitmap for bbold600 char#16 \zeta --- */
        !          63199:       {  16, 8025,                      /* character number, location */
        !          63200:          58, 4,  -16, 4,      /* topleft row,col, and botleft row,col */
        !          63201:           { 28,   74, 3,279, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          63202:             "\xe0\xb3\xe0\x95\xe0\x77\xe0\x66\xe0\x66\xe0\x75\xe0"
        !          63203:             "\x85\xe0\x84\xe0\x94\xe0\x94\xe0\x94\xe0\x94\xe0\x94"
        !          63204:             "\xe0\x95\xe0\xf1\x86\xe0\x77\xe0\x64\x13\xe0\x63\x23"
        !          63205:             "\xe0\x54\x23\xe0\x53\x33\xe0\x44\x33\xe0\x43\x43\xe0"
        !          63206:             "\x34\x43\xe0\x33\x53\xe0\x24\x53\xe0\xf1\x23\x63\xe0"
        !          63207:             "\x14\x63\xe0\xf3\x13\x73\xe4\x73\xef\x93\x83\xe4\x73"
        !          63208:             "\xe0\x13\x73\xe0\x14\x63\xe0\x23\x63\xe0\x24\x53\xe0"
        !          63209:             "\x33\x53\xe0\x34\x43\xe0\x44\x33\xe0\x54\x23\xe0\x68"
        !          63210:             "\xe0\x77\xe0\x88\xe0\x8a\xe0\x6b\xe0\x6a\xe0\x87\xe0"
        !          63211:             "\xa5\xe0\xb3\xe0\xb4\xf3\xe0\xb3\xe0\xa4\xe0\xa3\xe0"
        !          63212:             "\xa4\xe0\x85\xe0\x76\xe0\x76\xe0\x93\x63" }  },
        !          63213:       /* --- pixel bitmap for bbold600 char#17 \eta --- */
        !          63214:       {  17, 8461,                      /* character number, location */
        !          63215:          38, 4,  -16, 4,      /* topleft row,col, and botleft row,col */
        !          63216:           { 38,   54, 3,130, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          63217:             "\xe0\x68\xe0\xec\x9d\x2e\x02\x6e\x16\x66\x5e\x05\xa5"
        !          63218:             "\x43\x86\xe3\x43\x85\xe0\x14\x33\x85\xe0\x24\x23\x84"
        !          63219:             "\xe0\x43\x23\x84\xe0\x44\x1f\x13\x83\xe0\x63\x13\x83"
        !          63220:             "\xe0\x64\x0f\xe3\x83\xe0\x73\x0f\x63\x83\xe0\x73\x0f"
        !          63221:             "\x1e\xe0\x73\x1d\xe0\x73\xfe\xe0\xe0\x73\xe0\xe0\x82" }  },
        !          63222:       /* --- pixel bitmap for bbold600 char#18 \theta --- */
        !          63223:       {  18, 8921,                      /* character number, location */
        !          63224:          60, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
        !          63225:           { 35,   62, 3,277, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          63226:             "\xd9\xe0\xad\xe0\x6e\x03\xe0\x36\x76\xe0\x17\x95\xd4"
        !          63227:             "\x13\xb4\xc3\x23\xc3\xb4\x23\xc4\x94\x33\xd4\x83\x43"
        !          63228:             "\xe3\x74\x43\xe4\x30\xf1\x33\x53\xe0\x13\x30\x24\x53"
        !          63229:             "\xe0\x14\x20\xf1\x23\x63\xe0\x23\x20\x14\x63\xe0\x24"
        !          63230:             "\x10\xf4\x13\x73\xe0\x33\x14\x73\xe0\x34\x0f\x53\x83"
        !          63231:             "\xe0\x43\x0f\x23\x8e\x0a\x0f\x63\x83\xe0\x43\x04\x73"
        !          63232:             "\xe0\x34\xf4\x13\x73\xe0\x33\x10\x14\x63\xe0\x24\x10"
        !          63233:             "\xf1\x23\x63\xe0\x23\x20\x24\x53\xe0\x14\x20\xf1\x33"
        !          63234:             "\x53\xe0\x13\x30\x34\x43\xe4\x73\x43\xe3\x84\x33\xd4"
        !          63235:             "\x94\x23\xc4\xb3\x23\xc3\xc4\x13\xb4\xd7\x95\xe0\x16"
        !          63236:             "\x76\xe0\x3e\x03\xe0\x6d\xe0\xa9\xd3" }  },
        !          63237:       /* --- pixel bitmap for bbold600 char#19 \iota --- */
        !          63238:       {  19, 9472,                      /* character number, location */
        !          63239:          36, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          63240:           { 14,   36, 3,58, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          63241:             "\x1d\x0f\x1e\x0f\xe3\x83\x0f\x53\x83\x04\x73\xf1\x13"
        !          63242:             "\x73\x14\x63\x23\x63\x24\x53\x34\x43\x44\x33\x55\x13"
        !          63243:             "\x68\x77\x95" }  },
        !          63244:       /* --- pixel bitmap for bbold600 char#20 \kappa --- */
        !          63245:       {  20, 9822,                      /* character number, location */
        !          63246:          36, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          63247:           { 38,   36, 3,228, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          63248:             "\x1d\xe0\x7e\x03\xe0\x5e\x05\xe0\x49\x83\xe0\x26\x23"
        !          63249:             "\x83\xe6\x43\x83\xd6\x53\x83\xb6\x73\x83\x96\x93\x83"
        !          63250:             "\x77\xa3\x83\x66\xc3\x83\x46\xe3\x83\x26\xe0\x23\x83"
        !          63251:             "\x16\xe0\x33\x88\xe0\x53\x86\xe0\x73\x87\xe0\x63\x88"
        !          63252:             "\xe0\x53\x83\x16\xe0\x33\x83\x35\xe0\x23\x83\x44\xe0"
        !          63253:             "\x23\x83\x54\xe0\x13\x83\x64\xe3\x83\x74\xd3\x83\x83"
        !          63254:             "\xd3\x83\x84\xc3\x83\x94\xb3\x83\xa3\xb3\x83\xa4\xa3"
        !          63255:             "\x83\xb4\x93\x83\xc4\x83\x83\xd4\x73\x83\xd5\x63\x83"
        !          63256:             "\xe6\x4e\xe0\x2e\x08\xe0\x37\x1d\xe0\x55" }  },
        !          63257:       /* --- pixel bitmap for bbold600 char#21 \lambda --- */
        !          63258:       {  21,10237,                      /* character number, location */
        !          63259:          58, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          63260:           { 35,   58, 3,334, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          63261:             "\x1d\xe0\x7e\xe0\x7e\x01\xe0\x60\xf1\x13\x83\xe0\x60"
        !          63262:             "\x14\x74\xe0\x50\xf1\x23\x83\xe0\x50\x24\x74\xe0\x73"
        !          63263:             "\x83\xe0\x74\x74\xe0\x30\xf1\x43\x83\xe0\x30\x44\x74"
        !          63264:             "\xe0\x73\x83\xe0\x74\x74\xe0\x10\xf1\x63\x83\xe0\x10"
        !          63265:             "\x64\x74\xe0\xf1\x73\x83\xe0\x74\x74\xe0\x73\x83\xe0"
        !          63266:             "\x74\x74\xc0\xf1\x93\x83\xc0\x94\x74\xb0\xf1\xa3\x83"
        !          63267:             "\xb0\xa4\x74\xe0\x73\x83\xe0\x74\x74\x90\xf1\xc3\x83"
        !          63268:             "\x90\xc4\x74\xe0\x64\x83\xe0\x56\x74\xe0\x46\x83\xe0"
        !          63269:             "\x37\x83\xe0\x33\x14\x74\xe0\x14\x23\x83\xe4\x33\x83"
        !          63270:             "\xe3\x44\x74\xc4\x53\x83\xc3\x64\x74\xa4\x73\x83\xa3"
        !          63271:             "\x83\x83\x94\x84\x74\x74\xa3\x83\x73\xb4\x74\x54\xc3"
        !          63272:             "\x83\x53\xd3\x83\x44\xd4\x74\x24\xe0\x13\x83\x23\xe0"
        !          63273:             "\x23\x83\x14\xe0\x2e\x04\xe0\x4e\x12\xe0\x5d" }  },
        !          63274:       /* --- pixel bitmap for bbold600 char#22 \mu --- */
        !          63275:       {  22,10710,                      /* character number, location */
        !          63276:          36, 4,  -16, 4,      /* topleft row,col, and botleft row,col */
        !          63277:           { 38,   52, 3,127, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          63278:             "\x1d\xe0\x82\x0f\x1e\xe0\x73\x0f\xe3\x83\xe0\x73\x0f"
        !          63279:             "\x63\x83\xe0\x73\x0f\x23\x83\xe0\x64\x0f\x13\x84\xe0"
        !          63280:             "\x45\x03\x85\xe0\x29\x85\xe0\x1a\x86\xe3\x16\x88\xa5"
        !          63281:             "\x16\x83\x16\x66\x26\x83\x2e\x02\x45\x83\x4c\x83\x83"
        !          63282:             "\x68\xaf\xa3\x83\xe0\xaf\x1e\xe0\xa0\x1d\xe0\xa3" }  },
        !          63283:       /* --- pixel bitmap for bbold600 char#23 \nu --- */
        !          63284:       {  23,11207,                      /* character number, location */
        !          63285:          36, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          63286:           { 35,   36, 3,191, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          63287:             "\x1d\xe0\x52\x0f\x1e\xe0\x43\x0f\x33\x83\xe0\x43\x03"
        !          63288:             "\x83\xe0\x34\x0f\x23\x83\xe0\x33\x13\x83\xe0\x24\x1f"
        !          63289:             "\x13\x83\xe0\x23\x23\x83\xe0\x14\x23\x83\xe0\x13\x33"
        !          63290:             "\x83\xe4\x33\x83\xe3\x43\x83\xd4\x43\x83\xc4\x53\x83"
        !          63291:             "\xc3\x63\x83\xb4\x63\x83\xa4\x73\x83\x94\x83\x83\x84"
        !          63292:             "\x93\x83\x74\xa3\x83\x64\xb3\x83\x45\xc3\x83\x35\xd3"
        !          63293:             "\x83\x16\xe3\x88\xe0\x23\x78\xe0\x33\x3a\xe0\x5e\xe0"
        !          63294:             "\x7b\xe0\xb6\xe0\xe4" }  },
        !          63295:       /* --- pixel bitmap for bbold600 char#24 \xi --- */
        !          63296:       {  24,11614,                      /* character number, location */
        !          63297:          58, 4,  -16, 4,      /* topleft row,col, and botleft row,col */
        !          63298:           { 28,   74, 3,295, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          63299:             "\xe0\x1d\xae\x04\x7e\x07\x5b\xe0\x2a\xe0\x35\x33\xe0"
        !          63300:             "\x24\x53\xe0\x14\x63\xe0\x13\x73\xe4\x73\xef\x43\x83"
        !          63301:             "\xe4\x73\xe0\x13\x73\xe0\x14\x63\xe0\x24\x53\xe0\x35"
        !          63302:             "\x33\xe0\x46\x13\xe0\x59\xe0\x7e\x70\xf1\x9c\x70\x88"
        !          63303:             "\xe0\x57\xe0\x64\x13\xe0\x54\x23\xe0\x44\x33\xe0\x34"
        !          63304:             "\x43\xe0\x24\x53\xe0\x23\x63\xe0\x14\x63\xe0\xf1\x13"
        !          63305:             "\x73\xe4\x73\xef\x63\x83\xe4\x73\xe0\x13\x73\xe0\x14"
        !          63306:             "\x63\xe0\x23\x63\xe0\x24\x53\xe0\x33\x53\xe0\x34\x43"
        !          63307:             "\xe0\x44\x33\xe0\x54\x23\xe0\x68\xe0\x77\xe0\x88\xe0"
        !          63308:             "\x8a\xe0\x6b\xe0\x6a\xe0\x87\xe0\xa5\xe0\xb3\xe0\xb4"
        !          63309:             "\xf3\xe0\xb3\xe0\xa4\xe0\xa3\xe0\xa4\xe0\x85\xe0\x76"
        !          63310:             "\xe0\x76\xe0\x93\x64" }  },
        !          63311:       /* --- pixel bitmap for bbold600 char#25 \pi --- */
        !          63312:       {  25,12061,                      /* character number, location */
        !          63313:          36, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          63314:           { 38,   36, 3,51, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          63315:             "\x1e\x0e\x0e\x0e\x0e\x05\x1e\x0e\x09\xfe\x73\x83\x73"
        !          63316:             "\x70\xfe\x73\x83\x73\x70\xf1\x7e\x73\x70\x8d\x82\x73" }  },
        !          63317:       /* --- pixel bitmap for bbold600 char#26 \rho --- */
        !          63318:       {  26,12475,                      /* character number, location */
        !          63319:          38, 4,  -16, 4,      /* topleft row,col, and botleft row,col */
        !          63320:           { 35,   54, 3,229, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          63321:             "\xd9\xe0\xad\xe0\x6e\x03\xe0\x36\x76\xe8\x96\xb5\x13"
        !          63322:             "\xb5\xa4\x23\xc4\x94\x33\xd4\x74\x43\xe4\x63\x53\xe0"
        !          63323:             "\x13\x54\x53\xe0\x14\x43\x63\xe0\x23\x34\x63\xe0\x24"
        !          63324:             "\x10\xf1\x13\x73\xe0\x33\x14\x73\xe0\x34\x0f\x73\x83"
        !          63325:             "\xe0\x43\x03\x83\xe0\x34\x0f\x13\x83\xe0\x33\x13\x83"
        !          63326:             "\xe0\x24\x13\x83\xe0\x23\x23\x83\xe0\x14\x23\x83\xe0"
        !          63327:             "\x13\x33\x83\xe4\x33\x83\xd4\x43\x83\xc4\x53\x83\xb5"
        !          63328:             "\x53\x83\x96\x63\x83\x76\x83\x8e\x01\x93\x8d\xb3\x8b"
        !          63329:             "\xdf\xa3\x83\xe0\x7f\x1e\xe0\x70\x1d\xe0\x70" }  },
        !          63330:       /* --- pixel bitmap for bbold600 char#27 \sigma --- */
        !          63331:       {  27,12961,                      /* character number, location */
        !          63332:          36, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
        !          63333:           { 42,   38, 3,221, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          63334:             "\xde\x0e\x01\xae\x0e\x04\x9e\x0e\x05\x77\x77\xe0\x68"
        !          63335:             "\xa5\xe0\x45\x13\xb5\xe0\x24\x33\xd4\xe4\x43\xe4\xd3"
        !          63336:             "\x53\xe0\x13\xc4\x53\xe0\x14\xb3\x63\xe0\x23\xa4\x63"
        !          63337:             "\xe0\x24\x93\x73\xe0\x33\x84\x73\xe0\x34\x7f\x73\x83"
        !          63338:             "\xe0\x43\x74\x73\xe0\x34\x70\xf1\x13\x73\xe0\x33\x80"
        !          63339:             "\x14\x63\xe0\x24\xa3\x63\xe0\x23\xb4\x53\xe0\x14\xc3"
        !          63340:             "\x53\xe0\x13\xd4\x43\xe4\xe4\x33\xd4\xe0\x24\x23\xc4"
        !          63341:             "\xe0\x35\x13\xb5\xe0\x48\x96\xe0\x76\x76\xe0\xae\x03"
        !          63342:             "\xe0\xdd\xe0\xe0\x39\xe0\x60" }  },
        !          63343:       /* --- pixel bitmap for bbold600 char#28 \tau --- */
        !          63344:       {  28,13373,                      /* character number, location */
        !          63345:          36, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          63346:           { 34,   36, 3,95, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          63347:             "\x1e\x0e\x0e\x0e\x0b\x1e\x0e\x05\xfe\xa3\x83\xa0\xf5"
        !          63348:             "\xa3\x83\xa0\xa4\x73\xa0\xf1\xb3\x73\xa0\xb4\x63\xe0"
        !          63349:             "\x83\x63\xe0\x84\x53\xe0\x94\x43\xe0\xa4\x33\xe0\xb5"
        !          63350:             "\x13\xe0\xc8\xe0\xd7\xe0\xe0\x15\xa0" }  },
        !          63351:       /* --- pixel bitmap for bbold600 char#29 \upsilon --- */
        !          63352:       {  29,13725,                      /* character number, location */
        !          63353:          36, 4,   -2, 4,      /* topleft row,col, and botleft row,col */
        !          63354:           { 35,   38, 3,121, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          63355:             "\x1d\xe0\x52\x0f\x1e\xe0\x43\x0f\xe3\x83\xe0\x43\x0f"
        !          63356:             "\x53\x83\xe0\x43\x04\x73\xe0\x34\xf1\x13\x73\xe0\x33"
        !          63357:             "\x10\x14\x63\xe0\x24\x33\x63\xe0\x23\x44\x53\xe0\x14"
        !          63358:             "\x54\x43\xe4\x74\x33\xd4\x94\x23\xc4\xb8\xa5\xd7\x77"
        !          63359:             "\xe0\x1e\x05\xe0\x4e\x01\xe0\x99\xd3" }  },
        !          63360:       /* --- pixel bitmap for bbold600 char#30 \phi --- */
        !          63361:       {  30,14147,                      /* character number, location */
        !          63362:          58, 2,  -16, 2,      /* topleft row,col, and botleft row,col */
        !          63363:           { 34,   74, 3,229, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          63364:             "\xbd\xa0\xf1\xae\xa0\xfe\xa3\x83\xa0\xf5\xa3\x83\xa0"
        !          63365:             "\x85\x85\xe0\x16\x86\xd7\x87\xb4\x13\x83\x14\x94\x23"
        !          63366:             "\x83\x24\x74\x33\x83\x34\x63\x43\x83\x44\x44\x43\x83"
        !          63367:             "\x53\x34\x53\x83\x54\x10\xf1\x13\x63\x83\x63\x14\x63"
        !          63368:             "\x83\x64\x0f\x63\x73\x83\x73\x03\x73\x83\x68\x63\x83"
        !          63369:             "\x63\x23\x63\x83\x63\x23\x63\x83\x54\x24\x53\x83\x53"
        !          63370:             "\x44\x43\x83\x44\x53\x43\x83\x43\x64\x33\x83\x34\x74"
        !          63371:             "\x23\x83\x24\x94\x13\x83\x14\xb7\x87\xd6\x86\xe0\x15"
        !          63372:             "\x85\x80\xfe\xa3\x83\xa0\xf1\xae\xa0\xbd\xa0" }  },
        !          63373:       /* --- pixel bitmap for bbold600 char#31 \chi --- */
        !          63374:       {  31,14751,                      /* character number, location */
        !          63375:          36, 2,  -16, 2,      /* topleft row,col, and botleft row,col */
        !          63376:           { 35,   52, 3,324, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          63377:             "\x12\xe0\x5e\x02\xe0\x4e\x04\xe0\x2e\x01\x14\xe0\x13"
        !          63378:             "\x83\x33\xe4\x74\x34\xd3\x83\x54\xc3\x83\x63\xb4\x74"
        !          63379:             "\x64\xa3\x83\x84\x84\x74\x93\x83\x83\xa4\x64\x74\xb4"
        !          63380:             "\x53\x83\xd3\x53\x83\xd4\x34\x74\xe3\x33\x83\xe0\x14"
        !          63381:             "\x14\x74\xe0\x27\x83\xe0\x46\x74\xe0\x45\x83\xe0\x64"
        !          63382:             "\x83\xe0\x64\x74\xe0\x63\x83\xe0\x64\x74\xe0\x63\x83"
        !          63383:             "\xe0\x64\x74\xa0\xf1\xa3\x83\xb0\x94\x74\xe0\x63\x83"
        !          63384:             "\xe0\x64\x74\xe0\x63\x84\xe0\x54\x76\xe0\x43\x86\xe0"
        !          63385:             "\x43\x87\xe0\x24\x74\x14\xe0\x13\x83\x33\xe4\x74\x34"
        !          63386:             "\xd3\x83\x53\xc4\x74\x54\xb3\x83\x74\xa3\x83\x83\x94"
        !          63387:             "\x74\x84\x83\x83\xa4\x64\x74\xb3\x63\x83\xc4\x44\x74"
        !          63388:             "\xd4\x33\x83\xe0\x13\x33\x83\xe0\x14\x1e\x01\xe0\x2e"
        !          63389:             "\x04\xe0\x43\x1d\xe0\x52" }  },
        !          63390:       /* --- pixel bitmap for bbold600 char#32 \psi --- */
        !          63391:       {  32,15231,                      /* character number, location */
        !          63392:          58, 4,  -16, 4,      /* topleft row,col, and botleft row,col */
        !          63393:           { 34,   74, 3,141, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          63394:             "\xbd\xa0\xf1\xae\xa0\xfe\xa3\x83\xa0\xf3\xa3\x83\xa0"
        !          63395:             "\x12\x73\x83\x82\x0f\xe3\x73\x83\x73\x0f\x73\x73\x83"
        !          63396:             "\x73\x04\x63\x83\x64\x13\x63\x83\x63\x24\x53\x83\x54"
        !          63397:             "\x33\x53\x83\x53\x44\x43\x83\x44\x54\x33\x83\x34\x75"
        !          63398:             "\x13\x83\x15\x98\x88\xb7\x87\xe5\x85\x80\xfe\xa3\x83"
        !          63399:             "\xa0\xf1\xae\xa0\xbd\xa3" }  },
        !          63400:       /* --- pixel bitmap for bbold600 char#33 ! --- */
        !          63401:       {  33,45042,                      /* character number, location */
        !          63402:          57, 4,   -2, 4,      /* topleft row,col, and botleft row,col */
        !          63403:           { 18,   59, 3,99, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          63404:             "\x3d\x20\xf1\x2e\x20\xfe\x23\x83\x20\xfe\x23\x83\x20"
        !          63405:             "\x23\x83\x20\xf1\x2e\x20\x3d\x20\xf3\xe0\x40\x66\xaa"
        !          63406:             "\x7c\x55\x45\x34\x84\x23\xa3\x14\xa4\x0f\x33\xc3\x04"
        !          63407:             "\xa4\x13\xa3\x24\x84\x35\x45\x5c\x7a\xa6\x64" }  },
        !          63408:       /* --- pixel bitmap for bbold600 char#34 (noname) --- */
        !          63409:       {  34,58258,                      /* character number, location */
        !          63410:          60, 2,   28, 2,      /* topleft row,col, and botleft row,col */
        !          63411:           { 41,   32, 3,191, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          63412:             "\x66\xe0\x36\xaa\xda\x7c\xbc\x55\x45\x95\x45\x34\x84"
        !          63413:             "\x74\x84\x23\xa3\x73\xa3\x14\xa4\x54\xa4\x0f\x33\xc3"
        !          63414:             "\x53\xc3\x04\xa4\x54\xa4\x13\xa4\x63\xa4\x14\x85\x64"
        !          63415:             "\x85\x25\x46\x85\x46\x4e\x9e\x5d\xad\x76\x14\xc6\x14"
        !          63416:             "\xe3\xe0\x63\xe4\xe0\x54\xe3\xe0\x63\xe4\xe0\x54\xe3"
        !          63417:             "\xe0\x63\xe4\xe0\x54\xd4\xe0\x54\xd4\xe0\x54\xd4\xe0"
        !          63418:             "\x54\xc5\xe0\x45\xc5\xe0\x45\xc5\xe0\x45\xc4\xe0\x54"
        !          63419:             "\xe0\x12\xe0\x72\xd3" }  },
        !          63420:       /* --- pixel bitmap for bbold600 char#35 # --- */
        !          63421:       {  35,45454,                      /* character number, location */
        !          63422:          57, 4,  -16, 4,      /* topleft row,col, and botleft row,col */
        !          63423:           { 55,   73, 3,143, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          63424:             "\xe0\x4d\xa2\xc0\xf1\xe0\x3e\xa3\xb0\xfe\xe0\x33\x83"
        !          63425:             "\xa3\xb0\xf7\xe0\x33\x83\xa3\xb0\x1e\x05\x8e\x0e\x0e"
        !          63426:             "\x05\x8e\x0d\x1e\x05\x8e\x0d\xfe\xe0\x33\x83\xa3\xb0"
        !          63427:             "\x1e\x05\x8e\x0e\x0e\x05\x8e\x0d\x1e\x05\x8e\x0d\xfe"
        !          63428:             "\xe0\x33\x83\xa3\xb0\xf7\xe0\x33\x83\xa3\xb0\xf1\xe0"
        !          63429:             "\x3e\xa3\xb0\xe0\x4d\xa2\xc0" }  },
        !          63430:       /* --- pixel bitmap for bbold600 char#36 $ --- */
        !          63431:       {  36,46080,                      /* character number, location */
        !          63432:          64, 4,   -7, 4,      /* topleft row,col, and botleft row,col */
        !          63433:           { 42,   71, 3,387, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          63434:             "\xe0\x1d\xe0\xf1\xee\xe0\xf3\xe3\x83\xe0\xe3\x84\xe0"
        !          63435:             "\xa6\x89\xe0\x29\x8c\xca\x8e\x01\x77\x23\x83\x59\x45"
        !          63436:             "\x53\x83\x86\x35\x63\x83\xb3\x24\x83\x83\xe0\x23\x93"
        !          63437:             "\x83\xe0\x14\x93\x83\xe0\x13\xa3\x83\xe4\xa3\x83\xef"
        !          63438:             "\x43\xb3\x83\xe4\xa3\x83\xe0\x13\xa3\x83\xe0\x14\x93"
        !          63439:             "\x83\xe0\x23\x93\x83\xe0\x24\x83\x83\xe0\x35\x63\x83"
        !          63440:             "\xe0\x45\x53\x83\xe0\x57\x23\x83\xe0\x7a\x83\xe0\x89"
        !          63441:             "\x83\xe0\xb6\x86\xe0\xb3\x88\xe0\x93\x8a\xe0\x73\x83"
        !          63442:             "\x26\xe0\x63\x83\x45\xe0\x53\x83\x64\xe0\x43\x83\x74"
        !          63443:             "\xe0\x33\x83\x84\xe0\x23\x83\x93\xe0\x23\x83\x94\xe0"
        !          63444:             "\x13\x83\xa3\xe0\x13\x83\xa4\xf4\xe3\x83\xb3\xe3\x83"
        !          63445:             "\xa4\xe3\x83\xa3\x10\xf1\xe3\x83\x94\x10\xe3\x83\x84"
        !          63446:             "\xe0\x23\x83\x74\x42\xb3\x83\x64\x46\x83\x83\x45\x68"
        !          63447:             "\x53\x83\x26\x8e\x01\x8a\xcc\x88\xe0\x39\x86\xe0\xa4"
        !          63448:             "\x83\xe0\xf3\xe3\x83\xe0\xf1\xee\xe0\xe0\x1d\xe3" }  },
        !          63449:       /* --- pixel bitmap for bbold600 char#37 % --- */
        !          63450:       {  37,46666,                      /* character number, location */
        !          63451:          64, 2,  -29, 2,      /* topleft row,col, and botleft row,col */
        !          63452:           { 46,   93, 3,591, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          63453:             "\x66\xe0\xe0\xaa\xe0\xe0\x7c\xe0\x2d\x45\x45\xee\x34"
        !          63454:             "\x84\xde\x33\xa3\xc4\x74\x24\xa4\xb3\x83\x33\xc3\xb3"
        !          63455:             "\x83\x33\xc3\xa4\x74\x3f\x13\xc3\xa3\x83\x44\xa4\x94"
        !          63456:             "\x74\x53\xa3\xa3\x83\x64\x84\xa3\x83\x75\x45\xa4\x74"
        !          63457:             "\x8c\xb3\x83\xaa\xc3\x83\xc6\xd4\x74\x60\xf1\xe0\xb3"
        !          63458:             "\x83\x70\xe0\xa4\x74\x70\xf1\xe0\xa3\x83\x80\xe0\x94"
        !          63459:             "\x74\x80\xf1\xe0\x93\x83\x90\xe0\x84\x74\x90\xf1\xe0"
        !          63460:             "\x83\x83\xa0\xe0\x74\x74\xa0\xf1\xe0\x73\x83\xb0\xe0"
        !          63461:             "\x64\x74\xb0\xf1\xe0\x63\x83\xc0\xe0\x54\x74\xc0\xf1"
        !          63462:             "\xe0\x53\x83\xd0\xe0\x44\x74\xd0\xf1\xe0\x43\x83\xe0"
        !          63463:             "\xe0\x34\x74\xe0\xf1\xe0\x33\x83\xe0\x10\xe0\x24\x74"
        !          63464:             "\xe0\x10\xf2\xe0\x23\x83\xe0\x20\xe0\x14\x74\xe0\x20"
        !          63465:             "\xf1\xe0\x13\x83\xe0\x30\xe4\x74\xe0\x30\xf1\xe3\x83"
        !          63466:             "\xe0\x40\xd4\x74\xe0\x40\xf1\xd3\x83\xe0\x50\xc4\x74"
        !          63467:             "\xe0\x50\xf1\xc3\x83\xe0\x60\xb4\x74\xe0\x60\xf1\xb3"
        !          63468:             "\x83\xe0\x70\xa4\x74\xe0\x70\xf1\xa3\x83\xe0\x80\x94"
        !          63469:             "\x74\xe0\x80\xf1\x93\x83\xe0\x90\x84\x74\xe0\x90\xf1"
        !          63470:             "\x83\x83\xe0\xa0\x74\x74\xe0\xa0\xf1\x73\x83\xe0\xb0"
        !          63471:             "\x64\x74\xd6\xc3\x83\xca\xa3\x83\xbc\x84\x74\xa5\x45"
        !          63472:             "\x73\x83\xa4\x84\x63\x83\xa3\xa3\x54\x74\x94\xa4\xf1"
        !          63473:             "\x43\x83\xa3\xc3\x34\x74\xa3\xc3\x33\x83\xb3\xc3\x33"
        !          63474:             "\x83\xb4\xa4\x24\x74\xc3\xa3\x3e\xd4\x84\x3e\xe5\x45"
        !          63475:             "\x5d\xe0\x1c\xe0\xe0\x7a\xe0\xe0\xa6\x60" }  },
        !          63476:       /* --- pixel bitmap for bbold600 char#38 & --- */
        !          63477:       {  38,47340,                      /* character number, location */
        !          63478:          59, 4,   -2, 4,      /* topleft row,col, and botleft row,col */
        !          63479:           { 55,   61, 3,505, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          63480:             "\xe0\x56\xe0\xe0\xe0\x5a\xe0\xe0\xe0\x2c\xe0\xe0\xe5"
        !          63481:             "\x45\xe0\xe0\xd3\x83\xe0\xe0\xc4\x84\xe0\xe0\xb3\xa3"
        !          63482:             "\xe0\xe0\xb3\xa4\xe0\xa0\xf3\xe3\xb3\xe0\xa0\xe3\xa4"
        !          63483:             "\xe0\xa0\xf1\xe3\xa3\xe0\xb0\xe3\x94\xe0\xe0\xb4\x83"
        !          63484:             "\xe0\xe0\xd3\x74\xe0\xe0\xd3\x64\xe0\xe0\xe4\x53\xe0"
        !          63485:             "\xe0\xe0\x23\x35\xe0\xe0\xe0\x23\x25\xe0\xe0\xe0\x39"
        !          63486:             "\xe0\xe0\xe0\x56\xe0\xe0\xe0\x66\xe0\xe0\xe0\x57\xe0"
        !          63487:             "\xe0\xe0\x4a\xe0\xe0\xe0\x17\x23\xe0\xe0\xd7\x44\xe0"
        !          63488:             "\xe0\xb7\x63\xe0\xe0\xa8\x64\xe0\xe0\x75\x23\x73\xe0"
        !          63489:             "\xe0\x65\x33\x74\xe0\xe0\x54\x43\x83\xe0\xe0\x44\x53"
        !          63490:             "\x84\xe0\xe0\x24\x63\x93\xe0\xe0\x23\x73\x94\xe0\xe4"
        !          63491:             "\x73\xa4\xe0\xd3\x83\xb3\xe0\xd3\x83\xb4\xe0\x11\xa3"
        !          63492:             "\x83\xc3\xe3\x93\x83\xc4\xc4\x93\x83\xd3\xc3\xa3\x83"
        !          63493:             "\xd4\xa4\xa3\x83\xe4\x93\xb3\x83\xe0\x13\x84\xb4\x73"
        !          63494:             "\xe0\x14\x64\xd3\x73\xe0\x24\x44\xe3\x73\xe0\x33\x34"
        !          63495:             "\xe0\x14\x63\xe0\x34\x14\xd2\x23\x63\xe0\x47\xd3\x24"
        !          63496:             "\x53\xe0\x55\xe3\x33\x53\xe0\x46\xe3\x34\x43\xe0\x37"
        !          63497:             "\xe3\x43\x43\xe0\x1a\xd3\x44\x33\xd6\x35\xa4\x55\x13"
        !          63498:             "\xa8\x55\x84\x78\x6a\x86\x54\x9e\x07\xcc\xce\x02\xe0"
        !          63499:             "\x2a\xe0\x1a\xe0\x87\x53" }  },
        !          63500:       /* --- pixel bitmap for bbold600 char#39 ' --- */
        !          63501:       {  39,47877,                      /* character number, location */
        !          63502:          60, 2,   28, 2,      /* topleft row,col, and botleft row,col */
        !          63503:           { 18,   32, 3,83, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          63504:             "\x66\xaa\x7c\x55\x45\x34\x84\x23\xa3\x14\xa4\x0f\x33"
        !          63505:             "\xc3\x04\xa4\x13\xa4\x14\x85\x25\x46\x4e\x5d\x76\x14"
        !          63506:             "\xe3\xe4\xe3\xe4\xe3\xe4\xd4\xd4\xd4\xc5\xc5\xc5\xc4"
        !          63507:             "\xe0\x12\xd1" }  },
        !          63508:       /* --- pixel bitmap for bbold600 char#40 ( --- */
        !          63509:       {  40,48180,                      /* character number, location */
        !          63510:          62, 6,  -21, 6,      /* topleft row,col, and botleft row,col */
        !          63511:           { 21,   83, 3,184, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          63512:             "\xe0\x16\xc9\xba\x97\xd6\xe7\xe3\x13\xd4\x13\xc4\x23"
        !          63513:             "\xc3\x33\xb4\x33\xb3\x43\xa4\x43\x70\xf1\x33\x53\x70"
        !          63514:             "\x24\x53\x70\xf3\x23\x63\x70\x14\x63\x70\xf5\x13\x73"
        !          63515:             "\x74\x73\x7f\xe3\x83\x7f\xb3\x83\x74\x73\x70\xf5\x13"
        !          63516:             "\x73\x70\x14\x63\x70\xf3\x23\x63\x70\x24\x53\x70\xf1"
        !          63517:             "\x33\x53\x70\x34\x43\xb3\x43\xb4\x33\xc3\x33\xc4\x23"
        !          63518:             "\xd4\x13\xe3\x13\xe7\xe0\x16\xe0\x27\xe0\x2a\xc9\xe0"
        !          63519:             "\x16" }  },
        !          63520:       /* --- pixel bitmap for bbold600 char#41 ) --- */
        !          63521:       {  41,48702,                      /* character number, location */
        !          63522:          62, 2,  -21, 2,      /* topleft row,col, and botleft row,col */
        !          63523:           { 21,   83, 3,185, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          63524:             "\x15\xe0\x19\xd9\xe0\x27\xe0\x26\xe0\x17\xe3\x13\xe3"
        !          63525:             "\x14\xd3\x24\xc3\x33\xc3\x34\xb3\x43\xb3\x44\x30\xf1"
        !          63526:             "\x73\x53\x30\x73\x54\x20\xf3\x73\x63\x20\x73\x64\x10"
        !          63527:             "\xf5\x73\x73\x10\x73\x74\xfe\x73\x83\xfb\x73\x83\x73"
        !          63528:             "\x74\xf5\x73\x73\x10\x73\x64\x10\xf3\x73\x63\x20\x73"
        !          63529:             "\x54\x20\xf1\x73\x53\x30\x73\x44\xa3\x43\xb3\x34\xb3"
        !          63530:             "\x33\xc3\x24\xc3\x14\xd3\x13\xe7\xe6\xd7\xa9\xb9\xd5"
        !          63531:             "\xe0\x10" }  },
        !          63532:       /* --- pixel bitmap for bbold600 char#42 * --- */
        !          63533:       {  42,49215,                      /* character number, location */
        !          63534:          48, 4,   -7, 4,      /* topleft row,col, and botleft row,col */
        !          63535:           { 48,   55, 3,257, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          63536:             "\xe0\x4d\xe0\x30\xf1\xe0\x3e\xe0\x30\xf9\xe0\x33\x83"
        !          63537:             "\xe0\x30\x12\xe3\x83\xe8\xc3\x83\xc5\x15\xb3\x83\xb6"
        !          63538:             "\x26\x93\x83\x96\x66\x73\x83\x76\x97\x53\x83\x57\xc6"
        !          63539:             "\x43\x83\x46\xe0\x26\x23\x83\x26\xe0\x69\x89\xe0\x98"
        !          63540:             "\x88\xe0\xc6\x86\xe0\xe0\x24\x84\xe0\x20\xf4\xe0\x33"
        !          63541:             "\x83\xe0\x30\xe0\x24\x84\xe0\xe0\x26\x86\xe0\xc8\x88"
        !          63542:             "\xe0\x99\x89\xe0\x66\x23\x83\x26\xe0\x26\x43\x83\x46"
        !          63543:             "\xc7\x53\x83\x57\x96\x73\x83\x76\x66\x93\x83\x96\x35"
        !          63544:             "\xb3\x83\xbb\xc3\x83\xc5\x12\xe3\x83\xe3\xf9\xe0\x33"
        !          63545:             "\x83\xe0\x30\xf1\xe0\x3e\xe0\x30\xe0\x4d\xe0\x34" }  },
        !          63546:       /* --- pixel bitmap for bbold600 char#43 + --- */
        !          63547:       {  43,49697,                      /* character number, location */
        !          63548:          48, 4,   -7, 4,      /* topleft row,col, and botleft row,col */
        !          63549:           { 55,   55, 2,45, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          63550:             "\x15\x0d\x15\x00\xff\x01\x15\x0e\x14\x00\xff\x16\x15"
        !          63551:             "\x03\x08\x03\x14\x00\x01\x17\x08\x2f\x08\x17\x01\x17"
        !          63552:             "\x08\x17\xff\x16\x15\x03\x08\x03\x14\x00\xff\x01\x15"
        !          63553:             "\x0e\x14\x00\x15\x0d\x15" }  },
        !          63554:       /* --- pixel bitmap for bbold600 char#44 , --- */
        !          63555:       {  44,50111,                      /* character number, location */
        !          63556:          16, 2,  -16, 2,      /* topleft row,col, and botleft row,col */
        !          63557:           { 18,   32, 3,83, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          63558:             "\x66\xaa\x7c\x55\x45\x34\x84\x23\xa3\x14\xa4\x0f\x33"
        !          63559:             "\xc3\x04\xa4\x13\xa4\x14\x85\x25\x46\x4e\x5d\x76\x14"
        !          63560:             "\xe3\xe4\xe3\xe4\xe3\xe4\xd4\xd4\xd4\xc5\xc5\xc5\xc4"
        !          63561:             "\xe0\x12\xd3" }  },
        !          63562:       /* --- pixel bitmap for bbold600 char#45 - --- */
        !          63563:       {  45,50408,                      /* character number, location */
        !          63564:          20, 2,   17, 2,      /* topleft row,col, and botleft row,col */
        !          63565:           { 28,    3, 3,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          63566:             "\x1e\x0c\x1f\x1e\x0e" }  },
        !          63567:       /* --- pixel bitmap for bbold600 char#46 . --- */
        !          63568:       {  46,50624,                      /* character number, location */
        !          63569:          16, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
        !          63570:           { 18,   18, 3,51, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          63571:             "\x66\xaa\x7c\x55\x45\x34\x84\x23\xa3\x14\xa4\x0f\x33"
        !          63572:             "\xc3\x04\xa4\x13\xa3\x24\x84\x35\x45\x5c\x7a\xa6\x64" }  },
        !          63573:       /* --- pixel bitmap for bbold600 char#47 / --- */
        !          63574:       {  47,50900,                      /* character number, location */
        !          63575:          62, 2,  -21, 2,      /* topleft row,col, and botleft row,col */
        !          63576:           { 42,   83, 3,489, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          63577:             "\xe0\xe0\x1d\xe0\xee\xe0\xde\x01\xf1\xe0\xd3\x83\x10"
        !          63578:             "\xe0\xc4\x74\x10\xf1\xe0\xc3\x83\x20\xe0\xb4\x74\x20"
        !          63579:             "\xf1\xe0\xb3\x83\x30\xe0\xa4\x74\x30\xf1\xe0\xa3\x83"
        !          63580:             "\x40\xe0\x94\x74\x40\xf1\xe0\x93\x83\x50\xe0\x84\x74"
        !          63581:             "\x50\xf1\xe0\x83\x83\x60\xe0\x74\x74\xe0\xd3\x83\xe0"
        !          63582:             "\xd4\x74\x70\xf1\xe0\x63\x83\x80\xe0\x54\x74\x80\xf1"
        !          63583:             "\xe0\x53\x83\x90\xe0\x44\x74\x90\xf1\xe0\x43\x83\xa0"
        !          63584:             "\xe0\x34\x74\xa0\xf1\xe0\x33\x83\xb0\xe0\x24\x74\xb0"
        !          63585:             "\xf1\xe0\x23\x83\xc0\xe0\x14\x74\xc0\xf1\xe0\x13\x83"
        !          63586:             "\xd0\xe4\x74\xe0\xd3\x83\xe0\xd4\x74\xe0\xf1\xd3\x83"
        !          63587:             "\xe0\x10\xc4\x74\xe0\x10\xf1\xc3\x83\xe0\x20\xb4\x74"
        !          63588:             "\xe0\x20\xf1\xb3\x83\xe0\x30\xa4\x74\xe0\x30\xf1\xa3"
        !          63589:             "\x83\xe0\x40\x94\x74\xe0\x40\xf1\x93\x83\xe0\x50\x84"
        !          63590:             "\x74\xe0\x50\xf1\x83\x83\xe0\x60\x74\x74\xe0\xd3\x83"
        !          63591:             "\xe0\xd4\x74\xe0\x70\xf1\x63\x83\xe0\x80\x54\x74\xe0"
        !          63592:             "\x80\xf1\x53\x83\xe0\x90\x44\x74\xe0\x90\xf1\x43\x83"
        !          63593:             "\xe0\xa0\x34\x74\xe0\xa0\xf1\x33\x83\xe0\xb0\x24\x74"
        !          63594:             "\xe0\xb0\xf1\x23\x83\xe0\xc0\x14\x74\xe0\xc0\xf1\x13"
        !          63595:             "\x83\xe0\xde\x01\xe0\xde\xe0\xe0\x1d\xe0\xee" }  },
        !          63596:       /* --- pixel bitmap for bbold600 char#48 0 --- */
        !          63597:       {  48,16336,                      /* character number, location */
        !          63598:          55, 4,   -2, 4,      /* topleft row,col, and botleft row,col */
        !          63599:           { 37,   57, 3,275, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          63600:             "\xe9\xe0\xcd\xe0\x8e\x03\xe0\x56\x76\xe0\x36\xa5\xe0"
        !          63601:             "\x17\xc4\xd4\x13\xd4\xb4\x23\xe4\xa3\x33\xe0\x13\x94"
        !          63602:             "\x33\xe0\x14\x83\x43\xe0\x23\x74\x43\xe0\x24\x63\x53"
        !          63603:             "\xe0\x33\x54\x53\xe0\x34\x20\xf1\x23\x63\xe0\x43\x20"
        !          63604:             "\x14\x63\xe0\x44\x10\xf3\x13\x73\xe0\x53\x14\x73\xe0"
        !          63605:             "\x54\x0f\xc3\x83\xe0\x63\x04\x73\xe0\x54\xf3\x13\x73"
        !          63606:             "\xe0\x53\x10\x14\x63\xe0\x44\x10\xf1\x23\x63\xe0\x43"
        !          63607:             "\x20\x24\x53\xe0\x34\x53\x53\xe0\x33\x64\x43\xe0\x24"
        !          63608:             "\x73\x43\xe0\x23\x84\x33\xe0\x14\x93\x33\xe0\x13\xa4"
        !          63609:             "\x23\xe4\xb4\x13\xd4\xd7\xc4\xe0\x16\xa5\xe0\x36\x76"
        !          63610:             "\xe0\x5e\x03\xe0\x8d\xe0\xc9\xeb" }  },
        !          63611:       /* --- pixel bitmap for bbold600 char#49 1 --- */
        !          63612:       {  49,16851,                      /* character number, location */
        !          63613:          53, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          63614:           { 36,   53, 3,124, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          63615:             "\xe0\x83\xe0\xe0\x35\xe0\xe0\x17\xe0\xd9\xe0\xb7\x13"
        !          63616:             "\xe0\x97\x33\xe0\x77\x53\xe0\x57\x73\xe0\x38\x83\xe0"
        !          63617:             "\x1a\x83\xd7\x23\x83\xc6\x43\x83\xb5\x63\x83\xc2\x83"
        !          63618:             "\x83\xb0\xfe\xb3\x83\xb0\xfe\xb3\x83\xb0\xf5\xb3\x83"
        !          63619:             "\xb0\x1e\x0e\x0e\x0e\x0e\x01\x1e\x0e\x07" }  },
        !          63620:       /* --- pixel bitmap for bbold600 char#50 2 --- */
        !          63621:       {  50,17266,                      /* character number, location */
        !          63622:          55, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          63623:           { 37,   55, 3,324, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          63624:             "\xea\xe0\xae\x02\xe0\x5e\x06\xe0\x18\x88\xc6\xb9\xa5"
        !          63625:             "\xd3\x25\x84\xe0\x13\x44\x64\xe0\x23\x54\x53\xe0\x33"
        !          63626:             "\x63\x44\xe0\x33\x64\x24\xe0\x43\x73\x23\xe0\x53\x78"
        !          63627:             "\xe0\x53\x83\x0f\x13\xe0\x63\x83\x12\xe0\x63\x83\xf1"
        !          63628:             "\xe0\x93\x83\xe0\x93\x74\xf1\xe0\x93\x73\x10\xe0\x93"
        !          63629:             "\x64\xe0\xa3\x63\xe0\xb3\x54\xe0\xb3\x44\xe0\xc3\x34"
        !          63630:             "\xe0\xd3\x24\xe0\xe3\x14\xe0\xe0\x17\xe0\xe0\x26\xe0"
        !          63631:             "\xe0\x26\xe0\xe0\x16\xe0\xe0\x17\xe0\xe0\x16\xe0\xe0"
        !          63632:             "\x16\xe0\xe0\x16\xe0\xe0\x26\xe0\xe0\x16\xe0\xe0\x25"
        !          63633:             "\xe0\xe0\x26\xe0\xe0\x25\xe0\xe0\x35\xe0\xe0\x34\xe0"
        !          63634:             "\xe0\x44\xe0\xe0\x53\xe0\xe0\x54\xe0\xe0\x44\xe0\xe0"
        !          63635:             "\x40\xf1\x13\xe0\xe0\x54\xe0\xe0\x5f\x13\xe0\xe0\x6f"
        !          63636:             "\x1e\x0e\x09\x1e\x0e\x08" }  },
        !          63637:       /* --- pixel bitmap for bbold600 char#51 3 --- */
        !          63638:       {  51,17657,                      /* character number, location */
        !          63639:          55, 4,   -2, 4,      /* topleft row,col, and botleft row,col */
        !          63640:           { 37,   57, 3,329, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          63641:             "\xea\xe0\xae\x02\xe0\x5e\x06\xe0\x18\x88\xc6\xb9\xa5"
        !          63642:             "\xd3\x25\x84\xe0\x13\x44\x64\xe0\x23\x54\x53\xe0\x33"
        !          63643:             "\x63\x44\xe0\x33\x64\x24\xe0\x43\x73\x23\xe0\x53\x78"
        !          63644:             "\xe0\x53\x83\x0f\x13\xe0\x63\x83\x12\xe0\x63\x83\xf1"
        !          63645:             "\xe0\x93\x83\xe0\x93\x74\xe0\x93\x73\xe0\xa3\x64\xe0"
        !          63646:             "\xa3\x54\xe0\xb3\x35\xe0\xc3\x16\xe0\xd9\xe0\x9c\xe0"
        !          63647:             "\xab\xe0\xdb\xe0\xe0\x38\xe0\xe0\x19\xe0\xe3\x25\xe0"
        !          63648:             "\xd3\x44\xe0\xc3\x54\xe0\xb3\x63\xe0\xb3\x64\xe0\xa3"
        !          63649:             "\x73\xe0\xa3\x74\xf3\xe0\x93\x83\x12\xe0\x63\x86\xe0"
        !          63650:             "\x63\x86\xe0\x63\x78\xe0\x53\x73\x23\xe0\x53\x73\x24"
        !          63651:             "\xe0\x43\x64\x34\xe0\x33\x63\x53\xe0\x33\x54\x54\xe0"
        !          63652:             "\x23\x44\x74\xe0\x13\x34\x95\xd3\x15\xb6\xb8\xd8\x78"
        !          63653:             "\xe0\x2e\x05\xe0\x6e\x01\xe0\xb9\xe2" }  },
        !          63654:       /* --- pixel bitmap for bbold600 char#52 4 --- */
        !          63655:       {  52,18114,                      /* character number, location */
        !          63656:          53, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          63657:           { 37,   53, 3,265, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          63658:             "\xe0\xe2\xe0\xe0\x63\xe0\xe0\x54\xe0\xe0\x45\x70\xf1"
        !          63659:             "\xe0\xa6\x70\xe0\x97\xe0\xe0\x14\x13\xe0\xe0\x13\x23"
        !          63660:             "\xe0\xe4\x23\xe0\xd4\x33\xe0\xc4\x43\xe0\xc3\x53\xe0"
        !          63661:             "\xb4\x53\xe0\xa4\x63\xe0\x94\x73\xe0\x93\x83\xe0\x84"
        !          63662:             "\x83\xe0\x75\x83\x70\xf1\xd6\x83\x70\xc7\x83\xe0\x44"
        !          63663:             "\x13\x83\xe0\x43\x23\x83\xe0\x34\x23\x83\xe0\x24\x33"
        !          63664:             "\x83\xe0\x14\x43\x83\xe0\x13\x53\x83\xe4\x53\x83\xd4"
        !          63665:             "\x63\x83\xc4\x73\x83\xc3\x83\x83\xb4\x83\x83\xa4\x93"
        !          63666:             "\x83\xa3\xa3\x83\x94\xa3\x83\x84\xb3\x83\x7f\x1e\x05"
        !          63667:             "\x8a\x1e\x04\x8a\xf9\xe0\x23\x83\x70\xf1\xe0\x2e\x70"
        !          63668:             "\xe0\x3d\x74" }  },
        !          63669:       /* --- pixel bitmap for bbold600 char#53 5 --- */
        !          63670:       {  53,18545,                      /* character number, location */
        !          63671:          53, 4,   -2, 4,      /* topleft row,col, and botleft row,col */
        !          63672:           { 37,   55, 3,223, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          63673:             "\x1e\x0e\x08\x0f\x1e\x0e\x09\x0f\xa3\x83\xe0\x9e\x09"
        !          63674:             "\xee\x0c\xce\x0d\xe0\xe0\x37\xe0\xe0\x55\xe0\xe0\x64"
        !          63675:             "\xe0\xe0\x64\xe0\xe0\x64\xe0\xe0\x64\xe0\xe0\x63\xe0"
        !          63676:             "\xe0\x64\xe0\xe0\x63\xe0\xe0\x64\x10\xf1\xe0\xe0\x53"
        !          63677:             "\x10\xe0\xe0\x54\xf7\xe0\xe0\x63\xe0\xe0\x54\x12\xe0"
        !          63678:             "\xe0\x23\x13\xe0\xe0\x23\x13\xe0\xe0\x14\x14\xe0\xe3"
        !          63679:             "\x33\xe0\xd4\x34\xe0\xc3\x54\xe0\xa4\x63\xe0\xa3\x74"
        !          63680:             "\xe0\x84\x84\xe0\x64\xa5\xe0\x25\xc6\xd5\xe8\x77\xe0"
        !          63681:             "\x3e\x04\xe0\x7e\x01\xe0\xb9\xe4" }  },
        !          63682:       /* --- pixel bitmap for bbold600 char#54 6 --- */
        !          63683:       {  54,18912,                      /* character number, location */
        !          63684:          55, 4,   -2, 4,      /* topleft row,col, and botleft row,col */
        !          63685:           { 37,   57, 3,327, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          63686:             "\xe9\xe0\xbe\x01\xe0\x6e\x05\xe0\x28\x78\xd6\xd6\xb5"
        !          63687:             "\xe0\x35\x94\xe0\x74\x74\xe0\x94\x63\xe0\xb3\x54\xe0"
        !          63688:             "\xb4\x34\xe0\xd4\x23\xe0\xe0\x13\x23\xe0\xe0\x18\xe0"
        !          63689:             "\xe0\x26\xe0\xe0\x36\xe0\xe0\x45\xb9\xe3\x8e\x01\xb3"
        !          63690:             "\x6e\x05\x93\x57\x77\x83\x47\xb5\x73\x34\x13\xd4\x63"
        !          63691:             "\x24\x23\xe4\x53\x14\x33\xe0\x14\x47\x43\xe0\x24\x36"
        !          63692:             "\x53\xe0\x33\x36\x53\xe0\x34\x25\x63\xe0\x43\x25\x63"
        !          63693:             "\xe0\x44\x1f\x14\x73\xe0\x53\x14\x73\xe0\x54\x0f\x73"
        !          63694:             "\x83\xe0\x63\x04\x73\xe0\x54\xf1\x13\x73\xe0\x53\x10"
        !          63695:             "\x14\x63\xe0\x44\x33\x63\xe0\x43\x44\x53\xe0\x34\x53"
        !          63696:             "\x53\xe0\x33\x64\x43\xe0\x24\x73\x43\xe0\x23\x84\x33"
        !          63697:             "\xe0\x14\x94\x23\xe4\xb8\xc5\xd7\xb5\xe0\x17\x77\xe0"
        !          63698:             "\x4e\x03\xe0\x7e\x01\xe0\xb9\xe9" }  },
        !          63699:       /* --- pixel bitmap for bbold600 char#55 7 --- */
        !          63700:       {  55,19407,                      /* character number, location */
        !          63701:          53, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          63702:           { 37,   53, 3,309, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          63703:             "\x1e\x0e\x0e\x0e\x0e\x03\x1e\x0e\x08\xe0\x83\x83\xe0"
        !          63704:             "\x84\x74\xe0\x83\x83\xe0\x84\x74\x20\xf1\xe0\x63\x83"
        !          63705:             "\x30\xe0\x54\x74\xe0\x83\x83\xe0\x84\x74\xe0\x83\x83"
        !          63706:             "\xe0\x84\x74\xe0\x83\x83\xe0\x84\x74\xe0\x83\x83\xe0"
        !          63707:             "\x84\x74\xe0\x83\x83\xe0\x84\x74\x80\xf1\xe3\x83\x90"
        !          63708:             "\xd4\x74\xe0\x83\x83\xe0\x84\x74\xe0\x83\x83\xe0\x84"
        !          63709:             "\x74\xe0\x83\x83\xe0\x84\x74\xe0\x83\x83\xe0\x84\x74"
        !          63710:             "\xd0\xf1\x93\x83\xe0\x84\x74\xe0\x83\x83\xe0\x84\x74"
        !          63711:             "\xe0\x83\x83\xe0\x84\x74\xe0\x83\x83\xe0\x84\x74\xe0"
        !          63712:             "\x83\x83\xe0\x84\x74\xe0\x83\x83\xe0\x84\x74\xe0\x50"
        !          63713:             "\xf1\x33\x83\xe0\x60\x24\x74\xe0\x83\x83\xe0\x84\x74"
        !          63714:             "\xe0\x83\x83\xe0\x8e\x01\xe0\x8e\xe0\xad\xe0\x97" }  },
        !          63715:       /* --- pixel bitmap for bbold600 char#56 8 --- */
        !          63716:       {  56,19816,                      /* character number, location */
        !          63717:          55, 4,   -2, 4,      /* topleft row,col, and botleft row,col */
        !          63718:           { 37,   57, 3,315, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          63719:             "\xdb\xe0\x9e\x03\xe0\x4e\x07\xe8\x98\xb9\xc6\x95\x23"
        !          63720:             "\xe5\x74\x43\xe0\x24\x54\x53\xe0\x34\x43\x63\xe0\x43"
        !          63721:             "\x34\x63\xe0\x44\x23\x73\xe0\x53\x14\x73\xe0\x54\x0f"
        !          63722:             "\x53\x83\xe0\x63\x04\x73\xe0\x54\x13\x73\xe0\x53\x24"
        !          63723:             "\x63\xe0\x44\x34\x53\xe0\x34\x55\x33\xe0\x15\x76\x13"
        !          63724:             "\xd6\x99\x99\xce\x09\xe0\x2e\x05\xe0\x3e\x07\xe8\x98"
        !          63725:             "\xb9\xc6\x95\x23\xe5\x74\x43\xe0\x24\x54\x53\xe0\x34"
        !          63726:             "\x43\x63\xe0\x43\x34\x63\xe0\x44\x23\x73\xe0\x53\x14"
        !          63727:             "\x73\xe0\x54\x0f\x53\x83\xe0\x63\x04\x73\xe0\x54\xf1"
        !          63728:             "\x13\x73\xe0\x53\x10\x14\x63\xe0\x44\x33\x63\xe0\x43"
        !          63729:             "\x44\x53\xe0\x34\x54\x43\xe0\x24\x74\x33\xe0\x14\x95"
        !          63730:             "\x13\xd5\xb8\xb6\xd8\x78\xe0\x2e\x05\xe0\x6e\x01\xe0"
        !          63731:             "\xb9\xe3" }  },
        !          63732:       /* --- pixel bitmap for bbold600 char#57 9 --- */
        !          63733:       {  57,20317,                      /* character number, location */
        !          63734:          55, 4,   -2, 4,      /* topleft row,col, and botleft row,col */
        !          63735:           { 37,   57, 3,329, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          63736:             "\xe9\xe0\xbe\x01\xe0\x7e\x03\xe0\x47\x77\xe0\x17\xb5"
        !          63737:             "\xd8\xc5\xb4\x23\xe4\x94\x33\xe0\x14\x83\x43\xe0\x23"
        !          63738:             "\x74\x43\xe0\x24\x63\x53\xe0\x33\x54\x53\xe0\x34\x43"
        !          63739:             "\x63\xe0\x43\x34\x63\xe0\x44\x10\xf1\x13\x73\xe0\x53"
        !          63740:             "\x14\x73\xe0\x54\x0f\x73\x83\xe0\x63\x04\x73\xe0\x54"
        !          63741:             "\xf1\x13\x73\xe0\x54\x14\x63\xe0\x45\x23\x63\xe0\x45"
        !          63742:             "\x24\x53\xe0\x36\x33\x53\xe0\x36\x34\x43\xe0\x27\x44"
        !          63743:             "\x33\xe0\x14\x13\x54\x23\xe4\x23\x64\x13\xd4\x33\x77"
        !          63744:             "\xb5\x43\x87\x77\x53\x9e\x05\x63\xbe\x01\x83\xe9\xb3"
        !          63745:             "\x12\xe0\xe0\x36\xe0\xe0\x36\xe0\xe0\x28\xe0\xe0\x13"
        !          63746:             "\x23\xe0\xe0\x13\x24\xe0\xd4\x34\xe0\xb4\x53\xe0\xb3"
        !          63747:             "\x64\xe0\x94\x74\xe0\x74\x95\xe0\x35\xb6\xd6\xd8\x78"
        !          63748:             "\xe0\x2e\x05\xe0\x6e\x01\xe0\xb9\xe2" }  },
        !          63749:       /* --- pixel bitmap for bbold600 char#58 : --- */
        !          63750:       {  58,51426,                      /* character number, location */
        !          63751:          38, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
        !          63752:           { 18,   40, 3,109, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          63753:             "\x66\xaa\x7c\x55\x45\x34\x84\x23\xa3\x14\xa4\x0f\x33"
        !          63754:             "\xc3\x04\xa4\x13\xa3\x24\x84\x35\x45\x5c\x7a\xa6\x60"
        !          63755:             "\xf3\xe0\x40\x66\xaa\x7c\x55\x45\x34\x84\x23\xa3\x14"
        !          63756:             "\xa4\x0f\x33\xc3\x04\xa4\x13\xa3\x24\x84\x35\x45\x5c"
        !          63757:             "\x7a\xa6\x60" }  },
        !          63758:       /* --- pixel bitmap for bbold600 char#59 ; --- */
        !          63759:       {  59,51758,                      /* character number, location */
        !          63760:          38, 2,  -16, 2,      /* topleft row,col, and botleft row,col */
        !          63761:           { 18,   54, 3,141, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          63762:             "\x66\xaa\x7c\x55\x45\x34\x84\x23\xa3\x14\xa4\x0f\x33"
        !          63763:             "\xc3\x04\xa4\x13\xa3\x24\x84\x35\x45\x5c\x7a\xa6\x60"
        !          63764:             "\xf3\xe0\x40\x66\xaa\x7c\x55\x45\x34\x84\x23\xa3\x14"
        !          63765:             "\xa4\x0f\x33\xc3\x04\xa4\x13\xa4\x14\x85\x25\x46\x4e"
        !          63766:             "\x5d\x76\x14\xe3\xe4\xe3\xe4\xe3\xe4\xd4\xd4\xd4\xc5"
        !          63767:             "\xc5\xc5\xc4\xe0\x12\xd3" }  },
        !          63768:       /* --- pixel bitmap for bbold600 char#60 < --- */
        !          63769:       {  60,52125,                      /* character number, location */
        !          63770:          43, 6,   -2, 6,      /* topleft row,col, and botleft row,col */
        !          63771:           { 55,   45, 2,132, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          63772:             "\x34\x03\x31\x06\x2f\x08\x2c\x09\x2c\x08\x2c\x09\x2c"
        !          63773:             "\x08\x2c\x09\x2c\x08\x2c\x09\x2c\x08\x2d\x08\x2c\x08"
        !          63774:             "\x2d\x08\x2c\x09\x2c\x08\x2c\x09\x2c\x08\x2c\x09\x2c"
        !          63775:             "\x0a\x2a\x0f\x27\x07\x05\x06\x24\x06\x08\x07\x23\x05"
        !          63776:             "\x0a\x06\x23\x06\x0a\x06\x23\x06\x0a\x06\x22\x06\x0a"
        !          63777:             "\x06\x23\x06\x0a\x06\x23\x06\x0a\x06\x22\x07\x09\x07"
        !          63778:             "\x22\x06\x0a\x06\x23\x06\x0a\x06\x23\x06\x0a\x06\x22"
        !          63779:             "\x06\x0a\x06\x23\x06\x0a\x06\x23\x06\x0a\x06\x22\x07"
        !          63780:             "\x09\x07\x22\x06\x0a\x06\x23\x06\x0a\x06\x23\x06\x0a"
        !          63781:             "\x06\x22\x06\x0a\x06\x23\x06\x0a\x06\x23\x16\x22\x15"
        !          63782:             "\x24\x13" }  },
        !          63783:       /* --- pixel bitmap for bbold600 char#61 \cdot --- */
        !          63784:       {  61,52465,                      /* character number, location */
        !          63785:          30, 2,   12, 2,      /* topleft row,col, and botleft row,col */
        !          63786:           { 18,   18, 3,51, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          63787:             "\x66\xaa\x7c\x55\x45\x34\x84\x23\xa3\x14\xa4\x0f\x33"
        !          63788:             "\xc3\x04\xa4\x13\xa3\x24\x84\x35\x45\x5c\x7a\xa6\x60" }  },
        !          63789:       /* --- pixel bitmap for bbold600 char#62 > --- */
        !          63790:       {  62,52743,                      /* character number, location */
        !          63791:          43, 6,   -2, 6,      /* topleft row,col, and botleft row,col */
        !          63792:           { 55,   45, 2,133, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          63793:             "\x01\x02\x34\x06\x32\x07\x31\x09\x31\x08\x31\x09\x31"
        !          63794:             "\x08\x31\x09\x31\x08\x31\x09\x31\x08\x31\x08\x32\x08"
        !          63795:             "\x31\x08\x31\x09\x31\x08\x31\x09\x31\x08\x31\x09\x2f"
        !          63796:             "\x0a\x2b\x0f\x26\x06\x05\x08\x22\x07\x08\x06\x21\x06"
        !          63797:             "\x0a\x06\x1f\x06\x0a\x06\x1f\x06\x0a\x06\x20\x06\x0a"
        !          63798:             "\x06\x1f\x06\x0a\x06\x1f\x06\x0a\x06\x1f\x07\x09\x07"
        !          63799:             "\x1f\x06\x0a\x06\x1f\x06\x0a\x06\x1f\x06\x0a\x06\x20"
        !          63800:             "\x06\x0a\x06\x1f\x06\x0a\x06\x1f\x06\x0a\x06\x1f\x07"
        !          63801:             "\x09\x07\x1f\x06\x0a\x06\x1f\x06\x0a\x06\x1f\x06\x0a"
        !          63802:             "\x06\x20\x06\x0a\x06\x1f\x06\x0a\x06\x20\x15\x21\x15"
        !          63803:             "\x23\x12\x24" }  },
        !          63804:       /* --- pixel bitmap for bbold600 char#63 ? --- */
        !          63805:       {  63,53089,                      /* character number, location */
        !          63806:          59, 4,   -2, 4,      /* topleft row,col, and botleft row,col */
        !          63807:           { 42,   61, 3,343, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          63808:             "\xe0\x2b\xe0\xee\x04\xe0\x8e\x08\xe0\x48\x99\xe7\xe0"
        !          63809:             "\x27\xb6\xe0\x66\x95\xe0\xa5\x74\xe0\xe4\x54\xe0\xe0"
        !          63810:             "\x23\x53\xe0\xe0\x34\x34\xe0\xe0\x43\x24\xe0\xe0\x54"
        !          63811:             "\x13\xe0\xe0\x77\xe0\xe0\x76\xe0\xe0\x83\x12\xe0\xe0"
        !          63812:             "\x83\xe0\xe0\xb3\xe0\xe0\xa4\xe0\xe0\xa3\x10\xf1\xe0"
        !          63813:             "\xe0\x94\x10\xe0\xe0\x84\xe0\xe0\x85\xe0\xe0\x76\xe0"
        !          63814:             "\xe0\x49\xe0\xdd\xe0\xdd\xe0\xea\xe0\xe0\x35\x23\xe0"
        !          63815:             "\xe0\x34\x43\xe0\xe0\x24\x53\xe0\xf1\xe0\x14\x63\xe0"
        !          63816:             "\xe0\x13\x73\xe0\xe4\x73\xe0\xe3\x83\xe0\xf1\xee\xe0"
        !          63817:             "\xe0\x1d\xe0\xf3\xe0\xe0\xe0\xe0\x46\xe0\xe0\x6a\xe0"
        !          63818:             "\xe0\x3c\xe0\xe0\x15\x45\xe0\xd4\x84\xe0\xc3\xa3\xe0"
        !          63819:             "\xb4\xa4\xc0\xf3\xc3\xc3\xc0\xc4\xa4\xe0\xb3\xa3\xe0"
        !          63820:             "\xc4\x84\xe0\xd5\x45\xe0\xe0\x1c\xe0\xe0\x3a\xe0\xe0"
        !          63821:             "\x66\xe0\x40" }  },
        !          63822:       /* --- pixel bitmap for bbold600 char#64 @ --- */
        !          63823:       {  64,53479,                      /* character number, location */
        !          63824:          59, 4,   -2, 4,      /* topleft row,col, and botleft row,col */
        !          63825:           { 37,   61, 3,367, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          63826:             "\xd9\xe0\xcd\xe0\x8e\x03\xe0\x56\x76\xe0\x37\x95\xe0"
        !          63827:             "\x14\x13\xb4\xe3\x23\xc4\xc4\x23\xd4\xa4\x33\xe4\x93"
        !          63828:             "\x43\xe0\x13\x84\x43\xe0\x14\x73\x53\xe0\x23\x73\x53"
        !          63829:             "\xe0\x24\x54\x53\xe0\x33\x53\x63\xe0\x34\x43\x63\xe0"
        !          63830:             "\x43\x34\x63\xe0\x43\x33\x73\xe0\x44\x10\xf2\x13\x73"
        !          63831:             "\xe0\x53\x10\x13\x73\xd2\x43\x14\x73\xa8\x13\x13\x83"
        !          63832:             "\x8e\x04\x83\x7e\x05\x83\x65\x69\x83\x63\xa7\x83\x54"
        !          63833:             "\xa4\x0f\x43\x83\x53\xc3\x03\x83\x54\xa7\x83\x63\xa3"
        !          63834:             "\x13\x83\x65\x65\x13\x83\x7e\x23\x83\x8c\x34\x73\xa8"
        !          63835:             "\x63\x73\xd2\x80\xf3\x13\x73\xe0\x90\x14\x63\xe0\xb3"
        !          63836:             "\x63\xe0\x52\x43\x63\xe0\x43\x44\x53\xe0\x43\x53\x53"
        !          63837:             "\xe0\x34\x53\x53\xe0\x33\x64\x43\xe0\x24\x73\x43\xe0"
        !          63838:             "\x23\x84\x33\xe0\x14\x94\x23\xe4\xb3\x23\xd4\xc4\x13"
        !          63839:             "\xc4\xe7\xa5\xe0\x26\x77\xe0\x4e\x04\xe0\x7e\xe0\xb9"
        !          63840:             "\xe0\x14" }  },
        !          63841:       /* --- pixel bitmap for bbold600 char#65 A --- */
        !          63842:       {  65,20812,                      /* character number, location */
        !          63843:          57, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          63844:           { 46,   57, 3,392, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          63845:             "\xe0\x82\xe0\x80\xf2\xe0\x74\xe0\x70\xf1\xe0\x66\xe0"
        !          63846:             "\x60\xe0\x58\xe0\x50\xf1\xe0\x53\x23\xe0\x50\xe0\x44"
        !          63847:             "\x24\xe0\xe0\x83\x43\xe0\xe0\x74\x44\xe0\x30\xf1\xe0"
        !          63848:             "\x33\x63\xe0\x30\xe0\x24\x64\xe0\xe0\x43\x83\xe0\xe0"
        !          63849:             "\x34\x75\xe0\x10\xf1\xe0\x13\x85\xe0\x10\xe4\x77\xe0"
        !          63850:             "\xe3\x83\x13\xe0\xd4\x74\x14\xd0\xf1\xd3\x83\x33\xd0"
        !          63851:             "\xc4\x74\x34\xe0\xa3\x83\x53\xe0\x94\x74\x54\xb0\xf1"
        !          63852:             "\xb3\x83\x73\xb0\xa4\x74\x74\xe0\x63\x83\x93\xe0\x54"
        !          63853:             "\x74\x94\x90\xf1\x93\x83\xb3\x90\x84\x74\xb4\xe0\x23"
        !          63854:             "\x83\xd3\xe0\x14\x74\xd4\x70\xf1\x73\x83\xe0\x13\x70"
        !          63855:             "\x64\x74\xe0\x14\xc3\x83\xe0\x33\xb4\x7e\x0b\x50\xf1"
        !          63856:             "\x53\x8e\x0b\x50\x44\x74\xe0\x54\x83\x83\xe0\x73\x74"
        !          63857:             "\x74\xe0\x74\x30\xf1\x33\x83\xe0\x93\x30\x24\x74\xe0"
        !          63858:             "\x94\x43\x83\xe0\xb3\x34\x74\xe0\xb4\x10\xf1\x13\x83"
        !          63859:             "\xe0\xd3\x1e\x01\xe0\xde\x04\xe0\xe0\x13\x1d\xe0\xe0"
        !          63860:             "\x22" }  },
        !          63861:       /* --- pixel bitmap for bbold600 char#66 B --- */
        !          63862:       {  66,21297,                      /* character number, location */
        !          63863:          57, 6,    0, 6,      /* topleft row,col, and botleft row,col */
        !          63864:           { 42,   57, 3,361, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          63865:             "\x1e\x0c\xe0\x1e\x0e\x03\xbe\x0e\x06\x83\x83\xc9\x73"
        !          63866:             "\x83\xe0\x27\x53\x83\xe0\x55\x43\x83\xe0\x65\x33\x83"
        !          63867:             "\xe0\x84\x23\x83\xe0\x93\x23\x83\xe0\x94\x13\x83\xe0"
        !          63868:             "\xa3\x13\x83\xe0\xa4\x0f\x43\x83\xe0\xb3\x03\x83\xe0"
        !          63869:             "\xa7\x83\xe0\xa3\x13\x83\xe0\x94\x13\x83\xe0\x93\x23"
        !          63870:             "\x83\xe0\x84\x23\x83\xe0\x65\x33\x83\xe0\x55\x43\x83"
        !          63871:             "\xe0\x27\x53\x83\xc9\x73\x8e\x09\x83\x8e\x06\xb3\x8e"
        !          63872:             "\x08\x93\x83\xc9\x73\x83\xe0\x26\x63\x83\xe0\x45\x53"
        !          63873:             "\x83\xe0\x64\x43\x83\xe0\x74\x33\x83\xe0\x84\x23\x83"
        !          63874:             "\xe0\x93\x23\x83\xe0\x94\x13\x83\xe0\xa3\x13\x83\xe0"
        !          63875:             "\xa4\x0f\x43\x83\xe0\xb3\x03\x83\xe0\xa7\x83\xe0\xa3"
        !          63876:             "\x1f\x13\x83\xe0\x94\x13\x83\xe0\x84\x23\x83\xe0\x74"
        !          63877:             "\x33\x83\xe0\x64\x43\x83\xe0\x45\x53\x83\xe0\x26\x63"
        !          63878:             "\x83\xc9\x7e\x0e\x05\x9e\x0e\x03\xce\x0c\xe0\x13" }  },
        !          63879:       /* --- pixel bitmap for bbold600 char#67 C --- */
        !          63880:       {  67,21818,                      /* character number, location */
        !          63881:          59, 4,   -2, 4,      /* topleft row,col, and botleft row,col */
        !          63882:           { 46,   61, 3,353, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          63883:             "\xe0\x4a\xe0\xe0\x5e\x02\xe0\xee\x07\xe0\xa7\x89\xe0"
        !          63884:             "\x75\xe0\x17\xe0\x44\xe0\x56\xe0\x25\xe0\x75\xe6\xe0"
        !          63885:             "\x94\xc7\xe0\xa4\xa4\x13\xe0\xb4\x84\x23\xe0\xc4\x73"
        !          63886:             "\x33\xe0\xd3\x64\x33\xe0\xd4\x53\x43\xe0\xe4\x34\x43"
        !          63887:             "\xe0\xe0\x13\x33\x53\xe0\xe0\x22\x24\x53\xe0\xe0\x40"
        !          63888:             "\xf1\x23\x63\xe0\xe0\x40\x14\x63\xe0\xe0\x40\xf3\x13"
        !          63889:             "\x73\xe0\xe0\x44\x73\xe0\xe0\x4f\xa3\x83\xe0\xe0\x44"
        !          63890:             "\x73\xe0\xe0\x40\xf3\x13\x73\xe0\xe0\x40\x14\x63\xe0"
        !          63891:             "\xe0\x40\xf1\x23\x63\xe0\xe0\x40\x24\x53\xe0\xe0\x73"
        !          63892:             "\x53\xe0\xe0\x22\x34\x43\xe0\xe0\x13\x43\x43\xe0\xe4"
        !          63893:             "\x44\x33\xe0\xd4\x63\x33\xe0\xd3\x74\x23\xe0\xc4\x84"
        !          63894:             "\x13\xe0\xb4\xa7\xe0\xa4\xc6\xe0\x94\xe5\xe0\x75\xe0"
        !          63895:             "\x24\xe0\x56\xe0\x45\xe0\x17\xe0\x67\x89\xe0\x9e\x07"
        !          63896:             "\xe0\xde\x03\xe0\xe0\x4a\xe0\x43" }  },
        !          63897:       /* --- pixel bitmap for bbold600 char#68 D --- */
        !          63898:       {  68,22287,                      /* character number, location */
        !          63899:          57, 6,    0, 6,      /* topleft row,col, and botleft row,col */
        !          63900:           { 46,   57, 3,329, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          63901:             "\x1e\x0d\xe0\x4e\x0e\x03\xe0\x1e\x0e\x05\xd3\x83\xd7"
        !          63902:             "\xc3\x83\xe0\x26\xa3\x83\xe0\x45\x93\x83\xe0\x55\x83"
        !          63903:             "\x83\xe0\x74\x73\x83\xe0\x84\x63\x83\xe0\x93\x63\x83"
        !          63904:             "\xe0\x94\x53\x83\xe0\xa4\x43\x83\xe0\xb3\x43\x83\xe0"
        !          63905:             "\xb4\x33\x83\xe0\xc3\x33\x83\xe0\xc4\x2f\x13\x83\xe0"
        !          63906:             "\xd3\x23\x83\xe0\xd4\x1f\x23\x83\xe0\xe3\x13\x83\xe0"
        !          63907:             "\xe4\x0f\xa3\x83\xe0\xe0\x13\x03\x83\xe0\xe4\x0f\x23"
        !          63908:             "\x83\xe0\xe3\x13\x83\xe0\xd4\x1f\x13\x83\xe0\xd3\x23"
        !          63909:             "\x83\xe0\xc4\x23\x83\xe0\xc3\x33\x83\xe0\xb4\x33\x83"
        !          63910:             "\xe0\xb3\x43\x83\xe0\xa4\x43\x83\xe0\x94\x53\x83\xe0"
        !          63911:             "\x93\x63\x83\xe0\x84\x63\x83\xe0\x74\x73\x83\xe0\x55"
        !          63912:             "\x83\x83\xe0\x45\x93\x83\xe0\x26\xa3\x83\xd7\xce\x0e"
        !          63913:             "\x05\xde\x0e\x03\xe0\x2e\x0d\xe0\x47" }  },
        !          63914:       /* --- pixel bitmap for bbold600 char#69 E --- */
        !          63915:       {  69,22814,                      /* character number, location */
        !          63916:          57, 6,    0, 6,      /* topleft row,col, and botleft row,col */
        !          63917:           { 42,   57, 2,30, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          63918:             "\x01\x29\x00\xff\x01\x2a\x00\xff\x16\x03\x08\x03\x1c"
        !          63919:             "\xff\x02\x03\x08\x0f\x10\xff\x18\x03\x08\x03\x1c\xff"
        !          63920:             "\x01\x2a\x01\x29" }  },
        !          63921:       /* --- pixel bitmap for bbold600 char#70 F --- */
        !          63922:       {  70,23239,                      /* character number, location */
        !          63923:          57, 6,    0, 6,      /* topleft row,col, and botleft row,col */
        !          63924:           { 42,   57, 2,33, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          63925:             "\x01\x29\x00\xff\x01\x2a\x00\xff\x16\x03\x08\x03\x1c"
        !          63926:             "\xff\x02\x03\x08\x0f\x10\xff\x18\x03\x08\x03\x1c\xff"
        !          63927:             "\x01\x0e\x1c\x00\x01\x0d\x1c" }  },
        !          63928:       /* --- pixel bitmap for bbold600 char#71 G --- */
        !          63929:       {  71,23664,                      /* character number, location */
        !          63930:          59, 4,   -2, 4,      /* topleft row,col, and botleft row,col */
        !          63931:           { 46,   61, 3,391, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          63932:             "\xe0\x4a\xe0\xe0\x5e\x02\xe0\xee\x07\xe0\xa7\x89\xe0"
        !          63933:             "\x75\xe0\x17\xe0\x44\xe0\x56\xe0\x25\xe0\x75\xe6\xe0"
        !          63934:             "\x94\xc7\xe0\xa4\xa4\x13\xe0\xb4\x84\x23\xe0\xc4\x73"
        !          63935:             "\x33\xe0\xd3\x64\x33\xe0\xd4\x53\x43\xe0\xe4\x34\x43"
        !          63936:             "\xe0\xe0\x13\x33\x53\xe0\xe0\x22\x24\x53\xe0\xe0\x40"
        !          63937:             "\xf1\x23\x63\xe0\xe0\x40\x14\x63\xe0\xe0\x40\xf3\x13"
        !          63938:             "\x73\xe0\xe0\x44\x73\xe0\xe0\x4f\x33\x83\xe0\xe0\x43"
        !          63939:             "\x83\xe0\x4e\x03\x83\xe0\x3e\x04\x83\xe0\x4e\x0f\x33"
        !          63940:             "\x83\xe0\xe0\x13\x04\x73\xe0\xe0\x13\xf3\x13\x73\xe0"
        !          63941:             "\xe0\x13\x14\x63\xe0\xe0\x13\xf1\x23\x63\xe0\xe0\x13"
        !          63942:             "\x24\x53\xe0\xe0\x13\x33\x53\xe0\xe0\x13\x34\x43\xe0"
        !          63943:             "\xe0\x13\x43\x43\xe0\xe4\x44\x33\xe0\xd4\x63\x33\xe0"
        !          63944:             "\xd3\x74\x23\xe0\xc4\x84\x13\xe0\xb4\xa7\xe0\xa4\xc6"
        !          63945:             "\xe0\x94\xe5\xe0\x75\xe0\x24\xe0\x56\xe0\x45\xe0\x17"
        !          63946:             "\xe0\x67\x89\xe0\x9e\x07\xe0\xde\x03\xe0\xe0\x4a\xe0"
        !          63947:             "\x42" }  },
        !          63948:       /* --- pixel bitmap for bbold600 char#72 H --- */
        !          63949:       {  72,24165,                      /* character number, location */
        !          63950:          57, 6,    0, 6,      /* topleft row,col, and botleft row,col */
        !          63951:           { 46,   57, 2,42, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          63952:             "\x01\x0d\x1e\x02\x00\xff\x01\x0e\x1d\x03\x00\xff\x16"
        !          63953:             "\x03\x08\x03\x1d\x03\x00\xff\x02\x03\x08\x23\x00\xff"
        !          63954:             "\x18\x03\x08\x03\x1d\x03\x00\xff\x01\x0e\x1d\x03\x01"
        !          63955:             "\x0d\x1e\x02" }  },
        !          63956:       /* --- pixel bitmap for bbold600 char#73 I --- */
        !          63957:       {  73,24698,                      /* character number, location */
        !          63958:          57, 6,    0, 6,      /* topleft row,col, and botleft row,col */
        !          63959:           { 14,   57, 3,36, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          63960:             "\x1d\x0f\x1e\x0f\xe3\x83\x0f\xe3\x83\x0f\xe3\x83\x0f"
        !          63961:             "\x53\x83\x0f\x1e\x1d" }  },
        !          63962:       /* --- pixel bitmap for bbold600 char#74 J --- */
        !          63963:       {  74,25123,                      /* character number, location */
        !          63964:          57, 4,   -2, 4,      /* topleft row,col, and botleft row,col */
        !          63965:           { 42,   59, 3,185, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          63966:             "\xe0\xe0\x1d\xf1\xe0\xee\xfe\xe0\xe3\x83\xfe\xe0\xe3"
        !          63967:             "\x83\xf1\xe0\xe3\x83\xe0\xe3\x74\xf3\xe0\xe3\x73\x10"
        !          63968:             "\xe0\xe3\x64\x10\xf1\xe0\xe3\x63\x20\x12\xe0\xb3\x54"
        !          63969:             "\x23\xe0\xb3\x53\x34\xe0\xa3\x44\x43\xe0\xa3\x43\x54"
        !          63970:             "\xe0\x93\x34\x64\xe0\x83\x33\x83\xe0\x83\x24\x84\xe0"
        !          63971:             "\x73\x14\xa4\xe0\x67\xc5\xe0\x46\xe6\xe0\x26\xe0\x17"
        !          63972:             "\xd6\xe0\x48\x86\xe0\x8e\x05\xe0\xbe\x01\xe0\xe0\x2a"
        !          63973:             "\xe0\x20" }  },
        !          63974:       /* --- pixel bitmap for bbold600 char#75 K --- */
        !          63975:       {  75,25572,                      /* character number, location */
        !          63976:          57, 6,    0, 6,      /* topleft row,col, and botleft row,col */
        !          63977:           { 42,   57, 3,416, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          63978:             "\x1d\xe0\xce\x02\xe0\xbe\x03\xe0\xa7\x83\xe0\x94\x13"
        !          63979:             "\x83\xe0\x84\x23\x83\xe0\x83\x33\x83\xe0\x74\x33\x83"
        !          63980:             "\xe0\x64\x43\x83\xe0\x54\x53\x83\xe0\x53\x63\x83\xe0"
        !          63981:             "\x44\x63\x83\xe0\x34\x73\x83\xe0\x24\x83\x83\xe0\x23"
        !          63982:             "\x93\x83\xe0\x14\x93\x83\xe4\xa3\x83\xd4\xb3\x83\xd3"
        !          63983:             "\xc3\x83\xc4\xc3\x83\xb4\xd3\x83\xa4\xe3\x83\xa3\xe0"
        !          63984:             "\x13\x83\x94\xe0\x13\x83\x84\xe0\x23\x83\x74\xe0\x33"
        !          63985:             "\x83\x73\xe0\x43\x83\x64\xe0\x43\x83\x54\xe0\x5f\x13"
        !          63986:             "\x83\x46\xe0\x43\x83\x38\xe0\x33\x83\x24\x24\xe0\x23"
        !          63987:             "\x83\x14\x43\xe0\x23\x83\x13\x54\xe0\x13\x87\x64\xe3"
        !          63988:             "\x86\x83\xe3\x85\x94\xd3\x84\xb4\xc3\x84\xc4\xb3\x83"
        !          63989:             "\xe3\xb3\x83\xe4\xa3\x83\xe0\x14\x93\x83\xe0\x23\x93"
        !          63990:             "\x83\xe0\x24\x83\x83\xe0\x34\x73\x83\xe0\x43\x73\x83"
        !          63991:             "\xe0\x44\x63\x83\xe0\x54\x53\x83\xe0\x63\x53\x83\xe0"
        !          63992:             "\x64\x43\x83\xe0\x74\x33\x83\xe0\x84\x23\x83\xe0\x93"
        !          63993:             "\x23\x83\xe0\x94\x1e\xe0\xae\x04\xe0\xb3\x1d\xe0\xc2" }  },
        !          63994:       /* --- pixel bitmap for bbold600 char#76 L --- */
        !          63995:       {  76,26117,                      /* character number, location */
        !          63996:          57, 6,    0, 6,      /* topleft row,col, and botleft row,col */
        !          63997:           { 42,   57, 2,18, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          63998:             "\x01\x0d\x1c\xff\x01\x0e\x1c\xff\x32\x03\x08\x03\x1c"
        !          63999:             "\xff\x01\x2a\x01\x29" }  },
        !          64000:       /* --- pixel bitmap for bbold600 char#77 M --- */
        !          64001:       {  77,26542,                      /* character number, location */
        !          64002:          57, 6,    0, 6,      /* topleft row,col, and botleft row,col */
        !          64003:           { 47,   57, 3,270, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          64004:             "\x12\xe0\xe0\xe5\xe0\xe0\xd7\xe0\xe0\xb9\xe0\xe0\x9b"
        !          64005:             "\xe0\xe0\x7d\xe0\xe0\x5a\x14\xe0\xe0\x34\x16\x23\xe0"
        !          64006:             "\xe0\x24\x26\x24\xe0\xe0\x13\x36\x34\xe0\xd4\x36\x44"
        !          64007:             "\xe0\xb4\x46\x54\xe0\x94\x56\x64\xe0\x74\x66\x74\xe0"
        !          64008:             "\x54\x76\x83\xe0\x53\x86\x84\xe0\x34\x86\x85\xe0\x14"
        !          64009:             "\x96\x86\xd4\xa6\x87\xb4\xb6\x83\x14\x94\xc6\x83\x23"
        !          64010:             "\x84\xd6\x83\x24\x73\xe6\x83\x34\x54\xe6\x83\x44\x34"
        !          64011:             "\xe0\x16\x83\x54\x14\xe0\x26\x83\x67\xe0\x36\x83\x75"
        !          64012:             "\xe0\x46\x83\x83\xe0\x56\x83\x92\xe0\x53\x0f\xe3\x83"
        !          64013:             "\xe0\xe0\x23\x0f\x93\x83\xe0\xe0\x23\x0f\x1e\xe0\xe0"
        !          64014:             "\x23\x1d\xe0\xe0\x32" }  },
        !          64015:       /* --- pixel bitmap for bbold600 char#78 N --- */
        !          64016:       {  78,27133,                      /* character number, location */
        !          64017:          57, 6,    0, 6,      /* topleft row,col, and botleft row,col */
        !          64018:           { 46,   57, 3,418, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          64019:             "\x12\xe0\xe0\xd5\xe0\xe0\xc7\xe0\xe0\xb8\xe0\xe0\xa9"
        !          64020:             "\xe0\xe0\x9a\xe0\xe0\x86\x13\xe0\xe0\x86\x14\xe0\xe0"
        !          64021:             "\x76\x24\xe0\xe0\x66\x34\xe0\xe0\x56\x44\xe0\xe0\x46"
        !          64022:             "\x53\xe0\xe0\x46\x54\xe0\xe0\x36\x64\xe0\xe0\x26\x74"
        !          64023:             "\xe0\xe0\x13\x0f\x13\x84\xe0\xe3\x03\x85\xe0\xd6\x86"
        !          64024:             "\xe0\xc6\x87\xe0\xb6\x83\x14\xe0\xa6\x83\x23\xe0\xa6"
        !          64025:             "\x83\x24\xe0\x96\x83\x34\xe0\x86\x83\x44\xe0\x76\x83"
        !          64026:             "\x54\xe0\x66\x83\x63\xe0\x66\x83\x64\xe0\x56\x83\x74"
        !          64027:             "\xe0\x46\x83\x84\xe0\x36\x83\x93\xe0\x36\x83\x94\xe0"
        !          64028:             "\x26\x83\xa4\xe0\x16\x83\xb4\xe6\x83\xc4\xd6\x83\xd3"
        !          64029:             "\xd6\x83\xd4\xc6\x83\xe4\xb6\x83\xe0\x14\xa6\x83\xe0"
        !          64030:             "\x24\x96\x83\xe0\x33\x96\x83\xe0\x34\x86\x83\xe0\x44"
        !          64031:             "\x76\x83\xe0\x54\x66\x83\xe0\x64\x56\x83\xe0\x73\x56"
        !          64032:             "\x83\xe0\x74\x46\x83\xe0\x84\x36\x83\xe0\x94\x26\x83"
        !          64033:             "\xe0\xa4\x16\x83\xe0\xb3\x16\x83\xe0\xba\x83\xe0\xc9"
        !          64034:             "\x83\xe0\xde\x05\xe0\xee\x04\xe0\xe0\x13\x1d\xe0\xe0"
        !          64035:             "\x22" }  },
        !          64036:       /* --- pixel bitmap for bbold600 char#79 O --- */
        !          64037:       {  79,27728,                      /* character number, location */
        !          64038:          59, 4,   -2, 4,      /* topleft row,col, and botleft row,col */
        !          64039:           { 46,   61, 3,349, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          64040:             "\xe0\x4a\xe0\xe0\x5e\x02\xe0\xee\x06\xe0\xb7\x87\xe0"
        !          64041:             "\x95\xe5\xe0\x74\xe0\x44\xe0\x55\xe0\x54\xe0\x36\xe0"
        !          64042:             "\x64\xe0\x17\xe0\x74\xd4\x13\xe0\x84\xb4\x23\xe0\x94"
        !          64043:             "\xa3\x33\xe0\xa3\x94\x33\xe0\xa4\x83\x43\xe0\xb3\x74"
        !          64044:             "\x43\xe0\xb4\x63\x53\xe0\xc3\x54\x53\xe0\xc4\x20\xf1"
        !          64045:             "\x23\x63\xe0\xd3\x20\x14\x63\xe0\xd4\x10\xf3\x13\x73"
        !          64046:             "\xe0\xe3\x14\x73\xe0\xe4\x0f\xa3\x83\xe0\xe0\x13\x04"
        !          64047:             "\x73\xe0\xe4\xf3\x13\x73\xe0\xe3\x10\x14\x63\xe0\xd4"
        !          64048:             "\x10\xf1\x23\x63\xe0\xd3\x20\x24\x53\xe0\xc4\x53\x53"
        !          64049:             "\xe0\xc3\x64\x43\xe0\xb4\x73\x43\xe0\xb3\x84\x33\xe0"
        !          64050:             "\xa4\x93\x33\xe0\xa3\xa4\x23\xe0\x94\xb4\x13\xe0\x84"
        !          64051:             "\xd7\xe0\x74\xe0\x16\xe0\x64\xe0\x35\xe0\x54\xe0\x54"
        !          64052:             "\xe0\x44\xe0\x75\xe5\xe0\x97\x87\xe0\xbe\x06\xe0\xee"
        !          64053:             "\x02\xe0\xe0\x5a\xe0\x40" }  },
        !          64054:       /* --- pixel bitmap for bbold600 char#80 P --- */
        !          64055:       {  80,28255,                      /* character number, location */
        !          64056:          57, 6,    0, 6,      /* topleft row,col, and botleft row,col */
        !          64057:           { 42,   57, 3,215, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          64058:             "\x1e\x0c\xe0\x1e\x0e\x03\xbe\x0e\x06\x83\x83\xc9\x73"
        !          64059:             "\x83\xe0\x27\x53\x83\xe0\x55\x43\x83\xe0\x65\x33\x83"
        !          64060:             "\xe0\x84\x23\x83\xe0\x93\x23\x83\xe0\x94\x13\x83\xe0"
        !          64061:             "\xa3\x13\x83\xe0\xa4\x0f\x43\x83\xe0\xb3\x03\x83\xe0"
        !          64062:             "\xa7\x83\xe0\xa3\x13\x83\xe0\x94\x13\x83\xe0\x93\x23"
        !          64063:             "\x83\xe0\x84\x23\x83\xe0\x65\x33\x83\xe0\x55\x43\x83"
        !          64064:             "\xe0\x27\x53\x83\xc9\x73\x8e\x09\x83\x8e\x06\xb3\x8e"
        !          64065:             "\x02\xe0\x1f\xe3\x83\xe0\xef\x93\x83\xe0\xef\x1e\xe0"
        !          64066:             "\xe0\x1d\xe0\xe3" }  },
        !          64067:       /* --- pixel bitmap for bbold600 char#81 Q --- */
        !          64068:       {  81,28726,                      /* character number, location */
        !          64069:          59, 4,  -16, 4,      /* topleft row,col, and botleft row,col */
        !          64070:           { 46,   75, 3,468, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          64071:             "\xe0\x4a\xe0\xe0\x5e\x02\xe0\xee\x06\xe0\xb7\x87\xe0"
        !          64072:             "\x95\xe5\xe0\x74\xe0\x44\xe0\x55\xe0\x54\xe0\x36\xe0"
        !          64073:             "\x64\xe0\x17\xe0\x74\xd4\x13\xe0\x84\xb4\x23\xe0\x94"
        !          64074:             "\xa3\x33\xe0\xa3\x94\x33\xe0\xa4\x83\x43\xe0\xb3\x74"
        !          64075:             "\x43\xe0\xb4\x63\x53\xe0\xc3\x54\x53\xe0\xc4\x20\xf1"
        !          64076:             "\x23\x63\xe0\xd3\x20\x14\x63\xe0\xd4\x10\xf3\x13\x73"
        !          64077:             "\xe0\xe3\x14\x73\xe0\xe4\x0f\xa3\x83\xe0\xe0\x13\x04"
        !          64078:             "\x73\xe0\xe4\xf3\x13\x73\xe0\xe3\x10\x14\x63\xe0\xd4"
        !          64079:             "\x33\x63\xe0\xd3\x43\x63\x82\xe0\x33\x44\x53\x83\xe0"
        !          64080:             "\x14\x53\x53\x84\xe3\x64\x43\x93\xd4\x73\x43\x94\xc3"
        !          64081:             "\x84\x33\xa4\xa4\x93\x33\xb4\x93\xa4\x23\xc3\x84\xb4"
        !          64082:             "\x13\xc4\x64\xd7\xd4\x44\xe0\x16\xe4\x24\xe0\x35\xe0"
        !          64083:             "\x13\x14\xe0\x54\xe0\x17\xe0\x75\xe5\xe0\x97\x88\xe0"
        !          64084:             "\xae\x08\xe0\xce\x02\x14\xe0\xea\x54\xe0\xe0\xe0\x13"
        !          64085:             "\xe0\xe0\xe0\x14\xe0\xe0\xe0\x14\xe0\xe0\xe0\x14\xe0"
        !          64086:             "\xe0\xe0\x13\xe0\xe0\xe0\x14\xe0\xe0\xe0\x14\xe0\xe0"
        !          64087:             "\xe0\x14\xe0\xe0\xe0\x13\xe0\xe0\xe0\x14\xe0\xe0\xe0"
        !          64088:             "\x14\xe0\xe0\xe0\x14\xe0\xe0\xe0\x13\xe0\xe0\xe0\x22" }  },
        !          64089:       /* --- pixel bitmap for bbold600 char#82 R --- */
        !          64090:       {  82,29309,                      /* character number, location */
        !          64091:          57, 6,    0, 6,      /* topleft row,col, and botleft row,col */
        !          64092:           { 42,   57, 3,390, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          64093:             "\x1e\x0c\xe0\x1e\x0e\x03\xbe\x0e\x06\x83\x83\xc9\x73"
        !          64094:             "\x83\xe0\x27\x53\x83\xe0\x55\x43\x83\xe0\x65\x33\x83"
        !          64095:             "\xe0\x84\x23\x83\xe0\x93\x23\x83\xe0\x94\x13\x83\xe0"
        !          64096:             "\xa3\x13\x83\xe0\xa4\x0f\x43\x83\xe0\xb3\x03\x83\xe0"
        !          64097:             "\xa7\x83\xe0\xa3\x13\x83\xe0\x94\x13\x83\xe0\x93\x23"
        !          64098:             "\x83\xe0\x84\x23\x83\xe0\x65\x33\x83\xe0\x55\x43\x83"
        !          64099:             "\xe0\x27\x53\x83\xc9\x73\x8e\x09\x83\x8e\x06\xb3\x8e"
        !          64100:             "\x02\xe0\x13\x83\x73\xe0\x43\x83\x74\xe0\x33\x83\x84"
        !          64101:             "\xe0\x23\x83\x93\xe0\x23\x83\x94\xe0\x13\x83\xa4\xe3"
        !          64102:             "\x83\xb3\xe3\x83\xb4\xd3\x83\xc4\xc3\x83\xd4\xb3\x83"
        !          64103:             "\xe3\xb3\x83\xe4\xa3\x83\xe0\x14\x93\x83\xe0\x23\x93"
        !          64104:             "\x83\xe0\x24\x83\x83\xe0\x34\x73\x83\xe0\x43\x73\x83"
        !          64105:             "\xe0\x44\x63\x83\xe0\x54\x53\x83\xe0\x63\x53\x83\xe0"
        !          64106:             "\x64\x43\x83\xe0\x74\x33\x83\xe0\x84\x23\x83\xe0\x93"
        !          64107:             "\x23\x83\xe0\x94\x1e\xe0\xae\x04\xe0\xb3\x1d\xe0\xc2" }  },
        !          64108:       /* --- pixel bitmap for bbold600 char#83 S --- */
        !          64109:       {  83,29836,                      /* character number, location */
        !          64110:          59, 4,   -2, 4,      /* topleft row,col, and botleft row,col */
        !          64111:           { 42,   61, 3,377, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          64112:             "\xe0\x1b\xe0\xee\x03\xe0\x9e\x07\xe0\x58\x98\xe0\x18"
        !          64113:             "\xe7\xc9\xe0\x26\xa5\x23\xe0\x45\x84\x43\xe0\x64\x64"
        !          64114:             "\x53\xe0\x74\x53\x63\xe0\x83\x44\x63\xe0\x84\x33\x73"
        !          64115:             "\xe0\x94\x14\x73\xe0\xa3\x13\x83\xe0\xa7\x83\xe0\xb6"
        !          64116:             "\x83\xe0\xc2\x0f\x23\x83\xe0\xe4\x73\xe0\xe0\x13\x73"
        !          64117:             "\xe0\xe0\x14\x63\xe0\xe0\x23\x63\xe0\xe0\x24\x53\xe0"
        !          64118:             "\xe0\x35\x33\xe0\xe0\x46\x13\xe0\xe0\x59\xe0\xe0\x79"
        !          64119:             "\xe0\xe0\x6e\x05\xe0\xce\x06\xe0\xce\x04\xe0\xe0\x79"
        !          64120:             "\xe0\xe0\x96\xe0\xe0\xa5\xe0\xe0\xb4\xe0\xe0\xb4\xe0"
        !          64121:             "\xe0\xb4\xe0\xe0\xb3\xe0\xe0\xb4\xe0\xe0\xb3\xe0\xe0"
        !          64122:             "\xb4\xf3\xe0\xe0\xb3\x12\xe0\xe0\x86\xe0\xe0\x87\xe0"
        !          64123:             "\xe0\x64\x13\xe0\xe0\x63\x24\xe0\xe0\x44\x34\xe0\xe0"
        !          64124:             "\x33\x53\xe0\xe0\x24\x54\xe0\xe4\x74\xe0\xc4\x95\xe0"
        !          64125:             "\x94\xb6\xe0\x55\xd7\xe0\x16\xe0\x28\x89\xe0\x5e\x07"
        !          64126:             "\xe0\x9e\x03\xe0\xea\xe0\x2e" }  },
        !          64127:       /* --- pixel bitmap for bbold600 char#84 T --- */
        !          64128:       {  84,30259,                      /* character number, location */
        !          64129:          57, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          64130:           { 46,   57, 2,21, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          64131:             "\x01\x5b\x01\x2d\xff\x32\x10\x03\x08\x03\x10\x00\xff"
        !          64132:             "\x01\x10\x0e\x10\x00\x11\x0d\x10" }  },
        !          64133:       /* --- pixel bitmap for bbold600 char#85 U --- */
        !          64134:       {  85,30684,                      /* character number, location */
        !          64135:          57, 6,   -2, 6,      /* topleft row,col, and botleft row,col */
        !          64136:           { 46,   59, 3,219, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          64137:             "\x1d\xe0\xe0\x22\x0f\x1e\xe0\xe0\x13\x0f\xe3\x83\xe0"
        !          64138:             "\xe0\x13\x0f\xe3\x83\xe0\xe0\x13\x03\x83\xe0\xe0\x17"
        !          64139:             "\x73\xe0\xe4\xf3\x13\x73\xe0\xe3\x10\x14\x63\xe0\xd4"
        !          64140:             "\x10\xf1\x23\x63\xe0\xd3\x20\x24\x53\xe0\xc4\x53\x53"
        !          64141:             "\xe0\xc3\x64\x43\xe0\xb4\x73\x43\xe0\xb3\x84\x33\xe0"
        !          64142:             "\xa4\x93\x33\xe0\xa3\xa4\x23\xe0\x94\xb4\x13\xe0\x84"
        !          64143:             "\xd7\xe0\x74\xe0\x16\xe0\x64\xe0\x35\xe0\x54\xe0\x54"
        !          64144:             "\xe0\x44\xe0\x75\xe5\xe0\x97\x87\xe0\xbe\x06\xe0\xee"
        !          64145:             "\x02\xe0\xe0\x5a\xe0\x45" }  },
        !          64146:       /* --- pixel bitmap for bbold600 char#86 V --- */
        !          64147:       {  86,31217,                      /* character number, location */
        !          64148:          57, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          64149:           { 47,   57, 3,403, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          64150:             "\x1d\xe0\xe0\x3e\x02\xe0\xe0\x2e\x04\xe0\xe4\xf1\x13"
        !          64151:             "\x83\xe0\xe3\x10\x14\x74\xe0\xc4\x33\x83\xe0\xc3\x44"
        !          64152:             "\x74\xe0\xa4\x20\xf1\x33\x83\xe0\xa3\x30\x34\x74\xe0"
        !          64153:             "\x84\x73\x83\xe0\x83\x84\x74\xe0\x64\x93\x83\xe0\x63"
        !          64154:             "\xa3\x83\xe0\x54\xa4\x83\xe0\x43\xc3\x83\xe0\x43\xc4"
        !          64155:             "\x74\xe0\x24\xd3\x83\xe0\x23\xe4\x74\xe4\x70\xf1\x83"
        !          64156:             "\x83\xe3\x80\x84\x74\xc4\xe0\x33\x83\xc3\xe0\x44\x74"
        !          64157:             "\xa4\x90\xf1\xa3\x83\xa3\xa0\xa4\x74\x84\xe0\x73\x83"
        !          64158:             "\x83\xe0\x84\x74\x64\xb0\xf1\xc3\x83\x63\xc0\xc4\x74"
        !          64159:             "\x44\xe0\xb3\x83\x43\xe0\xc4\x74\x24\xd0\xf1\xe3\x83"
        !          64160:             "\x23\xe0\xe4\x78\xe0\xe0\x13\x86\xe0\xe0\x24\x76\xe0"
        !          64161:             "\x10\xf1\xe0\x23\x84\xe0\x20\xe0\x24\x74\xe0\xe0\x53"
        !          64162:             "\x73\xe0\xe0\x64\x54\xe0\xe0\x73\x53\xe0\xe0\x84\x34"
        !          64163:             "\xe0\x40\xf1\xe0\x53\x33\xe0\x50\xe0\x54\x14\xe0\xe0"
        !          64164:             "\xb3\x13\xe0\xe0\xc7\xe0\x60\xf2\xe0\x75\xe0\x70\xe0"
        !          64165:             "\x83\xe0\xe0\xe0\x32\xe0\x84" }  },
        !          64166:       /* --- pixel bitmap for bbold600 char#87 W --- */
        !          64167:       {  87,31710,                      /* character number, location */
        !          64168:          57, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          64169:           { 65,   57, 3,543, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          64170:             "\x1d\xe0\xe0\xe0\x72\x0f\x1e\xe0\xe0\xe0\x63\x04\x74"
        !          64171:             "\xe0\xe0\xe0\x44\xf1\x13\x83\xe0\xe0\xe0\x43\x10\x14"
        !          64172:             "\x74\xe0\xe0\xe0\x24\x10\xf2\x23\x83\xe0\xe0\xe0\x23"
        !          64173:             "\x20\x24\x74\xe0\xe0\xe4\x20\xf1\x33\x83\xe0\xe0\xe3"
        !          64174:             "\x30\x34\x74\xe0\xe0\xc4\x30\xf2\x43\x83\xe0\xe0\xc3"
        !          64175:             "\x40\x44\x74\xe0\xe0\xa4\x40\xf1\x53\x83\xe0\xe0\xa3"
        !          64176:             "\x50\x54\x74\xe0\xe0\x84\x50\xf2\x63\x83\xe0\xe0\x83"
        !          64177:             "\x60\x64\x74\xe0\xe0\x64\xd3\x83\xe0\xe0\x63\xe3\x83"
        !          64178:             "\xb2\xe0\x73\xe4\x74\x93\xe0\x64\x70\xf1\x83\x83\x85"
        !          64179:             "\xe0\x53\x80\x83\x83\x77\xe0\x43\xe0\x24\x74\x63\x13"
        !          64180:             "\xe0\x34\xe0\x33\x83\x54\x14\xe0\x23\xe0\x43\x83\x44"
        !          64181:             "\x34\xe0\x13\xe0\x44\x74\x33\x53\xe4\xe0\x53\x83\x24"
        !          64182:             "\x54\xd3\xe0\x63\x83\x23\x73\xd3\xe0\x63\x83\x14\x74"
        !          64183:             "\xc3\xe0\x64\x77\x93\xb4\xe0\x73\x86\x94\xa3\xe0\x83"
        !          64184:             "\x85\xb3\xa3\xe0\x84\x75\xb4\x84\xe0\x93\x74\xd4\x73"
        !          64185:             "\xe0\xa3\x73\xe0\x13\x73\xe0\xa3\x64\xe0\x14\x63\xe0"
        !          64186:             "\xa4\x53\xe0\x33\x54\xe0\xb3\x44\xe0\x34\x43\xe0\xc3"
        !          64187:             "\x43\xe0\x53\x43\xe0\xc4\x24\xe0\x54\x24\xe0\xd3\x23"
        !          64188:             "\xe0\x73\x23\xe0\xe3\x14\xe0\x74\x13\xe0\xe7\xe0\x97"
        !          64189:             "\xe0\xe6\xe0\xb6\xe0\xe0\x15\xe0\xb5\xe0\x10\xf1\xe0"
        !          64190:             "\x14\xe0\xd4\xe0\x10\xe0\x22\xe0\xe0\x12\xe0\x20" }  },
        !          64191:       /* --- pixel bitmap for bbold600 char#88 X --- */
        !          64192:       {  88,32307,                      /* character number, location */
        !          64193:          57, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          64194:           { 46,   57, 3,452, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          64195:             "\x12\xe0\xe0\x2e\x02\xe0\xe0\x1e\x04\xe0\xde\x01\x14"
        !          64196:             "\xe0\xc3\x83\x34\xe0\xa4\x74\x44\xe0\x84\x74\x63\xe0"
        !          64197:             "\x83\x83\x74\xe0\x64\x74\x84\xe0\x53\x83\xa4\xe0\x34"
        !          64198:             "\x74\xb4\xe0\x14\x74\xd3\xe0\x13\x83\xe4\xd4\x74\xe0"
        !          64199:             "\x14\xc3\x83\xe0\x34\xa4\x74\xe0\x44\x84\x74\xe0\x63"
        !          64200:             "\x83\x83\xe0\x74\x64\x74\xe0\x84\x53\x83\xe0\xa4\x34"
        !          64201:             "\x74\xe0\xb4\x14\x74\xe0\xd3\x13\x83\xe0\xe7\x74\xe0"
        !          64202:             "\xe0\x15\x83\xe0\xe0\x34\x74\xe0\xe0\x24\x74\xe0\xe0"
        !          64203:             "\x33\x83\xe0\xe0\x34\x74\xe0\xe0\x33\x83\xe0\xe0\x34"
        !          64204:             "\x74\xe0\xe0\x33\x83\xe0\xe0\x34\x74\xe0\xe0\x24\x74"
        !          64205:             "\xe0\xe0\x33\x85\xe0\xe0\x14\x77\xe0\xe3\x83\x13\xe0"
        !          64206:             "\xd4\x74\x14\xe0\xb4\x74\x34\xe0\xa3\x83\x54\xe0\x84"
        !          64207:             "\x74\x64\xe0\x73\x83\x83\xe0\x64\x74\x84\xe0\x44\x74"
        !          64208:             "\xa4\xe0\x33\x83\xc4\xe0\x14\x74\xd4\xe3\x83\xe0\x13"
        !          64209:             "\xd4\x74\xe0\x14\xb4\x74\xe0\x34\xa3\x83\xe0\x54\x84"
        !          64210:             "\x74\xe0\x64\x73\x83\xe0\x83\x64\x74\xe0\x84\x44\x74"
        !          64211:             "\xe0\xa4\x33\x83\xe0\xc4\x1e\x01\xe0\xde\x04\xe0\xe0"
        !          64212:             "\x13\x1d\xe0\xe0\x22" }  },
        !          64213:       /* --- pixel bitmap for bbold600 char#89 Y --- */
        !          64214:       {  89,32820,                      /* character number, location */
        !          64215:          57, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          64216:           { 46,   57, 3,255, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          64217:             "\x1d\xe0\xe0\x2e\x02\xe0\xe0\x1e\x04\xe0\xd4\x14\x74"
        !          64218:             "\xe0\xb4\x33\x83\xe0\xb3\x44\x74\xe0\x94\x53\x83\xe0"
        !          64219:             "\x93\x64\x74\xe0\x74\x74\x74\xe0\x54\x93\x83\xe0\x53"
        !          64220:             "\xa4\x74\xe0\x34\xb3\x83\xe0\x33\xc4\x74\xe0\x14\xd4"
        !          64221:             "\x74\xd4\xe0\x13\x83\xd3\xe0\x24\x74\xb4\xe0\x34\x74"
        !          64222:             "\x94\xe0\x53\x83\x93\xe0\x64\x74\x74\xe0\x73\x83\x73"
        !          64223:             "\xe0\x84\x74\x54\xe0\x94\x74\x34\xe0\xb3\x83\x33\xe0"
        !          64224:             "\xc4\x74\x14\xe0\xd3\x83\x13\xe0\xe4\x77\xe0\xe0\x14"
        !          64225:             "\x75\xe0\x10\xfe\xe0\x23\x83\xe0\x20\xfb\xe0\x23\x83"
        !          64226:             "\xe0\x20\xf1\xe0\x2e\xe0\x20\xe0\x3d\xe0\x20" }  },
        !          64227:       /* --- pixel bitmap for bbold600 char#90 Z --- */
        !          64228:       {  90,33295,                      /* character number, location */
        !          64229:          57, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          64230:           { 46,   57, 2,214, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          64231:             "\x01\x5b\x01\x2d\x1f\x03\x08\x03\x1f\x04\x07\x04\x1e"
        !          64232:             "\x04\x07\x04\x1f\x03\x08\x03\x1f\x04\x07\x04\x1f\x03"
        !          64233:             "\x08\x03\x1f\x04\x07\x04\x1e\x04\x07\x04\x1f\x03\x08"
        !          64234:             "\x03\x1f\x04\x07\x04\x1f\x03\x08\x03\x1f\x04\x07\x04"
        !          64235:             "\x1e\x04\x07\x04\x1f\x03\x08\x03\x1f\x04\x07\x04\x1f"
        !          64236:             "\x03\x08\x03\x1f\x04\x07\x04\x1e\x04\x07\x04\x1f\x03"
        !          64237:             "\x08\x03\x1f\x04\x07\x04\x1f\x03\x08\x03\x1f\x04\x07"
        !          64238:             "\x04\x1e\x04\x07\x04\x1f\x03\x08\x03\x1f\x04\x07\x04"
        !          64239:             "\x1f\x03\x08\x03\x1f\x04\x07\x04\x1f\x03\x08\x03\x1f"
        !          64240:             "\x04\x07\x04\x1e\x04\x07\x04\x1f\x03\x08\x03\x1f\x04"
        !          64241:             "\x07\x04\x1f\x03\x08\x03\x1f\x04\x07\x04\x1e\x04\x07"
        !          64242:             "\x04\x1f\x03\x08\x03\x1f\x04\x07\x04\x1f\x03\x08\x03"
        !          64243:             "\x1f\x04\x07\x04\x1e\x04\x07\x04\x1f\x03\x08\x03\x1f"
        !          64244:             "\x04\x07\x04\x1f\x03\x08\x03\x1f\x04\x07\x04\x1e\x04"
        !          64245:             "\x07\x04\x1f\x03\x08\x03\x1f\x04\x07\x04\x1f\x03\x08"
        !          64246:             "\x03\x1f\x04\x07\x04\x1e\x04\x07\x04\x1f\x03\x08\x03"
        !          64247:             "\x1f\xff\x01\x2e\x01\x2d" }  },
        !          64248:       /* --- pixel bitmap for bbold600 char#91 [ --- */
        !          64249:       {  91,54049,                      /* character number, location */
        !          64250:          62, 6,  -21, 6,      /* topleft row,col, and botleft row,col */
        !          64251:           { 21,   83, 2,18, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          64252:             "\x01\x14\x00\xff\x01\x15\x00\xff\x4c\x03\x08\x03\x07"
        !          64253:             "\xff\x01\x15\x01\x14" }  },
        !          64254:       /* --- pixel bitmap for bbold600 char#92 \\ --- */
        !          64255:       {  92,54583,                      /* character number, location */
        !          64256:          62, 2,  -21, 2,      /* topleft row,col, and botleft row,col */
        !          64257:           { 42,   83, 3,490, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          64258:             "\x1d\xe0\xee\xe0\xee\x01\xe0\xd0\xf1\x13\x83\xe0\xd0"
        !          64259:             "\x14\x74\xe0\xc0\xf1\x23\x83\xe0\xc0\x24\x74\xe0\xb0"
        !          64260:             "\xf1\x33\x83\xe0\xb0\x34\x74\xe0\xa0\xf1\x43\x83\xe0"
        !          64261:             "\xa0\x44\x74\xe0\x90\xf1\x53\x83\xe0\x90\x54\x74\xe0"
        !          64262:             "\x80\xf1\x63\x83\xe0\x80\x64\x74\xe0\xe3\x83\xe0\xe4"
        !          64263:             "\x74\xe0\x60\xf1\x83\x83\xe0\x60\x84\x74\xe0\x50\xf1"
        !          64264:             "\x93\x83\xe0\x50\x94\x74\xe0\x40\xf1\xa3\x83\xe0\x40"
        !          64265:             "\xa4\x74\xe0\x30\xf1\xb3\x83\xe0\x30\xb4\x74\xe0\x20"
        !          64266:             "\xf1\xc3\x83\xe0\x20\xc4\x74\xe0\x10\xf1\xd3\x83\xe0"
        !          64267:             "\x10\xd4\x74\xe0\xe3\x83\xe0\xe4\x74\xd0\xf1\xe0\x13"
        !          64268:             "\x83\xd0\xe0\x14\x74\xc0\xf1\xe0\x23\x83\xc0\xe0\x24"
        !          64269:             "\x74\xb0\xf1\xe0\x33\x83\xb0\xe0\x34\x74\xa0\xf1\xe0"
        !          64270:             "\x43\x83\xa0\xe0\x44\x74\x90\xf1\xe0\x53\x83\x90\xe0"
        !          64271:             "\x54\x74\x80\xf1\xe0\x63\x83\x80\xe0\x64\x74\xe0\xe3"
        !          64272:             "\x83\xe0\xe4\x74\x60\xf1\xe0\x83\x83\x60\xe0\x84\x74"
        !          64273:             "\x50\xf1\xe0\x93\x83\x50\xe0\x94\x74\x40\xf1\xe0\xa3"
        !          64274:             "\x83\x40\xe0\xa4\x74\x30\xf1\xe0\xb3\x83\x30\xe0\xb4"
        !          64275:             "\x74\x20\xf1\xe0\xc3\x83\x20\xe0\xc4\x74\x10\xf1\xe0"
        !          64276:             "\xd3\x83\x10\xe0\xde\x01\xe0\xee\xe0\xe0\x1d" }  },
        !          64277:       /* --- pixel bitmap for bbold600 char#93 ] --- */
        !          64278:       {  93,55124,                      /* character number, location */
        !          64279:          62, 2,  -21, 2,      /* topleft row,col, and botleft row,col */
        !          64280:           { 21,   83, 2,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          64281:             "\x01\x29\x01\x14\xff\x4c\x07\x03\x08\x03\x01\x29\x01"
        !          64282:             "\x14" }  },
        !          64283:       /* --- pixel bitmap for bbold600 char#94 (noname) --- */
        !          64284:       {  94,55659,                      /* character number, location */
        !          64285:          62, 6,  -21, 6,      /* topleft row,col, and botleft row,col */
        !          64286:           { 21,   83, 3,322, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          64287:             "\xe0\x52\xe0\x43\xe0\x34\xe0\x33\xe0\x34\x10\xf1\xe0"
        !          64288:             "\x23\x20\xe0\x14\xe0\x33\xe0\x34\xe0\x33\xe0\x34\xe0"
        !          64289:             "\x33\x50\xf1\xc4\x50\xf2\xb5\x50\xf1\xa6\x50\x97\xe3"
        !          64290:             "\x13\xd4\x13\xd3\x23\xc4\x23\x50\xf1\x73\x33\x50\x64"
        !          64291:             "\x33\xb3\x43\xa4\x43\xa3\x53\x94\x53\x93\x63\x84\x63"
        !          64292:             "\x83\x73\x74\x73\x50\xf1\x23\x83\x50\x14\x83\x63\x93"
        !          64293:             "\x54\x93\x53\xa3\x54\x93\x63\x93\x64\x83\x50\xf1\x23"
        !          64294:             "\x83\x50\x24\x73\x83\x73\x84\x63\x93\x63\x94\x53\xa3"
        !          64295:             "\x53\xa4\x43\xb3\x43\xb4\x33\x50\xf1\x73\x33\x50\x74"
        !          64296:             "\x23\xd3\x23\xd4\x13\xe3\x13\xe7\x50\xf1\xa6\x50\xf2"
        !          64297:             "\xb5\x50\xf1\xc4\x50\xd3\xe0\x44\xe0\x43\xe0\x44\xe0"
        !          64298:             "\x43\xe0\x44\x20\xf1\xe0\x23\x20\xe0\x24\xe0\x43\xe0"
        !          64299:             "\x44\xe0\x43\xe0\x52" }  },
        !          64300:       /* --- pixel bitmap for bbold600 char#95 (noname) --- */
        !          64301:       {  95,56123,                      /* character number, location */
        !          64302:          62, 2,  -21, 2,      /* topleft row,col, and botleft row,col */
        !          64303:           { 21,   83, 3,323, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          64304:             "\x12\xe0\x43\xe0\x44\xe0\x43\xe0\x44\xe0\x20\xf1\x23"
        !          64305:             "\xe0\x20\x24\xe0\x43\xe0\x44\xe0\x43\xe0\x44\xe0\x43"
        !          64306:             "\xd0\xf1\x54\xc0\xf2\x55\xb0\xf1\x56\xa0\x57\xe3\x13"
        !          64307:             "\xe3\x14\xd3\x23\xd3\x24\x70\xf1\x53\x33\x70\x53\x34"
        !          64308:             "\xb3\x43\xb3\x44\xa3\x53\xa3\x54\x93\x63\x93\x64\x83"
        !          64309:             "\x73\x83\x74\x20\xf1\x53\x83\x20\x53\x84\x63\x93\x63"
        !          64310:             "\x94\x53\xa3\x53\x94\x53\x93\x63\x84\x10\xf1\x53\x83"
        !          64311:             "\x20\x53\x74\x73\x73\x83\x64\x83\x63\x93\x54\x93\x53"
        !          64312:             "\xa3\x44\xa3\x43\xb3\x34\x60\xf1\x53\x33\x70\x53\x24"
        !          64313:             "\xc3\x23\xd3\x14\xd3\x13\xe7\x90\xf1\x56\xa0\xf2\x55"
        !          64314:             "\xb0\xf1\x54\xc0\x53\xe0\x34\xe0\x33\xe0\x34\xe0\x33"
        !          64315:             "\xe0\x34\xe0\x10\xf1\x23\xe0\x20\x14\xe0\x33\xe0\x34"
        !          64316:             "\xe0\x33\xe0\x52\xe0\x44" }  },
        !          64317:       /* --- pixel bitmap for bbold600 char#96 (noname) --- */
        !          64318:       {  96,56590,                      /* character number, location */
        !          64319:          58, 2,   26, 2,      /* topleft row,col, and botleft row,col */
        !          64320:           { 18,   32, 3,81, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          64321:             "\xd3\xe4\xc6\xb5\xc5\xc4\xd4\xd4\xd4\xe3\xe4\xe3\xe4"
        !          64322:             "\xe3\xe4\x16\x7d\x5e\x46\x45\x25\x84\x14\xa3\x14\xa4"
        !          64323:             "\x0f\x33\xc3\x04\xa4\x13\xa3\x24\x84\x35\x45\x5c\x7a"
        !          64324:             "\xa6\x64" }  },
        !          64325:       /* --- pixel bitmap for bbold600 char#97 a --- */
        !          64326:       {  97,33720,                      /* character number, location */
        !          64327:          38, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
        !          64328:           { 35,   40, 3,221, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          64329:             "\xd9\xe0\xae\xe0\x5e\x04\x62\x86\x78\x33\x68\xa6\x23"
        !          64330:             "\x55\x13\xc5\x13\x54\x23\xe7\x44\x33\xe0\x16\x34\x43"
        !          64331:             "\xe0\x25\x33\x53\xe0\x34\x24\x53\xe0\x43\x23\x63\xe0"
        !          64332:             "\x43\x14\x63\xe0\x43\xf1\x13\x73\xe0\x43\x04\x73\xe0"
        !          64333:             "\x43\x0f\x73\x83\xe0\x43\x04\x73\xe0\x43\xf1\x13\x73"
        !          64334:             "\xe0\x43\x14\x63\xe0\x43\x23\x63\xe0\x43\x24\x53\xe0"
        !          64335:             "\x43\x33\x53\xe0\x34\x34\x43\xe0\x25\x44\x33\xe0\x16"
        !          64336:             "\x54\x23\xe7\x55\x13\xc5\x13\x68\xa6\x23\x86\x78\x33"
        !          64337:             "\x9e\x04\x62\xbe\xe0\x99\xd4" }  },
        !          64338:       /* --- pixel bitmap for bbold600 char#98 b --- */
        !          64339:       {  98,34153,                      /* character number, location */
        !          64340:          58, 4,   -2, 4,      /* topleft row,col, and botleft row,col */
        !          64341:           { 45,   60, 3,281, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          64342:             "\x1d\xe0\xe0\x3f\x1e\xe0\xe0\x3f\xe3\x83\xe0\xe0\x3f"
        !          64343:             "\x13\x83\xe0\xe0\x33\x83\x99\xd3\x83\x6e\xb3\x83\x4e"
        !          64344:             "\x04\x93\x83\x37\x77\x73\x83\x25\xd5\x63\x83\x14\xe0"
        !          64345:             "\x25\x53\x87\xe0\x54\x43\x86\xe0\x73\x43\x85\xe0\x84"
        !          64346:             "\x33\x84\xe0\xa3\x33\x83\xe0\xb4\x23\x83\xe0\xc3\x23"
        !          64347:             "\x83\xe0\xc4\x1f\x13\x83\xe0\xd3\x13\x83\xe0\xd4\x0f"
        !          64348:             "\x73\x83\xe0\xe3\x03\x83\xe0\xd4\x0f\x13\x83\xe0\xd3"
        !          64349:             "\x13\x83\xe0\xc4\x13\x83\xe0\xc3\x23\x83\xe0\xb4\x23"
        !          64350:             "\x84\xe0\xa3\x33\x85\xe0\x84\x33\x86\xe0\x73\x43\x87"
        !          64351:             "\xe0\x54\x43\x83\x14\xe0\x25\x5e\x25\xd5\x6e\x37\x77"
        !          64352:             "\x8d\x4e\x04\xe0\xe0\x1e\x01\xe0\xe0\x59\xd0" }  },
        !          64353:       /* --- pixel bitmap for bbold600 char#99 c --- */
        !          64354:       {  99,34674,                      /* character number, location */
        !          64355:          38, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
        !          64356:           { 35,   40, 3,203, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          64357:             "\xd9\xe0\xae\xe0\x5e\x04\xe0\x26\x78\xc8\xa6\xa5\x13"
        !          64358:             "\xc5\x94\x23\xe4\x74\x33\xe0\x14\x54\x43\xe0\x24\x43"
        !          64359:             "\x53\xe0\x34\x24\x53\xe0\x43\x23\x63\xe0\x52\x14\x63"
        !          64360:             "\xe0\x70\xf1\x13\x73\xe0\x74\x73\xe0\x7f\x73\x83\xe0"
        !          64361:             "\x74\x73\xe0\x70\xf1\x13\x73\xe0\x70\x14\x63\xe0\x93"
        !          64362:             "\x63\xe0\x52\x24\x53\xe0\x43\x33\x53\xe0\x34\x34\x43"
        !          64363:             "\xe0\x24\x54\x33\xe0\x14\x74\x23\xe4\x85\x13\xc5\xa8"
        !          64364:             "\xa6\xd6\x78\xe0\x1e\x04\xe0\x5e\xe0\x99\xd0" }  },
        !          64365:       /* --- pixel bitmap for bbold600 char#100 d --- */
        !          64366:       { 100,35059,                      /* character number, location */
        !          64367:          58, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
        !          64368:           { 35,   60, 3,243, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          64369:             "\xe0\xe0\x52\xfe\xe0\xe0\x43\xf3\xe0\xe0\x43\xd9\xa3"
        !          64370:             "\xbe\x73\x9e\x04\x53\x86\x78\x33\x68\xa6\x23\x55\x13"
        !          64371:             "\xc5\x13\x54\x23\xe7\x44\x33\xe0\x16\x34\x43\xe0\x25"
        !          64372:             "\x33\x53\xe0\x34\x24\x53\xe0\x43\x23\x63\xe0\x43\x14"
        !          64373:             "\x63\xe0\x43\xf1\x13\x73\xe0\x43\x04\x73\xe0\x43\x0f"
        !          64374:             "\x73\x83\xe0\x43\x04\x73\xe0\x43\xf1\x13\x73\xe0\x43"
        !          64375:             "\x14\x63\xe0\x43\x23\x63\xe0\x43\x24\x53\xe0\x43\x33"
        !          64376:             "\x53\xe0\x34\x34\x43\xe0\x25\x44\x33\xe0\x16\x54\x23"
        !          64377:             "\xe7\x55\x13\xc5\x13\x68\xa6\x23\x86\x78\x33\x9e\x04"
        !          64378:             "\x62\xbe\xe0\x99\xd4" }  },
        !          64379:       /* --- pixel bitmap for bbold600 char#101 e --- */
        !          64380:       { 101,35536,                      /* character number, location */
        !          64381:          38, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
        !          64382:           { 35,   40, 3,217, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          64383:             "\xd9\xe0\xae\xe0\x5e\x04\xe0\x26\x77\xd8\xa5\xb5\x13"
        !          64384:             "\xc4\xa4\x23\xd4\x84\x33\xe4\x64\x43\xe0\x14\x53\x53"
        !          64385:             "\xe0\x23\x44\x53\xe0\x24\x33\x63\xe0\x33\x24\x63\xe0"
        !          64386:             "\x33\x23\x73\xe0\x34\x13\x73\xe0\x47\x73\xe0\x43\x0f"
        !          64387:             "\x23\x8e\x0a\x0f\x43\x83\xe0\x74\x73\xe0\x70\xf1\x13"
        !          64388:             "\x73\xe0\x70\x14\x63\xe0\x93\x63\xe0\x52\x24\x53\xe0"
        !          64389:             "\x43\x33\x53\xe0\x34\x34\x43\xe0\x24\x54\x33\xe0\x14"
        !          64390:             "\x74\x23\xe4\x85\x13\xc5\xa8\xa6\xd6\x78\xe0\x1e\x04"
        !          64391:             "\xe0\x5e\xe0\x99\xd3" }  },
        !          64392:       /* --- pixel bitmap for bbold600 char#102 f --- */
        !          64393:       { 102,35929,                      /* character number, location */
        !          64394:          60, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          64395:           { 28,   60, 3,99, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          64396:             "\xa8\xe0\x4c\xe0\x1e\x01\xc8\x36\xa4\x23\x64\x84\x33"
        !          64397:             "\x74\x64\x43\x84\x44\x53\x94\x33\x63\xa3\x24\x63\xa4"
        !          64398:             "\x13\x73\xb3\x13\x73\xc6\x73\xef\xa3\x83\xef\x23\x8a"
        !          64399:             "\x7f\xe3\x83\xef\xe3\x83\xef\x1e\xe0\x1d\xe0" }  },
        !          64400:       /* --- pixel bitmap for bbold600 char#103 g --- */
        !          64401:       { 103,36382,                      /* character number, location */
        !          64402:          38, 2,  -18, 2,      /* topleft row,col, and botleft row,col */
        !          64403:           { 35,   56, 3,303, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          64404:             "\xd9\xe0\xae\xe0\x5e\x04\x62\x86\x78\x33\x68\xa6\x23"
        !          64405:             "\x55\x13\xc5\x13\x54\x23\xe7\x44\x33\xe0\x16\x34\x43"
        !          64406:             "\xe0\x25\x33\x53\xe0\x34\x24\x53\xe0\x43\x23\x63\xe0"
        !          64407:             "\x43\x14\x63\xe0\x43\xf1\x13\x73\xe0\x43\x04\x73\xe0"
        !          64408:             "\x43\x0f\x73\x83\xe0\x43\x04\x73\xe0\x43\xf1\x13\x73"
        !          64409:             "\xe0\x43\x14\x63\xe0\x43\x23\x63\xe0\x43\x24\x53\xe0"
        !          64410:             "\x43\x33\x53\xe0\x34\x34\x43\xe0\x25\x44\x33\xe0\x16"
        !          64411:             "\x54\x23\xe7\x55\x13\xc5\x13\x68\xa6\x23\x86\x78\x33"
        !          64412:             "\x9e\x04\x53\xbe\x73\xd9\xa3\xe0\xe0\x34\xf2\xe0\xe0"
        !          64413:             "\x33\x10\xe0\xe0\x24\xe0\xe0\x33\xe0\xe0\x34\xe0\xe0"
        !          64414:             "\x24\x42\xe0\xb3\x44\xe0\x94\x55\xe0\x55\x77\xe6\x9a"
        !          64415:             "\x87\xce\x07\xe0\x3e\x02\xe0\x9a\xd0" }  },
        !          64416:       /* --- pixel bitmap for bbold600 char#104 h --- */
        !          64417:       { 104,36861,                      /* character number, location */
        !          64418:          58, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          64419:           { 38,   58, 3,150, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          64420:             "\x1d\xe0\xaf\x1e\xe0\xaf\xe3\x83\xe0\xaf\x13\x83\xe0"
        !          64421:             "\xa3\x83\x68\xa3\x83\x4c\x83\x83\x2e\x02\x63\x83\x16"
        !          64422:             "\x66\x53\x88\xa5\x43\x86\xe3\x43\x85\xe0\x14\x33\x85"
        !          64423:             "\xe0\x24\x23\x84\xe0\x43\x23\x84\xe0\x44\x1f\x13\x83"
        !          64424:             "\xe0\x63\x13\x83\xe0\x64\x0f\xe3\x83\xe0\x73\x0f\x63"
        !          64425:             "\x83\xe0\x73\x0f\x1e\xe0\x73\x1d\xe0\x82" }  },
        !          64426:       /* --- pixel bitmap for bbold600 char#105 i --- */
        !          64427:       { 105,37368,                      /* character number, location */
        !          64428:          58, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          64429:           { 18,   58, 3,93, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          64430:             "\x66\xaa\x7c\x55\x45\x34\x84\x23\xa3\x14\xa4\x0f\x33"
        !          64431:             "\xc3\x04\xa4\x13\xa3\x24\x84\x35\x45\x5c\x7a\xa6\x60"
        !          64432:             "\xf3\xe0\x40\x3d\x20\xf1\x2e\x20\xfe\x23\x83\x20\xfe"
        !          64433:             "\x23\x83\x20\xf1\x2e\x20\x3d\x24" }  },
        !          64434:       /* --- pixel bitmap for bbold600 char#106 j --- */
        !          64435:       { 106,37771,                      /* character number, location */
        !          64436:          58, 0,  -18, 0,      /* topleft row,col, and botleft row,col */
        !          64437:           { 30,   76, 3,185, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          64438:             "\xe0\x46\xe0\x8a\xe0\x5c\xe0\x35\x45\xe0\x14\x84\xe3"
        !          64439:             "\xa3\xd4\xa4\xf3\xc3\xc3\xc4\xa4\xd3\xa3\xe4\x84\xe0"
        !          64440:             "\x15\x45\xe0\x3c\xe0\x5a\xe0\x86\x60\xf3\xe0\xe0\x20"
        !          64441:             "\xe0\x1d\x20\xf1\xee\x20\xfe\xe3\x83\x20\xfe\xe3\x83"
        !          64442:             "\x20\xf5\xe3\x83\x20\xe3\x74\x20\xf2\xe3\x73\x30\xe3"
        !          64443:             "\x64\xe0\x33\x63\xe0\x43\x54\x52\xb3\x53\x54\xa3\x44"
        !          64444:             "\x64\x93\x34\x85\x73\x24\xa7\x48\xce\x03\xe0\x1e\xe0"
        !          64445:             "\x59\xc3" }  },
        !          64446:       /* --- pixel bitmap for bbold600 char#107 k --- */
        !          64447:       { 107,38254,                      /* character number, location */
        !          64448:          58, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          64449:           { 38,   58, 3,264, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          64450:             "\x1d\xe0\xaf\x1e\xe0\xaf\xe3\x83\xe0\xaf\x33\x83\xe0"
        !          64451:             "\xa3\x83\xe0\x76\x83\xe0\x67\x83\xe0\x58\x83\xe0\x44"
        !          64452:             "\x23\x83\xe0\x25\x33\x83\xe0\x15\x43\x83\xe5\x53\x83"
        !          64453:             "\xd4\x73\x83\xb5\x83\x83\xa5\x93\x83\x95\xa3\x83\x84"
        !          64454:             "\xc3\x83\x65\xd3\x83\x55\xe3\x83\x45\xe0\x13\x83\x34"
        !          64455:             "\xe0\x33\x83\x17\xe0\x23\x8c\xe0\x13\x87\x24\xe3\x85"
        !          64456:             "\x54\xd3\x84\x74\xc3\x83\x93\xc3\x83\x94\xb3\x83\xa4"
        !          64457:             "\xa3\x83\xb4\x93\x83\xc4\x83\x83\xd4\x73\x83\xe4\x63"
        !          64458:             "\x83\xe0\x14\x53\x83\xe0\x24\x43\x83\xe0\x34\x33\x83"
        !          64459:             "\xe0\x44\x23\x83\xe0\x54\x1e\xe0\x6e\x04\xe0\x73\x1d"
        !          64460:             "\xe0\x82" }  },
        !          64461:       /* --- pixel bitmap for bbold600 char#108 l --- */
        !          64462:       { 108,38753,                      /* character number, location */
        !          64463:          58, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          64464:           { 14,   58, 3,64, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          64465:             "\x1d\x0f\x1e\x0f\xe3\x83\x0f\xe3\x83\x0f\xc3\x83\x04"
        !          64466:             "\x73\xf1\x13\x73\x14\x63\x23\x63\x24\x53\x34\x43\x44"
        !          64467:             "\x33\x55\x13\x68\x77\x95" }  },
        !          64468:       /* --- pixel bitmap for bbold600 char#109 m --- */
        !          64469:       { 109,39182,                      /* character number, location */
        !          64470:          38, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          64471:           { 51,   38, 3,158, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          64472:             "\xe0\x47\xc6\xe0\xab\x8a\x7d\x1d\x6c\x5e\x05\x55\x45"
        !          64473:             "\x45\x4e\x03\x94\x24\x84\x33\x85\xb3\x23\xa4\x23\x84"
        !          64474:             "\xc8\xb3\x23\x84\xd6\xc4\x1f\x13\x83\xe6\xd3\x13\x83"
        !          64475:             "\xe0\x14\xe3\x13\x83\xe0\x14\xe4\x0f\x53\x83\xe0\x14"
        !          64476:             "\xe0\x13\x0f\xe3\x83\xe0\x23\xe0\x13\x0f\x13\x83\xe0"
        !          64477:             "\x23\xe0\x13\x0f\x1e\xe0\x23\xe0\x13\x1d\xe0\x22\xe0"
        !          64478:             "\x32" }  },
        !          64479:       /* --- pixel bitmap for bbold600 char#110 n --- */
        !          64480:       { 110,39681,                      /* character number, location */
        !          64481:          38, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          64482:           { 38,   38, 3,116, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          64483:             "\xe0\x68\xe0\xec\x9d\x2e\x02\x6e\x16\x66\x5e\x05\xa5"
        !          64484:             "\x43\x86\xe3\x43\x85\xe0\x14\x33\x85\xe0\x24\x23\x84"
        !          64485:             "\xe0\x43\x23\x84\xe0\x44\x1f\x13\x83\xe0\x63\x13\x83"
        !          64486:             "\xe0\x64\x0f\xe3\x83\xe0\x73\x0f\x63\x83\xe0\x73\x0f"
        !          64487:             "\x1e\xe0\x73\x1d\xe0\x82" }  },
        !          64488:       /* --- pixel bitmap for bbold600 char#111 o --- */
        !          64489:       { 111,40100,                      /* character number, location */
        !          64490:          38, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
        !          64491:           { 35,   40, 3,207, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          64492:             "\xd9\xe0\xad\xe0\x6e\x03\xe0\x36\x76\xe8\x96\xb5\x13"
        !          64493:             "\xb5\xa4\x23\xc4\x94\x33\xd4\x74\x43\xe4\x63\x53\xe0"
        !          64494:             "\x13\x54\x53\xe0\x14\x43\x63\xe0\x23\x34\x63\xe0\x24"
        !          64495:             "\x10\xf1\x13\x73\xe0\x33\x14\x73\xe0\x34\x0f\x73\x83"
        !          64496:             "\xe0\x43\x04\x73\xe0\x34\xf1\x13\x73\xe0\x33\x10\x14"
        !          64497:             "\x63\xe0\x24\x33\x63\xe0\x23\x44\x53\xe0\x14\x53\x53"
        !          64498:             "\xe0\x13\x64\x43\xe4\x74\x33\xd4\x94\x23\xc4\xa5\x13"
        !          64499:             "\xb5\xb8\x96\xe6\x76\xe0\x3e\x03\xe0\x6d\xe0\xa9\xd3" }  },
        !          64500:       /* --- pixel bitmap for bbold600 char#112 p --- */
        !          64501:       { 112,40517,                      /* character number, location */
        !          64502:          38, 4,  -16, 4,      /* topleft row,col, and botleft row,col */
        !          64503:           { 45,   54, 3,271, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          64504:             "\xe0\x99\xe0\xe0\x5e\xcd\x4e\x04\x9e\x37\x77\x7e\x25"
        !          64505:             "\xd5\x63\x83\x14\xe0\x25\x53\x87\xe0\x54\x43\x86\xe0"
        !          64506:             "\x73\x43\x85\xe0\x84\x33\x84\xe0\xa3\x33\x83\xe0\xb4"
        !          64507:             "\x23\x83\xe0\xc3\x23\x83\xe0\xc4\x1f\x13\x83\xe0\xd3"
        !          64508:             "\x13\x83\xe0\xd4\x0f\x73\x83\xe0\xe3\x03\x83\xe0\xd4"
        !          64509:             "\x0f\x13\x83\xe0\xd3\x13\x83\xe0\xc4\x13\x83\xe0\xc3"
        !          64510:             "\x23\x83\xe0\xb4\x23\x84\xe0\xa3\x33\x85\xe0\x84\x33"
        !          64511:             "\x86\xe0\x73\x43\x87\xe0\x54\x43\x83\x14\xe0\x25\x53"
        !          64512:             "\x83\x25\xd5\x63\x83\x37\x77\x73\x83\x4e\x04\x93\x83"
        !          64513:             "\x6e\x01\xa3\x83\x99\xdf\xa3\x83\xe0\xe0\x3f\x1e\xe0"
        !          64514:             "\xe0\x30\x1d\xe0\xe0\x30" }  },
        !          64515:       /* --- pixel bitmap for bbold600 char#113 q --- */
        !          64516:       { 113,41014,                      /* character number, location */
        !          64517:          38, 2,  -16, 2,      /* topleft row,col, and botleft row,col */
        !          64518:           { 35,   54, 3,236, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          64519:             "\xd9\xe0\xae\xe0\x5e\x04\x62\x86\x78\x33\x68\xa6\x23"
        !          64520:             "\x55\x13\xc5\x13\x54\x23\xe7\x44\x33\xe0\x16\x34\x43"
        !          64521:             "\xe0\x25\x33\x53\xe0\x34\x24\x53\xe0\x43\x23\x63\xe0"
        !          64522:             "\x43\x14\x63\xe0\x43\xf1\x13\x73\xe0\x43\x04\x73\xe0"
        !          64523:             "\x43\x0f\x73\x83\xe0\x43\x04\x73\xe0\x43\xf1\x13\x73"
        !          64524:             "\xe0\x43\x14\x63\xe0\x43\x23\x63\xe0\x43\x24\x53\xe0"
        !          64525:             "\x43\x33\x53\xe0\x34\x34\x43\xe0\x25\x44\x33\xe0\x16"
        !          64526:             "\x54\x23\xe7\x55\x13\xc5\x13\x68\xa6\x23\x86\x78\x33"
        !          64527:             "\x9e\x04\x53\xbe\x73\xd9\xa3\xfc\xe0\xe0\x43\xe0\xe0"
        !          64528:             "\x52" }  },
        !          64529:       /* --- pixel bitmap for bbold600 char#114 r --- */
        !          64530:       { 114,41479,                      /* character number, location */
        !          64531:          38, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          64532:           { 38,   38, 3,107, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          64533:             "\xe0\x69\xe0\xdd\x8d\x2e\x03\x5e\x16\x76\x4e\x05\xb5"
        !          64534:             "\x33\x86\xe0\x14\x23\x85\xe0\x33\x23\x85\xe0\x34\x13"
        !          64535:             "\x84\xe0\x53\x13\x84\xe0\x57\x83\xe0\x76\x83\xe0\x82"
        !          64536:             "\x0f\xe3\x83\xe0\xaf\x73\x83\xe0\xaf\x1e\xe0\xa0\x1d"
        !          64537:             "\xe0\xaf" }  },
        !          64538:       /* --- pixel bitmap for bbold600 char#115 s --- */
        !          64539:       { 115,41846,                      /* character number, location */
        !          64540:          38, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
        !          64541:           { 28,   40, 3,183, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          64542:             "\x99\xe0\x2e\xde\x03\x97\x13\x36\x75\x43\x64\x64\x53"
        !          64543:             "\x74\x44\x63\x84\x24\x73\x94\x13\x83\xa3\x13\x83\xa7"
        !          64544:             "\x83\xb6\x83\xc6\x73\xe0\x13\x73\xe0\x15\x53\xe0\x27"
        !          64545:             "\x23\xe0\x3e\x01\xe0\x1e\x02\xe0\x1e\x01\xe0\x87\xe0"
        !          64546:             "\xa5\xe0\xb4\xe0\xb4\xe0\xb3\xe0\xb4\xf2\xe0\xb3\x12"
        !          64547:             "\xe0\x86\xe0\x87\xe0\x64\x13\xe0\x63\x24\xe0\x44\x34"
        !          64548:             "\xe0\x24\x54\xe4\x74\xc4\x96\x66\xbe\x02\xde\xe0\x38"
        !          64549:             "\xa4" }  },
        !          64550:       /* --- pixel bitmap for bbold600 char#116 t --- */
        !          64551:       { 116,42197,                      /* character number, location */
        !          64552:          58, 4,   -2, 4,      /* topleft row,col, and botleft row,col */
        !          64553:           { 28,   60, 3,107, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          64554:             "\x1d\xef\x1e\xef\xe3\x83\xef\x33\x83\xef\x23\x8e\x03"
        !          64555:             "\x0f\xe3\x83\xef\x63\x83\xe4\x73\xe0\x13\x73\xc2\x13"
        !          64556:             "\x73\xb3\x14\x63\xa4\x23\x63\xa3\x34\x53\x94\x44\x43"
        !          64557:             "\x84\x64\x33\x74\x84\x23\x64\xa8\x36\xce\x01\xed\xe0"
        !          64558:             "\x38\xa0" }  },
        !          64559:       /* --- pixel bitmap for bbold600 char#117 u --- */
        !          64560:       { 117,42650,                      /* character number, location */
        !          64561:          36, 4,   -2, 4,      /* topleft row,col, and botleft row,col */
        !          64562:           { 35,   38, 3,139, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          64563:             "\x1d\xe0\x52\x0f\x1e\xe0\x43\x0f\xe3\x83\xe0\x43\x0f"
        !          64564:             "\x33\x83\xe0\x43\x04\x73\xe0\x34\xf1\x13\x73\xe0\x34"
        !          64565:             "\x14\x63\xe0\x25\x23\x63\xe0\x25\x24\x53\xe0\x16\x33"
        !          64566:             "\x53\xe0\x16\x34\x43\xe7\x44\x33\xd4\x13\x54\x23\xc4"
        !          64567:             "\x23\x55\x13\xb5\x23\x68\x96\x33\x86\x76\x53\x9e\x03"
        !          64568:             "\x72\xbd\xe0\xa9\xd0" }  },
        !          64569:       /* --- pixel bitmap for bbold600 char#118 v --- */
        !          64570:       { 118,43077,                      /* character number, location */
        !          64571:          36, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          64572:           { 35,   36, 3,215, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          64573:             "\x1d\xe0\x5e\x02\xe0\x4e\x04\xe0\x24\x13\x83\xe0\x23"
        !          64574:             "\x24\x74\xe4\x33\x83\xe3\x44\x74\xc4\x53\x83\xc3\x64"
        !          64575:             "\x74\xa4\x73\x83\xa3\x84\x74\x84\x93\x83\x83\xa4\x74"
        !          64576:             "\x64\xb3\x83\x63\xc4\x74\x44\xd3\x83\x43\xe4\x74\x24"
        !          64577:             "\x70\xf1\x83\x83\x23\x80\x84\x78\xe0\x33\x86\xe0\x44"
        !          64578:             "\x76\xe0\x53\x84\xe0\x64\x74\xe0\x73\x73\xe0\x84\x54"
        !          64579:             "\xe0\x93\x53\xe0\xa4\x34\xe0\xb3\x33\xe0\xc4\x14\xe0"
        !          64580:             "\xd3\x13\xe0\xe7\xe0\xf1\xe0\x15\xe0\x10\xe0\x23\xe0"
        !          64581:             "\xe0\x52\xe0\x2e" }  },
        !          64582:       /* --- pixel bitmap for bbold600 char#119 w --- */
        !          64583:       { 119,43452,                      /* character number, location */
        !          64584:          36, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          64585:           { 51,   36, 3,303, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          64586:             "\x1d\xe0\xe0\x7e\x02\xe0\xe0\x6e\x04\xe0\xe0\x44\xf1"
        !          64587:             "\x13\x83\xe0\xe0\x43\x10\x14\x74\xe0\xe0\x24\x10\xf1"
        !          64588:             "\x23\x83\xe0\xe0\x23\x20\x24\x74\xe0\xe4\x20\xf1\x33"
        !          64589:             "\x83\xe0\xe3\x30\x34\x74\xe0\xc4\x73\x83\xe0\xc3\x84"
        !          64590:             "\x74\xe0\xa4\x93\x83\x62\xe0\x23\xa3\x83\x53\xe0\x23"
        !          64591:             "\xa4\x74\x35\xe4\xb3\x83\x27\xd3\xc3\x83\x23\x13\xd3"
        !          64592:             "\xc4\x78\x14\xb4\xd3\x86\x33\xb3\xe3\x86\x34\xa3\xe4"
        !          64593:             "\x75\x54\x84\xe0\x13\x83\x73\x83\xe0\x24\x64\x74\x64"
        !          64594:             "\xe0\x33\x54\x94\x53\xe0\x43\x53\xb3\x53\xe0\x44\x34"
        !          64595:             "\xb4\x34\xe0\x53\x24\xd4\x23\xe0\x63\x23\xe0\x13\x23"
        !          64596:             "\xe0\x68\xe0\x18\xa0\xf1\xb6\xe0\x36\xb0\xb5\xe0\x55"
        !          64597:             "\xe0\x93\xe0\x73\xe0\xb2\xe0\x82\xc0" }  },
        !          64598:       /* --- pixel bitmap for bbold600 char#120 x --- */
        !          64599:       { 120,43893,                      /* character number, location */
        !          64600:          36, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          64601:           { 35,   36, 3,222, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          64602:             "\x12\xe0\x5e\x02\xe0\x4e\x04\xe0\x2e\x01\x14\xe4\x74"
        !          64603:             "\x34\xd3\x83\x54\xb4\x74\x64\xa3\x83\x84\x84\x74\x94"
        !          64604:             "\x64\x74\xb4\x53\x83\xd4\x34\x74\xe4\x14\x74\xe0\x27"
        !          64605:             "\x83\xe0\x46\x74\xe0\x54\x74\xe0\x63\x83\xe0\x64\x74"
        !          64606:             "\xe0\x63\x83\xe0\x64\x74\xe0\x54\x74\xe0\x63\x83\xe0"
        !          64607:             "\x64\x74\xe0\x54\x76\xe0\x43\x87\xe0\x24\x74\x14\xe4"
        !          64608:             "\x74\x34\xd3\x83\x54\xb4\x74\x64\xa3\x83\x84\x84\x74"
        !          64609:             "\x94\x64\x74\xb4\x53\x83\xd4\x34\x74\xe4\x1e\x01\xe0"
        !          64610:             "\x2e\x04\xe0\x43\x1d\xe0\x52" }  },
        !          64611:       /* --- pixel bitmap for bbold600 char#121 y --- */
        !          64612:       { 121,44282,                      /* character number, location */
        !          64613:          36, 2,  -18, 2,      /* topleft row,col, and botleft row,col */
        !          64614:           { 35,   54, 3,325, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          64615:             "\x1d\xe0\x5e\x02\xe0\x4e\x04\xe0\x24\x13\x83\xe0\x23"
        !          64616:             "\x24\x74\xe4\x33\x83\xe3\x44\x74\xc4\x53\x83\xc3\x64"
        !          64617:             "\x74\xa4\x73\x83\xa3\x84\x74\x84\x93\x83\x83\xa4\x74"
        !          64618:             "\x64\xb3\x83\x63\xc4\x74\x44\xd3\x83\x43\xe4\x74\x24"
        !          64619:             "\x70\xf1\x83\x83\x23\x80\x84\x78\xe0\x33\x86\xe0\x44"
        !          64620:             "\x76\xe0\x53\x84\xe0\x64\x74\xe0\x73\x73\xe0\x84\x54"
        !          64621:             "\xe0\x93\x53\xe0\xa4\x34\xe0\xb3\x33\xe0\xc4\x14\xe0"
        !          64622:             "\xd3\x13\xe0\xe7\xe0\xf1\xe0\x15\xe0\x10\xe0\x23\xe0"
        !          64623:             "\xe0\x34\xe0\xe0\x33\xe0\xe0\x34\xe0\xe0\x24\xe0\xe0"
        !          64624:             "\x33\xe0\xe0\x34\xe0\xe0\x24\xe0\xe0\x33\xe0\xe0\x34"
        !          64625:             "\xe0\xe0\x24\xe0\xe0\x24\xe0\xe0\x24\xe0\xe0\x24\xe0"
        !          64626:             "\xe0\x24\xe0\xe0\x15\xe0\xe0\x15\xe0\xe0\x15\xe0\xe0"
        !          64627:             "\x14\xe0\xe0\x33\xe0\xe0\x43" }  },
        !          64628:       /* --- pixel bitmap for bbold600 char#122 z --- */
        !          64629:       { 122,44693,                      /* character number, location */
        !          64630:          36, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          64631:           { 35,   36, 3,212, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          64632:             "\x1e\x0e\x0e\x0e\x0d\x1e\x0e\x06\xe0\x54\x74\xe0\x63"
        !          64633:             "\x83\xe0\x64\x74\xe0\x63\x83\xe0\x64\x74\xe0\x54\x74"
        !          64634:             "\xe0\x63\x83\xe0\x64\x74\xe0\x54\x74\xe0\x63\x83\xe0"
        !          64635:             "\x64\x74\xe0\x54\x74\xe0\x63\x83\xe0\x64\x74\xe0\x63"
        !          64636:             "\x83\xe0\x64\x74\xe0\x54\x74\xe0\x63\x83\xe0\x64\x74"
        !          64637:             "\xe0\x54\x74\xe0\x63\x83\xe0\x64\x74\xe0\x54\x74\xe0"
        !          64638:             "\x63\x83\xe0\x64\x74\xe0\x63\x83\xe0\x64\x74\xe0\x54"
        !          64639:             "\x74\xe0\x63\x83\xe0\x64\x74\xe0\x5f\x1e\x0e\x07\x1e"
        !          64640:             "\x0e\x06" }  },
        !          64641:       /* --- pixel bitmap for bbold600 char#123 \- --- */
        !          64642:       { 123,57422,                      /* character number, location */
        !          64643:          23, 2,   20, 2,      /* topleft row,col, and botleft row,col */
        !          64644:           { 32,    3, 2, 7, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          64645:             "\xff\x01\x00\x20\x01\x1e\x01" }  },
        !          64646:       /* --- pixel bitmap for bbold600 char#124 | --- */
        !          64647:       { 124,56893,                      /* character number, location */
        !          64648:          62, 6,  -21, 6,      /* topleft row,col, and botleft row,col */
        !          64649:           { 14,   83, 2,18, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          64650:             "\x01\x0d\x00\xff\x01\x0e\x00\xff\x4c\x03\x08\x03\x00"
        !          64651:             "\xff\x01\x0e\x01\x0d" }  },
        !          64652:       /* --- pixel bitmap for bbold600 char#125 (noname) --- */
        !          64653:       { 125,57638,                      /* character number, location */
        !          64654:          23, 2,   20, 2,      /* topleft row,col, and botleft row,col */
        !          64655:           { 65,    3, 2, 7, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          64656:             "\xff\x01\x00\x41\x01\x3f\x01" }  },
        !          64657:       /* --- pixel bitmap for bbold600 char#126 (noname) --- */
        !          64658:       { 126,57862,                      /* character number, location */
        !          64659:          58, 2,   26, 2,      /* topleft row,col, and botleft row,col */
        !          64660:           { 41,   32, 3,189, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          64661:             "\xd3\xe0\x63\xe4\xe0\x54\xc6\xe0\x36\xb5\xe0\x45\xc5"
        !          64662:             "\xe0\x45\xc4\xe0\x54\xd4\xe0\x54\xd4\xe0\x54\xd4\xe0"
        !          64663:             "\x54\xe3\xe0\x63\xe4\xe0\x54\xe3\xe0\x63\xe4\xe0\x54"
        !          64664:             "\xe3\xe0\x63\xe4\x16\xc4\x16\x7d\xad\x5e\x9e\x46\x45"
        !          64665:             "\x86\x45\x25\x84\x65\x84\x14\xa3\x64\xa3\x14\xa4\x54"
        !          64666:             "\xa4\x0f\x33\xc3\x53\xc3\x04\xa4\x54\xa4\x13\xa3\x73"
        !          64667:             "\xa3\x24\x84\x74\x84\x35\x45\x95\x45\x5c\xbc\x7a\xda"
        !          64668:             "\xa6\xe0\x36\x63" }  },
        !          64669:       /* --- pixel bitmap for bbold600 char#127 \omega --- */
        !          64670:       { 127,15857,                      /* character number, location */
        !          64671:          36, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
        !          64672:           { 51,   38, 3,287, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          64673:             "\xb3\xe0\xa2\xe0\x65\xe0\x95\xe0\x36\xe0\xa5\xe0\x17"
        !          64674:             "\xe0\xb5\xd4\x13\xe0\xd4\xb4\x23\xe0\xe4\x94\x33\xe0"
        !          64675:             "\xe0\x14\x74\x43\xe0\xe0\x24\x54\x53\xe0\xe0\x34\x43"
        !          64676:             "\x63\xe0\xe0\x43\x34\x63\xe0\xe0\x44\x10\xf1\x13\x73"
        !          64677:             "\xe0\xe0\x53\x14\x73\xe0\xe0\x57\x83\xb2\xe0\x73\x0f"
        !          64678:             "\x63\x83\xa3\xe0\x73\x03\x83\x95\xe0\x67\x73\x95\xe0"
        !          64679:             "\x54\xf1\x13\x73\x95\xe0\x53\x10\x13\x73\x87\xe0\x43"
        !          64680:             "\x24\x63\x83\x13\xe0\x34\x33\x63\x83\x13\xe0\x33\x44"
        !          64681:             "\x53\x74\x14\xe0\x14\x53\x53\x73\x33\xe0\x13\x64\x43"
        !          64682:             "\x64\x34\xd4\x74\x33\x54\x54\xb4\x94\x23\x44\x74\x94"
        !          64683:             "\xb8\x25\x95\x55\xdd\xbd\xe0\x1b\xdb\xe0\x47\xe0\x37"
        !          64684:             "\xa4" }  },
        !          64685:       /* --- trailer  --- */
        !          64686:       { -99, -999,  0,0,0,0, { 0,0,0,0, (pixbyte *)"\0" }  }
        !          64687:    } ;
        !          64688: 
        !          64689: 
1.2       albertel 64690: /* ------------------------------------------------------------------------
1.5     ! raeburn  64691: font sizes 0-10 for rsfs10
1.2       albertel 64692: ------------------------------------------------------------------------ */
                   64693: 
                   64694: /* --- size=0 for .83gf ---
                   64695:  * mf '\mode=eighthre;  input rsfs10'
                   64696:  * --------------------------------------------------------------------- */
                   64697: /* --- fontdef for rsfs83 --- */
                   64698: static	chardef  rsfs83[] =
                   64699:    {
                   64700:       /* --- pixel bitmap for rsfs83 char#65 A --- */
                   64701:       {  65,   35,                      /* character number, location */
                   64702:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   64703:           { 10,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   64704:             "\x00\x03\x06\x0c\x1b\x52\xe8\x70\xc5\x0e" }  },
                   64705:       /* --- pixel bitmap for rsfs83 char#66 B --- */
                   64706:       {  66,   72,                      /* character number, location */
                   64707:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   64708:           { 10,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   64709:             "\xe0\xc3\x8c\x2a\x69\xdc\x81\x07\x8b\x1b" }  },
                   64710:       /* --- pixel bitmap for rsfs83 char#67 C --- */
                   64711:       {  67,  113,                      /* character number, location */
                   64712:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   64713:           {  8,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   64714:             "\xe4\x92\x69\x1e\x12\x1e\x16\x0e" }  },
                   64715:       /* --- pixel bitmap for rsfs83 char#68 D --- */
                   64716:       {  68,  150,                      /* character number, location */
                   64717:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   64718:           {  9,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   64719:             "\x78\x48\x4b\x96\xea\x0a\x12\x12\x1f" }  },
                   64720:       /* --- pixel bitmap for rsfs83 char#69 E --- */
                   64721:       {  69,  195,                      /* character number, location */
                   64722:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   64723:           {  6,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   64724:             "\x30\xce\x33\xc6\x92\x1c" }  },
                   64725:       /* --- pixel bitmap for rsfs83 char#70 F --- */
                   64726:       {  70,  222,                      /* character number, location */
                   64727:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   64728:           {  9,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   64729:             "\xe0\x61\xa1\xc1\x06\x0f\x4b\x86\x03" }  },
                   64730:       /* --- pixel bitmap for rsfs83 char#71 G --- */
                   64731:       {  71,  255,                      /* character number, location */
                   64732:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   64733:           {  8,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   64734:             "\xc8\xa4\x52\x7a\x2e\x38\x10\x0e" }  },
                   64735:       /* --- pixel bitmap for rsfs83 char#72 H --- */
                   64736:       {  72,  292,                      /* character number, location */
                   64737:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   64738:           { 13,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   64739:             "\x00\x1a\xb6\x82\x6b\xf0\x83\x0b\x20\x01\x96\x30\x0c" }  },
                   64740:       /* --- pixel bitmap for rsfs83 char#73 I --- */
                   64741:       {  73,  337,                      /* character number, location */
                   64742:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   64743:           { 10,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   64744:             "\x80\x83\x03\x0d\x2c\x70\xc0\x80\x80\x01" }  },
                   64745:       /* --- pixel bitmap for rsfs83 char#74 J --- */
                   64746:       {  74,  364,                      /* character number, location */
                   64747:           8, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   64748:           { 11,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   64749:             "\x00\x06\x1c\xd0\x40\x05\x16\x60\x80\x02\x0e\x0e\x28"
                   64750:             "\xc0\x00\x00" }  },
                   64751:       /* --- pixel bitmap for rsfs83 char#75 K --- */
                   64752:       {  75,  405,                      /* character number, location */
                   64753:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   64754:           { 13,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   64755:             "\x00\x19\x96\x80\x0b\xa0\x00\x0e\xa0\x00\x52\x30\x06" }  },
                   64756:       /* --- pixel bitmap for rsfs83 char#76 L --- */
                   64757:       {  76,  446,                      /* character number, location */
                   64758:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   64759:           { 12,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   64760:             "\x60\x06\x91\x90\x04\x3f\x40\x00\x02\x10\xf1\x0f" }  },
                   64761:       /* --- pixel bitmap for rsfs83 char#77 M --- */
                   64762:       {  77,  481,                      /* character number, location */
                   64763:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   64764:           { 11,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   64765:             "\x00\x05\x3c\xf0\xe0\x85\x1a\xac\xb0\x62\x13" }  },
                   64766:       /* --- pixel bitmap for rsfs83 char#78 N --- */
                   64767:       {  78,  524,                      /* character number, location */
                   64768:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   64769:           { 13,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   64770:             "\x00\x11\x10\x01\x12\x60\x01\x2a\x20\x03\x22\x30\x04" }  },
                   64771:       /* --- pixel bitmap for rsfs83 char#79 O --- */
                   64772:       {  79,  565,                      /* character number, location */
                   64773:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   64774:           {  6,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   64775:             "\x30\xce\x5b\x4a\x52\x0c" }  },
                   64776:       /* --- pixel bitmap for rsfs83 char#80 P --- */
                   64777:       {  80,  596,                      /* character number, location */
                   64778:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   64779:           { 11,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   64780:             "\xe0\x87\x19\xaa\xe8\xc2\x0e\x10\x40\xc0\x01" }  },
                   64781:       /* --- pixel bitmap for rsfs83 char#81 Q --- */
                   64782:       {  81,  633,                      /* character number, location */
                   64783:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   64784:           {  9,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   64785:             "\xe0\xa0\x21\x25\x85\x05\xc4\x95\x1f" }  },
                   64786:       /* --- pixel bitmap for rsfs83 char#82 R --- */
                   64787:       {  82,  672,                      /* character number, location */
                   64788:           8,-1,    0,-1,      /* topleft row,col, and botleft row,col */
                   64789:           { 10,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   64790:             "\xe0\xc3\x8c\x2a\x75\xcc\x80\x02\x8d\x13" }  },
                   64791:       /* --- pixel bitmap for rsfs83 char#83 S --- */
                   64792:       {  83,  715,                      /* character number, location */
                   64793:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   64794:           { 11,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   64795:             "\x40\x06\x29\xa4\xe0\x03\x02\x08\x60\xc0\x00" }  },
                   64796:       /* --- pixel bitmap for rsfs83 char#84 T --- */
                   64797:       {  84,  748,                      /* character number, location */
                   64798:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   64799:           {  9,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   64800:             "\xe0\x60\xa2\xc2\x02\x02\x04\x04\x07" }  },
                   64801:       /* --- pixel bitmap for rsfs83 char#85 U --- */
                   64802:       {  85,  779,                      /* character number, location */
                   64803:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   64804:           { 10,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   64805:             "\x18\xb0\xa8\x52\x25\x4b\x20\x41\x06\x0f" }  },
                   64806:       /* --- pixel bitmap for rsfs83 char#86 V --- */
                   64807:       {  86,  826,                      /* character number, location */
                   64808:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   64809:           {  8,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   64810:             "\x90\x4a\x2f\x14\x14\x0c\x02\x01" }  },
                   64811:       /* --- pixel bitmap for rsfs83 char#87 W --- */
                   64812:       {  87,  861,                      /* character number, location */
                   64813:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   64814:           {  9,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   64815:             "\x50\x57\xd9\xe2\x44\xc5\x85\x86\x02" }  },
                   64816:       /* --- pixel bitmap for rsfs83 char#88 X --- */
                   64817:       {  88,  910,                      /* character number, location */
                   64818:           8, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   64819:           { 10,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   64820:             "\x30\x63\x43\x07\x1f\x70\x40\xd0\xc5\x0c" }  },
                   64821:       /* --- pixel bitmap for rsfs83 char#89 Y --- */
                   64822:       {  89,  945,                      /* character number, location */
                   64823:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   64824:           {  9,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   64825:             "\x38\x59\xaa\xaa\x32\x03\x86\x04\x07" }  },
                   64826:       /* --- pixel bitmap for rsfs83 char#90 Z --- */
                   64827:       {  90,  990,                      /* character number, location */
                   64828:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   64829:           { 11,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   64830:             "\x60\x86\x3f\x26\xd0\x01\x0e\x10\x40\xe1\x07" }  },
                   64831:       /* --- pixel bitmap for rsfs83 char#127 (noname) --- */
                   64832:       { 127, 1021,                      /* character number, location */
                   64833:           6, 4,    4, 4,      /* topleft row,col, and botleft row,col */
                   64834:           {  3,    2, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   64835:             "\x2e" }  },
                   64836:       /* --- trailer  --- */
                   64837:       { -99, -999,  0,0,0,0, { 0,0,0,0, (pixbyte *)"\0" }  }
                   64838:    } ;
                   64839: 
                   64840: 
                   64841: /* --- size=1 for .100gf ---
                   64842:  * mf '\mode=preview; mag=magstep(-17.87427405946994351363); input rsfs10'
                   64843:  * --------------------------------------------------------------------- */
                   64844: /* --- fontdef for rsfs100 --- */
                   64845: static	chardef  rsfs100[] =
                   64846:    {
                   64847:       /* --- pixel bitmap for rsfs100 char#65 A --- */
                   64848:       {  65, 1279,                      /* character number, location */
                   64849:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   64850:           { 13,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   64851:             "\x00\x10\x80\x01\x28\x80\xc2\x2b\x88\x04\x59\xa0\x06"
                   64852:             "\x59\xe3\x1c\x00" }  },
                   64853:       /* --- pixel bitmap for rsfs100 char#66 B --- */
                   64854:       {  66, 2926,                      /* character number, location */
                   64855:          10,-1,    0,-1,      /* topleft row,col, and botleft row,col */
                   64856:           { 14,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   64857:             "\x80\x3f\x18\x06\x89\x42\x52\x48\x1e\xce\x03\x90\x00"
                   64858:             "\x2e\xe2\x84\xc7\x00" }  },
                   64859:       /* --- pixel bitmap for rsfs100 char#67 C --- */
                   64860:       {  67, 4039,                      /* character number, location */
                   64861:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   64862:           { 10,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   64863:             "\x0c\x0b\x1a\x54\x38\x3e\x20\x80\x07\x15\x54\xf0\x00" }  },
                   64864:       /* --- pixel bitmap for rsfs100 char#68 D --- */
                   64865:       {  68, 5294,                      /* character number, location */
                   64866:          10, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   64867:           { 10,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   64868:             "\xf8\x10\x24\x72\xa8\x51\x3e\x09\x12\x24\xcb\xfc\x00" }  },
                   64869:       /* --- pixel bitmap for rsfs100 char#69 E --- */
                   64870:       {  69, 5908,                      /* character number, location */
                   64871:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   64872:           {  9,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   64873:             "\xe0\xa0\x23\x45\xc6\x43\x40\x8e\x12\x15\x1c\x00" }  },
                   64874:       /* --- pixel bitmap for rsfs100 char#70 F --- */
                   64875:       {  70, 7190,                      /* character number, location */
                   64876:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   64877:           { 12,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   64878:             "\xc0\x03\xc7\x88\x82\x14\xb8\x00\x38\x70\x81\x04\x31"
                   64879:             "\xf0\x00" }  },
                   64880:       /* --- pixel bitmap for rsfs100 char#71 G --- */
                   64881:       {  71, 8436,                      /* character number, location */
                   64882:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   64883:           {  9,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   64884:             "\x8c\x85\xc6\x8a\x92\xdb\x09\x1e\x10\x22\x3c\x00" }  },
                   64885:       /* --- pixel bitmap for rsfs100 char#72 H --- */
                   64886:       {  72, 9995,                      /* character number, location */
                   64887:          10, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   64888:           { 17,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   64889:             "\x00\x88\x81\xc9\x82\x5e\x04\x90\x06\xfe\x03\x92\x00"
                   64890:             "\x92\x00\x20\x01\x32\x12\x1c\x1c\x00" }  },
                   64891:       /* --- pixel bitmap for rsfs100 char#73 I --- */
                   64892:       {  73,11242,                      /* character number, location */
                   64893:          10, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   64894:           { 13,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   64895:             "\x00\x18\xf0\x00\x09\x90\x02\x4a\x40\x05\x70\x00\x01"
                   64896:             "\x12\xc0\x01\x00" }  },
                   64897:       /* --- pixel bitmap for rsfs100 char#74 J --- */
                   64898:       {  74,12649,                      /* character number, location */
                   64899:          10, 0,   -4, 0,      /* topleft row,col, and botleft row,col */
                   64900:           { 16,   14, 3,47, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   64901:             "\xe2\xa4\xb1\x21\xb1\x21\x11\xa1\x11\x21\xa1\x11\x11"
                   64902:             "\xc3\xd1\xe3\xb3\xa4\xa2\x21\xa1\x31\xc3\xc2" }  },
                   64903:       /* --- pixel bitmap for rsfs100 char#75 K --- */
                   64904:       {  75,14288,                      /* character number, location */
                   64905:          10, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   64906:           { 17,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   64907:             "\x00\x88\x81\x89\x80\x8e\x00\x90\x00\xd0\x00\x70\x00"
                   64908:             "\x50\x00\x90\x00\x32\x09\x1c\x0e\x00" }  },
                   64909:       /* --- pixel bitmap for rsfs100 char#76 L --- */
                   64910:       {  76,15525,                      /* character number, location */
                   64911:          10, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   64912:           { 14,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   64913:             "\xc0\x38\x08\x09\x41\x42\x48\xf0\x0f\x20\x00\x08\x00"
                   64914:             "\x01\x3e\xc6\x7f\x00" }  },
                   64915:       /* --- pixel bitmap for rsfs100 char#77 M --- */
                   64916:       {  77,17030,                      /* character number, location */
                   64917:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   64918:           { 16,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   64919:             "\x00\x90\x00\x4c\x00\x26\x00\x33\xc0\x19\xa0\x0c\x60"
                   64920:             "\x06\x50\x05\xa9\x12\x47\x0e" }  },
                   64921:       /* --- pixel bitmap for rsfs100 char#78 N --- */
                   64922:       {  78,18154,                      /* character number, location */
                   64923:          10, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   64924:           { 17,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   64925:             "\x00\x08\x01\x08\x01\x18\x01\x30\x02\x50\x02\x90\x02"
                   64926:             "\x10\x03\x20\x06\x32\x04\x1c\x04\x00" }  },
                   64927:       /* --- pixel bitmap for rsfs100 char#79 O --- */
                   64928:       {  79,19286,                      /* character number, location */
                   64929:          10, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   64930:           { 10,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   64931:             "\xe0\x41\x88\x17\x33\x46\x14\x31\xc2\x08\x11\x38\x00" }  },
                   64932:       /* --- pixel bitmap for rsfs100 char#80 P --- */
                   64933:       {  80,20796,                      /* character number, location */
                   64934:          10, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   64935:           { 14,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   64936:             "\x80\x2f\x58\x04\x91\x41\x52\x48\x13\xce\x03\x08\x00"
                   64937:             "\x02\x62\x80\x07\x00" }  },
                   64938:       /* --- pixel bitmap for rsfs100 char#81 Q --- */
                   64939:       {  81,22059,                      /* character number, location */
                   64940:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   64941:           { 12,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   64942:             "\x80\x03\x56\x10\x09\x51\x88\x04\x27\x00\x01\x08\x7f"
                   64943:             "\xf2\x1f" }  },
                   64944:       /* --- pixel bitmap for rsfs100 char#82 R --- */
                   64945:       {  82,23640,                      /* character number, location */
                   64946:          10,-1,    0,-1,      /* topleft row,col, and botleft row,col */
                   64947:           { 13,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   64948:             "\x80\x1f\x0c\x43\x52\x48\x89\xe4\x60\x06\xa0\x00\x14"
                   64949:             "\x62\xc5\x63\x00" }  },
                   64950:       /* --- pixel bitmap for rsfs100 char#83 S --- */
                   64951:       {  83,24807,                      /* character number, location */
                   64952:          10, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   64953:           { 15,   10, 3,35, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   64954:             "\xc3\x64\x11\x21\x51\x41\x21\x61\x31\x21\x86\xb1\xd1"
                   64955:             "\xd1\x91\x31\xa4\xa1" }  },
                   64956:       /* --- pixel bitmap for rsfs100 char#84 T --- */
                   64957:       {  84,26033,                      /* character number, location */
                   64958:          10, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   64959:           { 13,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   64960:             "\x80\x07\x1c\x43\x12\x48\x02\x27\x00\x02\x40\x00\x04"
                   64961:             "\x42\xc0\x07\x00" }  },
                   64962:       /* --- pixel bitmap for rsfs100 char#85 U --- */
                   64963:       {  85,27332,                      /* character number, location */
                   64964:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   64965:           { 13,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   64966:             "\x70\x80\x13\x4a\x22\x49\x92\x24\x4e\x02\x44\x80\x04"
                   64967:             "\x48\x01\x1f\x00" }  },
                   64968:       /* --- pixel bitmap for rsfs100 char#86 V --- */
                   64969:       {  86,28423,                      /* character number, location */
                   64970:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   64971:           { 11,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   64972:             "\x40\x34\x51\x4d\x3a\x01\x09\x28\xa0\x00\x03\x04\x10"
                   64973:             "\x00" }  },
                   64974:       /* --- pixel bitmap for rsfs100 char#87 W --- */
                   64975:       {  87,29756,                      /* character number, location */
                   64976:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   64977:           { 13,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   64978:             "\x20\xd9\xb2\x74\x13\x34\x81\x25\x68\x02\x2b\xb0\x03"
                   64979:             "\x12\x20\x01\x00" }  },
                   64980:       /* --- pixel bitmap for rsfs100 char#88 X --- */
                   64981:       {  88,31157,                      /* character number, location */
                   64982:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   64983:           { 15,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   64984:             "\xe0\x70\xa8\x04\x52\x01\x69\x80\x1f\x00\x0e\x00\x03"
                   64985:             "\xc0\x08\x51\x82\xc7\x00" }  },
                   64986:       /* --- pixel bitmap for rsfs100 char#89 Y --- */
                   64987:       {  89,32544,                      /* character number, location */
                   64988:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   64989:           { 13,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   64990:             "\x70\x90\x13\x49\x12\x49\x92\x24\x4c\x02\x30\x00\x04"
                   64991:             "\x62\xc0\x03\x00" }  },
                   64992:       /* --- pixel bitmap for rsfs100 char#90 Z --- */
                   64993:       {  90,34185,                      /* character number, location */
                   64994:          10, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   64995:           { 12,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   64996:             "\xf0\x8c\xa8\x94\x47\x11\xcc\x01\x1c\x20\x00\x01\x8f"
                   64997:             "\x70\x07" }  },
                   64998:       /* --- pixel bitmap for rsfs100 char#127 (noname) --- */
                   64999:       { 127,34731,                      /* character number, location */
                   65000:           7, 6,    5, 6,      /* topleft row,col, and botleft row,col */
                   65001:           {  6,    2, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65002:             "\x5e\x08" }  },
                   65003:       /* --- trailer  --- */
                   65004:       { -99, -999,  0,0,0,0, { 0,0,0,0, (pixbyte *)"\0" }  }
                   65005:    } ;
                   65006: 
                   65007: 
                   65008: /* --- size=2 for .118gf ---
                   65009:  * mf '\mode=preview; mag=magstep(-16.96645799324018499600); input rsfs10'
                   65010:  * --------------------------------------------------------------------- */
                   65011: /* --- fontdef for rsfs118 --- */
                   65012: static	chardef  rsfs118[] =
                   65013:    {
                   65014:       /* --- pixel bitmap for rsfs118 char#65 A --- */
                   65015:       {  65, 1279,                      /* character number, location */
                   65016:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   65017:           { 15,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65018:             "\x00\x40\x00\x38\x00\x0a\x80\x82\xa7\x20\x4c\x10\x15"
                   65019:             "\x88\x06\x24\x8b\xfc\xc2\xe1\x00" }  },
                   65020:       /* --- pixel bitmap for rsfs118 char#66 B --- */
                   65021:       {  66, 2934,                      /* character number, location */
                   65022:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   65023:           { 14,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65024:             "\xc0\x3f\x0c\x86\x88\x12\x91\x44\x12\xc9\xc3\xb1\x00"
                   65025:             "\x2e\xc0\x48\x1c\xf1\x38\x00" }  },
                   65026:       /* --- pixel bitmap for rsfs118 char#67 C --- */
                   65027:       {  67, 4057,                      /* character number, location */
                   65028:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   65029:           { 13,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65030:             "\x1c\x4e\x20\x06\xa2\x20\xe3\x1f\x20\x00\x72\x40\x09"
                   65031:             "\x28\x01\x25\xe0\x03" }  },
                   65032:       /* --- pixel bitmap for rsfs118 char#68 D --- */
                   65033:       {  68, 5322,                      /* character number, location */
                   65034:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   65035:           { 13,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65036:             "\xf0\x03\x81\x10\x61\x21\x17\xa4\x62\x92\x23\x02\x22"
                   65037:             "\x20\xc2\x22\xf8\x03" }  },
                   65038:       /* --- pixel bitmap for rsfs118 char#69 E --- */
                   65039:       {  69, 5916,                      /* character number, location */
                   65040:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   65041:           { 11,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65042:             "\xc0\x03\x39\x24\x21\x07\x07\x36\x88\x41\x12\x89\x50"
                   65043:             "\x02\x0f\x00" }  },
                   65044:       /* --- pixel bitmap for rsfs118 char#70 F --- */
                   65045:       {  70, 7232,                      /* character number, location */
                   65046:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   65047:           { 15,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65048:             "\x80\x0f\xb0\x38\x44\x02\xa1\x80\x2f\x00\xd0\x00\x3f"
                   65049:             "\x40\x0a\x80\x80\x30\x80\x07\x00" }  },
                   65050:       /* --- pixel bitmap for rsfs118 char#71 G --- */
                   65051:       {  71, 8510,                      /* character number, location */
                   65052:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   65053:           { 12,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65054:             "\x18\x46\x98\x42\x14\x22\xa1\x15\x25\x3e\x01\x1f\x80"
                   65055:             "\x20\x08\x7e\x00" }  },
                   65056:       /* --- pixel bitmap for rsfs118 char#72 H --- */
                   65057:       {  72,10131,                      /* character number, location */
                   65058:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   65059:           { 19,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65060:             "\x00\x10\x03\x46\x26\xa8\x09\x01\x47\x04\xf0\x1f\xf0"
                   65061:             "\x04\x40\x12\x00\x88\x00\x20\x22\x88\x90\xc1\x03\x03"
                   65062:             "\x00" }  },
                   65063:       /* --- pixel bitmap for rsfs118 char#73 I --- */
                   65064:       {  73,11358,                      /* character number, location */
                   65065:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   65066:           { 14,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65067:             "\x00\x30\xc0\x03\x4c\x00\x29\x20\x09\x48\x01\x6e\x00"
                   65068:             "\x07\x40\x40\x0c\xf0\x00\x00" }  },
                   65069:       /* --- pixel bitmap for rsfs118 char#74 J --- */
                   65070:       {  74,12743,                      /* character number, location */
                   65071:          11, 1,   -5, 1,      /* topleft row,col, and botleft row,col */
                   65072:           { 17,   16, 3,61, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65073:             "\xe0\x12\xb4\xb2\x21\xc1\x21\x11\x20\xf1\x81\x21\x21"
                   65074:             "\x20\x83\x12\xc3\xe1\xe0\x11\x12\xc3\xa4\xb2\x21\xb1"
                   65075:             "\x31\xc1\x21\xe2\xe2" }  },
                   65076:       /* --- pixel bitmap for rsfs118 char#75 K --- */
                   65077:       {  75,14366,                      /* character number, location */
                   65078:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   65079:           { 19,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65080:             "\x00\x10\x06\x46\x08\x28\x23\x20\x8f\x00\x20\x03\x80"
                   65081:             "\x07\x00\x1a\x00\x50\x00\x40\x22\x88\x91\xc1\x03\x03"
                   65082:             "\x00" }  },
                   65083:       /* --- pixel bitmap for rsfs118 char#76 L --- */
                   65084:       {  76,15613,                      /* character number, location */
                   65085:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   65086:           { 17,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65087:             "\x80\xe3\xc0\x20\x82\x20\x82\x40\x02\x43\x03\xf8\x01"
                   65088:             "\x40\x00\x80\x00\x80\x10\xfc\x30\xfc\x1f\x00" }  },
                   65089:       /* --- pixel bitmap for rsfs118 char#77 M --- */
                   65090:       {  77,17178,                      /* character number, location */
                   65091:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   65092:           { 18,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65093:             "\x00\x20\x02\x40\x04\x80\x18\x80\x31\x00\x63\x00\x4a"
                   65094:             "\x01\x94\x02\x28\x05\x50\x12\x24\x25\x71\x88\x03" }  },
                   65095:       /* --- pixel bitmap for rsfs118 char#78 N --- */
                   65096:       {  78,18368,                      /* character number, location */
                   65097:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   65098:           { 19,   11, 3,51, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65099:             "\xb1\x52\xb1\x41\xc1\x41\xc2\x31\xd1\x11\x21\xc1\x21"
                   65100:             "\x11\xc1\x32\xc1\x42\xb1\x51\x71\x31\x51\x84\x61\x81" }  },
                   65101:       /* --- pixel bitmap for rsfs118 char#79 O --- */
                   65102:       {  79,19504,                      /* character number, location */
                   65103:          11, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   65104:           { 11,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65105:             "\xc0\x83\x21\x7a\xa9\xc7\x10\x85\x14\xa2\x08\x43\x88"
                   65106:             "\x81\x03\x00" }  },
                   65107:       /* --- pixel bitmap for rsfs118 char#80 P --- */
                   65108:       {  80,21000,                      /* character number, location */
                   65109:          11, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   65110:           { 15,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65111:             "\xc0\x4f\x58\x18\x22\x96\x90\x48\x58\x24\x1b\x71\x7c"
                   65112:             "\x00\x01\x40\x80\x10\xc0\x07\x00" }  },
                   65113:       /* --- pixel bitmap for rsfs118 char#81 Q --- */
                   65114:       {  81,22247,                      /* character number, location */
                   65115:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   65116:           { 13,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65117:             "\x80\x07\x2c\x41\x48\x04\x89\xb0\xe0\x11\x00\x01\x10"
                   65118:             "\x80\xe1\x0f\xfd\x1f" }  },
                   65119:       /* --- pixel bitmap for rsfs118 char#82 R --- */
                   65120:       {  82,23830,                      /* character number, location */
                   65121:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   65122:           { 14,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65123:             "\xc0\x2f\x0c\x84\x88\x12\x51\x44\x0a\xc9\xc1\x51\x00"
                   65124:             "\x0a\x40\x42\x4c\xf2\x60\x00" }  },
                   65125:       /* --- pixel bitmap for rsfs118 char#83 S --- */
                   65126:       {  83,25035,                      /* character number, location */
                   65127:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   65128:           { 15,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65129:             "\x00\x60\xe0\x2d\x08\x11\x82\x04\xa2\x01\x3e\x00\x02"
                   65130:             "\x00\x01\x40\x80\x18\xc0\x03\x00" }  },
                   65131:       /* --- pixel bitmap for rsfs118 char#84 T --- */
                   65132:       {  84,26267,                      /* character number, location */
                   65133:          11, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   65134:           { 14,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65135:             "\xc0\x07\x2c\x8e\x88\x10\x12\x7c\x02\x80\x00\x10\x00"
                   65136:             "\x04\x80\x40\x18\xf0\x01\x00" }  },
                   65137:       /* --- pixel bitmap for rsfs118 char#85 U --- */
                   65138:       {  85,27570,                      /* character number, location */
                   65139:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   65140:           { 15,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65141:             "\xf0\x00\x56\xa0\x48\x28\x12\x92\x89\x30\x22\x80\x08"
                   65142:             "\x20\x04\x10\x01\x44\x02\xfc\x00" }  },
                   65143:       /* --- pixel bitmap for rsfs118 char#86 V --- */
                   65144:       {  86,28641,                      /* character number, location */
                   65145:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   65146:           { 14,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65147:             "\x00\x21\x20\xe4\x85\xc4\x11\x40\x02\x48\x00\x0a\x80"
                   65148:             "\x01\x30\x00\x04\x80\x00\x00" }  },
                   65149:       /* --- pixel bitmap for rsfs118 char#87 W --- */
                   65150:       {  87,29946,                      /* character number, location */
                   65151:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   65152:           { 16,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65153:             "\x80\x88\x4c\x44\x6a\x26\x38\x23\xa0\x11\x50\x11\xb0"
                   65154:             "\x08\x90\x06\xd8\x01\x48\x00\x24\x00" }  },
                   65155:       /* --- pixel bitmap for rsfs118 char#88 X --- */
                   65156:       {  88,31357,                      /* character number, location */
                   65157:          11, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   65158:           { 15,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65159:             "\xe0\x61\xa8\x08\x92\x03\xc5\x80\x3d\x00\x1e\x00\x02"
                   65160:             "\x80\x01\x60\x88\x28\x82\xe3\x00" }  },
                   65161:       /* --- pixel bitmap for rsfs118 char#89 Y --- */
                   65162:       {  89,32746,                      /* character number, location */
                   65163:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   65164:           { 14,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65165:             "\xf0\x20\x47\x24\x91\x44\x12\x91\x44\x12\x71\x22\x00"
                   65166:             "\x07\x80\x81\x10\xc0\x03\x00" }  },
                   65167:       /* --- pixel bitmap for rsfs118 char#90 Z --- */
                   65168:       {  90,34369,                      /* character number, location */
                   65169:          11, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   65170:           { 15,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65171:             "\xe0\x30\x8c\x24\xc9\x8f\x44\xc0\x79\x00\x3c\x00\x02"
                   65172:             "\x80\x00\x20\x80\x0f\xc1\x7d\x00" }  },
                   65173:       /* --- pixel bitmap for rsfs118 char#127 (noname) --- */
                   65174:       { 127,34943,                      /* character number, location */
                   65175:           8, 6,    6, 6,      /* topleft row,col, and botleft row,col */
                   65176:           {  9,    2, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65177:             "\xfc\x04\x02" }  },
                   65178:       /* --- trailer  --- */
                   65179:       { -99, -999,  0,0,0,0, { 0,0,0,0, (pixbyte *)"\0" }  }
                   65180:    } ;
                   65181: 
                   65182: 
                   65183: /* --- size=3 for .131gf ---
                   65184:  * mf '\mode=preview; mag=magstep(-16.39322518098640003469); input rsfs10'
                   65185:  * --------------------------------------------------------------------- */
                   65186: /* --- fontdef for rsfs131 --- */
                   65187: static	chardef  rsfs131[] =
                   65188:    {
                   65189:       /* --- pixel bitmap for rsfs131 char#65 A --- */
                   65190:       {  65, 1331,                      /* character number, location */
                   65191:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   65192:           { 17,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65193:             "\x00\x00\x01\x00\x03\x80\x03\x80\x02\x80\x04\xbe\x04"
                   65194:             "\x86\x0c\x8c\x0d\x88\x0c\x90\x18\xe0\x58\x88\x7f\xe0"
                   65195:             "\x30\x00" }  },
                   65196:       /* --- pixel bitmap for rsfs131 char#66 B --- */
                   65197:       {  66, 2962,                      /* character number, location */
                   65198:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   65199:           { 16,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65200:             "\x00\xbf\xc0\xc0\x20\xa1\x10\x91\x08\xd9\x88\x6d\xc4"
                   65201:             "\x3e\x78\x6f\x00\x63\x80\x3f\xc1\x31\x61\x19\x1f\x0e" }  },
                   65202:       /* --- pixel bitmap for rsfs131 char#67 C --- */
                   65203:       {  67, 4101,                      /* character number, location */
                   65204:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   65205:           { 14,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65206:             "\x18\x98\x83\x39\x30\x0d\x66\xc3\x86\x7f\x00\x06\xc0"
                   65207:             "\x06\x58\x03\xce\x80\x32\xa0\x06\xf8\x00" }  },
                   65208:       /* --- pixel bitmap for rsfs131 char#68 D --- */
                   65209:       {  68, 5376,                      /* character number, location */
                   65210:          13, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   65211:           { 14,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65212:             "\xe0\x03\x0e\xc3\x08\x1b\x72\x46\xd6\xd0\x34\x32\x79"
                   65213:             "\x26\xc0\x08\x18\x01\x22\x5c\x04\xff\x00" }  },
                   65214:       /* --- pixel bitmap for rsfs131 char#69 E --- */
                   65215:       {  69, 5982,                      /* character number, location */
                   65216:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   65217:           { 12,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65218:             "\x80\x07\xee\x30\x09\x4b\x10\x03\x07\x6c\x60\x00\xf3"
                   65219:             "\xb0\x0c\xc9\x30\x06\x1e\x00" }  },
                   65220:       /* --- pixel bitmap for rsfs131 char#70 F --- */
                   65221:       {  70, 7304,                      /* character number, location */
                   65222:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   65223:           { 17,   13, 3,53, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65224:             "\x87\x93\x16\x61\x22\x23\x61\x32\x12\x71\x32\x12\x85"
                   65225:             "\x12\xe0\x12\x12\xa6\x85\x11\x50\xf1\x72\x81\x42\xb5"
                   65226:             "\xb2" }  },
                   65227:       /* --- pixel bitmap for rsfs131 char#71 G --- */
                   65228:       {  71, 8586,                      /* character number, location */
                   65229:          13, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   65230:           { 13,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65231:             "\x30\x1c\x41\x13\x34\xc3\x36\x6c\xc6\xdb\xb8\xf1\x39"
                   65232:             "\xa0\x03\x38\x08\x06\x61\xe0\x07\x00" }  },
                   65233:       /* --- pixel bitmap for rsfs131 char#72 H --- */
                   65234:       {  72,10215,                      /* character number, location */
                   65235:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   65236:           { 22,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65237:             "\x00\x40\x1c\x60\x98\x09\x34\x33\x82\x76\x46\x00\xcf"
                   65238:             "\x08\x80\xff\x01\x7c\x06\x80\xcc\x00\x90\x19\x00\x30"
                   65239:             "\x06\x10\xcc\x08\xc4\x20\x01\x1f\x38\x00" }  },
                   65240:       /* --- pixel bitmap for rsfs131 char#73 I --- */
                   65241:       {  73,11486,                      /* character number, location */
                   65242:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   65243:           { 16,   13, 3,49, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65244:             "\xe2\xa5\x93\x12\x92\x23\x92\x12\x11\x82\x22\x11\x82"
                   65245:             "\x12\x11\x94\x11\xb4\xc2\x71\x52\x81\x42\x95\xb2" }  },
                   65246:       /* --- pixel bitmap for rsfs131 char#74 J --- */
                   65247:       {  74,12827,                      /* character number, location */
                   65248:          13, 1,   -5, 1,      /* topleft row,col, and botleft row,col */
                   65249:           { 20,   18, 3,77, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65250:             "\xe0\x42\xd6\xc3\x22\xc3\x22\xd2\x22\x11\x20\xf1\x92"
                   65251:             "\x22\x11\x30\xa1\x12\x11\xe0\x14\xe0\x22\xe0\x32\x21"
                   65252:             "\xe5\xd4\xc6\xc2\x41\xc1\x42\xd1\x32\xe0\x13\xe0\x21" }  },
                   65253:       /* --- pixel bitmap for rsfs131 char#75 K --- */
                   65254:       {  75,14484,                      /* character number, location */
                   65255:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   65256:           { 21,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65257:             "\x00\x40\x1c\x30\xcc\x00\xcd\x0c\xd0\xce\x00\xe0\x08"
                   65258:             "\x00\xc8\x00\x80\x0f\x00\xf8\x00\x80\x0d\x00\x98\x01"
                   65259:             "\x04\x1b\x81\x18\x12\xf0\xc1\x01\x00" }  },
                   65260:       /* --- pixel bitmap for rsfs131 char#76 L --- */
                   65261:       {  76,15767,                      /* character number, location */
                   65262:          13, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   65263:           { 19,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65264:             "\x00\x07\x07\x0c\x24\x30\x10\xc1\xc0\x0c\x06\x33\x60"
                   65265:             "\x6c\x00\xfe\x00\x80\x01\x00\x06\x00\x18\x00\x60\x10"
                   65266:             "\xfc\x7f\xf0\xfb\x01" }  },
                   65267:       /* --- pixel bitmap for rsfs131 char#77 M --- */
                   65268:       {  77,17340,                      /* character number, location */
                   65269:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   65270:           { 21,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65271:             "\x00\x00\x11\x00\x10\x01\x80\x19\x00\x38\x03\xc0\x33"
                   65272:             "\x00\x34\x07\x40\x73\x00\x64\x0d\x40\xd6\x00\x68\x0d"
                   65273:             "\x80\x96\x81\xcc\x91\x70\x18\x0e\x00" }  },
                   65274:       /* --- pixel bitmap for rsfs131 char#78 N --- */
                   65275:       {  78,18540,                      /* character number, location */
                   65276:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   65277:           { 21,   13, 3,63, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65278:             "\xd1\x52\xc2\x42\xd1\x42\xd2\x41\xd1\x11\x31\xe1\x11"
                   65279:             "\x21\xe1\x22\x11\xd1\x33\x60\xf1\x71\x42\x71\x51\x42"
                   65280:             "\x81\x32\x51\x94\x71\x92" }  },
                   65281:       /* --- pixel bitmap for rsfs131 char#79 O --- */
                   65282:       {  79,19688,                      /* character number, location */
                   65283:          13, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   65284:           { 12,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65285:             "\x80\x07\x86\xb0\x89\xa5\x2c\x67\x61\x0e\x73\x30\x87"
                   65286:             "\x51\x0c\xc3\x30\x02\x1e\x00" }  },
                   65287:       /* --- pixel bitmap for rsfs131 char#80 P --- */
                   65288:       {  80,21194,                      /* character number, location */
                   65289:          13, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   65290:           { 17,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65291:             "\x00\x3f\x81\x85\x81\x08\x87\x10\x8d\x70\x1b\x71\x1b"
                   65292:             "\xb1\x13\x1c\x1f\x00\x06\x00\x06\x04\x06\x08\x03\xf0"
                   65293:             "\x01\x00" }  },
                   65294:       /* --- pixel bitmap for rsfs131 char#81 Q --- */
                   65295:       {  81,22477,                      /* character number, location */
                   65296:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   65297:           { 15,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65298:             "\x00\x1f\xc0\x10\x10\x19\x8c\x0c\x63\x86\x99\x41\xc6"
                   65299:             "\xc0\x31\x00\x0c\x1e\x83\x7f\x68\xfc\xe3\x7b\x00" }  },
                   65300:       /* --- pixel bitmap for rsfs131 char#82 R --- */
                   65301:       {  82,24076,                      /* character number, location */
                   65302:          13, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   65303:           { 17,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65304:             "\x00\xbf\x81\x81\x81\x80\x82\x88\x84\x98\x0c\x99\x0d"
                   65305:             "\x92\x07\x1c\x0b\x00\x1b\x00\x1b\x04\x33\x09\x33\xf1"
                   65306:             "\xc1\x01" }  },
                   65307:       /* --- pixel bitmap for rsfs131 char#83 S --- */
                   65308:       {  83,25321,                      /* character number, location */
                   65309:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   65310:           { 18,   13, 3,53, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65311:             "\xe0\x22\x84\x22\x11\x62\x52\x11\x62\x52\x21\x61\x62"
                   65312:             "\x11\x81\x44\xa6\xe2\x70\xf1\x82\x81\x62\x91\x43\xa6"
                   65313:             "\xc2" }  },
                   65314:       /* --- pixel bitmap for rsfs131 char#84 T --- */
                   65315:       {  84,26587,                      /* character number, location */
                   65316:          13, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   65317:           { 16,   13, 3,47, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65318:             "\x77\x83\x16\x51\x22\x32\x51\x32\x22\x51\x32\x22\x65"
                   65319:             "\x22\xe2\xd2\xd2\xd2\x71\x62\x71\x42\x96\xa1" }  },
                   65320:       /* --- pixel bitmap for rsfs131 char#85 U --- */
                   65321:       {  85,27898,                      /* character number, location */
                   65322:          13, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   65323:           { 16,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65324:             "\xe0\x00\x18\xc1\x24\x63\x32\x61\x99\x31\xcd\x18\xc7"
                   65325:             "\x18\x60\x0c\x30\x06\x18\x03\x18\x03\xc8\x05\xb8\x03" }  },
                   65326:       /* --- pixel bitmap for rsfs131 char#86 V --- */
                   65327:       {  86,29007,                      /* character number, location */
                   65328:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   65329:           { 15,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65330:             "\x00\x41\xc0\x10\x2f\x44\x1e\x01\x4f\x00\x13\x80\x09"
                   65331:             "\xc0\x02\xa0\x00\x38\x00\x0c\x00\x03\x40\x00\x00" }  },
                   65332:       /* --- pixel bitmap for rsfs131 char#87 W --- */
                   65333:       {  87,30346,                      /* character number, location */
                   65334:          13, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   65335:           { 19,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65336:             "\x00\x11\x66\xcc\x98\x26\x23\xda\x99\x81\x67\x04\xb0"
                   65337:             "\x13\x80\x9b\x00\x6e\x02\x30\x0b\x80\x3d\x00\x66\x00"
                   65338:             "\x90\x01\x40\x04\x00" }  },
                   65339:       /* --- pixel bitmap for rsfs131 char#88 X --- */
                   65340:       {  88,31769,                      /* character number, location */
                   65341:          13, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   65342:           { 19,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65343:             "\x80\x83\x07\x2b\x02\x64\x0b\x20\x3b\x00\xcd\x00\xb8"
                   65344:             "\x07\x00\x3c\x00\x60\x00\x80\x01\x00\x0e\x00\x58\x08"
                   65345:             "\x62\x22\xe0\xe0\x00" }  },
                   65346:       /* --- pixel bitmap for rsfs131 char#89 Y --- */
                   65347:       {  89,33170,                      /* character number, location */
                   65348:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   65349:           { 17,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65350:             "\xc0\x03\xe1\x8c\x21\x99\x21\x33\x23\x36\x43\x36\x83"
                   65351:             "\x66\x06\x67\x06\x80\x07\x00\x06\x00\x06\x10\x06\xc0"
                   65352:             "\x03\x00" }  },
                   65353:       /* --- pixel bitmap for rsfs131 char#90 Z --- */
                   65354:       {  90,34829,                      /* character number, location */
                   65355:          13, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   65356:           { 17,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65357:             "\xc0\xc3\x41\x6c\x42\x59\x42\xf6\x43\xc6\x00\xe7\x03"
                   65358:             "\xc0\x07\x80\x01\x80\x01\x80\x01\x80\x21\xf8\x3f\xf0"
                   65359:             "\x3e\x00" }  },
                   65360:       /* --- pixel bitmap for rsfs131 char#127 (noname) --- */
                   65361:       { 127,35415,                      /* character number, location */
                   65362:           9, 7,    6, 7,      /* topleft row,col, and botleft row,col */
                   65363:           {  8,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65364:             "\x7c\x82\x81" }  },
                   65365:       /* --- trailer  --- */
                   65366:       { -99, -999,  0,0,0,0, { 0,0,0,0, (pixbyte *)"\0" }  }
                   65367:    } ;
                   65368: 
                   65369: 
                   65370: /* --- size=4 for .160gf ---
                   65371:  * mf '\mode=preview; mag=magstep(-15.29639112828755784636); input rsfs10'
                   65372:  * --------------------------------------------------------------------- */
                   65373: /* --- fontdef for rsfs160 --- */
                   65374: static	chardef  rsfs160[] =
                   65375:    {
                   65376:       /* --- pixel bitmap for rsfs160 char#65 A --- */
                   65377:       {  65, 1331,                      /* character number, location */
                   65378:          15, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   65379:           { 21,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65380:             "\x00\x00\x10\x00\x80\x01\x00\x38\x00\xc0\x02\x00\x24"
                   65381:             "\x80\x43\x06\x98\x45\x80\x41\x04\x18\xd4\x00\x43\x0a"
                   65382:             "\x60\xc4\x01\x48\x18\x00\x86\x09\x42\xff\x80\x07\x03"
                   65383:             "\x00" }  },
                   65384:       /* --- pixel bitmap for rsfs160 char#66 B --- */
                   65385:       {  66, 2982,                      /* character number, location */
                   65386:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   65387:           { 20,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65388:             "\x00\xfe\x05\x18\x30\x60\x00\x05\x41\xc8\x08\x46\x84"
                   65389:             "\x60\x66\x04\x33\x43\x98\x1f\xf8\x7c\x03\xc0\x30\x00"
                   65390:             "\x76\x03\xb0\x18\x81\x85\x10\x4e\x06\x3e\x38\x00" }  },
                   65391:       /* --- pixel bitmap for rsfs160 char#67 C --- */
                   65392:       {  67, 4139,                      /* character number, location */
                   65393:          15, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   65394:           { 18,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65395:             "\x30\xe0\x71\xc0\x68\xc0\xe0\x80\x41\x03\xc3\x0c\xc6"
                   65396:             "\xe0\xff\x00\x18\x00\x60\x00\xc0\x7c\x00\x8b\x01\x24"
                   65397:             "\x06\x98\x18\x40\x30\x00\x3e\x00" }  },
                   65398:       /* --- pixel bitmap for rsfs160 char#68 D --- */
                   65399:       {  68, 5422,                      /* character number, location */
                   65400:          15, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   65401:           { 16,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65402:             "\xc0\x0f\x70\x30\x18\x40\x0c\xe1\x06\x71\x02\x59\x83"
                   65403:             "\x4c\x43\x46\x3e\x46\x00\x23\x80\x21\xc0\x10\x40\x08"
                   65404:             "\x3f\x06\xff\x01" }  },
                   65405:       /* --- pixel bitmap for rsfs160 char#69 E --- */
                   65406:       {  69, 6034,                      /* character number, location */
                   65407:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   65408:           { 15,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65409:             "\x00\x3e\x80\x31\x60\x16\x98\x08\x4c\x02\xc2\x80\x07"
                   65410:             "\x30\x03\x0c\x00\xe3\xc1\x88\x61\xc2\x30\x31\x30\x0c"
                   65411:             "\xf0\x03\x00" }  },
                   65412:       /* --- pixel bitmap for rsfs160 char#70 F --- */
                   65413:       {  70, 7394,                      /* character number, location */
                   65414:          15, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   65415:           { 21,   15, 3,67, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65416:             "\xa8\xbd\x72\x31\x35\x61\x42\x22\xa1\x42\x12\xa1\x42"
                   65417:             "\x12\xc5\x22\x21\xe0\x12\x22\xe0\x15\xb6\x12\xb1\x32"
                   65418:             "\xe0\x51\xb1\x62\xb1\x62\xd6\xe1" }  },
                   65419:       /* --- pixel bitmap for rsfs160 char#71 G --- */
                   65420:       {  71, 8688,                      /* character number, location */
                   65421:          15, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   65422:           { 16,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65423:             "\x60\xf0\x18\xd8\x0c\xc4\x06\x63\x02\x31\x83\x19\xc3"
                   65424:             "\x6e\xc2\x33\xfc\x38\x40\x1c\x80\x0f\x00\x0c\x04\x0c"
                   65425:             "\x04\x06\xf8\x03" }  },
                   65426:       /* --- pixel bitmap for rsfs160 char#72 H --- */
                   65427:       {  72,10301,                      /* character number, location */
                   65428:          15, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   65429:           { 27,   15, 3,99, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65430:             "\xe0\x41\x43\xe0\x41\x32\x31\x84\x41\x32\x41\x71\x22"
                   65431:             "\x22\x32\x41\xa6\x32\x42\xe2\x22\x32\xeb\xd5\x32\xe0"
                   65432:             "\x12\x22\x32\xe0\x11\x42\x22\xe0\x62\x32\xe0\x52\x41"
                   65433:             "\xc1\x62\x42\x41\x71\x52\x61\x31\x95\x93\x90" }  },
                   65434:       /* --- pixel bitmap for rsfs160 char#73 I --- */
                   65435:       {  73,11578,                      /* character number, location */
                   65436:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   65437:           { 20,   15, 3,63, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65438:             "\xe0\x42\xd6\xc3\x13\xc2\x22\xd2\x33\xb2\x32\x11\xb2"
                   65439:             "\x22\x21\xb1\x32\x21\xb2\x12\x12\xd5\xe0\x22\xe0\x32"
                   65440:             "\x91\x72\xa1\x52\xd5\xe2" }  },
                   65441:       /* --- pixel bitmap for rsfs160 char#74 J --- */
                   65442:       {  74,12979,                      /* character number, location */
                   65443:          15, 2,   -6, 2,      /* topleft row,col, and botleft row,col */
                   65444:           { 23,   21, 3,115, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   65445:             "\xe0\x72\xe0\x26\xe0\x13\x12\xe0\x22\x22\xe0\x22\x22"
                   65446:             "\x11\xe2\x32\x11\xe2\x22\x21\xe1\x22\x21\xe0\x12\x12"
                   65447:             "\x11\xe0\x35\x60\xf1\xc2\x90\xb2\x22\xe0\x22\x12\xe0"
                   65448:             "\x34\xe0\x15\xe0\x22\x31\xe0\x12\x41\xe0\x21\x41\xe0"
                   65449:             "\x21\x32\xe0\x43\xe0\x50" }  },
                   65450:       /* --- pixel bitmap for rsfs160 char#75 K --- */
                   65451:       {  75,14624,                      /* character number, location */
                   65452:          15, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   65453:           { 26,   15, 3,93, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65454:             "\xe0\x41\x43\xe0\x31\x42\xa4\x41\x41\xb1\x22\x22\x42"
                   65455:             "\xa1\x35\x42\xe0\x42\x32\xe0\x42\x31\xe0\x56\xe0\x52"
                   65456:             "\x13\xe0\x62\x12\xe0\x62\x22\xe0\x52\x22\xc1\x62\x32"
                   65457:             "\x41\x71\x52\x51\x31\x95\x74\x92" }  },
                   65458:       /* --- pixel bitmap for rsfs160 char#76 L --- */
                   65459:       {  76,15915,                      /* character number, location */
                   65460:          15, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   65461:           { 23,   15, 3,71, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65462:             "\xa4\x53\x93\x72\x21\x72\x82\x31\x72\x72\x32\x62\x72"
                   65463:             "\x32\x72\x62\x32\x92\x42\x13\xc9\xe0\x42\x90\xf1\xb2"
                   65464:             "\xa0\xa2\xe0\x62\x61\x6e\x02\x67\x26\x82" }  },
                   65465:       /* --- pixel bitmap for rsfs160 char#77 M --- */
                   65466:       {  77,17496,                      /* character number, location */
                   65467:          15, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   65468:           { 25,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65469:             "\x00\x00\x08\x01\x00\x18\x03\x00\x18\x03\x00\x1c\x03"
                   65470:             "\x00\x1c\x03\x00\x36\x07\x00\x32\x07\x00\x32\x0d\x00"
                   65471:             "\x32\x0d\x00\x32\x19\x00\x34\x19\x00\x64\x19\x00\x64"
                   65472:             "\x32\x22\xc6\x22\x82\x83\xc3\x03" }  },
                   65473:       /* --- pixel bitmap for rsfs160 char#78 N --- */
                   65474:       {  78,18742,                      /* character number, location */
                   65475:          16, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   65476:           { 26,   16, 3,95, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65477:             "\xe0\xb1\xe0\x21\x63\xe0\x11\x62\xe0\x31\x51\xe0\x42"
                   65478:             "\x41\x50\xf1\xd3\x31\x60\xc1\x12\x21\xe0\x41\x22\x11"
                   65479:             "\xe0\x41\x32\x11\xe0\x41\x33\xe0\x41\x42\xe0\x41\x52"
                   65480:             "\xa1\x61\x61\xb1\x42\x71\xc4\x81\xc1" }  },
                   65481:       /* --- pixel bitmap for rsfs160 char#79 O --- */
                   65482:       {  79,19900,                      /* character number, location */
                   65483:          15, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   65484:           { 15,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65485:             "\x00\x3e\xc0\x20\x30\x10\xe4\x09\x6b\xc3\xc2\xb0\x60"
                   65486:             "\x2c\x30\x16\x0c\x05\xc6\x82\x61\x61\x70\x10\x30\x06"
                   65487:             "\xf0\x00\x00" }  },
                   65488:       /* --- pixel bitmap for rsfs160 char#80 P --- */
                   65489:       {  80,21422,                      /* character number, location */
                   65490:          15, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   65491:           { 21,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65492:             "\x00\xfe\x19\x30\xe0\x81\x21\x38\x08\x86\x8c\xc0\x98"
                   65493:             "\x11\xac\x31\x81\x1a\x23\xcc\x31\xf8\xf8\x03\x00\x03"
                   65494:             "\x00\x30\x00\x00\x03\x10\x30\x00\x82\x01\x80\x0f\x00"
                   65495:             "\x00" }  },
                   65496:       /* --- pixel bitmap for rsfs160 char#81 Q --- */
                   65497:       {  81,22717,                      /* character number, location */
                   65498:          15, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   65499:           { 18,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65500:             "\x00\x7c\x00\x0e\x06\x8c\x10\x18\xc4\x30\x18\xc3\x60"
                   65501:             "\x06\xc3\x18\x8c\x31\xe0\xc1\x00\x80\x01\x00\x03\x0f"
                   65502:             "\x03\xfe\x87\x0d\xff\xe3\xe3\x03" }  },
                   65503:       /* --- pixel bitmap for rsfs160 char#82 R --- */
                   65504:       {  82,24350,                      /* character number, location */
                   65505:          15, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   65506:           { 20,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65507:             "\x00\xfe\x0d\x18\x30\x60\x00\x07\x41\xc8\x08\x42\x86"
                   65508:             "\x30\x62\x88\xb1\x83\x8c\x0f\x70\xd8\x00\xc0\x0c\x00"
                   65509:             "\x66\x00\x30\x03\x81\x31\x12\x8c\x19\x3e\x70\x00" }  },
                   65510:       /* --- pixel bitmap for rsfs160 char#83 S --- */
                   65511:       {  83,25605,                      /* character number, location */
                   65512:          15, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   65513:           { 21,   15, 3,67, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65514:             "\xe0\x52\xa4\x32\x11\x82\x62\x21\x71\x72\x21\x72\x62"
                   65515:             "\x21\x81\x72\x11\xa1\x54\xc7\xe0\x32\x80\xf1\xa2\x90"
                   65516:             "\x92\xa1\x72\xb1\x52\xe5\xe0\x12" }  },
                   65517:       /* --- pixel bitmap for rsfs160 char#84 T --- */
                   65518:       {  84,26879,                      /* character number, location */
                   65519:          15, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   65520:           { 19,   15, 3,61, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65521:             "\x88\x9d\x52\x31\x44\x41\x42\x41\x71\x42\x32\x61\x42"
                   65522:             "\x32\x85\x32\xe0\x32\xe0\x22\x60\xf1\xa2\x70\x92\x81"
                   65523:             "\x72\x91\x53\xb6\xc2" }  },
                   65524:       /* --- pixel bitmap for rsfs160 char#85 U --- */
                   65525:       {  85,28222,                      /* character number, location */
                   65526:          15, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   65527:           { 20,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65528:             "\x80\x07\x00\x86\x80\x98\x18\x4c\x88\x61\xc2\x0c\x23"
                   65529:             "\xcc\x18\x61\xc6\x10\x33\x0c\x0e\x63\x00\x18\x03\xc0"
                   65530:             "\x18\x00\xc6\x00\x60\x8c\x00\x76\x06\xc0\x1c\x00" }  },
                   65531:       /* --- pixel bitmap for rsfs160 char#86 V --- */
                   65532:       {  86,29375,                      /* character number, location */
                   65533:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   65534:           { 18,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65535:             "\x00\x08\x02\x10\x8c\x27\x88\xd9\x10\xb1\x23\x80\x47"
                   65536:             "\x00\x18\x01\x60\x02\x80\x04\x00\x0b\x00\x1c\x00\x30"
                   65537:             "\x00\x60\x00\xc0\x00\x00\x01\x00" }  },
                   65538:       /* --- pixel bitmap for rsfs160 char#87 W --- */
                   65539:       {  87,30700,                      /* character number, location */
                   65540:          15, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   65541:           { 23,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65542:             "\x00\x08\x41\x00\x42\x18\x8f\x30\x46\x66\x0c\x81\x1f"
                   65543:             "\x47\x00\xcc\x21\x00\xd6\x08\x80\x35\x02\xc0\x99\x00"
                   65544:             "\xa0\x26\x00\x38\x0b\x00\x8c\x03\x00\x63\x00\x80\x10"
                   65545:             "\x00\x20\x04\x00\x00" }  },
                   65546:       /* --- pixel bitmap for rsfs160 char#88 X --- */
                   65547:       {  88,32137,                      /* character number, location */
                   65548:          15, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   65549:           { 22,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65550:             "\x00\x0f\x3c\x30\x84\x00\x22\x13\x40\xcc\x02\x90\x71"
                   65551:             "\x00\x64\x0e\x00\xee\x07\x00\xf8\x01\x00\x0c\x00\x80"
                   65552:             "\x01\x00\x70\x00\x00\x0e\x04\xc2\x02\x41\x18\x31\xe0"
                   65553:             "\x81\x03\x00" }  },
                   65554:       /* --- pixel bitmap for rsfs160 char#89 Y --- */
                   65555:       {  89,33576,                      /* character number, location */
                   65556:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   65557:           { 19,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65558:             "\xc0\x07\x84\x61\x18\x13\x63\x84\x98\x11\x66\x8c\x30"
                   65559:             "\x33\xc4\x8c\x21\x33\x06\x8f\x31\x00\xc4\x00\xc0\x03"
                   65560:             "\x00\x0c\x20\x30\x80\xe0\x00\xf8\x01\x00" }  },
                   65561:       /* --- pixel bitmap for rsfs160 char#90 Z --- */
                   65562:       {  90,35223,                      /* character number, location */
                   65563:          15, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   65564:           { 20,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65565:             "\x80\x0f\x0e\xc6\x90\x10\x8d\x88\xd0\x64\x88\xf9\x81"
                   65566:             "\x18\x03\x78\xfc\x00\xc0\x0f\x00\x0c\x00\x60\x00\x00"
                   65567:             "\x03\x00\x18\x00\xc0\x40\xf0\xff\x03\xdf\x0f\x00" }  },
                   65568:       /* --- pixel bitmap for rsfs160 char#127 (noname) --- */
                   65569:       { 127,35821,                      /* character number, location */
                   65570:          11, 9,    8, 9,      /* topleft row,col, and botleft row,col */
                   65571:           {  8,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65572:             "\x78\x86\x81" }  },
                   65573:       /* --- trailer  --- */
                   65574:       { -99, -999,  0,0,0,0, { 0,0,0,0, (pixbyte *)"\0" }  }
                   65575:    } ;
                   65576: 
                   65577: 
                   65578: /* --- size=5 for .180gf ---
                   65579:  * mf '\mode=preview; mag=magstep(-14.65037297372839890542); input rsfs10'
                   65580:  * --------------------------------------------------------------------- */
                   65581: /* --- fontdef for rsfs180 --- */
                   65582: static	chardef  rsfs180[] =
                   65583:    {
                   65584:       /* --- pixel bitmap for rsfs180 char#65 A --- */
                   65585:       {  65, 1331,                      /* character number, location */
                   65586:          17, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   65587:           { 24,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65588:             "\x00\x00\x80\x00\x00\x60\x00\x00\x30\x00\x00\x2c\x00"
                   65589:             "\x00\x12\x00\x00\x19\xc0\x8f\x0c\x60\x30\x04\x20\x30"
                   65590:             "\x06\x30\x28\x03\x30\x24\x01\x30\xa4\x01\x30\xe2\x00"
                   65591:             "\x60\x61\x00\xc6\x61\x03\x61\xff\x00\x1e\x18\x00" }  },
                   65592:       /* --- pixel bitmap for rsfs180 char#66 B --- */
                   65593:       {  66, 3020,                      /* character number, location */
                   65594:          17, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   65595:           { 23,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65596:             "\x00\xf0\x67\x00\x07\x0c\x60\x00\x0a\x08\x82\x0d\x02"
                   65597:             "\x61\x86\xc0\x18\x43\x20\xc6\x10\x98\x31\x08\xc6\x0f"
                   65598:             "\xc8\xf1\x0d\x38\x0c\x06\x00\x26\x03\x80\x8d\x11\x60"
                   65599:             "\x61\x0c\x58\x18\x02\x23\x06\x7e\xe0\x00" }  },
                   65600:       /* --- pixel bitmap for rsfs180 char#67 C --- */
                   65601:       {  67, 4197,                      /* character number, location */
                   65602:          17, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   65603:           { 19,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65604:             "\x60\x80\xc7\x01\xa7\x03\x0c\x0d\x10\x38\x40\xb0\x01"
                   65605:             "\x41\x08\xcc\x81\xff\x01\xc0\x00\x00\x03\x00\x18\x0f"
                   65606:             "\x60\x44\x00\x13\x02\x58\x18\xc0\x64\x00\x86\x01\xe0"
                   65607:             "\x07\x00" }  },
                   65608:       /* --- pixel bitmap for rsfs180 char#68 D --- */
                   65609:       {  68, 5492,                      /* character number, location */
                   65610:          17, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   65611:           { 19,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65612:             "\x80\x3f\x00\x07\x06\x0e\x40\x18\x08\x6e\x40\x38\x03"
                   65613:             "\x21\x0d\x88\x69\x20\x46\x83\x18\x31\x63\x08\x07\x43"
                   65614:             "\x00\x0c\x01\x30\x04\xc0\x20\x00\xc3\xe0\x0f\x01\xff"
                   65615:             "\x07\x00" }  },
                   65616:       /* --- pixel bitmap for rsfs180 char#69 E --- */
                   65617:       {  69, 6146,                      /* character number, location */
                   65618:          17, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   65619:           { 16,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65620:             "\x00\x7c\x00\xc7\x80\xb1\x80\x89\xc0\x44\x40\x38\x40"
                   65621:             "\x00\xe0\x03\x98\x03\x0c\x00\xc6\x03\x23\x06\x23\x04"
                   65622:             "\x11\x06\x11\x03\x82\x01\x7c\x00" }  },
                   65623:       /* --- pixel bitmap for rsfs180 char#70 F --- */
                   65624:       {  70, 7488,                      /* character number, location */
                   65625:          17, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   65626:           { 22,   17, 3,85, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65627:             "\xa8\xce\x71\x41\x44\x71\x42\x32\x91\x52\x22\x91\x62"
                   65628:             "\x12\xa1\x52\x12\xc6\x22\x22\xe0\x12\x21\x11\xe0\x12"
                   65629:             "\x13\xc8\xc2\x22\x21\xe0\x32\xb1\x72\xb2\x62\xc1\x52"
                   65630:             "\xe0\x15\xe0\x27" }  },
                   65631:       /* --- pixel bitmap for rsfs180 char#71 G --- */
                   65632:       {  71, 8796,                      /* character number, location */
                   65633:          17, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   65634:           { 18,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65635:             "\x40\xc0\xc3\xc0\x88\x81\x31\x03\x63\x06\x86\x0d\x0c"
                   65636:             "\x31\x18\xc3\x60\x26\xc6\x47\xf0\x83\x01\x8c\x07\xe0"
                   65637:             "\x0d\x00\x30\x20\x60\xc0\x80\x01\x01\x03\xf8\x07\x00" }  },
                   65638:       /* --- pixel bitmap for rsfs180 char#72 H --- */
                   65639:       {  72,10421,                      /* character number, location */
                   65640:          17, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   65641:           { 31,   17, 3,125, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   65642:             "\xe0\x61\x63\xe0\x62\x42\x31\x94\x52\x42\x41\x81\x32"
                   65643:             "\x32\x41\x61\x71\x32\x23\x42\x51\xc4\x11\x42\x51\xe0"
                   65644:             "\x32\x32\x33\xe0\x1d\xe0\x13\x12\x42\xe0\x32\x32\x42"
                   65645:             "\xe0\x31\x51\x42\xe0\x92\x42\xe0\x82\x42\xe1\x72\x52"
                   65646:             "\xd2\x62\x61\x51\x81\x62\x72\x22\xa6\xa3\xb0" }  },
                   65647:       /* --- pixel bitmap for rsfs180 char#73 I --- */
                   65648:       {  73,11718,                      /* character number, location */
                   65649:          17, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   65650:           { 22,   17, 3,79, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65651:             "\xe0\x62\xe0\x25\xe4\x12\xd3\x32\xd2\x42\xe2\x32\x11"
                   65652:             "\xc2\x32\x21\xc2\x22\x31\xc2\x22\x21\xd2\x12\x21\xe0"
                   65653:             "\x16\xe0\x33\xe0\x42\xb1\x72\xb2\x62\xc1\x53\xe6\xe0"
                   65654:             "\x10" }  },
                   65655:       /* --- pixel bitmap for rsfs180 char#74 J --- */
                   65656:       {  74,13129,                      /* character number, location */
                   65657:          17, 2,   -7, 2,      /* topleft row,col, and botleft row,col */
                   65658:           { 26,   24, 3,139, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   65659:             "\xe0\xa2\xe0\x56\xe0\x34\x12\xe0\x42\x32\xe0\x42\x32"
                   65660:             "\xe0\x42\x32\x21\xe0\x12\x42\x21\xe0\x12\x32\x21\xe0"
                   65661:             "\x22\x22\x31\xe0\x22\x22\x21\xe0\x47\xe0\x63\xe0\x92"
                   65662:             "\xe0\x92\xe0\x92\x32\xe0\x42\x13\xe0\x54\xe0\x46\xe0"
                   65663:             "\x33\x32\xe0\x22\x52\xe0\x31\x52\xe0\x31\x51\xe0\x51"
                   65664:             "\x32\xe0\x74\xe0\x70" }  },
                   65665:       /* --- pixel bitmap for rsfs180 char#75 K --- */
                   65666:       {  75,14810,                      /* character number, location */
                   65667:          17, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   65668:           { 29,   17, 3,101, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   65669:             "\xe0\x61\x53\xe0\x51\x52\xb4\x51\x51\xc1\x22\x42\x42"
                   65670:             "\xb1\x32\x23\x42\xe0\x35\x42\xe0\x62\x42\xe0\x71\x41"
                   65671:             "\xe0\x86\xe0\x86\xb0\xf1\xb2\x22\xc0\xa2\x22\xe1\x72"
                   65672:             "\x32\xd2\x62\x41\x51\x81\x53\x52\x22\xa6\x83\xb6" }  },
                   65673:       /* --- pixel bitmap for rsfs180 char#76 L --- */
                   65674:       {  76,16111,                      /* character number, location */
                   65675:          17, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   65676:           { 25,   17, 3,83, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65677:             "\xa5\x63\xa3\x72\x22\x82\x82\x32\x72\x91\x42\x62\x92"
                   65678:             "\x32\x72\x82\x32\x82\x72\x32\xa2\x52\x13\xe8\xe0\x72"
                   65679:             "\xe0\x82\xb0\xf1\xb2\xc0\xa2\xe0\x22\x33\x62\x72\x2d"
                   65680:             "\x86\x36\x92" }  },
                   65681:       /* --- pixel bitmap for rsfs180 char#77 M --- */
                   65682:       {  77,17704,                      /* character number, location */
                   65683:          17, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   65684:           { 30,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65685:             "\x00\x00\x40\x30\x00\x00\x08\x06\x00\x00\xc1\x00\x00"
                   65686:             "\x70\x18\x00\x00\x0e\x03\x00\xe0\x61\x00\x00\x34\x1e"
                   65687:             "\x00\x80\x46\x03\x00\x90\xc9\x00\x00\x32\x1a\x00\x40"
                   65688:             "\x46\x03\x00\xc8\xc8\x00\x00\x31\x19\x00\x40\x26\x06"
                   65689:             "\x20\x8c\xc4\x10\x8c\xa0\x30\x02\x1e\x18\x7c\x00" }  },
                   65690:       /* --- pixel bitmap for rsfs180 char#78 N --- */
                   65691:       {  78,18940,                      /* character number, location */
                   65692:          18, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   65693:           { 30,   18, 3,113, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   65694:             "\xe0\xe0\x11\xe0\x51\x82\xe0\x41\x72\xe0\x52\x62\xe0"
                   65695:             "\x61\x71\xe0\x62\x61\xe0\x61\x11\x51\xe0\x71\x12\x31"
                   65696:             "\xe0\x71\x22\x31\xe0\x61\x32\x21\x80\xf1\xc1\x42\x11"
                   65697:             "\x90\xb1\x53\xe0\x61\x62\xc1\x71\x72\xb2\x61\x81\xc1"
                   65698:             "\x52\x82\xd5\xa1\xd2" }  },
                   65699:       /* --- pixel bitmap for rsfs180 char#79 O --- */
                   65700:       {  79,20140,                      /* character number, location */
                   65701:          17, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   65702:           { 17,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65703:             "\x00\xfc\x00\x06\x02\x06\x04\xe3\x08\x33\x12\x13\x1f"
                   65704:             "\x13\x18\x16\x30\x26\x20\x2c\x60\x4c\xc0\x58\xc0\xb0"
                   65705:             "\xc0\x60\xc1\xc0\xc0\x00\xc3\x00\x7c\x00\x00" }  },
                   65706:       /* --- pixel bitmap for rsfs180 char#80 P --- */
                   65707:       {  80,21674,                      /* character number, location */
                   65708:          17, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   65709:           { 24,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65710:             "\x00\xf8\xc7\x00\x06\x38\x80\x21\x70\x40\x20\x48\x20"
                   65711:             "\x30\xc4\x10\x10\xc6\x10\x58\x63\x08\xac\x61\x08\xd6"
                   65712:             "\x30\x90\xe1\x1c\x60\xe0\x03\x00\x30\x00\x00\x18\x00"
                   65713:             "\x02\x0c\x00\x03\x06\x00\x81\x01\x00\x7e\x00\x00" }  },
                   65714:       /* --- pixel bitmap for rsfs180 char#81 Q --- */
                   65715:       {  81,22989,                      /* character number, location */
                   65716:          17, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   65717:           { 21,   17, 3,81, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65718:             "\xb7\xc3\x52\xa2\x31\x42\x82\x51\x41\x72\x52\x42\x52"
                   65719:             "\x62\x41\x10\xf1\x52\x52\x42\x10\x52\x32\x52\x85\x52"
                   65720:             "\xe0\x42\xe0\x42\xe0\x42\x85\x52\x8b\x52\x22\x5a\x56"
                   65721:             "\x36\x50" }  },
                   65722:       /* --- pixel bitmap for rsfs180 char#82 R --- */
                   65723:       {  82,24604,                      /* character number, location */
                   65724:          17,-1,    0,-1,      /* topleft row,col, and botleft row,col */
                   65725:           { 22,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65726:             "\x00\xf8\x27\x80\x01\x06\x18\xc0\x03\x41\x98\x20\x08"
                   65727:             "\x23\x04\x62\x0c\x41\x88\x21\x18\x3b\x08\xe3\x03\x62"
                   65728:             "\x4c\x00\x07\x1b\x00\x60\x06\x00\xcc\x80\x80\x19\x30"
                   65729:             "\x30\x86\x04\x87\x18\x7e\xc0\x01" }  },
                   65730:       /* --- pixel bitmap for rsfs180 char#83 S --- */
                   65731:       {  83,25877,                      /* character number, location */
                   65732:          17, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   65733:           { 24,   17, 3,81, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65734:             "\xe0\x73\xc5\x32\x11\xa2\x71\x31\x82\x82\x31\x72\x82"
                   65735:             "\x31\x81\x82\x31\x92\x62\x31\xb2\x52\x12\xd9\xe0\x52"
                   65736:             "\x90\xf1\xc2\xa0\xb2\xc1\x82\xc2\x72\xd1\x62\xe0\x26"
                   65737:             "\xe0\x32" }  },
                   65738:       /* --- pixel bitmap for rsfs180 char#84 T --- */
                   65739:       {  84,27163,                      /* character number, location */
                   65740:          17, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   65741:           { 23,   17, 3,75, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65742:             "\xa9\xce\x01\x71\x41\x54\x71\x51\x51\x91\x52\x41\x91"
                   65743:             "\x62\x32\x91\x52\x32\xb6\x32\xe0\x72\x70\xf1\xd2\x80"
                   65744:             "\xc2\xe0\x62\xb1\x82\xb2\x72\xc1\x63\xe7\xe0\x10" }  },
                   65745:       /* --- pixel bitmap for rsfs180 char#85 U --- */
                   65746:       {  85,28516,                      /* character number, location */
                   65747:          17, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   65748:           { 23,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65749:             "\x00\x1f\x00\x60\x18\x00\x4c\x08\x18\x21\x0c\x46\x10"
                   65750:             "\x82\x11\x8c\x61\x08\x63\x18\x82\x31\x06\x71\x8c\x01"
                   65751:             "\x0f\xc3\x00\x80\x31\x00\x60\x0c\x00\x18\x03\x00\xcc"
                   65752:             "\x00\x00\x63\x08\x80\x3d\x03\xc0\x71\x00" }  },
                   65753:       /* --- pixel bitmap for rsfs180 char#86 V --- */
                   65754:       {  86,29653,                      /* character number, location */
                   65755:          17, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   65756:           { 20,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65757:             "\x00\x10\x08\x80\xc0\x70\x0c\xc2\x64\x10\x62\x87\x10"
                   65758:             "\x6e\x0c\x00\x43\x00\x30\x02\x00\x13\x00\x18\x01\x80"
                   65759:             "\x09\x00\x78\x00\x80\x03\x00\x0c\x00\x40\x00\x00\x02"
                   65760:             "\x00\x10\x00\x00" }  },
                   65761:       /* --- pixel bitmap for rsfs180 char#87 W --- */
                   65762:       {  87,31014,                      /* character number, location */
                   65763:          17, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   65764:           { 25,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65765:             "\x00\x10\x02\x01\x10\x06\xf3\x30\x06\x11\x23\x06\x11"
                   65766:             "\x73\x0e\x01\x7e\x0c\x02\xc0\x1c\x02\xc0\x34\x04\x80"
                   65767:             "\x35\x04\x00\x27\x04\x00\x67\x04\x00\x46\x04\x00\xce"
                   65768:             "\x06\x00\x8c\x03\x00\x8c\x01\x00\x08\x01\x00\x08\x01"
                   65769:             "\x00\x00" }  },
                   65770:       /* --- pixel bitmap for rsfs180 char#88 X --- */
                   65771:       {  88,32465,                      /* character number, location */
                   65772:          17, 3,    0, 3,      /* topleft row,col, and botleft row,col */
                   65773:           { 25,   17, 3,101, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   65774:             "\x85\x84\x71\x52\x51\x31\x52\x31\x31\x32\xa1\x32\x31"
                   65775:             "\x21\xb1\x42\x31\x11\xc1\x32\x33\xd1\x22\x43\xe3\x27"
                   65776:             "\xe0\x47\x80\xf1\xb2\xc0\xa2\xe0\x83\x71\x61\x62\x11"
                   65777:             "\x61\x62\x52\x21\x51\x71\x42\x41\x41\x94\x74\x92" }  },
                   65778:       /* --- pixel bitmap for rsfs180 char#89 Y --- */
                   65779:       {  89,33922,                      /* character number, location */
                   65780:          17, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   65781:           { 24,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65782:             "\x00\x1f\xc0\xc0\x60\x20\x30\x61\x18\x08\x61\x18\x04"
                   65783:             "\x61\x0c\x82\x31\x06\xc2\x18\x06\xc1\x18\x03\x62\x0c"
                   65784:             "\x03\x1c\x84\x01\x00\xc4\x01\x00\xfc\x00\x00\x60\x00"
                   65785:             "\x08\x30\x00\x0c\x18\x00\x04\x06\x00\xf8\x01\x00" }  },
                   65786:       /* --- pixel bitmap for rsfs180 char#90 Z --- */
                   65787:       {  90,35607,                      /* character number, location */
                   65788:          17, 3,    0, 3,      /* topleft row,col, and botleft row,col */
                   65789:           { 23,   17, 3,91, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65790:             "\x85\x63\x72\x41\x42\x31\x51\x52\x32\x31\x51\x32\x12"
                   65791:             "\x22\x22\x51\x42\x27\x61\x42\x52\xa1\x22\x52\xb4\x37"
                   65792:             "\xe0\x27\xe0\x32\xe0\x62\xe0\x62\xe0\x71\xe0\x62\xe0"
                   65793:             "\x17\x71\x71\x3b\x85\x35\xa2" }  },
                   65794:       /* --- pixel bitmap for rsfs180 char#127 (noname) --- */
                   65795:       { 127,36213,                      /* character number, location */
                   65796:          13,10,    9,10,      /* topleft row,col, and botleft row,col */
                   65797:           { 10,    4, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65798:             "\xf0\x31\x28\x60\x80" }  },
                   65799:       /* --- trailer  --- */
                   65800:       { -99, -999,  0,0,0,0, { 0,0,0,0, (pixbyte *)"\0" }  }
                   65801:    } ;
                   65802: 
                   65803: 
                   65804: /* --- size=6 for .210gf ---
                   65805:  * mf '\mode=preview; mag=magstep(-13.80488502080647873125); input rsfs10'
                   65806:  * --------------------------------------------------------------------- */
                   65807: /* --- fontdef for rsfs210 --- */
                   65808: static	chardef  rsfs210[] =
                   65809:    {
                   65810:       /* --- pixel bitmap for rsfs210 char#65 A --- */
                   65811:       {  65, 1305,                      /* character number, location */
                   65812:          20, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   65813:           { 27,   20, 3,127, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   65814:             "\xe0\xb2\xe0\xa2\xe0\xa3\xe0\x82\x11\xe0\x81\x21\xe0"
                   65815:             "\x81\x22\xe0\x62\x22\xb5\x41\x42\xa2\x42\x11\x42\xa2"
                   65816:             "\x71\x42\xa2\x71\x11\x32\xa2\x61\x21\x22\xb2\x51\x31"
                   65817:             "\x12\xc1\x51\x41\x12\xc2\x31\x53\xe1\x31\x53\xa2\x33"
                   65818:             "\x53\x21\x73\x35\x32\x12\x81\x32\x47\xa4\x83\xc0" }  },
                   65819:       /* --- pixel bitmap for rsfs210 char#66 B --- */
                   65820:       {  66, 2990,                      /* character number, location */
                   65821:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   65822:           { 26,   20, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65823:             "\x00\xc0\x3f\x03\xe0\x80\x07\x40\x00\x1c\xc0\x00\xdc"
                   65824:             "\x80\x40\x38\x03\x81\x71\x0c\x04\xe2\x18\x08\x8c\x61"
                   65825:             "\x20\x18\xc7\x40\x60\xfe\x01\xc1\xbc\x07\xf8\xf8\x11"
                   65826:             "\x00\xe0\xc0\x00\xc0\x01\x01\x80\x7b\x06\x01\x17\x18"
                   65827:             "\x0e\x2e\x30\x1c\x9c\x60\x20\x38\xc2\x00\x1f\xf0\x00" }  },
                   65828:       /* --- pixel bitmap for rsfs210 char#67 C --- */
                   65829:       {  67, 4181,                      /* character number, location */
                   65830:          20, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   65831:           { 23,   20, 3,107, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   65832:             "\xe0\x44\x54\x83\x31\x32\xa2\x51\x22\x93\x61\x12\x93"
                   65833:             "\x61\x22\x83\x61\x31\x83\x52\x42\x63\x33\x72\x43\x13"
                   65834:             "\xb9\xe0\x43\xe0\x53\xe0\x62\x35\xc3\x21\x42\xb2\x21"
                   65835:             "\x52\x60\xf1\x52\x21\x42\x70\x52\x21\x32\xd2\x52\xe0"
                   65836:             "\x17\xa1" }  },
                   65837:       /* --- pixel bitmap for rsfs210 char#68 D --- */
                   65838:       {  68, 5492,                      /* character number, location */
                   65839:          20, 3,    0, 3,      /* topleft row,col, and botleft row,col */
                   65840:           { 22,   20, 3,107, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   65841:             "\xa6\xd3\x62\xa2\xa1\x73\xc1\x11\x32\x61\x64\x32\x61"
                   65842:             "\x52\x11\x32\x71\x42\x21\x32\x71\x32\x31\x22\x71\x33"
                   65843:             "\x31\x22\x61\x33\x31\x32\x51\x33\x41\x46\x43\x41\xd3"
                   65844:             "\x41\xd3\x51\xc3\x51\xd2\x51\xd2\x51\xd2\x51\x78\x42"
                   65845:             "\x8c\xa1" }  },
                   65846:       /* --- pixel bitmap for rsfs210 char#69 E --- */
                   65847:       {  69, 6136,                      /* character number, location */
                   65848:          20, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   65849:           { 19,   20, 3,85, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65850:             "\xc5\xc3\x32\xa2\x42\x11\x82\x32\x31\x72\x41\x41\x63"
                   65851:             "\x31\x41\x72\x54\x82\xe0\x44\xd7\xa3\xe0\x13\xe0\x13"
                   65852:             "\x44\x82\x32\x41\x63\x31\x52\x5f\x12\x31\x52\x62\x82"
                   65853:             "\x82\x53\xb6\xa3" }  },
                   65854:       /* --- pixel bitmap for rsfs210 char#70 F --- */
                   65855:       {  70, 7488,                      /* character number, location */
                   65856:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   65857:           { 27,   20, 3,113, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   65858:             "\xd9\xe0\x2e\x02\xa2\xa5\x91\x51\x51\xd1\x62\x31\xd1"
                   65859:             "\x71\x31\xe1\x62\x22\xe1\x52\x22\xe0\x11\x42\x22\x41"
                   65860:             "\xb5\x42\x32\xe0\x53\x23\xe0\x47\xe0\x27\x12\xe0\x12"
                   65861:             "\x33\x21\xe0\x11\x43\xe1\x83\xd3\x82\xe3\x63\xe0\x11"
                   65862:             "\x73\xe0\x37\xe0\x53" }  },
                   65863:       /* --- pixel bitmap for rsfs210 char#71 G --- */
                   65864:       {  71, 8838,                      /* character number, location */
                   65865:          20, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   65866:           { 21,   20, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65867:             "\x00\x00\x0e\x1c\x30\xc2\x00\x63\x0c\x38\xcc\x80\xc3"
                   65868:             "\x0c\x38\x8c\x01\xc7\x18\x70\x0c\x03\x67\x46\x60\x67"
                   65869:             "\x18\x3e\x0e\xfc\xe1\x00\x18\x1e\x00\xbe\x01\x00\x19"
                   65870:             "\x80\x80\x03\x38\x38\x80\x03\x07\x20\x70\x00\xf8\x03"
                   65871:             "\x00" }  },
                   65872:       /* --- pixel bitmap for rsfs210 char#72 H --- */
                   65873:       {  72,10507,                      /* character number, location */
                   65874:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   65875:           { 35,   20, 3,153, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   65876:             "\xe0\x91\x64\xe0\x91\x53\x31\xb3\x71\x52\x51\xa1\x22"
                   65877:             "\x52\x42\x51\xa1\x32\x33\x42\x61\xa1\x22\x33\x42\x61"
                   65878:             "\xe0\x16\x43\x51\xe0\x53\x33\x42\xe0\x53\x1a\xe0\x3c"
                   65879:             "\xe0\x72\x32\x43\xe0\x61\x43\x33\xe0\x61\x43\x33\xe0"
                   65880:             "\xb3\x43\xe0\xa3\x43\xe0\x31\x73\x43\xe0\x23\x53\x52"
                   65881:             "\x51\xa3\x52\x72\x41\xc1\x43\x82\x31\xe5\xb4\xd0" }  },
                   65882:       /* --- pixel bitmap for rsfs210 char#73 I --- */
                   65883:       {  73,11824,                      /* character number, location */
                   65884:          20, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   65885:           { 26,   20, 3,111, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   65886:             "\xe0\xa2\xe0\x56\xe0\x34\x12\xe0\x33\x32\xe0\x32\x42"
                   65887:             "\xe0\x32\x42\xe0\x32\x42\x21\x40\xf1\xa2\x42\x31\x40"
                   65888:             "\xa2\x32\x31\xe0\x12\x23\x31\xe0\x21\x23\x12\xe0\x46"
                   65889:             "\xe0\x73\xe0\x83\xd1\x83\xd3\x63\xd3\x63\xe0\x11\x53"
                   65890:             "\xe0\x46\xe0\x43" }  },
                   65891:       /* --- pixel bitmap for rsfs210 char#74 J --- */
                   65892:       {  74,13275,                      /* character number, location */
                   65893:          20, 3,   -8, 3,      /* topleft row,col, and botleft row,col */
                   65894:           { 30,   28, 3,157, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   65895:             "\xe0\xe2\xe0\x95\xe0\x84\x12\xe0\x73\x23\xe0\x63\x32"
                   65896:             "\xe0\x82\x42\xe0\x72\x42\x21\xe0\x42\x42\x31\x40\xf1"
                   65897:             "\xe2\x32\x31\x50\xe1\x33\x21\xe0\x62\x13\x21\xe0\x87"
                   65898:             "\xe0\xa3\xb0\xf1\xe0\x13\xc0\xe3\x21\xe0\x93\x12\xe0"
                   65899:             "\xa4\xe0\x95\xe0\x78\xe0\x62\x43\xe0\x52\x53\xe0\x51"
                   65900:             "\x63\xe0\x51\x62\xe0\x71\x52\xe0\x81\x42\xe0\xa4\xe0"
                   65901:             "\xb0" }  },
                   65902:       /* --- pixel bitmap for rsfs210 char#75 K --- */
                   65903:       {  75,14972,                      /* character number, location */
                   65904:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   65905:           { 34,   20, 3,137, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   65906:             "\xe0\x91\x64\xe0\x81\x62\xe0\x12\x72\x52\xe2\x12\x52"
                   65907:             "\x52\xe0\x11\x22\x42\x52\xe0\x11\x22\x33\x52\xe0\x67"
                   65908:             "\x42\xe0\xa3\x42\xe0\xa3\x42\xe0\xb7\xe0\xc7\xe0\xc3"
                   65909:             "\x22\xe0\xc3\x23\xe0\xb3\x32\xe0\xc3\x23\xe0\x31\x73"
                   65910:             "\x32\xe0\x33\x53\x42\x51\xa3\x53\x52\x41\xc1\x43\x72"
                   65911:             "\x31\xe5\xa4\xd2" }  },
                   65912:       /* --- pixel bitmap for rsfs210 char#76 L --- */
                   65913:       {  76,16293,                      /* character number, location */
                   65914:          20, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   65915:           { 30,   20, 3,99, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65916:             "\xe4\x74\xd3\x92\x22\xb2\xa2\x41\xa2\xa2\x42\x92\xa2"
                   65917:             "\x51\xa2\x93\x42\xa2\x83\x42\xb2\x73\x42\xc2\x63\x23"
                   65918:             "\xe0\x2c\xe0\x84\xb0\xf1\xe0\x13\xc0\xe3\xe0\xc3\xe0"
                   65919:             "\xc3\xe0\xc3\x81\x9b\x81\x92\x5d\xa8\x46\xb0" }  },
                   65920:       /* --- pixel bitmap for rsfs210 char#77 M --- */
                   65921:       {  77,17870,                      /* character number, location */
                   65922:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   65923:           { 34,   20, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65924:             "\x00\x00\x00\x04\x02\x00\x00\x08\x06\x00\x00\x18\x0c"
                   65925:             "\x00\x00\x70\x38\x00\x00\xf0\x70\x00\x00\xa0\xe1\x00"
                   65926:             "\x00\x40\xc3\x03\x00\xc0\x8e\x07\x00\x80\x1c\x0d\x00"
                   65927:             "\x00\x39\x3a\x00\x00\x62\x74\x00\x00\xc4\xc9\x01\x00"
                   65928:             "\x88\x93\x03\x00\x20\x27\x0e\x00\x40\x8e\x1c\x00\x80"
                   65929:             "\x38\x39\x00\x04\x71\xe2\x08\x38\xc2\x85\x21\x50\x06"
                   65930:             "\x0b\x66\x80\x07\x1c\x78\x00" }  },
                   65931:       /* --- pixel bitmap for rsfs210 char#78 N --- */
                   65932:       {  78,19136,                      /* character number, location */
                   65933:          21, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   65934:           { 34,   21, 3,145, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   65935:             "\xe0\xe0\x51\xe0\x71\x93\xe0\x61\x92\xe0\x81\x81\xe0"
                   65936:             "\x92\x71\xe0\x93\x61\xe0\xa3\x51\xe0\xa1\x12\x51\xe0"
                   65937:             "\x91\x22\x41\xe0\xa1\x22\x31\xe0\xa1\x33\x11\xe0\xa1"
                   65938:             "\x43\x11\xe0\x91\x54\xe0\xa1\x52\x11\xe0\x91\x63\xe0"
                   65939:             "\x91\x72\xe0\x11\x71\x82\xe3\x51\x91\xe3\x51\x92\xe0"
                   65940:             "\x11\x42\xa1\xe0\x34\xc1\xe0\x11" }  },
                   65941:       /* --- pixel bitmap for rsfs210 char#79 O --- */
                   65942:       {  79,20324,                      /* character number, location */
                   65943:          20, 4,    0, 4,      /* topleft row,col, and botleft row,col */
                   65944:           { 20,   20, 3,97, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65945:             "\xc6\xc2\x61\x93\x81\x72\xa1\x62\x25\x41\x52\x21\x42"
                   65946:             "\x21\x53\x11\x36\x53\x11\x62\x63\x11\x72\x62\x11\x82"
                   65947:             "\x54\x82\x53\x11\x82\x54\x82\x62\x11\x82\x62\x11\x72"
                   65948:             "\x73\x72\x83\x62\x92\x62\xb2\x33\xd5\xd0" }  },
                   65949:       /* --- pixel bitmap for rsfs210 char#80 P --- */
                   65950:       {  80,21866,                      /* character number, location */
                   65951:          20, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   65952:           { 28,   20, 3,125, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   65953:             "\xe8\x42\xb3\x82\x12\xb1\x41\x82\xa2\x51\x73\x91\x71"
                   65954:             "\x62\x12\x71\x72\x52\x22\x71\x71\x52\x32\x61\x72\x21"
                   65955:             "\x13\x23\x61\x62\x12\x13\x32\x61\x62\x21\x13\x32\x71"
                   65956:             "\x52\x34\x32\x95\x67\xe0\x63\xe0\xa3\xe0\xa3\xe1\x93"
                   65957:             "\xe3\x73\xe3\x73\xe0\x21\x54\xe0\x56\xe0\x61" }  },
                   65958:       /* --- pixel bitmap for rsfs210 char#81 Q --- */
                   65959:       {  81,23221,                      /* character number, location */
                   65960:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   65961:           { 24,   20, 3,101, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   65962:             "\xe0\x16\xe0\x22\x52\xd2\x82\xb2\x51\x42\x92\x61\x42"
                   65963:             "\x82\x71\x33\x82\x62\x33\x72\x72\x32\x82\x62\x33\x82"
                   65964:             "\x52\x33\x92\x33\x43\xa5\x53\xe0\x63\xe0\x63\xe0\x63"
                   65965:             "\xe0\x63\x97\x33\x61\x3d\x61\x41\x6c\x67\x37\x51" }  },
                   65966:       /* --- pixel bitmap for rsfs210 char#82 R --- */
                   65967:       {  82,24876,                      /* character number, location */
                   65968:          20, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   65969:           { 26,   20, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65970:             "\x00\xc0\x3f\x02\xe0\x80\x07\x40\x00\x1c\xc0\x00\xc8"
                   65971:             "\x80\x40\x10\x03\x81\x20\x0c\x04\xc3\x30\x08\x86\x61"
                   65972:             "\x20\x0c\xc3\x40\x18\xce\x00\x32\xfc\x00\x70\x30\x03"
                   65973:             "\x00\xe0\x0e\x00\xc0\x39\x00\x80\x73\x00\x01\xe6\x00"
                   65974:             "\x0e\xcc\x21\x1c\x1c\x87\x20\x38\x9c\x01\x1f\xe0\x01" }  },
                   65975:       /* --- pixel bitmap for rsfs210 char#83 S --- */
                   65976:       {  83,26167,                      /* character number, location */
                   65977:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   65978:           { 28,   20, 3,111, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   65979:             "\xe0\xb3\xe0\x14\x42\x21\xc3\x72\x31\xb2\x82\x41\xa1"
                   65980:             "\x93\x31\xa1\x93\x31\xa2\x83\x31\xb2\x83\x21\xd1\x73"
                   65981:             "\x12\xe0\x12\x45\xe0\x57\xe0\xa3\xe0\xa3\xe0\xa3\xe0"
                   65982:             "\xa3\xe0\x11\x92\xe0\x13\x63\xe0\x13\x63\xe0\x31\x53"
                   65983:             "\xe0\x66\xe0\x63" }  },
                   65984:       /* --- pixel bitmap for rsfs210 char#84 T --- */
                   65985:       {  84,27467,                      /* character number, location */
                   65986:          20, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   65987:           { 25,   20, 3,93, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65988:             "\xc9\xe5\x19\x92\x95\x81\x51\x62\x91\x61\x52\x91\x62"
                   65989:             "\x42\xa1\x62\x32\xb1\x52\x32\xc1\x33\x42\xc5\x52\xe0"
                   65990:             "\x83\xe0\x82\xe0\x83\x80\xf1\xd3\x90\x21\x93\xb3\x73"
                   65991:             "\xb3\x72\xe1\x63\xe0\x27\xe0\x20" }  },
                   65992:       /* --- pixel bitmap for rsfs210 char#85 U --- */
                   65993:       {  85,28836,                      /* character number, location */
                   65994:          20, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   65995:           { 25,   20, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   65996:             "\x00\x1f\x00\x80\x41\x00\xc0\x80\x01\x47\x08\x03\x4e"
                   65997:             "\x10\x06\x4e\x30\x0e\x8e\x20\x0c\x8e\x60\x1c\x0e\x61"
                   65998:             "\x18\x0e\x62\x18\x1c\x38\x38\x1c\x00\x38\x1c\x00\x38"
                   65999:             "\x1c\x00\x70\x38\x00\x70\x38\x00\x70\x38\x00\xe0\x38"
                   66000:             "\x02\xc0\x78\x04\x80\x69\x06\x00\x8e\x03\x00" }  },
                   66001:       /* --- pixel bitmap for rsfs210 char#86 V --- */
                   66002:       {  86,29991,                      /* character number, location */
                   66003:          20, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   66004:           { 22,   20, 3,107, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   66005:             "\xc1\x81\xb2\x72\xb1\x71\x53\x42\x61\x42\x22\x22\x61"
                   66006:             "\x41\x32\x23\x51\x51\x32\x14\x41\xa3\x13\x41\xd3\x41"
                   66007:             "\x70\xf1\x73\x31\x80\x73\x21\xe0\x22\x21\xe0\x23\x11"
                   66008:             "\xe0\x32\x11\xe0\x43\xe0\x42\xe0\x61\xe0\x61\xe0\x61"
                   66009:             "\xe0\x41" }  },
                   66010:       /* --- pixel bitmap for rsfs210 char#87 W --- */
                   66011:       {  87,31368,                      /* character number, location */
                   66012:          20, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   66013:           { 28,   20, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   66014:             "\x00\x10\x08\x0c\x80\xc1\x60\x1c\x0c\x06\x21\x43\x70"
                   66015:             "\x08\x31\x86\x43\x90\x71\x34\x04\xf0\xa3\x21\x00\x38"
                   66016:             "\x1d\x02\x80\xd3\x10\x00\x9c\x8e\x00\xc0\x75\x08\x00"
                   66017:             "\x2c\x47\x00\xe0\x39\x02\x00\x8e\x19\x00\x60\x48\x00"
                   66018:             "\x00\xc3\x02\x00\x30\x1c\x00\x80\x61\x00\x00\x08\x02"
                   66019:             "\x00\x40\x10\x00\x00" }  },
                   66020:       /* --- pixel bitmap for rsfs210 char#88 X --- */
                   66021:       {  88,32851,                      /* character number, location */
                   66022:          20, 3,    0, 3,      /* topleft row,col, and botleft row,col */
                   66023:           { 28,   20, 3,127, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   66024:             "\xb4\x94\x92\x42\x61\x22\x81\x31\x22\x51\xc1\x41\x32"
                   66025:             "\x31\xc1\x42\x32\x21\xc1\x52\x23\x11\xd1\x52\x24\xe1"
                   66026:             "\x42\x33\xe0\x11\x32\x33\xe0\x33\x27\xe0\x77\xe0\x83"
                   66027:             "\xd0\xf1\xb3\xe0\xa3\xe0\x31\x62\x11\x71\x73\x52\x21"
                   66028:             "\x61\x83\x42\x31\x51\x91\x43\x51\x31\xb5\x83\xb2" }  },
                   66029:       /* --- pixel bitmap for rsfs210 char#89 Y --- */
                   66030:       {  89,34328,                      /* character number, location */
                   66031:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   66032:           { 26,   20, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   66033:             "\x00\x7e\x00\x03\x06\x03\x06\x26\x1c\x04\x84\x70\x18"
                   66034:             "\x08\xc3\x31\x10\x8c\x63\x40\x18\x8e\x81\x60\x1c\x03"
                   66035:             "\xc2\x38\x0e\x84\x71\x1c\x20\xc3\x71\x00\x87\xe3\x00"
                   66036:             "\x00\xce\x01\x00\x30\x07\x00\x80\x0f\x00\x04\x1c\x00"
                   66037:             "\x1c\x38\x00\x70\x30\x00\x40\x70\x00\x00\x7e\x00\x00" }  },
                   66038:       /* --- pixel bitmap for rsfs210 char#90 Z --- */
                   66039:       {  90,36035,                      /* character number, location */
                   66040:          20, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   66041:           { 28,   20, 3,111, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   66042:             "\xc4\x74\xa3\x32\x51\x41\x81\x53\x41\x41\x81\x31\x23"
                   66043:             "\x32\x32\x71\x42\x13\x22\x22\x81\x52\x37\xa1\x52\x43"
                   66044:             "\xd1\x42\x52\xe1\x32\x53\xe4\x48\xe0\x68\xe0\x73\xe0"
                   66045:             "\xa3\xe0\xa3\xe0\xa3\xe0\xa3\xe0\xa3\x61\xa9\x72\x91"
                   66046:             "\x5b\xb7\x45\xc3" }  },
                   66047:       /* --- pixel bitmap for rsfs210 char#127 (noname) --- */
                   66048:       { 127,36661,                      /* character number, location */
                   66049:          15,12,   11,12,      /* topleft row,col, and botleft row,col */
                   66050:           { 11,    4, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   66051:             "\xe0\xc3\xa0\x01\x03\x08" }  },
                   66052:       /* --- trailer  --- */
                   66053:       { -99, -999,  0,0,0,0, { 0,0,0,0, (pixbyte *)"\0" }  }
                   66054:    } ;
                   66055: 
                   66056: 
                   66057: /* --- size=7 for .250gf ---
                   66058:  * mf '\mode=preview; mag=magstep(-12.84858895680446863032); input rsfs10'
                   66059:  * --------------------------------------------------------------------- */
                   66060: /* --- fontdef for rsfs250 --- */
                   66061: static	chardef  rsfs250[] =
                   66062:    {
                   66063:       /* --- pixel bitmap for rsfs250 char#65 A --- */
                   66064:       {  65, 1331,                      /* character number, location */
                   66065:          25, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   66066:           { 33,   25, 3,183, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   66067:             "\xe0\xe0\x41\xe0\xe0\x31\xe0\xe0\x23\xe0\xe0\x13\xe0"
                   66068:             "\xe0\x11\x12\xe0\xe1\x21\xe0\xd2\x21\xe0\xd1\x32\xe0"
                   66069:             "\xc1\x32\xe0\x13\x81\x41\xe3\x23\x41\x42\xd2\x71\x11"
                   66070:             "\x52\xd2\x91\x62\xd2\x81\x11\x42\xd2\x81\x21\x32\xe2"
                   66071:             "\x71\x31\x32\xe2\x61\x51\x12\xe0\x12\x51\x64\xe0\x12"
                   66072:             "\x51\x54\xe0\x31\x41\x63\xd2\x42\x11\x73\x31\x84\x43"
                   66073:             "\x63\x22\x93\x42\x16\x15\xb1\x42\x93\xe0\x14\xa3\xe0"
                   66074:             "\x10" }  },
                   66075:       /* --- pixel bitmap for rsfs250 char#66 B --- */
                   66076:       {  66, 3046,                      /* character number, location */
                   66077:          24, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   66078:           { 31,   24, 3,169, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   66079:             "\xe0\x29\x41\xe3\x94\xd2\xd3\xc1\xe2\x12\x92\xe2\x32"
                   66080:             "\x71\x81\x62\x42\x61\x82\x53\x42\x61\x82\x43\x42\x61"
                   66081:             "\x82\x43\x52\x61\x82\x33\x52\x61\x82\x43\x42\x71\x72"
                   66082:             "\x49\x81\x62\x44\x24\x91\x33\x47\x31\xa4\x63\x72\xe0"
                   66083:             "\x43\x82\xe0\x33\x42\x32\xe0\x23\x23\x42\xe0\x33\x11"
                   66084:             "\x72\x52\x93\x11\x72\x53\x82\x31\x62\x61\x83\x31\x62"
                   66085:             "\x71\x63\x61\x42\x97\x94\xa1" }  },
                   66086:       /* --- pixel bitmap for rsfs250 char#67 C --- */
                   66087:       {  67, 4267,                      /* character number, location */
                   66088:          24, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   66089:           { 27,   24, 3,133, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   66090:             "\xe0\x84\x64\xa3\x31\x43\xc2\x61\x22\xd2\x61\x22\xc3"
                   66091:             "\x71\x12\xc3\x71\x22\xb3\x71\x31\xb3\x62\x42\x93\x52"
                   66092:             "\x62\x83\x42\x93\x67\xda\xe0\x83\xe0\x93\xe0\xa3\x44"
                   66093:             "\xe0\x13\x32\x32\xe3\x21\x52\xe2\x21\x62\xd3\x21\x62"
                   66094:             "\xd3\x21\x52\xe2\x31\x52\xe0\x12\x72\xe0\x22\x53\xe0"
                   66095:             "\x47\xd2" }  },
                   66096:       /* --- pixel bitmap for rsfs250 char#68 D --- */
                   66097:       {  68, 5598,                      /* character number, location */
                   66098:          24, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   66099:           { 27,   25, 3,153, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   66100:             "\xd7\xe0\x33\x72\xd3\xb1\xb2\xe1\x92\xe0\x23\x52\x81"
                   66101:             "\x73\x52\x91\x63\x52\x91\x62\x11\x52\x91\x52\x21\x42"
                   66102:             "\x91\x52\x31\x42\x91\x42\x41\x42\x81\x43\x41\x42\x62"
                   66103:             "\x43\x51\x52\x32\x53\x51\x74\x73\x51\xe0\x33\x51\xe0"
                   66104:             "\x33\x61\xe0\x23\x61\xe0\x32\x71\xe0\x23\x61\xe0\x23"
                   66105:             "\x61\xe0\x23\x61\xe0\x23\x61\x99\x62\xb6\x17\xc1" }  },
                   66106:       /* --- pixel bitmap for rsfs250 char#69 E --- */
                   66107:       {  69, 6294,                      /* character number, location */
                   66108:          24, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   66109:           { 22,   24, 3,111, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   66110:             "\xe6\xe4\x32\xc2\x81\xa2\x52\x21\x92\x51\x41\x83\x41"
                   66111:             "\x51\x82\x51\x41\x83\x51\x31\x92\x73\xa2\xe0\x76\xd3"
                   66112:             "\x15\xc2\xe0\x52\xe0\x52\x62\xb3\x42\x23\x73\x41\x62"
                   66113:             "\x62\x51\x62\x62\x41\x72\x62\x41\x62\x72\xa2\x91\x92"
                   66114:             "\xb2\x53\xd7\xc3" }  },
                   66115:       /* --- pixel bitmap for rsfs250 char#70 F --- */
                   66116:       {  70, 7668,                      /* character number, location */
                   66117:          25, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   66118:           { 32,   26, 3,171, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   66119:             "\xe0\x61\xe0\xda\xe0\x6e\x02\xe3\xa7\xb2\x51\x71\x22"
                   66120:             "\xb1\x71\x52\xe0\x11\x82\x32\xe0\x11\x92\x22\xe0\x21"
                   66121:             "\x82\x22\xe0\x31\x72\x22\xe0\x31\x73\x22\xe0\x41\x43"
                   66122:             "\x32\x51\xe5\x52\x32\x11\xe0\x82\x32\x11\xe0\x83\x24"
                   66123:             "\xe0\x6a\xe0\x53\x23\x23\xe0\x32\x53\x21\xe0\x51\x53"
                   66124:             "\xe0\xe3\xe0\x23\x93\xe0\x32\x93\xe0\x31\xa3\xe0\x41"
                   66125:             "\x92\xe0\x71\x63\xe0\x96\xe0\xa2" }  },
                   66126:       /* --- pixel bitmap for rsfs250 char#71 G --- */
                   66127:       {  71, 9050,                      /* character number, location */
                   66128:          25, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
                   66129:           { 25,   26, 3,141, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   66130:             "\xe0\x73\xe0\x62\x31\x73\x82\x41\x52\x93\x42\x42\x93"
                   66131:             "\x42\x42\x93\x52\x32\x93\x52\x32\xa2\x52\x42\x93\x42"
                   66132:             "\x51\x93\x42\x52\x83\x32\x31\x41\x83\x22\x31\x52\x63"
                   66133:             "\x12\x42\x62\x54\x52\x97\x63\xd3\x53\xe0\x12\x43\xe0"
                   66134:             "\x35\x12\xe0\x83\xe0\x82\xb2\x93\xa3\x83\xb1\xa3\xb1"
                   66135:             "\x93\xc2\x63\xe0\x27\xe0" }  },
                   66136:       /* --- pixel bitmap for rsfs250 char#72 H --- */
                   66137:       {  72,10745,                      /* character number, location */
                   66138:          25, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   66139:           { 42,   26, 3,207, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   66140:             "\xe0\xe1\xe0\xe0\xc2\x75\xe0\xd2\x63\x31\xe0\x12\x92"
                   66141:             "\x62\x61\xd1\x12\x72\x62\x71\xc1\x32\x52\x62\x71\xc1"
                   66142:             "\x32\x53\x52\x81\xb1\x42\x34\x53\x71\xe0\x35\x12\x53"
                   66143:             "\x71\xe0\x92\x53\x62\xe0\x93\x43\x43\xe0\x9e\x02\xe0"
                   66144:             "\x87\x53\xe0\xb2\x33\x53\xe0\xa2\x53\x43\xe0\xa1\x63"
                   66145:             "\x53\xe0\xa1\x53\x53\xe0\x30\xf1\xd3\x53\xe0\x40\xc3"
                   66146:             "\x62\xe0\x62\x83\x63\x71\xb3\x73\x73\x61\xc1\x83\x92"
                   66147:             "\x51\xd1\x73\xa2\x32\xe2\x43\xd4\xe0\x45\xe0\xe0\x70" }  },
                   66148:       /* --- pixel bitmap for rsfs250 char#73 I --- */
                   66149:       {  73,12098,                      /* character number, location */
                   66150:          25, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   66151:           { 31,   26, 3,161, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   66152:             "\xe0\xe0\x12\xe0\xc4\xe0\x96\xe0\x84\x22\xe0\x73\x42"
                   66153:             "\xe0\x72\x52\xe0\x72\x52\xe0\x72\x52\xe0\x72\x52\x31"
                   66154:             "\xe0\x32\x52\x41\xe0\x32\x52\x31\xe0\x41\x52\x41\xe0"
                   66155:             "\x32\x43\x31\xe0\x42\x42\x41\xe0\x51\x33\x31\xe0\x71"
                   66156:             "\x22\x22\xe0\x96\xe0\xb3\xe0\xf1\xd3\xe0\x10\x12\x93"
                   66157:             "\xe0\x23\x83\xe0\x31\x92\xe0\x51\x73\xe0\x61\x53\xe0"
                   66158:             "\x96\xe0\xa2" }  },
                   66159:       /* --- pixel bitmap for rsfs250 char#74 J --- */
                   66160:       {  74,13547,                      /* character number, location */
                   66161:          25, 3,  -11, 3,      /* topleft row,col, and botleft row,col */
                   66162:           { 37,   36, 3,237, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   66163:             "\xe0\xe0\x72\xe0\xe0\x44\xe0\xe0\x16\xe0\xe4\x22\xe0"
                   66164:             "\xd3\x42\xe0\xd2\x52\xe0\xd2\x52\xe0\xd2\x52\xe0\xd2"
                   66165:             "\x52\x31\xe0\x92\x52\x41\xe0\x92\x52\x31\xe0\xa1\x52"
                   66166:             "\x41\xe0\x92\x43\x31\xe0\xb1\x42\x41\xe0\xb1\x33\x31"
                   66167:             "\xe0\xd1\x22\x22\xe0\xe0\x16\xb0\xf1\xe0\x63\xe0\xe0"
                   66168:             "\x53\xe0\xe0\x53\x41\xe0\xe3\x41\xe0\xe0\x13\x22\xe0"
                   66169:             "\xe0\x16\xe0\xe0\x14\xe0\xe0\x17\xe0\xd3\x42\xe0\xb3"
                   66170:             "\x62\xe0\xb1\x82\xe0\xb1\x82\xe0\xb1\x82\xe0\xc1\x72"
                   66171:             "\xe0\xc1\x72\xe0\xd1\x62\xe0\xe1\x42\xe0\xe0\x34\xe0"
                   66172:             "\xe0\x40" }  },
                   66173:       /* --- pixel bitmap for rsfs250 char#75 K --- */
                   66174:       {  75,15278,                      /* character number, location */
                   66175:          25, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   66176:           { 40,   26, 3,213, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   66177:             "\xe0\xe1\xe0\xe0\xa2\x83\xe0\xc2\x72\xe0\x32\x92\x72"
                   66178:             "\xe0\x31\x21\x72\x71\xe0\x41\x32\x52\x72\xe0\x31\x32"
                   66179:             "\x53\x62\xe0\x31\x42\x34\x62\xe0\x95\x12\x62\xe0\xe0"
                   66180:             "\x12\x62\xe0\xe0\x12\x62\xe0\xe0\x13\x52\xe0\xe0\x16"
                   66181:             "\x12\xe0\xe0\x24\x22\xe0\xe0\x43\x14\xe0\xe0\x33\x32"
                   66182:             "\xe0\xe0\x33\x33\xe0\xe0\x23\x33\xe0\xe0\x33\x32\xe0"
                   66183:             "\xe0\x33\x33\xe0\x62\x83\x42\x81\xb3\x73\x52\x71\xc1"
                   66184:             "\x83\x62\x61\xd1\x73\x72\x51\xe2\x43\xa1\x32\xe0\x35"
                   66185:             "\xd3\xe0\x32" }  },
                   66186:       /* --- pixel bitmap for rsfs250 char#76 L --- */
                   66187:       {  76,16637,                      /* character number, location */
                   66188:          25, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
                   66189:           { 36,   26, 3,159, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   66190:             "\xe0\xe0\x34\xe0\x35\x83\x22\xe0\x13\xa3\x41\xd3\xb3"
                   66191:             "\x51\xc2\xc3\x52\xb2\xc3\x61\xc2\xb3\x62\xb2\xc2\x71"
                   66192:             "\xc2\xb3\x61\xd2\xa3\x52\xe2\x93\x43\xe0\x22\x83\x23"
                   66193:             "\xe0\x5e\xe0\xe0\x13\xe0\xf1\xe0\x43\xe0\x10\xe0\x33"
                   66194:             "\xe0\x20\xf1\xe0\x23\xe0\x30\xe0\x13\xe0\xe0\x43\xa1"
                   66195:             "\xe0\x73\xa1\xbc\xa2\xb2\x75\x82\xb2\x63\x2a\xe7\x76"
                   66196:             "\xe0\x13" }  },
                   66197:       /* --- pixel bitmap for rsfs250 char#77 M --- */
                   66198:       {  77,18270,                      /* character number, location */
                   66199:          25, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   66200:           { 41,   27, 3,243, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   66201:             "\xe0\xe0\x31\x81\xe0\xe0\x21\x81\xe0\xe0\x22\x72\xe0"
                   66202:             "\xe0\x12\x72\xe0\xe3\x72\xe0\xe3\x72\xe0\xe3\x72\xe0"
                   66203:             "\xd4\x64\xe0\xc1\x13\x54\xe0\xc1\x13\x51\x12\xe0\xc1"
                   66204:             "\x22\x51\x13\xe0\xa2\x23\x41\x13\xe0\xa1\x33\x41\x22"
                   66205:             "\xe0\xa1\x33\x41\x23\xe0\xa1\x32\x41\x23\xe0\xa1\x33"
                   66206:             "\x31\x33\xe0\x91\x33\x41\x23\xe0\x91\x33\x41\x23\xe0"
                   66207:             "\x91\x43\x31\x33\xe0\x81\x43\x31\x33\xe0\x81\x43\x31"
                   66208:             "\x33\x61\x82\x51\x53\x21\x43\x51\x83\x41\x62\x21\x52"
                   66209:             "\x61\x81\x42\x63\x11\x62\x42\xa4\x84\x72\x31\xe0\xb2"
                   66210:             "\x85\xe0\xe0\xa1\xe0" }  },
                   66211:       /* --- pixel bitmap for rsfs250 char#78 N --- */
                   66212:       {  78,19602,                      /* character number, location */
                   66213:          24, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   66214:           { 40,   25, 3,181, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   66215:             "\xe0\xb1\xc2\xe0\xa2\xa2\xe0\xc1\xa2\xe0\xc2\x91\xe0"
                   66216:             "\xd2\x91\xe0\xe2\x81\xe0\xe1\x11\x71\xe0\xe1\x12\x71"
                   66217:             "\xe0\xd1\x23\x51\xe0\xe1\x23\x41\xe0\xe1\x33\x41\xe0"
                   66218:             "\xd1\x43\x31\xe0\xe1\x43\x21\xe0\xe1\x53\x21\xe0\xd1"
                   66219:             "\x72\x11\xe0\xe1\x73\xe0\xe1\x83\xe0\xd1\x92\xe0\xd1"
                   66220:             "\x93\xe0\x22\x91\x92\xe0\x23\x81\xa1\xe0\x31\x91\xb1"
                   66221:             "\xe0\x31\x72\xb1\xe0\x42\x51\xd1\xe0\x65\xe0\xe0\x51" }  },
                   66222:       /* --- pixel bitmap for rsfs250 char#79 O --- */
                   66223:       {  79,20840,                      /* character number, location */
                   66224:          24, 4,    0, 4,      /* topleft row,col, and botleft row,col */
                   66225:           { 24,   24, 3,141, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   66226:             "\xe0\x16\xe0\x13\x61\xd2\x91\xa3\xb1\x82\x43\x51\x82"
                   66227:             "\x32\x22\x41\x73\x21\x61\x21\x73\x21\x32\x21\x11\x73"
                   66228:             "\x21\x64\x73\x21\x91\x83\x11\x92\x73\x11\xa2\x63\x21"
                   66229:             "\xa2\x63\x11\xa2\x63\x21\xa2\x63\x11\xa2\x72\x21\x92"
                   66230:             "\x82\x11\xa2\x82\x11\x92\x92\x11\x82\xa2\x92\xc1\x72"
                   66231:             "\xe2\x52\xe0\x35\xe0\x20" }  },
                   66232:       /* --- pixel bitmap for rsfs250 char#80 P --- */
                   66233:       {  80,22418,                      /* character number, location */
                   66234:          25, 4,   -1, 4,      /* topleft row,col, and botleft row,col */
                   66235:           { 32,   26, 3,175, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   66236:             "\xe0\x39\xe0\x63\x83\x31\xc2\xe3\xc1\x51\xa3\xa2\x61"
                   66237:             "\x92\x11\x91\x81\x82\x22\x71\x91\x72\x32\x61\xa1\x63"
                   66238:             "\x32\x61\x92\x53\x42\x51\xa1\x53\x43\x51\x91\x22\x13"
                   66239:             "\x52\x51\x91\x31\x22\x53\x51\x81\x31\x23\x43\x61\x62"
                   66240:             "\x41\x13\x43\x81\x33\x63\x33\xb4\x87\xe0\xa3\xe0\xe3"
                   66241:             "\xe0\xe3\xe0\xe3\xe0\x22\xa3\xe0\x23\x93\xe0\x31\xa3"
                   66242:             "\xe0\x41\x83\xe0\x61\x63\xe0\x97\xe0\xa5" }  },
                   66243:       /* --- pixel bitmap for rsfs250 char#81 Q --- */
                   66244:       {  81,23783,                      /* character number, location */
                   66245:          25, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   66246:           { 28,   26, 3,139, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   66247:             "\xe0\x46\xe0\x53\x62\xe0\x22\x92\xd2\xc2\xb2\x51\x72"
                   66248:             "\xa2\x71\x62\x92\x81\x62\x82\x91\x53\x82\x82\x53\x72"
                   66249:             "\x92\x52\x82\x82\x53\x82\x72\x53\x92\x62\x63\xa1\x43"
                   66250:             "\x63\xc5\x73\xe0\xb2\xe0\xb3\xe0\xa3\xe0\xa2\xe0\xb2"
                   66251:             "\xb6\x73\x71\x39\x43\x71\x31\x77\x81\x41\x94\x72\x52"
                   66252:             "\x63\x1a\x77\x75\x80" }  },
                   66253:       /* --- pixel bitmap for rsfs250 char#82 R --- */
                   66254:       {  82,25446,                      /* character number, location */
                   66255:          25, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
                   66256:           { 30,   26, 3,177, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   66257:             "\xe0\x38\xe0\x53\x83\x11\xc2\xd2\xc1\xe4\x92\xe2\x12"
                   66258:             "\x81\xe0\x11\x41\x71\x81\x62\x32\x61\x82\x52\x42\x61"
                   66259:             "\x81\x52\x52\x51\x82\x42\x52\x61\x72\x43\x42\x61\x82"
                   66260:             "\x42\x42\x71\x72\x42\x23\x91\x62\x46\xc1\x33\x43\x32"
                   66261:             "\xc4\x63\x23\xe0\x73\x33\xe0\x63\x33\xe0\x63\x43\xe0"
                   66262:             "\x63\x33\x92\x93\x33\x51\x33\x82\x43\x51\x41\x83\x53"
                   66263:             "\x51\x41\x63\x73\x32\x67\x92\x31\xe0\xb4\x80" }  },
                   66264:       /* --- pixel bitmap for rsfs250 char#83 S --- */
                   66265:       {  83,26773,                      /* character number, location */
                   66266:          24, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   66267:           { 34,   25, 3,153, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   66268:             "\xe0\xe0\x23\xe0\x63\x62\x31\xe0\x14\x82\x31\xe3\xa2"
                   66269:             "\x41\xd2\xb2\x51\xc1\xc2\x51\xc1\xc3\x41\xc2\xb3\x41"
                   66270:             "\xd2\xa3\x41\xe0\x11\xa3\x31\xe0\x22\x83\x22\xe0\x43"
                   66271:             "\x53\x12\xe0\x8a\xb0\xf1\xe0\x33\xe0\xe0\x23\xe0\xe0"
                   66272:             "\x23\xe0\x20\xf1\xe3\xe0\x30\x12\xa3\xe0\x43\x93\xe0"
                   66273:             "\x51\x93\xe0\x71\x83\xe0\x81\x63\xe0\xb6\xe0\xd3" }  },
                   66274:       /* --- pixel bitmap for rsfs250 char#84 T --- */
                   66275:       {  84,28095,                      /* character number, location */
                   66276:          25, 4,   -1, 4,      /* topleft row,col, and botleft row,col */
                   66277:           { 30,   26, 3,135, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   66278:             "\xe0\x41\xe0\xba\xe0\x4e\x02\xc3\xa7\x92\x51\x93\x91"
                   66279:             "\x71\x72\xb1\x82\x52\xb1\x91\x52\xc1\x82\x42\xd1\x72"
                   66280:             "\x42\xd1\x72\x52\xe1\x43\x52\xe0\x25\x63\xe0\xd2\xa0"
                   66281:             "\xf1\xe0\x33\xa0\xe0\x23\xb0\xf1\xe0\x13\xc0\xe3\xe2"
                   66282:             "\xa3\xe3\x93\xe0\x11\xa3\xe0\x21\x92\xe0\x42\x63\xe0"
                   66283:             "\x76\xe0\x80" }  },
                   66284:       /* --- pixel bitmap for rsfs250 char#85 U --- */
                   66285:       {  85,29484,                      /* character number, location */
                   66286:          25, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   66287:           { 31,   26, 3,183, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   66288:             "\xc5\xe0\xa2\x52\xe0\x62\x81\xe0\x42\xa2\xe0\x21\x51"
                   66289:             "\x62\x83\x41\x61\x53\x73\x41\x71\x52\x83\x31\x72\x52"
                   66290:             "\x73\x41\x71\x52\x73\x41\x72\x43\x63\x51\x62\x52\x63"
                   66291:             "\x51\x62\x53\x53\x61\x52\x53\x53\x81\x32\x53\x53\x94"
                   66292:             "\x72\x63\xe0\x53\x53\xe0\x53\x53\xa0\xf1\x93\x53\xb0"
                   66293:             "\x83\x53\xe0\x53\x53\x51\xe3\x44\x41\xe0\x12\x44\x41"
                   66294:             "\xe0\x22\x31\x13\x31\xe0\x32\x21\x22\x22\xe0\x44\x43"
                   66295:             "\xd3" }  },
                   66296:       /* --- pixel bitmap for rsfs250 char#86 V --- */
                   66297:       {  86,30679,                      /* character number, location */
                   66298:          25, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   66299:           { 28,   26, 3,147, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   66300:             "\xe0\x31\xe0\xc1\x92\xe0\x11\x92\xe0\x12\x82\x64\x61"
                   66301:             "\x81\x71\x31\x43\x71\x71\x32\x42\x71\x71\x32\x43\x62"
                   66302:             "\x61\x42\x25\x61\xd3\x23\x51\x80\xf1\xa3\x51\x90\xa3"
                   66303:             "\x41\xe0\x53\x41\xe0\x63\x31\xe0\x73\x21\xe0\x82\x22"
                   66304:             "\xe0\x73\x12\xe0\x82\x11\xe0\xa3\xe0\xa3\xe0\xb2\xe0"
                   66305:             "\xb2\xe0\xc1\xe0\xc1\xe0\xc1\xe0\x91" }  },
                   66306:       /* --- pixel bitmap for rsfs250 char#87 W --- */
                   66307:       {  87,32078,                      /* character number, location */
                   66308:          25, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   66309:           { 34,   26, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   66310:             "\x00\x00\x02\x01\x00\x00\x04\x02\x08\x00\x08\x0c\x38"
                   66311:             "\x0c\x30\x18\x30\x48\x60\x30\x60\x10\x83\xe1\xc0\x20"
                   66312:             "\x06\x43\x01\x41\x18\x0e\x07\x02\xe0\x1f\x1e\x04\x00"
                   66313:             "\x70\x34\x10\x00\xc0\xe8\x20\x00\x80\xd3\x41\x00\x00"
                   66314:             "\x2e\x07\x01\x00\x9c\x0e\x02\x00\x70\x39\x04\x00\xc0"
                   66315:             "\x72\x08\x00\x80\xc7\x10\x00\x00\x8e\x23\x00\x00\x1c"
                   66316:             "\x46\x00\x00\x70\xcc\x00\x00\xe0\xb0\x00\x00\x80\x41"
                   66317:             "\x01\x00\x00\x83\x03\x00\x00\x04\x03\x00\x00\x08\x04"
                   66318:             "\x00\x00\x10\x08\x00\x00\x00" }  },
                   66319:       /* --- pixel bitmap for rsfs250 char#88 X --- */
                   66320:       {  88,33601,                      /* character number, location */
                   66321:          25, 4,   -1, 4,      /* topleft row,col, and botleft row,col */
                   66322:           { 35,   26, 3,193, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   66323:             "\xe5\xc4\xc2\x52\x82\x22\xb1\x82\x61\x33\xa1\x92\x51"
                   66324:             "\xe0\x21\x51\x42\x41\xe0\x21\x61\x42\x31\xe0\x21\x71"
                   66325:             "\x42\x21\xe0\x31\x62\x33\x11\xe0\x31\x72\x34\xe0\x41"
                   66326:             "\x62\x43\xe0\x51\x52\x43\xe0\x61\x42\x44\xe0\x74\x39"
                   66327:             "\xe0\xc9\xc0\xf1\xe0\x13\xe0\x30\xe3\xe0\xe0\x34\xe0"
                   66328:             "\xe0\x24\xe0\xe0\x32\x11\xa1\x93\x72\x21\x91\xa2\x72"
                   66329:             "\x31\x81\xa1\x82\x41\x71\xb1\x72\x51\x61\xd1\x42\x72"
                   66330:             "\x32\xe0\x14\xb3\xe0\x11" }  },
                   66331:       /* --- pixel bitmap for rsfs250 char#89 Y --- */
                   66332:       {  89,35088,                      /* character number, location */
                   66333:          25, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   66334:           { 32,   26, 3,173, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   66335:             "\xc6\xe0\xa2\x52\xb2\x82\x82\x82\x91\xa2\x72\x82\x41"
                   66336:             "\x62\x62\x81\x62\x43\x52\x81\x72\x43\x42\x81\x82\x33"
                   66337:             "\x43\x81\x72\x43\x42\x81\x82\x33\x42\x91\x72\x33\x52"
                   66338:             "\x81\x72\x43\x43\x91\x61\x43\x52\xa1\x42\x43\x53\xb4"
                   66339:             "\x63\x43\xe0\x73\x53\xe0\x82\x43\xe0\x92\x33\xe0\xb6"
                   66340:             "\xe0\xe0\x13\xe0\x23\x93\xe0\x32\x92\xe0\x41\xa2\xe0"
                   66341:             "\x51\x83\xe0\x71\x53\xe0\xa6\xe0\x81" }  },
                   66342:       /* --- pixel bitmap for rsfs250 char#90 Z --- */
                   66343:       {  90,36823,                      /* character number, location */
                   66344:          25, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
                   66345:           { 33,   26, 3,171, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   66346:             "\xe5\xe0\xc2\x52\x74\xb2\x72\x52\x41\x91\x83\x41\x61"
                   66347:             "\x81\x83\x41\x61\x81\x52\x23\x32\x52\x71\x62\x32\x22"
                   66348:             "\x33\x81\x72\x48\xb1\x72\x62\xe0\x11\x62\x62\xe0\x11"
                   66349:             "\x62\x63\xe0\x21\x42\x63\xe0\x44\x5a\xe0\x9a\xe0\xa3"
                   66350:             "\xe0\xe0\x22\xe0\xe0\x23\xe0\xe0\x13\xe0\xe0\x13\xe0"
                   66351:             "\xe0\x13\xe0\xe0\x12\x91\xc6\x22\x91\xc1\x63\x91\xc1"
                   66352:             "\x57\x52\xe6\x48\xe0\xc5\xe0\x20" }  },
                   66353:       /* --- pixel bitmap for rsfs250 char#127 (noname) --- */
                   66354:       { 127,37481,                      /* character number, location */
                   66355:          18,14,   13,14,      /* topleft row,col, and botleft row,col */
                   66356:           { 14,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   66357:             "\x80\x0f\x1c\x84\x00\x12\x80\x02\x10" }  },
                   66358:       /* --- trailer  --- */
                   66359:       { -99, -999,  0,0,0,0, { 0,0,0,0, (pixbyte *)"\0" }  }
                   66360:    } ;
                   66361: 
                   66362: 
1.5     ! raeburn  66363: /* --- size=8 for .325gf ---
        !          66364:  * mf '\mode=preview; mag=magstep(-11.40956951729850636869); input rsfs10'
        !          66365:  * --------------------------------------------------------------------- */
        !          66366: /* --- fontdef for rsfs325 --- */
        !          66367: static	chardef  rsfs325[] =
        !          66368:    {
        !          66369:       /* --- pixel bitmap for rsfs325 char#65 A --- */
        !          66370:       {  65, 1331,                      /* character number, location */
        !          66371:          32, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          66372:           { 43,   32, 3,265, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          66373:             "\xe0\xe0\xe1\xe0\xe0\xc2\xe0\xe0\xc3\xe0\xe0\xb3\xe0"
        !          66374:             "\xe0\xb1\x11\xe0\xe0\xa2\x12\xe0\xe0\x91\x31\xe0\xe0"
        !          66375:             "\x91\x31\xe0\xe0\x82\x32\xe0\xe0\x71\x42\xe0\xe0\x71"
        !          66376:             "\x52\xe0\xe0\x61\x52\xe0\x57\x81\x52\xe0\x53\x53\x31"
        !          66377:             "\x72\xe0\x44\x72\x11\x72\xe0\x44\xa1\x73\xe0\x43\xa2"
        !          66378:             "\x63\xe0\x44\x91\x21\x52\xe0\x53\x91\x31\x43\xe0\x44"
        !          66379:             "\x81\x41\x33\xe0\x54\x71\x61\x23\xe0\x53\x71\x71\x13"
        !          66380:             "\xe0\x64\x51\x84\xe0\x83\x51\x84\xe0\x83\x41\x93\xe0"
        !          66381:             "\xa3\x21\x94\xe0\x33\x54\x94\x41\xc4\x73\x83\x32\xd3"
        !          66382:             "\x71\x24\x44\x12\xe1\x82\x79\xe0\x31\x52\xc3\xe0\x75"
        !          66383:             "\xd4\xe0\x50" }  },
        !          66384:       /* --- pixel bitmap for rsfs325 char#66 B --- */
        !          66385:       {  66, 3110,                      /* character number, location */
        !          66386:          31, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          66387:           { 40,   31, 3,237, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          66388:             "\xe0\x9a\x61\xe0\x54\x94\x12\xe0\x42\xe0\x23\xe0\x32"
        !          66389:             "\xe0\x44\xe2\xe0\x43\x13\xc1\xe0\x53\x23\xb1\xa1\x83"
        !          66390:             "\x33\xa1\xa2\x73\x43\x91\xb2\x63\x44\x81\xb3\x54\x44"
        !          66391:             "\x81\xb3\x44\x44\x81\xb3\x44\x54\x81\xa4\x43\x54\x81"
        !          66392:             "\xa4\x44\x44\x91\xa4\x37\x14\xa1\x94\x36\x23\xc1\x84"
        !          66393:             "\x45\x16\xc1\x54\x58\x42\xc6\x74\x93\xe0\x94\xa3\xe0"
        !          66394:             "\x94\x94\xe0\x84\x43\x34\xe0\x74\x32\x54\xe0\x74\x22"
        !          66395:             "\x74\x71\xd3\x21\x84\x64\xb3\x31\x74\x74\xa3\x31\x83"
        !          66396:             "\x71\xc4\x41\x73\x81\xb3\x61\x63\xa2\x73\x82\x34\xd8"
        !          66397:             "\xc4\xd4" }  },
        !          66398:       /* --- pixel bitmap for rsfs325 char#67 C --- */
        !          66399:       {  67, 4383,                      /* character number, location */
        !          66400:          31, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
        !          66401:           { 35,   32, 3,203, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          66402:             "\xe0\xe0\x14\xb3\xe3\x41\x74\xe3\x71\x44\xe0\x13\x81"
        !          66403:             "\x34\xe0\x12\x91\x34\xe3\xa1\x24\xe3\xa1\x34\xd3\xa1"
        !          66404:             "\x34\xd3\xa1\x44\xc3\xa1\x54\xb4\x82\x73\xa4\x72\x93"
        !          66405:             "\x94\x53\xc3\x74\x24\xe0\x3e\xe0\xe4\xe0\x60\xf1\xa4"
        !          66406:             "\xe0\x70\x94\x64\xe0\x73\x52\x32\xe0\x54\x41\x53\xe0"
        !          66407:             "\x43\x41\x63\xe0\x34\x31\x73\xe0\x33\x31\x83\xe0\x33"
        !          66408:             "\x31\x74\xa0\xf1\x73\x31\x64\xb0\x73\x94\xe0\x62\x84"
        !          66409:             "\xe0\x73\x63\xe0\xb3\x14\xe0\xe0\x21\xe0\x73" }  },
        !          66410:       /* --- pixel bitmap for rsfs325 char#68 D --- */
        !          66411:       {  68, 5756,                      /* character number, location */
        !          66412:          31, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
        !          66413:           { 35,   33, 3,219, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          66414:             "\xe0\x48\xe0\x95\x73\xe0\x44\xd1\xe0\x15\xe0\x11\xd4"
        !          66415:             "\xe0\x41\xb4\xe0\x51\xa4\x91\xb3\x64\xa1\x93\x74\xb1"
        !          66416:             "\x84\x74\xa1\x73\x21\x64\xb1\x64\x21\x64\xb1\x54\x31"
        !          66417:             "\x63\xb1\x54\x41\x54\xa1\x54\x51\x54\x91\x63\x61\x62"
        !          66418:             "\x91\x64\x61\x63\x71\x64\x61\x82\x52\x64\x71\x96\x84"
        !          66419:             "\x61\xe0\x94\x71\xe0\x84\x71\xe0\x84\x81\xe0\x84\x71"
        !          66420:             "\xe0\x84\x81\xe0\x74\x81\xe0\x74\x81\xe0\x83\x81\xe0"
        !          66421:             "\x83\x81\xe0\x83\x81\xd7\x23\x81\xc4\x53\x82\xe9\x13"
        !          66422:             "\x33\xe0\xe0\x13\xe0\x43" }  },
        !          66423:       /* --- pixel bitmap for rsfs325 char#69 E --- */
        !          66424:       {  69, 6498,                      /* character number, location */
        !          66425:          31, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          66426:           { 30,   31, 3,167, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          66427:             "\xe0\x67\xe0\x7a\xe0\x44\x72\xe0\x24\x61\x22\xe4\x52"
        !          66428:             "\x41\xd4\x51\x61\xf1\xc4\x51\x61\x10\xb4\x51\x61\xd4"
        !          66429:             "\x51\x51\xe3\x75\x40\xf1\xb3\xe0\x20\xb7\xe0\x64\x12"
        !          66430:             "\x31\xe0\x34\x53\xe0\x34\xe0\xb4\xe0\xb4\xe0\xb4\x76"
        !          66431:             "\xd3\x71\x52\xb4\x61\x63\xa3\x61\x73\x94\x51\x83\x94"
        !          66432:             "\x51\x74\x94\x41\x74\xb3\x41\x74\xb3\xb4\xd2\xa3\xe0"
        !          66433:             "\x23\x63\xe0\x77\xe0\x31" }  },
        !          66434:       /* --- pixel bitmap for rsfs325 char#70 F --- */
        !          66435:       {  70, 7930,                      /* character number, location */
        !          66436:          32, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          66437:           { 42,   33, 3,241, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          66438:             "\xe0\x8a\xe0\xe0\x2e\x01\xe0\xbe\x05\xe0\x8e\x0b\xe0"
        !          66439:             "\x14\xbb\xe0\x12\x71\x98\xe2\x73\x72\x15\xe2\x83\x53"
        !          66440:             "\xe0\x71\x93\x44\xe0\x61\x94\x34\xe0\x61\xa4\x24\xe0"
        !          66441:             "\x71\x94\x33\xe0\x81\x84\x34\xe0\x81\x74\x34\xe0\x91"
        !          66442:             "\x64\x44\x43\xe0\x38\x54\x42\x11\xe0\xe0\x14\x42\x21"
        !          66443:             "\xe0\xe0\x14\x32\x12\xe0\xe0\x14\x34\xe0\xec\xe0\xc4"
        !          66444:             "\x24\x33\xe0\xa2\x54\x33\xe0\xa1\x74\x21\xe0\xc1\x74"
        !          66445:             "\xe0\xe0\x94\xe0\x82\xd4\xe0\x84\xc3\xe0\x84\xc3\xe0"
        !          66446:             "\x91\xd4\xe0\xa1\xc4\xe0\xb1\xb3\xe0\xe2\x73\xe0\xe0"
        !          66447:             "\x47\xe0\xe0\x42" }  },
        !          66448:       /* --- pixel bitmap for rsfs325 char#71 G --- */
        !          66449:       {  71, 9346,                      /* character number, location */
        !          66450:          32, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
        !          66451:           { 33,   33, 3,195, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          66452:             "\xe0\xd4\xe0\xd2\x32\xb3\xb2\x43\x83\xb3\x44\x73\xb3"
        !          66453:             "\x44\x64\xb3\x54\x54\xb3\x54\x54\xb3\x54\x64\xa4\x44"
        !          66454:             "\x64\xa4\x53\x64\xa4\x53\x74\xa3\x53\x83\xa4\x43\x84"
        !          66455:             "\x94\x34\x41\x44\x84\x34\x32\x53\x94\x23\x42\x73\x74"
        !          66456:             "\x13\x53\x82\x76\x64\x92\x64\x74\xc9\x75\xe0\x43\x65"
        !          66457:             "\xe0\x62\x42\x14\xe0\x75\x24\xe0\xe0\x14\xe0\xe4\xe0"
        !          66458:             "\x21\xc4\xe4\xb4\xe4\xa4\xb0\xf1\x31\xd4\xc0\x41\xa4"
        !          66459:             "\xe0\x42\x75\xe0\x79\xe0\x40" }  },
        !          66460:       /* --- pixel bitmap for rsfs325 char#72 H --- */
        !          66461:       {  72,11083,                      /* character number, location */
        !          66462:          32, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
        !          66463:           { 54,   33, 3,321, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          66464:             "\xe0\xe0\x92\xe0\xe0\xe0\x92\xa5\xe0\xe0\x82\x93\x41"
        !          66465:             "\xe0\xe0\x62\x83\x61\xe0\x53\xb2\x83\x71\xe0\x32\x22"
        !          66466:             "\x93\x73\x81\xe0\x21\x34\x73\x73\x91\xe0\x11\x43\x73"
        !          66467:             "\x73\x91\xe0\x11\x44\x63\x73\xa1\xe1\x44\x64\x63\xa1"
        !          66468:             "\xe0\x73\x36\x64\x91\xe0\x95\x23\x64\x82\xe0\xe0\x23"
        !          66469:             "\x64\x72\xe0\xe0\x34\x54\x53\xe0\xe0\x4e\x05\xe0\xe0"
        !          66470:             "\x19\x64\xe0\xe0\x52\x53\x64\xe0\xe0\x42\x64\x54\xe0"
        !          66471:             "\xe0\x41\x74\x64\xe0\xe0\x31\x74\x64\xe0\xe0\x31\x74"
        !          66472:             "\x64\xe0\xe0\xc4\x64\xe0\xe0\xb4\x64\xe0\xe0\xb4\x74"
        !          66473:             "\xe0\xe0\xb3\x74\xe0\xc1\xc4\x74\xe0\xa4\xa4\x83\x91"
        !          66474:             "\xe0\x14\x94\x93\x81\xe0\x11\xc3\xb3\x71\xe0\x21\xb3"
        !          66475:             "\xc3\x61\xe0\x31\xa3\xe2\x42\xe0\x52\x63\xe0\x44\xe0"
        !          66476:             "\x97\xe0\xe0\xe0\x20" }  },
        !          66477:       /* --- pixel bitmap for rsfs325 char#73 I --- */
        !          66478:       {  73,12510,                      /* character number, location */
        !          66479:          32, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          66480:           { 41,   33, 3,229, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          66481:             "\xe0\xe0\xb2\xe0\xe0\x84\xe0\xe0\x57\xe0\xe0\x34\x23"
        !          66482:             "\xe0\xe0\x15\x23\xe0\xe0\x14\x43\xe0\xe5\x44\xe0\xd4"
        !          66483:             "\x54\xe0\xd4\x54\xe0\xd4\x54\xe0\xd4\x54\x21\xe0\xa4"
        !          66484:             "\x64\x21\xe0\xa4\x54\x31\xe0\x94\x54\x41\xe0\x94\x54"
        !          66485:             "\x31\xe0\xa3\x54\x41\xe0\xa3\x44\x41\xe0\xb3\x44\x31"
        !          66486:             "\xe0\xd2\x34\x31\xe0\xe3\x14\x22\xe0\xe0\x38\xe0\xe0"
        !          66487:             "\x65\xe0\x20\xf1\xe0\x54\xe0\x40\xe0\x44\xe0\x81\xd4"
        !          66488:             "\xe0\x74\xb4\xe0\x84\xa4\xe0\x81\xd4\xe0\x91\xc3\xe0"
        !          66489:             "\xb1\xa4\xe0\xd2\x64\xe0\xe0\x37\xe0\xe0\x30" }  },
        !          66490:       /* --- pixel bitmap for rsfs325 char#74 J --- */
        !          66491:       {  74,14015,                      /* character number, location */
        !          66492:          32, 4,  -13, 4,      /* topleft row,col, and botleft row,col */
        !          66493:           { 47,   45, 2,179, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          66494:             "\x2d\x02\x2a\x04\x27\x07\x25\x05\x01\x03\x23\x05\x03"
        !          66495:             "\x03\x22\x05\x03\x04\x21\x05\x04\x04\x21\x04\x05\x04"
        !          66496:             "\x21\x04\x05\x04\x21\x04\x05\x04\x21\x04\x06\x04\x01"
        !          66497:             "\x01\x1f\x04\x05\x04\x02\x01\x1e\x04\x05\x04\x03\x01"
        !          66498:             "\x1e\x03\x06\x04\x03\x01\x1d\x04\x05\x04\x04\x01\x1d"
        !          66499:             "\x04\x04\x04\x04\x01\x1e\x03\x05\x04\x03\x01\x1f\x03"
        !          66500:             "\x04\x04\x04\x01\x20\x02\x03\x04\x03\x02\x22\x02\x02"
        !          66501:             "\x04\x02\x01\x25\x09\x27\x05\x2a\x04\x2a\x04\x12\x00"
        !          66502:             "\xff\x01\x18\x04\x13\x00\x17\x04\x06\x01\x23\x04\x05"
        !          66503:             "\x02\x23\x04\x04\x02\x25\x03\x02\x03\x26\x06\x27\x05"
        !          66504:             "\x25\x09\x23\x03\x05\x03\x21\x03\x07\x03\x20\x02\x09"
        !          66505:             "\x03\x1f\x02\x0a\x03\x1f\x01\x0b\x03\x1f\x01\x0b\x03"
        !          66506:             "\x20\x01\x0a\x03\x21\x01\x09\x02\x22\x01\x09\x02\x23"
        !          66507:             "\x01\x07\x03\x25\x01\x05\x02\x28\x05\x28" }  },
        !          66508:       /* --- pixel bitmap for rsfs325 char#75 K --- */
        !          66509:       {  75,15782,                      /* character number, location */
        !          66510:          32, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          66511:           { 52,   33, 3,295, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          66512:             "\xe0\xe0\x91\xe0\xe0\xe0\x81\x96\xe0\xe0\x71\x94\xe0"
        !          66513:             "\xe0\x91\x84\xe0\x93\xc2\x73\xe0\xa1\x22\xa2\x73\xe0"
        !          66514:             "\xa1\x24\x82\x74\xe0\x91\x34\x63\x83\xe0\x91\x34\x64"
        !          66515:             "\x73\xe0\x91\x44\x54\x73\xe0\xe0\x13\x36\x73\xe0\xe0"
        !          66516:             "\x44\x23\x73\xe0\xe0\xa3\x73\xe0\xe0\xa4\x63\xe0\xe0"
        !          66517:             "\xa4\x63\xe0\xe0\xb3\x13\x13\xe0\xe0\xc5\x15\xe0\xe0"
        !          66518:             "\xc5\x14\xe0\xe0\xd4\x25\xe0\xe0\xc4\x44\xe0\xe0\xc4"
        !          66519:             "\x34\xe0\xe0\xc4\x34\xe0\xe0\xc4\x44\xe0\xe0\xc3\x44"
        !          66520:             "\xe0\xe0\xc4\x44\xe0\xd1\xb4\x53\xe0\xc4\x94\x54\x91"
        !          66521:             "\xe0\x24\x84\x63\x91\xe0\x21\xb4\x73\x81\xe0\x31\xa3"
        !          66522:             "\x93\x71\xe0\x41\x93\xb2\x61\xe0\x62\x53\xe2\x32\xe0"
        !          66523:             "\x96\xe0\x34\xe0\x80" }  },
        !          66524:       /* --- pixel bitmap for rsfs325 char#76 L --- */
        !          66525:       {  76,17209,                      /* character number, location */
        !          66526:          32, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
        !          66527:           { 47,   33, 3,237, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          66528:             "\xe0\xe0\xc5\xe0\xa5\xc2\x32\xe0\x75\xc3\x51\xe0\x64"
        !          66529:             "\xd3\x62\xe0\x44\xd3\x63\xe0\x25\xd4\x62\xe0\x34\xd4"
        !          66530:             "\x72\xe0\x24\xd4\x72\xe0\x24\xe3\x73\xe0\x24\xd4\x72"
        !          66531:             "\xe0\x24\xd4\x72\xe0\x34\xc4\x63\xe0\x53\xb4\x63\xe0"
        !          66532:             "\x64\xa4\x43\xe0\x93\x94\x24\xe0\xc4\x69\xe0\xe0\x3b"
        !          66533:             "\xe0\xe0\xe4\xe0\xe0\xe4\xe0\x50\xf1\xe0\x94\xe0\x60"
        !          66534:             "\xe0\x84\xe0\xe0\xe4\xe0\x80\xf1\xe0\x64\xe0\x90\xe0"
        !          66535:             "\x54\xe0\xe0\xe4\xd1\xe0\xe3\xe1\xe0\x1e\x02\xd2\xe5"
        !          66536:             "\x7b\x45\xe0\x14\x7e\x06\xe0\x23\x64\x4c\xe0\x59\xa7"
        !          66537:             "\xe0\x54" }  },
        !          66538:       /* --- pixel bitmap for rsfs325 char#77 M --- */
        !          66539:       {  77,18872,                      /* character number, location */
        !          66540:          32, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
        !          66541:           { 53,   34, 3,359, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          66542:             "\xe0\xe0\xd1\xa1\xe0\xe0\xc1\xa2\xe0\xe0\xb2\x92\xe0"
        !          66543:             "\xe0\xa3\x92\xe0\xe0\xa3\x83\xe0\xe0\xa3\x83\xe0\xe0"
        !          66544:             "\x94\x84\xe0\xe0\x84\x84\xe0\xe0\x85\x74\xe0\xe0\x85"
        !          66545:             "\x75\xe0\xe0\x66\x75\xe0\xe0\x61\x24\x65\xe0\xe0\x61"
        !          66546:             "\x24\x61\x14\xe0\xe0\x51\x24\x61\x14\xe0\xe0\x51\x24"
        !          66547:             "\x61\x24\xe0\xe0\x41\x34\x51\x24\xe0\xe0\x41\x34\x51"
        !          66548:             "\x24\xe0\xe0\x41\x34\x51\x34\xe0\xe0\x31\x44\x41\x34"
        !          66549:             "\xe0\xe0\x31\x44\x51\x34\xe0\xe0\x21\x44\x51\x34\xe0"
        !          66550:             "\xe0\x21\x54\x41\x34\xe0\xe0\x21\x54\x41\x44\xe0\xe0"
        !          66551:             "\x21\x44\x41\x44\xe0\xe0\x21\x54\x31\x44\xe0\xe0\x21"
        !          66552:             "\x54\x31\x54\xe0\x51\x91\x54\x41\x44\x81\x94\x71\x64"
        !          66553:             "\x31\x53\x81\xa4\x61\x73\x31\x63\x71\xa1\x11\x62\x74"
        !          66554:             "\x21\x73\x61\xc1\x61\x93\x21\x82\x61\xe6\xa3\x11\x92"
        !          66555:             "\x42\xe0\xe0\x43\xb5\xe0\xe0\x71\xe0\xe0\x40" }  },
        !          66556:       /* --- pixel bitmap for rsfs325 char#78 N --- */
        !          66557:       {  78,20258,                      /* character number, location */
        !          66558:          32, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
        !          66559:           { 53,   33, 3,297, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          66560:             "\xe0\xe0\xe0\x92\xe0\xe0\x61\xe0\x13\xe0\xe0\x51\xe4"
        !          66561:             "\xe0\xe0\x52\xd3\xe0\xe0\x71\xd2\xe0\xe0\x82\xc2\xe0"
        !          66562:             "\xe0\x83\xb2\xe0\xe0\x81\x11\xb2\xe0\xe0\x93\xb1\xe0"
        !          66563:             "\xe0\x91\x12\xa1\xe0\xe0\x91\x23\x81\xe0\xe0\xa1\x23"
        !          66564:             "\x71\xe0\xe0\xa1\x33\x71\xe0\xe0\x91\x43\x61\xe0\xe0"
        !          66565:             "\x91\x53\x51\xe0\xe0\xa1\x54\x41\xe0\xe0\x91\x64\x31"
        !          66566:             "\xe0\x10\xf1\xe0\x81\x74\x21\xe0\x20\xe0\x71\x83\x21"
        !          66567:             "\xe0\x30\xf1\xe0\x61\x93\x11\xe0\x40\xe0\x51\xa4\xe0"
        !          66568:             "\xe0\x91\xb2\x11\xe0\xe0\x81\xc3\xe0\x91\xd1\xc2\xe0"
        !          66569:             "\x84\xb1\xd2\xe0\x84\xa1\xd2\xe0\x81\xd1\xe2\xe0\x81"
        !          66570:             "\xc1\xe0\x11\xe0\x91\xa2\xe0\x11\xe0\xb2\x62\xe0\x31"
        !          66571:             "\xe0\xd6\xe0\xe0\xe0\x23" }  },
        !          66572:       /* --- pixel bitmap for rsfs325 char#79 O --- */
        !          66573:       {  79,21542,                      /* character number, location */
        !          66574:          31, 5,    0, 5,      /* topleft row,col, and botleft row,col */
        !          66575:           { 30,   31, 3,181, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          66576:             "\xe0\x57\xe0\x73\x62\xe0\x33\xa1\xe3\xd1\xc3\xe1\xb3"
        !          66577:             "\xe0\x11\x94\x46\x61\x84\x32\x52\x51\x74\x31\x72\x41"
        !          66578:             "\x74\x31\x42\x23\x12\x84\x21\x76\x94\x21\xa3\x94\x21"
        !          66579:             "\xb3\x84\x21\xb4\x84\x21\xb3\x84\x21\xb4\x83\x21\xc4"
        !          66580:             "\x74\x21\xb4\x83\x21\xc4\x74\x21\xb4\x8f\x13\x21\xb4"
        !          66581:             "\x93\x11\xb4\xa3\x11\xa4\xb2\x21\xa3\xc2\x21\x93\xd2"
        !          66582:             "\xb3\xe3\x93\xe0\x22\x83\xe0\x43\x43\xe0\x86\xe0\x61" }  },
        !          66583:       /* --- pixel bitmap for rsfs325 char#80 P --- */
        !          66584:       {  80,23182,                      /* character number, location */
        !          66585:          32, 4,   -1, 4,      /* topleft row,col, and botleft row,col */
        !          66586:           { 42,   33, 3,251, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          66587:             "\xe0\x9a\xe0\xe0\x13\x94\x51\xe0\x42\xe0\x13\x12\xe0"
        !          66588:             "\x32\xe0\x53\xe0\x22\x71\xd3\xe0\x11\x91\xb6\xd1\x92"
        !          66589:             "\xa3\x23\xb1\xa2\x93\x33\xa1\xb2\x83\x43\x91\xb2\x84"
        !          66590:             "\x43\x81\xc2\x74\x44\x81\xb2\x74\x54\x71\xb3\x31\x33"
        !          66591:             "\x63\x81\xb2\x31\x34\x54\x71\xb2\x31\x34\x54\x81\xa2"
        !          66592:             "\x31\x34\x64\x81\x92\x41\x33\x64\x91\x73\x51\x24\x53"
        !          66593:             "\xc1\x43\x85\x44\xe5\xaa\xe0\xe0\x44\xe0\xe0\x94\xe0"
        !          66594:             "\xe0\x94\xe0\xe0\x94\xe0\xe0\x94\xe0\x81\xe4\xe0\x74"
        !          66595:             "\xc4\xe0\x84\xb4\xe0\x81\xe3\xe0\xa1\xc4\xe0\xb1\xa4"
        !          66596:             "\xe0\xe2\x64\xe0\xe0\x47\xe0\xe0\x41" }  },
        !          66597:       /* --- pixel bitmap for rsfs325 char#81 Q --- */
        !          66598:       {  81,24589,                      /* character number, location */
        !          66599:          32, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          66600:           { 37,   33, 3,195, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          66601:             "\xe0\xa8\xe0\xd3\x63\xe0\x93\xa2\xe0\x63\xd2\xe0\x43"
        !          66602:             "\xe3\xe0\x14\x51\x93\xe4\x71\x83\xf1\xd4\x82\x73\xc4"
        !          66603:             "\x83\x73\xb4\x93\x64\xb4\x84\x64\xa4\x94\x54\xb4\x84"
        !          66604:             "\x64\xb3\x84\x64\xc3\x83\x74\xc3\x64\x74\xe2\x44\x84"
        !          66605:             "\xe0\x35\xa4\xe0\xe0\x54\xe0\xe0\x44\xe0\xe0\x44\xe0"
        !          66606:             "\xe0\x44\xe0\xe0\x44\xe0\x16\xb3\xe0\x1a\x83\xee\x44"
        !          66607:             "\xa1\x3e\x02\x23\xb1\x33\x7b\xa2\x43\xa8\x83\x52\xbe"
        !          66608:             "\x03\x82\x74\x3c\xb8\x96\xb0" }  },
        !          66609:       /* --- pixel bitmap for rsfs325 char#82 R --- */
        !          66610:       {  82,26312,                      /* character number, location */
        !          66611:          32, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
        !          66612:           { 40,   33, 3,245, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          66613:             "\xe0\x9a\xe0\xd3\x94\x22\xe0\x42\xe4\xe0\x42\xe0\x33"
        !          66614:             "\xe0\x22\xe0\x45\xe1\xe0\x51\x24\xc1\xe0\x51\x34\xb1"
        !          66615:             "\x91\x91\x44\xa1\xa1\x82\x44\x91\xa1\x82\x54\x81\xa2"
        !          66616:             "\x72\x54\x91\x92\x72\x54\x91\x84\x63\x54\x91\x74\x63"
        !          66617:             "\x54\x91\x74\x63\x54\xa1\x74\x63\x34\xc1\x64\x5a\xe1"
        !          66618:             "\x54\x68\xe0\x31\x33\x74\x33\xe0\x34\x93\x43\xe0\xe0"
        !          66619:             "\x14\x34\xe0\xe4\x34\xe0\xe4\x44\xe0\xe4\x34\xe0\xe4"
        !          66620:             "\x34\xe0\x11\xc4\x44\xd4\xa4\x44\x71\x64\x94\x44\x71"
        !          66621:             "\x61\xc3\x64\x61\x71\xa4\x73\x61\x92\x64\x93\x51\xc7"
        !          66622:             "\xd2\x32\xe0\xe0\x64\xc7" }  },
        !          66623:       /* --- pixel bitmap for rsfs325 char#83 S --- */
        !          66624:       {  83,27683,                      /* character number, location */
        !          66625:          31, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
        !          66626:           { 45,   32, 3,237, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          66627:             "\xe0\xe0\xc4\xe0\xe0\xb2\x41\xe0\x87\x82\x51\xe0\x54"
        !          66628:             "\xc3\x61\xe0\x33\xe3\x61\xe0\x23\xe0\x14\x61\xe0\x13"
        !          66629:             "\xe0\x14\x61\xe0\x13\xe0\x23\x71\xe3\xe0\x24\x61\xe0"
        !          66630:             "\x13\xe0\x14\x61\xe0\x22\xe0\x14\x61\xe0\x32\xe4\x61"
        !          66631:             "\xe0\x43\xd4\x42\xe0\x62\xc4\x32\xe0\x93\x94\x22\xe0"
        !          66632:             "\xd3\x67\xe0\xe0\x4a\xe0\xe0\xc4\xe0\xe0\xc4\xe0\x40"
        !          66633:             "\xf1\xe0\x84\xe0\x50\xe0\x74\xe0\xe0\xc4\xe0\xe0\xc4"
        !          66634:             "\xe0\xb1\xe4\xe0\xa4\xc4\xe0\xb4\xb4\xe0\xb1\xe4\xe0"
        !          66635:             "\xc1\xd3\xe0\xe1\xb4\xe0\xe0\x22\x73\xe0\xe0\x77\xe0"
        !          66636:             "\xe0\x72" }  },
        !          66637:       /* --- pixel bitmap for rsfs325 char#84 T --- */
        !          66638:       {  84,29035,                      /* character number, location */
        !          66639:          32, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          66640:           { 41,   33, 3,201, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          66641:             "\xe0\x7a\xe0\xee\x02\xe0\x9e\x06\xe0\x6e\x0c\xe3\xcb"
        !          66642:             "\xd3\x71\x89\xc2\x82\xa6\xc2\x93\x82\xe0\x31\x94\x64"
        !          66643:             "\xe0\x21\xa4\x54\x80\xf1\x81\xa4\x54\x90\x81\x94\x54"
        !          66644:             "\xe0\x41\x84\x54\xe0\x51\x73\x74\xe0\x68\x84\xc0\xf1"
        !          66645:             "\xe0\xa4\xd0\xf1\xe0\x94\xe0\xe0\x84\xe0\x10\xf1\xe0"
        !          66646:             "\x74\xe0\x20\xe0\x64\xe0\xe0\x84\xe0\x71\xe4\xe0\x64"
        !          66647:             "\xd3\xe0\x74\xc3\xe0\x71\xe0\x13\xe0\x81\xd4\xe0\xa1"
        !          66648:             "\xb3\xe0\xd2\x73\xe0\xe0\x38\xe0\xe0\x10" }  },
        !          66649:       /* --- pixel bitmap for rsfs325 char#85 U --- */
        !          66650:       {  85,30450,                      /* character number, location */
        !          66651:          32, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          66652:           { 41,   33, 3,249, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          66653:             "\xe0\x26\xe0\xe0\x43\x52\xe0\xe0\x12\x92\xe0\xc2\xb3"
        !          66654:             "\xe0\xa1\xd3\xe0\x91\x61\x73\xc4\x61\x71\x73\xb4\x61"
        !          66655:             "\x72\x73\xa4\x61\x82\x64\x94\x61\x83\x63\x94\x61\x84"
        !          66656:             "\x54\x84\x71\x83\x54\x84\x71\x84\x54\x84\x71\x74\x54"
        !          66657:             "\x84\x71\x74\x54\x84\x81\x73\x64\x74\x91\x63\x64\x74"
        !          66658:             "\xb1\x34\x64\x84\xc4\x94\x74\xe0\xb4\x74\xe0\xb4\x74"
        !          66659:             "\xe0\xb4\x84\xe0\xb4\x74\xe0\xb4\x74\xe0\x10\xf1\xa4"
        !          66660:             "\x74\xe0\x20\x94\x74\x61\xe0\x53\x74\x61\xe0\x63\x65"
        !          66661:             "\x51\xe0\x73\x51\x13\x51\xe0\x82\x42\x23\x41\xe0\x92"
        !          66662:             "\x31\x42\x32\xe0\xb4\x64\xe0\x30" }  },
        !          66663:       /* --- pixel bitmap for rsfs325 char#86 V --- */
        !          66664:       {  86,31715,                      /* character number, location */
        !          66665:          32, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          66666:           { 36,   33, 3,219, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          66667:             "\xe0\x81\xe0\xe0\x61\xc2\xe0\x61\xc3\xe0\x52\xb3\xe0"
        !          66668:             "\x52\xb2\xa5\x62\xa2\x92\x33\x43\x92\x82\x44\x33\x92"
        !          66669:             "\x81\x64\x33\x82\x81\x64\x34\x72\x81\x64\x25\x81\xe0"
        !          66670:             "\x32\x21\x14\x71\xe0\x44\x24\x62\xe0\xa4\x61\xe0\xa4"
        !          66671:             "\x61\xc0\xf1\xd4\x51\xd0\xd4\x41\xe0\xc4\x41\xe0\xd4"
        !          66672:             "\x31\xe0\xe4\x21\xe0\xe0\x13\x31\xe0\xe4\x12\xe0\xe0"
        !          66673:             "\x13\x11\xe0\xe0\x34\xe0\xe0\x34\xe0\xe0\x43\xe0\xe0"
        !          66674:             "\x52\xe0\xe0\x52\xe0\xe0\x61\xe0\xe0\x61\xe0\xe0\x61"
        !          66675:             "\xe0\xe0\x61\xe0\xe0\x11" }  },
        !          66676:       /* --- pixel bitmap for rsfs325 char#87 W --- */
        !          66677:       {  87,33146,                      /* character number, location */
        !          66678:          32, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          66679:           { 44,   33, 3,313, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          66680:             "\xe0\x81\x91\xe0\xe0\x41\x91\xa2\xe0\x61\x91\xa3\xe0"
        !          66681:             "\x52\x82\x84\x64\x92\x82\x83\x71\x23\x73\x73\x73\x71"
        !          66682:             "\x33\x72\x71\x11\x82\x71\x34\x63\x61\x12\x72\x71\x34"
        !          66683:             "\x63\x61\x12\x72\x71\x34\x64\x51\x13\x71\xc4\x36\x51"
        !          66684:             "\x22\x72\xe5\x24\x41\x23\x71\xe0\x74\x51\x14\x61\xe0"
        !          66685:             "\x84\x41\x23\x71\xe0\x74\x41\x24\x61\xe0\x84\x31\x24"
        !          66686:             "\x71\xe0\x74\x31\x24\x71\xe0\x84\x21\x34\x61\xe0\x94"
        !          66687:             "\x11\x34\x61\xe0\x94\x11\x43\x61\xe0\xa3\x11\x44\x51"
        !          66688:             "\xe0\xa5\x53\x51\xe0\xb3\x11\x43\x51\xe0\xb5\x53\x32"
        !          66689:             "\xe0\xc4\x62\x31\xe0\xd4\x62\x31\xe0\xe3\x71\x22\xe0"
        !          66690:             "\xe3\x72\x11\xe0\xe0\x22\x81\x11\xe0\xe0\x22\x83\xe0"
        !          66691:             "\xe0\x31\x82\xe0\xe0\x41\x91\xe0\xe0\x41\x91\xe0\xe0"
        !          66692:             "\x31" }  },
        !          66693:       /* --- pixel bitmap for rsfs325 char#88 X --- */
        !          66694:       {  88,34761,                      /* character number, location */
        !          66695:          32, 4,   -1, 4,      /* topleft row,col, and botleft row,col */
        !          66696:           { 46,   33, 3,271, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          66697:             "\xe0\x56\xe0\x15\xe0\x33\x53\xc1\x33\xe2\xa2\x92\x34"
        !          66698:             "\xd1\xc2\x81\x53\xd1\x61\x63\x61\xe0\x71\x72\x53\x51"
        !          66699:             "\xe0\x71\x73\x53\x41\xe0\x71\x83\x53\x31\xe0\x81\x74"
        !          66700:             "\x53\x21\xe0\x81\x84\x53\x21\xe0\x81\x74\x54\x11\xe0"
        !          66701:             "\x91\x64\x63\x11\xe0\x91\x74\x55\xe0\xb1\x54\x64\xe0"
        !          66702:             "\xc1\x43\x74\xe0\xe5\x5b\xe0\xe0\x7b\xe0\x20\xf1\xe0"
        !          66703:             "\x74\xe0\x70\xe0\x64\xe0\xe0\xd4\xe0\xe0\xd5\xe0\xe0"
        !          66704:             "\xd4\xe0\xe0\xd3\x11\xe0\xe0\xc3\x11\xd1\xd2\xb3\x21"
        !          66705:             "\xd1\xc4\x93\x31\xc1\xc4\x93\x41\xb1\xd1\xb3\x51\xa1"
        !          66706:             "\xe1\xa3\x61\x91\xe0\x11\x92\x81\x72\xe0\x31\x63\xa1"
        !          66707:             "\x42\xe0\x66\xe4\xe0\x62" }  },
        !          66708:       /* --- pixel bitmap for rsfs325 char#89 Y --- */
        !          66709:       {  89,36298,                      /* character number, location */
        !          66710:          32, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          66711:           { 42,   33, 3,247, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          66712:             "\xe0\x27\xe0\xe0\x43\x63\xe0\x12\xb2\xb2\xc2\xc1\xd3"
        !          66713:             "\xa2\xb2\x41\x93\x83\xb1\x62\x83\x74\xa1\x72\x74\x64"
        !          66714:             "\xa1\x73\x74\x54\xa1\x83\x73\x64\x91\x93\x64\x54\x91"
        !          66715:             "\x94\x54\x54\xa1\x84\x54\x64\x91\x94\x54\x54\xa1\x84"
        !          66716:             "\x54\x64\x91\x84\x54\x64\xa1\x83\x64\x54\xb1\x73\x64"
        !          66717:             "\x64\xb1\x63\x64\x64\xd2\x33\x74\x54\xe0\x24\x93\x64"
        !          66718:             "\xe0\xe0\x13\x54\xe0\xe0\x23\x44\xe0\xe0\x33\x35\xe0"
        !          66719:             "\xe0\x49\xe0\xe0\x94\xe0\x82\xd4\xe0\x84\xb4\xe0\x84"
        !          66720:             "\xb4\xe0\x91\xd3\xe0\xb1\xc3\xe0\xc1\xa3\xe0\xe0\x12"
        !          66721:             "\x63\xe0\xe0\x57\xe0\xe0\x12" }  },
        !          66722:       /* --- pixel bitmap for rsfs325 char#90 Z --- */
        !          66723:       {  90,38107,                      /* character number, location */
        !          66724:          32, 4,   -1, 4,      /* topleft row,col, and botleft row,col */
        !          66725:           { 42,   33, 3,239, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          66726:             "\xe0\x65\xe0\xe0\x63\x43\xa4\xe0\x22\x73\x82\x41\xe1"
        !          66727:             "\x93\x62\x61\xc2\x94\x52\x71\xb1\xb4\x42\x81\xa1\x62"
        !          66728:             "\x34\x43\x71\xa1\x72\x34\x42\x53\xb1\x64\x33\x33\x23"
        !          66729:             "\xd1\x73\x69\xe0\x11\x74\x83\xe0\x51\x64\x84\xe0\x51"
        !          66730:             "\x64\x83\xe0\x61\x54\x84\xe0\x62\x33\x94\xe0\x94\x7d"
        !          66731:             "\xe0\xe0\x1d\xe0\xe0\x34\xe0\xe0\xa3\xe0\xe0\xa4\xe0"
        !          66732:             "\xe0\x94\xe0\xe0\x94\xe0\xe0\x94\xe0\xe0\xa3\xe0\xe0"
        !          66733:             "\xa3\xe0\xe0\xa3\xe0\xe0\xa3\xc1\xe0\x18\x13\xd1\xe2"
        !          66734:             "\x67\x93\xe1\x9e\x03\xe1\x73\x3d\xe0\x28\x6a\xe0\xe0"
        !          66735:             "\x66\xe0\x50" }  },
        !          66736:       /* --- pixel bitmap for rsfs325 char#127 (noname) --- */
        !          66737:       { 127,38799,                      /* character number, location */
        !          66738:          23,18,   16,18,      /* topleft row,col, and botleft row,col */
        !          66739:           { 17,    7, 3,25, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          66740:             "\x87\x82\x71\x52\xa1\x31\xc1\x12\xd1\x0f\x11\xe1\x11" }  },
        !          66741:       /* --- trailer  --- */
        !          66742:       { -99, -999,  0,0,0,0, { 0,0,0,0, (pixbyte *)"\0" }  }
        !          66743:    } ;
        !          66744: 
        !          66745: 
        !          66746: /* --- size=9 for .450gf ---
        !          66747:  * mf '\mode=preview; mag=magstep(-9.62468787106292402266); input rsfs10'
        !          66748:  * --------------------------------------------------------------------- */
        !          66749: /* --- fontdef for rsfs450 --- */
        !          66750: static	chardef  rsfs450[] =
        !          66751:    {
        !          66752:       /* --- pixel bitmap for rsfs450 char#65 A --- */
        !          66753:       {  65, 1331,                      /* character number, location */
        !          66754:          45, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
        !          66755:           { 60,   46, 3,457, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          66756:             "\xe0\xe0\xe0\xe0\x31\xe0\xe0\xe0\xe0\x22\xe0\xe0\xe0"
        !          66757:             "\xe0\x12\xe0\xe0\xe0\xe3\xe0\xe0\xe0\xe4\xe0\xe0\xe0"
        !          66758:             "\xd2\x11\xe0\xe0\xe0\xd1\x22\xe0\xe0\xe0\xb2\x22\xe0"
        !          66759:             "\xe0\xe0\xb2\x32\xe0\xe0\xe0\xa1\x42\xe0\xe0\xe0\xa1"
        !          66760:             "\x42\xe0\xe0\xe0\x91\x53\xe0\xe0\xe0\x81\x62\xe0\xe0"
        !          66761:             "\xe0\x81\x63\xe0\xe0\xe0\xe3\xe0\xe0\xe0\x61\x82\xe0"
        !          66762:             "\xe0\x24\xe1\x83\xe0\xc5\x34\x91\x83\xe0\xc5\x82\x61"
        !          66763:             "\x93\xe0\xb5\xb1\xe3\xe0\xb6\xc1\x11\xa3\xe0\xb6\xe1"
        !          66764:             "\xa4\xe0\xb5\xe1\x11\x93\xe0\xb5\xe1\x21\x84\xe0\xb5"
        !          66765:             "\xd1\x41\x64\xe0\xb5\xd1\x51\x63\xe0\xc5\xc1\x61\x54"
        !          66766:             "\xe0\xc5\xb1\x81\x34\xe0\xc5\xb1\x91\x25\xe0\xc5\xa1"
        !          66767:             "\xa1\x24\xe0\xd5\xa1\xa1\x14\xe0\xe0\x14\x91\xb6\xe0"
        !          66768:             "\xe0\x14\x81\xc5\xe0\xe0\x25\x61\xd5\xe0\xe0\x34\x51"
        !          66769:             "\xd5\xe0\xe0\x54\x41\xd4\xe0\xb3\x74\x21\xd5\x51\xe0"
        !          66770:             "\x35\x85\xd5\x51\xe0\x46\x85\xb6\x32\xe0\x46\xa1\x14"
        !          66771:             "\x95\x31\xe0\x61\x13\xa1\x56\x39\xe0\x61\xd2\xba\xe0"
        !          66772:             "\x91\xc1\xe0\x25\xe0\xc1\x92\xe0\x26\xe0\xc2\x62\xe0"
        !          66773:             "\x36\xe0\xe0\x16\xe0\xe0\xe0\x90" }  },
        !          66774:       /* --- pixel bitmap for rsfs450 char#66 B --- */
        !          66775:       {  66, 3198,                      /* character number, location */
        !          66776:          45, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
        !          66777:           { 57,   46, 3,437, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          66778:             "\xe0\xe0\x6c\xe0\xe0\xd4\xb4\x61\xe0\xe0\x12\xe0\x44"
        !          66779:             "\x12\xe0\xd3\xe0\x75\xe0\xc2\xe0\xb4\xe0\xb1\xe0\xc6"
        !          66780:             "\xe0\x82\xe0\xc3\x14\xe0\x61\xe0\xd3\x24\xe0\x42\xe0"
        !          66781:             "\xd3\x35\xe0\x21\xe0\xd4\x45\xe0\x11\xe2\xb4\x46\xe1"
        !          66782:             "\xe0\x12\xa5\x46\xd1\xe0\x22\x95\x56\xc1\xe0\x23\x85"
        !          66783:             "\x56\xd1\xe0\x23\x75\x66\xc1\xe0\x24\x65\x66\xc1\xe0"
        !          66784:             "\x25\x56\x66\xc1\xe0\x15\x65\x66\xc1\xe0\x16\x55\x66"
        !          66785:             "\xd1\xe0\x15\x55\x66\xe1\xe6\x46\x65\xe0\x11\xd6\x46"
        !          66786:             "\x65\xe0\x21\xc6\x4e\x02\xe0\x41\xc5\x57\x45\xe0\x41"
        !          66787:             "\xb5\x57\x34\x14\xe0\x31\x85\x6c\x53\xe0\x41\x55\x76"
        !          66788:             "\xc4\xe0\x47\xa6\xc4\xe0\xe0\x66\xd4\xe0\xe0\x56\xd5"
        !          66789:             "\xe0\xe0\x46\xe5\xe0\xe0\x46\x73\x45\xe0\xe0\x36\x53"
        !          66790:             "\x66\xe0\xe0\x26\x42\x95\xe0\xe0\x35\x41\xa6\xb2\xe0"
        !          66791:             "\x35\x32\xa6\xb5\xe5\x41\xb6\xa6\xd5\x41\xb6\xa6\xd5"
        !          66792:             "\x51\xa6\xb1\x13\xd5\x51\xa6\xb1\xe0\x35\x61\xa5\xc1"
        !          66793:             "\xe0\x24\x81\x95\xe1\xe4\x91\x84\xe0\x22\xb4\xb1\x74"
        !          66794:             "\xe0\x52\x74\xe1\x44\xe0\x98\xe0\x45\xe0\x72" }  },
        !          66795:       /* --- pixel bitmap for rsfs450 char#67 C --- */
        !          66796:       {  67, 4575,                      /* character number, location */
        !          66797:          45, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
        !          66798:           { 49,   46, 3,345, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          66799:             "\xe0\xe0\xe5\xe0\xe0\xd4\x41\xe0\xe0\xa4\x71\xc6\xe0"
        !          66800:             "\x43\x91\x95\xe0\x64\xa1\x75\xe0\x73\xc1\x56\xe0\x64"
        !          66801:             "\xd1\x46\xe0\x64\xd1\x46\xe0\x64\xe1\x36\xe0\x64\xe1"
        !          66802:             "\x36\xe0\x64\xe1\x46\xe0\x45\xe1\x46\xe0\x45\xe1\x56"
        !          66803:             "\xe0\x36\xd1\x65\xe0\x36\xd1\x75\xe0\x35\xc2\x85\xe0"
        !          66804:             "\x25\xb2\xb4\xe0\x16\x92\xd4\xe6\x82\xe0\x24\xc6\x63"
        !          66805:             "\xe0\x54\xa6\x34\xe0\xa5\x79\xe0\xe0\x3e\xe0\xd0\xf1"
        !          66806:             "\xe0\x16\xe0\xe0\xe6\xe0\xe0\xe6\xe0\xe0\xe0\x16\x76"
        !          66807:             "\xe0\xe0\x16\x71\x53\xe0\xd5\x62\x64\xe0\xb6\x51\x84"
        !          66808:             "\xe0\xb5\x51\x94\xe0\xa6\x41\xa5\xd0\xf1\xa5\x41\xa5"
        !          66809:             "\xe0\xa4\x41\xa6\xe0\x95\x41\xa5\xe0\xa5\x41\x96\xe0"
        !          66810:             "\xa4\x51\x86\xe0\xb4\x51\x76\xe0\xd3\xd5\xe0\xe3\xc5"
        !          66811:             "\xe0\xe0\x13\xb5\xe0\xe0\x33\x95\xe0\xe0\x53\x65\xe0"
        !          66812:             "\xe0\x8a\xe0\xc5" }  },
        !          66813:       /* --- pixel bitmap for rsfs450 char#68 D --- */
        !          66814:       {  68, 6020,                      /* character number, location */
        !          66815:          45, 3,   -2, 3,      /* topleft row,col, and botleft row,col */
        !          66816:           { 50,   47, 3,377, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          66817:             "\xe0\xda\xe0\xe0\x95\x83\xe0\xe0\x35\xe2\xe0\xd5\xe0"
        !          66818:             "\x41\xe0\xa6\xe0\x61\xe0\x85\xe0\x91\xe0\x56\xe0\xa1"
        !          66819:             "\xe0\x46\xe0\xc1\xe0\x26\xe0\xd1\xe0\x16\xb1\xe0\x31"
        !          66820:             "\x12\xa6\xc1\xe0\x23\xb6\xd1\xe4\xb6\xe1\xc4\x11\xb6"
        !          66821:             "\xe1\xb4\x21\xa6\xe0\x11\xa4\x31\xa6\xe1\x95\x41\x96"
        !          66822:             "\xe0\x11\x85\x51\x95\xe0\x11\x85\x61\x95\xe0\x11\x76"
        !          66823:             "\x61\x86\xe1\x76\x71\x85\xe1\x85\x71\x95\xd1\x85\x81"
        !          66824:             "\x95\xc1\x86\x81\x94\xc1\x86\x81\xb3\xa2\x86\x91\xc3"
        !          66825:             "\x81\x96\xa1\xd3\x43\xa6\x91\xe0\x25\xc6\xa1\x60\xf1"
        !          66826:             "\xe0\xc6\xa1\x70\xe0\xb6\xa1\xe0\xe0\x46\xb1\xe0\xe0"
        !          66827:             "\x36\xb1\xe0\xe0\x45\xb1\xe0\xe0\x46\xb1\xe0\xe0\x36"
        !          66828:             "\xb1\xe0\xe0\x36\xb1\xe0\xe0\x45\xb1\xe0\xe0\x45\xc1"
        !          66829:             "\xe0\xe0\x35\xc1\xe0\xe0\x35\xb2\xe0\xe0\x34\xc1\xe0"
        !          66830:             "\x77\x44\xc1\xe0\x57\x37\xb2\xe0\x56\x64\xb2\xe0\x9c"
        !          66831:             "\x23\x53\xe0\xe0\xe5\xe0\xc6" }  },
        !          66832:       /* --- pixel bitmap for rsfs450 char#69 E --- */
        !          66833:       {  69, 6846,                      /* character number, location */
        !          66834:          45, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          66835:           { 42,   46, 3,305, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          66836:             "\xe0\xe0\x27\xe0\xe0\x4c\xe0\xee\x01\xe0\xc5\x93\xe0"
        !          66837:             "\x95\xc2\xe0\x85\xe2\xe0\x65\x83\x42\xe0\x56\x71\x72"
        !          66838:             "\xe0\x46\x71\x81\xe0\x46\x71\x91\x10\xf1\xe0\x26\x71"
        !          66839:             "\x91\x20\xe0\x16\x71\x91\xe0\x45\x81\x81\xe0\x55\x81"
        !          66840:             "\x71\xe0\x55\xa1\x42\xe0\x65\xb4\xe0\x85\xe0\xe0\xa4"
        !          66841:             "\xe0\xe0\xa8\xe0\xe0\x65\x32\xe0\xe0\x18\x51\xe0\xc5"
        !          66842:             "\x46\xe0\xb5\xe0\xe0\x85\xe0\xe0\x76\xe0\xe0\x76\xe0"
        !          66843:             "\xe0\x76\xe0\xe0\x86\x97\xe0\x56\x91\x63\xe0\x26\x82"
        !          66844:             "\x83\xe0\x16\x71\xa4\xd6\x81\xa4\xd6\x71\xa6\xc5\x71"
        !          66845:             "\xb5\xdf\x15\x71\xa6\xd4\x71\xa6\xe4\x71\x96\xe0\x14"
        !          66846:             "\xe0\x26\xe0\x24\xe0\x25\xe0\x44\xe5\xe0\x63\xd4\xe0"
        !          66847:             "\x93\xa5\xe0\xb4\x65\xe0\xe0\x29\xe0\xc0" }  },
        !          66848:       /* --- pixel bitmap for rsfs450 char#70 F --- */
        !          66849:       {  70, 8342,                      /* character number, location */
        !          66850:          48, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          66851:           { 58,   49, 3,447, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          66852:             "\xe0\xe0\xb1\xe0\xe0\xe0\xab\xe0\xe0\xe0\x2e\x02\xe0"
        !          66853:             "\xe0\xce\x05\xe0\xe0\x9e\x09\xe0\xe0\x5e\x0d\xe0\xe0"
        !          66854:             "\x2e\x0e\x02\xe0\xd5\xde\x03\xe0\x74\xe0\x4e\x01\xe0"
        !          66855:             "\x63\xe0\x8c\xe0\x62\xb1\xdb\xe0\x52\xc2\xb2\x18\xe0"
        !          66856:             "\x52\xc4\x93\x44\xe0\x52\xd4\x74\xe0\xe1\xd5\x65\xe0"
        !          66857:             "\xd1\xe5\x55\xe0\xd1\xe6\x46\xe0\xd1\xe5\x46\xe0\xd1"
        !          66858:             "\xe6\x36\xe0\xe1\xd6\x46\xe0\xe1\xc6\x46\xe0\xe0\x11"
        !          66859:             "\xc5\x46\xe0\xe0\x21\xb5\x56\xe0\xe0\x31\x85\x66\x55"
        !          66860:             "\xe0\x82\x55\x76\x53\x21\xe0\xa7\xa6\x43\x31\xe0\xe0"
        !          66861:             "\xc6\x43\x31\xe0\xe0\xc6\x44\x12\xe0\xe0\xd6\x36\xe0"
        !          66862:             "\xe0\xe6\x25\xe0\xe0\xdc\x14\xe0\xe0\x94\x36\x35\xe0"
        !          66863:             "\xe0\x63\x66\x35\xe0\xe0\x52\x96\x23\xe0\xe0\x71\xa6"
        !          66864:             "\x31\xe0\xe0\x81\xa6\xe0\xe0\xe0\x96\xe0\xe0\xe0\xa5"
        !          66865:             "\xe0\xe0\x42\xe0\x46\xe0\xe0\x25\xe0\x26\xe0\xe0\x26"
        !          66866:             "\xe0\x16\xe0\xe0\x36\xe5\xe0\xe0\x41\x14\xe5\xe0\xe0"
        !          66867:             "\x51\xe0\x45\xe0\xe0\x61\xe0\x34\xe0\xe0\x81\xe0\x24"
        !          66868:             "\xe0\xe0\xa1\xd4\xe0\xe0\xd3\x84\xe0\xe0\xe0\x49\xe0"
        !          66869:             "\xe0\xe0\x20" }  },
        !          66870:       /* --- pixel bitmap for rsfs450 char#71 G --- */
        !          66871:       {  71, 9836,                      /* character number, location */
        !          66872:          45, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
        !          66873:           { 46,   46, 3,333, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          66874:             "\xe0\xe0\xa5\xe0\xe0\xb3\x33\xe0\xe0\x73\x53\xe0\x14"
        !          66875:             "\xe4\x55\xb4\xe0\x24\x65\x95\xe0\x24\x66\x85\xe0\x24"
        !          66876:             "\x66\x85\xe0\x15\x76\x66\xe0\x15\x76\x66\xe0\x15\x76"
        !          66877:             "\x75\xe0\x16\x66\x76\xe6\x75\x76\xe0\x15\x75\x76\xe0"
        !          66878:             "\x15\x75\x86\xe6\x65\x86\xe6\x65\x96\xd6\x65\xa5\xd6"
        !          66879:             "\x65\xb5\xd6\x54\x61\x65\xc6\x45\x61\x74\xc6\x45\x61"
        !          66880:             "\x85\xb6\x25\x72\x94\xa6\x24\x83\xa3\xa5\x14\x93\xc3"
        !          66881:             "\x98\xa4\xd4\x75\xc5\xe0\x2c\xc6\xe0\xa4\xb6\xe0\xb4"
        !          66882:             "\x98\xe0\xc3\x81\x16\xe0\xe2\x62\x26\xe0\xe0\x17\x36"
        !          66883:             "\xe0\xe0\xc6\xc0\xf1\xe0\xd6\xd0\x72\xe0\x36\xe0\x65"
        !          66884:             "\xe0\x16\xe0\x56\xe6\xe0\x56\xe0\x16\xe0\x51\x13\xe0"
        !          66885:             "\x16\xe0\x51\xe0\x56\xe0\x61\xe0\x46\xe0\x81\xe0\x26"
        !          66886:             "\xe0\xa1\xd7\xe0\xc3\x86\xe0\xe0\x4b\xe0\xc0" }  },
        !          66887:       /* --- pixel bitmap for rsfs450 char#72 H --- */
        !          66888:       {  72,11643,                      /* character number, location */
        !          66889:          45, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
        !          66890:           { 77,   46, 3,547, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          66891:             "\xe0\xe0\xe0\xb1\xe0\x16\xe0\xe0\xe0\xc1\xd4\x51\xe0"
        !          66892:             "\xe0\xe0\xa1\xc4\x71\xe0\xe0\xe0\x82\xc4\x91\xe0\xe0"
        !          66893:             "\xe0\x63\xa5\xa1\xe0\xe2\xe0\x33\xa5\xb1\xe0\xb3\x13"
        !          66894:             "\xe3\xa5\xb1\xe0\xb1\x44\xc3\xa5\xc1\xe0\xa1\x45\xb4"
        !          66895:             "\x95\xc1\xe0\xa1\x46\xa4\x95\xd1\xe0\x91\x56\x94\x95"
        !          66896:             "\xd1\xe0\x91\x56\x94\x95\xe1\xe0\x81\x56\x95\x86\xd1"
        !          66897:             "\xe0\x91\x56\x76\x86\xd1\xe0\xe0\x26\x52\x14\x86\xd1"
        !          66898:             "\xe0\xe0\x4a\x24\x86\xd1\xe0\xe0\xe0\x25\x85\xc2\xe0"
        !          66899:             "\xe0\xe0\x25\x86\xa2\xe0\xe0\xe0\x35\x86\x83\xe0\xe0"
        !          66900:             "\xe0\x45\x86\x54\xe0\xe0\xe0\x6e\x0b\xe0\xe0\xe0\x4b"
        !          66901:             "\x86\xe0\xe0\xe0\x73\x55\x86\xe0\xe0\xe0\x53\x76\x76"
        !          66902:             "\xe0\xe0\xe0\x51\x96\x86\xe0\xe0\xe0\x32\x96\x86\xe0"
        !          66903:             "\xe0\xe0\x31\xb5\x86\xe0\xe0\xe0\x31\xb6\x86\xe0\xe0"
        !          66904:             "\xe0\x21\xb6\x86\xe0\xe0\xe0\x21\xb6\x86\xe0\xe0\xe0"
        !          66905:             "\xe0\x16\x86\xe0\xe0\xe0\xe6\x86\xe0\xe0\xe0\xe6\x95"
        !          66906:             "\xe0\xe0\xe0\xe6\x96\xe0\xe0\xe0\xe6\x95\xe0\xe0\xa2"
        !          66907:             "\xe0\x26\x96\xe0\xe0\x95\xd6\xa5\xd1\xe0\x96\xc6\xb5"
        !          66908:             "\xc1\xe0\x96\xc6\xc4\xd1\xe0\x91\x13\xd4\xe4\xc1\xe0"
        !          66909:             "\x91\xe0\x34\xe0\x14\xb1\xe0\xa1\xe0\x24\xe0\x24\xa1"
        !          66910:             "\xe0\xc1\xd4\xe0\x44\x91\xe0\xd2\xb4\xe0\x63\x72\xe0"
        !          66911:             "\xe0\x22\x74\xe0\x93\x42\xe0\xe0\x68\xe0\xe5\xe0\xe0"
        !          66912:             "\x30" }  },
        !          66913:       /* --- pixel bitmap for rsfs450 char#73 I --- */
        !          66914:       {  73,13176,                      /* character number, location */
        !          66915:          45, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          66916:           { 57,   46, 2,197, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          66917:             "\x37\x02\x34\x04\x32\x06\x2f\x09\x2c\x06\x02\x04\x2a"
        !          66918:             "\x07\x03\x04\x28\x07\x04\x05\x27\x07\x05\x05\x27\x06"
        !          66919:             "\x06\x05\x26\x07\x06\x05\x26\x06\x07\x06\x25\x06\x07"
        !          66920:             "\x06\x25\x06\x07\x06\x25\x06\x07\x06\x0c\x00\xff\x01"
        !          66921:             "\x19\x06\x07\x06\x02\x01\x0a\x00\x18\x06\x07\x06\x03"
        !          66922:             "\x01\x22\x05\x07\x06\x04\x01\x21\x06\x07\x06\x04\x01"
        !          66923:             "\x21\x05\x07\x06\x05\x01\x0a\x00\xff\x01\x17\x05\x06"
        !          66924:             "\x06\x05\x01\x0b\x00\x17\x04\x06\x06\x05\x01\x23\x04"
        !          66925:             "\x05\x06\x05\x01\x24\x04\x05\x06\x04\x01\x25\x04\x04"
        !          66926:             "\x06\x04\x01\x27\x03\x04\x06\x03\x01\x29\x03\x02\x06"
        !          66927:             "\x02\x02\x2b\x09\x01\x02\x2f\x08\x31\x06\x17\x00\xff"
        !          66928:             "\x01\x1b\x06\x18\x00\x1a\x06\x32\x06\x1e\x02\x12\x06"
        !          66929:             "\x1e\x05\x0f\x06\x1e\x06\x0e\x06\x1e\x06\x0e\x06\x1f"
        !          66930:             "\x01\x01\x03\x0e\x05\x20\x01\x12\x05\x21\x01\x11\x04"
        !          66931:             "\x24\x01\x0e\x05\x25\x02\x0c\x04\x29\x02\x07\x04\x2e"
        !          66932:             "\x08\x2c" }  },
        !          66933:       /* --- pixel bitmap for rsfs450 char#74 J --- */
        !          66934:       {  74,14739,                      /* character number, location */
        !          66935:          45, 7,  -18, 7,      /* topleft row,col, and botleft row,col */
        !          66936:           { 65,   63, 2,253, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          66937:             "\x3f\x02\x3c\x04\x3a\x06\x37\x09\x34\x06\x02\x04\x32"
        !          66938:             "\x06\x03\x05\x30\x07\x04\x05\x2f\x07\x05\x05\x2f\x06"
        !          66939:             "\x06\x05\x2e\x07\x06\x05\x2e\x06\x07\x05\x2e\x06\x07"
        !          66940:             "\x05\x2e\x06\x07\x06\x2d\x06\x07\x06\x2d\x06\x07\x06"
        !          66941:             "\x02\x01\x2b\x06\x06\x06\x03\x01\x2a\x06\x07\x06\x03"
        !          66942:             "\x01\x2a\x05\x07\x06\x04\x01\x29\x06\x06\x06\x05\x01"
        !          66943:             "\x29\x05\x07\x06\x04\x01\x2a\x05\x06\x06\x05\x01\x0b"
        !          66944:             "\x00\xff\x01\x1e\x05\x06\x06\x05\x01\x0c\x00\x1e\x05"
        !          66945:             "\x05\x06\x05\x01\x2c\x04\x04\x06\x05\x01\x2d\x04\x04"
        !          66946:             "\x06\x04\x01\x2f\x03\x03\x06\x03\x02\x31\x03\x02\x06"
        !          66947:             "\x02\x01\x34\x0c\x37\x07\x3a\x06\x3a\x06\x18\x00\xff"
        !          66948:             "\x01\x22\x06\x19\x00\x21\x06\x3a\x06\x3a\x06\x08\x01"
        !          66949:             "\x32\x06\x07\x01\x32\x06\x06\x02\x32\x06\x06\x01\x34"
        !          66950:             "\x05\x04\x03\x34\x05\x02\x03\x36\x08\x38\x06\x38\x08"
        !          66951:             "\x35\x04\x02\x05\x32\x04\x05\x05\x30\x03\x08\x05\x2e"
        !          66952:             "\x03\x0a\x05\x2d\x02\x0c\x05\x2c\x02\x0e\x04\x2c\x01"
        !          66953:             "\x0f\x04\x2c\x01\x0f\x04\x2c\x01\x0f\x04\x2c\x01\x0f"
        !          66954:             "\x04\x2d\x01\x0e\x03\x2e\x01\x0e\x03\x2f\x01\x0c\x04"
        !          66955:             "\x30\x01\x0b\x04\x31\x01\x0a\x03\x33\x01\x08\x03\x36"
        !          66956:             "\x01\x05\x04\x38\x06\x39" }  },
        !          66957:       /* --- pixel bitmap for rsfs450 char#75 K --- */
        !          66958:       {  75,16580,                      /* character number, location */
        !          66959:          45, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
        !          66960:           { 73,   46, 3,515, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          66961:             "\xe0\xe0\xe0\xa1\xe0\x22\xe0\xe0\xe0\xb2\xd7\xe0\xe0"
        !          66962:             "\xe0\x82\xc6\xe0\xe0\xe0\xa2\xb6\xe0\xe0\xe0\xb2\xb5"
        !          66963:             "\xe0\xe0\x72\xe0\x33\xa5\xe0\xe0\x62\x13\xe3\xa4\xe0"
        !          66964:             "\xe0\x62\x34\xc3\xa4\xe0\xe0\x61\x45\xb3\xa5\xe0\xe0"
        !          66965:             "\x51\x55\xa4\x95\xe0\xe0\x51\x55\xa4\x95\xe0\xe0\x51"
        !          66966:             "\x56\x94\xa4\xe0\xe0\x61\x46\x94\xa4\xe0\xe0\x61\x56"
        !          66967:             "\x76\x95\xe0\xe0\xd5\x57\x95\xe0\xe0\xe0\x28\x15\x95"
        !          66968:             "\xe0\xe0\xe0\xc4\xa4\xe0\xe0\xe0\xc5\x93\xe0\xe0\xe0"
        !          66969:             "\xd5\x93\xe0\xe0\xe0\xd5\x84\xe0\xe0\xe0\xd6\x74\xe0"
        !          66970:             "\xe0\xe0\xdb\x23\xe0\xe0\xe0\xe7\x36\xe0\xe0\xe0\xe0"
        !          66971:             "\x16\x35\xe0\xe0\xe0\xe0\x27\x25\xe0\xe0\xe0\xe0\x26"
        !          66972:             "\x18\xe0\xe0\xe0\xe0\x16\x46\xe0\xe0\xe0\xe0\x15\x56"
        !          66973:             "\xe0\xe0\xe0\xe6\x46\xe0\xe0\xe0\xe6\x46\xe0\xe0\xe0"
        !          66974:             "\xe6\x56\xe0\xe0\xe0\xe6\x46\xe0\xe0\xe0\xe6\x55\xe0"
        !          66975:             "\xe0\xe0\xe6\x56\xe0\xe0\xe0\xd6\x65\xe0\xe0\xa2\xe0"
        !          66976:             "\x25\x66\xe0\xe0\x95\xd5\x75\xd1\xe0\x96\xc5\x85\xc1"
        !          66977:             "\xe0\x96\xc5\x95\xc1\xe0\x91\x13\xc5\xa4\xc1\xe0\x91"
        !          66978:             "\xe0\x25\xb4\xb1\xe0\xa1\xe0\x15\xc4\xa1\xe0\xc1\xd4"
        !          66979:             "\xe0\x13\x82\xe0\xd1\xc3\xe0\x33\x71\xe0\xe0\x23\x73"
        !          66980:             "\xe0\x63\x42\xe0\xe0\x68\xe0\xa5\xe0\xe0\x30" }  },
        !          66981:       /* --- pixel bitmap for rsfs450 char#76 L --- */
        !          66982:       {  76,18059,                      /* character number, location */
        !          66983:          45, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
        !          66984:           { 64,   46, 3,429, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          66985:             "\xe0\xe0\xe0\xe5\xe0\xe0\x57\xe0\x33\x32\xe0\xe0\x27"
        !          66986:             "\xe0\x34\x52\xe0\xd7\xe0\x44\x63\xe0\xb6\xe0\x54\x73"
        !          66987:             "\xe0\x97\xe0\x54\x83\xe0\x86\xe0\x65\x83\xe0\x76\xe0"
        !          66988:             "\x65\x83\xe0\x76\xe0\x65\x93\xe0\x76\xe0\x55\x94\xe0"
        !          66989:             "\x66\xe0\x55\xa3\xe0\x66\xe0\x56\x93\xe0\x76\xe0\x46"
        !          66990:             "\x94\xe0\x66\xe0\x55\x94\xe0\x76\xe0\x45\x94\xe0\x86"
        !          66991:             "\xe0\x36\x84\xe0\x96\xe0\x26\x84\xe0\xa6\xe0\x16\x75"
        !          66992:             "\xe0\xc5\xe0\x15\x74\xe0\xe0\x15\xd6\x45\xe0\xe0\x45"
        !          66993:             "\xb6\x35\xe0\xe0\x75\x9c\xe0\xe0\xde\x05\xe0\xe0\xe0"
        !          66994:             "\xd6\xe0\xe0\xe0\xe0\x16\xe0\xb0\xf1\xe0\xe0\x46\xe0"
        !          66995:             "\xc0\xe0\xe0\x36\xe0\xd0\xf1\xe0\xe0\x26\xe0\xe0\xe0"
        !          66996:             "\xe0\x16\xe0\xe0\xe0\xe0\x16\xe0\xe0\x20\xf1\xe0\xd6"
        !          66997:             "\xe0\xe0\x30\xe0\xc6\xe0\xe0\xe0\xe0\x16\xe0\xe0\xe0"
        !          66998:             "\xe0\x16\xe0\x41\xe0\xe0\xa6\xe0\x41\xe0\xe0\xa5\xe0"
        !          66999:             "\x51\xe0\x8b\x55\xe0\x42\xe0\x67\x4e\xe4\xe0\x66\xae"
        !          67000:             "\x0d\xe0\x66\xbe\x0c\xe0\x76\x94\x4e\x04\xe0\x96\x65"
        !          67001:             "\x8e\xe0\xdb\xe0\x28\xe0\xd1" }  },
        !          67002:       /* --- pixel bitmap for rsfs450 char#77 M --- */
        !          67003:       {  77,19782,                      /* character number, location */
        !          67004:          45, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
        !          67005:           { 75,   47, 3,605, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          67006:             "\xe0\xe0\xe0\xe0\x21\xe0\x11\xe0\xe0\xe0\xe0\x11\xe0"
        !          67007:             "\x12\xe0\xe0\xe0\xd2\xe3\xe0\xe0\xe0\xd3\xd3\xe0\xe0"
        !          67008:             "\xe0\xd3\xd3\xe0\xe0\xe0\xc4\xc4\xe0\xe0\xe0\xc4\xc4"
        !          67009:             "\xe0\xe0\xe0\xc5\xb4\xe0\xe0\xe0\xb6\xa6\xe0\xe0\xe0"
        !          67010:             "\xa6\xa6\xe0\xe0\xe0\xa6\xa6\xe0\xe0\xe0\xa7\x96\xe0"
        !          67011:             "\xe0\xe0\xa7\xa6\xe0\xe0\xe0\x88\xa6\xe0\xe0\xe0\x81"
        !          67012:             "\x26\x96\xe0\xe0\xe0\x81\x26\x97\xe0\xe0\xe0\x71\x26"
        !          67013:             "\x97\xe0\xe0\xe0\x62\x36\x81\x16\xe0\xe0\xe0\x51\x46"
        !          67014:             "\x81\x16\xe0\xe0\xe0\x51\x46\x81\x16\xe0\xe0\xe0\x51"
        !          67015:             "\x46\x81\x26\xe0\xe0\xe0\x41\x56\x71\x26\xe0\xe0\xe0"
        !          67016:             "\x41\x56\x71\x36\xe0\xe0\xe0\x31\x56\x71\x36\xe0\xe0"
        !          67017:             "\xe0\x31\x66\x61\x46\xe0\xe0\xe0\x21\x66\x61\x46\xe0"
        !          67018:             "\xe0\xe0\x21\x66\x61\x56\xe0\xe0\xe0\x11\x76\x51\x56"
        !          67019:             "\xe0\xe0\xe0\x21\x66\x61\x46\xe0\xe0\xe0\x21\x66\x61"
        !          67020:             "\x56\xe0\xe0\xe0\x11\x76\x51\x56\xe0\xe0\xe0\x11\x76"
        !          67021:             "\x51\x56\xe0\xe0\xe0\x11\x76\x51\x66\xe0\xe0\xe0\x11"
        !          67022:             "\x66\x51\x66\xe0\xe0\xe0\x11\x76\x51\x56\xe0\xe0\xe0"
        !          67023:             "\x11\x76\x51\x66\xe0\xe0\xe1\x85\x51\x66\xb1\xe0\x13"
        !          67024:             "\xc1\x86\x41\x76\xa1\xe0\x15\xa1\x95\x41\x85\xa1\xe0"
        !          67025:             "\x16\x91\x96\x31\x85\xb1\xe6\x91\xa5\x31\x95\xa1\xe0"
        !          67026:             "\x11\x13\x91\xb4\x31\xa5\x82\xe0\x21\xc1\xc4\x21\xb4"
        !          67027:             "\x81\xe0\x41\xa2\xd4\x11\xd3\x71\xe0\x62\x62\xe0\x13"
        !          67028:             "\x11\xe3\x52\xe0\x96\xe0\x34\xe0\x27\xe0\xe0\xe0\x72"
        !          67029:             "\xe0\xe0\xe0\x41" }  },
        !          67030:       /* --- pixel bitmap for rsfs450 char#78 N --- */
        !          67031:       {  78,21270,                      /* character number, location */
        !          67032:          45, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
        !          67033:           { 74,   46, 2,247, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          67034:             "\x48\x02\x30\x01\x15\x04\x2f\x01\x14\x06\x2e\x01\x14"
        !          67035:             "\x05\x30\x01\x13\x04\x31\x01\x13\x03\x32\x02\x12\x03"
        !          67036:             "\x32\x03\x11\x02\x34\x03\x10\x02\x34\x03\x10\x02\x34"
        !          67037:             "\x01\x01\x02\x10\x01\x35\x01\x01\x02\x0f\x01\x35\x01"
        !          67038:             "\x01\x03\x0e\x01\x35\x01\x02\x04\x0c\x01\x35\x01\x03"
        !          67039:             "\x04\x0c\x01\x35\x01\x03\x04\x0b\x01\x35\x01\x04\x04"
        !          67040:             "\x0a\x01\x35\x01\x04\x05\x09\x01\x36\x01\x04\x06\x08"
        !          67041:             "\x01\x35\x01\x05\x06\x07\x01\x35\x01\x06\x06\x06\x01"
        !          67042:             "\x35\x01\x07\x06\x06\x01\x35\x01\x07\x06\x05\x01\x35"
        !          67043:             "\x01\x08\x06\x04\x01\x35\x01\x09\x06\x04\x01\x35\x01"
        !          67044:             "\x09\x06\x03\x01\x35\x01\x0a\x06\x02\x01\x35\x01\x0c"
        !          67045:             "\x05\x02\x01\x35\x01\x0c\x05\x01\x01\x35\x01\x0d\x04"
        !          67046:             "\x01\x01\x35\x01\x0e\x04\x01\x01\x34\x01\x0f\x05\x35"
        !          67047:             "\x01\x0f\x03\x01\x01\x34\x01\x10\x04\x34\x01\x11\x03"
        !          67048:             "\x21\x02\x11\x01\x12\x03\x20\x05\x0f\x01\x11\x03\x20"
        !          67049:             "\x06\x0e\x01\x12\x03\x1f\x06\x0e\x01\x13\x02\x20\x01"
        !          67050:             "\x01\x03\x0e\x01\x14\x02\x1f\x01\x12\x01\x14\x02\x20"
        !          67051:             "\x01\x10\x02\x15\x01\x22\x01\x0e\x01\x17\x01\x22\x02"
        !          67052:             "\x0b\x02\x17\x01\x25\x02\x07\x02\x19\x01\x27\x07\x3e" }  },
        !          67053:       /* --- pixel bitmap for rsfs450 char#79 O --- */
        !          67054:       {  79,22629,                      /* character number, location */
        !          67055:          45, 6,   -1, 6,      /* topleft row,col, and botleft row,col */
        !          67056:           { 45,   46, 3,367, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          67057:             "\xe0\xe0\x29\xe0\xe0\x54\x82\xe0\xe0\x14\xc2\xe0\xb4"
        !          67058:             "\xe0\x21\xe0\x94\xe0\x31\xe0\x74\xe0\x61\xe0\x54\xe0"
        !          67059:             "\x71\xe0\x35\xe0\x81\xe0\x25\xe0\x91\xe0\x15\x83\xd1"
        !          67060:             "\xe5\x72\x33\x91\xe5\x62\x63\x81\xd5\x61\x93\x61\xd5"
        !          67061:             "\x52\xa4\x41\xd6\x41\x62\x44\x22\xd6\x41\x93\x16\xe6"
        !          67062:             "\x41\xd5\xe0\x16\x41\xe0\x14\xe0\x16\x31\xe0\x24\xe6"
        !          67063:             "\x41\xe0\x15\xd6\x41\xe0\x25\xd6\x31\xe0\x35\xc6\x31"
        !          67064:             "\xe0\x35\xd5\x41\xe0\x35\xc6\x31\xe0\x36\xc5\x31\xe0"
        !          67065:             "\x36\xc6\x31\xe0\x36\xc5\x31\xe0\x36\xc6\x31\xe0\x35"
        !          67066:             "\xd5\x31\xe0\x36\xd5\x31\xe0\x26\xd5\x41\xe0\x26\xd5"
        !          67067:             "\x31\xe0\x26\xe5\x31\xe0\x16\xe0\x14\x41\xe6\xe0\x24"
        !          67068:             "\x41\xe5\xe0\x34\x31\xe5\xe0\x44\x31\xd5\xe0\x54\xe0"
        !          67069:             "\x25\xe0\x64\xe0\x15\xe0\x83\xe0\x14\xe0\x93\xd5\xe0"
        !          67070:             "\xb3\xb4\xe0\xe3\x93\xe0\xe0\x34\x54\xe0\xe0\x77\xe0"
        !          67071:             "\xe0\x30" }  },
        !          67072:       /* --- pixel bitmap for rsfs450 char#80 P --- */
        !          67073:       {  80,24353,                      /* character number, location */
        !          67074:          45, 5,   -1, 5,      /* topleft row,col, and botleft row,col */
        !          67075:           { 60,   46, 3,463, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          67076:             "\xe0\xe0\x6c\xe0\xe0\xe0\x24\xb5\x82\xe0\xd3\xe0\x44"
        !          67077:             "\x51\xe0\xd2\xe0\x94\x12\xe0\xc2\xe0\xd4\xe0\xb2\xa1"
        !          67078:             "\xe0\x53\xe0\xa1\xc1\xe0\x36\xe0\x81\xd1\xe0\x28\xe0"
        !          67079:             "\x52\xe1\xe0\x14\x14\xe0\x41\xe0\x12\xe4\x25\xe0\x21"
        !          67080:             "\xe0\x22\xd5\x25\xe0\x11\xe0\x23\xc5\x35\xe1\xe0\x33"
        !          67081:             "\xb5\x45\xd1\xe0\x33\xb5\x55\xd1\xe0\x33\xa6\x46\xc1"
        !          67082:             "\xe0\x33\xa6\x56\xb1\xe0\x34\xa5\x65\xc1\xe0\x24\x52"
        !          67083:             "\x35\x66\xb1\xe0\x33\x51\x46\x66\xb1\xe0\x23\x51\x46"
        !          67084:             "\x66\xc1\xe0\x13\x51\x46\x66\xd1\xe3\x51\x56\x66\xd1"
        !          67085:             "\xd3\x61\x46\x66\xe1\xc3\x71\x36\x65\xe0\x21\xb3\x81"
        !          67086:             "\x26\x65\xe0\x41\x83\xb1\x16\x45\xe0\x71\x53\xe6\x35"
        !          67087:             "\xe0\xa5\xe0\x2c\xe0\xe0\xe0\x66\xe0\xe0\xe0\xb6\xe0"
        !          67088:             "\xe0\xe0\xb6\xe0\xe0\xe0\xb6\xe0\xe0\xe0\xc5\xe0\xe0"
        !          67089:             "\xe0\xc5\xe0\xe0\xe0\xc6\xe0\xe0\x22\xe0\x75\xe0\xe0"
        !          67090:             "\x35\xe0\x45\xe0\xe0\x36\xe0\x35\xe0\xe0\x36\xe0\x26"
        !          67091:             "\xe0\xe0\x41\x13\xe0\x25\xe0\xe0\x51\xe0\x65\xe0\xe0"
        !          67092:             "\x61\xe0\x45\xe0\xe0\x91\xe0\x15\xe0\xe0\xb1\xd5\xe0"
        !          67093:             "\xe0\xe3\x84\xe0\xe0\xe0\x69\xe0\xe0\xe0\x40" }  },
        !          67094:       /* --- pixel bitmap for rsfs450 char#81 Q --- */
        !          67095:       {  81,25844,                      /* character number, location */
        !          67096:          45, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          67097:           { 51,   46, 3,363, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          67098:             "\xe0\xe0\x69\xe0\xe0\xb4\x74\xe0\xe0\x55\xc3\xe0\xe0"
        !          67099:             "\x15\xe0\x13\xe0\xd4\xe0\x34\xe0\xa5\xe0\x53\xe0\x95"
        !          67100:             "\xe0\x64\xe0\x75\x81\xc4\xe0\x56\x92\xb4\xe0\x46\xb1"
        !          67101:             "\xb4\xe0\x45\xc2\xa4\xe0\x36\xb4\x94\xe0\x26\xc4\x85"
        !          67102:             "\xe0\x16\xd4\x85\xe0\x16\xc5\x85\xe6\xd5\x76\xe5\xd6"
        !          67103:             "\x75\xe6\xc6\x76\xe5\xd6\x66\xe0\x15\xc6\x76\xe0\x14"
        !          67104:             "\xc6\x76\xe0\x24\xc5\x86\xe0\x24\xb5\x86\xe0\x43\x95"
        !          67105:             "\x96\xe0\x53\x85\x96\xe0\x73\x54\xc6\xe0\x97\xe6\xe0"
        !          67106:             "\xe0\xe0\x26\xe0\xe0\xe0\x26\xe0\xe0\xe0\x26\xe0\xe0"
        !          67107:             "\xe0\x35\xe0\xe0\xe0\x35\xe0\xe0\xe0\x35\xe0\xe0\xe0"
        !          67108:             "\x35\xe0\x87\xe0\x25\xe0\x7c\xb5\xe0\x7e\x02\x85\xe1"
        !          67109:             "\x6e\x05\x54\xe0\x11\x6e\x08\x15\xe0\x11\x64\x1e\x08"
        !          67110:             "\xe0\x12\x64\x9e\x01\xd3\x73\xde\x85\x83\xe0\x1e\x09"
        !          67111:             "\xb2\xd4\x1e\x05\xd3\x84\x7e\xe0\x39\xe0\x17\xe0\x20" }  },
        !          67112:       /* --- pixel bitmap for rsfs450 char#82 R --- */
        !          67113:       {  82,27607,                      /* character number, location */
        !          67114:          45,-1,   -1,-1,      /* topleft row,col, and botleft row,col */
        !          67115:           { 57,   46, 3,417, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          67116:             "\xe0\xe0\x6c\xe0\xe0\xd4\xb4\x62\xe0\xe2\xe0\x43\x31"
        !          67117:             "\xe0\xd3\xe0\x75\xe0\xc2\xe0\xb4\xe0\xb1\xe0\xc6\xe0"
        !          67118:             "\x82\xe0\xc2\x15\xe0\x61\xe0\xd2\x25\xe0\x42\xe0\xd2"
        !          67119:             "\x35\xe0\x31\xe0\xe2\x46\xe0\x11\xe0\x11\xc2\x56\xe1"
        !          67120:             "\xe0\x12\xa3\x65\xe1\xe0\x21\xa3\x66\xd1\xe0\x22\x94"
        !          67121:             "\x66\xd1\xe0\x13\x84\x66\xd1\xe4\x93\x76\xc1\xe5\x83"
        !          67122:             "\x76\xd1\xd5\x84\x66\xd1\xd6\x74\x75\xe1\xc6\x74\x75"
        !          67123:             "\xe0\x11\xb6\x75\x65\xe0\x21\xb6\x65\x64\xe0\x41\xa6"
        !          67124:             "\x7e\xe0\x51\x96\x75\x25\xe0\x81\x95\x7d\xe0\x91\x74"
        !          67125:             "\x86\x44\xe0\xa1\x53\xa5\x54\xe0\xb6\xb6\x45\xe0\xe0"
        !          67126:             "\xd6\x55\xe0\xe0\xc6\x56\xe0\xe0\xc6\x46\xe0\xe0\xc6"
        !          67127:             "\x56\xe0\xe0\xb6\x56\xe0\xe0\xb6\x56\xe0\xe0\xc6\x46"
        !          67128:             "\xe0\x72\xe0\x36\x56\xe0\x65\xe6\x56\xb1\x86\xd6\x56"
        !          67129:             "\xb1\x86\xd5\x76\xa1\x91\x13\xd5\x76\xb1\x81\xe0\x35"
        !          67130:             "\x85\xa2\x91\xe0\x25\x95\x91\xc1\xe4\xb5\x81\xd2\xb4"
        !          67131:             "\xe4\x71\xe0\x22\x74\xe0\x33\x52\xe0\x58\xe0\x86\xe0"
        !          67132:             "\x21" }  },
        !          67133:       /* --- pixel bitmap for rsfs450 char#83 S --- */
        !          67134:       {  83,29074,                      /* character number, location */
        !          67135:          45, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
        !          67136:           { 62,   46, 2,209, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          67137:             "\x39\x04\x38\x02\x04\x01\x35\x03\x05\x01\x24\x05\x0b"
        !          67138:             "\x03\x06\x01\x1f\x06\x0e\x03\x07\x01\x1c\x04\x12\x03"
        !          67139:             "\x08\x01\x19\x04\x13\x04\x08\x01\x18\x04\x15\x04\x08"
        !          67140:             "\x01\x17\x03\x16\x04\x09\x01\x15\x04\x16\x05\x08\x01"
        !          67141:             "\x15\x04\x16\x05\x08\x01\x15\x04\x16\x06\x08\x01\x14"
        !          67142:             "\x04\x16\x06\x08\x01\x15\x03\x16\x06\x08\x01\x16\x03"
        !          67143:             "\x16\x06\x07\x01\x16\x04\x15\x06\x07\x01\x17\x04\x14"
        !          67144:             "\x06\x07\x01\x18\x04\x14\x06\x06\x01\x1a\x03\x13\x06"
        !          67145:             "\x05\x02\x1c\x02\x12\x06\x05\x01\x1e\x03\x10\x06\x04"
        !          67146:             "\x02\x21\x02\x0f\x06\x02\x02\x24\x03\x0c\x06\x01\x02"
        !          67147:             "\x28\x04\x08\x08\x2e\x0d\x16\x00\xff\x01\x21\x06\x17"
        !          67148:             "\x00\x20\x06\x37\x06\x19\x00\xff\x01\x1e\x06\x1a\x00"
        !          67149:             "\x1d\x06\x37\x06\x37\x06\x38\x05\x22\x02\x14\x05\x22"
        !          67150:             "\x05\x11\x05\x22\x06\x10\x05\x22\x06\x10\x05\x23\x01"
        !          67151:             "\x01\x03\x0f\x06\x23\x01\x13\x05\x25\x01\x12\x05\x27"
        !          67152:             "\x01\x0f\x05\x29\x01\x0d\x05\x2c\x03\x07\x05\x32\x09"
        !          67153:             "\x30" }  },
        !          67154:       /* --- pixel bitmap for rsfs450 char#84 T --- */
        !          67155:       {  84,30492,                      /* character number, location */
        !          67156:          48, 5,   -1, 5,      /* topleft row,col, and botleft row,col */
        !          67157:           { 57,   49, 2,201, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          67158:             "\x25\x01\x33\x0b\x2b\x10\x27\x14\x23\x18\x1f\x1b\x1d"
        !          67159:             "\x1f\x19\x05\x0d\x12\x13\x04\x13\x0f\x12\x03\x16\x0d"
        !          67160:             "\x12\x02\x0b\x02\x0d\x0b\x11\x02\x0c\x03\x0e\x08\x11"
        !          67161:             "\x02\x0c\x04\x0c\x09\x11\x02\x0d\x04\x0b\x04\x17\x01"
        !          67162:             "\x0d\x06\x09\x05\x16\x01\x0e\x05\x09\x05\x16\x01\x0e"
        !          67163:             "\x06\x08\x05\x17\x01\x0e\x06\x07\x06\x16\x01\x0e\x06"
        !          67164:             "\x07\x06\x0c\x00\xff\x01\x0b\x01\x0d\x06\x07\x06\x0d"
        !          67165:             "\x00\x0b\x01\x0c\x05\x08\x06\x19\x01\x0b\x05\x08\x06"
        !          67166:             "\x1b\x01\x09\x04\x0a\x06\x1b\x02\x05\x05\x0b\x06\x1e"
        !          67167:             "\x07\x0d\x06\x33\x06\x11\x00\xff\x01\x21\x06\x12\x00"
        !          67168:             "\x20\x06\x13\x00\xff\x01\x1f\x06\x14\x00\x1e\x06\x15"
        !          67169:             "\x00\xff\x01\x1d\x06\x16\x00\x1c\x06\x32\x06\x32\x06"
        !          67170:             "\x1d\x02\x14\x05\x1d\x05\x11\x05\x1d\x06\x10\x05\x1d"
        !          67171:             "\x06\x10\x05\x1e\x01\x01\x03\x10\x05\x1e\x01\x14\x05"
        !          67172:             "\x1f\x01\x13\x04\x22\x01\x10\x05\x24\x01\x0e\x04\x27"
        !          67173:             "\x03\x09\x04\x2c\x09\x2a" }  },
        !          67174:       /* --- pixel bitmap for rsfs450 char#85 U --- */
        !          67175:       {  85,31971,                      /* character number, location */
        !          67176:          45, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          67177:           { 57,   46, 3,393, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          67178:             "\xe0\x97\xe0\xe0\xe0\x44\x64\xe0\xe0\xd2\xc3\xe0\xe0"
        !          67179:             "\xa2\xe4\xe0\xe0\x72\xe0\x33\xe0\xe0\x61\xe0\x54\xe0"
        !          67180:             "\xe0\x32\xe0\x64\xe0\x16\x91\xa1\xb4\xe6\x91\xb1\xa5"
        !          67181:             "\xe6\x81\xb2\xa5\xd6\x81\xc2\xa5\xc6\x81\xc3\x95\xc6"
        !          67182:             "\x81\xc4\x95\xb6\x81\xd4\x86\xa6\x91\xc5\x76\xb6\x81"
        !          67183:             "\xc5\x86\xa6\x81\xc6\x76\xa6\x91\xb6\x76\xa6\xa1\xb6"
        !          67184:             "\x76\x96\xa1\xb6\x76\xa6\xa1\xa6\x76\xa6\xb1\xa5\x86"
        !          67185:             "\x96\xc1\x95\x86\x96\xe1\x74\x96\xa6\xe0\x11\x44\xa6"
        !          67186:             "\xa6\xe0\x36\xc6\x96\xe0\xe0\x76\x96\xe0\xe0\x76\xa6"
        !          67187:             "\xe0\xe0\x76\x96\xe0\xe0\x76\x96\xe0\x40\xf1\xe0\x36"
        !          67188:             "\x96\xe0\x50\xe0\x26\x96\xe0\xe0\x76\x96\xe0\x70\xf1"
        !          67189:             "\xe6\x96\xe0\x80\xd6\x96\xe0\xe0\x85\x96\x91\xe0\xd5"
        !          67190:             "\x87\x81\xe0\xd5\x81\x15\x91\xe0\xd5\x71\x15\x82\xe0"
        !          67191:             "\xe4\x71\x25\x71\xe0\xe0\x24\x61\x34\x71\xe0\xe0\x34"
        !          67192:             "\x42\x44\x52\xe0\xe0\x52\x32\x73\x23\xe0\xe0\x84\xa4"
        !          67193:             "\xe0\xb0" }  },
        !          67194:       /* --- pixel bitmap for rsfs450 char#86 V --- */
        !          67195:       {  86,33294,                      /* character number, location */
        !          67196:          45, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          67197:           { 50,   46, 3,377, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          67198:             "\xe0\xe0\x31\xe0\xe0\xe0\x61\xe0\x41\xe0\xe0\x11\xe0"
        !          67199:             "\x33\xe0\xe2\xe0\x24\xe0\xd2\xe0\x24\xe0\xe2\xe0\x13"
        !          67200:             "\xe0\xe0\x13\xe3\xe7\x83\xe3\xd2\x45\x54\xd3\xc2\x66"
        !          67201:             "\x43\xd3\xc1\x76\x44\xc3\xb2\x86\x35\xc2\xb1\x96\x45"
        !          67202:             "\xb2\xb1\x96\x45\xb2\xc1\x95\x37\xb1\xe0\x94\x31\x25"
        !          67203:             "\xa1\xe0\xa3\x22\x26\x92\xe0\xb4\x45\xa1\xe0\xe0\x56"
        !          67204:             "\x91\xe0\xe0\x66\x82\xe0\xe0\x66\x81\xe0\xe0\x66\x81"
        !          67205:             "\xe0\x30\xf1\xe0\x46\x71\xe0\x40\xe0\x46\x61\xe0\xe0"
        !          67206:             "\x95\x61\xe0\xe0\x96\x51\xe0\xe0\xa6\x41\xe0\xe0\xb5"
        !          67207:             "\x51\xe0\xe0\xb5\x41\xe0\xe0\xb5\x41\xe0\xe0\xc5\x31"
        !          67208:             "\xe0\xe0\xd4\x31\xe0\xe0\xe4\x21\xe0\xe0\xe4\x12\xe0"
        !          67209:             "\xe0\xe0\x15\xe0\xe0\xe0\x34\xe0\xe0\xe0\x34\xe0\xe0"
        !          67210:             "\xe0\x43\xe0\xe0\xe0\x43\xe0\xe0\xe0\x52\xe0\xe0\xe0"
        !          67211:             "\x52\xe0\xe0\xe0\x61\xe0\xe0\xe0\x61\xe0\xe0\xe0\x61"
        !          67212:             "\xe0\xe0\xe0\x61\xe0\xe0\xc2" }  },
        !          67213:       /* --- pixel bitmap for rsfs450 char#87 W --- */
        !          67214:       {  87,34785,                      /* character number, location */
        !          67215:          45, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          67216:           { 63,   46, 3,517, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          67217:             "\xe0\xe0\x21\xd1\xe0\xe0\xe0\x51\xd1\xe0\x32\xe0\xe1"
        !          67218:             "\xd2\xe0\x13\xe0\xe2\xc2\xe5\xe0\xd2\xc2\xe5\xb2\xe3"
        !          67219:             "\xb3\xd4\xa3\x13\xc2\xb1\x11\xd3\xb1\x44\xa3\xa1\x12"
        !          67220:             "\xc3\xb1\x54\x93\xb4\xb3\xb1\x55\x84\xa1\x12\xb3\xb1"
        !          67221:             "\x56\x74\xa1\x13\xb2\xb1\x56\x84\x91\x13\xb2\xb1\x56"
        !          67222:             "\x85\x81\x23\xa2\xc1\x56\x75\x81\x24\xa1\xe0\x56\x57"
        !          67223:             "\x71\x24\xa2\xe0\x6a\x15\x71\x25\x92\xe0\xe0\x45\x71"
        !          67224:             "\x24\xa1\xe0\xe0\x46\x61\x25\x91\xe0\xe0\x55\x61\x26"
        !          67225:             "\x82\xe0\xe0\x46\x51\x35\x91\xe0\xe0\x55\x51\x36\x81"
        !          67226:             "\xe0\xe0\x56\x41\x36\x91\xe0\xe0\x56\x31\x46\x81\xe0"
        !          67227:             "\xe0\x56\x41\x36\x81\xe0\xe0\x66\x31\x46\x71\xe0\xe0"
        !          67228:             "\x76\x21\x46\x81\xe0\xe0\x66\x21\x55\x81\xe0\xe0\x76"
        !          67229:             "\x11\x65\x71\xe0\xe0\x76\x11\x65\x71\xe0\xe0\x85\x21"
        !          67230:             "\x64\x71\xe0\xe0\x95\x11\x65\x61\xe0\xe0\x95\x11\x74"
        !          67231:             "\x52\xe0\xe0\xa6\x83\x51\xe0\xe0\xc5\x84\x41\xe0\xe0"
        !          67232:             "\xc5\x93\x41\xe0\xe0\xd4\x93\x41\xe0\xe0\xd4\xa2\x32"
        !          67233:             "\xe0\xe0\xe4\xa2\x21\xe0\xe0\xe0\x14\xa2\x21\xe0\xe0"
        !          67234:             "\xe0\x23\xb1\x21\xe0\xe0\xe0\x23\xb4\xe0\xe0\xe0\x32"
        !          67235:             "\xc2\xe0\xe0\xe0\x42\xc2\xe0\xe0\xe0\x51\xc2\xe0\xe0"
        !          67236:             "\xe0\x51\xd1\xe0\xe0\xe0\x51\xd1\xe0\xe0\xe0\x20" }  },
        !          67237:       /* --- pixel bitmap for rsfs450 char#88 X --- */
        !          67238:       {  88,36504,                      /* character number, location */
        !          67239:          45, 6,   -1, 6,      /* topleft row,col, and botleft row,col */
        !          67240:           { 65,   46, 3,503, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          67241:             "\xe0\xd7\xe0\x97\xe0\xb3\x73\xe0\x42\x35\xe0\x82\xb3"
        !          67242:             "\xe0\x21\x46\xe0\x71\xe3\xe1\x55\xe0\x62\xe0\x23\xc1"
        !          67243:             "\x64\xe0\x61\xe0\x43\xb1\xe0\xe0\x21\x92\x84\x91\xe0"
        !          67244:             "\xe0\x21\xa3\x74\x81\xe0\xe0\x21\xa4\x74\x71\xe0\xe0"
        !          67245:             "\x21\xb4\x74\x61\xe0\xe0\x21\xb5\x74\x51\xe0\xe0\x31"
        !          67246:             "\xa6\x65\x41\xe0\xe0\x31\xb5\x75\x31\xe0\xe0\x41\xa6"
        !          67247:             "\x75\x21\xe0\xe0\x41\xb5\x75\x21\xe0\xe0\x51\xa6\x75"
        !          67248:             "\x11\xe0\xe0\x61\x96\x76\x11\xe0\xe0\x61\x95\x85\x11"
        !          67249:             "\xe0\xe0\x71\x85\x87\xe0\xe0\x81\x75\x96\xe0\xe0\x91"
        !          67250:             "\x65\x96\xe0\xe0\xb1\x44\xa7\xe0\xe0\xc6\x7e\x01\xe0"
        !          67251:             "\xe0\xe0\x8e\x01\xe0\xa0\xf1\xe0\xe0\x16\xe0\xe0\x20"
        !          67252:             "\xe0\xe6\xe0\xe0\x30\xf1\xe0\xd6\xe0\xe0\x40\xe0\xc6"
        !          67253:             "\xe0\xe0\xe0\xe0\x27\xe0\xe0\xe0\xe0\x17\xe0\xe0\xe0"
        !          67254:             "\xe0\x25\x11\xe0\xe0\xe0\xe0\x15\x11\xe0\xe0\xe0\xe0"
        !          67255:             "\x15\x21\xe0\x41\xe0\x62\xe0\x15\x31\xe0\x41\xe0\x45"
        !          67256:             "\xd5\x31\xe0\x41\xe0\x46\xc5\x41\xe0\x31\xe0\x56\xb5"
        !          67257:             "\x51\xe0\x21\xe0\x51\x14\xb5\x61\xe0\x11\xe0\x61\xe0"
        !          67258:             "\x14\x81\xe1\xe0\x71\xe4\x91\xd1\xe0\x81\xd3\xb1\xb2"
        !          67259:             "\xe0\xa1\xa4\xd1\x91\xe0\xd2\x64\xe0\x21\x62\xe0\xe0"
        !          67260:             "\x27\xe0\x66\xe0\xe0" }  },
        !          67261:       /* --- pixel bitmap for rsfs450 char#89 Y --- */
        !          67262:       {  89,38127,                      /* character number, location */
        !          67263:          45, 4,   -1, 4,      /* topleft row,col, and botleft row,col */
        !          67264:           { 58,   46, 3,409, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          67265:             "\xe0\x98\xe0\xe0\xe0\x44\x74\xe0\x82\xe0\x32\xd3\xe0"
        !          67266:             "\x61\xe0\x32\xe0\x14\xe0\x32\xe0\x22\xe0\x44\xe3\xe0"
        !          67267:             "\x21\xe0\x64\xc5\xe2\x72\xc4\xb5\xe1\x93\xa5\xa5\xe1"
        !          67268:             "\xa3\xa5\x96\xd1\xb4\x95\x86\xd1\xb5\x86\x76\xd1\xc5"
        !          67269:             "\x85\x86\xc1\xc6\x76\x76\xc1\xd5\x76\x76\xd1\xc6\x76"
        !          67270:             "\x76\xc1\xd6\x66\x76\xc1\xd6\x66\x76\xd1\xc6\x66\x86"
        !          67271:             "\xc1\xd6\x66\x76\xd1\xc6\x66\x86\xd1\xb6\x66\x86\xe1"
        !          67272:             "\xb5\x76\x76\xe0\x11\xa5\x76\x86\xe0\x11\x95\x76\x86"
        !          67273:             "\xe0\x31\x74\x96\x76\xe0\x52\x44\x96\x86\xe0\x75\xc5"
        !          67274:             "\x86\xe0\x40\xf1\xe0\x75\x76\xe0\x50\xe0\x74\x76\xe0"
        !          67275:             "\xe0\xe3\x66\xe0\xe0\xe0\x23\x37\xe0\xe0\xe0\x45\x16"
        !          67276:             "\xe0\xe0\xe0\x96\xe0\xe0\xe0\x96\xe0\xe0\x32\xe0\x46"
        !          67277:             "\xe0\xe0\x25\xe0\x26\xe0\xe0\x26\xe0\x16\xe0\xe0\x36"
        !          67278:             "\xe5\xe0\xe0\x41\x14\xe5\xe0\xe0\x51\xe0\x45\xe0\xe0"
        !          67279:             "\x61\xe0\x34\xe0\xe0\x81\xe0\x15\xe0\xe0\xa1\xd4\xe0"
        !          67280:             "\xe0\xd3\x74\xe0\xe0\xe0\x58\xe0\xe0\xe1" }  },
        !          67281:       /* --- pixel bitmap for rsfs450 char#90 Z --- */
        !          67282:       {  90,40014,                      /* character number, location */
        !          67283:          45, 6,   -1, 6,      /* topleft row,col, and botleft row,col */
        !          67284:           { 59,   46, 3,421, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          67285:             "\xe0\xd7\xe0\x45\xe0\xc3\x63\xd3\x51\xe0\x92\x94\xb2"
        !          67286:             "\x81\xe0\x62\xb4\xa1\xa1\xe0\x42\xc6\x72\xb1\xe0\x31"
        !          67287:             "\xe5\x73\xb1\xe0\x21\xe6\x63\xb1\xe0\x12\xe0\x16\x53"
        !          67288:             "\xc1\xe1\xa2\x46\x63\xb1\xe1\xa4\x35\x63\xa2\xe1\xb4"
        !          67289:             "\x35\x54\x82\xe0\x21\xa5\x44\x44\x63\xe0\x31\xb5\x54"
        !          67290:             "\x25\x24\xe0\x51\xb6\x8a\xe0\x91\xa6\xb5\xe0\xb1\xb6"
        !          67291:             "\xa5\xe0\xc1\xa6\xa6\xe0\xc1\xa5\xb5\xe0\xd1\x95\xb6"
        !          67292:             "\xe0\xd1\x85\xb6\xe0\xe0\x11\x65\xc6\xe0\xe0\x12\x44"
        !          67293:             "\xd6\xe0\xe0\x46\xae\x03\xe0\xe0\xee\x03\xe0\xe0\xe0"
        !          67294:             "\x36\xe0\xe0\xe0\xa6\xe0\xe0\xe0\xa6\xe0\xe0\xe0\xb5"
        !          67295:             "\xe0\xe0\xe0\xb6\xe0\xe0\xe0\xa6\xe0\xe0\xe0\xa6\xe0"
        !          67296:             "\xe0\xe0\xb5\xe0\xe0\xe0\xb5\xe0\xe0\xe0\xb5\xe0\xe0"
        !          67297:             "\xe0\xb5\xe0\xe0\xe0\xb5\xe0\xe0\xe0\xb5\xe0\x21\xe0"
        !          67298:             "\xe0\x94\xe0\x21\xe0\x9b\x34\xe0\x21\xe0\x82\x8a\xd3"
        !          67299:             "\xe0\x72\xce\x09\xe0\x71\xee\x08\xe0\x81\xd3\x1e\x04"
        !          67300:             "\xe0\x91\xb3\x4e\x01\xe0\xb2\x74\x8b\xe0\xe0\x18\xd7"
        !          67301:             "\xe0\xe0\x11" }  },
        !          67302:       /* --- pixel bitmap for rsfs450 char#127 (noname) --- */
        !          67303:       { 127,40788,                      /* character number, location */
        !          67304:          33,25,   23,25,      /* topleft row,col, and botleft row,col */
        !          67305:           { 24,   10, 3,45, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          67306:             "\xd8\xdd\x94\x84\x63\xd2\x52\xe0\x21\x32\xe0\x41\x22"
        !          67307:             "\xe0\x51\x11\xe0\x71\x0f\x11\xe0\x71\x12" }  },
        !          67308:       /* --- trailer  --- */
        !          67309:       { -99, -999,  0,0,0,0, { 0,0,0,0, (pixbyte *)"\0" }  }
        !          67310:    } ;
        !          67311: 
        !          67312: 
        !          67313: /* --- size=10 for .600gf ---
        !          67314:  * mf '\mode=preview; mag=magstep(-8.04680493988053835544); input rsfs10'
        !          67315:  * --------------------------------------------------------------------- */
        !          67316: /* --- fontdef for rsfs600 --- */
        !          67317: static	chardef  rsfs600[] =
        !          67318:    {
        !          67319:       /* --- pixel bitmap for rsfs600 char#65 A --- */
        !          67320:       {  65, 1331,                      /* character number, location */
        !          67321:          59, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          67322:           { 80,   60, 2,357, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          67323:             "\xff\x01\x4e\x02\x4c\x03\x4c\x03\x4b\x05\x4a\x05\x49"
        !          67324:             "\x03\x01\x03\x48\x03\x01\x03\x48\x02\x03\x02\x47\x03"
        !          67325:             "\x03\x03\x46\x02\x04\x03\x46\x02\x05\x02\x45\x03\x05"
        !          67326:             "\x03\x44\x02\x06\x03\x44\x02\x06\x04\x42\x02\x08\x03"
        !          67327:             "\x42\x02\x08\x03\x42\x02\x08\x04\x40\x02\x0a\x03\x40"
        !          67328:             "\x02\x0a\x03\x40\x02\x0a\x04\x27\x05\x13\x02\x0a\x04"
        !          67329:             "\x24\x0e\x0c\x02\x0c\x04\x23\x05\x05\x07\x09\x02\x0c"
        !          67330:             "\x04\x22\x05\x0b\x05\x06\x02\x0c\x04\x22\x05\x0e\x04"
        !          67331:             "\x04\x02\x0d\x04\x21\x05\x11\x03\x02\x02\x0d\x04\x22"
        !          67332:             "\x05\x12\x05\x0d\x05\x21\x05\x14\x03\x0d\x05\x22\x04"
        !          67333:             "\x15\x03\x0d\x04\x22\x05\x13\x02\x01\x03\x0b\x05\x21"
        !          67334:             "\x05\x13\x02\x03\x02\x0a\x05\x22\x05\x12\x02\x04\x03"
        !          67335:             "\x09\x04\x23\x04\x12\x02\x06\x02\x08\x05\x22\x05\x11"
        !          67336:             "\x02\x07\x02\x07\x05\x23\x04\x12\x01\x08\x02\x07\x05"
        !          67337:             "\x23\x04\x11\x02\x08\x03\x05\x05\x24\x04\x10\x02\x0a"
        !          67338:             "\x02\x04\x05\x24\x05\x0f\x02\x0b\x02\x03\x06\x24\x05"
        !          67339:             "\x0e\x02\x0c\x02\x03\x05\x26\x04\x0d\x02\x0d\x02\x02"
        !          67340:             "\x05\x27\x04\x0c\x02\x0e\x02\x01\x06\x27\x04\x0c\x02"
        !          67341:             "\x0e\x02\x01\x05\x28\x04\x0b\x02\x0f\x08\x29\x04\x09"
        !          67342:             "\x02\x10\x07\x2a\x05\x07\x02\x10\x07\x2c\x04\x07\x02"
        !          67343:             "\x10\x07\x07\x01\x1a\x02\x09\x04\x05\x02\x11\x06\x07"
        !          67344:             "\x02\x18\x05\x09\x05\x02\x02\x11\x06\x07\x02\x18\x07"
        !          67345:             "\x09\x07\x12\x06\x06\x02\x18\x08\x0b\x06\x10\x06\x05"
        !          67346:             "\x03\x18\x09\x0c\x08\x0c\x07\x04\x02\x1a\x08\x0b\x03"
        !          67347:             "\x02\x0a\x07\x06\x02\x04\x1b\x02\x01\x02\x0d\x03\x06"
        !          67348:             "\x18\x1c\x03\x0f\x02\x0d\x11\x1e\x03\x0d\x03\x14\x07"
        !          67349:             "\x23\x02\x0b\x03\x16\x07\x23\x04\x06\x04\x17\x07\x25"
        !          67350:             "\x0b\x18\x07\x28\x06\x46" }  },
        !          67351:       /* --- pixel bitmap for rsfs600 char#66 B --- */
        !          67352:       {  66, 3287,                      /* character number, location */
        !          67353:          59, 3,   -2, 3,      /* topleft row,col, and botleft row,col */
        !          67354:           { 74,   61, 3,721, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          67355:             "\xe0\xe0\xe0\x3d\xe0\xe0\xe0\xe0\x1e\x08\x91\xe0\xe0"
        !          67356:             "\xb6\xd9\x43\xe0\xe0\x85\xe0\x89\xe0\xe0\x84\xe0\xd6"
        !          67357:             "\xe0\xe0\x74\xe0\xe0\x34\xe0\xe0\x53\xe0\xe0\x47\xe0"
        !          67358:             "\xe0\x33\xe0\xe0\x44\x14\xe0\xe3\xe0\xe0\x54\x34\xe0"
        !          67359:             "\xc2\xe0\xe0\x64\x44\xe0\xa3\xe0\xe0\x64\x55\xe0\x82"
        !          67360:             "\xe0\xe0\x65\x65\xe0\x72\xe0\x22\xe0\x25\x75\xe0\x62"
        !          67361:             "\xe0\x32\xe0\x16\x75\xe0\x52\xe0\x42\xe6\x85\xe0\x42"
        !          67362:             "\xe0\x52\xd6\x95\xe0\x32\xe0\x53\xc6\xa5\xe0\x22\xe0"
        !          67363:             "\x63\xb6\xa5\xe0\x32\xe0\x54\xb6\xa5\xe0\x22\xe0\x64"
        !          67364:             "\xa6\xa5\xe0\x22\xe0\x64\xa6\xb5\xe0\x22\xe0\x64\x96"
        !          67365:             "\xb5\xe0\x22\xe0\x65\x87\xa5\xe0\x32\xe0\x55\x87\xa5"
        !          67366:             "\xe0\x32\xe0\x65\x77\xb4\xe0\x42\xe0\x55\x86\xb4\xe0"
        !          67367:             "\x52\xe0\x45\x87\xa4\xe0\x52\xe0\x55\x77\xa4\xe0\x62"
        !          67368:             "\xe0\x45\x7e\x07\xe0\x72\xe0\x35\x7e\x07\xe0\x82\xe0"
        !          67369:             "\x25\x89\x67\xe0\x72\xe0\x15\x89\x55\x14\xe0\x72\xd4"
        !          67370:             "\x9e\x04\x44\xe0\x63\xa5\x9e\x02\x74\xe0\x74\x56\xb7"
        !          67371:             "\xe0\x34\xe0\x7b\xd7\xe0\x44\xe0\x96\xe0\x17\xe0\x54"
        !          67372:             "\xe0\xe0\xe0\x27\xe0\x54\xe0\xe0\xe0\x17\xe0\x64\xe0"
        !          67373:             "\xe0\xe7\xe0\x74\xe0\xe0\xd7\xe0\x75\xe0\xe0\xd7\x86"
        !          67374:             "\x75\xe0\xe0\xc7\x68\x84\xe0\xe0\xc7\x63\xd5\xe0\xe0"
        !          67375:             "\xc6\x53\xe5\xe0\xe0\xc7\x42\xe0\x25\xe0\x13\xe0\x77"
        !          67376:             "\x42\xe0\x25\xe6\xe0\x57\x42\xe0\x35\xd7\xe0\x47\x42"
        !          67377:             "\xe0\x35\xd8\xe0\x37\x52\xe0\x25\xe8\xe0\x27\x52\xe0"
        !          67378:             "\x25\xe8\xe0\x26\x72\xe0\x15\xe0\x12\xe0\x76\x82\xe0"
        !          67379:             "\x14\xe0\x13\xe0\x66\x82\xe0\x14\xe0\x23\xe0\x56\x92"
        !          67380:             "\xd5\xe0\x33\xe0\x45\xb3\xb4\xe0\x62\xe0\x25\xe2\x95"
        !          67381:             "\xe0\x74\xc6\xe0\x13\x65\xe0\xa5\x86\xe0\x4b\xe0\xee"
        !          67382:             "\xe0\x96\xe0\xe0\x59\xe0\xe0\xe0\xe0\x30" }  },
        !          67383:       /* --- pixel bitmap for rsfs600 char#67 C --- */
        !          67384:       {  67, 4756,                      /* character number, location */
        !          67385:          60, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
        !          67386:           { 66,   62, 3,589, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          67387:             "\xe0\xe0\xe0\xe0\x16\xe0\xe0\xe0\xe0\x1a\xe0\xe0\xe0"
        !          67388:             "\xb6\x53\xe0\xe0\xe0\x94\xa2\xe0\x45\xe0\xb4\xc2\xe9"
        !          67389:             "\xe0\x95\xd2\xc6\xe0\xd4\xe0\x12\xa5\xe0\xe5\xe0\x22"
        !          67390:             "\x85\xe0\xe0\x15\xe0\x32\x75\xe0\xe0\x15\xe0\x32\x74"
        !          67391:             "\xe0\xe0\x16\xe0\x42\x64\xe0\xe0\x15\xe0\x52\x65\xe0"
        !          67392:             "\xe5\xe0\x62\x55\xe0\xe5\xe0\x62\x55\xe0\xe5\xe0\x62"
        !          67393:             "\x65\xe0\xd6\xe0\x52\x65\xe0\xd6\xe0\x52\x75\xe0\xc6"
        !          67394:             "\xe0\x52\x75\xe0\xc6\xe0\x52\x85\xe0\xb6\xe0\x43\x95"
        !          67395:             "\xe0\xa6\xe0\x42\xb5\xe0\x96\xe0\x33\xd4\xe0\x87\xe0"
        !          67396:             "\x13\xe0\x14\xe0\x77\xe3\xe0\x35\xe0\x57\xc4\xe0\x64"
        !          67397:             "\xe0\x56\xa5\xe0\x95\xe0\x27\x75\xe0\xd6\xd7\x46\xe0"
        !          67398:             "\xe0\x47\x9e\x01\xe0\xe0\x9e\x0b\xe0\xe0\xe0\x3e\x02"
        !          67399:             "\xe0\xe0\xe0\xe0\x27\xe0\xe0\xb0\xf1\xe0\x57\xe0\xe0"
        !          67400:             "\xc0\xe0\x47\xe0\xe0\xe0\xe0\x36\xe0\xe0\xe0\xe0\x37"
        !          67401:             "\xb7\xe0\xe0\xc7\xab\xe0\xe0\xa7\x93\x64\xe0\xe0\x87"
        !          67402:             "\x92\x94\xe0\xe0\x76\x92\xa4\xe0\xe0\x76\x72\xc4\xe0"
        !          67403:             "\xe0\x66\x81\xd4\xe0\xe0\x66\x72\xd4\xe0\xe0\x56\x72"
        !          67404:             "\xe4\xe0\x60\xf1\xd6\x62\xe5\xe0\x60\xf1\xd5\x62\xe5"
        !          67405:             "\xe0\x70\xf1\xc6\x53\xd5\xe0\x80\xc5\x63\xc5\xe0\xe0"
        !          67406:             "\x75\x72\xb5\xe0\xe0\x94\x82\x95\xe0\xe0\xa4\xe0\x54"
        !          67407:             "\xe0\xe0\xb5\xe0\x34\xe0\xe0\xd4\xe0\x15\xe0\xe0\xe5"
        !          67408:             "\xd5\xe0\xe0\xe0\x25\xa5\xe0\xe0\xe0\x55\x75\xe0\xe0"
        !          67409:             "\xe0\x9d\xe0\xe0\xe0\xd8\xe0\xe0\xa8" }  },
        !          67410:       /* --- pixel bitmap for rsfs600 char#68 D --- */
        !          67411:       {  68, 6303,                      /* character number, location */
        !          67412:          59, 6,   -2, 6,      /* topleft row,col, and botleft row,col */
        !          67413:           { 65,   61, 3,583, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          67414:             "\xe0\xe0\x7b\xe0\xe0\xe0\x8e\x05\xe0\xe0\xe0\x27\x97"
        !          67415:             "\xe0\xe0\xb6\xe0\x35\xe0\xe0\x76\xe0\x74\xe0\xe0\x46"
        !          67416:             "\xe0\xb3\xe0\xe0\x25\xe0\xe3\xe0\xd6\xe0\xe0\x23\xe0"
        !          67417:             "\xb5\xe0\xe0\x53\xe0\x95\xe0\xe0\x63\xe0\x85\xe0\xe0"
        !          67418:             "\x83\xe0\x65\xe0\xe0\x93\xe0\x55\xe0\x32\xe0\x67\xd5"
        !          67419:             "\xe0\x42\xe0\x57\xd5\xe0\x52\xe0\x36\xe0\x15\xe0\x52"
        !          67420:             "\xe0\x37\xe0\x15\xe0\x52\xe0\x16\x12\xe5\xe0\x62\xe5"
        !          67421:             "\x32\xd5\xe0\x63\xd5\x42\xd5\xe0\x62\xd5\x52\xc5\xe0"
        !          67422:             "\x72\xc6\x52\xc5\xe0\x62\xc6\x62\xb5\xe0\x62\xc6\x63"
        !          67423:             "\xb5\xe0\x62\xb6\x73\xb4\xe0\x62\xb6\x82\xc4\xe0\x52"
        !          67424:             "\xb6\x92\xb5\xe0\x42\xb7\x92\xb5\xe0\x42\xa7\x93\xb5"
        !          67425:             "\xe0\x32\xa7\xa2\xc4\xe0\x23\xb6\xb2\xc5\xe3\xb7\xb2"
        !          67426:             "\xd4\xd2\xc7\xb2\xe4\xb3\xc7\xc2\xe0\x14\x83\xe7\xb3"
        !          67427:             "\xe0\x2d\xe7\xc2\xe0\x58\xe0\x27\xd2\x80\xf1\xe0\xe0"
        !          67428:             "\x67\xd2\x90\xe0\xe0\x57\xd2\xe0\xe0\xe7\xe2\xe0\xe0"
        !          67429:             "\xe6\xe2\xe0\xe0\xe7\xe1\xe0\xe0\xe7\xe2\xe0\xe0\xd7"
        !          67430:             "\xe2\xe0\xe0\xe6\xe0\x12\xe0\xe0\xd6\xe0\x12\xe0\xe0"
        !          67431:             "\xd6\xe0\x12\xe0\xe0\xd7\xe2\xe0\xe0\xd7\xe0\x11\xe0"
        !          67432:             "\xe0\xe6\xe0\x12\xe0\xe0\xd6\xe0\x12\xe0\xe0\xd6\xe0"
        !          67433:             "\x12\xe0\xe0\xd5\xe0\x22\xe0\xe0\xd5\xe0\x22\xe0\xe0"
        !          67434:             "\xd5\xe0\x12\xe0\xbe\x35\xe0\x12\xe0\xbe\x07\xe0\x13"
        !          67435:             "\xe0\xb5\xa6\xe3\xe0\xde\x09\x95\xe0\xe0\x2e\x4e\xe0"
        !          67436:             "\xe0\xe0\xc9\xe0\xe0\x58" }  },
        !          67437:       /* --- pixel bitmap for rsfs600 char#69 E --- */
        !          67438:       {  69, 7193,                      /* character number, location */
        !          67439:          59, 4,   -1, 4,      /* topleft row,col, and botleft row,col */
        !          67440:           { 56,   60, 3,487, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          67441:             "\xe0\xe0\xc8\xe0\xe0\xe0\x3e\xe0\xe0\xce\x04\xe0\xe0"
        !          67442:             "\x86\x96\xe0\xe0\x56\xe4\xe0\xe0\x35\xe0\x33\xe0\xe0"
        !          67443:             "\x25\xe0\x52\xe0\xe6\xd3\x43\xe0\xc6\xc4\x53\xe0\xb6"
        !          67444:             "\xb3\x82\xe0\xb6\xb2\xa2\xe0\xb6\xa2\xb2\xe0\xa6\xb2"
        !          67445:             "\xb2\xe0\x96\xb2\xb2\xe0\xa6\xa2\xc2\xe0\x96\xb2\xb2"
        !          67446:             "\xe0\xa5\xc2\xa2\xe0\xa6\xb2\xa2\xe0\xb5\xc3\x82\xe0"
        !          67447:             "\xc5\xd2\x63\xe0\xc6\xda\xe0\xd5\xe0\x26\xa0\xf1\xe0"
        !          67448:             "\x55\xe0\xe0\x40\xe0\x64\xe0\xe0\xe0\xad\xe0\xe0\xe0"
        !          67449:             "\x1e\xe0\xe0\xb9\x72\xe0\xe0\x86\x2b\xe0\xe0\x76\x68"
        !          67450:             "\xe0\xe0\x75\xe0\xe0\xe0\x76\xe0\xe0\xe0\x75\xe0\xe0"
        !          67451:             "\xe0\x85\xe0\xe0\xe0\x85\xe0\xe0\xe0\x86\xe0\xe0\xe0"
        !          67452:             "\x76\xe8\xe0\xd6\xdd\xe0\xa6\xc3\x75\xe0\x86\xc2\xb4"
        !          67453:             "\xe0\x66\xc2\xd4\xe0\x56\xb2\xe4\xe0\x55\xb2\xe0\x15"
        !          67454:             "\xe0\x36\xb2\xe0\x15\xe0\x35\xb2\xe0\x25\xe0\x35\xb2"
        !          67455:             "\xe0\x15\xe0\x36\xa2\xe0\x25\xe0\x3f\x15\xb2\xe0\x15"
        !          67456:             "\xe0\x45\xa2\xe0\x15\xe0\x55\xa1\xe0\x15\xe0\x74\xe0"
        !          67457:             "\xb5\xe0\x85\xe0\x95\xe0\xa4\xe0\x85\xe0\xb5\xe0\x65"
        !          67458:             "\xe0\xd5\xe0\x35\xe0\xe0\x25\xe5\xe0\xe0\x57\x95\xe0"
        !          67459:             "\xe0\x9e\x03\xe0\xe0\xe0\x1a\xe0\xe0\x70" }  },
        !          67460:       /* --- pixel bitmap for rsfs600 char#70 F --- */
        !          67461:       {  70, 8749,                      /* character number, location */
        !          67462:          61, 3,   -2, 3,      /* topleft row,col, and botleft row,col */
        !          67463:           { 80,   63, 2,303, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          67464:             "\x2f\x0a\x43\x11\x3c\x16\x38\x1b\x33\x1f\x2f\x08\x0b"
        !          67465:             "\x10\x2b\x06\x13\x10\x26\x05\x17\x14\x1f\x04\x1c\x10"
        !          67466:             "\x1e\x04\x20\x0d\x1e\x03\x25\x0a\x1d\x03\x0e\x02\x11"
        !          67467:             "\x01\x07\x06\x1d\x02\x0f\x04\x0e\x03\x29\x02\x10\x04"
        !          67468:             "\x0d\x03\x29\x02\x11\x05\x0a\x04\x29\x02\x12\x05\x09"
        !          67469:             "\x04\x29\x03\x12\x05\x08\x04\x2a\x02\x13\x05\x07\x04"
        !          67470:             "\x2a\x02\x14\x05\x06\x04\x2a\x02\x14\x05\x06\x05\x2a"
        !          67471:             "\x02\x14\x05\x05\x05\x2a\x02\x14\x05\x05\x05\x2b\x02"
        !          67472:             "\x14\x05\x04\x05\x2c\x02\x13\x05\x05\x05\x2c\x02\x12"
        !          67473:             "\x05\x05\x05\x2c\x02\x12\x05\x05\x05\x2d\x03\x10\x05"
        !          67474:             "\x06\x05\x2e\x02\x0f\x05\x06\x05\x0c\x02\x21\x02\x0d"
        !          67475:             "\x05\x07\x06\x0a\x05\x21\x03\x08\x06\x09\x05\x0a\x03"
        !          67476:             "\x01\x03\x21\x0d\x0b\x06\x08\x03\x03\x02\x23\x08\x0f"
        !          67477:             "\x06\x07\x03\x04\x02\x39\x06\x07\x04\x03\x02\x3a\x06"
        !          67478:             "\x07\x03\x03\x02\x3a\x06\x07\x03\x01\x04\x3b\x06\x06"
        !          67479:             "\x07\x3c\x07\x02\x08\x3a\x15\x36\x12\x03\x04\x34\x06"
        !          67480:             "\x05\x07\x06\x04\x31\x05\x09\x07\x05\x05\x2f\x04\x0b"
        !          67481:             "\x07\x06\x05\x2e\x02\x0d\x07\x06\x03\x30\x02\x0e\x07"
        !          67482:             "\x06\x01\x31\x02\x0e\x07\x48\x07\x49\x06\x49\x07\x2c"
        !          67483:             "\x02\x1a\x07\x2b\x05\x18\x07\x2b\x07\x16\x07\x2b\x08"
        !          67484:             "\x15\x07\x2b\x08\x15\x07\x2c\x07\x15\x06\x2d\x02\x1a"
        !          67485:             "\x06\x2e\x02\x19\x06\x2f\x02\x18\x05\x31\x03\x15\x06"
        !          67486:             "\x33\x02\x14\x05\x35\x04\x10\x05\x39\x05\x0a\x06\x3c"
        !          67487:             "\x12\x42\x0a\x3e" }  },
        !          67488:       /* --- pixel bitmap for rsfs600 char#71 G --- */
        !          67489:       {  71,10311,                      /* character number, location */
        !          67490:          59, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
        !          67491:           { 60,   61, 3,531, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          67492:             "\xe0\xe0\xe0\x86\xe0\xe0\xe0\xaa\xe0\xe0\xe0\x64\x54"
        !          67493:             "\xe0\x74\xe0\x64\x74\xe0\x46\xe0\x64\x94\xe0\x15\xe0"
        !          67494:             "\x75\x95\xd5\xe0\x85\xa4\xd4\xe0\x95\xa5\xc4\xe0\x95"
        !          67495:             "\xb5\xa5\xe0\x95\xb5\xa5\xe0\x86\xb5\xa5\xe0\x86\xc5"
        !          67496:             "\x95\xe0\x86\xc5\x95\xe0\x86\xc5\x95\xe0\x87\xb5\xa5"
        !          67497:             "\xe0\x86\xb5\xa5\xe0\x86\xb5\xa5\xe0\x86\xb5\xb5\xe0"
        !          67498:             "\x77\xb4\xb5\xe0\x77\xb4\xc5\xe0\x67\xa5\xd4\xe0\x77"
        !          67499:             "\x95\xd5\xe0\x67\x95\xe5\xe0\x57\x94\x81\x74\xe0\x57"
        !          67500:             "\x94\x82\x74\xe0\x57\x75\x73\x84\xe0\x47\x74\x83\x94"
        !          67501:             "\xe0\x46\x65\x83\xa5\xe0\x27\x54\x93\xc4\xe0\x26\x44"
        !          67502:             "\xa3\xd4\xe0\x17\x25\xa4\xe4\xec\xb4\xe0\x25\xc9\xd5"
        !          67503:             "\xe0\x37\x88\xe5\xe0\x6e\x05\xe0\x16\xe0\x9e\x02\xe6"
        !          67504:             "\xe0\xe0\x75\xd6\xe0\xe0\x85\xc7\xe0\xe0\x85\xa2\x15"
        !          67505:             "\xe0\xe0\xa4\x83\x16\xe0\xe0\xb6\x25\x25\xe0\xe0\xda"
        !          67506:             "\x36\xe0\xe0\xe0\x33\x66\xe0\x40\xf1\xe0\xe0\x76\xe0"
        !          67507:             "\x50\xe0\xe0\x67\xe0\xe0\x13\xe0\x77\xe0\xd6\xe0\x66"
        !          67508:             "\xe0\xd7\xe0\x57\xe0\xc8\xe0\x56\xe0\xd8\xe0\x47\xe0"
        !          67509:             "\xc8\xe0\x47\xe0\xd2\xe0\xa7\xe0\xc3\xe0\x97\xe0\xd3"
        !          67510:             "\xe0\x87\xe0\xe0\x12\xe0\x77\xe0\xe0\x23\xe0\x47\xe0"
        !          67511:             "\xe0\x54\xe0\x17\xe0\xe0\x76\x98\xe0\xe0\xbe\x04\xe0"
        !          67512:             "\xe0\xe0\x3c\xe0\xe0\x80" }  },
        !          67513:       /* --- pixel bitmap for rsfs600 char#72 H --- */
        !          67514:       {  72,12194,                      /* character number, location */
        !          67515:          59, 3,   -2, 3,      /* topleft row,col, and botleft row,col */
        !          67516:           { 100,   61, 2,399, (pixbyte *)/* width,ht, fmt,pixsz,map.. */
        !          67517:             "\x44\x01\x15\x07\x46\x02\x12\x0b\x44\x02\x11\x06\x05"
        !          67518:             "\x03\x42\x02\x10\x06\x08\x03\x40\x02\x10\x05\x0b\x02"
        !          67519:             "\x3f\x03\x0e\x06\x0c\x02\x3e\x03\x0e\x06\x0d\x02\x22"
        !          67520:             "\x06\x15\x03\x0e\x06\x0e\x02\x21\x08\x13\x03\x0e\x06"
        !          67521:             "\x0e\x02\x20\x03\x04\x04\x11\x04\x0d\x06\x0f\x02\x1f"
        !          67522:             "\x02\x06\x04\x10\x04\x0d\x06\x10\x02\x1e\x02\x07\x04"
        !          67523:             "\x0f\x04\x0d\x06\x10\x02\x1f\x02\x06\x05\x0e\x04\x0d"
        !          67524:             "\x06\x11\x02\x1e\x02\x07\x05\x0d\x05\x0c\x06\x11\x02"
        !          67525:             "\x1e\x02\x07\x05\x0d\x05\x0c\x06\x11\x02\x1e\x02\x08"
        !          67526:             "\x05\x0b\x06\x0c\x06\x12\x02\x1e\x02\x07\x05\x0b\x06"
        !          67527:             "\x0c\x07\x11\x02\x28\x05\x09\x08\x0b\x07\x11\x02\x29"
        !          67528:             "\x05\x06\x0a\x0b\x07\x11\x02\x2a\x14\x0b\x07\x11\x02"
        !          67529:             "\x2d\x09\x03\x05\x0c\x06\x10\x03\x39\x06\x0b\x07\x0f"
        !          67530:             "\x03\x39\x06\x0b\x07\x0e\x03\x3a\x06\x0b\x07\x0c\x04"
        !          67531:             "\x3b\x06\x0c\x06\x09\x06\x3c\x07\x0b\x07\x03\x09\x3f"
        !          67532:             "\x22\x3c\x21\x3f\x0e\x0c\x07\x40\x05\x05\x07\x0b\x07"
        !          67533:             "\x3f\x04\x07\x07\x0b\x07\x3e\x03\x09\x07\x0b\x07\x3d"
        !          67534:             "\x03\x0b\x06\x0c\x07\x3c\x02\x0c\x07\x0b\x07\x3c\x02"
        !          67535:             "\x0c\x07\x0b\x07\x3c\x02\x0c\x07\x0c\x07\x3b\x02\x0d"
        !          67536:             "\x07\x0b\x07\x3b\x02\x0d\x07\x0b\x07\x3b\x02\x0d\x07"
        !          67537:             "\x0c\x07\x49\x07\x0c\x07\x4a\x07\x0b\x07\x4a\x07\x0c"
        !          67538:             "\x07\x2a\x00\xff\x01\x1f\x07\x0c\x07\x2b\x00\x1e\x07"
        !          67539:             "\x0d\x06\x49\x07\x0d\x06\x33\x03\x13\x07\x0e\x06\x31"
        !          67540:             "\x06\x12\x06\x0f\x06\x10\x02\x1e\x07\x11\x06\x0f\x06"
        !          67541:             "\x10\x02\x1e\x08\x10\x06\x10\x06\x10\x02\x1e\x08\x0f"
        !          67542:             "\x06\x11\x06\x0f\x02\x1e\x08\x0f\x06\x12\x05\x0f\x02"
        !          67543:             "\x1f\x02\x14\x06\x13\x05\x0e\x02\x1f\x03\x13\x06\x14"
        !          67544:             "\x05\x0d\x02\x20\x03\x12\x05\x16\x05\x0c\x02\x21\x03"
        !          67545:             "\x11\x05\x18\x04\x0b\x02\x23\x02\x0f\x05\x1a\x05\x08"
        !          67546:             "\x03\x24\x04\x0c\x05\x1c\x05\x05\x04\x26\x05\x07\x06"
        !          67547:             "\x1f\x0b\x2a\x0e\x23\x07\x2e\x08\x56" }  },
        !          67548:       /* --- pixel bitmap for rsfs600 char#73 I --- */
        !          67549:       {  73,13808,                      /* character number, location */
        !          67550:          59, 6,   -1, 6,      /* topleft row,col, and botleft row,col */
        !          67551:           { 73,   60, 2,253, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          67552:             "\x47\x02\x44\x05\x41\x06\x3f\x09\x3d\x0b\x3a\x07\x02"
        !          67553:             "\x04\x38\x08\x04\x04\x36\x08\x06\x04\x35\x07\x07\x05"
        !          67554:             "\x34\x06\x09\x05\x33\x06\x0a\x05\x32\x06\x0b\x05\x32"
        !          67555:             "\x05\x0c\x05\x32\x05\x0c\x05\x32\x05\x0c\x05\x32\x05"
        !          67556:             "\x0c\x05\x32\x05\x0c\x05\x32\x05\x0c\x05\x32\x05\x0c"
        !          67557:             "\x05\x05\x02\x2b\x05\x0d\x05\x05\x02\x2b\x05\x0c\x05"
        !          67558:             "\x06\x02\x0c\x00\xff\x01\x1e\x05\x0c\x05\x07\x02\x0c"
        !          67559:             "\x00\x1d\x05\x0c\x05\x08\x02\x29\x05\x0b\x06\x08\x02"
        !          67560:             "\x28\x05\x0c\x05\x09\x02\x28\x05\x0b\x05\x09\x02\x29"
        !          67561:             "\x04\x0b\x06\x09\x02\x29\x04\x0b\x05\x09\x02\x2a\x04"
        !          67562:             "\x0a\x06\x09\x02\x2a\x04\x09\x06\x09\x02\x2b\x04\x09"
        !          67563:             "\x06\x08\x02\x2c\x04\x08\x06\x08\x02\x2d\x04\x08\x06"
        !          67564:             "\x07\x02\x2f\x04\x06\x06\x07\x02\x30\x04\x05\x07\x05"
        !          67565:             "\x03\x32\x04\x04\x06\x04\x03\x35\x0d\x02\x04\x38\x0f"
        !          67566:             "\x3c\x0a\x3f\x07\x1f\x00\xff\x01\x22\x07\x20\x00\x21"
        !          67567:             "\x07\x41\x07\x41\x07\x28\x03\x16\x07\x27\x06\x14\x07"
        !          67568:             "\x27\x07\x13\x07\x27\x08\x12\x07\x28\x08\x11\x07\x28"
        !          67569:             "\x08\x11\x06\x2a\x02\x16\x06\x2b\x02\x15\x06\x2c\x02"
        !          67570:             "\x13\x06\x2e\x02\x11\x06\x31\x03\x0d\x06\x33\x05\x09"
        !          67571:             "\x06\x37\x10\x3c\x09\x3a" }  },
        !          67572:       /* --- pixel bitmap for rsfs600 char#74 J --- */
        !          67573:       {  74,15428,                      /* character number, location */
        !          67574:          59, 8,  -25, 8,      /* topleft row,col, and botleft row,col */
        !          67575:           { 86,   84, 2,341, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          67576:             "\x54\x02\x52\x04\x4e\x07\x4c\x08\x4a\x0b\x47\x07\x02"
        !          67577:             "\x05\x44\x08\x04\x04\x43\x08\x06\x04\x42\x07\x08\x04"
        !          67578:             "\x41\x06\x09\x05\x40\x06\x0a\x05\x3f\x06\x0b\x05\x3f"
        !          67579:             "\x05\x0c\x05\x3f\x05\x0c\x05\x3f\x05\x0c\x05\x3f\x05"
        !          67580:             "\x0c\x05\x3f\x05\x0c\x05\x3f\x05\x0c\x05\x3f\x05\x0d"
        !          67581:             "\x05\x04\x02\x38\x05\x0d\x05\x05\x02\x38\x05\x0c\x05"
        !          67582:             "\x06\x02\x37\x05\x0d\x05\x06\x02\x37\x05\x0c\x05\x07"
        !          67583:             "\x02\x36\x05\x0c\x05\x08\x02\x36\x05\x0b\x06\x08\x02"
        !          67584:             "\x36\x04\x0c\x05\x09\x02\x35\x05\x0b\x06\x09\x02\x35"
        !          67585:             "\x04\x0c\x05\x09\x02\x36\x04\x0b\x05\x0a\x02\x36\x04"
        !          67586:             "\x0a\x06\x09\x02\x37\x04\x0a\x05\x09\x02\x38\x04\x09"
        !          67587:             "\x06\x08\x02\x39\x04\x08\x06\x09\x02\x39\x04\x08\x06"
        !          67588:             "\x07\x03\x3b\x04\x06\x06\x07\x02\x3e\x03\x05\x07\x06"
        !          67589:             "\x02\x3f\x05\x03\x06\x05\x03\x41\x0d\x02\x04\x45\x0f"
        !          67590:             "\x4a\x09\x4c\x07\x1f\x00\xff\x01\x2f\x07\x20\x00\x2e"
        !          67591:             "\x07\x21\x00\xff\x01\x2d\x07\x22\x00\x2c\x07\x4e\x07"
        !          67592:             "\x0a\x02\x43\x07\x09\x02\x43\x07\x09\x02\x43\x07\x08"
        !          67593:             "\x03\x43\x07\x08\x03\x44\x06\x06\x04\x45\x07\x04\x04"
        !          67594:             "\x46\x07\x02\x05\x47\x0c\x4a\x09\x4b\x07\x4a\x0b\x47"
        !          67595:             "\x0f\x43\x08\x04\x06\x41\x07\x07\x06\x3f\x06\x0a\x06"
        !          67596:             "\x3d\x05\x0d\x06\x3c\x04\x0f\x06\x3b\x04\x10\x06\x3a"
        !          67597:             "\x03\x12\x06\x3a\x02\x13\x06\x3a\x02\x14\x05\x3a\x02"
        !          67598:             "\x14\x05\x3a\x02\x14\x05\x3a\x02\x14\x04\x3c\x02\x13"
        !          67599:             "\x04\x3c\x02\x13\x04\x3d\x02\x11\x05\x3d\x02\x11\x05"
        !          67600:             "\x3e\x02\x10\x04\x40\x02\x0f\x04\x41\x02\x0e\x04\x42"
        !          67601:             "\x02\x0c\x04\x44\x03\x09\x05\x46\x03\x06\x05\x49\x0b"
        !          67602:             "\x4d\x06\x4c" }  },
        !          67603:       /* --- pixel bitmap for rsfs600 char#75 K --- */
        !          67604:       {  75,17354,                      /* character number, location */
        !          67605:          59, 3,   -2, 3,      /* topleft row,col, and botleft row,col */
        !          67606:           { 97,   61, 2,341, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          67607:             "\x44\x01\x5f\x02\x15\x07\x42\x02\x13\x0a\x41\x03\x11"
        !          67608:             "\x06\x46\x03\x11\x05\x47\x03\x10\x05\x48\x03\x10\x05"
        !          67609:             "\x2e\x05\x15\x03\x10\x04\x2e\x08\x13\x04\x0f\x04\x2e"
        !          67610:             "\x02\x04\x04\x11\x04\x0f\x04\x2e\x02\x05\x04\x10\x04"
        !          67611:             "\x0f\x04\x2e\x02\x06\x04\x0f\x04\x0f\x05\x2d\x02\x07"
        !          67612:             "\x04\x0e\x05\x0f\x04\x2d\x02\x07\x05\x0d\x05\x0f\x04"
        !          67613:             "\x2d\x02\x07\x05\x0d\x05\x0f\x04\x2d\x02\x08\x05\x0c"
        !          67614:             "\x05\x0f\x04\x2e\x02\x07\x05\x0b\x07\x0f\x04\x2d\x02"
        !          67615:             "\x08\x05\x09\x08\x0f\x04\x39\x04\x07\x09\x0f\x04\x3b"
        !          67616:             "\x0c\x01\x05\x0f\x04\x3d\x08\x03\x06\x0e\x04\x48\x06"
        !          67617:             "\x0e\x04\x48\x06\x0e\x04\x48\x06\x0e\x03\x49\x07\x0d"
        !          67618:             "\x03\x4a\x06\x0c\x04\x4a\x06\x02\x03\x07\x04\x4a\x06"
        !          67619:             "\x01\x07\x04\x03\x4b\x09\x03\x03\x02\x04\x4b\x09\x04"
        !          67620:             "\x07\x4d\x08\x05\x05\x4e\x08\x04\x06\x4e\x13\x4d\x07"
        !          67621:             "\x02\x0a\x28\x00\xff\x01\x25\x07\x07\x06\x28\x00\x24"
        !          67622:             "\x07\x07\x06\x4c\x07\x07\x06\x4c\x07\x08\x06\x4c\x07"
        !          67623:             "\x07\x06\x4c\x07\x07\x06\x4c\x07\x08\x06\x4c\x07\x07"
        !          67624:             "\x06\x4c\x07\x08\x06\x4b\x07\x08\x06\x4b\x07\x09\x06"
        !          67625:             "\x34\x03\x14\x06\x0a\x05\x33\x06\x12\x06\x0a\x06\x11"
        !          67626:             "\x02\x1f\x07\x11\x06\x0b\x05\x11\x02\x1f\x08\x10\x06"
        !          67627:             "\x0c\x05\x10\x02\x20\x08\x0f\x06\x0d\x05\x10\x02\x1f"
        !          67628:             "\x08\x0f\x06\x0e\x05\x0f\x02\x20\x02\x14\x06\x0f\x05"
        !          67629:             "\x0e\x02\x20\x03\x13\x06\x10\x05\x0d\x02\x21\x03\x12"
        !          67630:             "\x05\x13\x04\x0c\x02\x22\x03\x11\x05\x14\x04\x0a\x02"
        !          67631:             "\x25\x02\x10\x05\x16\x04\x08\x02\x26\x04\x0c\x05\x19"
        !          67632:             "\x04\x05\x03\x28\x05\x07\x06\x1c\x09\x2c\x0e\x20\x05"
        !          67633:             "\x30\x09\x52" }  },
        !          67634:       /* --- pixel bitmap for rsfs600 char#76 L --- */
        !          67635:       {  76,18936,                      /* character number, location */
        !          67636:          59, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
        !          67637:           { 84,   60, 2,281, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          67638:             "\x4a\x06\x2f\x06\x17\x0a\x2a\x09\x16\x04\x04\x04\x27"
        !          67639:             "\x07\x18\x05\x06\x04\x24\x07\x19\x05\x08\x03\x23\x06"
        !          67640:             "\x1a\x05\x09\x03\x21\x06\x1b\x05\x0a\x03\x20\x05\x1c"
        !          67641:             "\x05\x0b\x03\x1f\x05\x1c\x05\x0c\x03\x1e\x05\x1c\x05"
        !          67642:             "\x0c\x04\x1d\x05\x1c\x06\x0c\x04\x1c\x05\x1c\x06\x0d"
        !          67643:             "\x03\x1c\x05\x1c\x06\x0d\x04\x1c\x05\x1b\x06\x0e\x03"
        !          67644:             "\x1c\x05\x1b\x06\x0e\x03\x1d\x05\x1a\x07\x0d\x04\x1c"
        !          67645:             "\x05\x1a\x07\x0e\x03\x1d\x05\x1a\x06\x0e\x03\x1d\x05"
        !          67646:             "\x1a\x06\x0e\x03\x1e\x05\x19\x07\x0d\x03\x1f\x05\x18"
        !          67647:             "\x07\x0d\x03\x20\x05\x17\x07\x0c\x04\x21\x05\x17\x06"
        !          67648:             "\x0c\x04\x22\x05\x16\x07\x0a\x04\x25\x05\x14\x07\x09"
        !          67649:             "\x05\x26\x05\x13\x07\x08\x05\x29\x05\x12\x07\x05\x06"
        !          67650:             "\x2c\x06\x0f\x07\x03\x07\x30\x06\x0c\x0f\x34\x1c\x3b"
        !          67651:             "\x15\x4b\x07\x4c\x07\x21\x00\xff\x01\x2b\x07\x22\x00"
        !          67652:             "\x2a\x07\x23\x00\xff\x01\x29\x07\x24\x00\x28\x07\x25"
        !          67653:             "\x00\xff\x01\x27\x07\x26\x00\x26\x07\x4c\x07\x4c\x07"
        !          67654:             "\x4d\x06\x4d\x07\x4c\x07\x4c\x07\x17\x02\x33\x06\x18"
        !          67655:             "\x02\x33\x06\x18\x02\x32\x07\x18\x03\x1c\x0e\x07\x07"
        !          67656:             "\x18\x03\x1a\x16\x01\x06\x18\x04\x1a\x06\x09\x0e\x17"
        !          67657:             "\x04\x1b\x05\x10\x0d\x11\x05\x1b\x05\x10\x16\x05\x08"
        !          67658:             "\x1b\x06\x0e\x06\x03\x1a\x1d\x06\x0b\x07\x07\x16\x20"
        !          67659:             "\x14\x0e\x10\x25\x0d\x16\x09\x24" }  },
        !          67660:       /* --- pixel bitmap for rsfs600 char#77 M --- */
        !          67661:       {  77,20726,                      /* character number, location */
        !          67662:          59, 3,   -3, 3,      /* topleft row,col, and botleft row,col */
        !          67663:           { 98,   62, 2,461, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          67664:             "\x4b\x02\x13\x02\x4a\x03\x12\x03\x49\x03\x12\x03\x49"
        !          67665:             "\x03\x12\x03\x49\x03\x12\x03\x48\x04\x12\x03\x48\x05"
        !          67666:             "\x10\x05\x47\x05\x10\x05\x47\x05\x10\x05\x46\x06\x10"
        !          67667:             "\x05\x46\x06\x10\x05\x46\x07\x0f\x06\x44\x08\x0f\x06"
        !          67668:             "\x44\x08\x0f\x06\x44\x08\x0f\x06\x43\x03\x01\x06\x0e"
        !          67669:             "\x07\x42\x02\x02\x06\x0e\x07\x42\x02\x02\x06\x0d\x08"
        !          67670:             "\x41\x03\x03\x06\x0c\x09\x40\x02\x04\x06\x0c\x02\x01"
        !          67671:             "\x06\x40\x02\x04\x06\x0c\x02\x01\x06\x3f\x03\x04\x06"
        !          67672:             "\x0c\x02\x01\x07\x3e\x03\x04\x07\x0b\x02\x02\x06\x3e"
        !          67673:             "\x02\x06\x06\x0b\x02\x02\x07\x3d\x02\x06\x06\x0b\x02"
        !          67674:             "\x02\x07\x3d\x02\x06\x07\x0a\x02\x03\x06\x3d\x02\x06"
        !          67675:             "\x07\x0a\x02\x03\x07\x3c\x02\x07\x06\x0a\x02\x04\x06"
        !          67676:             "\x3b\x03\x07\x06\x0a\x02\x04\x06\x3b\x02\x08\x07\x09"
        !          67677:             "\x02\x04\x07\x3a\x02\x08\x07\x09\x02\x05\x06\x3b\x02"
        !          67678:             "\x08\x06\x09\x02\x05\x07\x3a\x02\x08\x06\x09\x02\x05"
        !          67679:             "\x07\x3a\x02\x08\x07\x08\x02\x06\x06\x3a\x02\x08\x07"
        !          67680:             "\x08\x02\x06\x07\x39\x02\x08\x07\x09\x02\x05\x07\x39"
        !          67681:             "\x02\x09\x07\x08\x02\x06\x07\x38\x02\x09\x07\x08\x02"
        !          67682:             "\x06\x07\x39\x01\x09\x07\x08\x02\x06\x07\x39\x02\x08"
        !          67683:             "\x07\x08\x02\x07\x07\x38\x02\x09\x07\x07\x02\x07\x07"
        !          67684:             "\x38\x02\x09\x07\x07\x02\x07\x07\x38\x02\x09\x07\x08"
        !          67685:             "\x02\x07\x07\x38\x01\x0a\x07\x07\x02\x07\x07\x38\x02"
        !          67686:             "\x09\x07\x07\x02\x07\x07\x38\x02\x09\x07\x07\x02\x08"
        !          67687:             "\x07\x37\x02\x0a\x06\x07\x02\x08\x07\x37\x02\x0a\x07"
        !          67688:             "\x06\x02\x08\x07\x0e\x01\x28\x02\x0a\x07\x06\x02\x09"
        !          67689:             "\x07\x0d\x02\x14\x05\x0e\x02\x0b\x06\x06\x02\x0a\x06"
        !          67690:             "\x0e\x02\x13\x07\x0c\x02\x0c\x06\x06\x02\x09\x07\x0d"
        !          67691:             "\x02\x13\x08\x0b\x02\x0c\x06\x06\x02\x0a\x06\x0d\x02"
        !          67692:             "\x14\x08\x0a\x02\x0d\x06\x05\x02\x0b\x06\x0c\x02\x14"
        !          67693:             "\x08\x0a\x02\x0e\x05\x05\x02\x0c\x05\x0c\x02\x15\x02"
        !          67694:             "\x01\x03\x0b\x02\x0e\x06\x04\x02\x0d\x05\x0b\x02\x16"
        !          67695:             "\x02\x0d\x03\x0f\x05\x04\x02\x0e\x05\x0a\x02\x17\x03"
        !          67696:             "\x0b\x02\x11\x05\x03\x02\x0f\x05\x08\x02\x1a\x03\x07"
        !          67697:             "\x04\x12\x05\x02\x02\x11\x04\x06\x03\x1c\x0b\x14\x05"
        !          67698:             "\x01\x02\x12\x04\x04\x04\x1e\x07\x17\x07\x14\x09\x3f"
        !          67699:             "\x05\x16\x06\x42\x03\x3c" }  },
        !          67700:       /* --- pixel bitmap for rsfs600 char#78 N --- */
        !          67701:       {  78,22333,                      /* character number, location */
        !          67702:          60, 3,   -2, 3,      /* topleft row,col, and botleft row,col */
        !          67703:           { 97,   62, 2,319, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          67704:             "\x60\x01\x5e\x03\x3e\x02\x1c\x05\x3d\x03\x1b\x05\x3e"
        !          67705:             "\x02\x1a\x05\x3f\x02\x1a\x04\x40\x03\x19\x04\x41\x02"
        !          67706:             "\x18\x04\x42\x03\x17\x04\x42\x04\x16\x03\x44\x03\x16"
        !          67707:             "\x03\x44\x04\x15\x03\x44\x05\x14\x03\x44\x06\x14\x02"
        !          67708:             "\x45\x05\x14\x02\x45\x02\x01\x03\x13\x02\x45\x02\x01"
        !          67709:             "\x04\x12\x02\x46\x02\x01\x04\x11\x02\x46\x02\x02\x04"
        !          67710:             "\x10\x03\x45\x02\x03\x05\x0f\x02\x45\x03\x03\x05\x0e"
        !          67711:             "\x02\x46\x02\x03\x06\x0d\x02\x46\x02\x04\x06\x0d\x02"
        !          67712:             "\x45\x03\x04\x06\x0c\x02\x46\x02\x05\x06\x0b\x02\x46"
        !          67713:             "\x02\x06\x06\x0a\x02\x46\x02\x07\x07\x09\x02\x46\x02"
        !          67714:             "\x07\x07\x08\x02\x46\x02\x08\x07\x07\x02\x46\x02\x09"
        !          67715:             "\x07\x07\x02\x45\x03\x09\x07\x06\x02\x46\x02\x0a\x07"
        !          67716:             "\x05\x02\x46\x02\x0b\x07\x05\x02\x45\x02\x0c\x07\x04"
        !          67717:             "\x02\x46\x02\x0c\x07\x03\x02\x46\x02\x0d\x07\x03\x02"
        !          67718:             "\x45\x02\x0e\x07\x02\x02\x45\x03\x0e\x07\x02\x02\x45"
        !          67719:             "\x02\x0f\x06\x02\x02\x45\x02\x11\x05\x01\x02\x45\x02"
        !          67720:             "\x12\x05\x01\x02\x45\x02\x12\x07\x45\x02\x13\x07\x44"
        !          67721:             "\x02\x14\x06\x44\x02\x15\x05\x45\x02\x14\x06\x44\x02"
        !          67722:             "\x15\x05\x2c\x03\x15\x02\x16\x05\x2a\x06\x13\x02\x17"
        !          67723:             "\x04\x2a\x07\x12\x02\x18\x04\x29\x08\x11\x02\x19\x03"
        !          67724:             "\x2a\x08\x10\x02\x1a\x03\x29\x08\x10\x02\x1a\x03\x2a"
        !          67725:             "\x02\x15\x02\x1b\x03\x29\x03\x14\x02\x1c\x02\x2a\x03"
        !          67726:             "\x13\x02\x1c\x03\x2a\x03\x12\x02\x1d\x02\x2c\x02\x10"
        !          67727:             "\x03\x1e\x02\x2c\x04\x0c\x03\x1f\x02\x2e\x05\x08\x04"
        !          67728:             "\x20\x02\x30\x0d\x56\x08\x53" }  },
        !          67729:       /* --- pixel bitmap for rsfs600 char#79 O --- */
        !          67730:       {  79,23764,                      /* character number, location */
        !          67731:          59, 8,   -1, 8,      /* topleft row,col, and botleft row,col */
        !          67732:           { 59,   60, 3,577, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          67733:             "\xe0\xe0\xca\xe0\xe0\xe0\x4e\x02\xe0\xe0\xd6\x86\xe0"
        !          67734:             "\xe0\x95\xe0\x13\xe0\xe0\x65\xe0\x52\xe0\xe0\x35\xe0"
        !          67735:             "\x82\xe0\xe0\x15\xe0\x93\xe0\xc6\xe0\xb2\xe0\xb5\xe0"
        !          67736:             "\xd2\xe0\xa5\xe0\xe2\xe0\x86\xe0\xe0\x12\xe0\x76\xe0"
        !          67737:             "\xe0\x22\xe0\x66\x98\xd2\xe0\x66\x8c\xb2\xe0\x56\x82"
        !          67738:             "\x84\x92\xe0\x56\x73\xa4\x82\xe0\x46\x72\xd4\x62\xe0"
        !          67739:             "\x47\x62\xe4\x52\xe0\x47\x62\x73\x63\x42\xe0\x47\x62"
        !          67740:             "\x85\x43\x23\xe0\x47\x61\xcd\xe0\x67\x51\xe0\x28\xe0"
        !          67741:             "\x77\x52\xe0\x64\xe0\x67\x52\xe0\x64\xe0\x67\x52\xe0"
        !          67742:             "\x74\xe0\x67\x42\xe0\x84\xe0\x57\x42\xe0\x94\xe0\x47"
        !          67743:             "\x42\xe0\x95\xe0\x47\x42\xe0\x94\xe0\x47\x42\xe0\x95"
        !          67744:             "\xe0\x46\x42\xe0\xa5\xe0\x37\x42\xe0\xa4\xe0\x46\x42"
        !          67745:             "\xe0\xa5\xe0\x37\x32\xe0\xa5\xe0\x46\x42\xe0\xa5\xe0"
        !          67746:             "\x37\x32\xe0\xa5\xe0\x46\x42\xe0\xa5\xe0\x37\x32\xe0"
        !          67747:             "\xa5\xe0\x46\x42\xe0\x95\xe0\x56\x32\xe0\xa5\xe0\x46"
        !          67748:             "\x42\xe0\x95\xe0\x56\x42\xe0\x85\xe0\x66\x32\xe0\x95"
        !          67749:             "\xe0\x65\x42\xe0\x85\xe0\x75\x42\xe0\x75\xe0\x76\x42"
        !          67750:             "\xe0\x65\xe0\x86\x32\xe0\x74\xe0\x95\x42\xe0\x64\xe0"
        !          67751:             "\xa5\x42\xe0\x54\xe0\xc4\x41\xe0\x54\xe0\xd4\xe0\x94"
        !          67752:             "\xe0\xe5\xe0\x74\xe0\xe0\x15\xe0\x64\xe0\xe0\x34\xe0"
        !          67753:             "\x54\xe0\xe0\x45\xe0\x24\xe0\xe0\x75\xe4\xe0\xe0\x95"
        !          67754:             "\xb4\xe0\xe0\xc6\x75\xe0\xe0\xe0\x1d\xe0\xe0\xe0\x78"
        !          67755:             "\xe0\xe0\xd0" }  },
        !          67756:       /* --- pixel bitmap for rsfs600 char#80 P --- */
        !          67757:       {  80,25560,                      /* character number, location */
        !          67758:          59, 8,   -2, 8,      /* topleft row,col, and botleft row,col */
        !          67759:           { 78,   61, 2,359, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          67760:             "\x2d\x0e\x3c\x17\x0d\x01\x26\x07\x0d\x09\x08\x03\x23"
        !          67761:             "\x05\x16\x07\x05\x03\x22\x04\x1c\x06\x01\x03\x22\x04"
        !          67762:             "\x20\x07\x21\x04\x23\x05\x21\x03\x0c\x02\x17\x06\x1e"
        !          67763:             "\x03\x0e\x02\x16\x08\x1c\x02\x10\x02\x15\x0a\x19\x03"
        !          67764:             "\x11\x02\x14\x05\x01\x05\x18\x02\x13\x02\x13\x05\x03"
        !          67765:             "\x05\x16\x02\x13\x03\x12\x05\x04\x05\x15\x02\x14\x03"
        !          67766:             "\x11\x06\x04\x05\x14\x02\x15\x03\x10\x06\x05\x06\x12"
        !          67767:             "\x02\x15\x03\x10\x06\x06\x06\x11\x02\x16\x03\x0f\x06"
        !          67768:             "\x07\x06\x10\x02\x16\x04\x0e\x06\x08\x06\x10\x02\x16"
        !          67769:             "\x03\x0e\x07\x08\x05\x10\x02\x16\x04\x0e\x06\x08\x06"
        !          67770:             "\x0f\x02\x17\x03\x0e\x06\x09\x06\x0f\x02\x16\x03\x0e"
        !          67771:             "\x06\x0a\x06\x0e\x02\x16\x04\x07\x02\x04\x07\x09\x06"
        !          67772:             "\x0f\x02\x15\x04\x06\x03\x04\x07\x0a\x06\x0e\x02\x16"
        !          67773:             "\x03\x06\x02\x05\x07\x0a\x06\x0f\x02\x15\x03\x06\x02"
        !          67774:             "\x06\x07\x0a\x06\x0f\x02\x14\x03\x06\x02\x06\x07\x0a"
        !          67775:             "\x06\x0f\x02\x14\x03\x06\x02\x06\x07\x0a\x06\x10\x02"
        !          67776:             "\x13\x03\x07\x02\x05\x07\x0b\x05\x11\x02\x12\x03\x07"
        !          67777:             "\x02\x06\x07\x0a\x05\x12\x02\x11\x03\x08\x02\x05\x07"
        !          67778:             "\x0a\x05\x13\x02\x0f\x03\x0a\x03\x03\x07\x0a\x05\x15"
        !          67779:             "\x02\x0d\x03\x0c\x02\x03\x06\x09\x06\x16\x03\x0a\x03"
        !          67780:             "\x0f\x0a\x07\x06\x19\x04\x05\x05\x11\x08\x05\x07\x1c"
        !          67781:             "\x0a\x14\x11\x21\x05\x17\x0d\x40\x07\x1c\x00\xff\x01"
        !          67782:             "\x2a\x07\x1d\x00\x29\x07\x46\x07\x46\x07\x46\x07\x46"
        !          67783:             "\x07\x46\x07\x29\x03\x1a\x07\x28\x06\x18\x07\x28\x07"
        !          67784:             "\x17\x07\x28\x08\x16\x07\x29\x08\x15\x06\x2a\x08\x15"
        !          67785:             "\x06\x2b\x02\x19\x07\x2b\x03\x18\x06\x2d\x03\x16\x06"
        !          67786:             "\x2f\x03\x14\x07\x31\x02\x12\x07\x33\x04\x0e\x07\x36"
        !          67787:             "\x05\x09\x07\x3b\x10\x40\x0a\x3e" }  },
        !          67788:       /* --- pixel bitmap for rsfs600 char#81 Q --- */
        !          67789:       {  81,27157,                      /* character number, location */
        !          67790:          59, 4,   -1, 4,      /* topleft row,col, and botleft row,col */
        !          67791:           { 70,   60, 2,281, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          67792:             "\x2f\x0a\x38\x12\x31\x06\x0a\x07\x2d\x05\x10\x05\x2a"
        !          67793:             "\x05\x13\x06\x26\x05\x17\x04\x24\x05\x19\x05\x22\x05"
        !          67794:             "\x1b\x05\x20\x04\x1d\x05\x1e\x05\x0c\x03\x10\x05\x1c"
        !          67795:             "\x05\x0e\x02\x10\x05\x1b\x05\x0f\x03\x0f\x05\x1a\x05"
        !          67796:             "\x11\x03\x0e\x06\x18\x05\x12\x03\x0e\x06\x18\x04\x13"
        !          67797:             "\x04\x0d\x06\x17\x05\x13\x04\x0d\x06\x16\x05\x14\x04"
        !          67798:             "\x0c\x06\x01\x00\xff\x01\x15\x05\x15\x04\x0c\x06\x01"
        !          67799:             "\x00\x14\x05\x15\x05\x0b\x07\x15\x05\x15\x05\x0b\x06"
        !          67800:             "\x15\x05\x15\x05\x0c\x06\x15\x05\x15\x05\x0b\x07\x15"
        !          67801:             "\x04\x15\x05\x0c\x06\x15\x05\x14\x05\x0c\x07\x15\x05"
        !          67802:             "\x14\x05\x0b\x07\x16\x04\x14\x05\x0c\x07\x16\x04\x13"
        !          67803:             "\x05\x0c\x07\x17\x04\x12\x04\x0e\x07\x18\x03\x10\x05"
        !          67804:             "\x0e\x07\x19\x04\x0e\x05\x0e\x07\x1b\x03\x0c\x05\x0f"
        !          67805:             "\x07\x1c\x05\x07\x06\x11\x07\x1e\x0d\x13\x07\x21\x08"
        !          67806:             "\x15\x07\x3e\x07\x3e\x07\x3f\x06\x3f\x06\x3f\x06\x3f"
        !          67807:             "\x06\x3f\x06\x3f\x06\x3f\x06\x3e\x07\x3e\x06\x3f\x06"
        !          67808:             "\x20\x0a\x15\x05\x11\x02\x0c\x11\x0f\x06\x11\x02\x0b"
        !          67809:             "\x15\x0c\x06\x11\x03\x09\x1a\x07\x06\x12\x03\x09\x1d"
        !          67810:             "\x03\x06\x13\x03\x0a\x03\x0d\x14\x14\x02\x0b\x04\x11"
        !          67811:             "\x0f\x13\x03\x0c\x04\x14\x0d\x10\x04\x0d\x04\x15\x0f"
        !          67812:             "\x0b\x05\x0f\x04\x11\x20\x12\x05\x0b\x08\x06\x14\x16"
        !          67813:             "\x13\x0c\x0f\x1b\x0b\x15\x09\x16" }  },
        !          67814:       /* --- pixel bitmap for rsfs600 char#82 R --- */
        !          67815:       {  82,29030,                      /* character number, location */
        !          67816:          59, 0,   -2, 0,      /* topleft row,col, and botleft row,col */
        !          67817:           { 74,   61, 3,689, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          67818:             "\xe0\xe0\xe0\x3d\xe0\xe0\xe0\xe0\x1e\x08\x91\xe0\xe0"
        !          67819:             "\xb7\xc9\x43\xe0\xe0\x85\xe0\x76\x23\xe0\xe0\x74\xe0"
        !          67820:             "\xd6\xe0\xe0\x74\xe0\xe0\x34\xe0\xe0\x54\xe0\xe0\x46"
        !          67821:             "\xe0\xe0\x33\xe0\xe0\x43\x24\xe0\xe3\xe0\xe0\x53\x35"
        !          67822:             "\xe0\xc2\xe0\xe0\x63\x54\xe0\xa3\xe0\xe0\x63\x64\xe0"
        !          67823:             "\x92\xe0\xe0\x73\x75\xe0\x72\xe0\x31\xe0\x33\x85\xe0"
        !          67824:             "\x62\xe0\x32\xe0\x23\x95\xe0\x52\xe0\x42\xe0\x13\xa5"
        !          67825:             "\xe0\x42\xe0\x52\xe3\xb4\xe0\x42\xe0\x53\xd4\xa5\xe0"
        !          67826:             "\x32\xe0\x53\xd4\xb5\xe0\x32\xe0\x53\xc4\xb5\xe0\x32"
        !          67827:             "\xe0\x53\xc4\xc5\xe0\x22\xe0\x54\xb5\xb5\xe0\x32\xe0"
        !          67828:             "\x44\xb5\xc5\xe0\x22\xe0\x45\xa5\xc5\xe0\x32\xe0\x35"
        !          67829:             "\xb5\xb5\xe0\x32\xe0\x44\xb5\xb5\xe0\x42\xe0\x35\xa5"
        !          67830:             "\xb5\xe0\x52\xe0\x25\xa6\xa4\xe0\x62\xe0\x25\xa6\x95"
        !          67831:             "\xe0\x72\xe0\x24\xb5\x85\xe0\x92\xe0\x15\x9c\x16\xe0"
        !          67832:             "\xa2\xe5\x9e\x03\xe0\xd2\xd5\xae\x02\xe0\xe3\xb4\xcb"
        !          67833:             "\x15\xe0\xe2\xa4\xc6\x75\xe0\xe0\x13\x64\xd7\x75\xe0"
        !          67834:             "\xe0\x2a\xe7\x76\xe0\xe0\x46\xe0\x26\x86\xe0\xe0\xe0"
        !          67835:             "\xb7\x76\xe0\x30\xf1\xe0\xe0\x87\x77\xe0\x30\xe0\xe0"
        !          67836:             "\x77\x77\xe0\xe0\xe0\xa7\x77\xe0\xe0\xe0\xa7\x87\xe0"
        !          67837:             "\xe0\xe0\xa7\x77\xe0\xe0\xe0\xa7\x77\xe0\xe0\xe0\xa7"
        !          67838:             "\x87\xe0\xd3\xe0\x77\x87\xe0\xc6\xe0\x57\x87\xd2\xb7"
        !          67839:             "\xe0\x56\x87\xd2\xb8\xe0\x46\x97\xd2\xb8\xe0\x36\x97"
        !          67840:             "\xd2\xb8\xe0\x36\x97\xd2\xc2\xe0\x76\xb7\xc2\xd2\xe0"
        !          67841:             "\x66\xc6\xc2\xe2\xe0\x56\xd6\xb2\xe0\x12\xe0\x36\xe0"
        !          67842:             "\x25\xa1\xe0\x33\xe0\x15\xe0\x54\x91\xe0\x54\xb5\xe0"
        !          67843:             "\x83\x71\xe0\x8e\x03\xe0\xd1\x41\xe0\xcc\xe0\xe0\xe0"
        !          67844:             "\xe0\xc1\xe0\xe0\xe0\xe0\x67" }  },
        !          67845:       /* --- pixel bitmap for rsfs600 char#83 S --- */
        !          67846:       {  83,30589,                      /* character number, location */
        !          67847:          59, 3,   -2, 3,      /* topleft row,col, and botleft row,col */
        !          67848:           { 82,   61, 2,265, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          67849:             "\x4b\x06\x4a\x09\x47\x04\x05\x02\x46\x03\x07\x02\x2e"
        !          67850:             "\x08\x0e\x04\x08\x02\x2a\x0b\x0e\x04\x09\x02\x27\x07"
        !          67851:             "\x14\x04\x0a\x02\x24\x06\x17\x04\x0b\x02\x22\x05\x19"
        !          67852:             "\x04\x0c\x02\x20\x04\x1b\x05\x0b\x02\x1f\x04\x1c\x05"
        !          67853:             "\x0c\x02\x1d\x04\x1d\x05\x0c\x02\x1d\x04\x1d\x06\x0c"
        !          67854:             "\x02\x1c\x04\x1d\x06\x0c\x02\x1c\x04\x1d\x07\x0b\x02"
        !          67855:             "\x1c\x04\x1d\x07\x0c\x02\x1c\x03\x1e\x06\x0c\x02\x1c"
        !          67856:             "\x04\x1d\x07\x0b\x02\x1d\x03\x1d\x07\x0b\x02\x1d\x04"
        !          67857:             "\x1c\x07\x0b\x02\x1e\x04\x1c\x07\x0a\x02\x1f\x04\x1b"
        !          67858:             "\x07\x0a\x02\x20\x04\x1a\x07\x0a\x02\x22\x03\x19\x07"
        !          67859:             "\x09\x03\x23\x04\x18\x07\x08\x02\x26\x03\x17\x07\x07"
        !          67860:             "\x03\x28\x03\x15\x07\x06\x03\x2b\x04\x12\x07\x05\x03"
        !          67861:             "\x2e\x04\x11\x07\x02\x04\x31\x06\x0d\x0c\x35\x09\x07"
        !          67862:             "\x0b\x3a\x15\x42\x0d\x4b\x07\x4a\x07\x4a\x07\x21\x00"
        !          67863:             "\xff\x01\x29\x07\x22\x00\x28\x07\x4a\x07\x24\x00\xff"
        !          67864:             "\x01\x26\x07\x25\x00\x25\x07\x4a\x07\x4a\x07\x4b\x06"
        !          67865:             "\x2f\x03\x19\x06\x2e\x06\x17\x06\x2e\x07\x16\x06\x2e"
        !          67866:             "\x08\x15\x06\x2f\x08\x13\x07\x2f\x08\x13\x07\x30\x02"
        !          67867:             "\x18\x06\x31\x03\x17\x06\x32\x03\x15\x06\x34\x03\x13"
        !          67868:             "\x07\x36\x02\x12\x06\x38\x04\x0d\x07\x3b\x05\x08\x07"
        !          67869:             "\x40\x10\x44\x0a\x42" }  },
        !          67870:       /* --- pixel bitmap for rsfs600 char#84 T --- */
        !          67871:       {  84,32064,                      /* character number, location */
        !          67872:          61, 8,   -2, 8,      /* topleft row,col, and botleft row,col */
        !          67873:           { 75,   63, 2,263, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          67874:             "\x2b\x0a\x3e\x10\x38\x16\x33\x1a\x2f\x1e\x2b\x08\x0b"
        !          67875:             "\x10\x26\x06\x12\x10\x22\x05\x17\x13\x1b\x04\x1b\x10"
        !          67876:             "\x1a\x04\x1f\x0d\x1a\x03\x24\x0a\x19\x03\x0e\x02\x15"
        !          67877:             "\x01\x02\x06\x19\x02\x0f\x04\x12\x03\x20\x02\x10\x04"
        !          67878:             "\x11\x03\x20\x02\x11\x05\x0f\x03\x20\x02\x12\x05\x0d"
        !          67879:             "\x04\x20\x03\x12\x05\x0c\x05\x20\x02\x13\x05\x0b\x05"
        !          67880:             "\x20\x02\x14\x04\x0b\x05\x20\x02\x14\x05\x0a\x05\x21"
        !          67881:             "\x02\x14\x05\x09\x05\x21\x02\x14\x05\x0a\x05\x21\x02"
        !          67882:             "\x14\x05\x09\x05\x22\x02\x13\x05\x09\x05\x23\x02\x12"
        !          67883:             "\x05\x09\x05\x23\x02\x12\x05\x0a\x05\x23\x03\x10\x05"
        !          67884:             "\x0a\x05\x25\x02\x0e\x05\x0b\x06\x25\x02\x0c\x06\x0c"
        !          67885:             "\x05\x27\x03\x07\x07\x0d\x06\x28\x0d\x10\x05\x2a\x08"
        !          67886:             "\x13\x06\x45\x06\x18\x00\xff\x01\x2c\x06\x19\x00\x2b"
        !          67887:             "\x06\x44\x07\x44\x06\x1b\x00\xff\x01\x29\x07\x1b\x00"
        !          67888:             "\x28\x07\x1c\x00\xff\x01\x27\x07\x1d\x00\x26\x07\x1e"
        !          67889:             "\x00\xff\x01\x25\x07\x1f\x00\x24\x07\x43\x07\x27\x03"
        !          67890:             "\x19\x07\x26\x06\x17\x07\x26\x07\x17\x06\x26\x08\x16"
        !          67891:             "\x06\x27\x08\x15\x06\x27\x08\x15\x06\x28\x02\x19\x06"
        !          67892:             "\x29\x03\x18\x06\x2a\x03\x17\x06\x2c\x02\x16\x05\x2e"
        !          67893:             "\x03\x13\x06\x30\x04\x0f\x06\x33\x06\x09\x07\x37\x11"
        !          67894:             "\x3d\x0b\x38" }  },
        !          67895:       /* --- pixel bitmap for rsfs600 char#85 U --- */
        !          67896:       {  85,33601,                      /* character number, location */
        !          67897:          59, 5,   -1, 5,      /* topleft row,col, and botleft row,col */
        !          67898:           { 75,   60, 3,643, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          67899:             "\xe0\xe0\x29\xe0\xe0\xe0\xe0\x6e\x01\xe0\xe0\xe0\xe0"
        !          67900:             "\x25\x86\xe0\xe0\xe0\xb5\xd5\xe0\xe0\xe0\x93\xe0\x35"
        !          67901:             "\xe0\xe0\xe0\x63\xe0\x64\xe0\xe0\xe0\x43\xe0\x85\xe0"
        !          67902:             "\xe0\xe0\x22\xe0\xa5\xe0\xe0\xe3\xe0\xc4\xe0\x87\xc2"
        !          67903:             "\xc2\xd5\xe0\x77\xc2\xc3\xd5\xe0\x67\xc2\xd3\xd5\xe0"
        !          67904:             "\x57\xc2\xe3\xd5\xe0\x47\xc2\xe0\x13\xd5\xe0\x37\xc2"
        !          67905:             "\xe0\x23\xc5\xe0\x37\xc2\xe0\x24\xc5\xe0\x27\xc2\xe0"
        !          67906:             "\x33\xc6\xe0\x27\xb2\xe0\x34\xc5\xe0\x27\xc2\xe0\x34"
        !          67907:             "\xb6\xe0\x17\xc2\xe0\x35\xb5\xe0\x17\xc2\xe0\x45\xa6"
        !          67908:             "\xe7\xd2\xe0\x35\xa6\xe7\xd2\xe0\x45\xa6\xd7\xe2\xe0"
        !          67909:             "\x35\xa6\xe7\xd2\xe0\x35\xa6\xe7\xe2\xe0\x35\xa6\xd7"
        !          67910:             "\xe0\x12\xe0\x25\xa6\xd7\xe0\x22\xe0\x15\xa6\xd7\xe0"
        !          67911:             "\x32\xe4\xb7\xd7\xe0\x32\xd4\xc6\xd7\xe0\x43\xa5\xc6"
        !          67912:             "\xd7\xe0\x63\x66\xd6\xd7\xe0\x8c\xe7\xc7\xe0\xb6\xe0"
        !          67913:             "\x46\xd7\xe0\xe0\xe0\x66\xd7\xe0\xe0\xe0\x67\xc7\xe0"
        !          67914:             "\xe0\xe0\x67\xc7\xe0\xe0\xe0\x76\xc7\xe0\xe0\xe0\x76"
        !          67915:             "\xd7\xe0\xe0\xe0\x67\xc7\xe0\xe0\xe0\x67\xc7\xe0\xe0"
        !          67916:             "\xe0\x76\xc7\xe0\xe0\xe0\x77\xc7\xe0\xe0\xe0\x67\xc7"
        !          67917:             "\xe0\xe0\x10\xf1\xe0\x57\xc7\xe0\xe0\x20\xe0\x47\xc7"
        !          67918:             "\xe0\xe0\xe0\x67\xc7\xe0\xe0\xe0\x77\xb7\xc2\xe0\xe0"
        !          67919:             "\x86\xc7\xc2\xe0\xe0\x76\xc7\xc2\xe0\xe0\x86\xb8\xb2"
        !          67920:             "\xe0\xe0\x96\xa8\xb2\xe0\xe0\xa5\x93\x16\xa2\xe0\xe0"
        !          67921:             "\xb5\x82\x35\x93\xe0\xe0\xc4\x82\x45\x82\xe0\xe0\xe4"
        !          67922:             "\x63\x55\x63\xe0\xe0\xe0\x14\x43\x84\x34\xe0\xe0\xe0"
        !          67923:             "\x48\xa9\xe0\xe0\xe0\x75\xd6\xe0\xe0\x50" }  },
        !          67924:       /* --- pixel bitmap for rsfs600 char#86 V --- */
        !          67925:       {  86,35028,                      /* character number, location */
        !          67926:          59, 5,   -1, 5,      /* topleft row,col, and botleft row,col */
        !          67927:           { 66,   60, 2,267, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          67928:             "\x27\x02\x3f\x02\x18\x02\x25\x02\x18\x03\x24\x03\x16"
        !          67929:             "\x05\x23\x03\x16\x05\x23\x03\x16\x04\x25\x03\x15\x04"
        !          67930:             "\x25\x04\x14\x03\x26\x04\x14\x03\x14\x06\x0d\x04\x13"
        !          67931:             "\x03\x12\x0b\x0a\x04\x13\x03\x12\x03\x05\x05\x08\x05"
        !          67932:             "\x12\x03\x11\x03\x07\x05\x08\x05\x11\x03\x11\x02\x09"
        !          67933:             "\x05\x07\x05\x11\x03\x11\x02\x0a\x05\x07\x05\x10\x03"
        !          67934:             "\x10\x02\x0b\x05\x07\x06\x10\x02\x10\x02\x0b\x05\x07"
        !          67935:             "\x06\x10\x03\x10\x01\x0b\x05\x07\x07\x0f\x03\x10\x02"
        !          67936:             "\x0b\x05\x06\x08\x0f\x02\x10\x02\x0c\x04\x05\x0a\x0e"
        !          67937:             "\x02\x1f\x04\x03\x03\x02\x06\x0e\x02\x21\x08\x03\x06"
        !          67938:             "\x0e\x02\x22\x05\x04\x07\x0d\x02\x13\x00\xff\x01\x19"
        !          67939:             "\x07\x0c\x02\x14\x00\x18\x07\x0c\x02\x15\x00\xff\x01"
        !          67940:             "\x18\x07\x0b\x02\x16\x00\x18\x07\x0a\x02\x2f\x07\x09"
        !          67941:             "\x02\x18\x00\xff\x01\x17\x07\x09\x02\x19\x00\x17\x07"
        !          67942:             "\x08\x02\x31\x07\x07\x02\x32\x06\x07\x02\x32\x07\x06"
        !          67943:             "\x02\x33\x07\x05\x02\x34\x06\x06\x02\x34\x06\x05\x02"
        !          67944:             "\x34\x06\x05\x02\x35\x06\x04\x02\x36\x05\x04\x02\x37"
        !          67945:             "\x05\x02\x03\x37\x05\x02\x02\x39\x05\x01\x02\x3a\x04"
        !          67946:             "\x01\x02\x3a\x04\x01\x02\x3b\x06\x3b\x06\x3c\x05\x3c"
        !          67947:             "\x05\x3d\x04\x3d\x04\x3e\x03\x3e\x03\x3e\x03\x3f\x02"
        !          67948:             "\x3f\x02\x3f\x02\x3f\x02\x35" }  },
        !          67949:       /* --- pixel bitmap for rsfs600 char#87 W --- */
        !          67950:       {  87,36579,                      /* character number, location */
        !          67951:          59, 4,   -1, 4,      /* topleft row,col, and botleft row,col */
        !          67952:           { 81,   60, 3,787, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          67953:             "\xe0\xe0\xb2\xe0\x32\xe0\xe0\xe0\xe0\x32\xe0\x32\xe0"
        !          67954:             "\x71\xe0\xe0\x92\xe0\x33\xe0\x53\xe0\xe0\x82\xe0\x33"
        !          67955:             "\xe0\x45\xe0\xe0\x73\xe0\x23\xe0\x45\xe0\xe0\x73\xe0"
        !          67956:             "\x24\xe0\x25\xe0\xe0\x84\xe0\x14\xe0\x24\xe6\xe0\x43"
        !          67957:             "\xe0\x15\xe0\x14\xe9\xe0\x13\xe0\x15\xe0\x13\xe3\x45"
        !          67958:             "\xd4\xe2\x12\xe0\x13\xe2\x65\xc4\xe2\x13\xe3\xe2\x75"
        !          67959:             "\xb5\xd2\x13\xe0\x12\xe0\x12\x75\xb4\xe6\xe2\xe0\x12"
        !          67960:             "\x75\xb5\xd2\x14\xd3\xe2\x85\xa5\xd2\x14\xd3\xe2\x85"
        !          67961:             "\xb5\xc2\x15\xd2\xe0\x12\x75\xb6\xb2\x24\xd2\xe0\xa6"
        !          67962:             "\x97\xb2\x25\xc3\xe0\xa6\x79\xa2\x25\xd2\xe0\xce\x06"
        !          67963:             "\xa2\x35\xc2\xe0\xea\x36\x92\x35\xd2\xe0\xe0\xc6\x92"
        !          67964:             "\x36\xc2\xe0\xe0\xc7\x92\x36\xb2\xe0\xe0\xd7\x82\x36"
        !          67965:             "\xc2\xe0\xe0\xc7\x82\x37\xb2\xe0\xe0\xd7\x72\x46\xb3"
        !          67966:             "\xe0\xe0\xc7\x72\x47\xb2\xe0\xe0\xd7\x62\x47\xb2\xe0"
        !          67967:             "\xe0\xe7\x52\x57\xb2\xe0\xe0\xd7\x52\x57\xb2\xe0\xe0"
        !          67968:             "\xe7\x52\x57\xa2\xe0\xe0\xe7\x52\x57\xa2\xe0\xe0\xe0"
        !          67969:             "\x17\x42\x67\xa2\xe0\xe0\xe0\x17\x32\x67\xa2\xe0\xe0"
        !          67970:             "\xe0\x17\x32\x76\xa2\xe0\xe0\xe0\x27\x22\x77\x92\xe0"
        !          67971:             "\xe0\xe0\x27\x22\x86\x92\xe0\xe0\xe0\x37\x12\x86\x92"
        !          67972:             "\xe0\xe0\xe0\x46\x22\x86\x82\xe0\xe0\xe0\x46\x22\x95"
        !          67973:             "\x82\xe0\xe0\xe0\x56\x12\x95\x73\xe0\xe0\xe0\x56\x12"
        !          67974:             "\xa5\x62\xe0\xe0\xe0\x78\xa5\x62\xe0\xe0\xe0\x78\xb4"
        !          67975:             "\x62\xe0\xe0\xe0\x87\xb5\x52\xe0\xe0\xe0\x96\xc4\x43"
        !          67976:             "\xe0\xe0\xe0\x96\xc4\x42\xe0\xe0\xe0\xb5\xd4\x32\xe0"
        !          67977:             "\xe0\xe0\xb6\xd3\x32\xe0\xe0\xe0\xc5\xd3\x23\xe0\xe0"
        !          67978:             "\xe0\xc5\xe2\x22\xe0\xe0\xe0\xe4\xe3\x12\xe0\xe0\xe0"
        !          67979:             "\xe4\xe3\x12\xe0\xe0\xe0\xe4\xe0\x12\x12\xe0\xe0\xe0"
        !          67980:             "\xe0\x13\xe0\x15\xe0\xe0\xe0\xe0\x13\xe0\x23\xe0\xe0"
        !          67981:             "\xe0\xe0\x32\xe0\x23\xe0\xe0\xe0\xe0\x32\xe0\x32\xe0"
        !          67982:             "\xe0\xe0\xe0\x32\xe0\x32\xe0\xe0\xe0\xe0\x32\xe0\x32"
        !          67983:             "\xe0\xe0\xe0\xe2" }  },
        !          67984:       /* --- pixel bitmap for rsfs600 char#88 X --- */
        !          67985:       {  88,38374,                      /* character number, location */
        !          67986:          59, 9,   -1, 9,      /* topleft row,col, and botleft row,col */
        !          67987:           { 85,   60, 2,365, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          67988:             "\x24\x08\x1f\x08\x23\x0e\x1a\x0b\x20\x04\x08\x06\x16"
        !          67989:             "\x03\x03\x08\x1d\x03\x0d\x05\x14\x02\x04\x08\x1c\x03"
        !          67990:             "\x10\x05\x12\x02\x05\x07\x1c\x02\x13\x05\x0f\x02\x07"
        !          67991:             "\x06\x1c\x02\x15\x04\x0e\x02\x0a\x03\x1b\x03\x0a\x02"
        !          67992:             "\x0a\x05\x0c\x02\x28\x02\x0b\x04\x09\x05\x0b\x02\x28"
        !          67993:             "\x02\x0c\x04\x09\x05\x0a\x02\x28\x02\x0d\x04\x09\x05"
        !          67994:             "\x09\x02\x29\x02\x0d\x04\x09\x06\x07\x02\x29\x02\x0e"
        !          67995:             "\x04\x09\x06\x06\x02\x29\x02\x0f\x04\x09\x06\x05\x02"
        !          67996:             "\x2a\x02\x0e\x05\x09\x05\x05\x02\x2a\x02\x0f\x05\x09"
        !          67997:             "\x05\x04\x02\x2a\x02\x10\x04\x09\x06\x03\x02\x2b\x02"
        !          67998:             "\x0f\x05\x09\x06\x03\x01\x2b\x02\x0f\x05\x0a\x06\x02"
        !          67999:             "\x02\x2b\x02\x0f\x05\x09\x06\x02\x02\x2c\x02\x0e\x05"
        !          68000:             "\x0a\x06\x01\x02\x2c\x02\x0f\x05\x09\x09\x2d\x02\x0e"
        !          68001:             "\x05\x0a\x08\x2e\x02\x0d\x05\x0a\x08\x2f\x02\x0c\x05"
        !          68002:             "\x0b\x08\x2f\x02\x0b\x05\x0b\x08\x31\x02\x09\x04\x0d"
        !          68003:             "\x07\x32\x03\x06\x05\x0d\x07\x34\x0b\x0e\x08\x35\x07"
        !          68004:             "\x0a\x14\x1f\x00\xff\x01\x21\x15\x1f\x00\x27\x07\x4d"
        !          68005:             "\x07\x28\x00\xff\x01\x25\x07\x29\x00\x24\x07\x4d\x07"
        !          68006:             "\x4d\x08\x4d\x07\x4d\x08\x4c\x08\x4c\x09\x4c\x06\x01"
        !          68007:             "\x02\x4b\x06\x01\x02\x17\x02\x32\x06\x02\x02\x17\x02"
        !          68008:             "\x1b\x02\x14\x06\x03\x02\x16\x02\x1a\x05\x12\x06\x03"
        !          68009:             "\x02\x16\x02\x1a\x07\x10\x06\x04\x02\x15\x02\x1a\x08"
        !          68010:             "\x0f\x05\x06\x02\x14\x02\x1a\x08\x0f\x05\x07\x02\x13"
        !          68011:             "\x02\x1b\x07\x0f\x05\x08\x02\x12\x02\x1b\x02\x14\x05"
        !          68012:             "\x09\x02\x11\x02\x1c\x02\x13\x04\x0b\x02\x10\x02\x1d"
        !          68013:             "\x02\x11\x05\x0c\x03\x0e\x02\x1e\x03\x0f\x04\x0f\x02"
        !          68014:             "\x0d\x02\x20\x03\x0c\x05\x10\x03\x0a\x03\x22\x05\x07"
        !          68015:             "\x05\x13\x04\x06\x03\x25\x0e\x16\x0b\x29\x08\x1b\x06"
        !          68016:             "\x26" }  },
        !          68017:       /* --- pixel bitmap for rsfs600 char#89 Y --- */
        !          68018:       {  89,40095,                      /* character number, location */
        !          68019:          59, 4,   -1, 4,      /* topleft row,col, and botleft row,col */
        !          68020:           { 75,   60, 3,651, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          68021:             "\xe0\xe0\x39\xe0\xe0\xe0\xe0\x6e\x02\xe0\xe0\x31\xe0"
        !          68022:             "\xb5\x96\xe0\xd3\xe0\x85\xe5\xe0\xa3\xe0\x93\xe0\x45"
        !          68023:             "\xe0\x74\xe0\x83\xe0\x75\xe0\x54\xe0\x73\xe0\x95\xe0"
        !          68024:             "\x34\xe0\x82\x82\xe0\x16\xe0\x14\xe0\x73\x93\xe6\xe4"
        !          68025:             "\xe0\x72\xb3\xe6\xd4\xe0\x72\xc4\xd6\xc4\xe0\x72\xd4"
        !          68026:             "\xd6\xb5\xe0\x62\xe4\xc7\xa5\xe0\x62\xe0\x14\xc6\xa5"
        !          68027:             "\xe0\x62\xe0\x15\xb7\x96\xe0\x52\xe0\x25\xb6\xa5\xe0"
        !          68028:             "\x52\xe0\x34\xb7\x95\xe0\x52\xe0\x35\xa7\xa5\xe0\x52"
        !          68029:             "\xe0\x35\xa7\x95\xe0\x52\xe0\x35\xa7\x96\xe0\x42\xe0"
        !          68030:             "\x45\x97\xa5\xe0\x52\xe0\x35\xa7\x96\xe0\x42\xe0\x45"
        !          68031:             "\x97\x96\xe0\x52\xe0\x35\x97\xa6\xe0\x30\xf1\x12\xe0"
        !          68032:             "\x35\x97\xa6\xe0\x40\x12\xe0\x25\x97\xa6\xe0\x62\xe0"
        !          68033:             "\x15\x97\xa7\xe0\x53\xe5\xa7\xa6\xe0\x63\xe4\xa7\xa7"
        !          68034:             "\xe0\x72\xd4\xa7\xb6\xe0\x82\xb5\xb7\xa7\xe0\x83\x94"
        !          68035:             "\xc7\xa7\xe0\xa4\x55\xd6\xb7\xe0\xbb\xe0\x16\xa7\xe0"
        !          68036:             "\xe6\xe0\x36\xb6\xe0\xe0\xe0\xa6\xa7\xe0\xe0\xe0\xb5"
        !          68037:             "\x97\xe0\xb0\xf1\xe0\xe0\x15\x87\xe0\xc0\xe0\xe0\x24"
        !          68038:             "\x59\xe0\xe0\xe0\xe0\x2e\x02\xe0\xe0\xe0\xe0\x56\x16"
        !          68039:             "\xe0\xe0\xe0\xe0\xc6\xe0\xe0\xe0\xe0\xc7\xe0\xe0\xe0"
        !          68040:             "\xe0\xb7\xe0\xe0\xd2\xe0\xa7\xe0\xe0\xc5\xe0\x87\xe0"
        !          68041:             "\xe0\xc7\xe0\x66\xe0\xe0\xd8\xe0\x56\xe0\xe0\xd8\xe0"
        !          68042:             "\x56\xe0\xe0\xe7\xe0\x56\xe0\xe0\xe2\xe0\xa5\xe0\xe0"
        !          68043:             "\xe0\x22\xe0\x86\xe0\xe0\xe0\x32\xe0\x75\xe0\xe0\xe0"
        !          68044:             "\x53\xe0\x46\xe0\xe0\xe0\x74\xe6\xe0\xe0\xe0\xa6\x96"
        !          68045:             "\xe0\xe0\xe0\xee\x02\xe0\xe0\xe0\xe0\x6a\xe0\xe0\xe0"
        !          68046:             "\xc2" }  },
        !          68047:       /* --- pixel bitmap for rsfs600 char#90 Z --- */
        !          68048:       {  90,42034,                      /* character number, location */
        !          68049:          59, 7,   -1, 7,      /* topleft row,col, and botleft row,col */
        !          68050:           { 79,   60, 2,317, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          68051:             "\x25\x08\x19\x06\x24\x0f\x13\x0a\x21\x05\x07\x06\x10"
        !          68052:             "\x04\x06\x03\x1e\x04\x0b\x06\x0e\x03\x09\x03\x1b\x03"
        !          68053:             "\x0f\x05\x0d\x02\x0c\x02\x19\x03\x10\x06\x0b\x03\x0d"
        !          68054:             "\x02\x18\x03\x11\x06\x0a\x03\x0d\x02\x18\x02\x12\x07"
        !          68055:             "\x09\x03\x0e\x02\x16\x03\x13\x07\x08\x04\x0e\x02\x15"
        !          68056:             "\x02\x14\x07\x08\x04\x0e\x02\x15\x02\x0b\x02\x07\x07"
        !          68057:             "\x09\x03\x0e\x02\x15\x02\x0c\x03\x06\x07\x08\x04\x0d"
        !          68058:             "\x02\x15\x02\x0d\x04\x05\x07\x07\x04\x0c\x03\x15\x02"
        !          68059:             "\x0e\x04\x06\x06\x06\x04\x0a\x04\x16\x02\x0f\x04\x07"
        !          68060:             "\x05\x05\x05\x07\x05\x18\x02\x0f\x04\x08\x06\x02\x05"
        !          68061:             "\x03\x07\x1a\x02\x0f\x05\x09\x13\x1c\x02\x10\x05\x0c"
        !          68062:             "\x0b\x21\x02\x0f\x05\x0f\x06\x23\x02\x10\x05\x0f\x05"
        !          68063:             "\x24\x02\x0f\x05\x0f\x06\x24\x02\x0f\x05\x0e\x06\x25"
        !          68064:             "\x02\x0e\x05\x0e\x07\x24\x02\x0e\x05\x0f\x06\x25\x03"
        !          68065:             "\x0c\x05\x0f\x07\x26\x02\x0b\x05\x0f\x07\x27\x02\x0a"
        !          68066:             "\x04\x11\x07\x28\x03\x06\x05\x11\x07\x2a\x0b\x12\x07"
        !          68067:             "\x2c\x07\x0f\x17\x37\x18\x37\x17\x14\x00\xff\x01\x28"
        !          68068:             "\x07\x20\x00\x27\x07\x47\x07\x48\x06\x48\x06\x48\x07"
        !          68069:             "\x47\x07\x47\x07\x48\x06\x48\x06\x48\x06\x48\x06\x48"
        !          68070:             "\x06\x48\x06\x48\x06\x14\x02\x32\x05\x15\x02\x32\x05"
        !          68071:             "\x15\x03\x20\x0a\x07\x05\x15\x03\x1e\x12\x01\x05\x15"
        !          68072:             "\x03\x1d\x04\x09\x0b\x15\x04\x1d\x02\x0f\x0a\x11\x05"
        !          68073:             "\x1d\x02\x11\x0e\x09\x06\x1f\x02\x0f\x1e\x1f\x02\x0e"
        !          68074:             "\x05\x04\x15\x21\x03\x0a\x06\x08\x12\x23\x0f\x0d\x0e"
        !          68075:             "\x27\x0a\x13\x08\x27" }  },
        !          68076:       /* --- pixel bitmap for rsfs600 char#127 (noname) --- */
        !          68077:       { 127,42876,                      /* character number, location */
        !          68078:          43,33,   30,33,      /* topleft row,col, and botleft row,col */
        !          68079:           { 33,   13, 3,75, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          68080:             "\xe0\x59\xe0\x6e\x01\xe0\x1e\x05\xc7\x96\x95\xe0\x24"
        !          68081:             "\x74\xe0\x53\x54\xe0\x73\x43\xe0\x93\x33\xe0\xa3\x22"
        !          68082:             "\xe0\xc2\x22\xe0\xd2\x12\xe0\xd2\x21\xe0\xe1\x33" }  },
        !          68083:       /* --- trailer  --- */
        !          68084:       { -99, -999,  0,0,0,0, { 0,0,0,0, (pixbyte *)"\0" }  }
        !          68085:    } ;
        !          68086: 
        !          68087: 
1.2       albertel 68088: /* ------------------------------------------------------------------------
1.5     ! raeburn  68089: font sizes 0-10 for stmary10
1.2       albertel 68090: ------------------------------------------------------------------------ */
                   68091: 
                   68092: /* --- size=0 for .83gf ---
                   68093:  * mf '\mode=eighthre;  input stmary10'
                   68094:  * --------------------------------------------------------------------- */
                   68095: /* --- fontdef for stmary83 --- */
                   68096: static	chardef  stmary83[] =
                   68097:    {
                   68098:       /* --- pixel bitmap for stmary83 char#0 \shortleftarrow --- */
                   68099:       {   0,   35,                      /* character number, location */
                   68100:           4, 1,    1, 1,      /* topleft row,col, and botleft row,col */
                   68101:           {  6,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68102:             "\xc2\x2f\x00" }  },
                   68103:       /* --- pixel bitmap for stmary83 char#1 \shortrightarrow --- */
                   68104:       {   1,   48,                      /* character number, location */
                   68105:           4, 1,    1, 1,      /* topleft row,col, and botleft row,col */
                   68106:           {  6,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68107:             "\xd0\x0f\x01" }  },
                   68108:       /* --- pixel bitmap for stmary83 char#2 \shortuparrow --- */
                   68109:       {   2,   61,                      /* character number, location */
                   68110:           7, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   68111:           {  3,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68112:             "\xba\x24\x49" }  },
                   68113:       /* --- pixel bitmap for stmary83 char#3 \shortdownarrow --- */
                   68114:       {   3,   84,                      /* character number, location */
                   68115:           7, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   68116:           {  3,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68117:             "\x92\x24\x5d" }  },
                   68118:       /* --- pixel bitmap for stmary83 char#4 \Yup --- */
                   68119:       {   4,  107,                      /* character number, location */
                   68120:           6, 1,    1, 1,      /* topleft row,col, and botleft row,col */
                   68121:           {  3,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68122:             "\x92\x54" }  },
                   68123:       /* --- pixel bitmap for stmary83 char#5 \Ydown --- */
                   68124:       {   5,  126,                      /* character number, location */
                   68125:           5, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   68126:           {  3,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68127:             "\xad\x24" }  },
                   68128:       /* --- pixel bitmap for stmary83 char#6 \Yleft --- */
                   68129:       {   6,  147,                      /* character number, location */
                   68130:           5, 1,    1, 1,      /* topleft row,col, and botleft row,col */
                   68131:           {  4,    4, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68132:             "\x68\x84" }  },
                   68133:       /* --- pixel bitmap for stmary83 char#7 \Yright --- */
                   68134:       {   7,  162,                      /* character number, location */
                   68135:           5, 1,    1, 1,      /* topleft row,col, and botleft row,col */
                   68136:           {  4,    4, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68137:             "\xe1\x12" }  },
                   68138:       /* --- pixel bitmap for stmary83 char#8 \varcurlyvee --- */
                   68139:       {   8,  177,                      /* character number, location */
                   68140:           8, 0,   -2, 0,      /* topleft row,col, and botleft row,col */
                   68141:           {  7,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68142:             "\x41\x11\x85\x42\x41\x20\x10\x08\x04" }  },
                   68143:       /* --- pixel bitmap for stmary83 char#9 \varcurlywedge --- */
                   68144:       {   9,  214,                      /* character number, location */
                   68145:           8, 0,   -2, 0,      /* topleft row,col, and botleft row,col */
                   68146:           {  7,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68147:             "\x08\x04\x02\x81\xa0\x50\x28\xa2\x20" }  },
                   68148:       /* --- pixel bitmap for stmary83 char#10 \minuso --- */
                   68149:       {  10,  251,                      /* character number, location */
                   68150:           5, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   68151:           {  6,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68152:             "\x5e\xf8\x87\x1e" }  },
                   68153:       /* --- pixel bitmap for stmary83 char#11 \baro --- */
                   68154:       {  11,  272,                      /* character number, location */
                   68155:           7, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   68156:           {  3,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68157:             "\x92\x74\x49\x02" }  },
                   68158:       /* --- pixel bitmap for stmary83 char#12 \sslash --- */
                   68159:       {  12,  297,                      /* character number, location */
                   68160:           9, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   68161:           {  5,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68162:             "\x94\x52\xa5\x94\x52\xaa\x94\x02" }  },
                   68163:       /* --- pixel bitmap for stmary83 char#13 \bblash --- */
                   68164:       {  13,  352,                      /* character number, location */
                   68165:           9, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   68166:           {  5,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68167:             "\xa5\x14\xa5\x94\x52\x8a\x52\x0a" }  },
                   68168:       /* --- pixel bitmap for stmary83 char#14 \moo --- */
                   68169:       {  14,  407,                      /* character number, location */
                   68170:           5, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   68171:           {  5,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68172:             "\x84\xfc\xba\x01" }  },
                   68173:       /* --- pixel bitmap for stmary83 char#15 \varotimes --- */
                   68174:       {  15,  430,                      /* character number, location */
                   68175:           5, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   68176:           {  5,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68177:             "\x6e\xd7\xed\x00" }  },
                   68178:       /* --- pixel bitmap for stmary83 char#16 \varoast --- */
                   68179:       {  16,  455,                      /* character number, location */
                   68180:           5, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   68181:           {  5,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68182:             "\xae\xde\xea\x00" }  },
                   68183:       /* --- pixel bitmap for stmary83 char#17 \varobar --- */
                   68184:       {  17,  482,                      /* character number, location */
                   68185:           5, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   68186:           {  5,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68187:             "\xae\xd6\xea\x00" }  },
                   68188:       /* --- pixel bitmap for stmary83 char#18 \varodot --- */
                   68189:       {  18,  511,                      /* character number, location */
                   68190:           5, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   68191:           {  5,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68192:             "\x2e\xd6\xe8\x00" }  },
                   68193:       /* --- pixel bitmap for stmary83 char#19 \varoslash --- */
                   68194:       {  19,  536,                      /* character number, location */
                   68195:           5, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   68196:           {  5,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68197:             "\x2e\xd7\xe9\x00" }  },
                   68198:       /* --- pixel bitmap for stmary83 char#20 \varobslash --- */
                   68199:       {  20,  561,                      /* character number, location */
                   68200:           5, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   68201:           {  5,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68202:             "\x6e\xd6\xec\x00" }  },
                   68203:       /* --- pixel bitmap for stmary83 char#21 \varocircle --- */
                   68204:       {  21,  586,                      /* character number, location */
                   68205:           5, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   68206:           {  5,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68207:             "\xae\xee\xea\x00" }  },
                   68208:       /* --- pixel bitmap for stmary83 char#22 \varoplus --- */
                   68209:       {  22,  613,                      /* character number, location */
                   68210:           5, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   68211:           {  5,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68212:             "\xae\xfe\xea\x00" }  },
                   68213:       /* --- pixel bitmap for stmary83 char#23 \varominus --- */
                   68214:       {  23,  638,                      /* character number, location */
                   68215:           5, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   68216:           {  5,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68217:             "\x2e\xfe\xe8\x00" }  },
                   68218:       /* --- pixel bitmap for stmary83 char#24 \boxast --- */
                   68219:       {  24,  659,                      /* character number, location */
                   68220:           5, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   68221:           {  5,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68222:             "\xbf\xde\xfa\x01" }  },
                   68223:       /* --- pixel bitmap for stmary83 char#25 \boxbar --- */
                   68224:       {  25,  686,                      /* character number, location */
                   68225:           5, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   68226:           {  5,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68227:             "\xbf\xd6\xfa\x01" }  },
                   68228:       /* --- pixel bitmap for stmary83 char#26 \boxdot --- */
                   68229:       {  26,  715,                      /* character number, location */
                   68230:           5, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   68231:           {  5,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68232:             "\x3f\xd6\xf8\x01" }  },
                   68233:       /* --- pixel bitmap for stmary83 char#27 \boxslash --- */
                   68234:       {  27,  740,                      /* character number, location */
                   68235:           5, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   68236:           {  5,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68237:             "\x3f\xd7\xf9\x01" }  },
                   68238:       /* --- pixel bitmap for stmary83 char#28 \boxbslash --- */
                   68239:       {  28,  765,                      /* character number, location */
                   68240:           5, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   68241:           {  5,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68242:             "\x7f\xd6\xfc\x01" }  },
                   68243:       /* --- pixel bitmap for stmary83 char#29 \boxcircle --- */
                   68244:       {  29,  790,                      /* character number, location */
                   68245:           6, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   68246:           {  6,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68247:             "\x7f\xd8\xb6\xe1\x0f" }  },
                   68248:       /* --- pixel bitmap for stmary83 char#30 \boxbox --- */
                   68249:       {  30,  821,                      /* character number, location */
                   68250:           5, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   68251:           {  5,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68252:             "\xff\xef\xff\x01" }  },
                   68253:       /* --- pixel bitmap for stmary83 char#31 \boxempty --- */
                   68254:       {  31,  840,                      /* character number, location */
                   68255:           5, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   68256:           {  5,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68257:             "\x3f\xc6\xf8\x01" }  },
                   68258:       /* --- pixel bitmap for stmary83 char#32 \lightning --- */
                   68259:       {  32,  863,                      /* character number, location */
                   68260:           8, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   68261:           {  3,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68262:             "\x92\x74\x4a\x17" }  },
                   68263:       /* --- pixel bitmap for stmary83 char#33 \merge --- */
                   68264:       {  33,  890,                      /* character number, location */
                   68265:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   68266:           {  7,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68267:             "\x14\x8a\x4a\xa5\x52\x55\xab" }  },
                   68268:       /* --- pixel bitmap for stmary83 char#34 \vartimes --- */
                   68269:       {  34,  945,                      /* character number, location */
                   68270:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   68271:           {  3,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68272:             "\xad\x24\xb5" }  },
                   68273:       /* --- pixel bitmap for stmary83 char#35 \fatsemi --- */
                   68274:       {  35,  976,                      /* character number, location */
                   68275:           6, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   68276:           {  2,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68277:             "\x0f\x6f" }  },
                   68278:       /* --- pixel bitmap for stmary83 char#36 \sswarrow --- */
                   68279:       {  36,  997,                      /* character number, location */
                   68280:           8, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   68281:           {  4,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68282:             "\x88\x44\x44\x22\x27" }  },
                   68283:       /* --- pixel bitmap for stmary83 char#37 \ssearrow --- */
                   68284:       {  37, 1024,                      /* character number, location */
                   68285:           8, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   68286:           {  4,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68287:             "\x11\x22\x22\x44\x4e" }  },
                   68288:       /* --- pixel bitmap for stmary83 char#38 \curlywedgeuparrow --- */
                   68289:       {  38, 1051,                      /* character number, location */
                   68290:           8, 0,   -2, 0,      /* topleft row,col, and botleft row,col */
                   68291:           {  7,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68292:             "\x08\x04\x07\x81\xa0\x50\x28\xa2\x20" }  },
                   68293:       /* --- pixel bitmap for stmary83 char#39 \curlywedgedownarrow --- */
                   68294:       {  39, 1088,                      /* character number, location */
                   68295:           8, 0,   -2, 0,      /* topleft row,col, and botleft row,col */
                   68296:           {  7,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68297:             "\x08\x04\x02\x81\xa0\x50\xaa\xe3\x31" }  },
                   68298:       /* --- pixel bitmap for stmary83 char#40 \fatslash --- */
                   68299:       {  40, 1129,                      /* character number, location */
                   68300:           9, 3,   -3, 3,      /* topleft row,col, and botleft row,col */
                   68301:           {  6,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68302:             "\x3c\x49\x49\x92\x24\x29\x4a\x92\x3c" }  },
                   68303:       /* --- pixel bitmap for stmary83 char#41 \fatbslash --- */
                   68304:       {  41, 1180,                      /* character number, location */
                   68305:           9, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   68306:           {  5,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68307:             "\x2f\xa5\x14\xa3\x94\x52\x4a\x0f" }  },
                   68308:       /* --- pixel bitmap for stmary83 char#42 \lbag --- */
                   68309:       {  42, 1231,                      /* character number, location */
                   68310:           9, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   68311:           {  4,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68312:             "\x46\x24\x22\x12\x11\xe1" }  },
                   68313:       /* --- pixel bitmap for stmary83 char#43 \rbag --- */
                   68314:       {  43, 1262,                      /* character number, location */
                   68315:           9, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   68316:           {  3,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68317:             "\x4b\x24\x89\x24\x07" }  },
                   68318:       /* --- pixel bitmap for stmary83 char#44 \varbigcirc --- */
                   68319:       {  44, 1293,                      /* character number, location */
                   68320:           7, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   68321:           {  8,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68322:             "\x3c\x42\x81\x81\x81\x81\x42\x3c" }  },
                   68323:       /* --- pixel bitmap for stmary83 char#45 \leftrightarroweq --- */
                   68324:       {  45, 1328,                      /* character number, location */
                   68325:           6, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   68326:           {  8,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68327:             "\x42\xff\x42\x00\x00\x7e" }  },
                   68328:       /* --- pixel bitmap for stmary83 char#46 \curlyveedownarrow --- */
                   68329:       {  46, 1349,                      /* character number, location */
                   68330:           8, 0,   -2, 0,      /* topleft row,col, and botleft row,col */
                   68331:           {  7,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68332:             "\x41\x11\x85\x42\x41\x20\x38\x08\x04" }  },
                   68333:       /* --- pixel bitmap for stmary83 char#47 \curlyveeuparrow --- */
                   68334:       {  47, 1386,                      /* character number, location */
                   68335:           8, 0,   -2, 0,      /* topleft row,col, and botleft row,col */
                   68336:           {  7,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68337:             "\xe3\x71\x95\x42\x41\x20\x10\x08\x04" }  },
                   68338:       /* --- pixel bitmap for stmary83 char#48 \nnwarrow --- */
                   68339:       {  48, 1427,                      /* character number, location */
                   68340:           8, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   68341:           {  4,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68342:             "\x72\x22\x44\x44\x88" }  },
                   68343:       /* --- pixel bitmap for stmary83 char#49 \nnearrow --- */
                   68344:       {  49, 1454,                      /* character number, location */
                   68345:           8, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   68346:           {  4,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68347:             "\xe4\x44\x22\x22\x11" }  },
                   68348:       /* --- pixel bitmap for stmary83 char#50 \leftslice --- */
                   68349:       {  50, 1481,                      /* character number, location */
                   68350:           5, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   68351:           {  6,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68352:             "\x10\x3b\xb2\x10" }  },
                   68353:       /* --- pixel bitmap for stmary83 char#51 \rightslice --- */
                   68354:       {  51, 1504,                      /* character number, location */
                   68355:           5, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   68356:           {  6,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68357:             "\x42\x13\x37\x02" }  },
                   68358:       /* --- pixel bitmap for stmary83 char#52 \varolessthan --- */
                   68359:       {  52, 1527,                      /* character number, location */
                   68360:           5, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   68361:           {  5,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68362:             "\xae\xcf\xee\x00" }  },
                   68363:       /* --- pixel bitmap for stmary83 char#53 \varogreaterthan --- */
                   68364:       {  53, 1550,                      /* character number, location */
                   68365:           5, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   68366:           {  5,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68367:             "\xee\xe6\xeb\x00" }  },
                   68368:       /* --- pixel bitmap for stmary83 char#54 \varovee --- */
                   68369:       {  54, 1573,                      /* character number, location */
                   68370:           5, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   68371:           {  5,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68372:             "\x6e\xef\xea\x00" }  },
                   68373:       /* --- pixel bitmap for stmary83 char#55 \varowedge --- */
                   68374:       {  55, 1598,                      /* character number, location */
                   68375:           5, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   68376:           {  5,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68377:             "\xae\xee\xed\x00" }  },
                   68378:       /* --- pixel bitmap for stmary83 char#56 \talloblong --- */
                   68379:       {  56, 1623,                      /* character number, location */
                   68380:           9, 0,   -4, 0,      /* topleft row,col, and botleft row,col */
                   68381:           {  5,   13, 3,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68382:             "\x05\x0f\xa1\x31\x05" }  },
                   68383:       /* --- pixel bitmap for stmary83 char#57 \interleave --- */
                   68384:       {  57, 1678,                      /* character number, location */
                   68385:           9,-1,   -4,-1,      /* topleft row,col, and botleft row,col */
                   68386:           {  9,   13, 3, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68387:             "\xfc\x01\x31\x31" }  },
                   68388:       /* --- pixel bitmap for stmary83 char#58 \obar --- */
                   68389:       {  58, 1763,                      /* character number, location */
                   68390:           7, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   68391:           {  6,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68392:             "\x8c\x96\xa6\x69\x9a\x6a\x0c" }  },
                   68393:       /* --- pixel bitmap for stmary83 char#59 \oslash --- */
                   68394:       {  59, 1812,                      /* character number, location */
                   68395:           7, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   68396:           {  6,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68397:             "\x8c\x34\x96\x65\x1a\x4b\x0c" }  },
                   68398:       /* --- pixel bitmap for stmary83 char#60 \olessthan --- */
                   68399:       {  60, 1857,                      /* character number, location */
                   68400:           7, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   68401:           {  6,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68402:             "\x8c\x94\x9e\xe1\x99\x4a\x0c" }  },
                   68403:       /* --- pixel bitmap for stmary83 char#61 \ogreaterthan --- */
                   68404:       {  61, 1900,                      /* character number, location */
                   68405:           7, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   68406:           {  6,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68407:             "\x8c\x54\xe6\x61\x5e\x4a\x0c" }  },
                   68408:       /* --- pixel bitmap for stmary83 char#62 \ovee --- */
                   68409:       {  62, 1943,                      /* character number, location */
                   68410:           7, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   68411:           {  6,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68412:             "\x8c\x34\xcf\x73\xdb\x7a\x0c" }  },
                   68413:       /* --- pixel bitmap for stmary83 char#63 \owedge --- */
                   68414:       {  63, 1984,                      /* character number, location */
                   68415:           7, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   68416:           {  6,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68417:             "\x8c\xd7\xb6\xf3\x3c\x4b\x0c" }  },
                   68418:       /* --- pixel bitmap for stmary83 char#64 \oblong --- */
                   68419:       {  64, 2025,                      /* character number, location */
                   68420:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   68421:           {  5,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68422:             "\x3f\xc6\x18\xe3\x07" }  },
                   68423:       /* --- pixel bitmap for stmary83 char#65 \inplus --- */
                   68424:       {  65, 2056,                      /* character number, location */
                   68425:           7, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   68426:           {  5,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68427:             "\x5c\x84\xf2\x4b\x10\x1c" }  },
                   68428:       /* --- pixel bitmap for stmary83 char#66 \niplus --- */
                   68429:       {  66, 2085,                      /* character number, location */
                   68430:           7, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   68431:           {  5,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68432:             "\x07\x41\xfa\x29\x44\x07" }  },
                   68433:       /* --- pixel bitmap for stmary83 char#67 \nplus --- */
                   68434:       {  67, 2114,                      /* character number, location */
                   68435:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   68436:           {  5,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68437:             "\x2e\xc6\x1a\x63\x04" }  },
                   68438:       /* --- pixel bitmap for stmary83 char#68 \subsetplus --- */
                   68439:       {  68, 2149,                      /* character number, location */
                   68440:           7, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   68441:           {  6,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68442:             "\xbc\x10\x24\x5d\x12\x08\x3c" }  },
                   68443:       /* --- pixel bitmap for stmary83 char#69 \supsetplus --- */
                   68444:       {  69, 2180,                      /* character number, location */
                   68445:           7, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   68446:           {  6,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68447:             "\x0f\x04\x92\x2e\x09\x42\x0f" }  },
                   68448:       /* --- pixel bitmap for stmary83 char#70 \subsetpluseq --- */
                   68449:       {  70, 2211,                      /* character number, location */
                   68450:           7, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   68451:           {  6,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68452:             "\xbc\x10\x24\x5d\x12\x08\x3c\x00\x00\x3f" }  },
                   68453:       /* --- pixel bitmap for stmary83 char#71 \supsetpluseq --- */
                   68454:       {  71, 2246,                      /* character number, location */
                   68455:           7, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   68456:           {  6,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68457:             "\x0f\x04\x92\x2e\x09\x42\x0f\x00\x00\x3f" }  },
                   68458:       /* --- pixel bitmap for stmary83 char#72 \Lbag --- */
                   68459:       {  72, 2281,                      /* character number, location */
                   68460:           9, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   68461:           {  2,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68462:             "\xad\x55\x95" }  },
                   68463:       /* --- pixel bitmap for stmary83 char#73 \Rbag --- */
                   68464:       {  73, 2312,                      /* character number, location */
                   68465:           9, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   68466:           {  2,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68467:             "\x5e\xaa\x6a" }  },
                   68468:       /* --- pixel bitmap for stmary83 char#74 \llbracket --- */
                   68469:       {  74, 2343,                      /* character number, location */
                   68470:           9, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   68471:           {  4,   12, 3, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68472:             "\x04\x0f\x92\x24" }  },
                   68473:       /* --- pixel bitmap for stmary83 char#75 \rrbracket --- */
                   68474:       {  75, 2374,                      /* character number, location */
                   68475:           9, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   68476:           {  3,   12, 3, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68477:             "\x03\xf9\x12\x03" }  },
                   68478:       /* --- pixel bitmap for stmary83 char#76 \llparenthesis --- */
                   68479:       {  76, 2405,                      /* character number, location */
                   68480:           9, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   68481:           {  2,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68482:             "\xfa\xff\xbf\x02" }  },
                   68483:       /* --- pixel bitmap for stmary83 char#77 \rrparenthesis --- */
                   68484:       {  77, 2438,                      /* character number, location */
                   68485:           9, 0,   -4, 0,      /* topleft row,col, and botleft row,col */
                   68486:           {  2,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68487:             "\xf5\xff\x7f\x01" }  },
                   68488:       /* --- pixel bitmap for stmary83 char#78 \binampersand --- */
                   68489:       {  78, 2471,                      /* character number, location */
                   68490:           6, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   68491:           {  6,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68492:             "\x84\xa2\x98\x79\xec\x00" }  },
                   68493:       /* --- pixel bitmap for stmary83 char#79 \bindnasrepma --- */
                   68494:       {  79, 2502,                      /* character number, location */
                   68495:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   68496:           {  6,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68497:             "\xdc\x78\x66\x14\x85\x00" }  },
                   68498:       /* --- pixel bitmap for stmary83 char#80 \trianglelefteqslant --- */
                   68499:       {  80, 2533,                      /* character number, location */
                   68500:           7, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   68501:           {  6,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68502:             "\x20\xcc\x8a\xa1\xc8\xc2\xa1\xc0\x40\x20" }  },
                   68503:       /* --- pixel bitmap for stmary83 char#81 \trianglerighteqslant --- */
                   68504:       {  81, 2578,                      /* character number, location */
                   68505:           7, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   68506:           {  6,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68507:             "\xc1\xd0\x44\x61\xd4\x0c\x21\xc4\x08\x01" }  },
                   68508:       /* --- pixel bitmap for stmary83 char#82 \ntrianglelefteqslant --- */
                   68509:       {  82, 2623,                      /* character number, location */
                   68510:           9, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   68511:           {  6,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68512:             "\x20\x04\xe3\xac\x5a\x9a\xaa\x3c\x1e\x08\x04\x02" }  },
                   68513:       /* --- pixel bitmap for stmary83 char#83 \ntrianglerighteqslant --- */
                   68514:       {  83, 2680,                      /* character number, location */
                   68515:           9, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   68516:           {  6,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68517:             "\x20\x14\x5d\x49\x56\x76\xc7\x30\x66\x84\x10\x00" }  },
                   68518:       /* --- pixel bitmap for stmary83 char#84 \llfloor --- */
                   68519:       {  84, 2735,                      /* character number, location */
                   68520:           9,-4,   -4,-4,      /* topleft row,col, and botleft row,col */
                   68521:           {  9,   13, 3, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68522:             "\xfb\x01\x31\x49" }  },
                   68523:       /* --- pixel bitmap for stmary83 char#85 \rrfloor --- */
                   68524:       {  85, 2792,                      /* character number, location */
                   68525:           9, 0,   -4, 0,      /* topleft row,col, and botleft row,col */
                   68526:           {  9,   13, 3, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68527:             "\xfb\x41\x31\x09" }  },
                   68528:       /* --- pixel bitmap for stmary83 char#86 \llceil --- */
                   68529:       {  86, 2849,                      /* character number, location */
                   68530:           8,-4,   -3,-4,      /* topleft row,col, and botleft row,col */
                   68531:           {  9,   11, 3, 9, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68532:             "\x09\x0f\x91\x31\x43" }  },
                   68533:       /* --- pixel bitmap for stmary83 char#87 \rrceil --- */
                   68534:       {  87, 2898,                      /* character number, location */
                   68535:           8, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   68536:           {  9,   11, 3, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68537:             "\x09\xf9\x41\x31" }  },
                   68538:       /* --- pixel bitmap for stmary83 char#88 \arrownot --- */
                   68539:       {  88, 2947,                      /* character number, location */
                   68540:           5, 3,    1, 3,      /* topleft row,col, and botleft row,col */
                   68541:           {  4,    4, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68542:             "\x48\x12" }  },
                   68543:       /* --- pixel bitmap for stmary83 char#89 \Arrownot --- */
                   68544:       {  89, 2962,                      /* character number, location */
                   68545:           7, 4,   -1, 4,      /* topleft row,col, and botleft row,col */
                   68546:           {  2,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68547:             "\xaa\x55" }  },
                   68548:       /* --- pixel bitmap for stmary83 char#90 \Mapstochar --- */
                   68549:       {  90, 2985,                      /* character number, location */
                   68550:           7, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   68551:           {  1,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68552:             "\xff\x01" }  },
                   68553:       /* --- pixel bitmap for stmary83 char#91 \mapsfromchar --- */
                   68554:       {  91, 3010,                      /* character number, location */
                   68555:           5,-2,    0,-2,      /* topleft row,col, and botleft row,col */
                   68556:           {  1,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68557:             "\x1f" }  },
                   68558:       /* --- pixel bitmap for stmary83 char#92 \Mapsfromchar --- */
                   68559:       {  92, 3046,                      /* character number, location */
                   68560:           7,-2,   -2,-2,      /* topleft row,col, and botleft row,col */
                   68561:           {  1,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68562:             "\xff\x01" }  },
                   68563:       /* --- pixel bitmap for stmary83 char#93 \leftrightarrowtriangle --- */
                   68564:       {  93, 3090,                      /* character number, location */
                   68565:           4, 1,    1, 1,      /* topleft row,col, and botleft row,col */
                   68566:           {  8,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68567:             "\x7e\x99\x7e" }  },
                   68568:       /* --- pixel bitmap for stmary83 char#94 \leftarrowtriangle --- */
                   68569:       {  94, 3107,                      /* character number, location */
                   68570:           4, 1,    1, 1,      /* topleft row,col, and botleft row,col */
                   68571:           {  8,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68572:             "\x06\xfd\x06" }  },
                   68573:       /* --- pixel bitmap for stmary83 char#95 \rightarrowtriangle --- */
                   68574:       {  95, 3122,                      /* character number, location */
                   68575:           4, 1,    1, 1,      /* topleft row,col, and botleft row,col */
                   68576:           {  8,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68577:             "\x60\xbf\x60" }  },
                   68578:       /* --- pixel bitmap for stmary83 char#96 \bigtriangledown --- */
                   68579:       {  96, 3137,                      /* character number, location */
                   68580:           0, 1,  -11, 1,      /* topleft row,col, and botleft row,col */
                   68581:           {  7,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68582:             "\xff\xa0\x48\x24\x12\x51\x28\x14\x04\x02" }  },
                   68583:       /* --- pixel bitmap for stmary83 char#97 \bigtriangleup --- */
                   68584:       {  97, 3201,                      /* character number, location */
                   68585:           0, 1,  -11, 1,      /* topleft row,col, and botleft row,col */
                   68586:           {  7,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68587:             "\x08\x04\x85\x42\x11\x89\x44\xa2\xe0\x1f" }  },
                   68588:       /* --- pixel bitmap for stmary83 char#98 \bigcurlyvee --- */
                   68589:       {  98, 3265,                      /* character number, location */
                   68590:           0, 1,  -11, 1,      /* topleft row,col, and botleft row,col */
                   68591:           {  7,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68592:             "\x41\x11\x85\x82\x40\x20\x10\x08\x04\x02" }  },
                   68593:       /* --- pixel bitmap for stmary83 char#99 \bigcurlywedge --- */
                   68594:       {  99, 3321,                      /* character number, location */
                   68595:           0, 1,  -11, 1,      /* topleft row,col, and botleft row,col */
                   68596:           {  7,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68597:             "\x08\x04\x02\x81\x40\x20\x28\x14\x51\x10" }  },
                   68598:       /* --- pixel bitmap for stmary83 char#100 \bigsqcap --- */
                   68599:       { 100, 3377,                      /* character number, location */
                   68600:           0, 1,  -11, 1,      /* topleft row,col, and botleft row,col */
                   68601:           {  7,   11, 3, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68602:             "\x07\x0f\x91\x51" }  },
                   68603:       /* --- pixel bitmap for stmary83 char#101 \bigbox --- */
                   68604:       { 101, 3445,                      /* character number, location */
                   68605:           0, 1,  -11, 1,      /* topleft row,col, and botleft row,col */
                   68606:           {  7,   11, 3,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68607:             "\x07\x0f\x81\x51\x07" }  },
                   68608:       /* --- pixel bitmap for stmary83 char#102 \bigparallel --- */
                   68609:       { 102, 3511,                      /* character number, location */
                   68610:           0, 1,  -11, 1,      /* topleft row,col, and botleft row,col */
                   68611:           {  2,   11, 3, 4, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68612:             "\xfa\x02" }  },
                   68613:       /* --- pixel bitmap for stmary83 char#103 \biginterleave --- */
                   68614:       { 103, 3559,                      /* character number, location */
                   68615:           0, 1,  -11, 1,      /* topleft row,col, and botleft row,col */
                   68616:           {  5,   11, 3, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68617:             "\xfa\x01\x11\x11" }  },
                   68618:       /* --- pixel bitmap for stmary83 char#104 (noname) --- */
                   68619:       { 104, 3651,                      /* character number, location */
                   68620:           0, 1,  -16, 1,      /* topleft row,col, and botleft row,col */
                   68621:           { 10,   16, 3,37, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68622:             "\x0b\x81\xf3\x11\x61\x10\xf2\x21\x41\x20\xf2\x31\x21"
                   68623:             "\x30\xf2\x42\x40\x51\x42" }  },
                   68624:       /* --- pixel bitmap for stmary83 char#105 (noname) --- */
                   68625:       { 105, 3731,                      /* character number, location */
                   68626:           0, 1,  -16, 1,      /* topleft row,col, and botleft row,col */
                   68627:           { 10,   16, 3,36, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68628:             "\x51\x40\xf2\x42\x40\xf2\x31\x21\x30\xf2\x21\x41\x20"
                   68629:             "\xf3\x11\x61\x11\x8b" }  },
                   68630:       /* --- pixel bitmap for stmary83 char#106 (noname) --- */
                   68631:       { 106, 3811,                      /* character number, location */
                   68632:           0, 1,  -16, 1,      /* topleft row,col, and botleft row,col */
                   68633:           { 10,   16, 3,31, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68634:             "\x01\x81\x11\x61\x31\x41\x20\xf1\x31\x21\x30\xf9\x42"
                   68635:             "\x40\x51\x41" }  },
                   68636:       /* --- pixel bitmap for stmary83 char#107 (noname) --- */
                   68637:       { 107, 3879,                      /* character number, location */
                   68638:           0, 1,  -16, 1,      /* topleft row,col, and botleft row,col */
                   68639:           { 10,   16, 3,30, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68640:             "\x51\x40\xf9\x42\x40\xf1\x31\x21\x30\x21\x41\x31\x61"
                   68641:             "\x11\x81" }  },
                   68642:       /* --- pixel bitmap for stmary83 char#108 (noname) --- */
                   68643:       { 108, 3947,                      /* character number, location */
                   68644:           0, 1,  -16, 1,      /* topleft row,col, and botleft row,col */
                   68645:           { 10,   16, 3, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68646:             "\x0a\x0f\xe1\x81" }  },
                   68647:       /* --- pixel bitmap for stmary83 char#109 (noname) --- */
                   68648:       { 109, 4035,                      /* character number, location */
                   68649:           0, 1,  -16, 1,      /* topleft row,col, and botleft row,col */
                   68650:           { 10,   16, 3,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68651:             "\x0a\x0f\xd1\x81\x0a" }  },
                   68652:       /* --- pixel bitmap for stmary83 char#110 (noname) --- */
                   68653:       { 110, 4121,                      /* character number, location */
                   68654:           0, 1,  -16, 1,      /* topleft row,col, and botleft row,col */
                   68655:           {  3,   16, 3,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68656:             "\xfe\x01\x11\x01\x11" }  },
                   68657:       /* --- pixel bitmap for stmary83 char#111 (noname) --- */
                   68658:       { 111, 4211,                      /* character number, location */
                   68659:           0, 1,  -16, 1,      /* topleft row,col, and botleft row,col */
                   68660:           {  9,   16, 3,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68661:             "\xfe\x01\x31\x31\x01\x31\x31" }  },
                   68662:       /* --- pixel bitmap for stmary83 char#112 \bignplus --- */
                   68663:       { 112, 4333,                      /* character number, location */
                   68664:           0, 1,  -11, 1,      /* topleft row,col, and botleft row,col */
                   68665:           {  7,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68666:             "\x1c\x51\x30\x98\xec\x26\x83\xc1\x60\x10" }  },
                   68667:       /* --- pixel bitmap for stmary83 char#113 (noname) --- */
                   68668:       { 113, 4407,                      /* character number, location */
                   68669:           0, 2,  -12, 2,      /* topleft row,col, and botleft row,col */
                   68670:           {  3,   12, 3, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68671:             "\x03\x0f\x92\x13" }  },
                   68672:       /* --- pixel bitmap for stmary83 char#114 (noname) --- */
                   68673:       { 114, 4457,                      /* character number, location */
                   68674:           0, 2,  -19, 2,      /* topleft row,col, and botleft row,col */
                   68675:           {  4,   19, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68676:             "\x04\x0f\xe1\x11\x1f\x11\x11\x14" }  },
                   68677:       /* --- pixel bitmap for stmary83 char#115 (noname) --- */
                   68678:       { 115, 4555,                      /* character number, location */
                   68679:           0, 3,  -26, 3,      /* topleft row,col, and botleft row,col */
                   68680:           {  3,   26, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68681:             "\x03\x0f\xe2\x1f\x82\x13" }  },
                   68682:       /* --- pixel bitmap for stmary83 char#116 (noname) --- */
                   68683:       { 116, 4633,                      /* character number, location */
                   68684:           0, 3,  -33, 3,      /* topleft row,col, and botleft row,col */
                   68685:           {  4,   33, 3,20, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68686:             "\x04\x0f\xe1\x11\x1f\xe1\x11\x11\x11\x14" }  },
                   68687:       /* --- pixel bitmap for stmary83 char#117 (noname) --- */
                   68688:       { 117, 4787,                      /* character number, location */
                   68689:          -1, 4,  -20, 4,      /* topleft row,col, and botleft row,col */
                   68690:           {  4,   19, 3,15, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68691:             "\x04\x0f\xe1\x11\x1f\x21\x11\x11" }  },
                   68692:       /* --- pixel bitmap for stmary83 char#118 (noname) --- */
                   68693:       { 118, 4887,                      /* character number, location */
                   68694:           0, 4,  -19, 4,      /* topleft row,col, and botleft row,col */
                   68695:           {  4,   19, 3,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68696:             "\xfe\x01\x11\x1f\x21\x11\x14" }  },
                   68697:       /* --- pixel bitmap for stmary83 char#119 (noname) --- */
                   68698:       { 119, 4987,                      /* character number, location */
                   68699:           1, 4,   -8, 4,      /* topleft row,col, and botleft row,col */
                   68700:           {  3,    9, 3, 6, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68701:             "\xf8\x01\x11" }  },
                   68702:       /* --- pixel bitmap for stmary83 char#120 (noname) --- */
                   68703:       { 120, 5030,                      /* character number, location */
                   68704:           0, 1,  -16, 1,      /* topleft row,col, and botleft row,col */
                   68705:           { 10,   16, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68706:             "\x78\x10\x22\x50\x80\x01\x06\x18\x62\x88\xfd\x86\x18"
                   68707:             "\x62\x80\x01\x06\x18\x60\x80" }  },
                   68708:       /* --- pixel bitmap for stmary83 char#121 (noname) --- */
                   68709:       { 121, 5128,                      /* character number, location */
                   68710:           0, 0,  -12, 0,      /* topleft row,col, and botleft row,col */
                   68711:           {  3,   12, 3, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68712:             "\x03\xf9\x12\x03" }  },
                   68713:       /* --- pixel bitmap for stmary83 char#122 (noname) --- */
                   68714:       { 122, 5178,                      /* character number, location */
                   68715:           0, 0,  -19, 0,      /* topleft row,col, and botleft row,col */
                   68716:           {  4,   19, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68717:             "\x04\xfe\x11\x11\xf1\x11\x11\x04" }  },
                   68718:       /* --- pixel bitmap for stmary83 char#123 (noname) --- */
                   68719:       { 123, 5276,                      /* character number, location */
                   68720:           0, 0,  -26, 0,      /* topleft row,col, and botleft row,col */
                   68721:           {  3,   26, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68722:             "\x03\xfe\x12\xf8\x12\x03" }  },
                   68723:       /* --- pixel bitmap for stmary83 char#124 (noname) --- */
                   68724:       { 124, 5354,                      /* character number, location */
                   68725:           0, 0,  -33, 0,      /* topleft row,col, and botleft row,col */
                   68726:           {  4,   33, 3,18, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68727:             "\x04\xfe\x11\x11\xfe\x11\x11\x11\x15" }  },
                   68728:       /* --- pixel bitmap for stmary83 char#125 (noname) --- */
                   68729:       { 125, 5508,                      /* character number, location */
                   68730:          -1, 0,  -20, 0,      /* topleft row,col, and botleft row,col */
                   68731:           {  4,   19, 3,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68732:             "\x04\xfe\x11\x11\xf2\x11\x11" }  },
                   68733:       /* --- pixel bitmap for stmary83 char#126 (noname) --- */
                   68734:       { 126, 5608,                      /* character number, location */
                   68735:           0, 0,  -19, 0,      /* topleft row,col, and botleft row,col */
                   68736:           {  4,   19, 3,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68737:             "\xfe\x11\x11\xf2\x11\x11\x04" }  },
                   68738:       /* --- pixel bitmap for stmary83 char#127 (noname) --- */
                   68739:       { 127, 5708,                      /* character number, location */
                   68740:           1, 1,   -8, 1,      /* topleft row,col, and botleft row,col */
                   68741:           {  3,    9, 3, 6, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68742:             "\xf8\x01\x11" }  },
                   68743:       /* --- trailer  --- */
                   68744:       { -99, -999,  0,0,0,0, { 0,0,0,0, (pixbyte *)"\0" }  }
                   68745:    } ;
                   68746: 
                   68747: 
                   68748: /* --- size=1 for .100gf ---
                   68749:  * mf '\mode=preview; mag=magstep(-17.87427405946994351363); input stmary10'
                   68750:  * --------------------------------------------------------------------- */
                   68751: /* --- fontdef for stmary100 --- */
                   68752: static	chardef  stmary100[] =
                   68753:    {
                   68754:       /* --- pixel bitmap for stmary100 char#0 \shortleftarrow --- */
                   68755:       {   0,  922,                      /* character number, location */
                   68756:           6, 1,    1, 1,      /* topleft row,col, and botleft row,col */
                   68757:           {  9,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68758:             "\x04\x04\xfc\x17\x40\x00" }  },
                   68759:       /* --- pixel bitmap for stmary100 char#1 \shortrightarrow --- */
                   68760:       {   1, 1827,                      /* character number, location */
                   68761:           6, 1,    1, 1,      /* topleft row,col, and botleft row,col */
                   68762:           {  9,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68763:             "\x40\x00\xfd\x07\x04\x04" }  },
                   68764:       /* --- pixel bitmap for stmary100 char#2 \shortuparrow --- */
                   68765:       {   2, 2592,                      /* character number, location */
                   68766:           8, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   68767:           {  5,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68768:             "\xc4\x55\x42\x08\x21\x04" }  },
                   68769:       /* --- pixel bitmap for stmary100 char#3 \shortdownarrow --- */
                   68770:       {   3, 3371,                      /* character number, location */
                   68771:           8, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   68772:           {  5,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68773:             "\x84\x10\x42\x48\x75\x04" }  },
                   68774:       /* --- pixel bitmap for stmary100 char#4 \Yup --- */
                   68775:       {   4, 3930,                      /* character number, location */
                   68776:           7, 1,    1, 1,      /* topleft row,col, and botleft row,col */
                   68777:           {  6,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68778:             "\x08\x82\x30\x52\x08" }  },
                   68779:       /* --- pixel bitmap for stmary100 char#5 \Ydown --- */
                   68780:       {   5, 4471,                      /* character number, location */
                   68781:           6, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   68782:           {  6,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68783:             "\xa1\xc4\x20\x08\x02" }  },
                   68784:       /* --- pixel bitmap for stmary100 char#6 \Yleft --- */
                   68785:       {   6, 5053,                      /* character number, location */
                   68786:           6, 1,    1, 1,      /* topleft row,col, and botleft row,col */
                   68787:           {  6,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68788:             "\xa0\x87\x40\x20" }  },
                   68789:       /* --- pixel bitmap for stmary100 char#7 \Yright --- */
                   68790:       {   7, 5630,                      /* character number, location */
                   68791:           6, 1,    1, 1,      /* topleft row,col, and botleft row,col */
                   68792:           {  6,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68793:             "\x81\x4f\x08\x01" }  },
                   68794:       /* --- pixel bitmap for stmary100 char#8 \varcurlyvee --- */
                   68795:       {   8, 6223,                      /* character number, location */
                   68796:          10, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   68797:           {  9,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68798:             "\x01\x05\x11\x21\x82\x02\x05\x0a\x08\x10\x20\x40\x80"
                   68799:             "\x00\x01" }  },
                   68800:       /* --- pixel bitmap for stmary100 char#9 \varcurlywedge --- */
                   68801:       {   9, 6858,                      /* character number, location */
                   68802:          10, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   68803:           {  9,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68804:             "\x10\x20\x40\x80\x00\x01\x02\x0a\x14\x28\x88\x10\x11"
                   68805:             "\x14\x10" }  },
                   68806:       /* --- pixel bitmap for stmary100 char#10 \minuso --- */
                   68807:       {  10, 7621,                      /* character number, location */
                   68808:           6, 1,    1, 1,      /* topleft row,col, and botleft row,col */
                   68809:           {  9,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68810:             "\x38\x88\xfc\x27\x82\x03" }  },
                   68811:       /* --- pixel bitmap for stmary100 char#11 \baro --- */
                   68812:       {  11, 8255,                      /* character number, location */
                   68813:           8, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   68814:           {  6,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68815:             "\x08\xe2\xa5\x69\xea\x21\x08" }  },
                   68816:       /* --- pixel bitmap for stmary100 char#12 \sslash --- */
                   68817:       {  12, 8875,                      /* character number, location */
                   68818:          10, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   68819:           {  7,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68820:             "\x50\x28\x0a\x85\xa2\x50\x28\x0a\x85\xa2\x50\x00" }  },
                   68821:       /* --- pixel bitmap for stmary100 char#13 \bblash --- */
                   68822:       {  13, 9518,                      /* character number, location */
                   68823:          10, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   68824:           {  7,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68825:             "\x85\x82\x42\xa1\xa0\x50\x28\x28\x14\x0a\x0a\x05" }  },
                   68826:       /* --- pixel bitmap for stmary100 char#14 \moo --- */
                   68827:       {  14,10275,                      /* character number, location */
                   68828:           7, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   68829:           {  7,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68830:             "\x08\x04\xe2\x8f\x48\xda\x00" }  },
                   68831:       /* --- pixel bitmap for stmary100 char#15 \varotimes --- */
                   68832:       {  15,11006,                      /* character number, location */
                   68833:           8, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   68834:           {  9,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68835:             "\x38\x8c\x19\x4b\x19\x31\xa5\x31\x63\x38\x00" }  },
                   68836:       /* --- pixel bitmap for stmary100 char#16 \varoast --- */
                   68837:       {  16,11884,                      /* character number, location */
                   68838:           8, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   68839:           {  9,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68840:             "\x38\x8c\x49\xea\x9b\xb3\xaf\x24\x63\x38\x00" }  },
                   68841:       /* --- pixel bitmap for stmary100 char#17 \varobar --- */
                   68842:       {  17,12635,                      /* character number, location */
                   68843:           8, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   68844:           {  9,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68845:             "\x38\xac\x49\x8a\x18\x31\xa2\x24\x6b\x38\x00" }  },
                   68846:       /* --- pixel bitmap for stmary100 char#18 \varodot --- */
                   68847:       {  18,13381,                      /* character number, location */
                   68848:           8, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   68849:           {  9,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68850:             "\x38\x8c\x09\x0a\x18\x31\xa0\x20\x63\x38\x00" }  },
                   68851:       /* --- pixel bitmap for stmary100 char#19 \varoslash --- */
                   68852:       {  19,14126,                      /* character number, location */
                   68853:           8, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   68854:           {  9,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68855:             "\x38\x8c\x09\x0b\x19\x31\xa1\x21\x63\x38\x00" }  },
                   68856:       /* --- pixel bitmap for stmary100 char#20 \varobslash --- */
                   68857:       {  20,14879,                      /* character number, location */
                   68858:           8, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   68859:           {  9,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68860:             "\x38\x8c\x19\x4a\x18\x31\xa4\x30\x63\x38\x00" }  },
                   68861:       /* --- pixel bitmap for stmary100 char#21 \varocircle --- */
                   68862:       {  21,15771,                      /* character number, location */
                   68863:           8, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   68864:           {  9,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68865:             "\x38\x8c\xe9\x2a\x5a\xb4\xa8\x2e\x63\x38\x00" }  },
                   68866:       /* --- pixel bitmap for stmary100 char#22 \varoplus --- */
                   68867:       {  22,16529,                      /* character number, location */
                   68868:           8, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   68869:           {  9,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68870:             "\x38\xac\x49\x8a\xf8\x3f\xa2\x24\x6b\x38\x00" }  },
                   68871:       /* --- pixel bitmap for stmary100 char#23 \varominus --- */
                   68872:       {  23,17282,                      /* character number, location */
                   68873:           8, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   68874:           {  9,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68875:             "\x38\x8c\x09\x0a\xf8\x3f\xa0\x20\x63\x38\x00" }  },
                   68876:       /* --- pixel bitmap for stmary100 char#24 \boxast --- */
                   68877:       {  24,18071,                      /* character number, location */
                   68878:           8, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   68879:           {  9,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68880:             "\xff\x03\x46\xec\x9b\xb3\x6f\xc4\x80\xff\x01" }  },
                   68881:       /* --- pixel bitmap for stmary100 char#25 \boxbar --- */
                   68882:       {  25,18750,                      /* character number, location */
                   68883:           8, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   68884:           {  9,    9, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68885:             "\x09\x0f\x61\x31\x31\x09" }  },
                   68886:       /* --- pixel bitmap for stmary100 char#26 \boxdot --- */
                   68887:       {  26,19433,                      /* character number, location */
                   68888:           8, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   68889:           {  9,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68890:             "\xff\x03\x06\x0c\x18\x31\x60\xc0\x80\xff\x01" }  },
                   68891:       /* --- pixel bitmap for stmary100 char#27 \boxslash --- */
                   68892:       {  27,20106,                      /* character number, location */
                   68893:           8, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   68894:           {  9,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68895:             "\xff\x03\x07\x0d\x19\x31\x61\xc1\x81\xff\x01" }  },
                   68896:       /* --- pixel bitmap for stmary100 char#28 \boxbslash --- */
                   68897:       {  28,20788,                      /* character number, location */
                   68898:           8, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   68899:           {  9,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68900:             "\xff\x07\x16\x4c\x18\x31\x64\xd0\xc0\xff\x01" }  },
                   68901:       /* --- pixel bitmap for stmary100 char#29 \boxcircle --- */
                   68902:       {  29,21448,                      /* character number, location */
                   68903:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   68904:           {  8,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68905:             "\xff\x81\x99\xa5\xa5\x99\x81\xff" }  },
                   68906:       /* --- pixel bitmap for stmary100 char#30 \boxbox --- */
                   68907:       {  30,22125,                      /* character number, location */
                   68908:           8, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   68909:           {  9,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68910:             "\xff\x03\xe6\x2c\x5a\xb4\x68\xce\x80\xff\x01" }  },
                   68911:       /* --- pixel bitmap for stmary100 char#31 \boxempty --- */
                   68912:       {  31,22806,                      /* character number, location */
                   68913:           8, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   68914:           {  9,    9, 3,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68915:             "\x09\x0f\x61\x71\x09" }  },
                   68916:       /* --- pixel bitmap for stmary100 char#32 \lightning --- */
                   68917:       {  32,23649,                      /* character number, location */
                   68918:          10, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   68919:           {  5,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68920:             "\x10\x21\x44\x38\x45\x08\x1d\x4f\x00" }  },
                   68921:       /* --- pixel bitmap for stmary100 char#33 \merge --- */
                   68922:       {  33,24392,                      /* character number, location */
                   68923:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   68924:           { 10,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68925:             "\x48\x30\x43\x0b\x2d\xb4\xc8\x24\x93\x4c\x49\x26\x09" }  },
                   68926:       /* --- pixel bitmap for stmary100 char#34 \vartimes --- */
                   68927:       {  34,24995,                      /* character number, location */
                   68928:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   68929:           {  6,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68930:             "\xa1\x24\x31\x0c\xc3\x48\x52\x08" }  },
                   68931:       /* --- pixel bitmap for stmary100 char#35 \fatsemi --- */
                   68932:       {  35,25528,                      /* character number, location */
                   68933:           8, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   68934:           {  3,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68935:             "\xaa\x00\xd5\x94\x00" }  },
                   68936:       /* --- pixel bitmap for stmary100 char#36 \sswarrow --- */
                   68937:       {  36,26367,                      /* character number, location */
                   68938:          10, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   68939:           {  7,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68940:             "\x40\x20\x08\x04\x82\x40\x30\x08\xc4\xc1\x43\x00" }  },
                   68941:       /* --- pixel bitmap for stmary100 char#37 \ssearrow --- */
                   68942:       {  37,27208,                      /* character number, location */
                   68943:          10, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   68944:           {  7,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68945:             "\x81\x80\x40\x20\x20\x10\x18\x08\x04\x9c\x07\x01" }  },
                   68946:       /* --- pixel bitmap for stmary100 char#38 \curlywedgeuparrow --- */
                   68947:       {  38,28160,                      /* character number, location */
                   68948:          10, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   68949:           {  9,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68950:             "\x10\x20\xf0\x81\x00\x01\x02\x0a\x14\x28\x88\x10\x11"
                   68951:             "\x14\x10" }  },
                   68952:       /* --- pixel bitmap for stmary100 char#39 \curlywedgedownarrow --- */
                   68953:       {  39,29128,                      /* character number, location */
                   68954:          10, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   68955:           {  9,   13, 3,28, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68956:             "\xf5\x41\x40\xf2\x31\x11\x3f\x11\x11\x31\x11\x02\x55"
                   68957:             "\x33" }  },
                   68958:       /* --- pixel bitmap for stmary100 char#40 \fatslash --- */
                   68959:       {  40,29750,                      /* character number, location */
                   68960:          10, 4,   -3, 4,      /* topleft row,col, and botleft row,col */
                   68961:           {  8,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68962:             "\xf0\x90\x88\x48\x48\x44\x24\x24\x22\x12\x12\x11\x0f" }  },
                   68963:       /* --- pixel bitmap for stmary100 char#41 \fatbslash --- */
                   68964:       {  41,30380,                      /* character number, location */
                   68965:          10, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   68966:           {  8,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68967:             "\x0f\x09\x12\x12\x12\x24\x24\x24\x48\x48\x48\x90\xf0" }  },
                   68968:       /* --- pixel bitmap for stmary100 char#42 \lbag --- */
                   68969:       {  42,30909,                      /* character number, location */
                   68970:          10, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   68971:           {  4,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68972:             "\x53\x44\x24\x22\x22\x22\x0c" }  },
                   68973:       /* --- pixel bitmap for stmary100 char#43 \rbag --- */
                   68974:       {  43,31419,                      /* character number, location */
                   68975:          10, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   68976:           {  4,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68977:             "\xac\x22\x42\x44\x44\x44\x03" }  },
                   68978:       /* --- pixel bitmap for stmary100 char#44 \varbigcirc --- */
                   68979:       {  44,32267,                      /* character number, location */
                   68980:          10, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   68981:           { 12,   12, 3,27, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68982:             "\x36\x51\x61\x31\x81\x1f\x51\xa1\x11\x81\x31\x61\x56"
                   68983:             "\x31" }  },
                   68984:       /* --- pixel bitmap for stmary100 char#45 \leftrightarroweq --- */
                   68985:       {  45,33245,                      /* character number, location */
                   68986:           8, 1,    1, 1,      /* topleft row,col, and botleft row,col */
                   68987:           {  9,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68988:             "\x44\x04\xfd\x17\x44\x04\xc0\x7f" }  },
                   68989:       /* --- pixel bitmap for stmary100 char#46 \curlyveedownarrow --- */
                   68990:       {  46,33813,                      /* character number, location */
                   68991:          10, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   68992:           {  9,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68993:             "\x01\x05\x11\x21\x82\x02\x05\x0a\x08\x10\x20\xf0\x81"
                   68994:             "\x00\x01" }  },
                   68995:       /* --- pixel bitmap for stmary100 char#47 \curlyveeuparrow --- */
                   68996:       {  47,34401,                      /* character number, location */
                   68997:          10, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   68998:           {  9,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   68999:             "\xc7\x07\x17\x2d\x8a\x02\x05\x0a\x08\x10\x20\x40\x80"
                   69000:             "\x00\x01" }  },
                   69001:       /* --- pixel bitmap for stmary100 char#48 \nnwarrow --- */
                   69002:       {  48,34952,                      /* character number, location */
                   69003:          10, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   69004:           {  7,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69005:             "\x04\xcf\x01\x81\xc0\x40\x20\x20\x10\x08\x08\x04" }  },
                   69006:       /* --- pixel bitmap for stmary100 char#49 \nnearrow --- */
                   69007:       {  49,35481,                      /* character number, location */
                   69008:          10, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   69009:           {  7,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69010:             "\x10\x1e\x1c\x81\x60\x10\x08\x02\x81\x20\x10\x00" }  },
                   69011:       /* --- pixel bitmap for stmary100 char#50 \leftslice --- */
                   69012:       {  50,36198,                      /* character number, location */
                   69013:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   69014:           {  9,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69015:             "\x80\xe0\x31\x1c\xc8\x10\x1e\x20" }  },
                   69016:       /* --- pixel bitmap for stmary100 char#51 \rightslice --- */
                   69017:       {  51,36910,                      /* character number, location */
                   69018:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   69019:           {  9,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69020:             "\x02\x3c\x84\x09\x1c\xc6\x83\x00" }  },
                   69021:       /* --- pixel bitmap for stmary100 char#52 \varolessthan --- */
                   69022:       {  52,37644,                      /* character number, location */
                   69023:           8, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   69024:           {  9,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69025:             "\x38\x8c\xc9\x6b\x38\xb0\xa1\x3c\x63\x38\x00" }  },
                   69026:       /* --- pixel bitmap for stmary100 char#53 \varogreaterthan --- */
                   69027:       {  53,38397,                      /* character number, location */
                   69028:           8, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   69029:           {  9,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69030:             "\x38\x8c\x79\x0a\x1b\x38\xac\x27\x63\x38\x00" }  },
                   69031:       /* --- pixel bitmap for stmary100 char#54 \varovee --- */
                   69032:       {  54,39142,                      /* character number, location */
                   69033:           8, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   69034:           {  9,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69035:             "\x38\x8c\x19\x2b\x5a\x34\xa5\x2a\x6b\x38\x00" }  },
                   69036:       /* --- pixel bitmap for stmary100 char#55 \varowedge --- */
                   69037:       {  55,39903,                      /* character number, location */
                   69038:           8, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   69039:           {  9,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69040:             "\x38\xac\xa9\x4a\x59\xb4\xa8\x31\x63\x38\x00" }  },
                   69041:       /* --- pixel bitmap for stmary100 char#56 \talloblong --- */
                   69042:       {  56,40480,                      /* character number, location */
                   69043:          10, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   69044:           {  5,   13, 3,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69045:             "\x05\x0f\xa1\x31\x05" }  },
                   69046:       /* --- pixel bitmap for stmary100 char#57 \interleave --- */
                   69047:       {  57,41188,                      /* character number, location */
                   69048:          10, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   69049:           {  9,   13, 3, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69050:             "\xfc\x01\x31\x31" }  },
                   69051:       /* --- pixel bitmap for stmary100 char#58 \obar --- */
                   69052:       {  58,41966,                      /* character number, location */
                   69053:           8, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   69054:           {  9,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69055:             "\x7c\x24\x45\x8c\x18\x31\x62\x44\x49\x7c\x00" }  },
                   69056:       /* --- pixel bitmap for stmary100 char#59 \oslash --- */
                   69057:       {  59,42718,                      /* character number, location */
                   69058:           8, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   69059:           {  9,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69060:             "\x7c\x04\x15\x4c\x18\x31\x64\x50\x41\x7c\x00" }  },
                   69061:       /* --- pixel bitmap for stmary100 char#60 \olessthan --- */
                   69062:       {  60,43465,                      /* character number, location */
                   69063:           8, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   69064:           {  9,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69065:             "\x7c\x04\xc5\x6d\x38\xb0\x61\x5c\x41\x7c\x00" }  },
                   69066:       /* --- pixel bitmap for stmary100 char#61 \ogreaterthan --- */
                   69067:       {  61,44213,                      /* character number, location */
                   69068:           8, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   69069:           {  9,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69070:             "\x7c\x04\x75\x0c\x1b\x38\x6c\x47\x41\x7c\x00" }  },
                   69071:       /* --- pixel bitmap for stmary100 char#62 \ovee --- */
                   69072:       {  62,44953,                      /* character number, location */
                   69073:           8, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   69074:           {  9,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69075:             "\x7c\x04\x15\x2d\x5a\x34\x65\x4a\x49\x7c\x00" }  },
                   69076:       /* --- pixel bitmap for stmary100 char#63 \owedge --- */
                   69077:       {  63,45709,                      /* character number, location */
                   69078:           8, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   69079:           {  9,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69080:             "\x7c\x24\xa5\x4c\x59\xb4\x68\x51\x41\x7c\x00" }  },
                   69081:       /* --- pixel bitmap for stmary100 char#64 \oblong --- */
                   69082:       {  64,46353,                      /* character number, location */
                   69083:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   69084:           {  7,    9, 3,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69085:             "\x07\x0f\x61\x51\x07" }  },
                   69086:       /* --- pixel bitmap for stmary100 char#65 \inplus --- */
                   69087:       {  65,47032,                      /* character number, location */
                   69088:           8, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   69089:           {  7,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69090:             "\x7c\x41\x20\xf1\x4f\x04\x04\x7c" }  },
                   69091:       /* --- pixel bitmap for stmary100 char#66 \niplus --- */
                   69092:       {  66,47710,                      /* character number, location */
                   69093:           8, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   69094:           {  7,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69095:             "\x1f\x10\x10\xf9\x47\x02\x41\x1f" }  },
                   69096:       /* --- pixel bitmap for stmary100 char#67 \nplus --- */
                   69097:       {  67,48392,                      /* character number, location */
                   69098:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   69099:           {  7,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69100:             "\x1c\x51\x30\xd9\x4d\x06\x83\x41" }  },
                   69101:       /* --- pixel bitmap for stmary100 char#68 \subsetplus --- */
                   69102:       {  68,49150,                      /* character number, location */
                   69103:           8, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   69104:           {  9,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69105:             "\xfc\x05\x04\x08\x11\x27\x44\x00\x01\xfc\x01" }  },
                   69106:       /* --- pixel bitmap for stmary100 char#69 \supsetplus --- */
                   69107:       {  69,49894,                      /* character number, location */
                   69108:           8, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   69109:           {  9,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69110:             "\x7f\x00\x01\x44\xc8\x11\x21\x40\x40\x7f\x00" }  },
                   69111:       /* --- pixel bitmap for stmary100 char#70 \subsetpluseq --- */
                   69112:       {  70,50656,                      /* character number, location */
                   69113:           9, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   69114:           {  9,   13, 3,28, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69115:             "\x27\x11\x71\x81\x41\x31\x33\x21\x41\x31\x91\x97\xf2"
                   69116:             "\x99" }  },
                   69117:       /* --- pixel bitmap for stmary100 char#71 \supsetpluseq --- */
                   69118:       {  71,51424,                      /* character number, location */
                   69119:           9, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   69120:           {  9,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69121:             "\x7f\x00\x01\x44\xc8\x11\x21\x40\x40\x7f\x00\x00\x00"
                   69122:             "\xf0\x1f" }  },
                   69123:       /* --- pixel bitmap for stmary100 char#72 \Lbag --- */
                   69124:       {  72,52155,                      /* character number, location */
                   69125:          10, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   69126:           {  4,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69127:             "\x52\x44\x22\x12\x11\x21\x0c" }  },
                   69128:       /* --- pixel bitmap for stmary100 char#73 \Rbag --- */
                   69129:       {  73,52605,                      /* character number, location */
                   69130:          10, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   69131:           {  4,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69132:             "\xa4\x22\x44\x84\x88\x48\x03" }  },
                   69133:       /* --- pixel bitmap for stmary100 char#74 \llbracket --- */
                   69134:       {  74,53438,                      /* character number, location */
                   69135:          10, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   69136:           {  5,   13, 3, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69137:             "\x05\x0f\xa2\x35" }  },
                   69138:       /* --- pixel bitmap for stmary100 char#75 \rrbracket --- */
                   69139:       {  75,54270,                      /* character number, location */
                   69140:          10, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   69141:           {  4,   13, 3, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69142:             "\x04\xfa\x22\x04" }  },
                   69143:       /* --- pixel bitmap for stmary100 char#76 \llparenthesis --- */
                   69144:       {  76,54934,                      /* character number, location */
                   69145:          10, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   69146:           {  3,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69147:             "\xb4\xdb\xb6\xad\x4d" }  },
                   69148:       /* --- pixel bitmap for stmary100 char#77 \rrparenthesis --- */
                   69149:       {  77,55613,                      /* character number, location */
                   69150:          10, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   69151:           {  3,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69152:             "\xd9\xda\xb6\xed\x16" }  },
                   69153:       /* --- pixel bitmap for stmary100 char#78 \binampersand --- */
                   69154:       {  78,56348,                      /* character number, location */
                   69155:           8, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   69156:           {  9,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69157:             "\x38\x88\x10\x21\xc1\x51\x62\xb8\x70\x1e\x01" }  },
                   69158:       /* --- pixel bitmap for stmary100 char#79 \bindnasrepma --- */
                   69159:       {  79,56989,                      /* character number, location */
                   69160:           8, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   69161:           {  9,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69162:             "\xf1\x1c\x3a\x8c\x14\x07\x09\x11\x22\x38\x00" }  },
                   69163:       /* --- pixel bitmap for stmary100 char#80 \trianglelefteqslant --- */
                   69164:       {  80,57705,                      /* character number, location */
                   69165:           9, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   69166:           {  9,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69167:             "\x00\x81\xc3\x64\x38\xd0\x20\x46\xb0\x81\x0d\x60\x00"
                   69168:             "\x03\x18" }  },
                   69169:       /* --- pixel bitmap for stmary100 char#81 \trianglerighteqslant --- */
                   69170:       {  81,58428,                      /* character number, location */
                   69171:           9, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   69172:           {  9,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69173:             "\x01\x0e\x64\x08\x13\x38\x58\x8c\x06\x03\x81\xc1\x60"
                   69174:             "\x30\x00" }  },
                   69175:       /* --- pixel bitmap for stmary100 char#82 \ntrianglelefteqslant --- */
                   69176:       {  82,59197,                      /* character number, location */
                   69177:          11, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   69178:           {  9,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69179:             "\x80\x00\x01\x05\x0e\x93\xe5\x44\x8b\x18\xd1\x26\x36"
                   69180:             "\xc0\x41\x8c\x60" }  },
                   69181:       /* --- pixel bitmap for stmary100 char#83 \ntrianglerighteqslant --- */
                   69182:       {  83,59989,                      /* character number, location */
                   69183:          11, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   69184:           {  9,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69185:             "\x80\x00\x05\x39\x92\x23\x4c\xe4\x68\x31\x1a\x2c\x24"
                   69186:             "\x46\xc3\xc1\x00" }  },
                   69187:       /* --- pixel bitmap for stmary100 char#84 \llfloor --- */
                   69188:       {  84,60625,                      /* character number, location */
                   69189:          10,-1,   -3,-1,      /* topleft row,col, and botleft row,col */
                   69190:           {  9,   13, 3, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69191:             "\xfb\x01\x31\x49" }  },
                   69192:       /* --- pixel bitmap for stmary100 char#85 \rrfloor --- */
                   69193:       {  85,61255,                      /* character number, location */
                   69194:          10, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   69195:           {  9,   13, 3, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69196:             "\xfb\x41\x31\x09" }  },
                   69197:       /* --- pixel bitmap for stmary100 char#86 \llceil --- */
                   69198:       {  86,61871,                      /* character number, location */
                   69199:          10,-1,   -3,-1,      /* topleft row,col, and botleft row,col */
                   69200:           {  9,   13, 3, 9, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69201:             "\x09\x0f\xb1\x31\x43" }  },
                   69202:       /* --- pixel bitmap for stmary100 char#87 \rrceil --- */
                   69203:       {  87,62488,                      /* character number, location */
                   69204:          10, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   69205:           {  9,   13, 3, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69206:             "\x09\xfb\x41\x31" }  },
                   69207:       /* --- pixel bitmap for stmary100 char#88 \arrownot --- */
                   69208:       {  88,62863,                      /* character number, location */
                   69209:           6, 5,    1, 5,      /* topleft row,col, and botleft row,col */
                   69210:           {  4,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69211:             "\x48\x22\x01" }  },
                   69212:       /* --- pixel bitmap for stmary100 char#89 \Arrownot --- */
                   69213:       {  89,63205,                      /* character number, location */
                   69214:           8, 5,   -1, 5,      /* topleft row,col, and botleft row,col */
                   69215:           {  4,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69216:             "\x48\x44\x22\x22\x01" }  },
                   69217:       /* --- pixel bitmap for stmary100 char#90 \Mapstochar --- */
                   69218:       {  90,63578,                      /* character number, location */
                   69219:           8, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   69220:           {  1,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69221:             "\xff\x01" }  },
                   69222:       /* --- pixel bitmap for stmary100 char#91 \mapsfromchar --- */
                   69223:       {  91,63863,                      /* character number, location */
                   69224:           6,-2,    1,-2,      /* topleft row,col, and botleft row,col */
                   69225:           {  1,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69226:             "\x1f" }  },
                   69227:       /* --- pixel bitmap for stmary100 char#92 \Mapsfromchar --- */
                   69228:       {  92,64159,                      /* character number, location */
                   69229:           8,-2,   -1,-2,      /* topleft row,col, and botleft row,col */
                   69230:           {  1,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69231:             "\xff\x01" }  },
                   69232:       /* --- pixel bitmap for stmary100 char#93 \leftrightarrowtriangle --- */
                   69233:       {  93,64974,                      /* character number, location */
                   69234:           6, 1,    1, 1,      /* topleft row,col, and botleft row,col */
                   69235:           { 12,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69236:             "\x98\x61\x69\xf1\x68\x69\x98\x01" }  },
                   69237:       /* --- pixel bitmap for stmary100 char#94 \leftarrowtriangle --- */
                   69238:       {  94,65775,                      /* character number, location */
                   69239:           6, 1,    1, 1,      /* topleft row,col, and botleft row,col */
                   69240:           { 12,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69241:             "\x18\x60\x01\xf1\x6f\x01\x18\x00" }  },
                   69242:       /* --- pixel bitmap for stmary100 char#95 \rightarrowtriangle --- */
                   69243:       {  95,66563,                      /* character number, location */
                   69244:           6, 1,    1, 1,      /* topleft row,col, and botleft row,col */
                   69245:           { 12,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69246:             "\x80\x01\x68\xff\x08\x68\x80\x01" }  },
                   69247:       /* --- pixel bitmap for stmary100 char#96 \bigtriangledown --- */
                   69248:       {  96,67237,                      /* character number, location */
                   69249:           0, 1,  -14, 1,      /* topleft row,col, and botleft row,col */
                   69250:           { 10,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69251:             "\xff\x07\x28\x90\x40\x02\x11\x42\x08\x21\x48\x20\x81"
                   69252:             "\x04\x0c\x30\x80\x00" }  },
                   69253:       /* --- pixel bitmap for stmary100 char#97 \bigtriangleup --- */
                   69254:       {  97,67962,                      /* character number, location */
                   69255:           0, 1,  -14, 1,      /* topleft row,col, and botleft row,col */
                   69256:           { 10,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69257:             "\x20\xc0\x00\x03\x12\x48\x20\x41\x08\x21\x84\x08\x24"
                   69258:             "\x90\x40\x01\xfe\x0f" }  },
                   69259:       /* --- pixel bitmap for stmary100 char#98 \bigcurlyvee --- */
                   69260:       {  98,68685,                      /* character number, location */
                   69261:           0, 1,  -14, 1,      /* topleft row,col, and botleft row,col */
                   69262:           { 10,   14, 3,31, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69263:             "\x01\x81\x11\x61\x31\x41\x20\xf1\x31\x21\x30\xf7\x42"
                   69264:             "\x40\x51\x41" }  },
                   69265:       /* --- pixel bitmap for stmary100 char#99 \bigcurlywedge --- */
                   69266:       {  99,69400,                      /* character number, location */
                   69267:           0, 1,  -14, 1,      /* topleft row,col, and botleft row,col */
                   69268:           { 10,   14, 3,30, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69269:             "\x51\x40\xf7\x42\x40\xf1\x31\x21\x30\x21\x41\x31\x61"
                   69270:             "\x11\x81" }  },
                   69271:       /* --- pixel bitmap for stmary100 char#100 \bigsqcap --- */
                   69272:       { 100,70143,                      /* character number, location */
                   69273:           0, 1,  -14, 1,      /* topleft row,col, and botleft row,col */
                   69274:           { 10,   14, 3, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69275:             "\x0a\x0f\xc1\x81" }  },
                   69276:       /* --- pixel bitmap for stmary100 char#101 \bigbox --- */
                   69277:       { 101,70882,                      /* character number, location */
                   69278:           0, 1,  -14, 1,      /* topleft row,col, and botleft row,col */
                   69279:           { 10,   14, 3,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69280:             "\x0a\x0f\xb1\x81\x0a" }  },
                   69281:       /* --- pixel bitmap for stmary100 char#102 \bigparallel --- */
                   69282:       { 102,71449,                      /* character number, location */
                   69283:           0, 1,  -14, 1,      /* topleft row,col, and botleft row,col */
                   69284:           {  4,   14, 3, 6, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69285:             "\xfd\x01\x21" }  },
                   69286:       /* --- pixel bitmap for stmary100 char#103 \biginterleave --- */
                   69287:       { 103,72169,                      /* character number, location */
                   69288:           0, 1,  -14, 1,      /* topleft row,col, and botleft row,col */
                   69289:           {  7,   14, 3, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69290:             "\xfd\x01\x21\x21" }  },
                   69291:       /* --- pixel bitmap for stmary100 char#104 (noname) --- */
                   69292:       { 104,73063,                      /* character number, location */
                   69293:           0, 1,  -19, 1,      /* topleft row,col, and botleft row,col */
                   69294:           { 13,   19, 3,49, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69295:             "\x0e\xb1\xf2\x11\x91\x10\xf2\x21\x71\x20\xf2\x31\x51"
                   69296:             "\x30\xf2\x41\x31\x40\xf2\x51\x11\x50\xf1\x61\x61" }  },
                   69297:       /* --- pixel bitmap for stmary100 char#105 (noname) --- */
                   69298:       { 105,73943,                      /* character number, location */
                   69299:           0, 1,  -19, 1,      /* topleft row,col, and botleft row,col */
                   69300:           { 13,   19, 3,48, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69301:             "\xf1\x61\x60\xf2\x51\x11\x50\xf2\x41\x31\x40\xf2\x31"
                   69302:             "\x51\x30\xf2\x21\x71\x20\xf2\x11\x91\x11\xbe" }  },
                   69303:       /* --- pixel bitmap for stmary100 char#106 (noname) --- */
                   69304:       { 106,74821,                      /* character number, location */
                   69305:           0, 1,  -19, 1,      /* topleft row,col, and botleft row,col */
                   69306:           { 13,   19, 3,39, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69307:             "\x01\xb1\x11\x91\x31\x71\x51\x51\x30\xf1\x41\x31\x40"
                   69308:             "\xf3\x51\x11\x50\xf8\x61\x62" }  },
                   69309:       /* --- pixel bitmap for stmary100 char#107 (noname) --- */
                   69310:       { 107,75689,                      /* character number, location */
                   69311:           0, 1,  -19, 1,      /* topleft row,col, and botleft row,col */
                   69312:           { 13,   19, 3,38, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69313:             "\xf8\x61\x60\xf3\x51\x11\x50\xf1\x41\x31\x40\x31\x51"
                   69314:             "\x51\x71\x31\x91\x11\xb1" }  },
                   69315:       /* --- pixel bitmap for stmary100 char#108 (noname) --- */
                   69316:       { 108,76578,                      /* character number, location */
                   69317:           0, 1,  -19, 1,      /* topleft row,col, and botleft row,col */
                   69318:           { 13,   19, 3,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69319:             "\x0d\x0f\xe1\xb1\x0f\x21\xb1" }  },
                   69320:       /* --- pixel bitmap for stmary100 char#109 (noname) --- */
                   69321:       { 109,77470,                      /* character number, location */
                   69322:           0, 1,  -19, 1,      /* topleft row,col, and botleft row,col */
                   69323:           { 13,   19, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69324:             "\x0d\x0f\xe1\xb1\x0f\x11\xb1\x0d" }  },
                   69325:       /* --- pixel bitmap for stmary100 char#110 (noname) --- */
                   69326:       { 110,78112,                      /* character number, location */
                   69327:           0, 1,  -19, 1,      /* topleft row,col, and botleft row,col */
                   69328:           {  6,   19, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69329:             "\xfe\x01\x41\x0f\x31\x41" }  },
                   69330:       /* --- pixel bitmap for stmary100 char#111 (noname) --- */
                   69331:       { 111,78985,                      /* character number, location */
                   69332:           0, 1,  -19, 1,      /* topleft row,col, and botleft row,col */
                   69333:           { 11,   19, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69334:             "\xfe\x01\x41\x41\x0f\x31\x41\x41" }  },
                   69335:       /* --- pixel bitmap for stmary100 char#112 \bignplus --- */
                   69336:       { 112,79877,                      /* character number, location */
                   69337:           0, 1,  -14, 1,      /* topleft row,col, and botleft row,col */
                   69338:           { 10,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69339:             "\x78\x10\x22\x50\x80\x01\x86\x18\x62\xbf\x21\x86\x18"
                   69340:             "\x60\x80\x01\x06\x08" }  },
                   69341:       /* --- pixel bitmap for stmary100 char#113 (noname) --- */
                   69342:       { 113,80833,                      /* character number, location */
                   69343:           1, 2,  -15, 2,      /* topleft row,col, and botleft row,col */
                   69344:           {  5,   16, 3,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69345:             "\x05\x0f\xd1\x11\x25" }  },
                   69346:       /* --- pixel bitmap for stmary100 char#114 (noname) --- */
                   69347:       { 114,81818,                      /* character number, location */
                   69348:           1, 3,  -23, 3,      /* topleft row,col, and botleft row,col */
                   69349:           {  5,   24, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69350:             "\x05\x0f\xe1\x11\x2f\x61\x11\x25" }  },
                   69351:       /* --- pixel bitmap for stmary100 char#115 (noname) --- */
                   69352:       { 115,82836,                      /* character number, location */
                   69353:           1, 3,  -32, 3,      /* topleft row,col, and botleft row,col */
                   69354:           {  6,   33, 3,20, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69355:             "\x06\x0f\xe1\x11\x3f\xe1\x11\x31\x11\x36" }  },
                   69356:       /* --- pixel bitmap for stmary100 char#116 (noname) --- */
                   69357:       { 116,83916,                      /* character number, location */
                   69358:           1, 4,  -40, 4,      /* topleft row,col, and botleft row,col */
                   69359:           {  6,   41, 2,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69360:             "\x00\x06\x00\xff\x26\x01\x02\x01\x02\x06" }  },
                   69361:       /* --- pixel bitmap for stmary100 char#117 (noname) --- */
                   69362:       { 117,84971,                      /* character number, location */
                   69363:           0, 5,  -24, 5,      /* topleft row,col, and botleft row,col */
                   69364:           {  6,   24, 3,15, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69365:             "\x06\x0f\xe1\x21\x2f\x71\x21\x2f" }  },
                   69366:       /* --- pixel bitmap for stmary100 char#118 (noname) --- */
                   69367:       { 118,85888,                      /* character number, location */
                   69368:           1, 5,  -23, 5,      /* topleft row,col, and botleft row,col */
                   69369:           {  6,   24, 3,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69370:             "\xfe\x01\x21\x2f\x71\x21\x26" }  },
                   69371:       /* --- pixel bitmap for stmary100 char#119 (noname) --- */
                   69372:       { 119,86796,                      /* character number, location */
                   69373:           1, 5,   -9, 5,      /* topleft row,col, and botleft row,col */
                   69374:           {  4,   10, 3, 6, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69375:             "\xf9\x01\x21" }  },
                   69376:       /* --- pixel bitmap for stmary100 char#120 (noname) --- */
                   69377:       { 120,87728,                      /* character number, location */
                   69378:           0, 1,  -19, 1,      /* topleft row,col, and botleft row,col */
                   69379:           { 13,   19, 3,48, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69380:             "\x45\x71\x51\x51\x71\x31\x91\x1f\x11\xb1\x0f\x31\x51"
                   69381:             "\x51\x01\x19\x11\x0f\x31\x51\x51\x0f\x31\xb1" }  },
                   69382:       /* --- pixel bitmap for stmary100 char#121 (noname) --- */
                   69383:       { 121,88699,                      /* character number, location */
                   69384:           1, 0,  -15, 0,      /* topleft row,col, and botleft row,col */
                   69385:           {  5,   16, 3,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69386:             "\x05\xfd\x21\x11\x05" }  },
                   69387:       /* --- pixel bitmap for stmary100 char#122 (noname) --- */
                   69388:       { 122,89645,                      /* character number, location */
                   69389:           1, 0,  -23, 0,      /* topleft row,col, and botleft row,col */
                   69390:           {  5,   24, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69391:             "\x05\xfe\x21\x11\xf6\x21\x11\x05" }  },
                   69392:       /* --- pixel bitmap for stmary100 char#123 (noname) --- */
                   69393:       { 123,90650,                      /* character number, location */
                   69394:           1, 0,  -32, 0,      /* topleft row,col, and botleft row,col */
                   69395:           {  6,   33, 3,18, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69396:             "\x06\xfe\x31\x11\xfe\x31\x11\x31\x17" }  },
                   69397:       /* --- pixel bitmap for stmary100 char#124 (noname) --- */
                   69398:       { 124,91691,                      /* character number, location */
                   69399:           1, 0,  -40, 0,      /* topleft row,col, and botleft row,col */
                   69400:           {  6,   41, 2,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69401:             "\x00\x06\xff\x26\x02\x01\x02\x01\x00\x06" }  },
                   69402:       /* --- pixel bitmap for stmary100 char#125 (noname) --- */
                   69403:       { 125,92733,                      /* character number, location */
                   69404:           0, 0,  -24, 0,      /* topleft row,col, and botleft row,col */
                   69405:           {  6,   24, 3,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69406:             "\x06\xfe\x21\x21\xf7\x21\x21" }  },
                   69407:       /* --- pixel bitmap for stmary100 char#126 (noname) --- */
                   69408:       { 126,93731,                      /* character number, location */
                   69409:           1, 0,  -23, 0,      /* topleft row,col, and botleft row,col */
                   69410:           {  6,   24, 3,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69411:             "\xfe\x21\x21\xf7\x21\x21\x06" }  },
                   69412:       /* --- pixel bitmap for stmary100 char#127 (noname) --- */
                   69413:       { 127,94626,                      /* character number, location */
                   69414:           1, 2,   -9, 2,      /* topleft row,col, and botleft row,col */
                   69415:           {  4,   10, 3, 6, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69416:             "\xf9\x01\x21" }  },
                   69417:       /* --- trailer  --- */
                   69418:       { -99, -999,  0,0,0,0, { 0,0,0,0, (pixbyte *)"\0" }  }
                   69419:    } ;
                   69420: 
                   69421: 
                   69422: /* --- size=2 for .118gf ---
                   69423:  * mf '\mode=preview; mag=magstep(-16.96645799324018499600); input stmary10'
                   69424:  * --------------------------------------------------------------------- */
                   69425: /* --- fontdef for stmary118 --- */
                   69426: static	chardef  stmary118[] =
                   69427:    {
                   69428:       /* --- pixel bitmap for stmary118 char#0 \shortleftarrow --- */
                   69429:       {   0,  922,                      /* character number, location */
                   69430:           7, 1,    2, 1,      /* topleft row,col, and botleft row,col */
                   69431:           { 11,    5, 3,11, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69432:             "\x21\x91\x9b\x11\xb1\x80" }  },
                   69433:       /* --- pixel bitmap for stmary118 char#1 \shortrightarrow --- */
                   69434:       {   1, 1827,                      /* character number, location */
                   69435:           7, 1,    2, 1,      /* topleft row,col, and botleft row,col */
                   69436:           { 11,    5, 3,11, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69437:             "\x81\xb1\x1b\x91\x91\x20" }  },
                   69438:       /* --- pixel bitmap for stmary118 char#2 \shortuparrow --- */
                   69439:       {   2, 2592,                      /* character number, location */
                   69440:          10, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   69441:           {  5,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69442:             "\xc4\x55\x42\x08\x21\x84\x10" }  },
                   69443:       /* --- pixel bitmap for stmary118 char#3 \shortdownarrow --- */
                   69444:       {   3, 3375,                      /* character number, location */
                   69445:          10, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   69446:           {  5,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69447:             "\x84\x10\x42\x08\x21\xd5\x11" }  },
                   69448:       /* --- pixel bitmap for stmary118 char#4 \Yup --- */
                   69449:       {   4, 3938,                      /* character number, location */
                   69450:           9, 1,    1, 1,      /* topleft row,col, and botleft row,col */
                   69451:           {  7,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69452:             "\x08\x04\x02\x81\xa0\x88\x82" }  },
                   69453:       /* --- pixel bitmap for stmary118 char#5 \Ydown --- */
                   69454:       {   5, 4485,                      /* character number, location */
                   69455:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   69456:           {  7,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69457:             "\x41\x11\x05\x81\x40\x20\x10" }  },
                   69458:       /* --- pixel bitmap for stmary118 char#6 \Yleft --- */
                   69459:       {   6, 5073,                      /* character number, location */
                   69460:           8, 1,    1, 1,      /* topleft row,col, and botleft row,col */
                   69461:           {  8,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69462:             "\x80\x40\x3e\x10\x20\x40\x80" }  },
                   69463:       /* --- pixel bitmap for stmary118 char#7 \Yright --- */
                   69464:       {   7, 5654,                      /* character number, location */
                   69465:           8, 1,    1, 1,      /* topleft row,col, and botleft row,col */
                   69466:           {  8,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69467:             "\x01\x02\xfc\x08\x04\x02\x01" }  },
                   69468:       /* --- pixel bitmap for stmary118 char#8 \varcurlyvee --- */
                   69469:       {   8, 6251,                      /* character number, location */
                   69470:          11, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   69471:           { 11,   14, 3,35, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69472:             "\x01\x91\x11\x71\x31\x51\x20\xf1\x31\x31\x30\xf2\x41"
                   69473:             "\x11\x40\xf5\x51\x50" }  },
                   69474:       /* --- pixel bitmap for stmary118 char#9 \varcurlywedge --- */
                   69475:       {   9, 6890,                      /* character number, location */
                   69476:          11, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   69477:           { 11,   14, 3,34, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69478:             "\xf5\x51\x50\xf2\x41\x11\x40\xf1\x31\x31\x30\x21\x51"
                   69479:             "\x31\x71\x11\x91" }  },
                   69480:       /* --- pixel bitmap for stmary118 char#10 \minuso --- */
                   69481:       {  10, 7657,                      /* character number, location */
                   69482:           8, 1,    1, 1,      /* topleft row,col, and botleft row,col */
                   69483:           { 11,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69484:             "\x70\x40\x04\x41\xfe\x4f\x10\x44\xc0\x01" }  },
                   69485:       /* --- pixel bitmap for stmary118 char#11 \baro --- */
                   69486:       {  11, 8299,                      /* character number, location */
                   69487:          10, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   69488:           {  7,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69489:             "\x08\x04\x47\x95\x4c\x26\x55\x1c\x04\x02" }  },
                   69490:       /* --- pixel bitmap for stmary118 char#12 \sslash --- */
                   69491:       {  12, 8931,                      /* character number, location */
                   69492:          12, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   69493:           {  9,   16, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69494:             "\x20\x41\x42\x82\x04\x09\x09\x12\x24\x24\x48\x90\x90"
                   69495:             "\x20\x41\x42\x82\x04" }  },
                   69496:       /* --- pixel bitmap for stmary118 char#13 \bblash --- */
                   69497:       {  13, 9586,                      /* character number, location */
                   69498:          12, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   69499:           {  9,   16, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69500:             "\x09\x12\x48\x90\x20\x81\x04\x09\x12\x48\x90\x20\x81"
                   69501:             "\x04\x09\x12\x48\x90" }  },
                   69502:       /* --- pixel bitmap for stmary118 char#14 \moo --- */
                   69503:       {  14,10355,                      /* character number, location */
                   69504:           9, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   69505:           {  9,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69506:             "\x10\x20\x40\x80\xf0\x1f\x02\x84\x94\xc6\x00" }  },
                   69507:       /* --- pixel bitmap for stmary118 char#15 \varotimes --- */
                   69508:       {  15,11092,                      /* character number, location */
                   69509:          10, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   69510:           { 11,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69511:             "\xf8\x20\x88\xc1\x12\x19\xc5\x10\x46\x31\x91\x06\x23"
                   69512:             "\x08\x3e\x00" }  },
                   69513:       /* --- pixel bitmap for stmary118 char#16 \varoast --- */
                   69514:       {  16,11986,                      /* character number, location */
                   69515:          10, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   69516:           { 11,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69517:             "\xf8\x20\x88\x88\x42\x98\xcf\x18\xe6\x33\x84\x22\x22"
                   69518:             "\x08\x3e\x00" }  },
                   69519:       /* --- pixel bitmap for stmary118 char#17 \varobar --- */
                   69520:       {  17,12749,                      /* character number, location */
                   69521:          10, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   69522:           { 11,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69523:             "\xf8\x20\x89\x88\x42\x18\xc2\x10\x86\x30\x84\x22\x22"
                   69524:             "\x09\x3e\x00" }  },
                   69525:       /* --- pixel bitmap for stmary118 char#18 \varodot --- */
                   69526:       {  18,13507,                      /* character number, location */
                   69527:          10, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   69528:           { 11,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69529:             "\xf8\x20\x88\x80\x02\x18\xc2\x38\x86\x30\x80\x02\x22"
                   69530:             "\x08\x3e\x00" }  },
                   69531:       /* --- pixel bitmap for stmary118 char#19 \varoslash --- */
                   69532:       {  19,14264,                      /* character number, location */
                   69533:          10, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   69534:           { 11,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69535:             "\xf8\x20\x88\xc0\x02\x19\xc4\x10\x46\x30\x81\x06\x22"
                   69536:             "\x08\x3e\x00" }  },
                   69537:       /* --- pixel bitmap for stmary118 char#20 \varobslash --- */
                   69538:       {  20,15029,                      /* character number, location */
                   69539:          10, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   69540:           { 11,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69541:             "\xf8\x20\x88\x81\x12\x18\xc1\x10\x06\x31\x90\x02\x23"
                   69542:             "\x08\x3e\x00" }  },
                   69543:       /* --- pixel bitmap for stmary118 char#21 \varocircle --- */
                   69544:       {  21,15933,                      /* character number, location */
                   69545:          10, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   69546:           { 11,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69547:             "\xf8\x20\x88\x88\xb2\x99\xc8\x82\x26\x32\x9b\x22\x22"
                   69548:             "\x08\x3e\x00" }  },
                   69549:       /* --- pixel bitmap for stmary118 char#22 \varoplus --- */
                   69550:       {  22,16707,                      /* character number, location */
                   69551:          10, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   69552:           { 11,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69553:             "\xf8\x20\x89\x88\x42\x18\xc2\xff\x87\x30\x84\x22\x22"
                   69554:             "\x09\x3e\x00" }  },
                   69555:       /* --- pixel bitmap for stmary118 char#23 \varominus --- */
                   69556:       {  23,17472,                      /* character number, location */
                   69557:          10, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   69558:           { 11,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69559:             "\xf8\x20\x88\x80\x02\x18\xc0\xff\x07\x30\x80\x02\x22"
                   69560:             "\x08\x3e\x00" }  },
                   69561:       /* --- pixel bitmap for stmary118 char#24 \boxast --- */
                   69562:       {  24,18269,                      /* character number, location */
                   69563:          10, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   69564:           { 11,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69565:             "\xff\x0f\x60\x08\x43\x98\xcf\x18\xe6\x33\x84\x21\x0c"
                   69566:             "\xe0\xff\x01" }  },
                   69567:       /* --- pixel bitmap for stmary118 char#25 \boxbar --- */
                   69568:       {  25,18960,                      /* character number, location */
                   69569:          10, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   69570:           { 11,   11, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69571:             "\x0b\x0f\x81\x41\x41\x0b" }  },
                   69572:       /* --- pixel bitmap for stmary118 char#26 \boxdot --- */
                   69573:       {  26,19655,                      /* character number, location */
                   69574:          10, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   69575:           { 11,   11, 3,30, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69576:             "\x0b\x0f\x21\x91\x01\x41\x42\x33\x32\x41\x41\x0f\x21"
                   69577:             "\x91\x0b" }  },
                   69578:       /* --- pixel bitmap for stmary118 char#27 \boxslash --- */
                   69579:       {  27,20340,                      /* character number, location */
                   69580:          10, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   69581:           { 11,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69582:             "\xff\x0f\x70\x40\x03\x19\xc4\x10\x46\x30\x81\x05\x1c"
                   69583:             "\xe0\xff\x01" }  },
                   69584:       /* --- pixel bitmap for stmary118 char#28 \boxbslash --- */
                   69585:       {  28,21034,                      /* character number, location */
                   69586:          10, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   69587:           { 11,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69588:             "\xff\x1f\x60\x01\x13\x18\xc1\x10\x06\x31\x90\x01\x0d"
                   69589:             "\xf0\xff\x01" }  },
                   69590:       /* --- pixel bitmap for stmary118 char#29 \boxcircle --- */
                   69591:       {  29,21706,                      /* character number, location */
                   69592:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   69593:           { 10,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69594:             "\xff\x07\x18\x60\x8c\x49\x26\x19\x63\x80\x01\xfe\x0f" }  },
                   69595:       /* --- pixel bitmap for stmary118 char#30 \boxbox --- */
                   69596:       {  30,22391,                      /* character number, location */
                   69597:          10, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   69598:           { 11,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69599:             "\xff\x0f\x60\x00\xf3\x99\xc8\x44\x26\x32\x9f\x01\x0c"
                   69600:             "\xe0\xff\x01" }  },
                   69601:       /* --- pixel bitmap for stmary118 char#31 \boxempty --- */
                   69602:       {  31,23080,                      /* character number, location */
                   69603:          10, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   69604:           { 11,   11, 3,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69605:             "\x0b\x0f\x81\x91\x0b" }  },
                   69606:       /* --- pixel bitmap for stmary118 char#32 \lightning --- */
                   69607:       {  32,23931,                      /* character number, location */
                   69608:          11, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   69609:           {  6,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69610:             "\x10\x84\x20\x08\xc9\x43\x10\x82\x28\x3e\x01" }  },
                   69611:       /* --- pixel bitmap for stmary118 char#33 \merge --- */
                   69612:       {  33,24678,                      /* character number, location */
                   69613:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   69614:           { 13,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69615:             "\x10\x01\x63\xa0\x0a\x54\x41\x44\x88\x88\x10\x12\x45"
                   69616:             "\xa2\x28\x14\x46\x44" }  },
                   69617:       /* --- pixel bitmap for stmary118 char#34 \vartimes --- */
                   69618:       {  34,25295,                      /* character number, location */
                   69619:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   69620:           {  7,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69621:             "\x41\x91\x88\x42\x41\x50\x28\x22\x51\x10" }  },
                   69622:       /* --- pixel bitmap for stmary118 char#35 \fatsemi --- */
                   69623:       {  35,25838,                      /* character number, location */
                   69624:           9, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   69625:           {  3,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69626:             "\xaa\x00\xa8\xa6\x04" }  },
                   69627:       /* --- pixel bitmap for stmary118 char#36 \sswarrow --- */
                   69628:       {  36,26677,                      /* character number, location */
                   69629:          11, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   69630:           {  8,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69631:             "\x80\x80\x40\x40\x20\x20\x20\x10\x10\x08\x08\x0e\x3e"
                   69632:             "\x04" }  },
                   69633:       /* --- pixel bitmap for stmary118 char#37 \ssearrow --- */
                   69634:       {  37,27520,                      /* character number, location */
                   69635:          11, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   69636:           {  7,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69637:             "\x81\x80\x40\x40\x20\x10\x10\x08\x08\x04\xce\x07\x01" }  },
                   69638:       /* --- pixel bitmap for stmary118 char#38 \curlywedgeuparrow --- */
                   69639:       {  38,28474,                      /* character number, location */
                   69640:          11, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   69641:           { 11,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69642:             "\x20\x00\x01\x3e\x40\x00\x02\x10\x40\x01\x0a\x50\x40"
                   69643:             "\x04\x22\x08\x22\xa0\x00\x02" }  },
                   69644:       /* --- pixel bitmap for stmary118 char#39 \curlywedgedownarrow --- */
                   69645:       {  39,29446,                      /* character number, location */
                   69646:          11, 0,   -4, 0,      /* topleft row,col, and botleft row,col */
                   69647:           { 11,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69648:             "\x20\x00\x01\x08\x40\x00\x02\x10\x40\x01\x0a\x50\x40"
                   69649:             "\x44\x22\x0b\x3a\xe0\x01\x23\x02" }  },
                   69650:       /* --- pixel bitmap for stmary118 char#40 \fatslash --- */
                   69651:       {  40,30076,                      /* character number, location */
                   69652:          12, 5,   -4, 5,      /* topleft row,col, and botleft row,col */
                   69653:           { 10,   16, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69654:             "\xe0\x83\x04\x11\x44\x90\x20\x82\x08\x12\x44\x10\x41"
                   69655:             "\x82\x08\x22\x48\x10\xc1\x07" }  },
                   69656:       /* --- pixel bitmap for stmary118 char#41 \fatbslash --- */
                   69657:       {  41,30718,                      /* character number, location */
                   69658:          12, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   69659:           { 10,   16, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69660:             "\x1f\x44\x20\x81\x08\x22\x90\x40\x04\x11\x48\x20\x82"
                   69661:             "\x08\x24\x10\x41\x04\x12\xf8" }  },
                   69662:       /* --- pixel bitmap for stmary118 char#42 \lbag --- */
                   69663:       {  42,31259,                      /* character number, location */
                   69664:          12, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   69665:           {  5,   16, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69666:             "\x26\x21\x44\x08\x21\x44\x08\x21\x84\xc1" }  },
                   69667:       /* --- pixel bitmap for stmary118 char#43 \rbag --- */
                   69668:       {  43,31775,                      /* character number, location */
                   69669:          12, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   69670:           {  5,   16, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69671:             "\x4c\x0a\x41\x08\x21\x04\x21\x84\x10\x1b" }  },
                   69672:       /* --- pixel bitmap for stmary118 char#44 \varbigcirc --- */
                   69673:       {  44,32629,                      /* character number, location */
                   69674:          11, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   69675:           { 14,   14, 3,43, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69676:             "\x54\x82\x42\x51\x81\x20\xf1\x11\xa1\x1f\x31\xc1\xf1"
                   69677:             "\x11\xa1\x10\x21\x81\x52\x42\x84\x51" }  },
                   69678:       /* --- pixel bitmap for stmary118 char#45 \leftrightarroweq --- */
                   69679:       {  45,33615,                      /* character number, location */
                   69680:           9, 1,    2, 1,      /* topleft row,col, and botleft row,col */
                   69681:           { 11,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69682:             "\x04\x11\xd0\xff\x05\x44\x10\x00\xfc\x1f" }  },
                   69683:       /* --- pixel bitmap for stmary118 char#46 \curlyveedownarrow --- */
                   69684:       {  46,34183,                      /* character number, location */
                   69685:          11, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   69686:           { 11,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69687:             "\x01\x14\x10\x41\x10\x81\x08\x28\x40\x01\x0a\x20\x00"
                   69688:             "\x01\x08\xf0\x01\x02\x10\x00" }  },
                   69689:       /* --- pixel bitmap for stmary118 char#47 \curlyveeuparrow --- */
                   69690:       {  47,34775,                      /* character number, location */
                   69691:          12, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   69692:           { 11,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69693:             "\x88\x18\xf0\x80\x0b\x9a\x48\x44\x40\x01\x0a\x50\x00"
                   69694:             "\x01\x08\x40\x00\x02\x10\x80\x00" }  },
                   69695:       /* --- pixel bitmap for stmary118 char#48 \nnwarrow --- */
                   69696:       {  48,35334,                      /* character number, location */
                   69697:          11, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   69698:           {  8,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69699:             "\x04\x3e\x0e\x08\x08\x10\x10\x20\x20\x20\x40\x40\x80"
                   69700:             "\x80" }  },
                   69701:       /* --- pixel bitmap for stmary118 char#49 \nnearrow --- */
                   69702:       {  49,35865,                      /* character number, location */
                   69703:          11, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   69704:           {  7,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69705:             "\x20\x3e\x1c\x02\x41\x20\x08\x04\x82\x40\x10\x08\x00" }  },
                   69706:       /* --- pixel bitmap for stmary118 char#50 \leftslice --- */
                   69707:       {  50,36584,                      /* character number, location */
                   69708:           8, 1,    1, 1,      /* topleft row,col, and botleft row,col */
                   69709:           { 11,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69710:             "\x80\x83\x23\x03\x07\xc8\x40\x38\x02\x0e" }  },
                   69711:       /* --- pixel bitmap for stmary118 char#51 \rightslice --- */
                   69712:       {  51,37300,                      /* character number, location */
                   69713:           8, 1,    1, 1,      /* topleft row,col, and botleft row,col */
                   69714:           { 11,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69715:             "\x0e\x88\x43\x60\x02\x1c\x98\x38\x38\x00" }  },
                   69716:       /* --- pixel bitmap for stmary118 char#52 \varolessthan --- */
                   69717:       {  52,38038,                      /* character number, location */
                   69718:          10, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   69719:           { 11,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69720:             "\xf8\x20\x88\xe0\xe2\xd8\xc0\x01\x36\x30\x8e\x82\x23"
                   69721:             "\x08\x3e\x00" }  },
                   69722:       /* --- pixel bitmap for stmary118 char#53 \varogreaterthan --- */
                   69723:       {  53,38803,                      /* character number, location */
                   69724:          10, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   69725:           { 11,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69726:             "\xf8\x20\x88\x83\xe2\x18\xd8\x00\x07\x36\x8e\x0e\x22"
                   69727:             "\x08\x3e\x00" }  },
                   69728:       /* --- pixel bitmap for stmary118 char#54 \varovee --- */
                   69729:       {  54,39560,                      /* character number, location */
                   69730:          10, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   69731:           { 11,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69732:             "\xf8\x20\x88\xc1\x0a\x9a\xc8\x44\x26\x32\x8a\x52\x22"
                   69733:             "\x09\x3e\x00" }  },
                   69734:       /* --- pixel bitmap for stmary118 char#55 \varowedge --- */
                   69735:       {  55,40337,                      /* character number, location */
                   69736:          10, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   69737:           { 11,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69738:             "\xf8\x20\x89\x94\xa2\x98\xc8\x44\x26\xb2\xa0\x06\x23"
                   69739:             "\x08\x3e\x00" }  },
                   69740:       /* --- pixel bitmap for stmary118 char#56 \talloblong --- */
                   69741:       {  56,40930,                      /* character number, location */
                   69742:          12, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   69743:           {  6,   15, 3,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69744:             "\x06\x0f\xc1\x41\x06" }  },
                   69745:       /* --- pixel bitmap for stmary118 char#57 \interleave --- */
                   69746:       {  57,41646,                      /* character number, location */
                   69747:          12, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   69748:           {  9,   15, 3, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69749:             "\xfe\x01\x31\x31" }  },
                   69750:       /* --- pixel bitmap for stmary118 char#58 \obar --- */
                   69751:       {  58,42436,                      /* character number, location */
                   69752:          10, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   69753:           { 11,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69754:             "\xf8\x20\x89\x88\x42\x18\xc2\x10\x86\x30\x84\x22\x22"
                   69755:             "\x09\x3e\x00" }  },
                   69756:       /* --- pixel bitmap for stmary118 char#59 \oslash --- */
                   69757:       {  59,43200,                      /* character number, location */
                   69758:          10, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   69759:           { 11,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69760:             "\xf8\x20\x88\x81\x12\x18\xc1\x10\x06\x31\x90\x02\x23"
                   69761:             "\x08\x3e\x00" }  },
                   69762:       /* --- pixel bitmap for stmary118 char#60 \olessthan --- */
                   69763:       {  60,43955,                      /* character number, location */
                   69764:          10, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   69765:           { 11,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69766:             "\xf8\x20\x88\xe0\xe2\xd8\xc0\x01\x36\x30\x8e\x82\x23"
                   69767:             "\x08\x3e\x00" }  },
                   69768:       /* --- pixel bitmap for stmary118 char#61 \ogreaterthan --- */
                   69769:       {  61,44711,                      /* character number, location */
                   69770:          10, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   69771:           { 11,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69772:             "\xf8\x20\x88\x83\xe2\x18\xd8\x00\x07\x36\x8e\x0e\x22"
                   69773:             "\x08\x3e\x00" }  },
                   69774:       /* --- pixel bitmap for stmary118 char#62 \ovee --- */
                   69775:       {  62,45459,                      /* character number, location */
                   69776:          10, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   69777:           { 11,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69778:             "\xf8\x20\x88\xc1\x0a\x9a\xc8\x44\x26\x32\x8a\x52\x22"
                   69779:             "\x09\x3e\x00" }  },
                   69780:       /* --- pixel bitmap for stmary118 char#63 \owedge --- */
                   69781:       {  63,46227,                      /* character number, location */
                   69782:          10, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   69783:           { 11,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69784:             "\xf8\x20\x89\x94\xa2\x98\xc8\x44\x26\xb2\xa0\x06\x23"
                   69785:             "\x08\x3e\x00" }  },
                   69786:       /* --- pixel bitmap for stmary118 char#64 \oblong --- */
                   69787:       {  64,46883,                      /* character number, location */
                   69788:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   69789:           {  9,   10, 3,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69790:             "\x09\x0f\x71\x71\x09" }  },
                   69791:       /* --- pixel bitmap for stmary118 char#65 \inplus --- */
                   69792:       {  65,47566,                      /* character number, location */
                   69793:          10, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   69794:           {  9,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69795:             "\xf8\x09\x08\x88\x10\xe1\x7f\x84\x08\x02\x08\xe0\x07" }  },
                   69796:       /* --- pixel bitmap for stmary118 char#66 \niplus --- */
                   69797:       {  66,48252,                      /* character number, location */
                   69798:          10, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   69799:           {  9,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69800:             "\x3f\x80\x00\x82\x08\xf1\x3f\x44\x88\x80\x80\xfc\x00" }  },
                   69801:       /* --- pixel bitmap for stmary118 char#67 \nplus --- */
                   69802:       {  67,48942,                      /* character number, location */
                   69803:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   69804:           {  9,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69805:             "\x7c\x04\x05\x8c\x18\xb1\x6f\xc4\x88\x01\x03\x02" }  },
                   69806:       /* --- pixel bitmap for stmary118 char#68 \subsetplus --- */
                   69807:       {  68,49708,                      /* character number, location */
                   69808:          10, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   69809:           { 11,   11, 3,30, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69810:             "\x38\x21\x91\x9f\x11\x51\x41\x35\x2f\x11\x51\x40\x11"
                   69811:             "\xb1\xb8" }  },
                   69812:       /* --- pixel bitmap for stmary118 char#69 \supsetplus --- */
                   69813:       {  69,50460,                      /* character number, location */
                   69814:          10, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   69815:           { 11,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69816:             "\xff\x00\x08\x80\x20\x08\x41\x3e\x42\x10\x82\x00\x02"
                   69817:             "\xc8\x3f\x00" }  },
                   69818:       /* --- pixel bitmap for stmary118 char#70 \subsetpluseq --- */
                   69819:       {  70,51230,                      /* character number, location */
                   69820:          10, 1,   -5, 1,      /* topleft row,col, and botleft row,col */
                   69821:           { 11,   15, 3,34, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69822:             "\x38\x21\x91\x9f\x11\x51\x41\x35\x2f\x11\x51\x40\x11"
                   69823:             "\xb1\xb8\xf2\xbb" }  },
                   69824:       /* --- pixel bitmap for stmary118 char#71 \supsetpluseq --- */
                   69825:       {  71,52006,                      /* character number, location */
                   69826:          10, 1,   -5, 1,      /* topleft row,col, and botleft row,col */
                   69827:           { 11,   15, 3,36, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69828:             "\x08\xb1\xb1\x10\xf1\x41\x51\x25\x31\xf1\x41\x51\x91"
                   69829:             "\x91\x28\x30\xf2\xbb" }  },
                   69830:       /* --- pixel bitmap for stmary118 char#72 \Lbag --- */
                   69831:       {  72,52745,                      /* character number, location */
                   69832:          12, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   69833:           {  5,   16, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69834:             "\x26\x21\x42\x88\x10\x22\x84\x10\x82\xe0" }  },
                   69835:       /* --- pixel bitmap for stmary118 char#73 \Rbag --- */
                   69836:       {  73,53201,                      /* character number, location */
                   69837:          12, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   69838:           {  5,   16, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69839:             "\x4c\x0a\x42\x08\x42\x08\x42\x08\x21\x3a" }  },
                   69840:       /* --- pixel bitmap for stmary118 char#74 \llbracket --- */
                   69841:       {  74,54040,                      /* character number, location */
                   69842:          12, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   69843:           {  6,   16, 3,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69844:             "\x06\x0f\xd1\x11\x36" }  },
                   69845:       /* --- pixel bitmap for stmary118 char#75 \rrbracket --- */
                   69846:       {  75,54906,                      /* character number, location */
                   69847:          12, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   69848:           {  5,   16, 3,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69849:             "\x05\xfd\x21\x11\x05" }  },
                   69850:       /* --- pixel bitmap for stmary118 char#76 \llparenthesis --- */
                   69851:       {  76,55604,                      /* character number, location */
                   69852:          12, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   69853:           {  4,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69854:             "\xc8\xaa\x99\x99\x99\xa9\xca\x08" }  },
                   69855:       /* --- pixel bitmap for stmary118 char#77 \rrparenthesis --- */
                   69856:       {  77,56295,                      /* character number, location */
                   69857:          12, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   69858:           {  4,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69859:             "\x31\x55\x99\x99\x99\x59\x35\x01" }  },
                   69860:       /* --- pixel bitmap for stmary118 char#78 \binampersand --- */
                   69861:       {  78,57042,                      /* character number, location */
                   69862:          10, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   69863:           { 11,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69864:             "\x78\x20\x04\x21\x08\x81\x04\x1e\x8a\x30\x58\x01\x09"
                   69865:             "\x96\x0f\x01" }  },
                   69866:       /* --- pixel bitmap for stmary118 char#79 \bindnasrepma --- */
                   69867:       {  79,57695,                      /* character number, location */
                   69868:          10, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   69869:           { 11,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69870:             "\xe1\xd3\x20\x01\x35\x18\xa2\xf0\x40\x02\x21\x08\x41"
                   69871:             "\x08\x3c\x00" }  },
                   69872:       /* --- pixel bitmap for stmary118 char#80 \trianglelefteqslant --- */
                   69873:       {  80,58423,                      /* character number, location */
                   69874:          10, 1,   -5, 1,      /* topleft row,col, and botleft row,col */
                   69875:           { 11,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69876:             "\x00\x04\x38\x30\x61\xc8\xc0\x01\x1a\x10\x83\x60\x0c"
                   69877:             "\xac\x81\x31\x00\x06\xc0\x00\x18" }  },
                   69878:       /* --- pixel bitmap for stmary118 char#81 \trianglerighteqslant --- */
                   69879:       {  81,59156,                      /* character number, location */
                   69880:          10, 1,   -5, 1,      /* topleft row,col, and botleft row,col */
                   69881:           { 11,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69882:             "\x01\x38\x40\x06\xc2\x10\x98\x00\x07\x2c\x18\x31\x68"
                   69883:             "\xe0\xc0\x80\x01\x03\x06\x0c\x00" }  },
                   69884:       /* --- pixel bitmap for stmary118 char#82 \ntrianglelefteqslant --- */
                   69885:       {  82,59935,                      /* character number, location */
                   69886:          13, 1,   -5, 1,      /* topleft row,col, and botleft row,col */
                   69887:           { 11,   18, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69888:             "\x00\x02\x08\x40\x00\x0d\x58\x70\x62\xd1\x88\x23\x64"
                   69889:             "\x21\x0c\xa1\xb9\x70\x06\xe2\x80\x18\x04\x13\x20" }  },
                   69890:       /* --- pixel bitmap for stmary118 char#83 \ntrianglerighteqslant --- */
                   69891:       {  83,60743,                      /* character number, location */
                   69892:          13, 1,   -5, 1,      /* topleft row,col, and botleft row,col */
                   69893:           { 11,   18, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69894:             "\x00\x02\x08\x40\x06\xd1\x88\x58\x04\x23\x68\x21\x0e"
                   69895:             "\x4d\x1c\x32\xf0\xe0\xc4\xa0\x81\x03\x06\x18\x00" }  },
                   69896:       /* --- pixel bitmap for stmary118 char#84 \llfloor --- */
                   69897:       {  84,61393,                      /* character number, location */
                   69898:          12, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   69899:           {  9,   15, 3, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69900:             "\xfd\x01\x31\x49" }  },
                   69901:       /* --- pixel bitmap for stmary118 char#85 \rrfloor --- */
                   69902:       {  85,62031,                      /* character number, location */
                   69903:          12, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   69904:           {  9,   15, 3, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69905:             "\xfd\x41\x31\x09" }  },
                   69906:       /* --- pixel bitmap for stmary118 char#86 \llceil --- */
                   69907:       {  86,62655,                      /* character number, location */
                   69908:          13, 0,   -4, 0,      /* topleft row,col, and botleft row,col */
                   69909:           {  9,   17, 3,13, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69910:             "\x09\x0f\xe1\x31\x41\x31\x41" }  },
                   69911:       /* --- pixel bitmap for stmary118 char#87 \rrceil --- */
                   69912:       {  87,63288,                      /* character number, location */
                   69913:          13, 0,   -4, 0,      /* topleft row,col, and botleft row,col */
                   69914:           {  9,   17, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69915:             "\x09\xfe\x41\x31\x41\x31" }  },
                   69916:       /* --- pixel bitmap for stmary118 char#88 \arrownot --- */
                   69917:       {  88,63679,                      /* character number, location */
                   69918:           7, 6,    1, 6,      /* topleft row,col, and botleft row,col */
                   69919:           {  4,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69920:             "\x48\x24\x12" }  },
                   69921:       /* --- pixel bitmap for stmary118 char#89 \Arrownot --- */
                   69922:       {  89,64023,                      /* character number, location */
                   69923:           9, 6,   -1, 6,      /* topleft row,col, and botleft row,col */
                   69924:           {  4,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69925:             "\x48\x44\x24\x22\x12" }  },
                   69926:       /* --- pixel bitmap for stmary118 char#90 \Mapstochar --- */
                   69927:       {  90,64398,                      /* character number, location */
                   69928:          10, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   69929:           {  1,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69930:             "\xff\x07" }  },
                   69931:       /* --- pixel bitmap for stmary118 char#91 \mapsfromchar --- */
                   69932:       {  91,64687,                      /* character number, location */
                   69933:           8,-2,    1,-2,      /* topleft row,col, and botleft row,col */
                   69934:           {  1,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69935:             "\x7f" }  },
                   69936:       /* --- pixel bitmap for stmary118 char#92 \Mapsfromchar --- */
                   69937:       {  92,64987,                      /* character number, location */
                   69938:          10,-2,   -1,-2,      /* topleft row,col, and botleft row,col */
                   69939:           {  1,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69940:             "\xff\x07" }  },
                   69941:       /* --- pixel bitmap for stmary118 char#93 \leftrightarrowtriangle --- */
                   69942:       {  93,65806,                      /* character number, location */
                   69943:           7, 1,    1, 1,      /* topleft row,col, and botleft row,col */
                   69944:           { 14,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69945:             "\x18\x86\x85\x16\x3f\x4a\x48\x14\x0a\x86\x01" }  },
                   69946:       /* --- pixel bitmap for stmary118 char#94 \leftarrowtriangle --- */
                   69947:       {  94,66615,                      /* character number, location */
                   69948:           7, 1,    1, 1,      /* topleft row,col, and botleft row,col */
                   69949:           { 14,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69950:             "\x18\x80\x05\x10\xff\x4b\x00\x14\x00\x06\x00" }  },
                   69951:       /* --- pixel bitmap for stmary118 char#95 \rightarrowtriangle --- */
                   69952:       {  95,67407,                      /* character number, location */
                   69953:           7, 1,    1, 1,      /* topleft row,col, and botleft row,col */
                   69954:           { 14,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69955:             "\x00\x06\x80\xf6\x3f\x02\x48\x00\x0a\x80\x01" }  },
                   69956:       /* --- pixel bitmap for stmary118 char#96 \bigtriangledown --- */
                   69957:       {  96,68085,                      /* character number, location */
                   69958:           0, 1,  -16, 1,      /* topleft row,col, and botleft row,col */
                   69959:           { 12,   16, 3,45, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69960:             "\x0d\xa1\xf2\x11\x81\x10\xf1\x21\x61\x20\xf2\x31\x41"
                   69961:             "\x30\xf2\x41\x21\x40\xf1\x52\x50\x61\x51" }  },
                   69962:       /* --- pixel bitmap for stmary118 char#97 \bigtriangleup --- */
                   69963:       {  97,68818,                      /* character number, location */
                   69964:           0, 1,  -16, 1,      /* topleft row,col, and botleft row,col */
                   69965:           { 12,   16, 3,44, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69966:             "\x61\x50\xf1\x52\x50\xf2\x41\x21\x40\xf2\x31\x41\x30"
                   69967:             "\xf1\x21\x61\x20\xf2\x11\x81\x11\xad" }  },
                   69968:       /* --- pixel bitmap for stmary118 char#98 \bigcurlyvee --- */
                   69969:       {  98,69549,                      /* character number, location */
                   69970:           0, 1,  -16, 1,      /* topleft row,col, and botleft row,col */
                   69971:           { 12,   16, 3,35, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69972:             "\x01\xa1\x11\x81\x31\x61\x51\x41\x30\xf2\x41\x21\x40"
                   69973:             "\xf7\x52\x50\x61\x52" }  },
                   69974:       /* --- pixel bitmap for stmary118 char#99 \bigcurlywedge --- */
                   69975:       {  99,70272,                      /* character number, location */
                   69976:           0, 1,  -16, 1,      /* topleft row,col, and botleft row,col */
                   69977:           { 12,   16, 3,34, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69978:             "\x61\x50\xf7\x52\x50\xf2\x41\x21\x40\x31\x41\x51\x61"
                   69979:             "\x31\x81\x11\xa1" }  },
                   69980:       /* --- pixel bitmap for stmary118 char#100 \bigsqcap --- */
                   69981:       { 100,71023,                      /* character number, location */
                   69982:           0, 1,  -16, 1,      /* topleft row,col, and botleft row,col */
                   69983:           { 12,   16, 3, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69984:             "\x0c\x0f\xe1\xa1" }  },
                   69985:       /* --- pixel bitmap for stmary118 char#101 \bigbox --- */
                   69986:       { 101,71770,                      /* character number, location */
                   69987:           0, 1,  -16, 1,      /* topleft row,col, and botleft row,col */
                   69988:           { 12,   16, 3,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69989:             "\x0c\x0f\xd1\xa1\x0c" }  },
                   69990:       /* --- pixel bitmap for stmary118 char#102 \bigparallel --- */
                   69991:       { 102,72345,                      /* character number, location */
                   69992:           0, 1,  -16, 1,      /* topleft row,col, and botleft row,col */
                   69993:           {  5,   16, 3,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69994:             "\xfe\x01\x31\x01\x31" }  },
                   69995:       /* --- pixel bitmap for stmary118 char#103 \biginterleave --- */
                   69996:       { 103,73099,                      /* character number, location */
                   69997:           0, 1,  -16, 1,      /* topleft row,col, and botleft row,col */
                   69998:           {  9,   16, 3,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   69999:             "\xfe\x01\x31\x31\x01\x31\x31" }  },
                   70000:       /* --- pixel bitmap for stmary118 char#104 (noname) --- */
                   70001:       { 104,74005,                      /* character number, location */
                   70002:           0, 1,  -23, 1,      /* topleft row,col, and botleft row,col */
                   70003:           { 16,   23, 3,63, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70004:             "\x0e\x03\xe1\xf2\x11\xc1\x10\xf2\x21\xa1\x20\xf2\x31"
                   70005:             "\x81\x30\xf2\x41\x61\x40\xf2\x51\x41\x50\xf2\x61\x21"
                   70006:             "\x60\xf1\x72\x70\x81\x72" }  },
                   70007:       /* --- pixel bitmap for stmary118 char#105 (noname) --- */
                   70008:       { 105,74899,                      /* character number, location */
                   70009:           0, 1,  -23, 1,      /* topleft row,col, and botleft row,col */
                   70010:           { 16,   23, 3,62, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70011:             "\x81\x70\xf1\x72\x70\xf2\x61\x21\x60\xf2\x51\x41\x50"
                   70012:             "\xf2\x41\x61\x40\xf2\x31\x81\x30\xf2\x21\xa1\x20\xf2"
                   70013:             "\x11\xc1\x11\xee\x03" }  },
                   70014:       /* --- pixel bitmap for stmary118 char#106 (noname) --- */
                   70015:       { 106,75791,                      /* character number, location */
                   70016:           0, 1,  -23, 1,      /* topleft row,col, and botleft row,col */
                   70017:           { 16,   23, 3,49, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70018:             "\x01\xe1\x12\xa2\x10\xf1\x31\x81\x30\x41\x61\x40\xf1"
                   70019:             "\x51\x41\x50\xf2\x61\x21\x60\xfb\x72\x70\x81\x70" }  },
                   70020:       /* --- pixel bitmap for stmary118 char#107 (noname) --- */
                   70021:       { 107,76667,                      /* character number, location */
                   70022:           0, 1,  -23, 1,      /* topleft row,col, and botleft row,col */
                   70023:           { 16,   23, 3,48, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70024:             "\x81\x70\xfb\x72\x70\xf2\x61\x21\x60\xf1\x51\x41\x50"
                   70025:             "\x41\x61\x40\xf1\x31\x81\x30\x12\xa2\x11\xe1" }  },
                   70026:       /* --- pixel bitmap for stmary118 char#108 (noname) --- */
                   70027:       { 108,77564,                      /* character number, location */
                   70028:           0, 1,  -23, 1,      /* topleft row,col, and botleft row,col */
                   70029:           { 16,   23, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70030:             "\x0e\x02\x0f\xe1\xe1\x0f\x61\xe1" }  },
                   70031:       /* --- pixel bitmap for stmary118 char#109 (noname) --- */
                   70032:       { 109,78472,                      /* character number, location */
                   70033:           0, 1,  -23, 1,      /* topleft row,col, and botleft row,col */
                   70034:           { 16,   23, 3,20, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70035:             "\x0e\x02\x0f\xe1\xe1\x0f\x51\xe1\x0e\x02" }  },
                   70036:       /* --- pixel bitmap for stmary118 char#110 (noname) --- */
                   70037:       { 110,79130,                      /* character number, location */
                   70038:           0, 1,  -23, 1,      /* topleft row,col, and botleft row,col */
                   70039:           {  7,   23, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70040:             "\xfe\x01\x51\x0f\x71\x51" }  },
                   70041:       /* --- pixel bitmap for stmary118 char#111 (noname) --- */
                   70042:       { 111,79993,                      /* character number, location */
                   70043:           0, 1,  -23, 1,      /* topleft row,col, and botleft row,col */
                   70044:           { 13,   23, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70045:             "\xfe\x01\x51\x51\x0f\x71\x51\x51" }  },
                   70046:       /* --- pixel bitmap for stmary118 char#112 \bignplus --- */
                   70047:       { 112,80909,                      /* character number, location */
                   70048:           0, 1,  -16, 1,      /* topleft row,col, and botleft row,col */
                   70049:           { 12,   16, 3,44, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70050:             "\x44\x62\x42\x31\x81\x1f\x11\xa1\x0f\x21\x51\x41\x01"
                   70051:             "\x18\x11\x0f\x21\x51\x41\x0f\x31\xa1" }  },
                   70052:       /* --- pixel bitmap for stmary118 char#113 (noname) --- */
                   70053:       { 113,81877,                      /* character number, location */
                   70054:           1, 3,  -18, 3,      /* topleft row,col, and botleft row,col */
                   70055:           {  6,   19, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70056:             "\x06\x0f\xe1\x11\x3f\x11\x11\x36" }  },
                   70057:       /* --- pixel bitmap for stmary118 char#114 (noname) --- */
                   70058:       { 114,82874,                      /* character number, location */
                   70059:           1, 4,  -28, 4,      /* topleft row,col, and botleft row,col */
                   70060:           {  6,   29, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70061:             "\x06\x0f\xe1\x11\x3f\xb1\x11\x36" }  },
                   70062:       /* --- pixel bitmap for stmary118 char#115 (noname) --- */
                   70063:       { 115,83912,                      /* character number, location */
                   70064:           1, 4,  -38, 4,      /* topleft row,col, and botleft row,col */
                   70065:           {  6,   39, 2,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70066:             "\x00\x06\x00\xff\x24\x01\x02\x01\x02\x06" }  },
                   70067:       /* --- pixel bitmap for stmary118 char#116 (noname) --- */
                   70068:       { 116,85042,                      /* character number, location */
                   70069:           1, 5,  -47, 5,      /* topleft row,col, and botleft row,col */
                   70070:           {  6,   48, 2,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70071:             "\x00\x06\x00\xff\x2d\x01\x02\x01\x02\x06" }  },
                   70072:       /* --- pixel bitmap for stmary118 char#117 (noname) --- */
                   70073:       { 117,86151,                      /* character number, location */
                   70074:           0, 6,  -29, 6,      /* topleft row,col, and botleft row,col */
                   70075:           {  7,   29, 3,15, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70076:             "\x07\x0f\xe1\x21\x3f\xc1\x21\x3f" }  },
                   70077:       /* --- pixel bitmap for stmary118 char#118 (noname) --- */
                   70078:       { 118,87114,                      /* character number, location */
                   70079:           1, 6,  -28, 6,      /* topleft row,col, and botleft row,col */
                   70080:           {  7,   29, 3,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70081:             "\xfe\x01\x21\x3f\xc1\x21\x37" }  },
                   70082:       /* --- pixel bitmap for stmary118 char#119 (noname) --- */
                   70083:       { 119,88068,                      /* character number, location */
                   70084:           1, 6,  -11, 6,      /* topleft row,col, and botleft row,col */
                   70085:           {  4,   12, 3, 6, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70086:             "\xfb\x01\x21" }  },
                   70087:       /* --- pixel bitmap for stmary118 char#120 (noname) --- */
                   70088:       { 120,89008,                      /* character number, location */
                   70089:           0, 1,  -23, 1,      /* topleft row,col, and botleft row,col */
                   70090:           { 16,   23, 3,52, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70091:             "\x56\x82\x62\x51\xa1\x20\xf1\x11\xc1\x1f\x11\xe1\x0f"
                   70092:             "\x41\x71\x61\x01\x1c\x11\x0f\x41\x71\x61\x0f\x41\xe1" }  },
                   70093:       /* --- pixel bitmap for stmary118 char#121 (noname) --- */
                   70094:       { 121,89999,                      /* character number, location */
                   70095:           1, 0,  -18, 0,      /* topleft row,col, and botleft row,col */
                   70096:           {  6,   19, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70097:             "\x06\xfe\x31\x11\xf1\x31\x11\x06" }  },
                   70098:       /* --- pixel bitmap for stmary118 char#122 (noname) --- */
                   70099:       { 122,90957,                      /* character number, location */
                   70100:           1, 0,  -28, 0,      /* topleft row,col, and botleft row,col */
                   70101:           {  6,   29, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70102:             "\x06\xfe\x31\x11\xfb\x31\x11\x06" }  },
                   70103:       /* --- pixel bitmap for stmary118 char#123 (noname) --- */
                   70104:       { 123,91982,                      /* character number, location */
                   70105:           1, 0,  -38, 0,      /* topleft row,col, and botleft row,col */
                   70106:           {  6,   39, 2,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70107:             "\x00\x06\xff\x24\x02\x01\x02\x01\x00\x06" }  },
                   70108:       /* --- pixel bitmap for stmary118 char#124 (noname) --- */
                   70109:       { 124,93073,                      /* character number, location */
                   70110:           1, 0,  -47, 0,      /* topleft row,col, and botleft row,col */
                   70111:           {  6,   48, 2,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70112:             "\x00\x06\xff\x2d\x02\x01\x02\x01\x00\x06" }  },
                   70113:       /* --- pixel bitmap for stmary118 char#125 (noname) --- */
                   70114:       { 125,94169,                      /* character number, location */
                   70115:           0, 0,  -29, 0,      /* topleft row,col, and botleft row,col */
                   70116:           {  7,   29, 3,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70117:             "\x07\xfe\x31\x21\xfc\x31\x21" }  },
                   70118:       /* --- pixel bitmap for stmary118 char#126 (noname) --- */
                   70119:       { 126,95213,                      /* character number, location */
                   70120:           1, 0,  -28, 0,      /* topleft row,col, and botleft row,col */
                   70121:           {  7,   29, 3,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70122:             "\xfe\x31\x21\xfc\x31\x21\x07" }  },
                   70123:       /* --- pixel bitmap for stmary118 char#127 (noname) --- */
                   70124:       { 127,96154,                      /* character number, location */
                   70125:           1, 3,  -11, 3,      /* topleft row,col, and botleft row,col */
                   70126:           {  4,   12, 3, 6, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70127:             "\xfb\x01\x21" }  },
                   70128:       /* --- trailer  --- */
                   70129:       { -99, -999,  0,0,0,0, { 0,0,0,0, (pixbyte *)"\0" }  }
                   70130:    } ;
                   70131: 
                   70132: 
                   70133: /* --- size=3 for .131gf ---
                   70134:  * mf '\mode=preview; mag=magstep(-16.39322518098640003469); input stmary10'
                   70135:  * --------------------------------------------------------------------- */
                   70136: /* --- fontdef for stmary131 --- */
                   70137: static	chardef  stmary131[] =
                   70138:    {
                   70139:       /* --- pixel bitmap for stmary131 char#0 \shortleftarrow --- */
                   70140:       {   0,  948,                      /* character number, location */
                   70141:           8, 1,    1, 1,      /* topleft row,col, and botleft row,col */
                   70142:           { 12,    7, 3,19, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70143:             "\xf1\x21\x90\x11\xac\x11\xa0\xf1\x21\x90" }  },
                   70144:       /* --- pixel bitmap for stmary131 char#1 \shortrightarrow --- */
                   70145:       {   1, 1883,                      /* character number, location */
                   70146:           8, 1,    1, 1,      /* topleft row,col, and botleft row,col */
                   70147:           { 12,    7, 3,19, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70148:             "\xf1\x91\x20\xa1\x1c\xa1\x10\xf1\x91\x20" }  },
                   70149:       /* --- pixel bitmap for stmary131 char#2 \shortuparrow --- */
                   70150:       {   2, 2678,                      /* character number, location */
                   70151:          11, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   70152:           {  7,   13, 3,21, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70153:             "\x31\x53\x31\x11\x11\x11\x21\x21\xf8\x31\x30" }  },
                   70154:       /* --- pixel bitmap for stmary131 char#3 \shortdownarrow --- */
                   70155:       {   3, 3495,                      /* character number, location */
                   70156:          11, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   70157:           {  7,   13, 3,21, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70158:             "\xf8\x31\x31\x21\x21\x11\x11\x11\x33\x51\x30" }  },
                   70159:       /* --- pixel bitmap for stmary131 char#4 \Yup --- */
                   70160:       {   4, 4092,                      /* character number, location */
                   70161:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   70162:           {  8,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70163:             "\x10\x10\x10\x10\x10\x10\x18\x24\x42\x81" }  },
                   70164:       /* --- pixel bitmap for stmary131 char#5 \Ydown --- */
                   70165:       {   5, 4669,                      /* character number, location */
                   70166:           9, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   70167:           {  8,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70168:             "\x81\x42\x24\x18\x10\x10\x10\x10\x10\x10" }  },
                   70169:       /* --- pixel bitmap for stmary131 char#6 \Yleft --- */
                   70170:       {   6, 5287,                      /* character number, location */
                   70171:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   70172:           {  9,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70173:             "\x00\x01\x01\xf1\x01\x02\x08\x10\x40\x00\x01" }  },
                   70174:       /* --- pixel bitmap for stmary131 char#7 \Yright --- */
                   70175:       {   7, 5898,                      /* character number, location */
                   70176:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   70177:           {  9,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70178:             "\x01\x04\x10\xc0\x8f\x80\x00\x01\x01\x01\x00" }  },
                   70179:       /* --- pixel bitmap for stmary131 char#8 \varcurlyvee --- */
                   70180:       {   8, 6551,                      /* character number, location */
                   70181:          13, 0,   -4, 0,      /* topleft row,col, and botleft row,col */
                   70182:           { 13,   17, 3,43, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70183:             "\x01\xb1\x11\x91\x31\x71\x20\xf1\x31\x51\x30\xf1\x41"
                   70184:             "\x31\x40\xf2\x51\x11\x50\xf6\x61\x60" }  },
                   70185:       /* --- pixel bitmap for stmary131 char#9 \varcurlywedge --- */
                   70186:       {   9, 7252,                      /* character number, location */
                   70187:          13, 0,   -4, 0,      /* topleft row,col, and botleft row,col */
                   70188:           { 13,   17, 3,42, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70189:             "\xf6\x61\x60\xf2\x51\x11\x50\xf1\x41\x31\x40\xf1\x31"
                   70190:             "\x51\x30\x21\x71\x31\x91\x11\xb1" }  },
                   70191:       /* --- pixel bitmap for stmary131 char#10 \minuso --- */
                   70192:       {  10, 8055,                      /* character number, location */
                   70193:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   70194:           { 12,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70195:             "\xf0\x80\x10\x04\x42\x20\xff\x4f\x20\x04\x82\x10\xf0"
                   70196:             "\x00" }  },
                   70197:       /* --- pixel bitmap for stmary131 char#11 \baro --- */
                   70198:       {  11, 8731,                      /* character number, location */
                   70199:          11, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   70200:           {  8,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70201:             "\x10\x10\x10\x3c\x52\x91\x91\x91\x52\x3c\x10\x10\x10" }  },
                   70202:       /* --- pixel bitmap for stmary131 char#12 \sslash --- */
                   70203:       {  12, 9393,                      /* character number, location */
                   70204:          14, 1,   -5, 1,      /* topleft row,col, and botleft row,col */
                   70205:           { 10,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70206:             "\x40\x02\x09\x12\x48\x20\x41\x02\x09\x24\x48\x20\x81"
                   70207:             "\x04\x09\x24\x90\x20\x81\x04\x12\x24\x90\x00" }  },
                   70208:       /* --- pixel bitmap for stmary131 char#13 \bblash --- */
                   70209:       {  13,10086,                      /* character number, location */
                   70210:          14, 1,   -5, 1,      /* topleft row,col, and botleft row,col */
                   70211:           { 10,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70212:             "\x09\x24\x20\x81\x04\x12\x90\x40\x02\x09\x48\x20\x81"
                   70213:             "\x04\x24\x90\x40\x02\x12\x48\x20\x01\x09\x24" }  },
                   70214:       /* --- pixel bitmap for stmary131 char#14 \moo --- */
                   70215:       {  14,10919,                      /* character number, location */
                   70216:           9, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   70217:           { 11,    9, 3,23, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70218:             "\xf3\x51\x5b\xf1\x51\x51\x31\x11\x31\x13\x33\x10" }  },
                   70219:       /* --- pixel bitmap for stmary131 char#15 \varotimes --- */
                   70220:       {  15,11708,                      /* character number, location */
                   70221:          11, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   70222:           { 13,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70223:             "\xf0\x01\x41\x10\x10\x05\x15\x11\x43\x61\x10\x0c\x85"
                   70224:             "\x11\x51\x41\x11\x10\x04\x01\x1f\x00" }  },
                   70225:       /* --- pixel bitmap for stmary131 char#16 \varoast --- */
                   70226:       {  16,12670,                      /* character number, location */
                   70227:          11, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   70228:           { 13,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70229:             "\xf0\x01\x41\x10\x11\x21\x94\x24\xe3\x63\x18\x8c\x8f"
                   70230:             "\x49\x52\x08\x11\x11\x04\x01\x1f\x00" }  },
                   70231:       /* --- pixel bitmap for stmary131 char#17 \varobar --- */
                   70232:       {  17,13505,                      /* character number, location */
                   70233:          11, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   70234:           { 13,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70235:             "\xf0\x01\x49\x10\x11\x21\x14\x04\x83\x60\x10\x0c\x82"
                   70236:             "\x41\x50\x08\x11\x11\x24\x01\x1f\x00" }  },
                   70237:       /* --- pixel bitmap for stmary131 char#18 \varodot --- */
                   70238:       {  18,14327,                      /* character number, location */
                   70239:          11, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   70240:           { 13,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70241:             "\xf0\x01\x41\x10\x10\x01\x14\x00\x83\x60\x38\x0c\x82"
                   70242:             "\x01\x50\x00\x11\x10\x04\x01\x1f\x00" }  },
                   70243:       /* --- pixel bitmap for stmary131 char#19 \varoslash --- */
                   70244:       {  19,15144,                      /* character number, location */
                   70245:          11, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   70246:           { 13,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70247:             "\xf0\x01\x41\x10\x10\x01\x15\x10\x03\x61\x10\x0c\x81"
                   70248:             "\x11\x50\x01\x11\x10\x04\x01\x1f\x00" }  },
                   70249:       /* --- pixel bitmap for stmary131 char#20 \varobslash --- */
                   70250:       {  20,15973,                      /* character number, location */
                   70251:          11, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   70252:           { 13,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70253:             "\xf0\x01\x41\x10\x10\x05\x14\x01\x43\x60\x10\x0c\x84"
                   70254:             "\x01\x51\x40\x11\x10\x04\x01\x1f\x00" }  },
                   70255:       /* --- pixel bitmap for stmary131 char#21 \varocircle --- */
                   70256:       {  21,16941,                      /* character number, location */
                   70257:          11, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   70258:           { 13,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70259:             "\xf0\x01\x41\x10\x10\x71\x14\x11\x13\x64\x82\x4c\x90"
                   70260:             "\x11\x51\x1c\x11\x10\x04\x01\x1f\x00" }  },
                   70261:       /* --- pixel bitmap for stmary131 char#22 \varoplus --- */
                   70262:       {  22,17775,                      /* character number, location */
                   70263:          11, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   70264:           { 13,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70265:             "\xf0\x01\x49\x10\x11\x21\x14\x04\x83\xe0\xff\x0f\x82"
                   70266:             "\x41\x50\x08\x11\x11\x24\x01\x1f\x00" }  },
                   70267:       /* --- pixel bitmap for stmary131 char#23 \varominus --- */
                   70268:       {  23,18604,                      /* character number, location */
                   70269:          11, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   70270:           { 13,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70271:             "\xf0\x01\x41\x10\x10\x01\x14\x00\x03\xe0\xff\x0f\x80"
                   70272:             "\x01\x50\x00\x11\x10\x04\x01\x1f\x00" }  },
                   70273:       /* --- pixel bitmap for stmary131 char#24 \boxast --- */
                   70274:       {  24,19461,                      /* character number, location */
                   70275:          10, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   70276:           { 11,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70277:             "\xff\x0f\x60\x08\x43\x98\xcf\x18\xe6\x33\x84\x21\x0c"
                   70278:             "\xe0\xff\x01" }  },
                   70279:       /* --- pixel bitmap for stmary131 char#25 \boxbar --- */
                   70280:       {  25,20204,                      /* character number, location */
                   70281:          10, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   70282:           { 11,   11, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70283:             "\x0b\x0f\x81\x41\x41\x0b" }  },
                   70284:       /* --- pixel bitmap for stmary131 char#26 \boxdot --- */
                   70285:       {  26,20951,                      /* character number, location */
                   70286:          10, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   70287:           { 11,   11, 3,30, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70288:             "\x0b\x0f\x21\x91\x01\x41\x42\x33\x32\x41\x41\x0f\x21"
                   70289:             "\x91\x0b" }  },
                   70290:       /* --- pixel bitmap for stmary131 char#27 \boxslash --- */
                   70291:       {  27,21688,                      /* character number, location */
                   70292:          10, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   70293:           { 11,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70294:             "\xff\x0f\x70\x40\x03\x19\xc4\x10\x46\x30\x81\x05\x1c"
                   70295:             "\xe0\xff\x01" }  },
                   70296:       /* --- pixel bitmap for stmary131 char#28 \boxbslash --- */
                   70297:       {  28,22434,                      /* character number, location */
                   70298:          10, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   70299:           { 11,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70300:             "\xff\x1f\x60\x01\x13\x18\xc1\x10\x06\x31\x90\x01\x0d"
                   70301:             "\xf0\xff\x01" }  },
                   70302:       /* --- pixel bitmap for stmary131 char#29 \boxcircle --- */
                   70303:       {  29,23158,                      /* character number, location */
                   70304:          10, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   70305:           { 10,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70306:             "\xff\x07\x18\x60\x8c\x49\x26\x19\x63\x80\x01\xfe\x0f" }  },
                   70307:       /* --- pixel bitmap for stmary131 char#30 \boxbox --- */
                   70308:       {  30,23895,                      /* character number, location */
                   70309:          10, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   70310:           { 11,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70311:             "\xff\x0f\x60\x00\xf3\x99\xc8\x44\x26\x32\x9f\x01\x0c"
                   70312:             "\xe0\xff\x01" }  },
                   70313:       /* --- pixel bitmap for stmary131 char#31 \boxempty --- */
                   70314:       {  31,24636,                      /* character number, location */
                   70315:          10, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   70316:           { 11,   11, 3,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70317:             "\x0b\x0f\x81\x91\x0b" }  },
                   70318:       /* --- pixel bitmap for stmary131 char#32 \lightning --- */
                   70319:       {  32,25513,                      /* character number, location */
                   70320:          13, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   70321:           {  6,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70322:             "\x20\x08\x41\x08\x82\xd0\x2c\x04\x41\x48\x62\xf0\x04" }  },
                   70323:       /* --- pixel bitmap for stmary131 char#33 \merge --- */
                   70324:       {  33,26294,                      /* character number, location */
                   70325:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   70326:           { 14,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70327:             "\x10\x02\xcc\x80\x52\xa0\x14\xc8\x04\x31\x42\x8c\x10"
                   70328:             "\x23\xc2\x90\x30\x24\x12\x85\x84\x21\x21" }  },
                   70329:       /* --- pixel bitmap for stmary131 char#34 \vartimes --- */
                   70330:       {  34,26947,                      /* character number, location */
                   70331:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   70332:           {  8,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70333:             "\x81\x42\x42\x24\x24\x18\x08\x18\x24\x24\x42\x42\x81" }  },
                   70334:       /* --- pixel bitmap for stmary131 char#35 \fatsemi --- */
                   70335:       {  35,27520,                      /* character number, location */
                   70336:          10, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   70337:           {  4,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70338:             "\x96\x69\x00\x96\xe9\x48\x24" }  },
                   70339:       /* --- pixel bitmap for stmary131 char#36 \sswarrow --- */
                   70340:       {  36,28395,                      /* character number, location */
                   70341:          13, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   70342:           {  9,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70343:             "\x00\x01\x02\x02\x04\x04\x08\x10\x10\x20\x20\x40\x80"
                   70344:             "\x80\x20\x81\x03\x1e\x04\x00" }  },
                   70345:       /* --- pixel bitmap for stmary131 char#37 \ssearrow --- */
                   70346:       {  37,29272,                      /* character number, location */
                   70347:          13, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   70348:           {  9,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70349:             "\x01\x02\x08\x10\x40\x80\x00\x01\x04\x08\x20\x40\x80"
                   70350:             "\x00\x02\x24\x38\x3c\x40\x00" }  },
                   70351:       /* --- pixel bitmap for stmary131 char#38 \curlywedgeuparrow --- */
                   70352:       {  38,30286,                      /* character number, location */
                   70353:          13, 0,   -4, 0,      /* topleft row,col, and botleft row,col */
                   70354:           { 13,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70355:             "\x40\x00\x08\x80\x03\xac\x01\x04\x80\x00\x10\x00\x05"
                   70356:             "\xa0\x00\x14\x40\x04\x88\x80\x20\x10\x04\x01\x11\x40"
                   70357:             "\x01\x10" }  },
                   70358:       /* --- pixel bitmap for stmary131 char#39 \curlywedgedownarrow --- */
                   70359:       {  39,31324,                      /* character number, location */
                   70360:          13, 0,   -5, 0,      /* topleft row,col, and botleft row,col */
                   70361:           { 13,   18, 3,49, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70362:             "\xf6\x61\x60\xf2\x51\x11\x50\xf1\x41\x31\x40\x31\x51"
                   70363:             "\x31\x21\x51\x22\x11\x71\x13\x95\x73\x31\x51\x31" }  },
                   70364:       /* --- pixel bitmap for stmary131 char#40 \fatslash --- */
                   70365:       {  40,31990,                      /* character number, location */
                   70366:          14, 5,   -5, 5,      /* topleft row,col, and botleft row,col */
                   70367:           { 11,   19, 3,51, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70368:             "\x65\x61\x31\xf2\x51\x31\x10\xf2\x41\x31\x20\xf2\x31"
                   70369:             "\x31\x30\xf2\x21\x31\x40\xf2\x11\x31\x51\x31\x65\x61" }  },
                   70370:       /* --- pixel bitmap for stmary131 char#41 \fatbslash --- */
                   70371:       {  41,32670,                      /* character number, location */
                   70372:          14, 1,   -5, 1,      /* topleft row,col, and botleft row,col */
                   70373:           { 11,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70374:             "\x1f\x88\x80\x08\x44\x20\x02\x22\x10\x81\x08\x88\x40"
                   70375:             "\x04\x22\x20\x02\x11\x88\x80\x08\x44\x20\x02\x22\xf0"
                   70376:             "\x01" }  },
                   70377:       /* --- pixel bitmap for stmary131 char#42 \lbag --- */
                   70378:       {  42,33249,                      /* character number, location */
                   70379:          14, 1,   -5, 1,      /* topleft row,col, and botleft row,col */
                   70380:           {  6,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70381:             "\x46\x82\x20\x08\x82\x20\x04\x41\x10\x82\x20\x08\x02"
                   70382:             "\x81\x03" }  },
                   70383:       /* --- pixel bitmap for stmary131 char#43 \rbag --- */
                   70384:       {  43,33797,                      /* character number, location */
                   70385:          14, 1,   -5, 1,      /* topleft row,col, and botleft row,col */
                   70386:           {  6,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70387:             "\x18\x49\x10\x04\x41\x10\x08\x82\x20\x10\x04\x41\x10"
                   70388:             "\x72\x00" }  },
                   70389:       /* --- pixel bitmap for stmary131 char#44 \varbigcirc --- */
                   70390:       {  44,34683,                      /* character number, location */
                   70391:          13, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   70392:           { 16,   16, 3,43, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70393:             "\x56\x82\x62\x51\xa1\x20\xf1\x11\xc1\x1f\x51\xe1\xf1"
                   70394:             "\x11\xc1\x10\x21\xa1\x52\x62\x86\x51" }  },
                   70395:       /* --- pixel bitmap for stmary131 char#45 \leftrightarroweq --- */
                   70396:       {  45,35703,                      /* character number, location */
                   70397:          10, 1,    2, 1,      /* topleft row,col, and botleft row,col */
                   70398:           { 12,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70399:             "\x04\x42\x20\x02\xf4\xff\x02\x44\x20\x04\xf2\xff" }  },
                   70400:       /* --- pixel bitmap for stmary131 char#46 \curlyveedownarrow --- */
                   70401:       {  46,36329,                      /* character number, location */
                   70402:          13, 0,   -4, 0,      /* topleft row,col, and botleft row,col */
                   70403:           { 13,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70404:             "\x01\x50\x00\x11\x10\x04\x81\x20\x20\x02\x44\x00\x05"
                   70405:             "\xa0\x00\x14\x00\x01\x20\x00\x04\xb0\x06\x38\x00\x02"
                   70406:             "\x40\x00" }  },
                   70407:       /* --- pixel bitmap for stmary131 char#47 \curlyveeuparrow --- */
                   70408:       {  47,36987,                      /* character number, location */
                   70409:          14, 0,   -4, 0,      /* topleft row,col, and botleft row,col */
                   70410:           { 13,   18, 3,49, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70411:             "\x31\x51\x33\x75\x93\x11\x71\x12\x21\x51\x21\x31\x51"
                   70412:             "\x30\xf1\x41\x31\x40\xf2\x51\x11\x50\xf6\x61\x62" }  },
                   70413:       /* --- pixel bitmap for stmary131 char#48 \nnwarrow --- */
                   70414:       {  48,37582,                      /* character number, location */
                   70415:          13, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   70416:           {  9,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70417:             "\x04\x78\x38\x48\x80\x00\x02\x04\x08\x20\x40\x00\x01"
                   70418:             "\x02\x04\x10\x20\x80\x00\x01" }  },
                   70419:       /* --- pixel bitmap for stmary131 char#49 \nnearrow --- */
                   70420:       {  49,38147,                      /* character number, location */
                   70421:          13, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   70422:           {  9,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70423:             "\x40\xf0\x80\x03\x09\x02\x02\x04\x08\x08\x10\x10\x20"
                   70424:             "\x40\x40\x80\x80\x00\x01\x00" }  },
                   70425:       /* --- pixel bitmap for stmary131 char#50 \leftslice --- */
                   70426:       {  50,38900,                      /* character number, location */
                   70427:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   70428:           { 12,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70429:             "\x00\x02\x58\x70\xc8\x80\x03\xc8\x80\x70\x08\x58\x00"
                   70430:             "\x02" }  },
                   70431:       /* --- pixel bitmap for stmary131 char#51 \rightslice --- */
                   70432:       {  51,39650,                      /* character number, location */
                   70433:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   70434:           { 12,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70435:             "\x04\xa0\x01\xe1\x10\x30\x01\x1c\x30\xe1\xa0\x01\x04"
                   70436:             "\x00" }  },
                   70437:       /* --- pixel bitmap for stmary131 char#52 \varolessthan --- */
                   70438:       {  52,40448,                      /* character number, location */
                   70439:          11, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   70440:           { 13,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70441:             "\xf0\x01\x41\x10\x18\xc1\x14\x07\x1b\xe0\x00\x6c\x80"
                   70442:             "\x71\x50\x30\x11\x18\x04\x01\x1f\x00" }  },
                   70443:       /* --- pixel bitmap for stmary131 char#53 \varogreaterthan --- */
                   70444:       {  53,41277,                      /* character number, location */
                   70445:          11, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   70446:           { 13,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70447:             "\xf0\x01\x41\x30\x10\x19\x14\x1c\x03\x6c\x00\x0e\xb0"
                   70448:             "\xc1\x51\x06\x31\x10\x04\x01\x1f\x00" }  },
                   70449:       /* --- pixel bitmap for stmary131 char#54 \varovee --- */
                   70450:       {  54,42098,                      /* character number, location */
                   70451:          11, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   70452:           { 13,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70453:             "\xf0\x01\x41\x10\x10\x03\x96\x20\x13\x64\x44\x8c\x88"
                   70454:             "\x11\x51\x14\x91\x12\x24\x01\x1f\x00" }  },
                   70455:       /* --- pixel bitmap for stmary131 char#55 \varowedge --- */
                   70456:       {  55,42939,                      /* character number, location */
                   70457:          11, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   70458:           { 13,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70459:             "\xf0\x01\x49\x90\x12\x51\x14\x11\x23\x62\x44\x4c\x90"
                   70460:             "\x09\xd2\x80\x11\x10\x04\x01\x1f\x00" }  },
                   70461:       /* --- pixel bitmap for stmary131 char#56 \talloblong --- */
                   70462:       {  56,43570,                      /* character number, location */
                   70463:          14, 2,   -5, 2,      /* topleft row,col, and botleft row,col */
                   70464:           {  5,   19, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70465:             "\x05\x0f\xe1\x31\x0f\x11\x31\x05" }  },
                   70466:       /* --- pixel bitmap for stmary131 char#57 \interleave --- */
                   70467:       {  57,44302,                      /* character number, location */
                   70468:          14, 2,   -5, 2,      /* topleft row,col, and botleft row,col */
                   70469:           {  9,   19, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70470:             "\xfe\x01\x31\x31\x0f\x31\x31\x31" }  },
                   70471:       /* --- pixel bitmap for stmary131 char#58 \obar --- */
                   70472:       {  58,45142,                      /* character number, location */
                   70473:          11, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   70474:           { 12,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70475:             "\xf8\x41\x24\x42\x24\x44\x41\x18\x84\x41\x18\x84\x41"
                   70476:             "\x28\x44\x42\x44\x24\xf8\x01" }  },
                   70477:       /* --- pixel bitmap for stmary131 char#59 \oslash --- */
                   70478:       {  59,45944,                      /* character number, location */
                   70479:          11, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   70480:           { 12,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70481:             "\xf8\x41\x20\x06\xa4\x40\x11\x18\x82\x21\x18\x84\x81"
                   70482:             "\x28\x50\x02\x46\x20\xf8\x01" }  },
                   70483:       /* --- pixel bitmap for stmary131 char#60 \olessthan --- */
                   70484:       {  60,46737,                      /* character number, location */
                   70485:          11, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   70486:           { 12,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70487:             "\xf8\x41\x20\x02\x27\x4c\x31\xd8\x80\x03\xd8\x80\x31"
                   70488:             "\x28\x4c\x02\x47\x20\xf8\x01" }  },
                   70489:       /* --- pixel bitmap for stmary131 char#61 \ogreaterthan --- */
                   70490:       {  61,47531,                      /* character number, location */
                   70491:          11, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   70492:           { 12,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70493:             "\xf8\x41\x20\x0e\x24\x43\xc1\x18\xb0\x01\x1c\xb0\xc1"
                   70494:             "\x28\x43\x0e\x44\x20\xf8\x01" }  },
                   70495:       /* --- pixel bitmap for stmary131 char#62 \ovee --- */
                   70496:       {  62,48317,                      /* character number, location */
                   70497:          11, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   70498:           { 12,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70499:             "\xf8\x41\x20\x06\x66\x60\x05\x9a\x90\x09\x19\x89\x91"
                   70500:             "\x28\x49\x62\x44\x26\xf8\x01" }  },
                   70501:       /* --- pixel bitmap for stmary131 char#63 \owedge --- */
                   70502:       {  63,49121,                      /* character number, location */
                   70503:          11, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   70504:           { 12,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70505:             "\xf8\x41\x26\x62\x24\x49\x91\x18\x89\x09\x99\x90\x05"
                   70506:             "\x6a\x60\x06\x46\x20\xf8\x01" }  },
                   70507:       /* --- pixel bitmap for stmary131 char#64 \oblong --- */
                   70508:       {  64,49813,                      /* character number, location */
                   70509:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   70510:           { 10,   11, 3,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70511:             "\x0a\x0f\x81\x81\x0a" }  },
                   70512:       /* --- pixel bitmap for stmary131 char#65 \inplus --- */
                   70513:       {  65,50526,                      /* character number, location */
                   70514:          10, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   70515:           {  8,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70516:             "\xf8\x04\x02\x11\x11\xff\x11\x11\x02\x04\xf8" }  },
                   70517:       /* --- pixel bitmap for stmary131 char#66 \niplus --- */
                   70518:       {  66,51238,                      /* character number, location */
                   70519:          10, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   70520:           {  8,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70521:             "\x1f\x20\x40\x88\x88\xff\x88\x88\x40\x20\x1f" }  },
                   70522:       /* --- pixel bitmap for stmary131 char#67 \nplus --- */
                   70523:       {  67,51954,                      /* character number, location */
                   70524:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   70525:           { 10,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70526:             "\xfc\x08\x14\x60\x88\x21\xf6\x1b\x62\x88\x21\x06\x18"
                   70527:             "\x20" }  },
                   70528:       /* --- pixel bitmap for stmary131 char#68 \subsetplus --- */
                   70529:       {  68,52752,                      /* character number, location */
                   70530:          10, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   70531:           { 10,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70532:             "\xf8\x13\x20\x40\x08\x21\xe4\x13\x42\x08\x02\x10\x80"
                   70533:             "\x3f" }  },
                   70534:       /* --- pixel bitmap for stmary131 char#69 \supsetplus --- */
                   70535:       {  69,53530,                      /* character number, location */
                   70536:          10, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   70537:           { 10,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70538:             "\x7f\x00\x02\x10\x84\x10\xf2\x09\x21\x84\x00\x01\xf2"
                   70539:             "\x07" }  },
                   70540:       /* --- pixel bitmap for stmary131 char#70 \subsetpluseq --- */
                   70541:       {  70,54326,                      /* character number, location */
                   70542:          12, 2,   -3, 2,      /* topleft row,col, and botleft row,col */
                   70543:           { 10,   15, 3,34, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70544:             "\x37\x21\x81\x8f\x11\x41\x41\x25\x2f\x11\x41\x40\x11"
                   70545:             "\xa1\xa7\xf2\xaa" }  },
                   70546:       /* --- pixel bitmap for stmary131 char#71 \supsetpluseq --- */
                   70547:       {  71,55128,                      /* character number, location */
                   70548:          12, 2,   -3, 2,      /* topleft row,col, and botleft row,col */
                   70549:           { 10,   15, 3,36, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70550:             "\x07\xa1\xa1\x10\xf1\x41\x41\x25\x21\xf1\x41\x41\x81"
                   70551:             "\x81\x27\x30\xf2\xaa" }  },
                   70552:       /* --- pixel bitmap for stmary131 char#72 \Lbag --- */
                   70553:       {  72,55893,                      /* character number, location */
                   70554:          14, 1,   -5, 1,      /* topleft row,col, and botleft row,col */
                   70555:           {  6,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70556:             "\x46\x92\x20\x08\xc2\x10\x86\x21\x0c\xc3\x30\x0c\x06"
                   70557:             "\x83\x03" }  },
                   70558:       /* --- pixel bitmap for stmary131 char#73 \Rbag --- */
                   70559:       {  73,56383,                      /* character number, location */
                   70560:          14, 1,   -5, 1,      /* topleft row,col, and botleft row,col */
                   70561:           {  6,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70562:             "\x18\x49\x12\x04\xc1\x20\x18\x06\xc1\x30\x0c\xc3\x18"
                   70563:             "\x73\x00" }  },
                   70564:       /* --- pixel bitmap for stmary131 char#74 \llbracket --- */
                   70565:       {  74,57230,                      /* character number, location */
                   70566:          14, 1,   -5, 1,      /* topleft row,col, and botleft row,col */
                   70567:           {  6,   19, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70568:             "\x06\x0f\xe1\x11\x3f\x11\x11\x36" }  },
                   70569:       /* --- pixel bitmap for stmary131 char#75 \rrbracket --- */
                   70570:       {  75,58108,                      /* character number, location */
                   70571:          14, 1,   -5, 1,      /* topleft row,col, and botleft row,col */
                   70572:           {  5,   19, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70573:             "\x05\xfe\x21\x11\xf1\x21\x11\x05" }  },
                   70574:       /* --- pixel bitmap for stmary131 char#76 \llparenthesis --- */
                   70575:       {  76,58844,                      /* character number, location */
                   70576:          14, 1,   -5, 1,      /* topleft row,col, and botleft row,col */
                   70577:           {  5,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70578:             "\x10\x53\x29\x65\x8c\x31\xc6\x18\xa5\x94\x14\x43" }  },
                   70579:       /* --- pixel bitmap for stmary131 char#77 \rrparenthesis --- */
                   70580:       {  77,59577,                      /* character number, location */
                   70581:          14, 1,   -5, 1,      /* topleft row,col, and botleft row,col */
                   70582:           {  5,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70583:             "\x61\x94\x94\x52\x8c\x31\xc6\x18\x53\x4a\x65\x04" }  },
                   70584:       /* --- pixel bitmap for stmary131 char#78 \binampersand --- */
                   70585:       {  78,60366,                      /* character number, location */
                   70586:          11, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   70587:           { 12,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70588:             "\xf0\x80\x10\x04\x41\x10\x08\x01\x0d\x3c\x28\x44\x81"
                   70589:             "\x15\x20\x01\x25\x8c\x3c\x00" }  },
                   70590:       /* --- pixel bitmap for stmary131 char#79 \bindnasrepma --- */
                   70591:       {  79,61053,                      /* character number, location */
                   70592:          11, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   70593:           { 12,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70594:             "\xc0\x13\x43\x0a\x48\x80\x1a\x28\x42\xc1\x03\x0b\x08"
                   70595:             "\x81\x20\x08\x82\x10\xf0\x00" }  },
                   70596:       /* --- pixel bitmap for stmary131 char#80 \trianglelefteqslant --- */
                   70597:       {  80,61815,                      /* character number, location */
                   70598:          12, 2,   -3, 2,      /* topleft row,col, and botleft row,col */
                   70599:           { 10,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70600:             "\x00\x02\x0e\x26\x86\x06\x06\x68\x20\x86\x60\x06\x6e"
                   70601:             "\x20\x06\x60\x00\x06\x20" }  },
                   70602:       /* --- pixel bitmap for stmary131 char#81 \trianglerighteqslant --- */
                   70603:       {  81,62572,                      /* character number, location */
                   70604:          12, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   70605:           { 12,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70606:             "\x03\xd0\x00\x31\x10\x0c\x01\x13\xc0\x01\x13\x0c\x31"
                   70607:             "\xd0\xc0\x03\x03\x0c\x30\xc0\x00\x03\x00" }  },
                   70608:       /* --- pixel bitmap for stmary131 char#82 \ntrianglelefteqslant --- */
                   70609:       {  82,63379,                      /* character number, location */
                   70610:          15, 2,   -5, 2,      /* topleft row,col, and botleft row,col */
                   70611:           { 10,   20, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70612:             "\x00\x02\x04\x10\xa0\x80\x83\x89\xa5\x91\x21\x9a\x88"
                   70613:             "\x21\x9c\x89\x3b\x88\x01\x19\x84\x09\x28\x80\x00" }  },
                   70614:       /* --- pixel bitmap for stmary131 char#83 \ntrianglerighteqslant --- */
                   70615:       {  83,64213,                      /* character number, location */
                   70616:          15, 1,   -5, 1,      /* topleft row,col, and botleft row,col */
                   70617:           { 12,   20, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70618:             "\x00\x04\x20\x00\x32\x10\x0d\x11\x0b\xc1\x10\x38\x41"
                   70619:             "\x1c\x34\xe1\x10\x03\x1d\x3c\x31\xd0\x80\x03\x0c\x70"
                   70620:             "\x00\x04\x40\x00" }  },
                   70621:       /* --- pixel bitmap for stmary131 char#84 \llfloor --- */
                   70622:       {  84,64893,                      /* character number, location */
                   70623:          14, 1,   -5, 1,      /* topleft row,col, and botleft row,col */
                   70624:           {  9,   19, 3,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70625:             "\xfe\x01\x31\x4f\x21\x31\x49" }  },
                   70626:       /* --- pixel bitmap for stmary131 char#85 \rrfloor --- */
                   70627:       {  85,65573,                      /* character number, location */
                   70628:          14, 0,   -5, 0,      /* topleft row,col, and botleft row,col */
                   70629:           {  9,   19, 3,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70630:             "\xfe\x41\x31\xf2\x41\x31\x09" }  },
                   70631:       /* --- pixel bitmap for stmary131 char#86 \llceil --- */
                   70632:       {  86,66239,                      /* character number, location */
                   70633:          14, 1,   -5, 1,      /* topleft row,col, and botleft row,col */
                   70634:           {  9,   19, 3,15, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70635:             "\x09\x0f\xe1\x31\x4f\x21\x31\x42" }  },
                   70636:       /* --- pixel bitmap for stmary131 char#87 \rrceil --- */
                   70637:       {  87,66906,                      /* character number, location */
                   70638:          14, 0,   -5, 0,      /* topleft row,col, and botleft row,col */
                   70639:           {  9,   19, 3,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70640:             "\x09\xfe\x41\x31\xf2\x41\x31" }  },
                   70641:       /* --- pixel bitmap for stmary131 char#88 \arrownot --- */
                   70642:       {  88,67305,                      /* character number, location */
                   70643:           8, 7,    1, 7,      /* topleft row,col, and botleft row,col */
                   70644:           {  4,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70645:             "\x88\x24\x12\x01" }  },
                   70646:       /* --- pixel bitmap for stmary131 char#89 \Arrownot --- */
                   70647:       {  89,67651,                      /* character number, location */
                   70648:          10, 7,   -1, 7,      /* topleft row,col, and botleft row,col */
                   70649:           {  4,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70650:             "\x88\x44\x24\x22\x12\x01" }  },
                   70651:       /* --- pixel bitmap for stmary131 char#90 \Mapstochar --- */
                   70652:       {  90,68028,                      /* character number, location */
                   70653:          10, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   70654:           {  1,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70655:             "\xff\x07" }  },
                   70656:       /* --- pixel bitmap for stmary131 char#91 \mapsfromchar --- */
                   70657:       {  91,68317,                      /* character number, location */
                   70658:           8,-3,    1,-3,      /* topleft row,col, and botleft row,col */
                   70659:           {  2,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70660:             "\xea\x2a" }  },
                   70661:       /* --- pixel bitmap for stmary131 char#92 \Mapsfromchar --- */
                   70662:       {  92,68617,                      /* character number, location */
                   70663:          10,-3,   -1,-3,      /* topleft row,col, and botleft row,col */
                   70664:           {  2,   11, 3, 4, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70665:             "\xfa\x11" }  },
                   70666:       /* --- pixel bitmap for stmary131 char#93 \leftrightarrowtriangle --- */
                   70667:       {  93,69462,                      /* character number, location */
                   70668:           8, 1,    2, 1,      /* topleft row,col, and botleft row,col */
                   70669:           { 16,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70670:             "\x20\x04\x38\x1c\x26\x64\xe3\xc7\x2c\x34\x30\x0c" }  },
                   70671:       /* --- pixel bitmap for stmary131 char#94 \leftarrowtriangle --- */
                   70672:       {  94,70293,                      /* character number, location */
                   70673:           8, 1,    2, 1,      /* topleft row,col, and botleft row,col */
                   70674:           { 16,    6, 3,19, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70675:             "\x51\xd3\xb2\x21\xa2\x3b\x22\x11\xe2\xa6" }  },
                   70676:       /* --- pixel bitmap for stmary131 char#95 \rightarrowtriangle --- */
                   70677:       {  95,71109,                      /* character number, location */
                   70678:           8, 1,    2, 1,      /* topleft row,col, and botleft row,col */
                   70679:           { 16,    6, 3,21, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70680:             "\xa1\xe0\x13\xd1\x22\x1b\x32\xa1\x12\xc2\x42" }  },
                   70681:       /* --- pixel bitmap for stmary131 char#96 \bigtriangledown --- */
                   70682:       {  96,71811,                      /* character number, location */
                   70683:           0, 1,  -18, 1,      /* topleft row,col, and botleft row,col */
                   70684:           { 13,   18, 3,49, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70685:             "\x0e\xb1\xf2\x11\x91\x10\xf2\x21\x71\x20\xf1\x31\x51"
                   70686:             "\x30\xf2\x41\x31\x40\xf2\x51\x11\x50\xf1\x61\x62" }  },
                   70687:       /* --- pixel bitmap for stmary131 char#97 \bigtriangleup --- */
                   70688:       {  97,72580,                      /* character number, location */
                   70689:           0, 1,  -18, 1,      /* topleft row,col, and botleft row,col */
                   70690:           { 13,   18, 3,48, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70691:             "\xf1\x61\x60\xf2\x51\x11\x50\xf2\x41\x31\x40\xf1\x31"
                   70692:             "\x51\x30\xf2\x21\x71\x20\xf2\x11\x91\x11\xbe" }  },
                   70693:       /* --- pixel bitmap for stmary131 char#98 \bigcurlyvee --- */
                   70694:       {  98,73347,                      /* character number, location */
                   70695:           0, 1,  -18, 1,      /* topleft row,col, and botleft row,col */
                   70696:           { 13,   18, 3,39, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70697:             "\x01\xb1\x11\x91\x31\x71\x51\x51\x30\xf1\x41\x31\x40"
                   70698:             "\xf3\x51\x11\x50\xf7\x61\x62" }  },
                   70699:       /* --- pixel bitmap for stmary131 char#99 \bigcurlywedge --- */
                   70700:       {  99,74106,                      /* character number, location */
                   70701:           0, 1,  -18, 1,      /* topleft row,col, and botleft row,col */
                   70702:           { 13,   18, 3,38, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70703:             "\xf7\x61\x60\xf3\x51\x11\x50\xf1\x41\x31\x40\x31\x51"
                   70704:             "\x51\x71\x31\x91\x11\xb1" }  },
                   70705:       /* --- pixel bitmap for stmary131 char#100 \bigsqcap --- */
                   70706:       { 100,74893,                      /* character number, location */
                   70707:           0, 1,  -18, 1,      /* topleft row,col, and botleft row,col */
                   70708:           { 13,   18, 3,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70709:             "\x0d\x0f\xe1\xb1\x0f\x11\xb1" }  },
                   70710:       /* --- pixel bitmap for stmary131 char#101 \bigbox --- */
                   70711:       { 101,75674,                      /* character number, location */
                   70712:           0, 1,  -18, 1,      /* topleft row,col, and botleft row,col */
                   70713:           { 13,   18, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70714:             "\x0d\x0f\xe1\xb1\x01\xbe" }  },
                   70715:       /* --- pixel bitmap for stmary131 char#102 \bigparallel --- */
                   70716:       { 102,76283,                      /* character number, location */
                   70717:           0, 1,  -18, 1,      /* topleft row,col, and botleft row,col */
                   70718:           {  6,   18, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70719:             "\xfe\x01\x41\x0f\x21\x41" }  },
                   70720:       /* --- pixel bitmap for stmary131 char#103 \biginterleave --- */
                   70721:       { 103,77019,                      /* character number, location */
                   70722:           0, 1,  -18, 1,      /* topleft row,col, and botleft row,col */
                   70723:           { 11,   18, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70724:             "\xfe\x01\x41\x41\x0f\x21\x41\x41" }  },
                   70725:       /* --- pixel bitmap for stmary131 char#104 (noname) --- */
                   70726:       { 104,77963,                      /* character number, location */
                   70727:           0, 1,  -25, 1,      /* topleft row,col, and botleft row,col */
                   70728:           { 18,   25, 3,73, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70729:             "\x0e\x05\xe0\x21\xf2\x11\xe1\x10\xf2\x21\xc1\x20\xf1"
                   70730:             "\x31\xa1\x30\xf2\x41\x81\x40\xf2\x51\x61\x50\xf2\x61"
                   70731:             "\x41\x60\xf2\x71\x21\x70\xf1\x82\x80\x91\x81" }  },
                   70732:       /* --- pixel bitmap for stmary131 char#105 (noname) --- */
                   70733:       { 105,78891,                      /* character number, location */
                   70734:           0, 1,  -25, 1,      /* topleft row,col, and botleft row,col */
                   70735:           { 18,   25, 3,72, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70736:             "\x91\x80\xf1\x82\x80\xf2\x71\x21\x70\xf2\x61\x41\x60"
                   70737:             "\xf2\x51\x61\x50\xf2\x41\x81\x40\xf1\x31\xa1\x30\xf2"
                   70738:             "\x21\xc1\x20\xf2\x11\xe1\x11\xe0\x2e\x05" }  },
                   70739:       /* --- pixel bitmap for stmary131 char#106 (noname) --- */
                   70740:       { 106,79817,                      /* character number, location */
                   70741:           0, 1,  -25, 1,      /* topleft row,col, and botleft row,col */
                   70742:           { 18,   25, 3,55, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70743:             "\x01\xe0\x21\x12\xc2\x41\xa1\x30\xf1\x41\x81\x40\x51"
                   70744:             "\x61\x50\xf2\x61\x41\x60\xf2\x71\x21\x70\xfb\x82\x80"
                   70745:             "\x91\x81" }  },
                   70746:       /* --- pixel bitmap for stmary131 char#107 (noname) --- */
                   70747:       { 107,80727,                      /* character number, location */
                   70748:           0, 1,  -25, 1,      /* topleft row,col, and botleft row,col */
                   70749:           { 18,   25, 3,54, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70750:             "\x91\x80\xfb\x82\x80\xf2\x71\x21\x70\xf2\x61\x41\x60"
                   70751:             "\x51\x61\x50\xf1\x41\x81\x40\x31\xa1\x42\xc2\x11\xe0"
                   70752:             "\x21" }  },
                   70753:       /* --- pixel bitmap for stmary131 char#108 (noname) --- */
                   70754:       { 108,81658,                      /* character number, location */
                   70755:           0, 1,  -25, 1,      /* topleft row,col, and botleft row,col */
                   70756:           { 18,   25, 2, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70757:             "\x00\x12\x00\xff\x17\x01\x10\x01" }  },
                   70758:       /* --- pixel bitmap for stmary131 char#109 (noname) --- */
                   70759:       { 109,82600,                      /* character number, location */
                   70760:           0, 1,  -25, 1,      /* topleft row,col, and botleft row,col */
                   70761:           { 18,   25, 2,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70762:             "\x00\x12\x00\xff\x16\x01\x10\x01\x00\x12" }  },
                   70763:       /* --- pixel bitmap for stmary131 char#110 (noname) --- */
                   70764:       { 110,83292,                      /* character number, location */
                   70765:           0, 1,  -25, 1,      /* topleft row,col, and botleft row,col */
                   70766:           {  8,   25, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70767:             "\xfe\x01\x61\x0f\x91\x61" }  },
                   70768:       /* --- pixel bitmap for stmary131 char#111 (noname) --- */
                   70769:       { 111,84163,                      /* character number, location */
                   70770:           0, 1,  -25, 1,      /* topleft row,col, and botleft row,col */
                   70771:           { 15,   25, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70772:             "\xfe\x01\x61\x61\x0f\x91\x61\x61" }  },
                   70773:       /* --- pixel bitmap for stmary131 char#112 \bignplus --- */
                   70774:       { 112,85117,                      /* character number, location */
                   70775:           0, 1,  -18, 1,      /* topleft row,col, and botleft row,col */
                   70776:           { 13,   18, 3,46, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70777:             "\x45\x62\x52\x20\xf1\x11\x91\x11\xb1\x0f\x31\x51\x51"
                   70778:             "\x01\x19\x11\x0f\x31\x51\x51\x0f\x31\xb1" }  },
                   70779:       /* --- pixel bitmap for stmary131 char#113 (noname) --- */
                   70780:       { 113,86123,                      /* character number, location */
                   70781:           1, 4,  -20, 4,      /* topleft row,col, and botleft row,col */
                   70782:           {  6,   21, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70783:             "\x06\x0f\xe1\x11\x3f\x31\x11\x36" }  },
                   70784:       /* --- pixel bitmap for stmary131 char#114 (noname) --- */
                   70785:       { 114,87102,                      /* character number, location */
                   70786:           1, 4,  -31, 4,      /* topleft row,col, and botleft row,col */
                   70787:           {  7,   32, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70788:             "\x07\x0f\xe1\x21\x3f\xe1\x21\x37" }  },
                   70789:       /* --- pixel bitmap for stmary131 char#115 (noname) --- */
                   70790:       { 115,88178,                      /* character number, location */
                   70791:           1, 5,  -42, 5,      /* topleft row,col, and botleft row,col */
                   70792:           {  7,   43, 2,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70793:             "\x00\x07\x00\xff\x28\x01\x02\x01\x03\x07" }  },
                   70794:       /* --- pixel bitmap for stmary131 char#116 (noname) --- */
                   70795:       { 116,89298,                      /* character number, location */
                   70796:           1, 5,  -53, 5,      /* topleft row,col, and botleft row,col */
                   70797:           {  8,   54, 2,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70798:             "\x00\x08\x00\xff\x33\x01\x02\x01\x04\x08" }  },
                   70799:       /* --- pixel bitmap for stmary131 char#117 (noname) --- */
                   70800:       { 117,90431,                      /* character number, location */
                   70801:           0, 6,  -32, 6,      /* topleft row,col, and botleft row,col */
                   70802:           {  8,   32, 2, 9, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70803:             "\x00\x08\x00\xff\x1e\x01\x03\x01\x03" }  },
                   70804:       /* --- pixel bitmap for stmary131 char#118 (noname) --- */
                   70805:       { 118,91406,                      /* character number, location */
                   70806:           1, 6,  -31, 6,      /* topleft row,col, and botleft row,col */
                   70807:           {  8,   32, 2, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70808:             "\xff\x1e\x00\x01\x03\x01\x03\x08" }  },
                   70809:       /* --- pixel bitmap for stmary131 char#119 (noname) --- */
                   70810:       { 119,92372,                      /* character number, location */
                   70811:           1, 6,  -12, 6,      /* topleft row,col, and botleft row,col */
                   70812:           {  5,   13, 3, 6, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70813:             "\xfc\x01\x31" }  },
                   70814:       /* --- pixel bitmap for stmary131 char#120 (noname) --- */
                   70815:       { 120,93342,                      /* character number, location */
                   70816:           0, 1,  -25, 1,      /* topleft row,col, and botleft row,col */
                   70817:           { 18,   25, 3,58, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70818:             "\x66\xa2\x62\x71\xa1\x51\xc1\x20\xf1\x11\xe1\x11\xe0"
                   70819:             "\x21\x0f\x51\x81\x71\x01\x1e\x11\x0f\x51\x81\x71\x0f"
                   70820:             "\x41\xe0\x21" }  },
                   70821:       /* --- pixel bitmap for stmary131 char#121 (noname) --- */
                   70822:       { 121,94371,                      /* character number, location */
                   70823:           1, 0,  -20, 0,      /* topleft row,col, and botleft row,col */
                   70824:           {  6,   21, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70825:             "\x06\xfe\x31\x11\xf3\x31\x11\x06" }  },
                   70826:       /* --- pixel bitmap for stmary131 char#122 (noname) --- */
                   70827:       { 122,95337,                      /* character number, location */
                   70828:           1, 0,  -31, 0,      /* topleft row,col, and botleft row,col */
                   70829:           {  7,   32, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70830:             "\x07\xfe\x31\x21\xfe\x31\x21\x07" }  },
                   70831:       /* --- pixel bitmap for stmary131 char#123 (noname) --- */
                   70832:       { 123,96400,                      /* character number, location */
                   70833:           1, 0,  -42, 0,      /* topleft row,col, and botleft row,col */
                   70834:           {  7,   43, 2,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70835:             "\x00\x07\xff\x28\x03\x01\x02\x01\x00\x07" }  },
                   70836:       /* --- pixel bitmap for stmary131 char#124 (noname) --- */
                   70837:       { 124,97507,                      /* character number, location */
                   70838:           1, 0,  -53, 0,      /* topleft row,col, and botleft row,col */
                   70839:           {  8,   54, 2,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70840:             "\x00\x08\xff\x33\x04\x01\x02\x01\x00\x08" }  },
                   70841:       /* --- pixel bitmap for stmary131 char#125 (noname) --- */
                   70842:       { 125,98627,                      /* character number, location */
                   70843:           0, 0,  -32, 0,      /* topleft row,col, and botleft row,col */
                   70844:           {  8,   32, 2, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70845:             "\x00\x08\xff\x1e\x03\x01\x03\x01" }  },
                   70846:       /* --- pixel bitmap for stmary131 char#126 (noname) --- */
                   70847:       { 126,99683,                      /* character number, location */
                   70848:           1, 0,  -31, 0,      /* topleft row,col, and botleft row,col */
                   70849:           {  8,   32, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70850:             "\xfe\x31\x31\xfe\x31\x31\x31\x39" }  },
                   70851:       /* --- pixel bitmap for stmary131 char#127 (noname) --- */
                   70852:       { 127,100636,                     /* character number, location */
                   70853:           1, 3,  -12, 3,      /* topleft row,col, and botleft row,col */
                   70854:           {  5,   13, 3, 6, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70855:             "\xfc\x01\x31" }  },
                   70856:       /* --- trailer  --- */
                   70857:       { -99, -999,  0,0,0,0, { 0,0,0,0, (pixbyte *)"\0" }  }
                   70858:    } ;
                   70859: 
                   70860: 
                   70861: /* --- size=4 for .160gf ---
                   70862:  * mf '\mode=preview; mag=magstep(-15.29639112828755784636); input stmary10'
                   70863:  * --------------------------------------------------------------------- */
                   70864: /* --- fontdef for stmary160 --- */
                   70865: static	chardef  stmary160[] =
                   70866:    {
                   70867:       /* --- pixel bitmap for stmary160 char#0 \shortleftarrow --- */
                   70868:       {   0,  948,                      /* character number, location */
                   70869:           9, 1,    2, 1,      /* topleft row,col, and botleft row,col */
                   70870:           { 15,    7, 3,19, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70871:             "\x31\xd1\xd2\xce\x01\x12\xe1\xe0\x11\xb0" }  },
                   70872:       /* --- pixel bitmap for stmary160 char#1 \shortrightarrow --- */
                   70873:       {   1, 1883,                      /* character number, location */
                   70874:           9, 1,    2, 1,      /* topleft row,col, and botleft row,col */
                   70875:           { 15,    7, 3,19, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70876:             "\xb1\xe0\x11\xe2\x1e\x01\xc2\xd1\xd1\x30" }  },
                   70877:       /* --- pixel bitmap for stmary160 char#2 \shortuparrow --- */
                   70878:       {   2, 2678,                      /* character number, location */
                   70879:          13, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
                   70880:           {  7,   15, 3,17, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70881:             "\x31\x53\x35\x11\x21\x21\xfa\x31\x31" }  },
                   70882:       /* --- pixel bitmap for stmary160 char#3 \shortdownarrow --- */
                   70883:       {   3, 3495,                      /* character number, location */
                   70884:          13, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
                   70885:           {  7,   15, 3,17, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70886:             "\xfa\x31\x31\x21\x21\x15\x33\x51\x31" }  },
                   70887:       /* --- pixel bitmap for stmary160 char#4 \Yup --- */
                   70888:       {   4, 4092,                      /* character number, location */
                   70889:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   70890:           { 10,   11, 3,24, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70891:             "\xf5\x51\x40\x42\x71\x21\x51\x41\x31\x61\x11\x81" }  },
                   70892:       /* --- pixel bitmap for stmary160 char#5 \Ydown --- */
                   70893:       {   5, 4673,                      /* character number, location */
                   70894:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   70895:           { 10,   11, 3,25, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70896:             "\x01\x81\x11\x61\x31\x41\x51\x21\x72\x40\xf5\x51\x40" }  },
                   70897:       /* --- pixel bitmap for stmary160 char#6 \Yleft --- */
                   70898:       {   6, 5295,                      /* character number, location */
                   70899:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   70900:           { 12,   11, 3,26, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70901:             "\xb1\xa1\xa1\xa1\x47\x40\xf1\x71\x40\x81\xc1\xc1\xc1" }  },
                   70902:       /* --- pixel bitmap for stmary160 char#7 \Yright --- */
                   70903:       {   7, 5910,                      /* character number, location */
                   70904:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   70905:           { 12,   11, 3,25, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70906:             "\x01\xc1\xc1\xc1\xc8\xf1\x41\x70\x31\xa1\xa1\xa1\xb1" }  },
                   70907:       /* --- pixel bitmap for stmary160 char#8 \varcurlyvee --- */
                   70908:       {   8, 6541,                      /* character number, location */
                   70909:          15, 0,   -4, 0,      /* topleft row,col, and botleft row,col */
                   70910:           { 15,   19, 3,47, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70911:             "\x01\xd1\x11\xb1\x31\x91\x51\x71\x30\xf1\x41\x51\x40"
                   70912:             "\xf1\x51\x31\x50\xf3\x61\x11\x60\xf6\x71\x70" }  },
                   70913:       /* --- pixel bitmap for stmary160 char#9 \varcurlywedge --- */
                   70914:       {   9, 7224,                      /* character number, location */
                   70915:          15, 0,   -4, 0,      /* topleft row,col, and botleft row,col */
                   70916:           { 15,   19, 3,46, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70917:             "\xf6\x71\x70\xf3\x61\x11\x60\xf1\x51\x31\x50\xf1\x41"
                   70918:             "\x51\x40\x31\x71\x51\x91\x31\xb1\x11\xd1" }  },
                   70919:       /* --- pixel bitmap for stmary160 char#10 \minuso --- */
                   70920:       {  10, 8035,                      /* character number, location */
                   70921:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   70922:           { 15,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70923:             "\xc0\x01\x18\x03\x02\x02\x01\x41\x00\xf9\xff\x13\x40"
                   70924:             "\x10\x10\x08\x08\x18\x03\x70\x00" }  },
                   70925:       /* --- pixel bitmap for stmary160 char#11 \baro --- */
                   70926:       {  11, 8719,                      /* character number, location */
                   70927:          13, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   70928:           { 10,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70929:             "\x20\x80\x00\x02\x3f\x22\x85\x18\x62\x88\x21\x86\x28"
                   70930:             "\x12\x3f\x20\x80\x00\x02" }  },
                   70931:       /* --- pixel bitmap for stmary160 char#12 \sslash --- */
                   70932:       {  12, 9393,                      /* character number, location */
                   70933:          17, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   70934:           { 13,   23, 3,67, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70935:             "\xf1\x81\x31\xf2\x71\x31\x10\xf1\x61\x31\x20\xf2\x51"
                   70936:             "\x31\x30\xf2\x41\x31\x40\xf2\x31\x31\x50\xf1\x21\x31"
                   70937:             "\x60\xf2\x11\x31\x7f\x11\x31\x80" }  },
                   70938:       /* --- pixel bitmap for stmary160 char#13 \bblash --- */
                   70939:       {  13,10102,                      /* character number, location */
                   70940:          17, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   70941:           { 13,   23, 3,70, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70942:             "\xf1\x01\x31\x80\xf2\x11\x31\x70\xf1\x21\x31\x60\xf2"
                   70943:             "\x31\x31\x50\xf2\x41\x31\x40\xf2\x51\x31\x30\xf1\x61"
                   70944:             "\x31\x20\xf2\x71\x31\x10\xf1\x81\x31" }  },
                   70945:       /* --- pixel bitmap for stmary160 char#14 \moo --- */
                   70946:       {  14,10925,                      /* character number, location */
                   70947:          11, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   70948:           { 13,   11, 3,29, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70949:             "\xf4\x61\x6d\xf1\x61\x60\x51\x11\x51\x41\x11\x41\x14"
                   70950:             "\x34\x11" }  },
                   70951:       /* --- pixel bitmap for stmary160 char#15 \varotimes --- */
                   70952:       {  15,11694,                      /* character number, location */
                   70953:          13, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   70954:           { 15,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70955:             "\xe0\x03\x0c\x06\x01\x44\x01\x25\x41\x0a\x11\x06\x05"
                   70956:             "\x03\x81\x41\xc1\x10\xa1\x04\x49\x01\x45\x00\xc1\x60"
                   70957:             "\x80\x0f\x00" }  },
                   70958:       /* --- pixel bitmap for stmary160 char#16 \varoast --- */
                   70959:       {  16,12646,                      /* character number, location */
                   70960:          13, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   70961:           { 15,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70962:             "\xe0\x03\x0c\x06\x01\x44\x10\x24\x08\xca\x64\x86\x0f"
                   70963:             "\x83\x81\xe1\xc3\x4c\xa6\x20\x48\x10\x44\x00\xc1\x60"
                   70964:             "\x80\x0f\x00" }  },
                   70965:       /* --- pixel bitmap for stmary160 char#17 \varobar --- */
                   70966:       {  17,13463,                      /* character number, location */
                   70967:          13, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   70968:           { 15,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70969:             "\xe0\x03\x4c\x06\x21\x44\x10\x24\x08\x0a\x04\x06\x02"
                   70970:             "\x03\x81\x81\xc0\x40\xa0\x20\x48\x10\x44\x08\xc1\x64"
                   70971:             "\x80\x0f\x00" }  },
                   70972:       /* --- pixel bitmap for stmary160 char#18 \varodot --- */
                   70973:       {  18,14271,                      /* character number, location */
                   70974:          13, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   70975:           { 15,   15, 3,55, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70976:             "\x55\x82\x52\x51\x91\x20\xf1\x11\xb1\x11\xd2\x61\x62"
                   70977:             "\x53\x52\x61\x62\xd1\xf1\x11\xb1\x10\x21\x91\x52\x52"
                   70978:             "\x85\x55" }  },
                   70979:       /* --- pixel bitmap for stmary160 char#19 \varoslash --- */
                   70980:       {  19,15070,                      /* character number, location */
                   70981:          13, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   70982:           { 15,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70983:             "\xe0\x03\x0c\x06\x01\x44\x00\x25\x40\x0a\x10\x06\x04"
                   70984:             "\x03\x81\x41\xc0\x10\xa0\x04\x48\x01\x44\x00\xc1\x60"
                   70985:             "\x80\x0f\x00" }  },
                   70986:       /* --- pixel bitmap for stmary160 char#20 \varobslash --- */
                   70987:       {  20,15885,                      /* character number, location */
                   70988:          13, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   70989:           { 15,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70990:             "\xe0\x03\x0c\x06\x01\x44\x01\x24\x01\x0a\x01\x06\x01"
                   70991:             "\x03\x81\x01\xc1\x00\xa1\x00\x49\x00\x45\x00\xc1\x60"
                   70992:             "\x80\x0f\x00" }  },
                   70993:       /* --- pixel bitmap for stmary160 char#21 \varocircle --- */
                   70994:       {  21,16839,                      /* character number, location */
                   70995:          13, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   70996:           { 15,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   70997:             "\xe0\x03\x0c\x06\x01\x44\x10\x24\x36\x8a\x20\x46\x10"
                   70998:             "\x13\x90\x11\xc4\x08\xa2\xd8\x48\x10\x44\x00\xc1\x60"
                   70999:             "\x80\x0f\x00" }  },
                   71000:       /* --- pixel bitmap for stmary160 char#22 \varoplus --- */
                   71001:       {  22,17663,                      /* character number, location */
                   71002:          13, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   71003:           { 15,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71004:             "\xe0\x03\x4c\x06\x21\x44\x10\x24\x08\x0a\x04\x06\x02"
                   71005:             "\xff\xff\x81\xc0\x40\xa0\x20\x48\x10\x44\x08\xc1\x64"
                   71006:             "\x80\x0f\x00" }  },
                   71007:       /* --- pixel bitmap for stmary160 char#23 \varominus --- */
                   71008:       {  23,18478,                      /* character number, location */
                   71009:          13, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   71010:           { 15,   15, 3,53, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71011:             "\x55\x82\x52\x51\x91\x20\xf1\x11\xb1\x1f\x11\xd1\x0e"
                   71012:             "\x01\x0f\x11\xd1\xf1\x11\xb1\x10\x21\x91\x52\x52\x85"
                   71013:             "\x50" }  },
                   71014:       /* --- pixel bitmap for stmary160 char#24 \boxast --- */
                   71015:       {  24,19317,                      /* character number, location */
                   71016:          12, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   71017:           { 13,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71018:             "\xff\x3f\x00\x06\xc1\x20\x98\x24\xe3\x63\x18\x8c\x8f"
                   71019:             "\x49\x32\x08\x06\xc1\x00\xf8\xff\x01" }  },
                   71020:       /* --- pixel bitmap for stmary160 char#25 \boxbar --- */
                   71021:       {  25,20054,                      /* character number, location */
                   71022:          12, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   71023:           { 13,   13, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71024:             "\x0d\x0f\xa1\x51\x51\x0d" }  },
                   71025:       /* --- pixel bitmap for stmary160 char#26 \boxdot --- */
                   71026:       {  26,20787,                      /* character number, location */
                   71027:          12, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   71028:           { 13,   13, 3,30, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71029:             "\x0d\x0f\x31\xb1\x01\x51\x52\x43\x42\x51\x51\x0f\x31"
                   71030:             "\xb1\x0d" }  },
                   71031:       /* --- pixel bitmap for stmary160 char#27 \boxslash --- */
                   71032:       {  27,21506,                      /* character number, location */
                   71033:          12, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   71034:           { 13,   13, 3,42, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71035:             "\x0e\xa3\x91\x12\x81\x22\x71\x32\x61\x42\x51\x52\x41"
                   71036:             "\x62\x31\x72\x21\x82\x11\x93\xae" }  },
                   71037:       /* --- pixel bitmap for stmary160 char#28 \boxbslash --- */
                   71038:       {  28,22238,                      /* character number, location */
                   71039:          12, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   71040:           { 13,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71041:             "\xff\x7f\x00\x16\xc0\x04\x18\x01\x43\x60\x10\x0c\x84"
                   71042:             "\x01\x31\x40\x06\xd0\x00\xfc\xff\x01" }  },
                   71043:       /* --- pixel bitmap for stmary160 char#29 \boxcircle --- */
                   71044:       {  29,22974,                      /* character number, location */
                   71045:          13, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   71046:           { 14,   14, 3,38, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71047:             "\x0e\x0f\x21\xc1\x01\x44\x41\x0f\x31\x31\x41\x31\x01"
                   71048:             "\x44\x41\x0f\x21\xc1\x0e" }  },
                   71049:       /* --- pixel bitmap for stmary160 char#30 \boxbox --- */
                   71050:       {  30,23709,                      /* character number, location */
                   71051:          12, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   71052:           { 13,   13, 3,38, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71053:             "\x0d\x0f\x21\xb1\x01\x35\x31\x0f\x21\x31\x31\x31\x01"
                   71054:             "\x35\x31\x0f\x21\xb1\x0d" }  },
                   71055:       /* --- pixel bitmap for stmary160 char#31 \boxempty --- */
                   71056:       {  31,24432,                      /* character number, location */
                   71057:          12, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   71058:           { 13,   13, 3,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71059:             "\x0d\x0f\xa1\xb1\x0d" }  },
                   71060:       /* --- pixel bitmap for stmary160 char#32 \lightning --- */
                   71061:       {  32,25317,                      /* character number, location */
                   71062:          15, 2,   -4, 2,      /* topleft row,col, and botleft row,col */
                   71063:           {  7,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71064:             "\x40\x20\x08\x04\x81\x20\x10\x78\x26\x08\x04\x81\x44"
                   71065:             "\x14\x0a\x3e\x01" }  },
                   71066:       /* --- pixel bitmap for stmary160 char#33 \merge --- */
                   71067:       {  33,26104,                      /* character number, location */
                   71068:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   71069:           { 18,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71070:             "\x60\x18\x80\x61\x00\x86\x01\x24\x09\x90\x24\x20\x0c"
                   71071:             "\x81\x30\x04\xc2\x10\x04\x83\x10\x0c\x42\x48\x88\x20"
                   71072:             "\x41\x82\x04\x05\x21\x18\x84\x20" }  },
                   71073:       /* --- pixel bitmap for stmary160 char#34 \vartimes --- */
                   71074:       {  34,26771,                      /* character number, location */
                   71075:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   71076:           { 10,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71077:             "\x01\x0a\x24\x10\x21\x48\x20\x01\x03\x04\x30\x20\x81"
                   71078:             "\x04\x21\x02\x09\x14\x20" }  },
                   71079:       /* --- pixel bitmap for stmary160 char#35 \fatsemi --- */
                   71080:       {  35,27352,                      /* character number, location */
                   71081:          12, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   71082:           {  5,   16, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71083:             "\x2e\xc6\xe8\x00\x70\x31\x46\x8f\x10\x11" }  },
                   71084:       /* --- pixel bitmap for stmary160 char#36 \sswarrow --- */
                   71085:       {  36,28235,                      /* character number, location */
                   71086:          15, 2,   -4, 2,      /* topleft row,col, and botleft row,col */
                   71087:           { 11,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71088:             "\x00\x04\x30\x80\x00\x04\x10\x80\x00\x02\x10\x40\x00"
                   71089:             "\x02\x08\x40\x00\x03\x08\x44\x40\x01\x0a\xe0\x03\x01"
                   71090:             "\x00" }  },
                   71091:       /* --- pixel bitmap for stmary160 char#37 \ssearrow --- */
                   71092:       {  37,29120,                      /* character number, location */
                   71093:          15, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   71094:           { 11,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71095:             "\x01\x18\x80\x00\x04\x40\x00\x02\x20\x00\x01\x10\x80"
                   71096:             "\x00\x08\x40\x00\x06\x20\x00\x11\x50\x80\x82\x0f\x40"
                   71097:             "\x00" }  },
                   71098:       /* --- pixel bitmap for stmary160 char#38 \curlywedgeuparrow --- */
                   71099:       {  38,30116,                      /* character number, location */
                   71100:          15, 0,   -4, 0,      /* topleft row,col, and botleft row,col */
                   71101:           { 15,   19, 3,62, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71102:             "\xf1\x71\x70\x63\xa2\x11\x12\x40\xf2\x71\x70\xf3\x61"
                   71103:             "\x11\x60\xf1\x51\x31\x50\xf1\x41\x51\x40\x31\x71\x51"
                   71104:             "\x91\x31\xb1\x11\xd1" }  },
                   71105:       /* --- pixel bitmap for stmary160 char#39 \curlywedgedownarrow --- */
                   71106:       {  39,31136,                      /* character number, location */
                   71107:          15, 0,   -5, 0,      /* topleft row,col, and botleft row,col */
                   71108:           { 15,   20, 3,59, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71109:             "\xf6\x71\x70\xf3\x61\x11\x60\xf1\x51\x31\x50\x41\x51"
                   71110:             "\x51\x21\x51\x21\x21\x11\x71\x11\x22\x92\x21\xb1\x13"
                   71111:             "\x93\x32\x52\x31" }  },
                   71112:       /* --- pixel bitmap for stmary160 char#40 \fatslash --- */
                   71113:       {  40,31810,                      /* character number, location */
                   71114:          17, 6,   -6, 6,      /* topleft row,col, and botleft row,col */
                   71115:           { 14,   23, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71116:             "\x00\x3f\x40\x04\x08\x01\x42\x80\x08\x10\x02\x84\x80"
                   71117:             "\x10\x20\x04\x88\x00\x21\x40\x08\x10\x01\x42\x80\x10"
                   71118:             "\x20\x02\x84\x00\x21\x20\x04\x08\x01\x22\x40\x08\xf0"
                   71119:             "\x03\x00" }  },
                   71120:       /* --- pixel bitmap for stmary160 char#41 \fatbslash --- */
                   71121:       {  41,32506,                      /* character number, location */
                   71122:          17, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   71123:           { 14,   23, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71124:             "\x3f\x40\x08\x20\x04\x08\x01\x42\x00\x21\x40\x08\x20"
                   71125:             "\x02\x08\x01\x42\x00\x21\x40\x08\x10\x02\x08\x01\x42"
                   71126:             "\x80\x10\x40\x08\x10\x02\x88\x00\x42\x80\x10\x40\x08"
                   71127:             "\xf0\x03" }  },
                   71128:       /* --- pixel bitmap for stmary160 char#42 \lbag --- */
                   71129:       {  42,33101,                      /* character number, location */
                   71130:          17, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   71131:           {  8,   23, 3,38, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71132:             "\x22\x51\x21\x31\x41\x71\x20\xf5\x41\x30\xf3\x31\x40"
                   71133:             "\xf5\x21\x50\x31\x72\x83" }  },
                   71134:       /* --- pixel bitmap for stmary160 char#43 \rbag --- */
                   71135:       {  43,33659,                      /* character number, location */
                   71136:          17, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   71137:           {  8,   23, 3,39, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71138:             "\x42\x51\x21\x31\x41\x21\x50\xf5\x31\x40\xf3\x41\x30"
                   71139:             "\xf5\x51\x20\x41\x62\x33\x52" }  },
                   71140:       /* --- pixel bitmap for stmary160 char#44 \varbigcirc --- */
                   71141:       {  44,34555,                      /* character number, location */
                   71142:          16, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   71143:           { 20,   20, 3,65, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71144:             "\x76\xc2\x62\x91\xa1\x71\xc1\x51\xe1\x20\xf1\x11\xe0"
                   71145:             "\x21\x1f\x51\xe0\x41\xf1\x11\xe0\x21\x10\x21\xe1\x51"
                   71146:             "\xc1\x71\xa1\x92\x62\xc6\x71" }  },
                   71147:       /* --- pixel bitmap for stmary160 char#45 \leftrightarroweq --- */
                   71148:       {  45,35591,                      /* character number, location */
                   71149:          12, 1,    2, 1,      /* topleft row,col, and botleft row,col */
                   71150:           { 15,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71151:             "\x08\x08\x02\x88\x01\xec\xff\x6f\x00\x23\x80\x20\x20"
                   71152:             "\x00\x00\x00\x80\xff\x3f" }  },
                   71153:       /* --- pixel bitmap for stmary160 char#46 \curlyveedownarrow --- */
                   71154:       {  46,36193,                      /* character number, location */
                   71155:          15, 0,   -4, 0,      /* topleft row,col, and botleft row,col */
                   71156:           { 15,   19, 3,63, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71157:             "\x01\xd1\x11\xb1\x31\x91\x51\x71\x30\xf1\x41\x51\x40"
                   71158:             "\xf1\x51\x31\x50\xf3\x61\x11\x60\xf2\x71\x70\x42\x11"
                   71159:             "\x12\xa3\x60\xf1\x71\x76" }  },
                   71160:       /* --- pixel bitmap for stmary160 char#47 \curlyveeuparrow --- */
                   71161:       {  47,36833,                      /* character number, location */
                   71162:          16, 0,   -4, 0,      /* topleft row,col, and botleft row,col */
                   71163:           { 15,   20, 3,59, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71164:             "\x32\x52\x33\x93\x11\xb1\x22\x92\x21\x11\x71\x11\x21"
                   71165:             "\x21\x51\x21\x51\x51\x40\xf1\x51\x31\x50\xf3\x61\x11"
                   71166:             "\x60\xf6\x71\x71" }  },
                   71167:       /* --- pixel bitmap for stmary160 char#48 \nnwarrow --- */
                   71168:       {  48,37436,                      /* character number, location */
                   71169:          15, 2,   -4, 2,      /* topleft row,col, and botleft row,col */
                   71170:           { 11,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71171:             "\x04\xe0\x83\x02\x14\x10\x01\x08\xc0\x00\x04\x20\x00"
                   71172:             "\x02\x10\x00\x01\x08\x80\x00\x04\x40\x00\x02\x30\x00"
                   71173:             "\x01" }  },
                   71174:       /* --- pixel bitmap for stmary160 char#49 \nnearrow --- */
                   71175:       {  49,38009,                      /* character number, location */
                   71176:          15, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   71177:           { 11,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71178:             "\x00\x81\x0f\xa0\x00\x05\x44\x20\x80\x01\x04\x20\x80"
                   71179:             "\x00\x04\x10\x80\x00\x02\x10\x40\x00\x02\x18\x40\x00"
                   71180:             "\x00" }  },
                   71181:       /* --- pixel bitmap for stmary160 char#50 \leftslice --- */
                   71182:       {  50,38770,                      /* character number, location */
                   71183:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   71184:           { 15,   11, 3,39, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71185:             "\xb2\xb2\x21\x82\x41\x53\x71\x22\xa3\xc1\x22\xa1\x43"
                   71186:             "\x71\x72\x41\xa2\x21\xc2\x21" }  },
                   71187:       /* --- pixel bitmap for stmary160 char#51 \rightslice --- */
                   71188:       {  51,39528,                      /* character number, location */
                   71189:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   71190:           { 15,   11, 3,39, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71191:             "\x22\xc1\x22\xa1\x42\x71\x73\x41\xa2\x21\xc3\xa2\x21"
                   71192:             "\x73\x51\x42\x81\x22\xb2\xb1" }  },
                   71193:       /* --- pixel bitmap for stmary160 char#52 \varolessthan --- */
                   71194:       {  52,40308,                      /* character number, location */
                   71195:          13, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   71196:           { 15,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71197:             "\xe0\x03\x0c\x06\x01\x46\xc0\x24\x18\x8a\x03\x36\x00"
                   71198:             "\x07\x80\x0d\xc0\x38\xa0\x60\x48\xc0\x44\x80\xc1\x60"
                   71199:             "\x80\x0f\x00" }  },
                   71200:       /* --- pixel bitmap for stmary160 char#53 \varogreaterthan --- */
                   71201:       {  53,41123,                      /* character number, location */
                   71202:          13, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   71203:           { 15,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71204:             "\xe0\x03\x0c\x06\x03\x44\x06\x24\x0c\x0a\x38\x06\x60"
                   71205:             "\x03\xc0\x01\xd8\x80\xa3\x30\x48\x06\xc4\x00\xc1\x60"
                   71206:             "\x80\x0f\x00" }  },
                   71207:       /* --- pixel bitmap for stmary160 char#54 \varovee --- */
                   71208:       {  54,41930,                      /* character number, location */
                   71209:          13, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   71210:           { 15,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71211:             "\xe0\x03\x0c\x06\x01\xc4\x00\xa6\x80\x4a\x40\x46\x10"
                   71212:             "\x23\x88\x21\xc2\x10\xa1\x88\x48\x28\x44\x14\xc1\x64"
                   71213:             "\x80\x0f\x00" }  },
                   71214:       /* --- pixel bitmap for stmary160 char#55 \varowedge --- */
                   71215:       {  55,42761,                      /* character number, location */
                   71216:          13, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   71217:           { 15,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71218:             "\xe0\x03\x4c\x06\x51\x44\x28\x24\x22\x0a\x11\x86\x08"
                   71219:             "\x23\x88\x11\xc4\x04\xa4\x02\xca\x00\x46\x00\xc1\x60"
                   71220:             "\x80\x0f\x00" }  },
                   71221:       /* --- pixel bitmap for stmary160 char#56 \talloblong --- */
                   71222:       {  56,43408,                      /* character number, location */
                   71223:          17, 2,   -6, 2,      /* topleft row,col, and botleft row,col */
                   71224:           {  7,   23, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71225:             "\x07\x0f\xe1\x51\x0f\x51\x51\x07" }  },
                   71226:       /* --- pixel bitmap for stmary160 char#57 \interleave --- */
                   71227:       {  57,44156,                      /* character number, location */
                   71228:          17, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   71229:           { 13,   23, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71230:             "\xfe\x01\x51\x51\x0f\x71\x51\x51" }  },
                   71231:       /* --- pixel bitmap for stmary160 char#58 \obar --- */
                   71232:       {  58,45020,                      /* character number, location */
                   71233:          13, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   71234:           { 15,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71235:             "\xe0\x03\x4c\x06\x21\x44\x10\x24\x08\x0a\x04\x06\x02"
                   71236:             "\x03\x81\x81\xc0\x40\xa0\x20\x48\x10\x44\x08\xc1\x64"
                   71237:             "\x80\x0f\x00" }  },
                   71238:       /* --- pixel bitmap for stmary160 char#59 \oslash --- */
                   71239:       {  59,45834,                      /* character number, location */
                   71240:          13, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   71241:           { 15,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71242:             "\xe0\x03\x0c\x06\x01\x44\x01\x24\x01\x0a\x01\x06\x01"
                   71243:             "\x03\x81\x01\xc1\x00\xa1\x00\x49\x00\x45\x00\xc1\x60"
                   71244:             "\x80\x0f\x00" }  },
                   71245:       /* --- pixel bitmap for stmary160 char#60 \olessthan --- */
                   71246:       {  60,46639,                      /* character number, location */
                   71247:          13, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   71248:           { 15,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71249:             "\xe0\x03\x0c\x06\x01\x46\xc0\x24\x18\x8a\x03\x36\x00"
                   71250:             "\x07\x80\x0d\xc0\x38\xa0\x60\x48\xc0\x44\x80\xc1\x60"
                   71251:             "\x80\x0f\x00" }  },
                   71252:       /* --- pixel bitmap for stmary160 char#61 \ogreaterthan --- */
                   71253:       {  61,47445,                      /* character number, location */
                   71254:          13, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   71255:           { 15,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71256:             "\xe0\x03\x0c\x06\x03\x44\x06\x24\x0c\x0a\x38\x06\x60"
                   71257:             "\x03\xc0\x01\xd8\x80\xa3\x30\x48\x06\xc4\x00\xc1\x60"
                   71258:             "\x80\x0f\x00" }  },
                   71259:       /* --- pixel bitmap for stmary160 char#62 \ovee --- */
                   71260:       {  62,48243,                      /* character number, location */
                   71261:          13, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   71262:           { 15,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71263:             "\xe0\x03\x0c\x06\x01\xc4\x00\xa6\x80\x4a\x40\x46\x10"
                   71264:             "\x23\x88\x21\xc2\x10\xa1\x88\x48\x28\x44\x14\xc1\x64"
                   71265:             "\x80\x0f\x00" }  },
                   71266:       /* --- pixel bitmap for stmary160 char#63 \owedge --- */
                   71267:       {  63,49065,                      /* character number, location */
                   71268:          13, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   71269:           { 15,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71270:             "\xe0\x03\x4c\x06\x51\x44\x28\x24\x22\x0a\x11\x86\x08"
                   71271:             "\x23\x88\x11\xc4\x04\xa4\x02\xca\x00\x46\x00\xc1\x60"
                   71272:             "\x80\x0f\x00" }  },
                   71273:       /* --- pixel bitmap for stmary160 char#64 \oblong --- */
                   71274:       {  64,49775,                      /* character number, location */
                   71275:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   71276:           { 13,   13, 3,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71277:             "\x0d\x0f\xa1\xb1\x0d" }  },
                   71278:       /* --- pixel bitmap for stmary160 char#65 \inplus --- */
                   71279:       {  65,50496,                      /* character number, location */
                   71280:          12, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   71281:           { 11,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71282:             "\xe0\xc7\x00\x01\x44\x20\x82\x10\xfc\x3f\x04\x22\x10"
                   71283:             "\x01\x01\x30\x00\x7e" }  },
                   71284:       /* --- pixel bitmap for stmary160 char#66 \niplus --- */
                   71285:       {  66,51216,                      /* character number, location */
                   71286:          12, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   71287:           { 11,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71288:             "\x3f\x00\x06\x40\x40\x04\x22\x10\xfe\x1f\x84\x20\x02"
                   71289:             "\x11\x40\x80\xf1\x03" }  },
                   71290:       /* --- pixel bitmap for stmary160 char#67 \nplus --- */
                   71291:       {  67,51940,                      /* character number, location */
                   71292:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   71293:           { 13,   13, 3,40, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71294:             "\x45\x62\x52\x31\x41\x41\x1f\x21\x51\x51\x01\x19\x11"
                   71295:             "\x0f\x31\x51\x51\x0f\x11\xb1" }  },
                   71296:       /* --- pixel bitmap for stmary160 char#68 \subsetplus --- */
                   71297:       {  68,52752,                      /* character number, location */
                   71298:          12, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   71299:           { 13,   13, 3,42, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71300:             "\x58\x32\xa1\xa0\xf1\x11\x51\x51\x61\x51\x37\x21\x61"
                   71301:             "\x50\xf1\x11\x51\x50\x21\xd2\xd8" }  },
                   71302:       /* --- pixel bitmap for stmary160 char#69 \supsetplus --- */
                   71303:       {  69,53538,                      /* character number, location */
                   71304:          12, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   71305:           { 13,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71306:             "\xff\x00\x60\x00\x10\x10\x04\x82\x40\x20\x7f\x04\x81"
                   71307:             "\x20\x08\x04\x01\x10\x80\xf1\x0f\x00" }  },
                   71308:       /* --- pixel bitmap for stmary160 char#70 \subsetpluseq --- */
                   71309:       {  70,54342,                      /* character number, location */
                   71310:          14, 2,   -5, 2,      /* topleft row,col, and botleft row,col */
                   71311:           { 13,   19, 3,46, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71312:             "\x58\x32\xa1\xa0\xf1\x11\x51\x51\x61\x51\x37\x21\x61"
                   71313:             "\x50\xf1\x11\x51\x50\x21\xd2\xd8\xf4\xdd" }  },
                   71314:       /* --- pixel bitmap for stmary160 char#71 \supsetpluseq --- */
                   71315:       {  71,55152,                      /* character number, location */
                   71316:          14, 2,   -5, 2,      /* topleft row,col, and botleft row,col */
                   71317:           { 13,   19, 3,48, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71318:             "\x08\xd2\xd1\x20\xf1\x51\x51\x10\x51\x61\x27\x31\x51"
                   71319:             "\x61\xf1\x51\x51\x10\xa1\xa2\x38\x50\xf4\xdd" }  },
                   71320:       /* --- pixel bitmap for stmary160 char#72 \Lbag --- */
                   71321:       {  72,55925,                      /* character number, location */
                   71322:          17, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   71323:           {  8,   23, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71324:             "\x0e\x11\x21\x20\x10\x10\x10\x18\x08\x0c\x0c\x06\x06"
                   71325:             "\x06\x03\x03\x03\x03\x03\x06\x04\x18\xe0" }  },
                   71326:       /* --- pixel bitmap for stmary160 char#73 \Rbag --- */
                   71327:       {  73,56423,                      /* character number, location */
                   71328:          17, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   71329:           {  8,   23, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71330:             "\x70\x88\x84\x04\x08\x08\x08\x18\x10\x30\x30\x60\x60"
                   71331:             "\x60\xc0\xc0\xc0\xc0\xc0\x60\x20\x18\x07" }  },
                   71332:       /* --- pixel bitmap for stmary160 char#74 \llbracket --- */
                   71333:       {  74,57278,                      /* character number, location */
                   71334:          17, 2,   -6, 2,      /* topleft row,col, and botleft row,col */
                   71335:           {  7,   23, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71336:             "\x07\x0f\xe1\x11\x4f\x51\x11\x47" }  },
                   71337:       /* --- pixel bitmap for stmary160 char#75 \rrbracket --- */
                   71338:       {  75,58172,                      /* character number, location */
                   71339:          17, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   71340:           {  6,   23, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71341:             "\x06\xfe\x31\x11\xf5\x31\x11\x06" }  },
                   71342:       /* --- pixel bitmap for stmary160 char#76 \llparenthesis --- */
                   71343:       {  76,58924,                      /* character number, location */
                   71344:          17, 2,   -6, 2,      /* topleft row,col, and botleft row,col */
                   71345:           {  6,   23, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71346:             "\x20\x8c\x92\xa4\x28\x86\x61\x18\x86\x61\x18\x86\xa2"
                   71347:             "\x48\x92\x28\x0c\x02" }  },
                   71348:       /* --- pixel bitmap for stmary160 char#77 \rrparenthesis --- */
                   71349:       {  77,59673,                      /* character number, location */
                   71350:          17, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   71351:           {  6,   23, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71352:             "\xc1\x50\x24\x49\x14\x85\x61\x18\x86\x61\x18\x86\x51"
                   71353:             "\x94\x24\xc5\x10\x00" }  },
                   71354:       /* --- pixel bitmap for stmary160 char#78 \binampersand --- */
                   71355:       {  78,60478,                      /* character number, location */
                   71356:          13, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   71357:           { 15,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71358:             "\xe0\x01\x08\x01\x02\x01\x81\x80\x40\x80\x10\x80\x06"
                   71359:             "\xe0\x80\x8c\x20\x81\x50\x80\x25\x00\x11\x60\x11\x0c"
                   71360:             "\xf1\x01\x01" }  },
                   71361:       /* --- pixel bitmap for stmary160 char#79 \bindnasrepma --- */
                   71362:       {  79,61177,                      /* character number, location */
                   71363:          13, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   71364:           { 15,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71365:             "\x01\x1f\x61\x10\x0d\x10\x01\x48\x03\x14\x02\x09\x62"
                   71366:             "\x02\x0e\xc0\x02\x10\x02\x04\x02\x02\x01\x81\x00\x21"
                   71367:             "\x00\x0f\x00" }  },
                   71368:       /* --- pixel bitmap for stmary160 char#80 \trianglelefteqslant --- */
                   71369:       {  80,61951,                      /* character number, location */
                   71370:          14, 2,   -5, 2,      /* topleft row,col, and botleft row,col */
                   71371:           { 13,   19, 3,56, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71372:             "\xc1\xa3\x82\x21\x62\x41\x42\x61\x22\x83\xa1\x12\x91"
                   71373:             "\x32\x71\x52\x51\x72\x31\x92\x12\xa2\x12\xd2\xd2\xd2"
                   71374:             "\xd2\xd2" }  },
                   71375:       /* --- pixel bitmap for stmary160 char#81 \trianglerighteqslant --- */
                   71376:       {  81,62720,                      /* character number, location */
                   71377:          14, 2,   -5, 2,      /* topleft row,col, and botleft row,col */
                   71378:           { 13,   19, 3,59, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71379:             "\x01\xc3\xa1\x22\x81\x42\x61\x62\x41\x82\x21\xa3\x92"
                   71380:             "\x11\x72\x31\x52\x51\x32\x71\x12\x92\xa1\xa2\x92\x92"
                   71381:             "\x92\x92\x92\xb0" }  },
                   71382:       /* --- pixel bitmap for stmary160 char#82 \ntrianglelefteqslant --- */
                   71383:       {  82,63535,                      /* character number, location */
                   71384:          18, 2,   -7, 2,      /* topleft row,col, and botleft row,col */
                   71385:           { 13,   25, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71386:             "\x00\x08\x80\x00\x10\x00\x02\xa0\x01\x2c\x60\x04\x8b"
                   71387:             "\x18\xd1\x10\x0e\x42\x26\x08\x07\x81\x21\xc8\x04\xe1"
                   71388:             "\x13\x90\x03\xc0\x00\x64\x80\x30\x08\x18\x01\x24\x00"
                   71389:             "\x02\x00" }  },
                   71390:       /* --- pixel bitmap for stmary160 char#83 \ntrianglerighteqslant --- */
                   71391:       {  83,64391,                      /* character number, location */
                   71392:          18, 2,   -7, 2,      /* topleft row,col, and botleft row,col */
                   71393:           { 13,   25, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71394:             "\x00\x08\x80\x00\x10\x00\x32\x20\x1a\x44\x4c\x08\x0e"
                   71395:             "\x01\x23\x90\x05\xe2\x20\x13\x1c\xc2\x40\x0e\x38\x01"
                   71396:             "\x11\x18\xc2\x40\x06\x34\x80\x01\x0c\x40\x01\x20\x00"
                   71397:             "\x02\x00" }  },
                   71398:       /* --- pixel bitmap for stmary160 char#84 \llfloor --- */
                   71399:       {  84,65091,                      /* character number, location */
                   71400:          17,-1,   -6,-1,      /* topleft row,col, and botleft row,col */
                   71401:           { 13,   23, 3,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71402:             "\xfe\x01\x51\x6f\x61\x51\x6d" }  },
                   71403:       /* --- pixel bitmap for stmary160 char#85 \rrfloor --- */
                   71404:       {  85,65787,                      /* character number, location */
                   71405:          17, 0,   -6, 0,      /* topleft row,col, and botleft row,col */
                   71406:           { 13,   23, 3,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71407:             "\xfe\x61\x51\xf6\x61\x51\x0d" }  },
                   71408:       /* --- pixel bitmap for stmary160 char#86 \llceil --- */
                   71409:       {  86,66469,                      /* character number, location */
                   71410:          17,-1,   -6,-1,      /* topleft row,col, and botleft row,col */
                   71411:           { 13,   23, 3,15, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71412:             "\x0d\x0f\xe1\x51\x6f\x61\x51\x62" }  },
                   71413:       /* --- pixel bitmap for stmary160 char#87 \rrceil --- */
                   71414:       {  87,67152,                      /* character number, location */
                   71415:          17, 0,   -6, 0,      /* topleft row,col, and botleft row,col */
                   71416:           { 13,   23, 3,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71417:             "\x0d\xfe\x61\x51\xf6\x61\x51" }  },
                   71418:       /* --- pixel bitmap for stmary160 char#88 \arrownot --- */
                   71419:       {  88,67567,                      /* character number, location */
                   71420:          10, 8,    1, 8,      /* topleft row,col, and botleft row,col */
                   71421:           {  6,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71422:             "\x20\x08\x21\x04\x21\x04\x01" }  },
                   71423:       /* --- pixel bitmap for stmary160 char#89 \Arrownot --- */
                   71424:       {  89,67917,                      /* character number, location */
                   71425:          12, 9,   -1, 9,      /* topleft row,col, and botleft row,col */
                   71426:           {  4,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71427:             "\x88\x48\x44\x24\x22\x11\x01" }  },
                   71428:       /* --- pixel bitmap for stmary160 char#90 \Mapstochar --- */
                   71429:       {  90,68298,                      /* character number, location */
                   71430:          13, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   71431:           {  2,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71432:             "\x55\x57\x75\x15" }  },
                   71433:       /* --- pixel bitmap for stmary160 char#91 \mapsfromchar --- */
                   71434:       {  91,68595,                      /* character number, location */
                   71435:          10,-3,    1,-3,      /* topleft row,col, and botleft row,col */
                   71436:           {  2,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71437:             "\xaa\xab\x02" }  },
                   71438:       /* --- pixel bitmap for stmary160 char#92 \Mapsfromchar --- */
                   71439:       {  92,68899,                      /* character number, location */
                   71440:          13,-3,   -2,-3,      /* topleft row,col, and botleft row,col */
                   71441:           {  2,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71442:             "\xaa\xab\xba\x2a" }  },
                   71443:       /* --- pixel bitmap for stmary160 char#93 \leftrightarrowtriangle --- */
                   71444:       {  93,69752,                      /* character number, location */
                   71445:           9, 1,    2, 1,      /* topleft row,col, and botleft row,col */
                   71446:           { 20,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71447:             "\x20\x40\x80\x03\x1c\x26\x40\x16\xfe\x87\x26\x40\x86"
                   71448:             "\x03\x1c\x20\x40\x00" }  },
                   71449:       /* --- pixel bitmap for stmary160 char#94 \leftarrowtriangle --- */
                   71450:       {  94,70587,                      /* character number, location */
                   71451:           9, 1,    2, 1,      /* topleft row,col, and botleft row,col */
                   71452:           { 20,    7, 3,31, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71453:             "\x51\xe0\x33\xe0\x21\x21\xe2\x3e\x01\x21\x21\xe0\x33"
                   71454:             "\xe0\x51\xe3" }  },
                   71455:       /* --- pixel bitmap for stmary160 char#95 \rightarrowtriangle --- */
                   71456:       {  95,71405,                      /* character number, location */
                   71457:           9, 1,    2, 1,      /* topleft row,col, and botleft row,col */
                   71458:           { 20,    7, 3,31, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71459:             "\xe1\xe0\x53\xe0\x31\x21\x2e\x01\x32\xe1\x21\xe0\x23"
                   71460:             "\xe0\x31\x53" }  },
                   71461:       /* --- pixel bitmap for stmary160 char#96 \bigtriangledown --- */
                   71462:       {  96,72109,                      /* character number, location */
                   71463:           0, 1,  -22, 1,      /* topleft row,col, and botleft row,col */
                   71464:           { 16,   22, 3,63, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71465:             "\x0e\x03\xe1\xf2\x11\xc1\x10\xf2\x21\xa1\x20\xf1\x31"
                   71466:             "\x81\x30\xf2\x41\x61\x40\xf2\x51\x41\x50\xf2\x61\x21"
                   71467:             "\x60\xf1\x72\x70\x81\x71" }  },
                   71468:       /* --- pixel bitmap for stmary160 char#97 \bigtriangleup --- */
                   71469:       {  97,72892,                      /* character number, location */
                   71470:           0, 1,  -22, 1,      /* topleft row,col, and botleft row,col */
                   71471:           { 16,   22, 3,62, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71472:             "\x81\x70\xf1\x72\x70\xf2\x61\x21\x60\xf2\x51\x41\x50"
                   71473:             "\xf2\x41\x61\x40\xf1\x31\x81\x30\xf2\x21\xa1\x20\xf2"
                   71474:             "\x11\xc1\x11\xee\x03" }  },
                   71475:       /* --- pixel bitmap for stmary160 char#98 \bigcurlyvee --- */
                   71476:       {  98,73673,                      /* character number, location */
                   71477:           0, 1,  -22, 1,      /* topleft row,col, and botleft row,col */
                   71478:           { 16,   22, 3,49, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71479:             "\x01\xe1\x12\xa2\x10\xf1\x31\x81\x30\x41\x61\x40\xf1"
                   71480:             "\x51\x41\x50\xf2\x61\x21\x60\xfa\x72\x70\x81\x70" }  },
                   71481:       /* --- pixel bitmap for stmary160 char#99 \bigcurlywedge --- */
                   71482:       {  99,74440,                      /* character number, location */
                   71483:           0, 1,  -22, 1,      /* topleft row,col, and botleft row,col */
                   71484:           { 16,   22, 3,48, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71485:             "\x81\x70\xfa\x72\x70\xf2\x61\x21\x60\xf1\x51\x41\x50"
                   71486:             "\x41\x61\x40\xf1\x31\x81\x30\x12\xa2\x11\xe1" }  },
                   71487:       /* --- pixel bitmap for stmary160 char#100 \bigsqcap --- */
                   71488:       { 100,75235,                      /* character number, location */
                   71489:           0, 1,  -22, 1,      /* topleft row,col, and botleft row,col */
                   71490:           { 16,   22, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71491:             "\x0e\x02\x0f\xe1\xe1\x0f\x51\xe1" }  },
                   71492:       /* --- pixel bitmap for stmary160 char#101 \bigbox --- */
                   71493:       { 101,76032,                      /* character number, location */
                   71494:           0, 1,  -22, 1,      /* topleft row,col, and botleft row,col */
                   71495:           { 16,   22, 3,20, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71496:             "\x0e\x02\x0f\xe1\xe1\x0f\x41\xe1\x0e\x02" }  },
                   71497:       /* --- pixel bitmap for stmary160 char#102 \bigparallel --- */
                   71498:       { 102,76657,                      /* character number, location */
                   71499:           0, 1,  -22, 1,      /* topleft row,col, and botleft row,col */
                   71500:           {  8,   22, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71501:             "\xfe\x01\x61\x0f\x61\x61" }  },
                   71502:       /* --- pixel bitmap for stmary160 char#103 \biginterleave --- */
                   71503:       { 103,77409,                      /* character number, location */
                   71504:           0, 1,  -22, 1,      /* topleft row,col, and botleft row,col */
                   71505:           { 13,   22, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71506:             "\xfe\x01\x51\x51\x0f\x61\x51\x51" }  },
                   71507:       /* --- pixel bitmap for stmary160 char#104 (noname) --- */
                   71508:       { 104,78377,                      /* character number, location */
                   71509:           0, 1,  -31, 1,      /* topleft row,col, and botleft row,col */
                   71510:           { 23,   31, 3,99, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71511:             "\x0e\x0a\xe0\x71\xf2\x11\xe0\x51\x10\xf1\x21\xe0\x31"
                   71512:             "\x20\xf2\x31\xe0\x11\x30\xf2\x41\xd1\x40\xf2\x51\xb1"
                   71513:             "\x50\xf1\x61\x91\x60\xf2\x71\x71\x70\xf2\x81\x51\x80"
                   71514:             "\xf1\x91\x31\x90\xf2\xa1\x11\xa0\xf1\xb1\xb0" }  },
                   71515:       /* --- pixel bitmap for stmary160 char#105 (noname) --- */
                   71516:       { 105,79331,                      /* character number, location */
                   71517:           0, 1,  -31, 1,      /* topleft row,col, and botleft row,col */
                   71518:           { 23,   31, 3,98, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71519:             "\xf1\xb1\xb0\xf2\xa1\x11\xa0\xf1\x91\x31\x90\xf2\x81"
                   71520:             "\x51\x80\xf2\x71\x71\x70\xf1\x61\x91\x60\xf2\x51\xb1"
                   71521:             "\x50\xf2\x41\xd1\x40\xf2\x31\xe0\x11\x30\xf1\x21\xe0"
                   71522:             "\x31\x20\xf2\x11\xe0\x51\x11\xe0\x7e\x0a" }  },
                   71523:       /* --- pixel bitmap for stmary160 char#106 (noname) --- */
                   71524:       { 106,80283,                      /* character number, location */
                   71525:           0, 1,  -31, 1,      /* topleft row,col, and botleft row,col */
                   71526:           { 23,   31, 3,73, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71527:             "\x01\xe0\x71\x12\xe0\x32\x41\xe0\x11\x71\xd1\x91\xb1"
                   71528:             "\x50\xf1\x61\x91\x60\xf1\x71\x71\x70\xf1\x81\x51\x80"
                   71529:             "\xf2\x91\x31\x90\xf5\xa1\x11\xa0\xfa\xb1\xb1" }  },
                   71530:       /* --- pixel bitmap for stmary160 char#107 (noname) --- */
                   71531:       { 107,81221,                      /* character number, location */
                   71532:           0, 1,  -31, 1,      /* topleft row,col, and botleft row,col */
                   71533:           { 23,   31, 3,72, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71534:             "\xfa\xb1\xb0\xf5\xa1\x11\xa0\xf2\x91\x31\x90\xf1\x81"
                   71535:             "\x51\x80\xf1\x71\x71\x70\xf1\x61\x91\x60\x51\xb1\x91"
                   71536:             "\xd1\x71\xe0\x11\x42\xe0\x32\x11\xe0\x71" }  },
                   71537:       /* --- pixel bitmap for stmary160 char#108 (noname) --- */
                   71538:       { 108,82180,                      /* character number, location */
                   71539:           0, 1,  -31, 1,      /* topleft row,col, and botleft row,col */
                   71540:           { 23,   31, 2, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71541:             "\x00\x17\x00\xff\x1d\x01\x15\x01" }  },
                   71542:       /* --- pixel bitmap for stmary160 char#109 (noname) --- */
                   71543:       { 109,83146,                      /* character number, location */
                   71544:           0, 1,  -31, 1,      /* topleft row,col, and botleft row,col */
                   71545:           { 23,   31, 2,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71546:             "\x00\x17\x00\xff\x1c\x01\x15\x01\x00\x17" }  },
                   71547:       /* --- pixel bitmap for stmary160 char#110 (noname) --- */
                   71548:       { 110,83862,                      /* character number, location */
                   71549:           0, 1,  -31, 1,      /* topleft row,col, and botleft row,col */
                   71550:           { 10,   31, 2, 6, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71551:             "\xff\x1e\x00\x01\x08\x01" }  },
                   71552:       /* --- pixel bitmap for stmary160 char#111 (noname) --- */
                   71553:       { 111,84731,                      /* character number, location */
                   71554:           0, 1,  -31, 1,      /* topleft row,col, and botleft row,col */
                   71555:           { 17,   31, 2, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71556:             "\xff\x1e\x00\x01\x07\x01\x07\x01" }  },
                   71557:       /* --- pixel bitmap for stmary160 char#112 \bignplus --- */
                   71558:       { 112,85721,                      /* character number, location */
                   71559:           0, 1,  -22, 1,      /* topleft row,col, and botleft row,col */
                   71560:           { 16,   22, 3,50, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71561:             "\x56\x82\x62\x51\xa1\x20\xf1\x11\xc1\x11\xe1\x0f\x41"
                   71562:             "\x71\x61\x01\x1c\x11\x0f\x41\x71\x61\x0f\x41\xe1" }  },
                   71563:       /* --- pixel bitmap for stmary160 char#113 (noname) --- */
                   71564:       { 113,86747,                      /* character number, location */
                   71565:           1, 5,  -25, 5,      /* topleft row,col, and botleft row,col */
                   71566:           {  7,   26, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71567:             "\x07\x0f\xe1\x21\x3f\x81\x21\x37" }  },
                   71568:       /* --- pixel bitmap for stmary160 char#114 (noname) --- */
                   71569:       { 114,87746,                      /* character number, location */
                   71570:           1, 5,  -38, 5,      /* topleft row,col, and botleft row,col */
                   71571:           {  8,   39, 2,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71572:             "\x00\x08\x00\xff\x24\x01\x02\x01\x04\x08" }  },
                   71573:       /* --- pixel bitmap for stmary160 char#115 (noname) --- */
                   71574:       { 115,88850,                      /* character number, location */
                   71575:           1, 6,  -51, 6,      /* topleft row,col, and botleft row,col */
                   71576:           {  8,   52, 2,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71577:             "\x00\x08\x00\xff\x31\x01\x03\x01\x03\x08" }  },
                   71578:       /* --- pixel bitmap for stmary160 char#116 (noname) --- */
                   71579:       { 116,90032,                      /* character number, location */
                   71580:           1, 6,  -65, 6,      /* topleft row,col, and botleft row,col */
                   71581:           {  9,   66, 2,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71582:             "\x00\x09\x00\xff\x3f\x01\x03\x01\x04\x09" }  },
                   71583:       /* --- pixel bitmap for stmary160 char#117 (noname) --- */
                   71584:       { 117,91239,                      /* character number, location */
                   71585:           0, 8,  -39, 8,      /* topleft row,col, and botleft row,col */
                   71586:           {  9,   39, 2, 9, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71587:             "\x00\x09\x00\xff\x25\x01\x03\x01\x04" }  },
                   71588:       /* --- pixel bitmap for stmary160 char#118 (noname) --- */
                   71589:       { 118,92268,                      /* character number, location */
                   71590:           1, 8,  -38, 8,      /* topleft row,col, and botleft row,col */
                   71591:           {  9,   39, 2, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71592:             "\xff\x25\x00\x01\x03\x01\x04\x09" }  },
                   71593:       /* --- pixel bitmap for stmary160 char#119 (noname) --- */
                   71594:       { 119,93288,                      /* character number, location */
                   71595:           1, 8,  -14, 8,      /* topleft row,col, and botleft row,col */
                   71596:           {  5,   15, 3, 6, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71597:             "\xfe\x01\x31" }  },
                   71598:       /* --- pixel bitmap for stmary160 char#120 (noname) --- */
                   71599:       { 120,94266,                      /* character number, location */
                   71600:           0, 1,  -31, 1,      /* topleft row,col, and botleft row,col */
                   71601:           { 23,   31, 3,64, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71602:             "\x87\xe2\x72\xa2\xb2\x71\xe0\x11\x51\xe0\x31\x20\xf1"
                   71603:             "\x11\xe0\x51\x1f\x81\xa1\xa1\x01\x1e\x05\x11\x0f\x81"
                   71604:             "\xa1\xa1\x0f\x41\xe0\x71" }  },
                   71605:       /* --- pixel bitmap for stmary160 char#121 (noname) --- */
                   71606:       { 121,95305,                      /* character number, location */
                   71607:           1, 0,  -25, 0,      /* topleft row,col, and botleft row,col */
                   71608:           {  7,   26, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71609:             "\x07\xfe\x31\x21\xf8\x31\x21\x07" }  },
                   71610:       /* --- pixel bitmap for stmary160 char#122 (noname) --- */
                   71611:       { 122,96291,                      /* character number, location */
                   71612:           1, 0,  -38, 0,      /* topleft row,col, and botleft row,col */
                   71613:           {  8,   39, 2,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71614:             "\x00\x08\xff\x24\x04\x01\x02\x01\x00\x08" }  },
                   71615:       /* --- pixel bitmap for stmary160 char#123 (noname) --- */
                   71616:       { 123,97356,                      /* character number, location */
                   71617:           1, 0,  -51, 0,      /* topleft row,col, and botleft row,col */
                   71618:           {  8,   52, 2,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71619:             "\x00\x08\xff\x31\x03\x01\x03\x01\x00\x08" }  },
                   71620:       /* --- pixel bitmap for stmary160 char#124 (noname) --- */
                   71621:       { 124,98525,                      /* character number, location */
                   71622:           1, 0,  -65, 0,      /* topleft row,col, and botleft row,col */
                   71623:           {  9,   66, 2,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71624:             "\x00\x09\xff\x3f\x04\x01\x03\x01\x00\x09" }  },
                   71625:       /* --- pixel bitmap for stmary160 char#125 (noname) --- */
                   71626:       { 125,99693,                      /* character number, location */
                   71627:           0, 0,  -39, 0,      /* topleft row,col, and botleft row,col */
                   71628:           { 10,   39, 2, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71629:             "\x00\x0a\xff\x25\x04\x01\x04\x01" }  },
                   71630:       /* --- pixel bitmap for stmary160 char#126 (noname) --- */
                   71631:       { 126,100777,                     /* character number, location */
                   71632:           1, 0,  -38, 0,      /* topleft row,col, and botleft row,col */
                   71633:           { 10,   39, 2, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71634:             "\xff\x25\x04\x01\x04\x01\x00\x0a" }  },
                   71635:       /* --- pixel bitmap for stmary160 char#127 (noname) --- */
                   71636:       { 127,101758,                     /* character number, location */
                   71637:           1, 4,  -14, 4,      /* topleft row,col, and botleft row,col */
                   71638:           {  6,   15, 3, 6, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71639:             "\xfe\x01\x41" }  },
1.1       albertel 71640:       /* --- trailer  --- */
1.2       albertel 71641:       { -99, -999,  0,0,0,0, { 0,0,0,0, (pixbyte *)"\0" }  }
1.1       albertel 71642:    } ;
                   71643: 
                   71644: 
1.2       albertel 71645: /* --- size=5 for .180gf ---
                   71646:  * mf '\mode=preview; mag=magstep(-14.65037297372839890542); input stmary10'
                   71647:  * --------------------------------------------------------------------- */
                   71648: /* --- fontdef for stmary180 --- */
                   71649: static	chardef  stmary180[] =
                   71650:    {
                   71651:       /* --- pixel bitmap for stmary180 char#0 \shortleftarrow --- */
                   71652:       {   0,  948,                      /* character number, location */
                   71653:          11, 1,    2, 1,      /* topleft row,col, and botleft row,col */
                   71654:           { 17,    9, 3,29, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71655:             "\xf1\x41\xc0\x31\xe0\x11\xee\x03\x21\xe0\x31\xd0\xf1"
                   71656:             "\x41\xc0" }  },
                   71657:       /* --- pixel bitmap for stmary180 char#1 \shortrightarrow --- */
                   71658:       {   1, 1887,                      /* character number, location */
                   71659:          11, 1,    2, 1,      /* topleft row,col, and botleft row,col */
                   71660:           { 17,    9, 3,29, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71661:             "\xf1\xc1\x40\xd1\xe0\x31\x2e\x03\xe1\xe0\x11\x30\xf1"
                   71662:             "\xc1\x40" }  },
                   71663:       /* --- pixel bitmap for stmary180 char#2 \shortuparrow --- */
                   71664:       {   2, 2686,                      /* character number, location */
                   71665:          15, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
                   71666:           {  9,   17, 3,25, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71667:             "\xf1\x41\x40\x33\x51\x11\x11\x22\x21\x22\xfb\x41\x41" }  },
                   71668:       /* --- pixel bitmap for stmary180 char#3 \shortdownarrow --- */
                   71669:       {   3, 3511,                      /* character number, location */
                   71670:          15, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
                   71671:           {  9,   17, 3,25, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71672:             "\xfb\x41\x42\x21\x22\x21\x11\x11\x53\x30\xf1\x41\x41" }  },
                   71673:       /* --- pixel bitmap for stmary180 char#4 \Yup --- */
                   71674:       {   4, 4116,                      /* character number, location */
                   71675:          13, 1,    1, 1,      /* topleft row,col, and botleft row,col */
                   71676:           { 11,   12, 3,24, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71677:             "\xf6\x61\x40\x52\x81\x21\x61\x41\x41\x61\x21\x81" }  },
                   71678:       /* --- pixel bitmap for stmary180 char#5 \Ydown --- */
                   71679:       {   5, 4699,                      /* character number, location */
                   71680:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   71681:           { 11,   11, 3,25, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71682:             "\x11\x81\x21\x61\x41\x41\x61\x21\x82\x40\xf5\x61\x41" }  },
                   71683:       /* --- pixel bitmap for stmary180 char#6 \Yleft --- */
                   71684:       {   6, 5321,                      /* character number, location */
                   71685:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   71686:           { 13,   12, 3,28, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71687:             "\xc1\xb1\xb1\xa2\x47\xc1\xd1\xd1\x30\xf1\xa1\x20\xb1"
                   71688:             "\xd1" }  },
                   71689:       /* --- pixel bitmap for stmary180 char#7 \Yright --- */
                   71690:       {   7, 5938,                      /* character number, location */
                   71691:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   71692:           { 13,   12, 3,29, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71693:             "\x01\xd1\xd1\xd2\xd8\x51\xb1\xb1\x90\xf1\x21\xa0\x11"
                   71694:             "\xb1\xc0" }  },
                   71695:       /* --- pixel bitmap for stmary180 char#8 \varcurlyvee --- */
                   71696:       {   8, 6571,                      /* character number, location */
                   71697:          17, 0,   -6, 0,      /* topleft row,col, and botleft row,col */
                   71698:           { 17,   23, 3,53, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71699:             "\x01\xe0\x11\x11\xd1\x31\xb1\x51\x91\x71\x71\x40\xf1"
                   71700:             "\x51\x51\x50\xf2\x61\x31\x60\xf4\x71\x11\x70\xf7\x81"
                   71701:             "\x80" }  },
                   71702:       /* --- pixel bitmap for stmary180 char#9 \varcurlywedge --- */
                   71703:       {   9, 7268,                      /* character number, location */
                   71704:          17, 0,   -6, 0,      /* topleft row,col, and botleft row,col */
                   71705:           { 17,   23, 3,56, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71706:             "\xf7\x81\x80\xf3\x71\x11\x70\xf2\x61\x31\x60\xf1\x51"
                   71707:             "\x51\x50\xf1\x41\x71\x40\x31\x91\x51\xb1\x31\xd1\x11"
                   71708:             "\xe0\x11" }  },
                   71709:       /* --- pixel bitmap for stmary180 char#10 \minuso --- */
                   71710:       {  10, 8093,                      /* character number, location */
                   71711:          12, 1,    1, 1,      /* topleft row,col, and botleft row,col */
                   71712:           { 17,   11, 3,45, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71713:             "\x73\xc2\x32\x50\xf1\x41\x71\x40\x31\x91\x3e\x03\x31"
                   71714:             "\x91\x30\xf1\x41\x71\x40\x52\x32\xc3\x71" }  },
                   71715:       /* --- pixel bitmap for stmary180 char#11 \baro --- */
                   71716:       {  11, 8777,                      /* character number, location */
                   71717:          15, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   71718:           { 12,   17, 3,49, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71719:             "\xf2\x61\x50\x36\x51\x31\x21\x31\x41\x31\x1f\x41\x51"
                   71720:             "\x41\x11\x41\x31\x31\x31\x21\x56\x30\xf2\x61\x51" }  },
                   71721:       /* --- pixel bitmap for stmary180 char#12 \sslash --- */
                   71722:       {  12, 9463,                      /* character number, location */
                   71723:          19, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   71724:           { 15,   25, 3,83, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71725:             "\xf1\xa1\x31\xf1\x91\x31\x10\xf2\x81\x31\x20\xf1\x71"
                   71726:             "\x31\x30\xf1\x61\x31\x40\xf2\x51\x31\x50\xf1\x41\x31"
                   71727:             "\x60\xf1\x31\x31\x70\xf2\x21\x31\x80\xf1\x11\x31\x9f"
                   71728:             "\x11\x31\xa0" }  },
                   71729:       /* --- pixel bitmap for stmary180 char#13 \bblash --- */
                   71730:       {  13,10180,                      /* character number, location */
                   71731:          19, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   71732:           { 15,   25, 3,86, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71733:             "\xf1\x01\x31\xa0\xf1\x11\x31\x90\xf2\x21\x31\x80\xf1"
                   71734:             "\x31\x31\x70\xf1\x41\x31\x60\xf2\x51\x31\x50\xf1\x61"
                   71735:             "\x31\x40\xf1\x71\x31\x30\xf2\x81\x31\x20\xf1\x91\x31"
                   71736:             "\x10\xf1\xa1\x31" }  },
                   71737:       /* --- pixel bitmap for stmary180 char#14 \moo --- */
                   71738:       {  14,11011,                      /* character number, location */
                   71739:          14, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
                   71740:           { 13,   15, 3,25, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71741:             "\xf6\x61\x6d\xf3\x61\x6f\x11\x41\x11\x41\x14\x34\x11" }  },
                   71742:       /* --- pixel bitmap for stmary180 char#15 \varotimes --- */
                   71743:       {  15,11792,                      /* character number, location */
                   71744:          15, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   71745:           { 17,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71746:             "\xc0\x07\x60\x30\x20\x80\x60\x00\x23\x01\x49\x04\x51"
                   71747:             "\x10\xc1\x40\x81\x01\x01\x03\x05\x06\x11\x14\x41\x24"
                   71748:             "\x01\x89\x01\x0c\x02\x08\x18\x0c\xc0\x07\x00" }  },
                   71749:       /* --- pixel bitmap for stmary180 char#16 \varoast --- */
                   71750:       {  16,12752,                      /* character number, location */
                   71751:          15, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   71752:           { 17,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71753:             "\xc0\x07\x60\x30\x20\x80\x20\x08\x22\x10\x48\x22\x52"
                   71754:             "\x5c\xc7\xf0\x87\x81\x03\xc3\x1f\xc6\x75\x94\x88\x24"
                   71755:             "\x10\x88\x20\x08\x02\x08\x18\x0c\xc0\x07\x00" }  },
                   71756:       /* --- pixel bitmap for stmary180 char#17 \varobar --- */
                   71757:       {  17,13589,                      /* character number, location */
                   71758:          15, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   71759:           { 17,   17, 3,69, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71760:             "\x65\xa2\x21\x22\x71\x41\x41\x51\x51\x51\x20\xf1\x11"
                   71761:             "\x61\x61\x1f\x41\x71\x71\xf1\x11\x61\x61\x10\x21\x51"
                   71762:             "\x51\x51\x41\x41\x72\x21\x22\xa5\x61" }  },
                   71763:       /* --- pixel bitmap for stmary180 char#18 \varodot --- */
                   71764:       {  18,14409,                      /* character number, location */
                   71765:          15, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   71766:           { 17,   17, 3,65, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71767:             "\x65\xa2\x52\x71\x91\x51\xb1\x20\xf1\x11\xd1\x11\xe0"
                   71768:             "\x11\x0f\x21\x63\x61\x01\xe0\x11\xf1\x11\xd1\x10\x21"
                   71769:             "\xb1\x51\x91\x72\x52\xa5\x62" }  },
                   71770:       /* --- pixel bitmap for stmary180 char#19 \varoslash --- */
                   71771:       {  19,15216,                      /* character number, location */
                   71772:          15, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   71773:           { 17,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71774:             "\xc0\x07\x60\x30\x20\x80\x20\x00\x23\x00\x49\x00\x51"
                   71775:             "\x00\xc1\x00\x81\x01\x01\x03\x01\x06\x01\x14\x01\x24"
                   71776:             "\x01\x88\x01\x08\x02\x08\x18\x0c\xc0\x07\x00" }  },
                   71777:       /* --- pixel bitmap for stmary180 char#20 \varobslash --- */
                   71778:       {  20,16039,                      /* character number, location */
                   71779:          15, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   71780:           { 17,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71781:             "\xc0\x07\x60\x30\x20\x80\x60\x00\x22\x01\x48\x04\x50"
                   71782:             "\x10\xc0\x40\x80\x01\x01\x03\x04\x06\x10\x14\x40\x24"
                   71783:             "\x00\x89\x00\x0c\x02\x08\x18\x0c\xc0\x07\x00" }  },
                   71784:       /* --- pixel bitmap for stmary180 char#21 \varocircle --- */
                   71785:       {  21,17001,                      /* character number, location */
                   71786:          15, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   71787:           { 17,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71788:             "\xc0\x07\x60\x30\x20\x80\x20\x00\x22\x38\x48\x8c\x51"
                   71789:             "\x08\xc2\x08\x88\x11\x10\x23\x20\x86\x20\x14\x63\x24"
                   71790:             "\x38\x88\x00\x08\x02\x08\x18\x0c\xc0\x07\x00" }  },
                   71791:       /* --- pixel bitmap for stmary180 char#22 \varoplus --- */
                   71792:       {  22,17833,                      /* character number, location */
                   71793:          15, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   71794:           { 17,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71795:             "\xc0\x07\x60\x32\x20\x84\x20\x08\x22\x10\x48\x20\x50"
                   71796:             "\x40\xc0\x80\x80\xff\xff\x03\x02\x06\x04\x14\x08\x24"
                   71797:             "\x10\x88\x20\x08\x42\x08\x98\x0c\xc0\x07\x00" }  },
                   71798:       /* --- pixel bitmap for stmary180 char#23 \varominus --- */
                   71799:       {  23,18660,                      /* character number, location */
                   71800:          15, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   71801:           { 17,   17, 3,65, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71802:             "\x65\xa2\x52\x71\x91\x51\xb1\x20\xf1\x11\xd1\x1f\x11"
                   71803:             "\xe0\x11\x0e\x03\x0f\x11\xe0\x11\xf1\x11\xd1\x10\x21"
                   71804:             "\xb1\x51\x91\x72\x52\xa5\x61" }  },
                   71805:       /* --- pixel bitmap for stmary180 char#24 \boxast --- */
                   71806:       {  24,19507,                      /* character number, location */
                   71807:          14, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   71808:           { 15,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71809:             "\xff\xff\x00\x60\x00\x30\x38\x18\x08\xcc\x75\xc6\x1f"
                   71810:             "\x83\x83\xf1\xc7\x5c\x67\x20\x30\x38\x18\x00\x0c\x00"
                   71811:             "\xfe\xff\x01" }  },
                   71812:       /* --- pixel bitmap for stmary180 char#25 \boxbar --- */
                   71813:       {  25,20252,                      /* character number, location */
                   71814:          14, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   71815:           { 15,   15, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71816:             "\x0e\x01\x0f\xc1\x61\x61\x0e\x01" }  },
                   71817:       /* --- pixel bitmap for stmary180 char#26 \boxdot --- */
                   71818:       {  26,20997,                      /* character number, location */
                   71819:          14, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   71820:           { 15,   15, 3,28, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71821:             "\x0e\x01\x0f\x41\xd1\x0f\x21\x53\x51\x0f\x41\xd1\x0e"
                   71822:             "\x01" }  },
                   71823:       /* --- pixel bitmap for stmary180 char#27 \boxslash --- */
                   71824:       {  27,21724,                      /* character number, location */
                   71825:          14, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   71826:           { 15,   15, 3,54, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71827:             "\x0e\x02\xc3\xb1\x12\xa1\x22\x91\x32\x81\x42\x71\x52"
                   71828:             "\x61\x62\x51\x72\x41\x82\x31\x92\x21\xa2\x11\xb3\xce"
                   71829:             "\x02" }  },
                   71830:       /* --- pixel bitmap for stmary180 char#28 \boxbslash --- */
                   71831:       {  28,22468,                      /* character number, location */
                   71832:          14, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   71833:           { 15,   15, 3,54, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71834:             "\x0e\x03\xc2\x11\xb2\x21\xa2\x31\x92\x41\x82\x51\x72"
                   71835:             "\x61\x62\x71\x52\x81\x42\x91\x32\xa1\x22\xb1\x12\xce"
                   71836:             "\x03" }  },
                   71837:       /* --- pixel bitmap for stmary180 char#29 \boxcircle --- */
                   71838:       {  29,23216,                      /* character number, location */
                   71839:          15, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   71840:           { 16,   16, 3,54, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71841:             "\x0e\x02\x0f\x21\xe1\x01\x54\x52\x41\x41\x41\x0f\x31"
                   71842:             "\x31\x61\x31\x01\x41\x41\x42\x54\x51\x0f\x21\xe1\x0e"
                   71843:             "\x02" }  },
                   71844:       /* --- pixel bitmap for stmary180 char#30 \boxbox --- */
                   71845:       {  30,23967,                      /* character number, location */
                   71846:          14, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   71847:           { 15,   15, 3,42, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71848:             "\x0e\x01\x0f\x21\xd1\x01\x37\x31\x0f\x41\x31\x51\x31"
                   71849:             "\x01\x37\x31\x0f\x21\xd1\x0e\x01" }  },
                   71850:       /* --- pixel bitmap for stmary180 char#31 \boxempty --- */
                   71851:       {  31,24706,                      /* character number, location */
                   71852:          14, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   71853:           { 15,   15, 3,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71854:             "\x0e\x01\x0f\xc1\xd1\x0e\x01" }  },
                   71855:       /* --- pixel bitmap for stmary180 char#32 \lightning --- */
                   71856:       {  32,25599,                      /* character number, location */
                   71857:          17, 2,   -5, 2,      /* topleft row,col, and botleft row,col */
                   71858:           {  8,   22, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71859:             "\x80\x40\x40\x40\x20\x20\x10\x10\x08\x88\xe8\x5c\x44"
                   71860:             "\x20\x20\x20\x11\x12\x0a\xec\x1c\x04" }  },
                   71861:       /* --- pixel bitmap for stmary180 char#33 \merge --- */
                   71862:       {  33,26400,                      /* character number, location */
                   71863:          18, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   71864:           { 18,   18, 3,60, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71865:             "\xf2\x52\x42\x50\xf2\x41\x21\x21\x21\x40\xf3\x31\x42"
                   71866:             "\x41\x30\xf2\x21\x52\x51\x20\xf2\x11\x51\x21\x51\x1f"
                   71867:             "\x11\x51\x41\x51" }  },
                   71868:       /* --- pixel bitmap for stmary180 char#34 \vartimes --- */
                   71869:       {  34,27087,                      /* character number, location */
                   71870:          17, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   71871:           { 12,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71872:             "\x01\x28\x40\x02\x44\x20\x08\x81\x10\x90\x00\x06\x20"
                   71873:             "\x00\x06\x90\x80\x10\x08\x41\x20\x02\x24\x40\x01\x08" }  },
                   71874:       /* --- pixel bitmap for stmary180 char#35 \fatsemi --- */
                   71875:       {  35,27676,                      /* character number, location */
                   71876:          14, 1,   -5, 1,      /* topleft row,col, and botleft row,col */
                   71877:           {  6,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71878:             "\x5e\x18\x86\xa1\x07\x00\x5e\x18\x86\xa1\x0f\x41\x08"
                   71879:             "\x41\x00" }  },
                   71880:       /* --- pixel bitmap for stmary180 char#36 \sswarrow --- */
                   71881:       {  36,28569,                      /* character number, location */
                   71882:          17, 2,   -5, 2,      /* topleft row,col, and botleft row,col */
                   71883:           { 12,   22, 3,59, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71884:             "\xf1\xb1\xf1\xa1\x10\xf1\x91\x20\xf2\x81\x30\xf1\x71"
                   71885:             "\x40\xf1\x61\x50\xf2\x51\x61\x31\x81\x21\x81\x11\xa2"
                   71886:             "\x13\x63\x91\x91" }  },
                   71887:       /* --- pixel bitmap for stmary180 char#37 \ssearrow --- */
                   71888:       {  37,29462,                      /* character number, location */
                   71889:          17, 1,   -5, 1,      /* topleft row,col, and botleft row,col */
                   71890:           { 12,   22, 3,63, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71891:             "\xf1\x01\xb0\xf1\x11\xa0\xf1\x21\x90\xf2\x31\x80\xf1"
                   71892:             "\x41\x70\xf1\x51\x60\xf2\x61\x50\x71\x31\x71\x21\x91"
                   71893:             "\x11\x53\x12\x93\xb1\x21" }  },
                   71894:       /* --- pixel bitmap for stmary180 char#38 \curlywedgeuparrow --- */
                   71895:       {  38,30466,                      /* character number, location */
                   71896:          18, 0,   -5, 0,      /* topleft row,col, and botleft row,col */
                   71897:           { 17,   23, 3,68, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71898:             "\x81\x80\xf1\x73\x70\x57\x99\x40\xf2\x81\x80\xf4\x71"
                   71899:             "\x11\x70\xf2\x61\x31\x60\xf1\x51\x51\x50\x41\x71\x71"
                   71900:             "\x91\x51\xb1\x31\xd1\x11\xe0\x11" }  },
                   71901:       /* --- pixel bitmap for stmary180 char#39 \curlywedgedownarrow --- */
                   71902:       {  39,31496,                      /* character number, location */
                   71903:          18, 0,   -6, 0,      /* topleft row,col, and botleft row,col */
                   71904:           { 17,   24, 3,67, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71905:             "\xf7\x81\x80\xf4\x71\x11\x70\xf2\x61\x31\x60\xf1\x11"
                   71906:             "\x31\x51\x31\x10\x11\x21\x71\x21\x21\x11\x91\x11\x22"
                   71907:             "\xb2\x21\xd1\x15\x75\x52\x32\x51" }  },
                   71908:       /* --- pixel bitmap for stmary180 char#40 \fatslash --- */
                   71909:       {  40,32192,                      /* character number, location */
                   71910:          19, 7,   -6, 7,      /* topleft row,col, and botleft row,col */
                   71911:           { 15,   25, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71912:             "\x00\x7e\x00\x21\x40\x10\x20\x04\x10\x02\x84\x00\x42"
                   71913:             "\x80\x20\x40\x08\x20\x04\x08\x02\x84\x00\x42\x80\x10"
                   71914:             "\x40\x08\x10\x04\x08\x01\x84\x00\x41\x80\x10\x40\x08"
                   71915:             "\x10\x02\x08\x01\x82\x00\x3f\x00" }  },
                   71916:       /* --- pixel bitmap for stmary180 char#41 \fatbslash --- */
                   71917:       {  41,32896,                      /* character number, location */
                   71918:          19, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   71919:           { 16,   25, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71920:             "\x7f\x00\x41\x00\x42\x00\x82\x00\x82\x00\x84\x00\x04"
                   71921:             "\x01\x08\x01\x08\x02\x08\x02\x10\x02\x10\x04\x10\x04"
                   71922:             "\x20\x04\x20\x08\x40\x08\x40\x10\x40\x10\x80\x10\x80"
                   71923:             "\x20\x00\x21\x00\x21\x00\x41\x00\x42\x00\xfe" }  },
                   71924:       /* --- pixel bitmap for stmary180 char#42 \lbag --- */
                   71925:       {  42,33499,                      /* character number, location */
                   71926:          19, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   71927:           {  9,   25, 3,34, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71928:             "\x23\x51\x31\x31\x41\x30\xf5\x51\x30\xf3\x41\x40\xf9"
                   71929:             "\x31\x50\x41\x94" }  },
                   71930:       /* --- pixel bitmap for stmary180 char#43 \rbag --- */
                   71931:       {  43,34061,                      /* character number, location */
                   71932:          19, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   71933:           {  9,   25, 3,33, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71934:             "\x43\x51\x31\x41\x41\xf5\x31\x50\xf3\x41\x40\xf9\x51"
                   71935:             "\x30\x41\x44\x54" }  },
                   71936:       /* --- pixel bitmap for stmary180 char#44 \varbigcirc --- */
                   71937:       {  44,34961,                      /* character number, location */
                   71938:          18, 1,   -5, 1,      /* topleft row,col, and botleft row,col */
                   71939:           { 23,   23, 3,73, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71940:             "\x87\xd3\x73\x91\xd1\x71\xe0\x11\x51\xe0\x31\x20\xf2"
                   71941:             "\x11\xe0\x51\x1f\x61\xe0\x71\xf2\x11\xe0\x51\x10\x21"
                   71942:             "\xe0\x31\x51\xe0\x11\x71\xd1\x93\x73\xd7\x81" }  },
                   71943:       /* --- pixel bitmap for stmary180 char#45 \leftrightarroweq --- */
                   71944:       {  45,36009,                      /* character number, location */
                   71945:          14, 1,    3, 1,      /* topleft row,col, and botleft row,col */
                   71946:           { 17,   11, 3,44, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71947:             "\xf1\x41\x71\x40\x31\x91\x51\xb1\x2e\x03\x21\xb1\x51"
                   71948:             "\x91\x30\xf1\x41\x71\x40\xe0\x3e\x03" }  },
                   71949:       /* --- pixel bitmap for stmary180 char#46 \curlyveedownarrow --- */
                   71950:       {  46,36619,                      /* character number, location */
                   71951:          17, 0,   -6, 0,      /* topleft row,col, and botleft row,col */
                   71952:           { 17,   23, 3,69, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71953:             "\x01\xe0\x11\x11\xd1\x31\xb1\x51\x91\x71\x71\x40\xf1"
                   71954:             "\x51\x51\x50\xf2\x61\x31\x60\xf4\x71\x11\x70\xf2\x81"
                   71955:             "\x80\x49\x97\x50\xf1\x73\x70\x81\x83" }  },
                   71956:       /* --- pixel bitmap for stmary180 char#47 \curlyveeuparrow --- */
                   71957:       {  47,37269,                      /* character number, location */
                   71958:          18, 0,   -6, 0,      /* topleft row,col, and botleft row,col */
                   71959:           { 17,   24, 3,67, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71960:             "\x52\x32\x55\x75\x11\xd1\x22\xb2\x21\x11\x91\x11\x21"
                   71961:             "\x21\x71\x21\x10\xf1\x11\x31\x51\x31\x10\xf2\x61\x31"
                   71962:             "\x60\xf4\x71\x11\x70\xf7\x81\x81" }  },
                   71963:       /* --- pixel bitmap for stmary180 char#48 \nnwarrow --- */
                   71964:       {  48,37894,                      /* character number, location */
                   71965:          17, 2,   -5, 2,      /* topleft row,col, and botleft row,col */
                   71966:           { 12,   22, 3,62, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71967:             "\x21\xb3\x92\x13\x51\x11\x91\x21\x71\x31\x70\xf2\x51"
                   71968:             "\x60\xf1\x61\x50\xf1\x71\x40\xf2\x81\x30\xf1\x91\x20"
                   71969:             "\xf1\xa1\x10\xf1\xb1" }  },
                   71970:       /* --- pixel bitmap for stmary180 char#49 \nnearrow --- */
                   71971:       {  49,38475,                      /* character number, location */
                   71972:          17, 1,   -5, 1,      /* topleft row,col, and botleft row,col */
                   71973:           { 12,   22, 3,59, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71974:             "\x91\x93\x63\x12\xa1\x11\x81\x21\x81\x31\xf2\x61\x50"
                   71975:             "\xf1\x51\x60\xf1\x41\x70\xf2\x31\x80\xf1\x21\x90\xf1"
                   71976:             "\x11\xaf\x11\xb1" }  },
                   71977:       /* --- pixel bitmap for stmary180 char#50 \leftslice --- */
                   71978:       {  50,39244,                      /* character number, location */
                   71979:          12, 1,    1, 1,      /* topleft row,col, and botleft row,col */
                   71980:           { 17,   11, 3,39, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71981:             "\xb4\xb2\x41\x82\x61\x53\x91\x22\xc3\xe1\x22\xc1\x43"
                   71982:             "\x91\x72\x61\xa2\x41\xc4\x22" }  },
                   71983:       /* --- pixel bitmap for stmary180 char#51 \rightslice --- */
                   71984:       {  51,40002,                      /* character number, location */
                   71985:          12, 1,    1, 1,      /* topleft row,col, and botleft row,col */
                   71986:           { 17,   11, 3,39, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71987:             "\x24\xc1\x42\xa1\x62\x71\x93\x41\xc2\x21\xe3\xc2\x21"
                   71988:             "\x93\x51\x62\x81\x42\xb4\xb2" }  },
                   71989:       /* --- pixel bitmap for stmary180 char#52 \varolessthan --- */
                   71990:       {  52,40782,                      /* character number, location */
                   71991:          15, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   71992:           { 17,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   71993:             "\xc0\x07\x60\x30\x20\x80\x20\xc0\x23\x60\x48\x30\x50"
                   71994:             "\x1c\xc0\x06\x80\x03\x00\x1b\x00\xc6\x01\x14\x0c\x24"
                   71995:             "\x60\x88\x00\x0f\x02\x08\x18\x0c\xc0\x07\x00" }  },
                   71996:       /* --- pixel bitmap for stmary180 char#53 \varogreaterthan --- */
                   71997:       {  53,41605,                      /* character number, location */
                   71998:          15, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   71999:           { 17,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72000:             "\xc0\x07\x60\x30\x20\x80\xe0\x01\x22\x0c\x48\x60\x50"
                   72001:             "\x00\xc7\x00\xb0\x01\x80\x03\xc0\x06\x70\x14\x18\x24"
                   72002:             "\x0c\x88\x07\x08\x02\x08\x18\x0c\xc0\x07\x00" }  },
                   72003:       /* --- pixel bitmap for stmary180 char#54 \varovee --- */
                   72004:       {  54,42420,                      /* character number, location */
                   72005:          15, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   72006:           { 17,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72007:             "\xc0\x07\x60\x30\x20\x80\x60\x00\xa3\x00\x4a\x01\x54"
                   72008:             "\x04\xc4\x08\x88\x21\x08\x43\x10\x06\x11\x14\x22\x24"
                   72009:             "\x44\x88\x50\x08\xa2\x08\x98\x0c\xc0\x07\x00" }  },
                   72010:       /* --- pixel bitmap for stmary180 char#55 \varowedge --- */
                   72011:       {  55,43267,                      /* character number, location */
                   72012:          15, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   72013:           { 17,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72014:             "\xc0\x07\x60\x32\x20\x8a\x20\x14\x22\x44\x48\x88\x50"
                   72015:             "\x10\xc1\x10\x84\x21\x08\x23\x20\x46\x40\x54\x00\xa5"
                   72016:             "\x00\x8a\x01\x0c\x02\x08\x18\x0c\xc0\x07\x00" }  },
                   72017:       /* --- pixel bitmap for stmary180 char#56 \talloblong --- */
                   72018:       {  56,43930,                      /* character number, location */
                   72019:          19, 2,   -6, 2,      /* topleft row,col, and botleft row,col */
                   72020:           {  8,   25, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72021:             "\x08\x0f\xe1\x61\x0f\x71\x61\x08" }  },
                   72022:       /* --- pixel bitmap for stmary180 char#57 \interleave --- */
                   72023:       {  57,44686,                      /* character number, location */
                   72024:          19, 2,   -6, 2,      /* topleft row,col, and botleft row,col */
                   72025:           { 13,   25, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72026:             "\xfe\x01\x51\x51\x0f\x91\x51\x51" }  },
                   72027:       /* --- pixel bitmap for stmary180 char#58 \obar --- */
                   72028:       {  58,45562,                      /* character number, location */
                   72029:          15, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   72030:           { 17,   17, 3,69, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72031:             "\x65\xa2\x21\x22\x71\x41\x41\x51\x51\x51\x20\xf1\x11"
                   72032:             "\x61\x61\x1f\x41\x71\x71\xf1\x11\x61\x61\x10\x21\x51"
                   72033:             "\x51\x51\x41\x41\x72\x21\x22\xa5\x61" }  },
                   72034:       /* --- pixel bitmap for stmary180 char#59 \oslash --- */
                   72035:       {  59,46388,                      /* character number, location */
                   72036:          15, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   72037:           { 17,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72038:             "\xc0\x07\x60\x30\x20\x80\x60\x00\x22\x01\x48\x04\x50"
                   72039:             "\x10\xc0\x40\x80\x01\x01\x03\x04\x06\x10\x14\x40\x24"
                   72040:             "\x00\x89\x00\x0c\x02\x08\x18\x0c\xc0\x07\x00" }  },
                   72041:       /* --- pixel bitmap for stmary180 char#60 \olessthan --- */
                   72042:       {  60,47201,                      /* character number, location */
                   72043:          15, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   72044:           { 17,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72045:             "\xc0\x07\x60\x30\x20\x80\x20\xc0\x23\x60\x48\x30\x50"
                   72046:             "\x1c\xc0\x06\x80\x03\x00\x1b\x00\xc6\x01\x14\x0c\x24"
                   72047:             "\x60\x88\x00\x0f\x02\x08\x18\x0c\xc0\x07\x00" }  },
                   72048:       /* --- pixel bitmap for stmary180 char#61 \ogreaterthan --- */
                   72049:       {  61,48015,                      /* character number, location */
                   72050:          15, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   72051:           { 17,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72052:             "\xc0\x07\x60\x30\x20\x80\xe0\x01\x22\x0c\x48\x60\x50"
                   72053:             "\x00\xc7\x00\xb0\x01\x80\x03\xc0\x06\x70\x14\x18\x24"
                   72054:             "\x0c\x88\x07\x08\x02\x08\x18\x0c\xc0\x07\x00" }  },
                   72055:       /* --- pixel bitmap for stmary180 char#62 \ovee --- */
                   72056:       {  62,48821,                      /* character number, location */
                   72057:          15, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   72058:           { 17,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72059:             "\xc0\x07\x60\x30\x20\x80\x60\x00\xa3\x00\x4a\x01\x54"
                   72060:             "\x04\xc4\x08\x88\x21\x08\x43\x10\x06\x11\x14\x22\x24"
                   72061:             "\x44\x88\x50\x08\xa2\x08\x98\x0c\xc0\x07\x00" }  },
                   72062:       /* --- pixel bitmap for stmary180 char#63 \owedge --- */
                   72063:       {  63,49659,                      /* character number, location */
                   72064:          15, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   72065:           { 17,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72066:             "\xc0\x07\x60\x32\x20\x8a\x20\x14\x22\x44\x48\x88\x50"
                   72067:             "\x10\xc1\x10\x84\x21\x08\x23\x20\x46\x40\x54\x00\xa5"
                   72068:             "\x00\x8a\x01\x0c\x02\x08\x18\x0c\xc0\x07\x00" }  },
                   72069:       /* --- pixel bitmap for stmary180 char#64 \oblong --- */
                   72070:       {  64,50385,                      /* character number, location */
                   72071:          16, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   72072:           { 13,   16, 3,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72073:             "\x0d\x0f\xd1\xb1\x0d" }  },
                   72074:       /* --- pixel bitmap for stmary180 char#65 \inplus --- */
                   72075:       {  65,51118,                      /* character number, location */
                   72076:          14, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   72077:           { 13,   15, 3,44, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72078:             "\x58\x32\xa1\xa0\xf1\x11\x41\x6f\x11\x51\x6d\x0f\x11"
                   72079:             "\x51\x60\xf1\x11\x41\x60\x21\xd2\xd8" }  },
                   72080:       /* --- pixel bitmap for stmary180 char#66 \niplus --- */
                   72081:       {  66,51846,                      /* character number, location */
                   72082:          14, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   72083:           { 13,   15, 3,45, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72084:             "\x08\xd2\xd1\x20\xf1\x61\x41\x10\xf1\x61\x51\x0d\xf1"
                   72085:             "\x61\x51\xf1\x61\x41\x10\xa1\xa2\x38\x5f" }  },
                   72086:       /* --- pixel bitmap for stmary180 char#67 \nplus --- */
                   72087:       {  67,52578,                      /* character number, location */
                   72088:          16, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   72089:           { 15,   17, 3,38, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72090:             "\x47\x62\x72\x31\xb1\x1f\x41\x61\x61\x01\x1b\x11\x0f"
                   72091:             "\x41\x61\x61\x0f\x21\xd1" }  },
                   72092:       /* --- pixel bitmap for stmary180 char#68 \subsetplus --- */
                   72093:       {  68,53410,                      /* character number, location */
                   72094:          14, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   72095:           { 15,   15, 3,50, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72096:             "\x5a\x32\xc1\xc0\xf1\x11\x61\x6f\x11\x71\x61\x39\x2f"
                   72097:             "\x11\x71\x60\xf1\x11\x61\x60\x21\xe0\x12\xe0\x1a" }  },
                   72098:       /* --- pixel bitmap for stmary180 char#69 \supsetplus --- */
                   72099:       {  69,54204,                      /* character number, location */
                   72100:          14, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   72101:           { 15,   15, 3,51, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72102:             "\x0a\xe0\x12\xe0\x11\x20\xf1\x61\x61\x10\xf1\x61\x71"
                   72103:             "\x29\x31\xf1\x61\x71\xf1\x61\x61\x10\xc1\xc2\x3a\x51" }  },
                   72104:       /* --- pixel bitmap for stmary180 char#70 \subsetpluseq --- */
                   72105:       {  70,55016,                      /* character number, location */
                   72106:          16, 2,   -5, 2,      /* topleft row,col, and botleft row,col */
                   72107:           { 15,   21, 3,58, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72108:             "\x5a\x32\xc1\xc0\xf1\x11\x61\x6f\x11\x71\x61\x39\x2f"
                   72109:             "\x11\x71\x60\xf1\x11\x61\x60\x21\xe0\x12\xe0\x1a\xf4"
                   72110:             "\xe0\x1e\x01" }  },
                   72111:       /* --- pixel bitmap for stmary180 char#71 \supsetpluseq --- */
                   72112:       {  71,55834,                      /* character number, location */
                   72113:          16, 2,   -5, 2,      /* topleft row,col, and botleft row,col */
                   72114:           { 15,   21, 3,60, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72115:             "\x0a\xe0\x12\xe0\x11\x20\xf1\x61\x61\x10\xf1\x61\x71"
                   72116:             "\x29\x31\xf1\x61\x71\xf1\x61\x61\x10\xc1\xc2\x3a\x50"
                   72117:             "\xf4\xe0\x1e\x01" }  },
                   72118:       /* --- pixel bitmap for stmary180 char#72 \Lbag --- */
                   72119:       {  72,56615,                      /* character number, location */
                   72120:          19, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   72121:           {  9,   25, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72122:             "\x1e\x42\x8c\x00\x01\x02\x04\x08\x08\x10\x30\x20\x60"
                   72123:             "\xc0\xc0\x80\x01\x01\x03\x06\x0c\x18\x30\xc0\x00\x03"
                   72124:             "\x1c\xe0\x01" }  },
                   72125:       /* --- pixel bitmap for stmary180 char#73 \Rbag --- */
                   72126:       {  73,57117,                      /* character number, location */
                   72127:          19, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   72128:           {  9,   25, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72129:             "\xf0\x10\x22\x46\x80\x00\x01\x02\x08\x10\x60\x80\x00"
                   72130:             "\x03\x06\x18\x30\x40\x80\x01\x03\x06\x0c\x18\x18\x18"
                   72131:             "\x1c\x0f\x00" }  },
                   72132:       /* --- pixel bitmap for stmary180 char#74 \llbracket --- */
                   72133:       {  74,57976,                      /* character number, location */
                   72134:          19, 2,   -6, 2,      /* topleft row,col, and botleft row,col */
                   72135:           {  8,   25, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72136:             "\x08\x0f\xe1\x21\x4f\x71\x21\x48" }  },
                   72137:       /* --- pixel bitmap for stmary180 char#75 \rrbracket --- */
                   72138:       {  75,58878,                      /* character number, location */
                   72139:          19, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   72140:           {  7,   25, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72141:             "\x07\xfe\x31\x21\xf7\x31\x21\x07" }  },
                   72142:       /* --- pixel bitmap for stmary180 char#76 \llparenthesis --- */
                   72143:       {  76,59638,                      /* character number, location */
                   72144:          19, 3,   -6, 3,      /* topleft row,col, and botleft row,col */
                   72145:           {  6,   25, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72146:             "\x20\x8c\xb2\xa4\x69\x8a\xe3\x38\x8e\xe3\x38\x8e\xa3"
                   72147:             "\x68\x9a\x24\x8b\xc2\x20" }  },
                   72148:       /* --- pixel bitmap for stmary180 char#77 \rrparenthesis --- */
                   72149:       {  77,60395,                      /* character number, location */
                   72150:          19, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   72151:           {  6,   25, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72152:             "\xc1\x50\x34\x49\x96\x45\x71\x1c\xc7\x71\x1c\xc7\x71"
                   72153:             "\x94\x65\x49\x53\x0c\x01" }  },
                   72154:       /* --- pixel bitmap for stmary180 char#78 \binampersand --- */
                   72155:       {  78,61208,                      /* character number, location */
                   72156:          15, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   72157:           { 17,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72158:             "\xc0\x03\x40\x08\x40\x20\x80\x40\x00\x81\x00\x82\x00"
                   72159:             "\xc8\x00\x70\x00\x98\x00\x09\x06\x09\x10\x0a\x40\x12"
                   72160:             "\x00\x23\x00\x4e\x00\x23\x81\x81\xfc\x00\x00" }  },
                   72161:       /* --- pixel bitmap for stmary180 char#79 \bindnasrepma --- */
                   72162:       {  79,61913,                      /* character number, location */
                   72163:          15, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   72164:           { 17,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72165:             "\x00\x7e\x02\x03\x89\x01\xe4\x00\x88\x01\x90\x04\xa0"
                   72166:             "\x10\x20\xc1\x20\x01\x32\x00\x1c\x00\x26\x00\x82\x00"
                   72167:             "\x02\x01\x04\x02\x08\x04\x20\x04\x80\x07\x00" }  },
                   72168:       /* --- pixel bitmap for stmary180 char#80 \trianglelefteqslant --- */
                   72169:       {  80,62693,                      /* character number, location */
                   72170:          16, 2,   -5, 2,      /* topleft row,col, and botleft row,col */
                   72171:           { 15,   21, 3,76, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72172:             "\xe1\xc3\xa2\x21\x82\x41\x62\x61\x42\x81\x22\xa3\xc1"
                   72173:             "\x12\xb1\x32\x91\x52\x71\x72\x51\x92\x32\xa2\x11\x12"
                   72174:             "\xa2\x32\xe0\x12\xe0\x12\xe0\x12\xe0\x12\xe0\x12" }  },
                   72175:       /* --- pixel bitmap for stmary180 char#81 \trianglerighteqslant --- */
                   72176:       {  81,63472,                      /* character number, location */
                   72177:          16, 2,   -5, 2,      /* topleft row,col, and botleft row,col */
                   72178:           { 15,   21, 3,67, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72179:             "\x01\xe3\xc1\x22\xa1\x42\x81\x62\x61\x82\x41\xa2\x21"
                   72180:             "\xc3\xb2\x11\x92\x31\x72\x51\x52\x71\x32\x91\x12\xa3"
                   72181:             "\xa2\xb2\xb2\xb2\xb2\xb2\xb2\xd2" }  },
                   72182:       /* --- pixel bitmap for stmary180 char#82 \ntrianglelefteqslant --- */
                   72183:       {  82,64297,                      /* character number, location */
                   72184:          20, 2,   -8, 2,      /* topleft row,col, and botleft row,col */
                   72185:           { 15,   28, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72186:             "\x00\x10\x00\x08\x00\x04\x00\x01\x80\x04\xa0\x03\x30"
                   72187:             "\x01\x8e\xc0\x42\x18\x21\x43\x70\x20\x68\x10\xc4\x04"
                   72188:             "\x82\x03\x81\x83\x40\xc6\x20\xac\x09\x18\x07\x00\x07"
                   72189:             "\x80\x0c\x40\x18\x10\x30\x08\x60\x02\x00\x01\x80\x00"
                   72190:             "\x00" }  },
                   72191:       /* --- pixel bitmap for stmary180 char#83 \ntrianglerighteqslant --- */
                   72192:       {  83,65169,                      /* character number, location */
                   72193:          20, 2,   -8, 2,      /* topleft row,col, and botleft row,col */
                   72194:           { 15,   28, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72195:             "\x00\x10\x00\x08\x00\x04\x00\x11\x80\x38\x20\x64\x10"
                   72196:             "\xc2\x08\x81\x83\x00\x43\x40\x26\x20\x1c\x10\x0b\x64"
                   72197:             "\x04\x0e\x82\x01\x71\x80\x26\xe0\x08\x0c\x84\x01\x31"
                   72198:             "\x80\x06\xc0\x00\x18\x00\x0b\x00\x02\x00\x01\x80\x00"
                   72199:             "\x00" }  },
                   72200:       /* --- pixel bitmap for stmary180 char#84 \llfloor --- */
                   72201:       {  84,65885,                      /* character number, location */
                   72202:          19, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   72203:           { 13,   25, 3,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72204:             "\xfe\x01\x51\x6f\x81\x51\x6d" }  },
                   72205:       /* --- pixel bitmap for stmary180 char#85 \rrfloor --- */
                   72206:       {  85,66589,                      /* character number, location */
                   72207:          19, 0,   -6, 0,      /* topleft row,col, and botleft row,col */
                   72208:           { 13,   25, 3,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72209:             "\xfe\x61\x51\xf8\x61\x51\x0d" }  },
                   72210:       /* --- pixel bitmap for stmary180 char#86 \llceil --- */
                   72211:       {  86,67279,                      /* character number, location */
                   72212:          19, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   72213:           { 13,   25, 3,15, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72214:             "\x0d\x0f\xe1\x51\x6f\x81\x51\x61" }  },
                   72215:       /* --- pixel bitmap for stmary180 char#87 \rrceil --- */
                   72216:       {  87,67970,                      /* character number, location */
                   72217:          19, 0,   -6, 0,      /* topleft row,col, and botleft row,col */
                   72218:           { 13,   25, 3,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72219:             "\x0d\xfe\x61\x51\xf8\x61\x51" }  },
                   72220:       /* --- pixel bitmap for stmary180 char#88 \arrownot --- */
                   72221:       {  88,68393,                      /* character number, location */
                   72222:          11, 9,    1, 9,      /* topleft row,col, and botleft row,col */
                   72223:           {  7,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72224:             "\x40\x10\x08\x82\x40\x10\x04\x82\x00" }  },
                   72225:       /* --- pixel bitmap for stmary180 char#89 \Arrownot --- */
                   72226:       {  89,68745,                      /* character number, location */
                   72227:          14,10,   -2,10,      /* topleft row,col, and botleft row,col */
                   72228:           {  5,   16, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72229:             "\x10\x42\x84\x10\x21\x84\x08\x21\x42\x08" }  },
                   72230:       /* --- pixel bitmap for stmary180 char#90 \Mapstochar --- */
                   72231:       {  90,69132,                      /* character number, location */
                   72232:          14, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   72233:           {  2,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72234:             "\x55\x57\x75\x15" }  },
                   72235:       /* --- pixel bitmap for stmary180 char#91 \mapsfromchar --- */
                   72236:       {  91,69429,                      /* character number, location */
                   72237:          11,-3,    2,-3,      /* topleft row,col, and botleft row,col */
                   72238:           {  2,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72239:             "\xaa\xab\x02" }  },
                   72240:       /* --- pixel bitmap for stmary180 char#92 \Mapsfromchar --- */
                   72241:       {  92,69733,                      /* character number, location */
                   72242:          14,-3,   -1,-3,      /* topleft row,col, and botleft row,col */
                   72243:           {  2,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72244:             "\xaa\xab\xba\x2a" }  },
                   72245:       /* --- pixel bitmap for stmary180 char#93 \leftrightarrowtriangle --- */
                   72246:       {  93,70586,                      /* character number, location */
                   72247:          10, 1,    3, 1,      /* topleft row,col, and botleft row,col */
                   72248:           { 23,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72249:             "\x60\x00\x03\x2c\x80\x86\x11\x40\x2c\xf8\x3f\x68\x04"
                   72250:             "\x10\xc3\x02\x68\x80\x01\x0c\x00" }  },
                   72251:       /* --- pixel bitmap for stmary180 char#94 \leftarrowtriangle --- */
                   72252:       {  94,71429,                      /* character number, location */
                   72253:          10, 1,    3, 1,      /* topleft row,col, and botleft row,col */
                   72254:           { 23,    7, 3,39, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72255:             "\x53\xe0\x42\x21\xe0\x31\x41\xe0\x12\x5e\x02\x21\x41"
                   72256:             "\xe0\x42\x21\xe0\x63\xe0\x11" }  },
                   72257:       /* --- pixel bitmap for stmary180 char#95 \rightarrowtriangle --- */
                   72258:       {  95,72251,                      /* character number, location */
                   72259:          10, 1,    3, 1,      /* topleft row,col, and botleft row,col */
                   72260:           { 23,    7, 3,39, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72261:             "\xe0\x13\xe0\x61\x22\xe0\x41\x41\x2e\x02\x52\xe0\x11"
                   72262:             "\x41\xe0\x31\x22\xe0\x43\x51" }  },
                   72263:       /* --- pixel bitmap for stmary180 char#96 \bigtriangledown --- */
                   72264:       {  96,72959,                      /* character number, location */
                   72265:           0, 1,  -25, 1,      /* topleft row,col, and botleft row,col */
                   72266:           { 19,   25, 3,103, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   72267:             "\xf1\x0e\x05\x03\xd3\xf1\x12\xd2\x10\x13\xb3\x32\xb2"
                   72268:             "\x43\x93\x20\xf1\x32\x92\x30\x33\x73\x30\xf1\x42\x72"
                   72269:             "\x40\x43\x53\x92\x52\xa3\x33\x50\xf1\x62\x32\x60\x63"
                   72270:             "\x13\x60\xf1\x72\x12\x70\x75\x70\xf1\x83\x80\x92\x80" }  },
                   72271:       /* --- pixel bitmap for stmary180 char#97 \bigtriangleup --- */
                   72272:       {  97,73750,                      /* character number, location */
                   72273:           0, 1,  -25, 1,      /* topleft row,col, and botleft row,col */
                   72274:           { 19,   25, 3,102, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   72275:             "\x92\x80\xf1\x83\x80\x75\x70\xf1\x72\x12\x70\x63\x13"
                   72276:             "\x60\xf1\x62\x32\x60\x53\x33\xa2\x52\x93\x53\x40\xf1"
                   72277:             "\x42\x72\x40\x33\x73\x30\xf1\x32\x92\x30\x23\x93\x42"
                   72278:             "\xb2\x33\xb3\x10\xf1\x12\xd2\x13\xd3\x0f\x1e\x05" }  },
                   72279:       /* --- pixel bitmap for stmary180 char#98 \bigcurlyvee --- */
                   72280:       {  98,74539,                      /* character number, location */
                   72281:           0, 1,  -25, 1,      /* topleft row,col, and botleft row,col */
                   72282:           { 19,   25, 3,65, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72283:             "\x02\xe0\x16\xb4\x23\x93\x53\x73\x72\x72\x83\x53\x93"
                   72284:             "\x33\x50\xf1\x62\x32\x60\x63\x13\x60\xf1\x72\x12\x70"
                   72285:             "\x75\x70\xfa\x83\x80\x92\x81" }  },
                   72286:       /* --- pixel bitmap for stmary180 char#99 \bigcurlywedge --- */
                   72287:       {  99,75316,                      /* character number, location */
                   72288:           0, 1,  -25, 1,      /* topleft row,col, and botleft row,col */
                   72289:           { 19,   25, 3,64, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72290:             "\x92\x80\xfa\x83\x80\x75\x70\xf1\x72\x12\x70\x63\x13"
                   72291:             "\x60\xf1\x62\x32\x60\x53\x33\x93\x53\x82\x72\x73\x73"
                   72292:             "\x53\x93\x24\xb6\xe0\x12" }  },
                   72293:       /* --- pixel bitmap for stmary180 char#100 \bigsqcap --- */
                   72294:       { 100,76121,                      /* character number, location */
                   72295:           0, 1,  -25, 1,      /* topleft row,col, and botleft row,col */
                   72296:           { 19,   25, 2,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72297:             "\xff\x01\x00\x13\x00\xff\x16\x02\x0f\x02" }  },
                   72298:       /* --- pixel bitmap for stmary180 char#101 \bigbox --- */
                   72299:       { 101,76928,                      /* character number, location */
                   72300:           0, 1,  -25, 1,      /* topleft row,col, and botleft row,col */
                   72301:           { 19,   25, 3,28, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72302:             "\xf1\x0e\x05\x0f\xe2\xe0\x12\x0f\x52\xe0\x12\x0f\x1e"
                   72303:             "\x05" }  },
                   72304:       /* --- pixel bitmap for stmary180 char#102 \bigparallel --- */
                   72305:       { 102,77561,                      /* character number, location */
                   72306:           0, 1,  -25, 1,      /* topleft row,col, and botleft row,col */
                   72307:           {  9,   25, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72308:             "\xfe\x02\x52\x0f\x92\x52" }  },
                   72309:       /* --- pixel bitmap for stmary180 char#103 \biginterleave --- */
                   72310:       { 103,78299,                      /* character number, location */
                   72311:           0, 1,  -25, 1,      /* topleft row,col, and botleft row,col */
                   72312:           { 16,   25, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72313:             "\xfe\x02\x52\x52\x0f\x92\x52\x52" }  },
                   72314:       /* --- pixel bitmap for stmary180 char#104 (noname) --- */
                   72315:       { 104,79285,                      /* character number, location */
                   72316:           0, 1,  -35, 1,      /* topleft row,col, and botleft row,col */
                   72317:           { 26,   35, 3,157, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   72318:             "\xf1\x0e\x0c\x03\xe0\x63\xf1\x12\xe0\x62\x10\x13\xe0"
                   72319:             "\x43\x32\xe0\x42\x43\xe0\x23\x20\xf1\x32\xe0\x22\x30"
                   72320:             "\x33\xe3\x30\xf1\x42\xe2\x40\x43\xc3\x40\xf1\x52\xc2"
                   72321:             "\x50\x53\xa3\xb2\xa2\xc3\x83\x60\xf1\x72\x82\x70\x73"
                   72322:             "\x63\x70\xf1\x82\x62\x80\x83\x43\x80\xf1\x92\x42\x90"
                   72323:             "\x93\x23\xe0\x52\x22\xe0\x66\xa0\xf2\xb4\xb0\xf1\xc2"
                   72324:             "\xc0" }  },
                   72325:       /* --- pixel bitmap for stmary180 char#105 (noname) --- */
                   72326:       { 105,80245,                      /* character number, location */
                   72327:           0, 1,  -35, 1,      /* topleft row,col, and botleft row,col */
                   72328:           { 26,   35, 3,156, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   72329:             "\xf1\xc2\xc0\xf2\xb4\xb0\xa6\xe0\x62\x22\xe0\x53\x23"
                   72330:             "\x90\xf1\x92\x42\x90\x83\x43\x80\xf1\x82\x62\x80\x73"
                   72331:             "\x63\x70\xf1\x72\x82\x70\x63\x83\xc2\xa2\xb3\xa3\x50"
                   72332:             "\xf1\x52\xc2\x50\x43\xc3\x40\xf1\x42\xe2\x40\x33\xe3"
                   72333:             "\x30\xf1\x32\xe0\x22\x30\x23\xe0\x23\x42\xe0\x42\x33"
                   72334:             "\xe0\x43\x10\xf1\x12\xe0\x62\x13\xe0\x63\x0f\x1e\x0c" }  },
                   72335:       /* --- pixel bitmap for stmary180 char#106 (noname) --- */
                   72336:       { 106,81203,                      /* character number, location */
                   72337:           0, 1,  -35, 1,      /* topleft row,col, and botleft row,col */
                   72338:           { 26,   35, 3,91, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72339:             "\x02\xe0\x86\xe0\x44\x23\xe0\x23\x53\xe3\x73\xc3\x93"
                   72340:             "\xa3\xb2\xa2\xc3\x83\xd3\x63\xe0\x12\x62\xe0\x23\x43"
                   72341:             "\x80\xf1\x92\x42\x90\x93\x23\x90\xf1\xa2\x22\xa0\xa6"
                   72342:             "\xa0\xf5\xb4\xb0\xfb\xc2\xc0" }  },
                   72343:       /* --- pixel bitmap for stmary180 char#107 (noname) --- */
                   72344:       { 107,82141,                      /* character number, location */
                   72345:           0, 1,  -35, 1,      /* topleft row,col, and botleft row,col */
                   72346:           { 26,   35, 3,90, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72347:             "\xfb\xc2\xc0\xf5\xb4\xb0\xa6\xa0\xf1\xa2\x22\xa0\x93"
                   72348:             "\x23\x90\xf1\x92\x42\x90\x83\x43\xe0\x22\x62\xe0\x13"
                   72349:             "\x63\xd3\x83\xc2\xa2\xb3\xa3\x93\xc3\x73\xe3\x53\xe0"
                   72350:             "\x23\x24\xe0\x46\xe0\x82" }  },
                   72351:       /* --- pixel bitmap for stmary180 char#108 (noname) --- */
                   72352:       { 108,83100,                      /* character number, location */
                   72353:           0, 1,  -35, 1,      /* topleft row,col, and botleft row,col */
                   72354:           { 26,   35, 2,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72355:             "\xff\x01\x00\x1a\x00\xff\x20\x02\x16\x02" }  },
                   72356:       /* --- pixel bitmap for stmary180 char#109 (noname) --- */
                   72357:       { 109,84080,                      /* character number, location */
                   72358:           0, 1,  -35, 1,      /* topleft row,col, and botleft row,col */
                   72359:           { 26,   35, 2,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72360:             "\xff\x01\x00\x1a\x00\xff\x1e\x02\x16\x02\x00\xff\x01"
                   72361:             "\x1a" }  },
                   72362:       /* --- pixel bitmap for stmary180 char#110 (noname) --- */
                   72363:       { 110,84808,                      /* character number, location */
                   72364:           0, 1,  -35, 1,      /* topleft row,col, and botleft row,col */
                   72365:           { 12,   35, 2, 6, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72366:             "\xff\x22\x00\x02\x08\x02" }  },
                   72367:       /* --- pixel bitmap for stmary180 char#111 (noname) --- */
                   72368:       { 111,85719,                      /* character number, location */
                   72369:           0, 1,  -35, 1,      /* topleft row,col, and botleft row,col */
                   72370:           { 22,   35, 2, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72371:             "\xff\x22\x00\x02\x08\x02\x08\x02" }  },
                   72372:       /* --- pixel bitmap for stmary180 char#112 \bignplus --- */
                   72373:       { 112,86733,                      /* character number, location */
                   72374:           0, 1,  -25, 1,      /* topleft row,col, and botleft row,col */
                   72375:           { 19,   25, 3,66, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72376:             "\x67\xab\x73\x73\x53\x93\x33\xb3\x22\xd2\x13\xd5\xe0"
                   72377:             "\x12\x0f\x32\x72\x62\x0f\x12\x2b\x22\x0f\x32\x72\x62"
                   72378:             "\x02\x71\x72\x0f\x52\xe0\x12" }  },
                   72379:       /* --- pixel bitmap for stmary180 char#113 (noname) --- */
                   72380:       { 113,87769,                      /* character number, location */
                   72381:           1, 5,  -28, 5,      /* topleft row,col, and botleft row,col */
                   72382:           {  7,   29, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72383:             "\x07\x0f\xe1\x21\x3f\xb1\x21\x37" }  },
                   72384:       /* --- pixel bitmap for stmary180 char#114 (noname) --- */
                   72385:       { 114,88806,                      /* character number, location */
                   72386:           1, 6,  -43, 6,      /* topleft row,col, and botleft row,col */
                   72387:           {  8,   44, 2,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72388:             "\x00\x08\x00\xff\x29\x01\x03\x01\x03\x08" }  },
                   72389:       /* --- pixel bitmap for stmary180 char#115 (noname) --- */
                   72390:       { 115,89930,                      /* character number, location */
                   72391:           1, 6,  -58, 6,      /* topleft row,col, and botleft row,col */
                   72392:           { 10,   59, 2,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72393:             "\xff\x01\x00\x0a\x00\xff\x36\x02\x02\x02\x04\xff\x01"
                   72394:             "\x0a" }  },
                   72395:       /* --- pixel bitmap for stmary180 char#116 (noname) --- */
                   72396:       { 116,91110,                      /* character number, location */
                   72397:           1, 6,  -73, 6,      /* topleft row,col, and botleft row,col */
                   72398:           { 11,   74, 2,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72399:             "\xff\x01\x00\x0b\x00\xff\x45\x02\x02\x02\x05\xff\x01"
                   72400:             "\x0b" }  },
                   72401:       /* --- pixel bitmap for stmary180 char#117 (noname) --- */
                   72402:       { 117,92345,                      /* character number, location */
                   72403:           0, 8,  -45, 8,      /* topleft row,col, and botleft row,col */
                   72404:           { 11,   45, 3,27, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72405:             "\xf1\x0b\x0f\xe2\x32\x4f\xe2\x32\x4f\xb2\x32\x42\x31"
                   72406:             "\x52" }  },
                   72407:       /* --- pixel bitmap for stmary180 char#118 (noname) --- */
                   72408:       { 118,93396,                      /* character number, location */
                   72409:           2, 8,  -43, 8,      /* topleft row,col, and botleft row,col */
                   72410:           { 11,   45, 3,26, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72411:             "\x02\x31\x5f\xe2\x32\x4f\xe2\x32\x4f\xb2\x32\x4f\x1b" }  },
                   72412:       /* --- pixel bitmap for stmary180 char#119 (noname) --- */
                   72413:       { 119,94438,                      /* character number, location */
                   72414:           2, 8,  -16, 8,      /* topleft row,col, and botleft row,col */
                   72415:           {  7,   18, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72416:             "\x02\x31\x1f\xe2\x32\x0f\x12\x32" }  },
                   72417:       /* --- pixel bitmap for stmary180 char#120 (noname) --- */
                   72418:       { 120,95428,                      /* character number, location */
                   72419:           0, 1,  -35, 1,      /* topleft row,col, and botleft row,col */
                   72420:           { 26,   35, 3,84, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72421:             "\x98\xe0\x2c\xc4\x84\x93\xc3\x73\xe3\x53\xe0\x23\x33"
                   72422:             "\xe0\x43\x22\xe0\x62\x13\xe0\x65\xe0\x82\x0f\x62\xa2"
                   72423:             "\xa2\x02\x3e\x02\x34\x2e\x04\x22\x0f\x72\xa2\xa2\x0f"
                   72424:             "\x72\xe0\x82" }  },
                   72425:       /* --- pixel bitmap for stmary180 char#121 (noname) --- */
                   72426:       { 121,96477,                      /* character number, location */
                   72427:           1, 1,  -28, 1,      /* topleft row,col, and botleft row,col */
                   72428:           {  7,   29, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72429:             "\x07\xfe\x31\x21\xfb\x31\x21\x07" }  },
                   72430:       /* --- pixel bitmap for stmary180 char#122 (noname) --- */
                   72431:       { 122,97475,                      /* character number, location */
                   72432:           1, 1,  -43, 1,      /* topleft row,col, and botleft row,col */
                   72433:           {  8,   44, 2,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72434:             "\x00\x08\xff\x29\x03\x01\x03\x01\x00\x08" }  },
                   72435:       /* --- pixel bitmap for stmary180 char#123 (noname) --- */
                   72436:       { 123,98560,                      /* character number, location */
                   72437:           1, 0,  -58, 0,      /* topleft row,col, and botleft row,col */
                   72438:           { 10,   59, 2,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72439:             "\xff\x01\x00\x0a\xff\x36\x04\x02\x02\x02\x00\xff\x01"
                   72440:             "\x0a" }  },
                   72441:       /* --- pixel bitmap for stmary180 char#124 (noname) --- */
                   72442:       { 124,99727,                      /* character number, location */
                   72443:           1, 0,  -73, 0,      /* topleft row,col, and botleft row,col */
                   72444:           { 11,   74, 2,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72445:             "\xff\x01\x00\x0b\xff\x45\x05\x02\x02\x02\x00\xff\x01"
                   72446:             "\x0b" }  },
                   72447:       /* --- pixel bitmap for stmary180 char#125 (noname) --- */
                   72448:       { 125,100923,                     /* character number, location */
                   72449:           0, 0,  -45, 0,      /* topleft row,col, and botleft row,col */
                   72450:           { 11,   45, 3,26, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72451:             "\xf1\x0b\xfe\x42\x32\xfe\x42\x32\xfb\x42\x32\x51\x32" }  },
                   72452:       /* --- pixel bitmap for stmary180 char#126 (noname) --- */
                   72453:       { 126,102029,                     /* character number, location */
                   72454:           2, 0,  -43, 0,      /* topleft row,col, and botleft row,col */
                   72455:           { 11,   45, 3,26, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72456:             "\x51\x32\xfe\x42\x32\xfe\x42\x32\xfb\x42\x32\x0f\x1b" }  },
                   72457:       /* --- pixel bitmap for stmary180 char#127 (noname) --- */
                   72458:       { 127,103032,                     /* character number, location */
                   72459:           2, 4,  -16, 4,      /* topleft row,col, and botleft row,col */
                   72460:           {  7,   18, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72461:             "\x11\x32\x0f\xe2\x32\x0f\x12\x32" }  },
                   72462:       /* --- trailer  --- */
                   72463:       { -99, -999,  0,0,0,0, { 0,0,0,0, (pixbyte *)"\0" }  }
                   72464:    } ;
                   72465: 
                   72466: 
                   72467: /* --- size=6 for .210gf ---
                   72468:  * mf '\mode=preview; mag=magstep(-13.80488502080647873125); input stmary10'
                   72469:  * --------------------------------------------------------------------- */
                   72470: /* --- fontdef for stmary210 --- */
                   72471: static	chardef  stmary210[] =
                   72472:    {
                   72473:       /* --- pixel bitmap for stmary210 char#0 \shortleftarrow --- */
                   72474:       {   0,  948,                      /* character number, location */
                   72475:          12, 2,    2, 2,      /* topleft row,col, and botleft row,col */
                   72476:           { 19,   10, 3,37, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72477:             "\x51\xd0\xf1\x41\xe0\x22\xe0\x10\xf1\x1e\x04\x22\xe0"
                   72478:             "\x10\xf1\x41\xe0\x51\xd0" }  },
                   72479:       /* --- pixel bitmap for stmary210 char#1 \shortrightarrow --- */
                   72480:       {   1, 1889,                      /* character number, location */
                   72481:          12, 2,    2, 2,      /* topleft row,col, and botleft row,col */
                   72482:           { 19,   10, 3,35, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72483:             "\xd1\x50\xf1\xe1\x40\xe0\x12\x2f\x1e\x05\xe0\x12\x20"
                   72484:             "\xf1\xe1\x40\xd1\x51" }  },
                   72485:       /* --- pixel bitmap for stmary210 char#2 \shortuparrow --- */
                   72486:       {   2, 2690,                      /* character number, location */
                   72487:          17, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
                   72488:           { 11,   19, 3,29, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72489:             "\x61\x92\x84\x61\x12\x11\x41\x22\x21\x21\x32\x31\xfc"
                   72490:             "\x52\x41" }  },
                   72491:       /* --- pixel bitmap for stmary210 char#3 \shortdownarrow --- */
                   72492:       {   3, 3523,                      /* character number, location */
                   72493:          17, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
                   72494:           { 11,   19, 3,31, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72495:             "\xfc\x52\x40\x11\x32\x31\x21\x22\x21\x41\x12\x11\x64"
                   72496:             "\x82\xa1\x40" }  },
                   72497:       /* --- pixel bitmap for stmary210 char#4 \Yup --- */
                   72498:       {   4, 4136,                      /* character number, location */
                   72499:          15, 2,    1, 2,      /* topleft row,col, and botleft row,col */
                   72500:           { 12,   14, 3,24, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72501:             "\xf7\x52\x50\x44\x76\x53\x23\x33\x43\x13\x65\x82" }  },
                   72502:       /* --- pixel bitmap for stmary210 char#5 \Ydown --- */
                   72503:       {   5, 4723,                      /* character number, location */
                   72504:          13, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   72505:           { 12,   13, 3,25, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72506:             "\x02\x85\x63\x13\x43\x33\x23\x56\x74\x40\xf6\x52\x54" }  },
                   72507:       /* --- pixel bitmap for stmary210 char#6 \Yleft --- */
                   72508:       {   6, 5349,                      /* character number, location */
                   72509:          13, 2,    1, 2,      /* topleft row,col, and botleft row,col */
                   72510:           { 14,   12, 3,26, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72511:             "\xc2\xb3\xa3\xa3\xa3\x3f\x1a\x40\x83\xc3\xc3\xc3\xc2" }  },
                   72512:       /* --- pixel bitmap for stmary210 char#7 \Yright --- */
                   72513:       {   7, 5966,                      /* character number, location */
                   72514:          13, 2,    1, 2,      /* topleft row,col, and botleft row,col */
                   72515:           { 14,   12, 3,27, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72516:             "\x02\xc3\xc3\xc3\xc3\x80\xf1\x4a\x33\xa3\xa3\xa3\xb2"
                   72517:             "\xc2" }  },
                   72518:       /* --- pixel bitmap for stmary210 char#8 \varcurlyvee --- */
                   72519:       {   8, 6599,                      /* character number, location */
                   72520:          20, 0,   -7, 0,      /* topleft row,col, and botleft row,col */
                   72521:           { 20,   27, 3,65, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72522:             "\x02\xe0\x25\xe3\x13\xc3\x33\xa3\x53\x83\x73\x63\x92"
                   72523:             "\x62\xa3\x43\xb2\x42\xc3\x23\x60\xf1\x72\x22\x70\x76"
                   72524:             "\x70\xf4\x84\x80\xf8\x92\x90" }  },
                   72525:       /* --- pixel bitmap for stmary210 char#9 \varcurlywedge --- */
                   72526:       {   9, 7298,                      /* character number, location */
                   72527:          20, 0,   -7, 0,      /* topleft row,col, and botleft row,col */
                   72528:           { 20,   27, 3,64, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72529:             "\xf8\x92\x90\xf4\x84\x80\x76\x70\xf1\x72\x22\x70\x63"
                   72530:             "\x23\xc2\x42\xb3\x43\xa2\x62\x93\x63\x73\x83\x53\xa3"
                   72531:             "\x33\xc3\x13\xe5\xe0\x22" }  },
                   72532:       /* --- pixel bitmap for stmary210 char#10 \minuso --- */
                   72533:       {  10, 8125,                      /* character number, location */
                   72534:          13, 2,    1, 2,      /* topleft row,col, and botleft row,col */
                   72535:           { 19,   12, 3,39, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72536:             "\x75\xc9\x93\x53\x82\x72\x73\x73\x3f\x1e\x05\x33\x73"
                   72537:             "\x72\x72\x83\x53\x99\xc5\x72" }  },
                   72538:       /* --- pixel bitmap for stmary210 char#11 \baro --- */
                   72539:       {  11, 8807,                      /* character number, location */
                   72540:          17, 2,   -3, 2,      /* topleft row,col, and botleft row,col */
                   72541:           { 12,   20, 3,53, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72542:             "\xf3\x52\x50\x44\x68\x33\x12\x13\x13\x22\x23\x0f\x32"
                   72543:             "\x32\x32\x03\x22\x23\x13\x12\x13\x38\x64\x40\xf3\x52"
                   72544:             "\x53" }  },
                   72545:       /* --- pixel bitmap for stmary210 char#12 \sslash --- */
                   72546:       {  12, 9495,                      /* character number, location */
                   72547:          22, 2,   -7, 2,      /* topleft row,col, and botleft row,col */
                   72548:           { 15,   29, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72549:             "\x00\x63\x80\x31\xe0\x1c\x30\x06\x18\x03\x8c\x01\xe7"
                   72550:             "\x80\x31\xc0\x18\x70\x0e\x18\x03\x8c\x01\xe7\x80\x31"
                   72551:             "\xc0\x18\x60\x0c\x38\x07\x8c\x01\xc6\x80\x73\xc0\x18"
                   72552:             "\x60\x0c\x38\x07\x8c\x01\xc6\x00\x63\xc0\x39\x60\x0c"
                   72553:             "\x30\x06\x00" }  },
                   72554:       /* --- pixel bitmap for stmary210 char#13 \bblash --- */
                   72555:       {  13,10228,                      /* character number, location */
                   72556:          22, 2,   -7, 2,      /* topleft row,col, and botleft row,col */
                   72557:           { 15,   29, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72558:             "\x63\x80\x31\xc0\x39\xc0\x18\x60\x0c\x30\x06\x38\x07"
                   72559:             "\x18\x03\x8c\x01\xce\x01\xc6\x00\x63\x80\x73\x80\x31"
                   72560:             "\xc0\x18\x60\x0c\x70\x0e\x30\x06\x18\x03\x9c\x03\x8c"
                   72561:             "\x01\xc6\x00\xe7\x00\x63\x80\x31\xc0\x18\xe0\x1c\x60"
                   72562:             "\x0c\x30\x06" }  },
                   72563:       /* --- pixel bitmap for stmary210 char#14 \moo --- */
                   72564:       {  14,11049,                      /* character number, location */
                   72565:          15, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
                   72566:           { 16,   16, 3,37, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72567:             "\xf6\x72\x7f\x1e\x02\xf1\x72\x70\x64\x62\x44\x45\x26"
                   72568:             "\x23\x16\x26\x34\x44\x23" }  },
                   72569:       /* --- pixel bitmap for stmary210 char#15 \varotimes --- */
                   72570:       {  15,11804,                      /* character number, location */
                   72571:          16, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
                   72572:           { 18,   18, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72573:             "\xc0\x0f\xc0\xff\x80\x03\x07\x07\x38\x3e\xf0\xd9\xe1"
                   72574:             "\x76\xce\xf9\xf0\xc3\x83\x07\x0f\x1e\x3c\xfc\xf0\x39"
                   72575:             "\xe7\x76\xb8\xf9\xc0\xc7\x01\x0e\x0e\x1c\xf0\x3f\x00"
                   72576:             "\x3f\x00" }  },
                   72577:       /* --- pixel bitmap for stmary210 char#16 \varoast --- */
                   72578:       {  16,12728,                      /* character number, location */
                   72579:          16, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
                   72580:           { 18,   18, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72581:             "\xc0\x0f\xc0\xff\x80\x03\x07\x07\x38\x0e\xc3\x19\x0c"
                   72582:             "\x76\x33\xfb\xfc\xcf\x83\x07\x0f\x1e\x3c\xff\xf3\xcd"
                   72583:             "\xec\x06\x83\x39\x0c\xc7\x01\x0e\x0e\x1c\xf0\x3f\x00"
                   72584:             "\x3f\x00" }  },
                   72585:       /* --- pixel bitmap for stmary210 char#17 \varobar --- */
                   72586:       {  17,13529,                      /* character number, location */
                   72587:          16, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
                   72588:           { 18,   18, 3,77, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72589:             "\x66\xaa\x73\x22\x23\x53\x32\x33\x33\x42\x43\x22\x52"
                   72590:             "\x52\x13\x52\x53\x0f\x32\x62\x62\x03\x52\x53\x12\x52"
                   72591:             "\x52\x23\x42\x43\x33\x32\x33\x53\x22\x23\x7a\xa6\x63" }  },
                   72592:       /* --- pixel bitmap for stmary210 char#18 \varodot --- */
                   72593:       {  18,14321,                      /* character number, location */
                   72594:          16, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
                   72595:           { 18,   18, 3,65, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72596:             "\x66\xaa\x73\x63\x53\x83\x33\xa3\x22\xc2\x13\xc5\x62"
                   72597:             "\x62\x0f\x12\x54\x52\x02\x62\x65\xc3\x12\xc2\x23\xa3"
                   72598:             "\x33\x83\x53\x63\x7a\xa6\x63" }  },
                   72599:       /* --- pixel bitmap for stmary210 char#19 \varoslash --- */
                   72600:       {  19,15104,                      /* character number, location */
                   72601:          16, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
                   72602:           { 18,   18, 3,71, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72603:             "\x66\xaa\x73\x63\x53\x83\x33\x85\x22\x83\x12\x13\x73"
                   72604:             "\x25\x73\x44\x63\x54\x53\x64\x43\x75\x23\x73\x12\x13"
                   72605:             "\x82\x25\x83\x33\x83\x53\x63\x7a\xa6\x63" }  },
                   72606:       /* --- pixel bitmap for stmary210 char#20 \varobslash --- */
                   72607:       {  20,15899,                      /* character number, location */
                   72608:          16, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
                   72609:           { 18,   18, 3,71, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72610:             "\x66\xaa\x73\x63\x53\x83\x35\x83\x22\x13\x82\x13\x23"
                   72611:             "\x75\x43\x74\x53\x64\x63\x54\x73\x45\x73\x23\x12\x83"
                   72612:             "\x12\x23\x85\x33\x83\x53\x63\x7a\xa6\x63" }  },
                   72613:       /* --- pixel bitmap for stmary210 char#21 \varocircle --- */
                   72614:       {  21,16833,                      /* character number, location */
                   72615:          16, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
                   72616:           { 18,   18, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72617:             "\xc0\x0f\xc0\xff\x80\x03\x07\x07\x38\x8e\xc7\x99\x7f"
                   72618:             "\x76\x86\xf9\x1c\xce\x33\x30\xcf\xc0\x3c\x87\xf3\x19"
                   72619:             "\xe6\xe6\x9f\x39\x1e\xc7\x01\x0e\x0e\x1c\xf0\x3f\x00"
                   72620:             "\x3f\x00" }  },
                   72621:       /* --- pixel bitmap for stmary210 char#22 \varoplus --- */
                   72622:       {  22,17639,                      /* character number, location */
                   72623:          16, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
                   72624:           { 18,   18, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72625:             "\xc0\x0f\xc0\xff\x80\x33\x07\xc7\x38\x0e\xc3\x19\x0c"
                   72626:             "\x76\x30\xf8\xc0\xc0\xff\xff\xff\xff\x3f\x30\xf0\xc1"
                   72627:             "\xe0\x06\x83\x39\x0c\xc7\x31\x0e\xce\x1c\xf0\x3f\x00"
                   72628:             "\x3f\x00" }  },
                   72629:       /* --- pixel bitmap for stmary210 char#23 \varominus --- */
                   72630:       {  23,18434,                      /* character number, location */
                   72631:          16, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
                   72632:           { 18,   18, 3,59, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72633:             "\x66\xaa\x73\x63\x53\x83\x33\xa3\x22\xc2\x13\xc5\xe2"
                   72634:             "\x0f\x1e\x04\x02\xe5\xc3\x12\xc2\x23\xa3\x33\x83\x53"
                   72635:             "\x63\x7a\xa6\x62" }  },
                   72636:       /* --- pixel bitmap for stmary210 char#24 \boxast --- */
                   72637:       {  24,19253,                      /* character number, location */
                   72638:          16, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
                   72639:           { 18,   18, 3,76, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72640:             "\xf1\x0e\x04\x0f\x12\xe2\x0f\x12\x62\x62\x02\x22\x22"
                   72641:             "\x22\x24\x2a\x22\x0f\x12\x54\x52\x02\x2a\x24\x22\x22"
                   72642:             "\x22\x22\x0f\x12\x62\x62\x0f\x12\xe2\x0f\x1e\x04" }  },
                   72643:       /* --- pixel bitmap for stmary210 char#25 \boxbar --- */
                   72644:       {  25,19982,                      /* character number, location */
                   72645:          16, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
                   72646:           { 18,   18, 3,20, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72647:             "\xf1\x0e\x04\x0f\xd2\x62\x62\x0f\x1e\x04" }  },
                   72648:       /* --- pixel bitmap for stmary210 char#26 \boxdot --- */
                   72649:       {  26,20711,                      /* character number, location */
                   72650:          16, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
                   72651:           { 18,   18, 3,44, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72652:             "\xf1\x0e\x04\x0f\x42\xe2\x02\x62\x62\x0f\x12\x54\x52"
                   72653:             "\x02\x62\x62\x0f\x42\xe2\x0f\x1e\x04" }  },
                   72654:       /* --- pixel bitmap for stmary210 char#27 \boxslash --- */
                   72655:       {  27,21422,                      /* character number, location */
                   72656:          16, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
                   72657:           { 18,   18, 3,62, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72658:             "\xf1\x0e\x04\x02\xc6\xb7\xa3\x14\x93\x24\x83\x34\x73"
                   72659:             "\x44\x63\x54\x53\x64\x43\x74\x33\x84\x23\x94\x13\xa7"
                   72660:             "\xb6\xc2\x0f\x1e\x04" }  },
                   72661:       /* --- pixel bitmap for stmary210 char#28 \boxbslash --- */
                   72662:       {  28,22146,                      /* character number, location */
                   72663:          16, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
                   72664:           { 18,   18, 3,62, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72665:             "\xf1\x0e\x04\x04\xc7\xb4\x13\xa4\x23\x94\x33\x84\x43"
                   72666:             "\x74\x53\x64\x63\x54\x73\x44\x83\x34\x93\x24\xa3\x14"
                   72667:             "\xb7\xc4\x0f\x1e\x04" }  },
                   72668:       /* --- pixel bitmap for stmary210 char#29 \boxcircle --- */
                   72669:       {  29,22874,                      /* character number, location */
                   72670:          16, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
                   72671:           { 18,   18, 3,66, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72672:             "\xf1\x0e\x04\x0f\x22\xe2\x02\x62\x64\x46\x44\x33\x23"
                   72673:             "\x32\x0f\x12\x32\x42\x32\x02\x33\x23\x34\x46\x44\x62"
                   72674:             "\x62\x0f\x22\xe2\x0f\x1e\x04" }  },
                   72675:       /* --- pixel bitmap for stmary210 char#30 \boxbox --- */
                   72676:       {  30,23599,                      /* character number, location */
                   72677:          16, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
                   72678:           { 18,   18, 3,50, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72679:             "\xf1\x0e\x04\x0f\x22\xe2\x0f\x12\x38\x32\x0f\x32\x32"
                   72680:             "\x42\x32\x0f\x12\x38\x32\x0f\x22\xe2\x0f\x1e\x04" }  },
                   72681:       /* --- pixel bitmap for stmary210 char#31 \boxempty --- */
                   72682:       {  31,24320,                      /* character number, location */
                   72683:          16, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
                   72684:           { 18,   18, 3,18, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72685:             "\xf1\x0e\x04\x0f\xd2\xe2\x0f\x1e\x04" }  },
                   72686:       /* --- pixel bitmap for stmary210 char#32 \lightning --- */
                   72687:       {  32,25221,                      /* character number, location */
                   72688:          20, 2,   -6, 2,      /* topleft row,col, and botleft row,col */
                   72689:           { 10,   26, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72690:             "\x80\x01\x06\x1c\x30\xc0\x80\x03\x06\x1c\x30\xc0\x80"
                   72691:             "\x03\xe6\xfc\xf3\xc7\x18\x70\xc0\x80\x03\x86\x18\x72"
                   72692:             "\xd0\xc0\x33\x3e\x18\x20\x00" }  },
                   72693:       /* --- pixel bitmap for stmary210 char#33 \merge --- */
                   72694:       {  33,26026,                      /* character number, location */
                   72695:          22, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   72696:           { 22,   22, 3,116, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   72697:             "\xf3\x63\x43\x60\x55\x25\x50\xf1\x52\x12\x22\x12\x50"
                   72698:             "\x43\x16\x13\x40\xf1\x42\x34\x32\x40\x33\x34\x33\x30"
                   72699:             "\xf1\x32\x52\x52\x30\x23\x44\x43\x20\xf1\x22\x54\x52"
                   72700:             "\x20\x13\x46\x43\x10\xf1\x12\x52\x22\x52\x13\x43\x23"
                   72701:             "\x43\x0f\x12\x52\x42\x52" }  },
                   72702:       /* --- pixel bitmap for stmary210 char#34 \vartimes --- */
                   72703:       {  34,26731,                      /* character number, location */
                   72704:          20, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   72705:           { 12,   20, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72706:             "\x03\x7c\xe0\x06\xe6\x70\x0c\xc3\x39\x98\x81\x1f\xf0"
                   72707:             "\x00\x0f\xf0\x00\x0f\xf8\x81\x19\x9c\xc3\x30\x0e\x67"
                   72708:             "\x60\x07\x3e\xc0" }  },
                   72709:       /* --- pixel bitmap for stmary210 char#35 \fatsemi --- */
                   72710:       {  35,27326,                      /* character number, location */
                   72711:          16, 2,   -6, 2,      /* topleft row,col, and botleft row,col */
                   72712:           {  6,   22, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72713:             "\xde\x3f\xcf\xbf\x07\x00\x00\xe0\xfd\xf3\xfc\xfb\x38"
                   72714:             "\xc6\x31\x8e\x01" }  },
                   72715:       /* --- pixel bitmap for stmary210 char#36 \sswarrow --- */
                   72716:       {  36,28213,                      /* character number, location */
                   72717:          20, 2,   -6, 2,      /* topleft row,col, and botleft row,col */
                   72718:           { 14,   26, 3,71, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72719:             "\xf1\xc2\xf2\xb2\x10\xf1\xa2\x20\x93\x20\xf1\x92\x30"
                   72720:             "\xf2\x82\x40\xf1\x72\x50\xf2\x62\x60\x52\x81\x32\x81"
                   72721:             "\x22\xa1\x12\xa1\x12\x22\x75\x92\xc1\xa1" }  },
                   72722:       /* --- pixel bitmap for stmary210 char#37 \ssearrow --- */
                   72723:       {  37,29116,                      /* character number, location */
                   72724:          20, 2,   -6, 2,      /* topleft row,col, and botleft row,col */
                   72725:           { 13,   26, 3,73, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72726:             "\xf1\x02\xb0\xf2\x12\xa0\xf1\x22\x90\x23\x80\xf1\x32"
                   72727:             "\x80\xf2\x42\x70\xf1\x52\x60\xf2\x62\x50\x72\xb2\x31"
                   72728:             "\x82\x21\x82\x11\x52\x22\x11\x75\xb2\xc1\x22" }  },
                   72729:       /* --- pixel bitmap for stmary210 char#38 \curlywedgeuparrow --- */
                   72730:       {  38,30130,                      /* character number, location */
                   72731:          20, 0,   -6, 0,      /* topleft row,col, and botleft row,col */
                   72732:           { 20,   26, 3,88, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72733:             "\xf1\x92\x90\x84\xe0\x11\x12\x11\xc2\x22\x22\x50\xf2"
                   72734:             "\x92\x90\xf4\x84\x80\x76\x70\xf1\x72\x22\x70\x63\x23"
                   72735:             "\xc2\x42\xb3\x43\xa2\x62\x93\x63\x73\x83\x53\xa3\x33"
                   72736:             "\xc3\x13\xe5\xe0\x22" }  },
                   72737:       /* --- pixel bitmap for stmary210 char#39 \curlywedgedownarrow --- */
                   72738:       {  39,31168,                      /* character number, location */
                   72739:          21, 0,   -7, 0,      /* topleft row,col, and botleft row,col */
                   72740:           { 20,   28, 3,79, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72741:             "\xf8\x92\x90\xf4\x84\x80\x76\x70\xf1\x72\x22\x70\x63"
                   72742:             "\x23\xc2\x42\xb3\x43\x61\x32\x62\x31\x31\x13\x63\x11"
                   72743:             "\x31\x13\x83\x11\x24\xa4\x23\xc3\x13\xe9\x86\x61\x61"
                   72744:             "\x63" }  },
                   72745:       /* --- pixel bitmap for stmary210 char#40 \fatslash --- */
                   72746:       {  40,31862,                      /* character number, location */
                   72747:          22, 8,   -7, 8,      /* topleft row,col, and botleft row,col */
                   72748:           { 18,   29, 3,109, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   72749:             "\xf1\x99\x83\x42\x92\x52\x92\x43\x83\x42\x92\x52\x92"
                   72750:             "\x43\x83\x42\x92\x52\x92\x43\x83\x42\x92\x52\x92\x43"
                   72751:             "\x83\x42\x92\x52\x92\x43\x83\x42\x92\x52\x92\x43\x83"
                   72752:             "\x42\x92\x52\x92\x43\x83\x42\x92\x52\x92\x43\x83\x42"
                   72753:             "\x9f\x19\x92" }  },
                   72754:       /* --- pixel bitmap for stmary210 char#41 \fatbslash --- */
                   72755:       {  41,32578,                      /* character number, location */
                   72756:          22, 2,   -7, 2,      /* topleft row,col, and botleft row,col */
                   72757:           { 17,   29, 3,108, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   72758:             "\x08\x99\x83\x42\x92\x42\x92\x43\x83\x42\x92\x42\x92"
                   72759:             "\x43\x83\x42\x92\x42\x92\x43\x83\x42\x92\x42\x92\x43"
                   72760:             "\x83\x42\x92\x42\x92\x43\x83\x42\x92\x42\x92\x43\x83"
                   72761:             "\x42\x92\x42\x92\x43\x83\x42\x92\x42\x92\x43\x83\x42"
                   72762:             "\xf1\x98" }  },
                   72763:       /* --- pixel bitmap for stmary210 char#42 \lbag --- */
                   72764:       {  42,33193,                      /* character number, location */
                   72765:          22, 2,   -7, 2,      /* topleft row,col, and botleft row,col */
                   72766:           {  9,   29, 3,56, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72767:             "\x23\x46\x32\x23\x22\x32\x20\xf1\x52\x20\x43\x20\xf3"
                   72768:             "\x42\x30\x33\x30\xf3\x32\x40\x23\x40\xf8\x22\x50\x23"
                   72769:             "\x76\x54" }  },
                   72770:       /* --- pixel bitmap for stmary210 char#43 \rbag --- */
                   72771:       {  43,33763,                      /* character number, location */
                   72772:          22, 2,   -7, 2,      /* topleft row,col, and botleft row,col */
                   72773:           {  9,   29, 3,55, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72774:             "\x43\x56\x23\x22\x22\x32\xf1\x22\x50\x23\x40\xf3\x32"
                   72775:             "\x40\x33\x30\xf3\x42\x30\x43\x20\xf8\x52\x20\x43\x26"
                   72776:             "\x34\x54" }  },
                   72777:       /* --- pixel bitmap for stmary210 char#44 \varbigcirc --- */
                   72778:       {  44,34671,                      /* character number, location */
                   72779:          20, 2,   -5, 2,      /* topleft row,col, and botleft row,col */
                   72780:           { 25,   25, 3,105, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   72781:             "\x97\xe0\x2b\xc4\x74\x93\xb3\x73\xd3\x53\xe0\x13\x42"
                   72782:             "\xe0\x32\x33\xe0\x33\x22\xe0\x52\x13\xe0\x53\x0f\x42"
                   72783:             "\xe0\x72\x03\xe0\x53\x12\xe0\x52\x23\xe0\x33\x32\xe0"
                   72784:             "\x32\x43\xe0\x13\x53\xd3\x73\xb3\x94\x74\xcb\xe0\x27"
                   72785:             "\x91" }  },
                   72786:       /* --- pixel bitmap for stmary210 char#45 \leftrightarroweq --- */
                   72787:       {  45,35723,                      /* character number, location */
                   72788:          15, 1,    3, 1,      /* topleft row,col, and botleft row,col */
                   72789:           { 21,   12, 3,53, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72790:             "\x51\x91\x50\xf1\x41\xb1\x40\x22\xd2\x2e\x07\x1e\x05"
                   72791:             "\x32\xd2\x20\xf1\x41\xb1\x40\x51\x91\x50\xf1\x1e\x05"
                   72792:             "\x10" }  },
                   72793:       /* --- pixel bitmap for stmary210 char#46 \curlyveedownarrow --- */
                   72794:       {  46,36335,                      /* character number, location */
                   72795:          20, 0,   -6, 0,      /* topleft row,col, and botleft row,col */
                   72796:           { 20,   26, 3,89, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72797:             "\x02\xe0\x25\xe3\x13\xc3\x33\xa3\x53\x83\x73\x63\x92"
                   72798:             "\x62\xa3\x43\xb2\x42\xc3\x23\x60\xf1\x72\x22\x70\x76"
                   72799:             "\x70\xf4\x84\x80\xf2\x92\x90\x52\x22\x22\xc1\x12\x11"
                   72800:             "\xe0\x14\x80\xf1\x92\x93" }  },
                   72801:       /* --- pixel bitmap for stmary210 char#47 \curlyveeuparrow --- */
                   72802:       {  47,36993,                      /* character number, location */
                   72803:          21, 0,   -7, 0,      /* topleft row,col, and botleft row,col */
                   72804:           { 20,   28, 3,79, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72805:             "\x61\x61\x66\x89\xe3\x13\xc3\x24\xa4\x21\x13\x83\x11"
                   72806:             "\x31\x13\x63\x11\x31\x32\x62\x31\x63\x43\xb2\x42\xc3"
                   72807:             "\x23\x60\xf1\x72\x22\x70\x76\x70\xf4\x84\x80\xf8\x92"
                   72808:             "\x90" }  },
                   72809:       /* --- pixel bitmap for stmary210 char#48 \nnwarrow --- */
                   72810:       {  48,37616,                      /* character number, location */
                   72811:          20, 2,   -6, 2,      /* topleft row,col, and botleft row,col */
                   72812:           { 14,   26, 3,72, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72813:             "\x31\xd2\xc5\x81\x12\x22\x61\x12\x91\x22\x91\x32\xc2"
                   72814:             "\x70\xf2\x62\x60\xf1\x72\x50\xf2\x82\x40\xf1\x92\x30"
                   72815:             "\x93\x20\xf1\xa2\x20\xf2\xb2\x10\xf1\xc2" }  },
                   72816:       /* --- pixel bitmap for stmary210 char#49 \nnearrow --- */
                   72817:       {  49,38207,                      /* character number, location */
                   72818:          20, 2,   -6, 2,      /* topleft row,col, and botleft row,col */
                   72819:           { 13,   26, 3,71, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72820:             "\xa1\xb2\x85\x62\x22\x11\x92\x11\x92\x21\x72\x31\x72"
                   72821:             "\x40\xf2\x62\x50\xf1\x52\x60\xf2\x42\x70\xf1\x32\x80"
                   72822:             "\x23\x80\xf1\x22\x90\xf2\x12\xaf\x12\xb2" }  },
                   72823:       /* --- pixel bitmap for stmary210 char#50 \leftslice --- */
                   72824:       {  50,38986,                      /* character number, location */
                   72825:          14, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   72826:           { 19,   14, 3,49, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72827:             "\xe3\xe5\xb5\x13\x85\x42\x64\x73\x25\xa2\x0f\x15\xc2"
                   72828:             "\x25\xa2\x54\x73\x75\x42\xa5\x13\xd5\xe0\x23\x22" }  },
                   72829:       /* --- pixel bitmap for stmary210 char#51 \rightslice --- */
                   72830:       {  51,39752,                      /* character number, location */
                   72831:          14, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   72832:           { 19,   14, 3,49, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72833:             "\x23\xe0\x25\xd3\x15\xa2\x45\x73\x74\x52\xa5\x2f\x12"
                   72834:             "\xc5\x02\xa5\x23\x74\x62\x45\x83\x15\xb5\xe3\xe2" }  },
                   72835:       /* --- pixel bitmap for stmary210 char#52 \varolessthan --- */
                   72836:       {  52,40514,                      /* character number, location */
                   72837:          16, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
                   72838:           { 18,   18, 3,67, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72839:             "\x66\xaa\x73\x63\x53\x74\x33\x58\x22\x45\x32\x13\x24"
                   72840:             "\x6a\x92\x0f\x15\xb2\x07\x95\x24\x63\x12\x45\x32\x23"
                   72841:             "\x58\x33\x74\x53\x63\x7a\xa6\x6f" }  },
                   72842:       /* --- pixel bitmap for stmary210 char#53 \varogreaterthan --- */
                   72843:       {  53,41303,                      /* character number, location */
                   72844:          16, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
                   72845:           { 18,   18, 3,67, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72846:             "\x66\xaa\x73\x63\x54\x73\x38\x53\x22\x35\x42\x13\x64"
                   72847:             "\x25\x97\x0f\x12\xb5\x02\x9a\x64\x23\x12\x35\x42\x28"
                   72848:             "\x53\x34\x73\x53\x63\x7a\xa6\x6f" }  },
                   72849:       /* --- pixel bitmap for stmary210 char#54 \varovee --- */
                   72850:       {  54,42084,                      /* character number, location */
                   72851:          16, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
                   72852:           { 18,   18, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72853:             "\xc0\x0f\xc0\xff\x80\x03\x07\x07\x38\x1e\xe0\x79\x80"
                   72854:             "\xf7\x03\xff\x0c\xcc\x73\x38\x8f\x61\x3c\xce\xf1\x31"
                   72855:             "\xe3\xc6\x8c\x39\x3f\xc7\x79\x0e\xee\x1d\xf0\x3f\x00"
                   72856:             "\x3f\x00" }  },
                   72857:       /* --- pixel bitmap for stmary210 char#55 \varowedge --- */
                   72858:       {  55,42889,                      /* character number, location */
                   72859:          16, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
                   72860:           { 18,   18, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72861:             "\xc0\x0f\xc0\xff\x80\x7b\x07\xe7\x39\xce\xcf\x19\x33"
                   72862:             "\x76\xcc\xf8\x38\xc7\x63\x18\xcf\xe1\x3c\x03\xf3\x0f"
                   72863:             "\xfc\x1e\xe0\x79\x80\xc7\x01\x0e\x0e\x1c\xf0\x3f\x00"
                   72864:             "\x3f\x00" }  },
                   72865:       /* --- pixel bitmap for stmary210 char#56 \talloblong --- */
                   72866:       {  56,43536,                      /* character number, location */
                   72867:          22, 3,   -8, 3,      /* topleft row,col, and botleft row,col */
                   72868:           {  9,   30, 3,20, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72869:             "\xf1\x09\x0f\xe2\x52\x0f\xa2\x52\x0f\x19" }  },
                   72870:       /* --- pixel bitmap for stmary210 char#57 \interleave --- */
                   72871:       {  57,44308,                      /* character number, location */
                   72872:          22, 3,   -8, 3,      /* topleft row,col, and botleft row,col */
                   72873:           { 14,   30, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72874:             "\xfe\x02\x42\x42\x0f\xe2\x42\x42" }  },
                   72875:       /* --- pixel bitmap for stmary210 char#58 \obar --- */
                   72876:       {  58,45214,                      /* character number, location */
                   72877:          17, 2,   -3, 2,      /* topleft row,col, and botleft row,col */
                   72878:           { 19,   20, 3,69, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72879:             "\x67\xa2\x31\x32\x71\x51\x51\x51\x61\x61\x20\xf2\x11"
                   72880:             "\x71\x71\x1f\x51\x81\x81\xf2\x11\x71\x71\x10\x21\x61"
                   72881:             "\x61\x51\x51\x51\x72\x31\x32\xa7\x64" }  },
                   72882:       /* --- pixel bitmap for stmary210 char#59 \oslash --- */
                   72883:       {  59,46058,                      /* character number, location */
                   72884:          17, 2,   -3, 2,      /* topleft row,col, and botleft row,col */
                   72885:           { 19,   20, 3,93, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72886:             "\x67\xa2\x72\x71\xb1\x52\xc1\x31\x21\xc1\x21\x31\xb1"
                   72887:             "\x21\x41\xa1\x11\x61\xa2\x71\x91\x0f\x11\x81\x81\x01"
                   72888:             "\x91\x72\xa1\x61\x11\xa1\x41\x21\xb1\x31\x21\xc1\x21"
                   72889:             "\x31\xc2\x51\xb1\x72\x72\xa7\x63" }  },
                   72890:       /* --- pixel bitmap for stmary210 char#60 \olessthan --- */
                   72891:       {  60,46889,                      /* character number, location */
                   72892:          17, 2,   -3, 2,      /* topleft row,col, and botleft row,col */
                   72893:           { 19,   20, 3,93, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72894:             "\x67\xa2\x72\x71\xb1\x51\xb3\x31\xa2\x31\x21\x82\x51"
                   72895:             "\x21\x53\x71\x11\x42\xb2\x22\xd1\x0f\x13\xe0\x11\x01"
                   72896:             "\x22\xd2\x42\xb1\x11\x53\x71\x21\x82\x51\x21\xa2\x31"
                   72897:             "\x31\xb3\x51\xb1\x72\x72\xa7\x63" }  },
                   72898:       /* --- pixel bitmap for stmary210 char#61 \ogreaterthan --- */
                   72899:       {  61,47719,                      /* character number, location */
                   72900:          17, 2,   -3, 2,      /* topleft row,col, and botleft row,col */
                   72901:           { 19,   20, 3,93, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72902:             "\x67\xa2\x72\x71\xb1\x53\xb1\x31\x32\xa1\x21\x52\x81"
                   72903:             "\x21\x73\x51\x11\xb2\x42\xd2\x21\x0f\x11\xe0\x13\x01"
                   72904:             "\xd2\x22\xb2\x41\x11\x73\x51\x21\x52\x81\x21\x32\xa1"
                   72905:             "\x33\xb1\x51\xb1\x72\x72\xa7\x63" }  },
                   72906:       /* --- pixel bitmap for stmary210 char#62 \ovee --- */
                   72907:       {  62,48541,                      /* character number, location */
                   72908:          17, 2,   -3, 2,      /* topleft row,col, and botleft row,col */
                   72909:           { 19,   20, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72910:             "\xc0\x1f\x80\x01\x03\x02\x20\x18\x00\xa3\x00\x28\x09"
                   72911:             "\x20\x49\x00\x29\x02\x88\x21\x20\x0c\x01\x61\x08\x08"
                   72912:             "\x83\x20\x18\x04\x41\x41\x04\x09\x22\x48\x10\x41\x04"
                   72913:             "\x05\x41\x28\x04\x8c\x18\x80\x3f\x00" }  },
                   72914:       /* --- pixel bitmap for stmary210 char#63 \owedge --- */
                   72915:       {  63,49403,                      /* character number, location */
                   72916:          17, 2,   -3, 2,      /* topleft row,col, and botleft row,col */
                   72917:           { 19,   20, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72918:             "\xc0\x1f\x80\x11\x03\x42\x21\x08\x0a\x22\x88\x20\x41"
                   72919:             "\x04\x09\x22\x28\x08\x82\x41\x10\x0c\x01\x61\x08\x08"
                   72920:             "\x43\x40\x18\x01\x44\x09\x20\x49\x00\x49\x01\x50\x0c"
                   72921:             "\x80\x41\x00\x04\x0c\x18\x80\x3f\x00" }  },
                   72922:       /* --- pixel bitmap for stmary210 char#64 \oblong --- */
                   72923:       {  64,50153,                      /* character number, location */
                   72924:          18, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   72925:           { 15,   18, 3,18, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72926:             "\xf1\x0e\x01\x0f\xd2\xb2\x0f\x1e\x01" }  },
                   72927:       /* --- pixel bitmap for stmary210 char#65 \inplus --- */
                   72928:       {  65,50890,                      /* character number, location */
                   72929:          16, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
                   72930:           { 15,   18, 3,46, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72931:             "\x78\x4b\x34\xa3\xb3\xc2\xc3\x42\x62\x52\x6f\x1e\x01"
                   72932:             "\x02\x52\x63\x42\x72\xd3\xd3\xd4\xcb\x78" }  },
                   72933:       /* --- pixel bitmap for stmary210 char#66 \niplus --- */
                   72934:       {  66,51616,                      /* character number, location */
                   72935:          16, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
                   72936:           { 15,   18, 3,47, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72937:             "\x08\x7b\xc4\xd3\xd3\xd2\x72\x43\x62\x52\x0f\x1e\x01"
                   72938:             "\x62\x52\x62\x43\xc2\xc3\xb3\xa4\x3b\x48\x7f" }  },
                   72939:       /* --- pixel bitmap for stmary210 char#67 \nplus --- */
                   72940:       {  67,52346,                      /* character number, location */
                   72941:          18, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   72942:           { 15,   19, 3,52, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72943:             "\x55\x89\x53\x53\x33\x73\x13\x93\x0f\x12\xb2\x0f\x12"
                   72944:             "\x52\x42\x0f\x12\x27\x22\x0f\x12\x52\x42\x0f\x52\xb2" }  },
                   72945:       /* --- pixel bitmap for stmary210 char#68 \subsetplus --- */
                   72946:       {  68,53174,                      /* character number, location */
                   72947:          16, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
                   72948:           { 19,   18, 3,60, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72949:             "\x7c\x5e\x34\xe3\xe0\x13\xe0\x22\xe0\x23\x72\x72\x82"
                   72950:             "\x7f\x12\x66\x52\x82\x73\x72\x82\xe0\x33\xe0\x33\xe0"
                   72951:             "\x34\xe0\x3e\x7c" }  },
                   72952:       /* --- pixel bitmap for stmary210 char#69 \supsetplus --- */
                   72953:       {  69,53968,                      /* character number, location */
                   72954:          16, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
                   72955:           { 19,   18, 3,61, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72956:             "\x0c\x7e\xe0\x34\xe0\x33\xe0\x33\xe0\x32\x82\x73\x72"
                   72957:             "\x82\xf1\x56\x62\x72\x82\x72\x73\xe0\x22\xe0\x23\xe0"
                   72958:             "\x13\xe4\x3e\x5c\x71" }  },
                   72959:       /* --- pixel bitmap for stmary210 char#70 \subsetpluseq --- */
                   72960:       {  70,54780,                      /* character number, location */
                   72961:          18, 2,   -6, 2,      /* topleft row,col, and botleft row,col */
                   72962:           { 19,   24, 3,72, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72963:             "\x7c\x5e\x34\xe3\xe0\x13\xe0\x22\xe0\x23\x72\x72\x82"
                   72964:             "\x7f\x12\x66\x52\x82\x73\x72\x82\xe0\x33\xe0\x33\xe0"
                   72965:             "\x34\xe0\x3e\x7c\xf3\xe0\x50\xf1\x1e\x04" }  },
                   72966:       /* --- pixel bitmap for stmary210 char#71 \supsetpluseq --- */
                   72967:       {  71,55600,                      /* character number, location */
                   72968:          18, 2,   -6, 2,      /* topleft row,col, and botleft row,col */
                   72969:           { 19,   24, 3,73, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72970:             "\x0c\x7e\xe0\x34\xe0\x33\xe0\x33\xe0\x32\x82\x73\x72"
                   72971:             "\x82\xf1\x56\x62\x72\x82\x72\x73\xe0\x22\xe0\x23\xe0"
                   72972:             "\x13\xe4\x3e\x5c\x70\xf3\xe0\x5f\x1e\x04\x11" }  },
                   72973:       /* --- pixel bitmap for stmary210 char#72 \Lbag --- */
                   72974:       {  72,56383,                      /* character number, location */
                   72975:          22, 2,   -7, 2,      /* topleft row,col, and botleft row,col */
                   72976:           {  9,   29, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72977:             "\x1c\x44\x9c\x38\x21\x02\x04\x08\x10\x30\x20\x40\xc0"
                   72978:             "\x80\x80\x01\x03\x03\x06\x0c\x0c\x18\x30\x60\xc0\x80"
                   72979:             "\x01\x06\x0c\x30\xc0\x01\x1e" }  },
                   72980:       /* --- pixel bitmap for stmary210 char#73 \Rbag --- */
                   72981:       {  73,56897,                      /* character number, location */
                   72982:          22, 2,   -7, 2,      /* topleft row,col, and botleft row,col */
                   72983:           {  9,   29, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72984:             "\x70\x10\x21\x47\x8e\x08\x01\x02\x04\x18\x20\x40\x80"
                   72985:             "\x01\x02\x0c\x18\x60\xc0\x80\x01\x06\x0c\x18\x30\x60"
                   72986:             "\xc0\xc0\x80\x81\xc1\xf1\x00" }  },
                   72987:       /* --- pixel bitmap for stmary210 char#74 \llbracket --- */
                   72988:       {  74,57768,                      /* character number, location */
                   72989:          22, 2,   -7, 2,      /* topleft row,col, and botleft row,col */
                   72990:           { 10,   29, 3,20, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72991:             "\xf1\x0a\x0f\xe2\x22\x4f\x92\x22\x4f\x1a" }  },
                   72992:       /* --- pixel bitmap for stmary210 char#75 \rrbracket --- */
                   72993:       {  75,58682,                      /* character number, location */
                   72994:          22, 1,   -7, 1,      /* topleft row,col, and botleft row,col */
                   72995:           {  9,   29, 3,20, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   72996:             "\xf1\x09\xfe\x32\x22\xf9\x32\x22\x0f\x19" }  },
                   72997:       /* --- pixel bitmap for stmary210 char#76 \llparenthesis --- */
                   72998:       {  76,59454,                      /* character number, location */
                   72999:          22, 2,   -8, 2,      /* topleft row,col, and botleft row,col */
                   73000:           {  7,   30, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   73001:             "\x40\x30\x1c\x8f\x66\x93\xcd\x62\xf1\x78\x3c\x1e\x8f"
                   73002:             "\xc7\xe3\xf1\x78\x2c\x16\x9b\xc9\x6c\x34\x1e\x0e\x06"
                   73003:             "\x02" }  },
                   73004:       /* --- pixel bitmap for stmary210 char#77 \rrparenthesis --- */
                   73005:       {  77,60223,                      /* character number, location */
                   73006:          22, 2,   -8, 2,      /* topleft row,col, and botleft row,col */
                   73007:           {  7,   30, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   73008:             "\x81\xc1\xe1\xb1\xd8\x4c\x66\xa3\xd1\x78\x3c\x1e\x8f"
                   73009:             "\xc7\xe3\xf1\x78\x3c\x1a\xcd\x26\x9b\xc5\xe3\x30\x08"
                   73010:             "\x00" }  },
                   73011:       /* --- pixel bitmap for stmary210 char#78 \binampersand --- */
                   73012:       {  78,61048,                      /* character number, location */
                   73013:          17, 2,   -3, 2,      /* topleft row,col, and botleft row,col */
                   73014:           { 19,   20, 3,75, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   73015:             "\x74\xd7\xb3\x33\x60\xf2\x42\x52\x60\x43\x33\xb3\x13"
                   73016:             "\xd5\xc6\x72\x24\x24\x52\x13\x63\x36\x83\x22\x12\xa6"
                   73017:             "\x12\xb4\x22\xb5\x12\x94\x16\x64\x42\x1b\xa6\xa0" }  },
                   73018:       /* --- pixel bitmap for stmary210 char#79 \bindnasrepma --- */
                   73019:       {  79,61759,                      /* character number, location */
                   73020:          18, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
                   73021:           { 19,   20, 3,75, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   73022:             "\xa6\xab\x12\x44\x66\x14\x92\x15\xb2\x24\xb2\x16\xa2"
                   73023:             "\x12\x23\x86\x33\x63\x12\x54\x24\x22\x76\xc5\xd3\x13"
                   73024:             "\xb3\x33\x40\xf2\x62\x52\x40\x63\x33\xb7\xd4\x70" }  },
                   73025:       /* --- pixel bitmap for stmary210 char#80 \trianglelefteqslant --- */
                   73026:       {  80,62545,                      /* character number, location */
                   73027:          18, 2,   -6, 2,      /* topleft row,col, and botleft row,col */
                   73028:           { 19,   24, 3,88, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   73029:             "\xe0\x32\xe0\x14\xd6\xb4\x22\x85\x42\x65\x62\x44\x92"
                   73030:             "\x24\xb2\x0f\x14\xd2\x24\xb2\x44\x92\x65\x62\x85\x44"
                   73031:             "\x94\x26\x96\x24\x94\x44\x92\x65\xe0\x25\xe0\x34\xe0"
                   73032:             "\x34\xe0\x34\xe0\x32" }  },
                   73033:       /* --- pixel bitmap for stmary210 char#81 \trianglerighteqslant --- */
                   73034:       {  81,63334,                      /* character number, location */
                   73035:          18, 2,   -6, 2,      /* topleft row,col, and botleft row,col */
                   73036:           { 19,   24, 3,83, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   73037:             "\x02\xe0\x34\xe0\x16\xd2\x24\xb2\x45\x82\x65\x62\x94"
                   73038:             "\x42\xb4\x2f\x12\xd4\x02\xb4\x22\x94\x42\x65\x62\x45"
                   73039:             "\x82\x24\x98\x98\x94\x22\x94\xc5\xc5\xc4\xd4\xd4\xe0"
                   73040:             "\x12\xe0\x34" }  },
                   73041:       /* --- pixel bitmap for stmary210 char#82 \ntrianglelefteqslant --- */
                   73042:       {  82,64169,                      /* character number, location */
                   73043:          23, 2,   -9, 2,      /* topleft row,col, and botleft row,col */
                   73044:           { 19,   32, 3,131, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   73045:             "\xf1\xe0\x12\x20\xe3\xe0\x22\xe0\x23\xe0\x22\x22\xf1"
                   73046:             "\xc7\xa5\x22\x86\x32\x64\x12\x42\x44\x23\x42\x24\x42"
                   73047:             "\x56\x53\x56\x52\x62\x24\x23\x62\x46\x72\x65\x62\x76"
                   73048:             "\x44\x52\x24\x26\x23\x46\x26\x74\x45\x82\x56\xd2\x24"
                   73049:             "\xa3\x44\x82\x74\x53\x94\x32\xc2\x23\xe0\xf1\x22\xe0"
                   73050:             "\x10" }  },
                   73051:       /* --- pixel bitmap for stmary210 char#83 \ntrianglerighteqslant --- */
                   73052:       {  83,65051,                      /* character number, location */
                   73053:          23, 2,   -9, 2,      /* topleft row,col, and botleft row,col */
                   73054:           { 19,   32, 3,127, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   73055:             "\xf1\xe0\x12\x20\xe3\xe0\x22\xe0\x23\x32\xb2\x44\x83"
                   73056:             "\x46\x62\x52\x25\x32\x52\x48\x52\x74\x62\x85\x42\x82"
                   73057:             "\x14\x22\x73\x36\x72\x46\x63\x24\x22\x67\x42\x65\x62"
                   73058:             "\x44\x92\x25\x8b\x68\x22\x54\x22\x33\x25\x92\x15\xb5"
                   73059:             "\xd4\xd4\xd6\xd2\x12\xe0\x23\xe0\xf1\x22\xe0\x12" }  },
                   73060:       /* --- pixel bitmap for stmary210 char#84 \llfloor --- */
                   73061:       {  84,65775,                      /* character number, location */
                   73062:          22, 2,   -8, 2,      /* topleft row,col, and botleft row,col */
                   73063:           { 14,   30, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   73064:             "\xfe\x02\x42\x6f\xc2\x42\x6f\x1e" }  },
                   73065:       /* --- pixel bitmap for stmary210 char#85 \rrfloor --- */
                   73066:       {  85,66497,                      /* character number, location */
                   73067:          22, 0,   -8, 0,      /* topleft row,col, and botleft row,col */
                   73068:           { 14,   30, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   73069:             "\xfe\x62\x42\xfc\x62\x42\x0f\x1e" }  },
                   73070:       /* --- pixel bitmap for stmary210 char#86 \llceil --- */
                   73071:       {  86,67205,                      /* character number, location */
                   73072:          21, 2,   -7, 2,      /* topleft row,col, and botleft row,col */
                   73073:           { 14,   28, 3,17, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   73074:             "\xf1\x0e\x0f\xe2\x42\x6f\xa2\x42\x63" }  },
                   73075:       /* --- pixel bitmap for stmary210 char#87 \rrceil --- */
                   73076:       {  87,67906,                      /* character number, location */
                   73077:          21, 0,   -7, 0,      /* topleft row,col, and botleft row,col */
                   73078:           { 14,   28, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   73079:             "\xf1\x0e\xfe\x62\x42\xfa\x62\x42" }  },
                   73080:       /* --- pixel bitmap for stmary210 char#88 \arrownot --- */
                   73081:       {  88,68339,                      /* character number, location */
                   73082:          13,10,    2,10,      /* topleft row,col, and botleft row,col */
                   73083:           {  9,   11, 3,23, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   73084:             "\x71\x73\x53\x62\x63\x53\x53\x62\x63\x53\x71\x74" }  },
                   73085:       /* --- pixel bitmap for stmary210 char#89 \Arrownot --- */
                   73086:       {  89,68693,                      /* character number, location */
                   73087:          16,11,   -1,11,      /* topleft row,col, and botleft row,col */
                   73088:           {  7,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   73089:             "\x60\x30\x1c\x06\xc3\x61\x30\x1c\x06\xc3\x61\x30\x1c"
                   73090:             "\x06\x03" }  },
                   73091:       /* --- pixel bitmap for stmary210 char#90 \Mapstochar --- */
                   73092:       {  90,69082,                      /* character number, location */
                   73093:          16, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
                   73094:           {  3,   18, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   73095:             "\xdb\xb6\x7f\xdb\xfe\x6d\x1b" }  },
                   73096:       /* --- pixel bitmap for stmary210 char#91 \mapsfromchar --- */
                   73097:       {  91,69385,                      /* character number, location */
                   73098:          13,-5,    1,-5,      /* topleft row,col, and botleft row,col */
                   73099:           {  3,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   73100:             "\xb6\xed\xdf\xb6\x0d" }  },
                   73101:       /* --- pixel bitmap for stmary210 char#92 \Mapsfromchar --- */
                   73102:       {  92,69695,                      /* character number, location */
                   73103:          16,-5,   -2,-5,      /* topleft row,col, and botleft row,col */
                   73104:           {  3,   18, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   73105:             "\xb6\xed\xdf\xb6\x7f\xdb\x36" }  },
                   73106:       /* --- pixel bitmap for stmary210 char#93 \leftrightarrowtriangle --- */
                   73107:       {  93,70554,                      /* character number, location */
                   73108:          12, 2,    3, 2,      /* topleft row,col, and botleft row,col */
                   73109:           { 25,    9, 3,49, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   73110:             "\x73\x53\xc5\x55\x84\x12\x52\x14\x53\x32\x52\x33\x2f"
                   73111:             "\x14\x49\x44\x25\x12\x52\x15\x66\x56\xb3\x53\x72" }  },
                   73112:       /* --- pixel bitmap for stmary210 char#94 \leftarrowtriangle --- */
                   73113:       {  94,71403,                      /* character number, location */
                   73114:          12, 2,    3, 2,      /* topleft row,col, and botleft row,col */
                   73115:           { 25,    9, 3,43, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   73116:             "\x72\xe0\x74\xe0\x56\xe0\x34\x22\xe0\x23\x4e\x08\x3e"
                   73117:             "\x04\x24\x12\xe0\x65\xe0\x83\xe0\x26" }  },
                   73118:       /* --- pixel bitmap for stmary210 char#95 \rightarrowtriangle --- */
                   73119:       {  95,72227,                      /* character number, location */
                   73120:          12, 2,    3, 2,      /* topleft row,col, and botleft row,col */
                   73121:           { 25,    9, 3,43, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   73122:             "\xe0\x22\xe0\x94\xe0\x76\xe0\x52\x24\x1e\x04\x4e\x07"
                   73123:             "\x34\xe0\x22\x14\xe0\x45\xe0\x63\x66" }  },
                   73124:       /* --- pixel bitmap for stmary210 char#96 \bigtriangledown --- */
                   73125:       {  96,72937,                      /* character number, location */
                   73126:           0, 2,  -29, 2,      /* topleft row,col, and botleft row,col */
                   73127:           { 20,   29, 3,117, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   73128:             "\xf1\x0e\x06\x03\xe3\xf1\x12\xe2\x10\x13\xc3\x10\xf1"
                   73129:             "\x22\xc2\x20\x23\xa3\x20\xf1\x32\xa2\x30\x33\x83\x30"
                   73130:             "\xf1\x42\x82\x40\x43\x63\x40\xf1\x52\x62\x50\x53\x43"
                   73131:             "\x50\xf1\x62\x42\x60\x63\x23\x60\xf1\x72\x22\x70\x76"
                   73132:             "\x70\xf2\x84\x80\xf1\x92\x93" }  },
                   73133:       /* --- pixel bitmap for stmary210 char#97 \bigtriangleup --- */
                   73134:       {  97,73740,                      /* character number, location */
                   73135:           0, 2,  -29, 2,      /* topleft row,col, and botleft row,col */
                   73136:           { 20,   29, 3,116, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   73137:             "\xf1\x92\x90\xf2\x84\x80\x76\x70\xf1\x72\x22\x70\x63"
                   73138:             "\x23\x60\xf1\x62\x42\x60\x53\x43\x50\xf1\x52\x62\x50"
                   73139:             "\x43\x63\x40\xf1\x42\x82\x40\x33\x83\x30\xf1\x32\xa2"
                   73140:             "\x30\x23\xa3\x20\xf1\x22\xc2\x20\x13\xc3\x10\xf1\x12"
                   73141:             "\xe2\x13\xe3\x0f\x1e\x06" }  },
                   73142:       /* --- pixel bitmap for stmary210 char#98 \bigcurlyvee --- */
                   73143:       {  98,74541,                      /* character number, location */
                   73144:           0, 2,  -29, 2,      /* topleft row,col, and botleft row,col */
                   73145:           { 20,   29, 3,61, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   73146:             "\x02\xe0\x26\xc4\x23\xa3\x53\x83\x72\x82\x83\x63\x93"
                   73147:             "\x43\xb2\x42\xc3\x23\x60\xf1\x72\x22\x70\x76\x70\xf4"
                   73148:             "\x84\x80\xfb\x92\x92" }  },
                   73149:       /* --- pixel bitmap for stmary210 char#99 \bigcurlywedge --- */
                   73150:       {  99,75324,                      /* character number, location */
                   73151:           0, 2,  -29, 2,      /* topleft row,col, and botleft row,col */
                   73152:           { 20,   29, 3,60, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   73153:             "\xfb\x92\x90\xf4\x84\x80\x76\x70\xf1\x72\x22\x70\x63"
                   73154:             "\x23\xc2\x42\xb3\x43\x93\x63\x82\x82\x73\x83\x53\xa3"
                   73155:             "\x24\xc6\xe0\x22" }  },
                   73156:       /* --- pixel bitmap for stmary210 char#100 \bigsqcap --- */
                   73157:       { 100,76135,                      /* character number, location */
                   73158:           0, 2,  -29, 2,      /* topleft row,col, and botleft row,col */
                   73159:           { 20,   29, 2,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   73160:             "\xff\x01\x00\x14\x00\xff\x1a\x02\x10\x02" }  },
                   73161:       /* --- pixel bitmap for stmary210 char#101 \bigbox --- */
                   73162:       { 101,76958,                      /* character number, location */
                   73163:           0, 2,  -29, 2,      /* topleft row,col, and botleft row,col */
                   73164:           { 20,   29, 3,28, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   73165:             "\xf1\x0e\x06\x0f\xe2\xe0\x22\x0f\x92\xe0\x22\x0f\x1e"
                   73166:             "\x06" }  },
                   73167:       /* --- pixel bitmap for stmary210 char#102 \bigparallel --- */
                   73168:       { 102,77607,                      /* character number, location */
                   73169:           0, 2,  -29, 2,      /* topleft row,col, and botleft row,col */
                   73170:           {  9,   29, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   73171:             "\xfe\x02\x52\x0f\xd2\x52" }  },
                   73172:       /* --- pixel bitmap for stmary210 char#103 \biginterleave --- */
                   73173:       { 103,78413,                      /* character number, location */
                   73174:           0, 2,  -29, 2,      /* topleft row,col, and botleft row,col */
                   73175:           { 16,   29, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   73176:             "\xfe\x02\x52\x52\x0f\xd2\x52\x52" }  },
                   73177:       /* --- pixel bitmap for stmary210 char#104 (noname) --- */
                   73178:       { 104,79423,                      /* character number, location */
                   73179:           0, 2,  -41, 2,      /* topleft row,col, and botleft row,col */
                   73180:           { 28,   41, 3,189, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   73181:             "\xf1\x0e\x0e\x03\xe0\x83\xf1\x12\xe0\x82\x10\x13\xe0"
                   73182:             "\x63\x10\xf1\x22\xe0\x62\x20\x23\xe0\x43\x20\xf1\x32"
                   73183:             "\xe0\x42\x30\x33\xe0\x23\x30\xf1\x42\xe0\x22\x40\x43"
                   73184:             "\xe3\x40\xf1\x52\xe2\x50\x53\xc3\x50\xf1\x62\xc2\x60"
                   73185:             "\x63\xa3\x60\xf1\x72\xa2\x70\x73\x83\x70\xf1\x82\x82"
                   73186:             "\x80\x83\x63\x80\xf1\x92\x62\x90\x93\x43\x90\xf1\xa2"
                   73187:             "\x42\xa0\xa3\x23\xa0\xf1\xb2\x22\xb0\xb6\xb0\xf2\xc4"
                   73188:             "\xc0\xf1\xd2\xd0" }  },
                   73189:       /* --- pixel bitmap for stmary210 char#105 (noname) --- */
                   73190:       { 105,80407,                      /* character number, location */
                   73191:           0, 2,  -41, 2,      /* topleft row,col, and botleft row,col */
                   73192:           { 28,   41, 3,188, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   73193:             "\xf1\xd2\xd0\xf2\xc4\xc0\xb6\xb0\xf1\xb2\x22\xb0\xa3"
                   73194:             "\x23\xa0\xf1\xa2\x42\xa0\x93\x43\x90\xf1\x92\x62\x90"
                   73195:             "\x83\x63\x80\xf1\x82\x82\x80\x73\x83\x70\xf1\x72\xa2"
                   73196:             "\x70\x63\xa3\x60\xf1\x62\xc2\x60\x53\xc3\x50\xf1\x52"
                   73197:             "\xe2\x50\x43\xe3\x40\xf1\x42\xe0\x22\x40\x33\xe0\x23"
                   73198:             "\x30\xf1\x32\xe0\x42\x30\x23\xe0\x43\x20\xf1\x22\xe0"
                   73199:             "\x62\x20\x13\xe0\x63\x10\xf1\x12\xe0\x82\x13\xe0\x83"
                   73200:             "\x0f\x1e\x0e" }  },
                   73201:       /* --- pixel bitmap for stmary210 char#106 (noname) --- */
                   73202:       { 106,81389,                      /* character number, location */
                   73203:           0, 2,  -41, 2,      /* topleft row,col, and botleft row,col */
                   73204:           { 28,   41, 3,103, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   73205:             "\x02\xe0\xa6\xe0\x64\x23\xe0\x43\x53\xe0\x23\x73\xe3"
                   73206:             "\x93\xc3\xb3\xa3\xd2\xa2\xe3\x83\xe0\x12\x82\xe0\x23"
                   73207:             "\x63\xe0\x32\x62\xe0\x43\x43\xe0\x52\x42\xe0\x63\x23"
                   73208:             "\xa0\xf2\xb2\x22\xb0\xb6\xb0\xf6\xc4\xc0\xfe\xd2\xd2" }  },
                   73209:       /* --- pixel bitmap for stmary210 char#107 (noname) --- */
                   73210:       { 107,82343,                      /* character number, location */
                   73211:           0, 2,  -41, 2,      /* topleft row,col, and botleft row,col */
                   73212:           { 28,   41, 3,102, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   73213:             "\xfe\xd2\xd0\xf6\xc4\xc0\xb6\xb0\xf2\xb2\x22\xb0\xa3"
                   73214:             "\x23\xe0\x62\x42\xe0\x53\x43\xe0\x42\x62\xe0\x33\x63"
                   73215:             "\xe0\x22\x82\xe0\x13\x83\xe2\xa2\xd3\xa3\xb3\xc3\x93"
                   73216:             "\xe3\x73\xe0\x23\x53\xe0\x43\x24\xe0\x66\xe0\xa2" }  },
                   73217:       /* --- pixel bitmap for stmary210 char#108 (noname) --- */
                   73218:       { 108,83318,                      /* character number, location */
                   73219:           0, 2,  -41, 2,      /* topleft row,col, and botleft row,col */
                   73220:           { 28,   41, 2,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   73221:             "\xff\x01\x00\x1c\x00\xff\x26\x02\x18\x02" }  },
                   73222:       /* --- pixel bitmap for stmary210 char#109 (noname) --- */
                   73223:       { 109,84322,                      /* character number, location */
                   73224:           0, 2,  -41, 2,      /* topleft row,col, and botleft row,col */
                   73225:           { 28,   41, 2,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   73226:             "\xff\x01\x00\x1c\x00\xff\x24\x02\x18\x02\x00\xff\x01"
                   73227:             "\x1c" }  },
                   73228:       /* --- pixel bitmap for stmary210 char#110 (noname) --- */
                   73229:       { 110,85074,                      /* character number, location */
                   73230:           0, 2,  -41, 2,      /* topleft row,col, and botleft row,col */
                   73231:           { 12,   41, 2, 6, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   73232:             "\xff\x28\x00\x02\x08\x02" }  },
                   73233:       /* --- pixel bitmap for stmary210 char#111 (noname) --- */
                   73234:       { 111,86035,                      /* character number, location */
                   73235:           0, 2,  -41, 2,      /* topleft row,col, and botleft row,col */
                   73236:           { 22,   41, 2, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   73237:             "\xff\x28\x00\x02\x08\x02\x08\x02" }  },
                   73238:       /* --- pixel bitmap for stmary210 char#112 \bignplus --- */
                   73239:       { 112,87085,                      /* character number, location */
                   73240:           0, 2,  -29, 2,      /* topleft row,col, and botleft row,col */
                   73241:           { 20,   29, 3,70, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   73242:             "\x76\xca\x84\x64\x53\xa3\x42\xc2\x33\xc3\x22\xe2\x13"
                   73243:             "\xe3\x0f\x12\xe0\x22\x0f\x32\x72\x72\x02\x3a\x34\x2c"
                   73244:             "\x22\x0f\x42\x72\x72\x0f\x72\xe0\x22" }  },
                   73245:       /* --- pixel bitmap for stmary210 char#113 (noname) --- */
                   73246:       { 113,88137,                      /* character number, location */
                   73247:           1, 5,  -33, 5,      /* topleft row,col, and botleft row,col */
                   73248:           { 10,   34, 3,20, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   73249:             "\xf1\x0a\x0f\xe2\x22\x4f\xe2\x22\x4f\x1a" }  },
                   73250:       /* --- pixel bitmap for stmary210 char#114 (noname) --- */
                   73251:       { 114,89164,                      /* character number, location */
                   73252:           1, 6,  -50, 6,      /* topleft row,col, and botleft row,col */
                   73253:           { 11,   51, 2,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   73254:             "\xff\x01\x00\x0b\x00\xff\x2e\x02\x02\x02\x05\xff\x01"
                   73255:             "\x0b" }  },
                   73256:       /* --- pixel bitmap for stmary210 char#115 (noname) --- */
                   73257:       { 115,90312,                      /* character number, location */
                   73258:           1, 7,  -68, 7,      /* topleft row,col, and botleft row,col */
                   73259:           { 12,   69, 2,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   73260:             "\xff\x01\x00\x0c\x00\xff\x40\x02\x03\x02\x05\xff\x01"
                   73261:             "\x0c" }  },
                   73262:       /* --- pixel bitmap for stmary210 char#116 (noname) --- */
                   73263:       { 116,91558,                      /* character number, location */
                   73264:           1, 8,  -85, 8,      /* topleft row,col, and botleft row,col */
                   73265:           { 12,   86, 2,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   73266:             "\xff\x01\x00\x0c\x00\xff\x51\x02\x03\x02\x05\xff\x01"
                   73267:             "\x0c" }  },
                   73268:       /* --- pixel bitmap for stmary210 char#117 (noname) --- */
                   73269:       { 117,92815,                      /* character number, location */
                   73270:           0, 9,  -52, 9,      /* topleft row,col, and botleft row,col */
                   73271:           { 14,   52, 2,15, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   73272:             "\xff\x01\x00\x0e\x00\xff\x30\x02\x04\x02\x06\x02\x05"
                   73273:             "\x01\x06" }  },
                   73274:       /* --- pixel bitmap for stmary210 char#118 (noname) --- */
                   73275:       { 118,93868,                      /* character number, location */
                   73276:           2, 9,  -50, 9,      /* topleft row,col, and botleft row,col */
                   73277:           { 14,   52, 2,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   73278:             "\x00\x02\x05\x01\x06\xff\x30\x02\x04\x02\x06\xff\x01"
                   73279:             "\x0e" }  },
                   73280:       /* --- pixel bitmap for stmary210 char#119 (noname) --- */
                   73281:       { 119,94912,                      /* character number, location */
                   73282:           2, 9,  -18, 9,      /* topleft row,col, and botleft row,col */
                   73283:           {  8,   20, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   73284:             "\x02\x51\x0f\xe2\x42\x0f\x32\x42" }  },
                   73285:       /* --- pixel bitmap for stmary210 char#120 (noname) --- */
                   73286:       { 120,95910,                      /* character number, location */
                   73287:           0, 2,  -41, 2,      /* topleft row,col, and botleft row,col */
                   73288:           { 28,   41, 3,94, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   73289:             "\xa8\xe0\x4c\xe4\x84\xb3\xc3\x93\xe3\x73\xe0\x23\x53"
                   73290:             "\xe0\x43\x33\xe0\x63\x10\xf1\x12\xe0\x82\x13\xe0\x85"
                   73291:             "\xe0\xa2\x0f\x82\xb2\xb2\x02\x2e\x06\x24\x3e\x04\x32"
                   73292:             "\x0f\x72\xb2\xb2\x0f\x92\xe0\xa2" }  },
                   73293:       /* --- pixel bitmap for stmary210 char#121 (noname) --- */
                   73294:       { 121,96987,                      /* character number, location */
                   73295:           1, 0,  -33, 0,      /* topleft row,col, and botleft row,col */
                   73296:           { 10,   34, 3,20, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   73297:             "\xf1\x0a\xfe\x42\x22\xfe\x42\x22\x0f\x1a" }  },
                   73298:       /* --- pixel bitmap for stmary210 char#122 (noname) --- */
                   73299:       { 122,98001,                      /* character number, location */
                   73300:           1, 0,  -50, 0,      /* topleft row,col, and botleft row,col */
                   73301:           { 11,   51, 2,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   73302:             "\xff\x01\x00\x0b\xff\x2e\x05\x02\x02\x02\x00\xff\x01"
                   73303:             "\x0b" }  },
                   73304:       /* --- pixel bitmap for stmary210 char#123 (noname) --- */
                   73305:       { 123,99110,                      /* character number, location */
                   73306:           1, 0,  -68, 0,      /* topleft row,col, and botleft row,col */
                   73307:           { 12,   69, 2,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   73308:             "\xff\x01\x00\x0c\xff\x40\x05\x02\x03\x02\x00\xff\x01"
                   73309:             "\x0c" }  },
                   73310:       /* --- pixel bitmap for stmary210 char#124 (noname) --- */
                   73311:       { 124,100343,                     /* character number, location */
                   73312:           1, 0,  -85, 0,      /* topleft row,col, and botleft row,col */
                   73313:           { 12,   86, 2,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   73314:             "\xff\x01\x00\x0c\xff\x51\x05\x02\x03\x02\x00\xff\x01"
                   73315:             "\x0c" }  },
                   73316:       /* --- pixel bitmap for stmary210 char#125 (noname) --- */
                   73317:       { 125,101561,                     /* character number, location */
                   73318:           0, 0,  -52, 0,      /* topleft row,col, and botleft row,col */
                   73319:           { 14,   52, 2,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   73320:             "\xff\x01\x00\x0e\xff\x30\x06\x02\x04\x02\x06\x01\x05"
                   73321:             "\x02" }  },
                   73322:       /* --- pixel bitmap for stmary210 char#126 (noname) --- */
                   73323:       { 126,102669,                     /* character number, location */
                   73324:           2, 0,  -50, 0,      /* topleft row,col, and botleft row,col */
                   73325:           { 14,   52, 2,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   73326:             "\x06\x01\x05\x02\xff\x30\x06\x02\x04\x02\x00\xff\x01"
                   73327:             "\x0e" }  },
                   73328:       /* --- pixel bitmap for stmary210 char#127 (noname) --- */
                   73329:       { 127,103674,                     /* character number, location */
                   73330:           2, 6,  -18, 6,      /* topleft row,col, and botleft row,col */
                   73331:           {  8,   20, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   73332:             "\x01\x52\x0f\xe2\x42\x0f\x32\x42" }  },
                   73333:       /* --- trailer  --- */
                   73334:       { -99, -999,  0,0,0,0, { 0,0,0,0, (pixbyte *)"\0" }  }
                   73335:    } ;
                   73336: 
                   73337: 
                   73338: /* --- size=7 for .250gf ---
                   73339:  * mf '\mode=preview; mag=magstep(-12.84858895680446863032); input stmary10'
                   73340:  * --------------------------------------------------------------------- */
                   73341: /* --- fontdef for stmary250 --- */
                   73342: static	chardef  stmary250[] =
                   73343:    {
                   73344:       /* --- pixel bitmap for stmary250 char#0 \shortleftarrow --- */
                   73345:       {   0,  948,                      /* character number, location */
                   73346:          15, 2,    3, 2,      /* topleft row,col, and botleft row,col */
                   73347:           { 23,   12, 3,53, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   73348:             "\x61\xe0\x20\xf1\x51\xe0\x30\x41\xe0\x62\xe0\x50\xf1"
                   73349:             "\x1e\x08\x22\xe0\x91\xe0\x40\xf1\x51\xe0\x30\x61\xe0"
                   73350:             "\x20" }  },
                   73351:       /* --- pixel bitmap for stmary250 char#1 \shortrightarrow --- */
                   73352:       {   1, 1893,                      /* character number, location */
                   73353:          15, 2,    3, 2,      /* topleft row,col, and botleft row,col */
                   73354:           { 23,   12, 3,53, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   73355:             "\xe0\x21\x60\xf1\xe0\x31\x50\xe0\x41\xe0\x92\x2e\x0e"
                   73356:             "\x0e\x03\xe0\x62\xe0\x61\x40\xf1\xe0\x31\x50\xe0\x21"
                   73357:             "\x60" }  },
                   73358:       /* --- pixel bitmap for stmary250 char#2 \shortuparrow --- */
                   73359:       {   2, 2698,                      /* character number, location */
                   73360:          20, 3,   -3, 3,      /* topleft row,col, and botleft row,col */
                   73361:           { 12,   23, 3,39, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   73362:             "\x61\xa2\x50\xf1\x44\x40\x31\x12\x11\x42\x22\x22\x11"
                   73363:             "\x42\x41\xfe\x52\x50\x52\x50" }  },
                   73364:       /* --- pixel bitmap for stmary250 char#3 \shortdownarrow --- */
                   73365:       {   3, 3539,                      /* character number, location */
                   73366:          20, 3,   -3, 3,      /* topleft row,col, and botleft row,col */
                   73367:           { 12,   23, 3,39, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   73368:             "\xfe\x52\x50\x52\x51\x42\x41\x12\x22\x22\x41\x12\x11"
                   73369:             "\x30\xf1\x44\x40\x52\xb1\x50" }  },
                   73370:       /* --- pixel bitmap for stmary250 char#4 \Yup --- */
                   73371:       {   4, 4160,                      /* character number, location */
                   73372:          18, 2,    1, 2,      /* topleft row,col, and botleft row,col */
                   73373:           { 15,   17, 3,32, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   73374:             "\xf8\x72\x60\x63\xb5\x93\x13\x73\x33\x53\x53\x33\x73"
                   73375:             "\x13\x95\xb2" }  },
                   73376:       /* --- pixel bitmap for stmary250 char#5 \Ydown --- */
                   73377:       {   5, 4757,                      /* character number, location */
                   73378:          16, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   73379:           { 15,   17, 3,31, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   73380:             "\x02\xb5\x93\x13\x73\x33\x53\x53\x33\x73\x13\x95\x50"
                   73381:             "\xf9\x72\x62" }  },
                   73382:       /* --- pixel bitmap for stmary250 char#6 \Yleft --- */
                   73383:       {   6, 5395,                      /* character number, location */
                   73384:          16, 2,    1, 2,      /* topleft row,col, and botleft row,col */
                   73385:           { 17,   15, 3,46, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   73386:             "\xe0\x12\xe3\xd3\xd3\xd3\xd3\x4c\x5b\xe0\x13\xe0\x13"
                   73387:             "\xe0\x13\xe0\x13\xe0\x13\xe0\x13\xe0\x12" }  },
                   73388:       /* --- pixel bitmap for stmary250 char#7 \Yright --- */
                   73389:       {   7, 6018,                      /* character number, location */
                   73390:          16, 2,    1, 2,      /* topleft row,col, and botleft row,col */
                   73391:           { 17,   15, 3,45, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   73392:             "\x02\xe0\x13\xe0\x13\xe0\x13\xe0\x13\xe0\x13\xe0\x1c"
                   73393:             "\x6b\x53\xd3\xd3\xd3\xd3\xd3\xe2\xe0\x12" }  },
                   73394:       /* --- pixel bitmap for stmary250 char#8 \varcurlyvee --- */
                   73395:       {   8, 6657,                      /* character number, location */
                   73396:          24, 0,   -8, 0,      /* topleft row,col, and botleft row,col */
                   73397:           { 24,   32, 3,85, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   73398:             "\x02\xe0\x65\xe0\x43\x13\xe0\x23\x33\xe3\x53\xc3\x73"
                   73399:             "\xa3\x93\x83\xb2\x82\xc3\x63\xd2\x62\xe3\x43\xe0\x12"
                   73400:             "\x42\xe0\x23\x23\x80\xf2\x92\x22\x90\x96\x90\xf4\xa4"
                   73401:             "\xa0\xf9\xb2\xb0" }  },
                   73402:       /* --- pixel bitmap for stmary250 char#9 \varcurlywedge --- */
                   73403:       {   9, 7374,                      /* character number, location */
                   73404:          24, 0,   -8, 0,      /* topleft row,col, and botleft row,col */
                   73405:           { 24,   32, 3,88, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   73406:             "\xf8\xb2\xb0\xf4\xa4\xa0\x96\x90\xf2\x92\x22\x90\x83"
                   73407:             "\x23\xe0\x22\x42\xe0\x13\x43\xe2\x62\xd3\x63\xc2\x82"
                   73408:             "\xb3\x83\xa2\xa2\x93\xa3\x73\xc3\x53\xe3\x33\xe0\x23"
                   73409:             "\x13\xe0\x45\xe0\x62" }  },
                   73410:       /* --- pixel bitmap for stmary250 char#10 \minuso --- */
                   73411:       {  10, 8221,                      /* character number, location */
                   73412:          16, 2,    2, 2,      /* topleft row,col, and botleft row,col */
                   73413:           { 23,   14, 3,51, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   73414:             "\x95\xe0\x29\xd3\x53\xb3\x73\x50\xf1\x52\x92\x5f\x1e"
                   73415:             "\x09\xf1\x52\x92\x50\x53\x73\xb3\x53\xd9\xe0\x25\x92" }  },
                   73416:       /* --- pixel bitmap for stmary250 char#11 \baro --- */
                   73417:       {  11, 8911,                      /* character number, location */
                   73418:          20, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
                   73419:           { 15,   22, 3,65, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   73420:             "\xf3\x72\x60\x47\x6b\x33\x32\x23\x22\x42\x32\x13\x42"
                   73421:             "\x33\x0f\x32\x52\x42\x03\x42\x33\x12\x42\x32\x23\x32"
                   73422:             "\x23\x3b\x67\x40\xf3\x72\x63" }  },
                   73423:       /* --- pixel bitmap for stmary250 char#12 \sslash --- */
                   73424:       {  12, 9611,                      /* character number, location */
                   73425:          26, 2,   -9, 2,      /* topleft row,col, and botleft row,col */
                   73426:           { 19,   35, 3,153, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   73427:             "\xf1\xb2\x42\xa3\x33\xf1\xa2\x42\x10\x93\x33\x10\xf1"
                   73428:             "\x92\x42\x20\x83\x33\x20\xf1\x82\x42\x30\x73\x33\x30"
                   73429:             "\xf1\x72\x42\x40\x63\x33\x40\xf1\x62\x42\x50\x53\x33"
                   73430:             "\x50\xf1\x52\x42\x60\x43\x33\x60\xf1\x42\x42\x70\x33"
                   73431:             "\x33\x70\xf1\x32\x42\x80\x23\x33\x80\xf1\x22\x42\x90"
                   73432:             "\x13\x33\x90\xf1\x12\x42\xa3\x33\xaf\x12\x42\xb0" }  },
                   73433:       /* --- pixel bitmap for stmary250 char#13 \bblash --- */
                   73434:       {  13,10368,                      /* character number, location */
                   73435:          26, 2,   -9, 2,      /* topleft row,col, and botleft row,col */
                   73436:           { 19,   35, 3,156, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   73437:             "\xf1\x02\x42\xb3\x33\xa0\xf1\x12\x42\xa0\x13\x33\x90"
                   73438:             "\xf1\x22\x42\x90\x23\x33\x80\xf1\x32\x42\x80\x33\x33"
                   73439:             "\x70\xf1\x42\x42\x70\x43\x33\x60\xf1\x52\x42\x60\x53"
                   73440:             "\x33\x50\xf1\x62\x42\x50\x63\x33\x40\xf1\x72\x42\x40"
                   73441:             "\x73\x33\x30\xf1\x82\x42\x30\x83\x33\x20\xf1\x92\x42"
                   73442:             "\x20\x93\x33\x10\xf1\xa2\x42\x10\xa3\x33\xf1\xb2\x42" }  },
                   73443:       /* --- pixel bitmap for stmary250 char#14 \moo --- */
                   73444:       {  14,11213,                      /* character number, location */
                   73445:          19, 4,   -1, 4,      /* topleft row,col, and botleft row,col */
                   73446:           { 18,   20, 3,39, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   73447:             "\xf8\x82\x8f\x1e\x04\xf2\x82\x80\xf1\x74\x72\x54\x55"
                   73448:             "\x36\x33\x17\x27\x34\x64\x20" }  },
                   73449:       /* --- pixel bitmap for stmary250 char#15 \varotimes --- */
                   73450:       {  15,11976,                      /* character number, location */
                   73451:          20, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
                   73452:           { 22,   22, 3,101, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   73453:             "\x86\xea\xa4\x64\x73\xa3\x54\xa4\x36\x86\x22\x23\x63"
                   73454:             "\x22\x13\x33\x43\x35\x53\x23\x54\x66\x62\x0f\x12\x74"
                   73455:             "\x72\x02\x66\x64\x53\x23\x55\x33\x43\x33\x12\x23\x63"
                   73456:             "\x22\x26\x86\x34\xa4\x53\xa3\x74\x64\xaa\xe6\x82" }  },
                   73457:       /* --- pixel bitmap for stmary250 char#16 \varoast --- */
                   73458:       {  16,12924,                      /* character number, location */
                   73459:          20, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
                   73460:           { 22,   22, 3,113, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   73461:             "\x86\xea\xa4\x64\x73\xa3\x53\x52\x53\x33\x62\x63\x22"
                   73462:             "\x72\x72\x13\x22\x32\x32\x25\x33\x22\x23\x34\x58\x52"
                   73463:             "\x0f\x12\x74\x72\x02\x58\x54\x33\x22\x23\x35\x22\x32"
                   73464:             "\x32\x23\x12\x72\x72\x23\x62\x63\x33\x52\x53\x53\xa3"
                   73465:             "\x74\x64\xaa\xe6\x82" }  },
                   73466:       /* --- pixel bitmap for stmary250 char#17 \varobar --- */
                   73467:       {  17,13757,                      /* character number, location */
                   73468:          20, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
                   73469:           { 22,   22, 3,89, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   73470:             "\x86\xea\xa4\x22\x24\x73\x42\x43\x53\x52\x53\x33\x62"
                   73471:             "\x63\x22\x72\x72\x13\x72\x73\x0f\x52\x82\x82\x03\x72"
                   73472:             "\x73\x12\x72\x72\x23\x62\x63\x33\x52\x53\x53\x42\x43"
                   73473:             "\x74\x22\x24\xaa\xe6\x83" }  },
                   73474:       /* --- pixel bitmap for stmary250 char#18 \varodot --- */
                   73475:       {  18,14573,                      /* character number, location */
                   73476:          20, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
                   73477:           { 22,   22, 3,89, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   73478:             "\x86\xea\xa4\x64\x73\xa3\x53\xc3\x33\xe3\x22\xe0\x22"
                   73479:             "\x13\xe0\x25\x82\x84\x74\x72\x0f\x12\x66\x62\x02\x74"
                   73480:             "\x74\x82\x85\xe0\x23\x12\xe0\x22\x23\xe3\x33\xc3\x53"
                   73481:             "\xa3\x74\x64\xaa\xe6\x83" }  },
                   73482:       /* --- pixel bitmap for stmary250 char#19 \varoslash --- */
                   73483:       {  19,15376,                      /* character number, location */
                   73484:          20, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
                   73485:           { 22,   22, 3,87, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   73486:             "\x86\xea\xa4\x64\x73\xa3\x53\xb4\x33\xb6\x22\xb3\x22"
                   73487:             "\x13\xa3\x35\xa3\x54\x93\x64\x83\x74\x73\x84\x63\x94"
                   73488:             "\x53\xa5\x33\xa3\x12\x23\xb2\x26\xb3\x34\xb3\x53\xa3"
                   73489:             "\x74\x64\xaa\xe6\x86" }  },
                   73490:       /* --- pixel bitmap for stmary250 char#20 \varobslash --- */
                   73491:       {  20,16191,                      /* character number, location */
                   73492:          20, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
                   73493:           { 22,   22, 3,87, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   73494:             "\x86\xea\xa4\x64\x73\xa3\x54\xb3\x36\xb3\x22\x23\xb2"
                   73495:             "\x13\x33\xa5\x53\xa4\x63\x94\x73\x84\x83\x74\x93\x64"
                   73496:             "\xa3\x55\xa3\x33\x12\xb3\x22\x23\xb6\x33\xb4\x53\xa3"
                   73497:             "\x74\x64\xaa\xe6\x86" }  },
                   73498:       /* --- pixel bitmap for stmary250 char#21 \varocircle --- */
                   73499:       {  21,17145,                      /* character number, location */
                   73500:          20, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
                   73501:           { 22,   22, 3,95, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   73502:             "\x86\xea\xa4\x64\x73\xa3\x53\xc3\x33\x54\x53\x22\x48"
                   73503:             "\x42\x13\x33\x43\x35\x33\x63\x32\x0f\x32\x32\x82\x32"
                   73504:             "\x02\x33\x63\x35\x33\x43\x33\x12\x48\x42\x23\x54\x53"
                   73505:             "\x33\xc3\x53\xa3\x74\x64\xaa\xe6\x83" }  },
                   73506:       /* --- pixel bitmap for stmary250 char#22 \varoplus --- */
                   73507:       {  22,17975,                      /* character number, location */
                   73508:          20, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
                   73509:           { 22,   22, 3,103, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   73510:             "\x86\xea\xa4\x22\x24\x73\x42\x43\x53\x52\x53\x33\x62"
                   73511:             "\x63\x22\x72\x72\x13\x72\x73\x0f\x12\x82\x82\x0f\x1e"
                   73512:             "\x08\x0f\x12\x82\x82\x03\x72\x73\x12\x72\x72\x23\x62"
                   73513:             "\x63\x33\x52\x53\x53\x42\x43\x74\x22\x24\xaa\xe6\x83" }  },
                   73514:       /* --- pixel bitmap for stmary250 char#23 \varominus --- */
                   73515:       {  23,18794,                      /* character number, location */
                   73516:          20, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
                   73517:           { 22,   22, 3,87, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   73518:             "\x86\xea\xa4\x64\x73\xa3\x53\xc3\x33\xe3\x22\xe0\x22"
                   73519:             "\x13\xe0\x23\x0f\x12\xe0\x42\x0f\x1e\x08\x0f\x12\xe0"
                   73520:             "\x42\x03\xe0\x23\x12\xe0\x22\x23\xe3\x33\xc3\x53\xa3"
                   73521:             "\x74\x64\xaa\xe6\x83" }  },
                   73522:       /* --- pixel bitmap for stmary250 char#24 \boxast --- */
                   73523:       {  24,19629,                      /* character number, location */
                   73524:          19, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
                   73525:           { 20,   20, 3,96, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   73526:             "\xf1\x0e\x06\x0f\x12\xe0\x22\x0f\x12\x72\x72\x02\x31"
                   73527:             "\x32\x31\x34\x23\x22\x23\x24\x48\x42\x0f\x12\x64\x62"
                   73528:             "\x02\x48\x44\x23\x22\x23\x24\x31\x32\x31\x32\x0f\x12"
                   73529:             "\x72\x72\x0f\x12\xe0\x22\x0f\x1e\x06" }  },
                   73530:       /* --- pixel bitmap for stmary250 char#25 \boxbar --- */
                   73531:       {  25,20378,                      /* character number, location */
                   73532:          19, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
                   73533:           { 20,   20, 3,26, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   73534:             "\xf1\x0e\x06\x0f\xe2\x72\x72\x02\x72\x72\x0f\x1e\x06" }  },
                   73535:       /* --- pixel bitmap for stmary250 char#26 \boxdot --- */
                   73536:       {  26,21119,                      /* character number, location */
                   73537:          19, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
                   73538:           { 20,   20, 3,56, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   73539:             "\xf1\x0e\x06\x0f\x42\xe0\x22\x02\x72\x74\x64\x62\x0f"
                   73540:             "\x12\x56\x52\x02\x64\x64\x72\x72\x0f\x42\xe0\x22\x0f"
                   73541:             "\x1e\x06" }  },
                   73542:       /* --- pixel bitmap for stmary250 char#27 \boxslash --- */
                   73543:       {  27,21842,                      /* character number, location */
                   73544:          19, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
                   73545:           { 20,   20, 3,70, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   73546:             "\xf1\x0e\x06\x02\xe6\xd7\xc3\x14\xb3\x24\xa3\x34\x93"
                   73547:             "\x44\x83\x54\x73\x64\x63\x74\x53\x84\x43\x94\x33\xa4"
                   73548:             "\x23\xb4\x13\xc7\xd6\xe2\x0f\x1e\x06" }  },
                   73549:       /* --- pixel bitmap for stmary250 char#28 \boxbslash --- */
                   73550:       {  28,22578,                      /* character number, location */
                   73551:          19, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
                   73552:           { 20,   20, 3,70, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   73553:             "\xf1\x0e\x06\x04\xe7\xd4\x13\xc4\x23\xb4\x33\xa4\x43"
                   73554:             "\x94\x53\x84\x63\x74\x73\x64\x83\x54\x93\x44\xa3\x34"
                   73555:             "\xb3\x24\xc3\x14\xd7\xe4\x0f\x1e\x06" }  },
                   73556:       /* --- pixel bitmap for stmary250 char#29 \boxcircle --- */
                   73557:       {  29,23318,                      /* character number, location */
                   73558:          19, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
                   73559:           { 20,   20, 3,70, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   73560:             "\xf1\x0e\x06\x0f\x32\xe0\x22\x02\x72\x74\x56\x54\x43"
                   73561:             "\x23\x42\x0f\x12\x42\x42\x42\x02\x43\x23\x44\x56\x54"
                   73562:             "\x72\x72\x0f\x32\xe0\x22\x0f\x1e\x06" }  },
                   73563:       /* --- pixel bitmap for stmary250 char#30 \boxbox --- */
                   73564:       {  30,24051,                      /* character number, location */
                   73565:          19, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
                   73566:           { 20,   20, 3,58, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   73567:             "\xf1\x0e\x06\x0f\x22\xe0\x22\x02\x48\x44\x3a\x32\x0f"
                   73568:             "\x52\x32\x62\x32\x02\x3a\x34\x48\x42\x0f\x22\xe0\x22"
                   73569:             "\x0f\x1e\x06" }  },
                   73570:       /* --- pixel bitmap for stmary250 char#31 \boxempty --- */
                   73571:       {  31,24788,                      /* character number, location */
                   73572:          19, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
                   73573:           { 20,   20, 3,26, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   73574:             "\xf1\x0e\x06\x0f\xe2\xe0\x22\x02\xe0\x22\x0f\x1e\x06" }  },
                   73575:       /* --- pixel bitmap for stmary250 char#32 \lightning --- */
                   73576:       {  32,25697,                      /* character number, location */
                   73577:          24, 3,   -7, 3,      /* topleft row,col, and botleft row,col */
                   73578:           { 11,   31, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   73579:             "\x00\x03\x18\xe0\x00\x03\x18\xe0\x00\x03\x18\xe0\x00"
                   73580:             "\x03\x1c\x60\x00\x03\x9c\x63\x9f\xff\x3c\x43\x1c\x60"
                   73581:             "\x00\x03\x1c\x60\x80\x23\x0c\x62\xa0\x03\x0d\x70\x8f"
                   73582:             "\x07\x0c\x20\x00" }  },
                   73583:       /* --- pixel bitmap for stmary250 char#33 \merge --- */
                   73584:       {  33,26518,                      /* character number, location */
                   73585:          26, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   73586:           { 27,   26, 3,158, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   73587:             "\xf1\x82\x72\x80\xf2\x74\x54\x70\x66\x36\x60\xf1\x62"
                   73588:             "\x22\x32\x22\x60\x53\x23\x13\x23\xa2\x42\x12\x42\xa2"
                   73589:             "\x45\x42\x93\x53\x53\x40\xf1\x42\x63\x62\x40\x33\x63"
                   73590:             "\x63\x62\x73\x72\x62\x65\x62\x53\x62\x12\x63\x42\x72"
                   73591:             "\x12\x72\x42\x63\x13\x62\x33\x62\x32\x63\x22\x72\x32"
                   73592:             "\x72\x22\x63\x33\x62\x13\x62\x52\x63\x0f\x12\x72\x52"
                   73593:             "\x72" }  },
                   73594:       /* --- pixel bitmap for stmary250 char#34 \vartimes --- */
                   73595:       {  34,27257,                      /* character number, location */
                   73596:          24, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   73597:           { 15,   24, 3,88, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   73598:             "\x02\xb5\x93\x12\x92\x23\x73\x32\x72\x43\x53\x53\x33"
                   73599:             "\x72\x32\x83\x13\x92\x12\xa5\x50\xf1\x63\x60\x55\xa2"
                   73600:             "\x12\x93\x13\x82\x32\x73\x33\x53\x53\x42\x72\x33\x73"
                   73601:             "\x22\x92\x13\x95\xb2" }  },
                   73602:       /* --- pixel bitmap for stmary250 char#35 \fatsemi --- */
                   73603:       {  35,27872,                      /* character number, location */
                   73604:          19, 2,   -7, 2,      /* topleft row,col, and botleft row,col */
                   73605:           {  8,   26, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   73606:             "\x18\x7e\xe7\xc3\xc3\xe7\x7e\x18\x00\x00\x00\x18\x7e"
                   73607:             "\xe7\xc3\xc3\xe7\xfe\xf8\x60\x70\x30\x38\x18\x1c\x0c" }  },
                   73608:       /* --- pixel bitmap for stmary250 char#36 \sswarrow --- */
                   73609:       {  36,28777,                      /* character number, location */
                   73610:          24, 3,   -7, 3,      /* topleft row,col, and botleft row,col */
                   73611:           { 16,   31, 3,87, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   73612:             "\xf1\xe2\xf2\xd2\x10\xf1\xc2\x20\xb3\x20\xf1\xb2\x30"
                   73613:             "\xf1\xa2\x40\x93\x40\xf1\x92\x50\xf2\x82\x60\xf1\x72"
                   73614:             "\x70\xf2\x62\x81\x42\xa1\x32\x90\xf1\x21\x12\xa0\x33"
                   73615:             "\x14\x84\xc2\xe1\xc2" }  },
                   73616:       /* --- pixel bitmap for stmary250 char#37 \ssearrow --- */
                   73617:       {  37,29690,                      /* character number, location */
                   73618:          24, 2,   -7, 2,      /* topleft row,col, and botleft row,col */
                   73619:           { 16,   31, 3,93, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   73620:             "\xf1\x02\xe0\xf2\x12\xd0\xf1\x22\xc0\x23\xb0\xf1\x32"
                   73621:             "\xb0\xf1\x42\xa0\x43\x90\xf1\x52\x90\xf2\x62\x80\xf1"
                   73622:             "\x72\x70\xf2\x82\x60\x92\x41\x92\x31\x10\xf1\xa2\x11"
                   73623:             "\x20\x54\x13\xc4\xe2\xe0\x11\x33" }  },
                   73624:       /* --- pixel bitmap for stmary250 char#38 \curlywedgeuparrow --- */
                   73625:       {  38,30714,                      /* character number, location */
                   73626:          24, 0,   -7, 0,      /* topleft row,col, and botleft row,col */
                   73627:           { 24,   31, 3,116, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   73628:             "\xf1\xb2\xb0\xa4\xe0\x51\x12\x11\xe0\x31\x22\x21\xe2"
                   73629:             "\x32\x32\x60\xf2\xb2\xb0\xf4\xa4\xa0\x96\x90\xf2\x92"
                   73630:             "\x22\x90\x83\x23\xe0\x22\x42\xe0\x13\x43\xe2\x62\xd3"
                   73631:             "\x63\xc2\x82\xb3\x83\x93\xa3\x73\xc3\x53\xe3\x33\xe0"
                   73632:             "\x23\x13\xe0\x45\xe0\x62" }  },
                   73633:       /* --- pixel bitmap for stmary250 char#39 \curlywedgedownarrow --- */
                   73634:       {  39,31774,                      /* character number, location */
                   73635:          25, 0,   -8, 0,      /* topleft row,col, and botleft row,col */
                   73636:           { 24,   33, 3,103, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   73637:             "\xf9\xb2\xb0\xf4\xa4\xa0\x96\x90\xf2\x92\x22\x90\x83"
                   73638:             "\x23\xe0\x22\x42\xe0\x13\x43\xe2\x62\x81\x43\x63\x41"
                   73639:             "\x21\x42\x82\x41\x31\x23\x83\x21\x41\x13\xa3\x11\x44"
                   73640:             "\xc4\x34\xe4\x23\xe0\x23\x13\xe0\x4a\xa7\x72\x62\x70" }  },
                   73641:       /* --- pixel bitmap for stmary250 char#40 \fatslash --- */
                   73642:       {  40,32490,                      /* character number, location */
                   73643:          26,10,   -9,10,      /* topleft row,col, and botleft row,col */
                   73644:           { 21,   35, 3,133, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   73645:             "\xf1\xba\xa3\x52\xb2\x62\xb2\x53\xa3\x52\xb2\x62\xb2"
                   73646:             "\x53\xa3\x52\xb2\x62\xb2\x53\xa3\x52\xb2\x62\xb2\x53"
                   73647:             "\xa3\x52\xb2\x62\xb2\x53\xa3\x52\xb2\x62\xb2\x53\xa3"
                   73648:             "\x52\xb2\x62\xb2\x53\xa3\x52\xb2\x62\xb2\x53\xa3\x52"
                   73649:             "\xb2\x62\xb2\x53\xa3\x52\xb2\x62\xb2\x53\xa3\x52\xbf"
                   73650:             "\x1a\xb2" }  },
                   73651:       /* --- pixel bitmap for stmary250 char#41 \fatbslash --- */
                   73652:       {  41,33230,                      /* character number, location */
                   73653:          26, 2,   -9, 2,      /* topleft row,col, and botleft row,col */
                   73654:           { 21,   35, 3,134, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   73655:             "\xf1\x0a\xb3\x52\xc2\x53\xb2\x62\xb3\x52\xc2\x53\xb2"
                   73656:             "\x62\xb3\x52\xc2\x53\xb2\x62\xb3\x52\xc2\x53\xb2\x62"
                   73657:             "\xb3\x52\xc2\x53\xb2\x62\xb3\x52\xc2\x53\xb2\x62\xb3"
                   73658:             "\x52\xc2\x53\xb2\x62\xb3\x52\xc2\x53\xb2\x62\xb3\x52"
                   73659:             "\xc2\x53\xb2\x62\xb3\x52\xc2\x53\xb2\x62\xb3\x52\x10"
                   73660:             "\xf1\xba" }  },
                   73661:       /* --- pixel bitmap for stmary250 char#42 \lbag --- */
                   73662:       {  42,33869,                      /* character number, location */
                   73663:          26, 2,   -9, 2,      /* topleft row,col, and botleft row,col */
                   73664:           { 11,   35, 3,74, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   73665:             "\x24\x66\x43\x23\x32\x42\x31\x52\x30\xf3\x62\x30\x53"
                   73666:             "\x30\xf3\x52\x40\x43\x40\xf2\x42\x50\x33\x50\xf3\x32"
                   73667:             "\x60\x23\x60\xf5\x22\x70\x23\x92\x94\x96\x74" }  },
                   73668:       /* --- pixel bitmap for stmary250 char#43 \rbag --- */
                   73669:       {  43,34453,                      /* character number, location */
                   73670:          26, 2,   -9, 2,      /* topleft row,col, and botleft row,col */
                   73671:           { 11,   35, 3,73, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   73672:             "\x54\x66\x43\x23\x32\x42\x32\x51\xf3\x32\x60\x33\x50"
                   73673:             "\xf3\x42\x50\x43\x40\xf2\x52\x40\x53\x30\xf3\x62\x30"
                   73674:             "\x63\x20\xf5\x72\x20\x63\x82\x74\x36\x54\x74" }  },
                   73675:       /* --- pixel bitmap for stmary250 char#44 \varbigcirc --- */
                   73676:       {  44,35375,                      /* character number, location */
                   73677:          24, 2,   -7, 2,      /* topleft row,col, and botleft row,col */
                   73678:           { 31,   31, 3,133, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   73679:             "\xb9\xe0\x6d\xe0\x24\x94\xc4\xd4\x93\xe0\x33\x73\xe0"
                   73680:             "\x53\x53\xe0\x73\x42\xe0\x92\x33\xe0\x93\x10\xf1\x12"
                   73681:             "\xe0\xb2\x13\xe0\xb3\x0f\x62\xe0\xd2\x03\xe0\xb3\xf1"
                   73682:             "\x12\xe0\xb2\x10\x13\xe0\x93\x32\xe0\x92\x43\xe0\x73"
                   73683:             "\x53\xe0\x53\x73\xe0\x33\x94\xd4\xc4\x94\xe0\x2d\xe0"
                   73684:             "\x69\xba" }  },
                   73685:       /* --- pixel bitmap for stmary250 char#45 \leftrightarroweq --- */
                   73686:       {  45,36451,                      /* character number, location */
                   73687:          19, 1,    4, 1,      /* topleft row,col, and botleft row,col */
                   73688:           { 25,   15, 3,73, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   73689:             "\x61\xb1\x60\xf1\x51\xd1\x50\x41\xe0\x11\x62\xe0\x32"
                   73690:             "\x2e\x0b\x1e\x09\x32\xe0\x32\x61\xe0\x11\x40\xf1\x51"
                   73691:             "\xd1\x50\x61\xb1\xe0\xe0\x30\xf1\x1e\x09\x10" }  },
                   73692:       /* --- pixel bitmap for stmary250 char#46 \curlyveedownarrow --- */
                   73693:       {  46,37073,                      /* character number, location */
                   73694:          24, 0,   -7, 0,      /* topleft row,col, and botleft row,col */
                   73695:           { 24,   31, 3,117, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   73696:             "\x02\xe0\x65\xe0\x43\x13\xe0\x23\x33\xe3\x53\xc3\x73"
                   73697:             "\xa3\x93\x83\xb2\x82\xc3\x63\xd2\x62\xe3\x43\xe0\x12"
                   73698:             "\x42\xe0\x23\x23\x80\xf2\x92\x22\x90\x96\x90\xf4\xa4"
                   73699:             "\xa0\xf2\xb2\xb0\x62\x32\x32\xe1\x22\x21\xe0\x31\x12"
                   73700:             "\x11\xe0\x54\xa0\xf1\xb2\xb4" }  },
                   73701:       /* --- pixel bitmap for stmary250 char#47 \curlyveeuparrow --- */
                   73702:       {  47,37753,                      /* character number, location */
                   73703:          25, 0,   -8, 0,      /* topleft row,col, and botleft row,col */
                   73704:           { 24,   33, 3,103, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   73705:             "\x72\x62\x77\xaa\xe0\x43\x13\xe0\x23\x24\xe4\x34\xc4"
                   73706:             "\x41\x13\xa3\x11\x41\x23\x83\x21\x31\x42\x82\x41\x21"
                   73707:             "\x43\x63\x41\x82\x62\xe3\x43\xe0\x12\x42\xe0\x23\x23"
                   73708:             "\x80\xf2\x92\x22\x90\x96\x90\xf4\xa4\xa0\xf9\xb2\xb2" }  },
                   73709:       /* --- pixel bitmap for stmary250 char#48 \nnwarrow --- */
                   73710:       {  48,38398,                      /* character number, location */
                   73711:          24, 3,   -7, 3,      /* topleft row,col, and botleft row,col */
                   73712:           { 16,   31, 3,92, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   73713:             "\x31\xe0\x12\xe4\xc3\x14\x50\xf1\x21\x12\xa0\x11\x32"
                   73714:             "\x91\x42\x90\xf2\x62\x80\xf1\x72\x70\xf2\x82\x60\xf1"
                   73715:             "\x92\x50\x93\x40\xf1\xa2\x40\xf1\xb2\x30\xb3\x20\xf1"
                   73716:             "\xc2\x20\xf2\xd2\x10\xf1\xe2" }  },
                   73717:       /* --- pixel bitmap for stmary250 char#49 \nnearrow --- */
                   73718:       {  49,38999,                      /* character number, location */
                   73719:          24, 2,   -7, 2,      /* topleft row,col, and botleft row,col */
                   73720:           { 16,   31, 3,87, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   73721:             "\xc1\xe2\xc4\x84\x13\x30\xf1\xa2\x11\x20\x92\x31\xa2"
                   73722:             "\x41\xf2\x82\x60\xf1\x72\x70\xf2\x62\x80\xf1\x52\x90"
                   73723:             "\x43\x90\xf1\x42\xa0\xf1\x32\xb0\x23\xb0\xf1\x22\xc0"
                   73724:             "\xf2\x12\xdf\x12\xe0" }  },
                   73725:       /* --- pixel bitmap for stmary250 char#50 \leftslice --- */
                   73726:       {  50,39788,                      /* character number, location */
                   73727:          17, 2,    1, 2,      /* topleft row,col, and botleft row,col */
                   73728:           { 23,   16, 3,65, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   73729:             "\xe0\x33\xe0\x37\xe5\x23\xa5\x62\x85\x83\x54\xc2\x25"
                   73730:             "\xe2\x0f\x15\xe0\x22\x25\xe2\x54\xc2\x75\x83\x95\x62"
                   73731:             "\xd5\x23\xe0\x17\xe0\x53\x32" }  },
                   73732:       /* --- pixel bitmap for stmary250 char#51 \rightslice --- */
                   73733:       {  51,40562,                      /* character number, location */
                   73734:          17, 2,    1, 2,      /* topleft row,col, and botleft row,col */
                   73735:           { 23,   16, 3,65, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   73736:             "\x33\xe0\x57\xe0\x13\x25\xd2\x65\x93\x85\x72\xc4\x52"
                   73737:             "\xe5\x2f\x12\xe0\x25\x02\xe5\x22\xc4\x53\x85\x82\x65"
                   73738:             "\xa3\x25\xe7\xe0\x33\xe0\x32" }  },
                   73739:       /* --- pixel bitmap for stmary250 char#52 \varolessthan --- */
                   73740:       {  52,41332,                      /* character number, location */
                   73741:          20, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
                   73742:           { 22,   22, 3,89, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   73743:             "\x86\xea\xa4\x64\x73\xa3\x53\x96\x33\x85\x13\x22\x65"
                   73744:             "\x52\x13\x45\x75\x34\xb9\xd2\x0f\x15\xe0\x12\x07\xd4"
                   73745:             "\x34\xb5\x45\x73\x12\x65\x52\x23\x85\x13\x33\x96\x53"
                   73746:             "\xa3\x74\x64\xaa\xe6\x81" }  },
                   73747:       /* --- pixel bitmap for stmary250 char#53 \varogreaterthan --- */
                   73748:       {  53,42145,                      /* character number, location */
                   73749:          20, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
                   73750:           { 22,   22, 3,89, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   73751:             "\x86\xea\xa4\x64\x73\xa3\x56\x93\x33\x15\x83\x22\x55"
                   73752:             "\x62\x13\x75\x45\xb4\x34\xd7\x0f\x12\xe0\x15\x02\xd9"
                   73753:             "\xb4\x35\x75\x43\x12\x55\x62\x23\x15\x83\x36\x93\x53"
                   73754:             "\xa3\x74\x64\xaa\xe6\x81" }  },
                   73755:       /* --- pixel bitmap for stmary250 char#54 \varovee --- */
                   73756:       {  54,42950,                      /* character number, location */
                   73757:          20, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
                   73758:           { 22,   22, 3,117, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   73759:             "\x86\xea\xa4\x64\x73\xa3\x53\xc3\x35\xa5\x22\x12\xa2"
                   73760:             "\x12\x13\x13\x83\x13\x0f\x12\x32\x82\x32\x02\x33\x63"
                   73761:             "\x34\x42\x62\x44\x43\x43\x44\x52\x42\x55\x43\x23\x43"
                   73762:             "\x12\x52\x22\x52\x23\x42\x22\x43\x33\x36\x33\x53\x34"
                   73763:             "\x33\x74\x14\x14\xaa\xe6\x84" }  },
                   73764:       /* --- pixel bitmap for stmary250 char#55 \varowedge --- */
                   73765:       {  55,43791,                      /* character number, location */
                   73766:          20, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
                   73767:           { 22,   22, 3,117, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   73768:             "\x86\xea\xa4\x14\x14\x73\x34\x33\x53\x36\x33\x33\x42"
                   73769:             "\x22\x43\x22\x52\x22\x52\x13\x43\x23\x45\x52\x42\x54"
                   73770:             "\x43\x43\x44\x42\x62\x44\x33\x63\x32\x0f\x12\x32\x82"
                   73771:             "\x32\x03\x13\x83\x13\x12\x12\xa2\x12\x25\xa5\x33\xc3"
                   73772:             "\x53\xa3\x74\x64\xaa\xe6\x84" }  },
                   73773:       /* --- pixel bitmap for stmary250 char#56 \talloblong --- */
                   73774:       {  56,44474,                      /* character number, location */
                   73775:          26, 3,   -8, 3,      /* topleft row,col, and botleft row,col */
                   73776:           { 11,   34, 3,20, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   73777:             "\xf1\x0b\x0f\xe2\x72\x0f\xe2\x72\x0f\x1b" }  },
                   73778:       /* --- pixel bitmap for stmary250 char#57 \interleave --- */
                   73779:       {  57,45262,                      /* character number, location */
                   73780:          26, 3,   -8, 3,      /* topleft row,col, and botleft row,col */
                   73781:           { 18,   34, 2, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   73782:             "\xff\x21\x00\x02\x06\x02\x06\x02" }  },
                   73783:       /* --- pixel bitmap for stmary250 char#58 \obar --- */
                   73784:       {  58,46192,                      /* character number, location */
                   73785:          20, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
                   73786:           { 23,   22, 3,81, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   73787:             "\x87\xe2\x31\x32\xa2\x51\x52\x71\x71\x71\x51\x81\x81"
                   73788:             "\x20\xf2\x11\x91\x91\x1f\x51\xa1\xa1\xf2\x11\x91\x91"
                   73789:             "\x10\x21\x81\x81\x51\x71\x71\x72\x51\x52\xa2\x31\x32"
                   73790:             "\xe7\x83" }  },
                   73791:       /* --- pixel bitmap for stmary250 char#59 \oslash --- */
                   73792:       {  59,47048,                      /* character number, location */
                   73793:          20, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
                   73794:           { 23,   22, 3,115, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   73795:             "\x87\xe2\x72\xa2\xb2\x71\xe0\x11\x51\x11\xe0\x11\x31"
                   73796:             "\x31\xe0\x11\x21\x41\xe1\x21\x51\xd1\x11\x71\xd2\x81"
                   73797:             "\xc2\x91\xb2\xa2\x92\xc1\x82\xd1\x71\x11\xd1\x51\x21"
                   73798:             "\xe1\x41\x21\xe0\x11\x31\x31\xe0\x11\x11\x51\xe0\x11"
                   73799:             "\x72\xb2\xa2\x72\xe7\x86" }  },
                   73800:       /* --- pixel bitmap for stmary250 char#60 \olessthan --- */
                   73801:       {  60,47891,                      /* character number, location */
                   73802:          20, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
                   73803:           { 23,   22, 3,109, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   73804:             "\x87\xe2\x72\xa2\xb2\x71\xe2\x51\xd2\x21\x31\xb3\x51"
                   73805:             "\x21\x92\x81\x21\x63\xa1\x11\x52\xe2\x23\xe0\x21\x0f"
                   73806:             "\x13\xe0\x51\x01\x23\xe0\x22\x52\xe1\x11\x63\xa1\x21"
                   73807:             "\x92\x81\x21\xb3\x51\x31\xd2\x21\x51\xe2\x72\xb2\xa2"
                   73808:             "\x72\xe7\x82" }  },
                   73809:       /* --- pixel bitmap for stmary250 char#61 \ogreaterthan --- */
                   73810:       {  61,48733,                      /* character number, location */
                   73811:          20, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
                   73812:           { 23,   22, 3,109, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   73813:             "\x87\xe2\x72\xa2\xb2\x72\xe1\x51\x22\xd1\x31\x53\xb1"
                   73814:             "\x21\x82\x91\x21\xa3\x61\x11\xe2\x52\xe0\x23\x21\x0f"
                   73815:             "\x11\xe0\x53\x01\xe0\x23\x22\xe2\x51\x11\xa3\x61\x21"
                   73816:             "\x82\x91\x21\x53\xb1\x31\x22\xd1\x52\xe1\x72\xb2\xa2"
                   73817:             "\x72\xe7\x82" }  },
                   73818:       /* --- pixel bitmap for stmary250 char#62 \ovee --- */
                   73819:       {  62,49567,                      /* character number, location */
                   73820:          20, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
                   73821:           { 23,   22, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   73822:             "\x00\x7f\x00\x60\xc0\x00\x0c\x80\x01\x01\x00\x41\x01"
                   73823:             "\x40\x91\x00\x20\x49\x00\x90\x44\x00\x44\x21\x00\xc2"
                   73824:             "\x20\x80\x60\x10\x40\x30\x10\x10\x18\x08\x08\x0c\x08"
                   73825:             "\x02\x0a\x04\x81\x04\x82\x40\x02\x22\x20\x02\x11\x08"
                   73826:             "\x02\x05\x02\x86\xc2\x00\x8c\x18\x00\xf8\x03\x00" }  },
                   73827:       /* --- pixel bitmap for stmary250 char#63 \owedge --- */
                   73828:       {  63,50445,                      /* character number, location */
                   73829:          20, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
                   73830:           { 23,   22, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   73831:             "\x00\x7f\x00\x60\xc4\x00\x0c\x85\x01\x81\x02\x41\x20"
                   73832:             "\x02\x11\x10\x01\x09\x04\x81\x04\x82\x40\x01\x41\xc0"
                   73833:             "\x40\x40\x60\x20\x20\x30\x08\x20\x18\x04\x10\x0c\x01"
                   73834:             "\x10\x8a\x00\x88\x24\x00\x48\x12\x00\x24\x0a\x00\x0a"
                   73835:             "\x02\x00\x02\x06\xc0\x00\x0c\x18\x00\xf8\x03\x00" }  },
                   73836:       /* --- pixel bitmap for stmary250 char#64 \oblong --- */
                   73837:       {  64,51211,                      /* character number, location */
                   73838:          21, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   73839:           { 19,   21, 3,28, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   73840:             "\xf1\x0e\x05\x0f\xe2\xe0\x12\x0f\x12\xe0\x12\x0f\x1e"
                   73841:             "\x05" }  },
                   73842:       /* --- pixel bitmap for stmary250 char#65 \inplus --- */
                   73843:       {  65,51960,                      /* character number, location */
                   73844:          20, 3,   -2, 3,      /* topleft row,col, and botleft row,col */
                   73845:           { 17,   22, 3,72, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   73846:             "\x89\x6b\x44\xc3\xd3\xd3\xd0\xf1\x12\x52\x73\x52\x72"
                   73847:             "\x62\x7f\x1e\x03\x02\x62\x73\x52\x70\xf1\x12\x52\x70"
                   73848:             "\x13\xe0\x13\xe0\x13\xe0\x14\xe0\x1b\x89" }  },
                   73849:       /* --- pixel bitmap for stmary250 char#66 \niplus --- */
                   73850:       {  66,52702,                      /* character number, location */
                   73851:          20, 3,   -2, 3,      /* topleft row,col, and botleft row,col */
                   73852:           { 17,   22, 3,73, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   73853:             "\x09\x8b\xe0\x14\xe0\x13\xe0\x13\xe0\x13\x10\xf1\x72"
                   73854:             "\x52\x10\x72\x53\x72\x62\x0f\x1e\x03\x72\x62\x72\x53"
                   73855:             "\xf1\x72\x52\x10\xd3\xd3\xd3\xc4\x4b\x69\x81" }  },
                   73856:       /* --- pixel bitmap for stmary250 char#67 \nplus --- */
                   73857:       {  67,53448,                      /* character number, location */
                   73858:          21, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   73859:           { 19,   22, 3,52, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   73860:             "\x67\xab\x64\x74\x33\xb3\x13\xd2\x12\xe3\x0f\x42\x72"
                   73861:             "\x62\x0f\x12\x2b\x22\x0f\x32\x72\x62\x0f\x42\xe0\x12" }  },
                   73862:       /* --- pixel bitmap for stmary250 char#68 \subsetplus --- */
                   73863:       {  68,54298,                      /* character number, location */
                   73864:          20, 3,   -2, 3,      /* topleft row,col, and botleft row,col */
                   73865:           { 21,   22, 3,84, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   73866:             "\x8d\x6e\x01\x44\xe0\x23\xe0\x33\xe0\x33\xe0\x30\xf1"
                   73867:             "\x12\x82\x83\x82\x82\x92\x8f\x12\x5a\x42\x92\x83\x82"
                   73868:             "\x80\xf1\x12\x82\x80\x13\xe0\x53\xe0\x53\xe0\x54\xe0"
                   73869:             "\x5e\x01\x8d" }  },
                   73870:       /* --- pixel bitmap for stmary250 char#69 \supsetplus --- */
                   73871:       {  69,55108,                      /* character number, location */
                   73872:          20, 3,   -2, 3,      /* topleft row,col, and botleft row,col */
                   73873:           { 21,   22, 3,85, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   73874:             "\x0d\x8e\x01\xe0\x54\xe0\x53\xe0\x53\xe0\x53\x10\xf1"
                   73875:             "\x82\x82\x10\x82\x83\x82\x92\xf1\x4a\x52\x82\x92\x82"
                   73876:             "\x83\xf1\x82\x82\x10\xe0\x33\xe0\x33\xe0\x33\xe0\x24"
                   73877:             "\x4e\x01\x6d\x81" }  },
                   73878:       /* --- pixel bitmap for stmary250 char#70 \subsetpluseq --- */
                   73879:       {  70,55936,                      /* character number, location */
                   73880:          22, 3,   -8, 3,      /* topleft row,col, and botleft row,col */
                   73881:           { 21,   30, 3,96, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   73882:             "\x8d\x6e\x01\x44\xe0\x23\xe0\x33\xe0\x33\xe0\x30\xf1"
                   73883:             "\x12\x82\x83\x82\x82\x92\x8f\x12\x5a\x42\x92\x83\x82"
                   73884:             "\x80\xf1\x12\x82\x80\x13\xe0\x53\xe0\x53\xe0\x54\xe0"
                   73885:             "\x5e\x01\x8d\xf5\xe0\x70\xf1\x1e\x06" }  },
                   73886:       /* --- pixel bitmap for stmary250 char#71 \supsetpluseq --- */
                   73887:       {  71,56772,                      /* character number, location */
                   73888:          22, 3,   -8, 3,      /* topleft row,col, and botleft row,col */
                   73889:           { 21,   30, 3,97, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   73890:             "\x0d\x8e\x01\xe0\x54\xe0\x53\xe0\x53\xe0\x53\x10\xf1"
                   73891:             "\x82\x82\x10\x82\x83\x82\x92\xf1\x4a\x52\x82\x92\x82"
                   73892:             "\x83\xf1\x82\x82\x10\xe0\x33\xe0\x33\xe0\x33\xe0\x24"
                   73893:             "\x4e\x01\x6d\x80\xf5\xe0\x7f\x1e\x06\x10" }  },
                   73894:       /* --- pixel bitmap for stmary250 char#72 \Lbag --- */
                   73895:       {  72,57571,                      /* character number, location */
                   73896:          26, 2,   -9, 2,      /* topleft row,col, and botleft row,col */
                   73897:           { 11,   35, 3,84, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   73898:             "\x24\x61\x41\x42\x41\x4f\x13\x41\x30\x71\x30\xf3\x61"
                   73899:             "\x40\x52\x91\x50\xf1\x42\x50\x41\x60\xf1\x32\x60\x23"
                   73900:             "\x82\x70\xf1\x13\x70\x12\x8f\x63\x80\xf1\x13\x70\x23"
                   73901:             "\x93\xa3\xa4" }  },
                   73902:       /* --- pixel bitmap for stmary250 char#73 \Rbag --- */
                   73903:       {  73,58097,                      /* character number, location */
                   73904:          26, 2,   -9, 2,      /* topleft row,col, and botleft row,col */
                   73905:           { 11,   35, 3,83, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   73906:             "\x54\x61\x41\x51\x42\xf1\x31\x43\x31\x70\xf3\x41\x60"
                   73907:             "\x42\xa1\x50\xf1\x52\x40\x61\x40\xf1\x62\x30\x63\x92"
                   73908:             "\x20\xf1\x73\x10\x82\x10\xf6\x83\xf1\x73\x10\x63\x73"
                   73909:             "\x63\x54\x74" }  },
                   73910:       /* --- pixel bitmap for stmary250 char#74 \llbracket --- */
                   73911:       {  74,58980,                      /* character number, location */
                   73912:          26, 3,   -9, 3,      /* topleft row,col, and botleft row,col */
                   73913:           { 11,   35, 3,24, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   73914:             "\xf1\x0b\x0f\xe2\x22\x5f\xe2\x22\x52\x22\x5f\x1b" }  },
                   73915:       /* --- pixel bitmap for stmary250 char#75 \rrbracket --- */
                   73916:       {  75,59918,                      /* character number, location */
                   73917:          26, 1,   -9, 1,      /* topleft row,col, and botleft row,col */
                   73918:           { 10,   35, 3,24, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   73919:             "\xf1\x0a\xfe\x42\x22\xfe\x42\x22\x42\x22\x0f\x1a" }  },
                   73920:       /* --- pixel bitmap for stmary250 char#76 \llparenthesis --- */
                   73921:       {  76,60714,                      /* character number, location */
                   73922:          26, 3,   -8, 3,      /* topleft row,col, and botleft row,col */
                   73923:           {  8,   34, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   73924:             "\x80\xc0\xe0\xd0\xd8\xc8\xcc\xc4\xc6\xc6\xc2\xc2\xc3"
                   73925:             "\xc3\xc3\xc3\xc3\xc3\xc3\xc3\xc3\xc3\xc2\xc2\xc6\xc6"
                   73926:             "\xc4\xcc\xc8\xd8\xd0\xe0\xc0\x80" }  },
                   73927:       /* --- pixel bitmap for stmary250 char#77 \rrparenthesis --- */
                   73928:       {  77,61503,                      /* character number, location */
                   73929:          26, 2,   -8, 2,      /* topleft row,col, and botleft row,col */
                   73930:           {  8,   34, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   73931:             "\x01\x03\x07\x0b\x1b\x13\x33\x23\x63\x63\x43\x43\xc3"
                   73932:             "\xc3\xc3\xc3\xc3\xc3\xc3\xc3\xc3\xc3\x43\x43\x63\x63"
                   73933:             "\x23\x33\x13\x1b\x0b\x07\x03\x01" }  },
                   73934:       /* --- pixel bitmap for stmary250 char#78 \binampersand --- */
                   73935:       {  78,62348,                      /* character number, location */
                   73936:          21, 2,   -3, 2,      /* topleft row,col, and botleft row,col */
                   73937:           { 23,   24, 3,109, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   73938:             "\x94\xe0\x38\xe3\x43\xc3\x62\x70\xf1\x52\x72\x70\x53"
                   73939:             "\x62\xd2\x53\xd3\x33\xe0\x17\xe0\x25\xe0\x27\x92\x34"
                   73940:             "\x34\x72\x23\x73\x53\x13\x93\x33\x22\xb3\x22\x23\xc6"
                   73941:             "\x22\xe4\x32\xe5\x22\xd3\x13\x13\xa4\x33\x13\x65\x62"
                   73942:             "\x2b\xe6\xd0" }  },
                   73943:       /* --- pixel bitmap for stmary250 char#79 \bindnasrepma --- */
                   73944:       {  79,63077,                      /* character number, location */
                   73945:          20, 2,   -4, 2,      /* topleft row,col, and botleft row,col */
                   73946:           { 23,   24, 3,109, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   73947:             "\xd6\xeb\x22\x65\x63\x13\x34\xa3\x13\x13\xd2\x25\xe2"
                   73948:             "\x34\xe2\x26\xc3\x22\x23\xb2\x23\x33\x93\x13\x53\x73"
                   73949:             "\x22\x74\x34\x32\x97\xe0\x25\xe0\x27\xe0\x13\x33\xd3"
                   73950:             "\x52\xd2\x63\x50\xf1\x72\x72\x50\x72\x63\xc3\x43\xe8"
                   73951:             "\xe0\x34\x90" }  },
                   73952:       /* --- pixel bitmap for stmary250 char#80 \trianglelefteqslant --- */
                   73953:       {  80,63881,                      /* character number, location */
                   73954:          22, 3,   -8, 3,      /* topleft row,col, and botleft row,col */
                   73955:           { 21,   30, 3,116, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   73956:             "\xe0\x52\xe0\x34\xe0\x16\xd4\x22\xb4\x42\xa3\x62\x84"
                   73957:             "\x72\x64\x92\x44\xb2\x24\xd2\x0f\x14\xe0\x12\x24\xd2"
                   73958:             "\x44\xb2\x64\x92\x83\x82\x94\x62\xb4\x44\xb4\x26\xb6"
                   73959:             "\x24\xb4\x44\xb2\x64\xe0\x53\xe0\x54\xe0\x54\xe0\x54"
                   73960:             "\xe0\x54\xe0\x54\xe0\x52" }  },
                   73961:       /* --- pixel bitmap for stmary250 char#81 \trianglerighteqslant --- */
                   73962:       {  81,64690,                      /* character number, location */
                   73963:          22, 3,   -8, 3,      /* topleft row,col, and botleft row,col */
                   73964:           { 21,   30, 3,121, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   73965:             "\x02\xe0\x54\xe0\x36\xe0\x12\x24\xd2\x44\xb2\x63\xa2"
                   73966:             "\x74\x82\x94\x62\xb4\x42\xd4\x2f\x12\xe0\x14\x02\xd4"
                   73967:             "\x22\xb4\x42\x94\x62\x83\x82\x64\x92\x44\xb2\x24\xb8"
                   73968:             "\xb8\xb4\x22\xb4\xe0\x14\xe0\x23\xe0\x24\xe0\x14\xe0"
                   73969:             "\x14\xe0\x14\xe0\x14\xe0\x32\xe0\x50" }  },
                   73970:       /* --- pixel bitmap for stmary250 char#82 \ntrianglelefteqslant --- */
                   73971:       {  82,65545,                      /* character number, location */
                   73972:          28, 3,  -10, 3,      /* topleft row,col, and botleft row,col */
                   73973:           { 21,   38, 3,165, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   73974:             "\xf1\xe0\x32\x20\xe0\x23\xe0\x42\xe0\x43\xe0\x42\xe0"
                   73975:             "\x52\x22\xf1\xe7\xd4\x22\xb4\x42\x96\x42\x74\x12\x52"
                   73976:             "\x54\x32\x52\x34\x43\x52\x14\x62\x65\x73\x66\x62\x72"
                   73977:             "\x24\x42\x72\x44\x13\x72\x65\x82\x84\x72\x86\x52\x73"
                   73978:             "\x24\x34\x52\x54\x16\x32\x75\x27\x93\x44\xb2\x55\xe0"
                   73979:             "\x22\x14\xd3\x34\xb2\x64\x92\x84\x63\xa4\x42\xd3\x23"
                   73980:             "\xe2\xf1\x22\xe0\x30" }  },
                   73981:       /* --- pixel bitmap for stmary250 char#83 \ntrianglerighteqslant --- */
                   73982:       {  83,66457,                      /* character number, location */
                   73983:          28, 3,  -10, 3,      /* topleft row,col, and botleft row,col */
                   73984:           { 21,   38, 3,163, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   73985:             "\xf1\xe0\x32\x20\xe0\x23\xe0\x42\xe0\x43\xe0\x42\x42"
                   73986:             "\xd2\x44\xa3\x46\x82\x52\x24\x53\x52\x44\x32\x62\x67"
                   73987:             "\x62\x84\x72\xa4\x52\x97\x32\x92\x34\x12\x83\x55\x82"
                   73988:             "\x56\x82\x34\x22\x73\x14\x42\x76\x62\x65\x82\x54\xa2"
                   73989:             "\x35\xb2\x16\xa7\x22\x87\x33\x64\x22\x42\x54\x93\x34"
                   73990:             "\xb2\x24\xc7\xe5\xe0\x14\xe0\x15\xe0\x1f\x15\xe0\x20"
                   73991:             "\xf1\x22\xe0\x30" }  },
                   73992:       /* --- pixel bitmap for stmary250 char#84 \llfloor --- */
                   73993:       {  84,67207,                      /* character number, location */
                   73994:          26, 1,   -8, 1,      /* topleft row,col, and botleft row,col */
                   73995:           { 18,   34, 2,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   73996:             "\xff\x1f\x00\x02\x06\x02\x08\xff\x01\x12" }  },
                   73997:       /* --- pixel bitmap for stmary250 char#85 \rrfloor --- */
                   73998:       {  85,67945,                      /* character number, location */
                   73999:          26, 0,   -8, 0,      /* topleft row,col, and botleft row,col */
                   74000:           { 18,   34, 2,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   74001:             "\xff\x1f\x08\x02\x06\x02\x00\xff\x01\x12" }  },
                   74002:       /* --- pixel bitmap for stmary250 char#86 \llceil --- */
                   74003:       {  86,68669,                      /* character number, location */
                   74004:          27, 1,   -9, 1,      /* topleft row,col, and botleft row,col */
                   74005:           { 18,   36, 2,11, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   74006:             "\xff\x01\x00\x12\x00\xff\x21\x02\x06\x02\x08" }  },
                   74007:       /* --- pixel bitmap for stmary250 char#87 \rrceil --- */
                   74008:       {  87,69402,                      /* character number, location */
                   74009:          27, 0,   -9, 0,      /* topleft row,col, and botleft row,col */
                   74010:           { 18,   36, 2,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   74011:             "\xff\x01\x00\x12\xff\x21\x08\x02\x06\x02" }  },
                   74012:       /* --- pixel bitmap for stmary250 char#88 \arrownot --- */
                   74013:       {  88,69867,                      /* character number, location */
                   74014:          16,13,    2,13,      /* topleft row,col, and botleft row,col */
                   74015:           {  9,   14, 3,29, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   74016:             "\x81\x72\x63\x62\x63\x53\x53\x62\x63\x53\x62\x63\x62"
                   74017:             "\x71\x84" }  },
                   74018:       /* --- pixel bitmap for stmary250 char#89 \Arrownot --- */
                   74019:       {  89,70227,                      /* character number, location */
                   74020:          20,14,   -2,14,      /* topleft row,col, and botleft row,col */
                   74021:           {  7,   22, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   74022:             "\x40\x30\x18\x0c\x87\xc1\x70\x18\x0c\x87\xc1\x60\x38"
                   74023:             "\x0c\x86\xc3\x60\x30\x08\x00" }  },
                   74024:       /* --- pixel bitmap for stmary250 char#90 \Mapstochar --- */
                   74025:       {  90,70626,                      /* character number, location */
                   74026:          20, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
                   74027:           {  3,   22, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   74028:             "\xdb\xb6\xfd\xdb\xb6\xfd\xdb\xb6\x01" }  },
                   74029:       /* --- pixel bitmap for stmary250 char#91 \mapsfromchar --- */
                   74030:       {  91,70937,                      /* character number, location */
                   74031:          16,-5,    2,-5,      /* topleft row,col, and botleft row,col */
                   74032:           {  3,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   74033:             "\xb6\x6d\xff\xb6\x6d\x03" }  },
                   74034:       /* --- pixel bitmap for stmary250 char#92 \Mapsfromchar --- */
                   74035:       {  92,71251,                      /* character number, location */
                   74036:          20,-5,   -2,-5,      /* topleft row,col, and botleft row,col */
                   74037:           {  3,   22, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   74038:             "\xb6\x6d\xff\xb6\x6d\xff\xb6\x6d\x03" }  },
                   74039:       /* --- pixel bitmap for stmary250 char#93 \leftrightarrowtriangle --- */
                   74040:       {  93,72118,                      /* character number, location */
                   74041:          14, 2,    3, 2,      /* topleft row,col, and botleft row,col */
                   74042:           { 31,   11, 3,63, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   74043:             "\x72\xd2\xc4\xd4\x86\xd6\x53\x22\xd2\x23\x24\x3e\x03"
                   74044:             "\x37\x4e\x03\x43\x14\x22\xd2\x24\x43\x12\xd2\x13\x75"
                   74045:             "\xd5\xa3\xd3\xd2\xd2\x77" }  },
                   74046:       /* --- pixel bitmap for stmary250 char#94 \leftarrowtriangle --- */
                   74047:       {  94,72975,                      /* character number, location */
                   74048:          14, 2,    3, 2,      /* topleft row,col, and botleft row,col */
                   74049:           { 31,   11, 3,55, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   74050:             "\x72\xe0\xd4\xe0\xb6\xe0\xa3\x22\xe0\x84\x3e\x0d\x4e"
                   74051:             "\x0a\x14\x22\xe0\xb3\x12\xe0\xc5\xe0\xe3\xe0\xe0\x12"
                   74052:             "\xe0\x83" }  },
                   74053:       /* --- pixel bitmap for stmary250 char#95 \rightarrowtriangle --- */
                   74054:       {  95,73805,                      /* character number, location */
                   74055:          14, 2,    3, 2,      /* topleft row,col, and botleft row,col */
                   74056:           { 31,   11, 3,55, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   74057:             "\xe0\x82\xe0\xe0\x14\xe0\xd6\xe0\xb2\x23\x2e\x0a\x3e"
                   74058:             "\x0e\x43\xe0\x82\x24\xe0\x92\x13\xe0\xb5\xe0\xc3\xe0"
                   74059:             "\xe2\x73" }  },
                   74060:       /* --- pixel bitmap for stmary250 char#96 \bigtriangledown --- */
                   74061:       {  96,74521,                      /* character number, location */
                   74062:           0, 2,  -35, 2,      /* topleft row,col, and botleft row,col */
                   74063:           { 25,   35, 3,163, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   74064:             "\xf1\x0e\x0b\x03\xe0\x53\xf1\x12\xe0\x52\x10\x13\xe0"
                   74065:             "\x33\x10\xf1\x22\xe0\x32\x20\x23\xe0\x13\x20\xf1\x32"
                   74066:             "\xe0\x12\x30\x33\xd3\x72\xd2\x83\xb3\x40\xf1\x52\xb2"
                   74067:             "\x50\x53\x93\x50\xf1\x62\x92\x60\x63\x73\x60\xf1\x72"
                   74068:             "\x72\x70\x73\x53\x70\xf1\x82\x52\x80\x83\x33\x80\xf1"
                   74069:             "\x92\x32\x90\x93\x13\x90\xf1\xa2\x12\xa0\xa5\xa0\xf1"
                   74070:             "\xb3\xb0\xc2\xb0" }  },
                   74071:       /* --- pixel bitmap for stmary250 char#97 \bigtriangleup --- */
                   74072:       {  97,75352,                      /* character number, location */
                   74073:           0, 2,  -35, 2,      /* topleft row,col, and botleft row,col */
                   74074:           { 25,   35, 3,162, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   74075:             "\xc2\xb0\xf1\xb3\xb0\xa5\xa0\xf1\xa2\x12\xa0\x93\x13"
                   74076:             "\x90\xf1\x92\x32\x90\x83\x33\x80\xf1\x82\x52\x80\x73"
                   74077:             "\x53\x70\xf1\x72\x72\x70\x63\x73\x60\xf1\x62\x92\x60"
                   74078:             "\x53\x93\x50\xf1\x52\xb2\x50\x43\xb3\x82\xd2\x73\xd3"
                   74079:             "\x30\xf1\x32\xe0\x12\x30\x23\xe0\x13\x20\xf1\x22\xe0"
                   74080:             "\x32\x20\x13\xe0\x33\x10\xf1\x12\xe0\x52\x13\xe0\x53"
                   74081:             "\x0f\x1e\x0b" }  },
                   74082:       /* --- pixel bitmap for stmary250 char#98 \bigcurlyvee --- */
                   74083:       {  98,76181,                      /* character number, location */
                   74084:           0, 2,  -35, 2,      /* topleft row,col, and botleft row,col */
                   74085:           { 25,   35, 3,91, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   74086:             "\x02\xe0\x76\xe0\x34\x23\xe0\x13\x53\xd3\x73\xb3\x93"
                   74087:             "\x93\xb2\x92\xc3\x73\xd3\x53\x70\xf1\x82\x52\x80\x83"
                   74088:             "\x33\x80\xf1\x92\x32\x90\x93\x13\x90\xf2\xa2\x12\xa0"
                   74089:             "\xa5\xa0\xfe\xb3\xb0\xc2\xb0" }  },
                   74090:       /* --- pixel bitmap for stmary250 char#99 \bigcurlywedge --- */
                   74091:       {  99,76990,                      /* character number, location */
                   74092:           0, 2,  -35, 2,      /* topleft row,col, and botleft row,col */
                   74093:           { 25,   35, 3,90, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   74094:             "\xc2\xb0\xfe\xb3\xb0\xa5\xa0\xf2\xa2\x12\xa0\x93\x13"
                   74095:             "\x90\xf1\x92\x32\x90\x83\x33\x80\xf1\x82\x52\x80\x73"
                   74096:             "\x53\xd3\x73\xc2\x92\xb3\x93\x93\xb3\x73\xd3\x53\xe0"
                   74097:             "\x13\x24\xe0\x36\xe0\x72" }  },
                   74098:       /* --- pixel bitmap for stmary250 char#100 \bigsqcap --- */
                   74099:       { 100,77827,                      /* character number, location */
                   74100:           0, 2,  -35, 2,      /* topleft row,col, and botleft row,col */
                   74101:           { 25,   35, 2,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   74102:             "\xff\x01\x00\x19\x00\xff\x20\x02\x15\x02" }  },
                   74103:       /* --- pixel bitmap for stmary250 char#101 \bigbox --- */
                   74104:       { 101,78674,                      /* character number, location */
                   74105:           0, 2,  -35, 2,      /* topleft row,col, and botleft row,col */
                   74106:           { 25,   35, 2,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   74107:             "\xff\x01\x00\x19\x00\xff\x1e\x02\x15\x02\x00\xff\x01"
                   74108:             "\x19" }  },
                   74109:       /* --- pixel bitmap for stmary250 char#102 \bigparallel --- */
                   74110:       { 102,79347,                      /* character number, location */
                   74111:           0, 2,  -35, 2,      /* topleft row,col, and botleft row,col */
                   74112:           { 11,   35, 2, 6, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   74113:             "\xff\x22\x00\x02\x07\x02" }  },
                   74114:       /* --- pixel bitmap for stmary250 char#103 \biginterleave --- */
                   74115:       { 103,80177,                      /* character number, location */
                   74116:           0, 2,  -35, 2,      /* topleft row,col, and botleft row,col */
                   74117:           { 20,   35, 2, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   74118:             "\xff\x22\x00\x02\x07\x02\x07\x02" }  },
                   74119:       /* --- pixel bitmap for stmary250 char#104 (noname) --- */
                   74120:       { 104,81223,                      /* character number, location */
                   74121:           0, 2,  -48, 2,      /* topleft row,col, and botleft row,col */
                   74122:           { 34,   48, 3,245, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   74123:             "\xf1\x0e\x0e\x06\x03\xe0\xe3\xf1\x12\xe0\xe2\x10\x13"
                   74124:             "\xe0\xc3\x10\xf1\x22\xe0\xc2\x20\x23\xe0\xa3\x20\xf1"
                   74125:             "\x32\xe0\xa2\x30\x33\xe0\x83\x72\xe0\x82\x83\xe0\x63"
                   74126:             "\x40\xf1\x52\xe0\x62\x50\x53\xe0\x43\x50\xf1\x62\xe0"
                   74127:             "\x42\x60\x63\xe0\x23\x60\xf1\x72\xe0\x22\x70\x73\xe3"
                   74128:             "\x70\xf1\x82\xe2\x80\x83\xc3\x80\xf1\x92\xc2\x90\x93"
                   74129:             "\xa3\x90\xf1\xa2\xa2\xa0\xa3\x83\xa0\xf1\xb2\x82\xb0"
                   74130:             "\xb3\x63\xe0\x92\x62\xe0\xa3\x43\xc0\xf1\xd2\x42\xd0"
                   74131:             "\xd3\x23\xd0\xf1\xe2\x22\xe0\xe6\xe0\xf2\xe0\x14\xe0"
                   74132:             "\x10\xf1\xe0\x22\xe0\x20" }  },
                   74133:       /* --- pixel bitmap for stmary250 char#105 (noname) --- */
                   74134:       { 105,82235,                      /* character number, location */
                   74135:           0, 2,  -48, 2,      /* topleft row,col, and botleft row,col */
                   74136:           { 34,   48, 3,244, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   74137:             "\xf1\xe0\x22\xe0\x20\xf2\xe0\x14\xe0\x10\xe6\xe0\xf1"
                   74138:             "\xe2\x22\xe0\xd3\x23\xd0\xf1\xd2\x42\xd0\xc3\x43\xe0"
                   74139:             "\xa2\x62\xe0\x93\x63\xb0\xf1\xb2\x82\xb0\xa3\x83\xa0"
                   74140:             "\xf1\xa2\xa2\xa0\x93\xa3\x90\xf1\x92\xc2\x90\x83\xc3"
                   74141:             "\x80\xf1\x82\xe2\x80\x73\xe3\x70\xf1\x72\xe0\x22\x70"
                   74142:             "\x63\xe0\x23\x60\xf1\x62\xe0\x42\x60\x53\xe0\x43\x50"
                   74143:             "\xf1\x52\xe0\x62\x50\x43\xe0\x63\x82\xe0\x82\x73\xe0"
                   74144:             "\x83\x30\xf1\x32\xe0\xa2\x30\x23\xe0\xa3\x20\xf1\x22"
                   74145:             "\xe0\xc2\x20\x13\xe0\xc3\x10\xf1\x12\xe0\xe2\x13\xe0"
                   74146:             "\xe3\x0f\x1e\x0e\x06" }  },
                   74147:       /* --- pixel bitmap for stmary250 char#106 (noname) --- */
                   74148:       { 106,83245,                      /* character number, location */
                   74149:           0, 2,  -48, 2,      /* topleft row,col, and botleft row,col */
                   74150:           { 34,   48, 3,147, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   74151:             "\x02\xe0\xe0\x26\xe0\xc4\x23\xe0\xa3\x53\xe0\x83\x73"
                   74152:             "\xe0\x63\x93\xe0\x43\xb3\xe0\x23\xd3\xe3\xe0\x13\xc3"
                   74153:             "\xe0\x32\xc2\xe0\x43\xa3\xe0\x52\xa2\xe0\x63\x83\xe0"
                   74154:             "\x72\x82\xe0\x83\x63\xe0\x92\x62\xe0\xa3\x43\xc0\xf2"
                   74155:             "\xd2\x42\xd0\xd3\x23\xd0\xf2\xe2\x22\xe0\xe6\xe0\xf7"
                   74156:             "\xe0\x14\xe0\x10\xfe\xe0\x22\xe0\x20" }  },
                   74157:       /* --- pixel bitmap for stmary250 char#107 (noname) --- */
                   74158:       { 107,84225,                      /* character number, location */
                   74159:           0, 2,  -48, 2,      /* topleft row,col, and botleft row,col */
                   74160:           { 34,   48, 3,146, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   74161:             "\xfe\xe0\x22\xe0\x20\xf7\xe0\x14\xe0\x10\xe6\xe0\xf2"
                   74162:             "\xe2\x22\xe0\xd3\x23\xd0\xf2\xd2\x42\xd0\xc3\x43\xe0"
                   74163:             "\xa2\x62\xe0\x93\x63\xe0\x82\x82\xe0\x73\x83\xe0\x62"
                   74164:             "\xa2\xe0\x53\xa3\xe0\x42\xc2\xe0\x33\xc3\xe0\x13\xe3"
                   74165:             "\xd3\xe0\x23\xb3\xe0\x43\x93\xe0\x63\x73\xe0\x83\x53"
                   74166:             "\xe0\xa3\x24\xe0\xc6\xe0\xe0\x22" }  },
                   74167:       /* --- pixel bitmap for stmary250 char#108 (noname) --- */
                   74168:       { 108,85226,                      /* character number, location */
                   74169:           0, 2,  -48, 2,      /* topleft row,col, and botleft row,col */
                   74170:           { 34,   48, 2,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   74171:             "\xff\x01\x00\x22\x00\xff\x2d\x02\x1e\x02" }  },
                   74172:       /* --- pixel bitmap for stmary250 char#109 (noname) --- */
                   74173:       { 109,86258,                      /* character number, location */
                   74174:           0, 2,  -48, 2,      /* topleft row,col, and botleft row,col */
                   74175:           { 34,   48, 2,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   74176:             "\xff\x01\x00\x22\x00\xff\x2b\x02\x1e\x02\x00\xff\x01"
                   74177:             "\x22" }  },
                   74178:       /* --- pixel bitmap for stmary250 char#110 (noname) --- */
                   74179:       { 110,87038,                      /* character number, location */
                   74180:           0, 2,  -48, 2,      /* topleft row,col, and botleft row,col */
                   74181:           { 15,   48, 2, 6, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   74182:             "\xff\x2f\x00\x02\x0b\x02" }  },
                   74183:       /* --- pixel bitmap for stmary250 char#111 (noname) --- */
                   74184:       { 111,88027,                      /* character number, location */
                   74185:           0, 2,  -48, 2,      /* topleft row,col, and botleft row,col */
                   74186:           { 28,   48, 2, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   74187:             "\xff\x2f\x00\x02\x0b\x02\x0b\x02" }  },
                   74188:       /* --- pixel bitmap for stmary250 char#112 \bignplus --- */
                   74189:       { 112,89119,                      /* character number, location */
                   74190:           0, 2,  -35, 2,      /* topleft row,col, and botleft row,col */
                   74191:           { 25,   35, 3,90, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   74192:             "\x97\xe0\x2b\xc4\x74\x93\xb3\x73\xd3\x53\xe0\x13\x33"
                   74193:             "\xe0\x33\x22\xe0\x52\x13\xe0\x55\xe0\x72\x0f\x62\xa2"
                   74194:             "\x92\x02\x3e\x01\x34\x2e\x03\x22\x0f\x62\xa2\x92\x02"
                   74195:             "\xa1\xa2\x0f\x72\xe0\x72" }  },
                   74196:       /* --- pixel bitmap for stmary250 char#113 (noname) --- */
                   74197:       { 113,90207,                      /* character number, location */
                   74198:           1, 7,  -39, 7,      /* topleft row,col, and botleft row,col */
                   74199:           { 11,   40, 3,26, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   74200:             "\xf1\x0b\x0f\xe2\x22\x5f\xe2\x22\x5f\x52\x22\x5f\x1b" }  },
                   74201:       /* --- pixel bitmap for stmary250 char#114 (noname) --- */
                   74202:       { 114,91284,                      /* character number, location */
                   74203:           1, 8,  -60, 8,      /* topleft row,col, and botleft row,col */
                   74204:           { 12,   61, 2,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   74205:             "\xff\x01\x00\x0c\x00\xff\x38\x02\x03\x02\x05\xff\x01"
                   74206:             "\x0c" }  },
                   74207:       /* --- pixel bitmap for stmary250 char#115 (noname) --- */
                   74208:       { 115,92472,                      /* character number, location */
                   74209:           1, 9,  -81, 9,      /* topleft row,col, and botleft row,col */
                   74210:           { 13,   82, 2,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   74211:             "\xff\x01\x00\x0d\x00\xff\x4d\x02\x03\x02\x06\xff\x01"
                   74212:             "\x0d" }  },
                   74213:       /* --- pixel bitmap for stmary250 char#116 (noname) --- */
                   74214:       { 116,93770,                      /* character number, location */
                   74215:           1,10,  -101,10,     /* topleft row,col, and botleft row,col */
                   74216:           { 14,  102, 2,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   74217:             "\xff\x01\x00\x0e\x00\xff\x61\x02\x04\x02\x06\xff\x01"
                   74218:             "\x0e" }  },
                   74219:       /* --- pixel bitmap for stmary250 char#117 (noname) --- */
                   74220:       { 117,95117,                      /* character number, location */
                   74221:           0,12,  -62,12,      /* topleft row,col, and botleft row,col */
                   74222:           { 15,   62, 2,15, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   74223:             "\xff\x01\x00\x0f\x00\xff\x3a\x02\x05\x02\x06\x02\x05"
                   74224:             "\x01\x07" }  },
                   74225:       /* --- pixel bitmap for stmary250 char#118 (noname) --- */
                   74226:       { 118,96236,                      /* character number, location */
                   74227:           2,12,  -60,12,      /* topleft row,col, and botleft row,col */
                   74228:           { 15,   62, 2,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   74229:             "\x00\x02\x05\x01\x07\xff\x3a\x02\x05\x02\x06\xff\x01"
                   74230:             "\x0f" }  },
                   74231:       /* --- pixel bitmap for stmary250 char#119 (noname) --- */
                   74232:       { 119,97346,                      /* character number, location */
                   74233:           2,12,  -22,12,      /* topleft row,col, and botleft row,col */
                   74234:           {  9,   24, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   74235:             "\x02\x51\x1f\xe2\x52\x0f\x72\x52" }  },
                   74236:       /* --- pixel bitmap for stmary250 char#120 (noname) --- */
                   74237:       { 120,98360,                      /* character number, location */
                   74238:           0, 2,  -48, 2,      /* topleft row,col, and botleft row,col */
                   74239:           { 34,   48, 3,108, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   74240:             "\xd8\xe0\x9e\xe0\x45\x85\xe4\xe4\xb3\xe0\x43\x93\xe0"
                   74241:             "\x63\x73\xe0\x83\x62\xe0\xa2\x53\xe0\xa3\x33\xe0\xc3"
                   74242:             "\x10\xf1\x12\xe0\xe2\x13\xe0\xe3\x0f\xa2\xe2\xe2\x02"
                   74243:             "\x3e\x0a\x34\x2e\x0c\x22\x0f\xb2\xe2\xe2\x0f\x92\xe0"
                   74244:             "\xe0\x22" }  },
                   74245:       /* --- pixel bitmap for stmary250 char#121 (noname) --- */
                   74246:       { 121,99503,                      /* character number, location */
                   74247:           1, 0,  -39, 0,      /* topleft row,col, and botleft row,col */
                   74248:           { 11,   40, 3,26, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   74249:             "\xf1\x0b\xfe\x52\x22\xfe\x52\x22\xf5\x52\x22\x0f\x1b" }  },
                   74250:       /* --- pixel bitmap for stmary250 char#122 (noname) --- */
                   74251:       { 122,100567,                     /* character number, location */
                   74252:           1, 0,  -60, 0,      /* topleft row,col, and botleft row,col */
                   74253:           { 12,   61, 2,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   74254:             "\xff\x01\x00\x0c\xff\x38\x05\x02\x03\x02\x00\xff\x01"
                   74255:             "\x0c" }  },
                   74256:       /* --- pixel bitmap for stmary250 char#123 (noname) --- */
                   74257:       { 123,101742,                     /* character number, location */
                   74258:           1, 0,  -81, 0,      /* topleft row,col, and botleft row,col */
                   74259:           { 13,   82, 2,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   74260:             "\xff\x01\x00\x0d\xff\x4d\x06\x02\x03\x02\x00\xff\x01"
                   74261:             "\x0d" }  },
                   74262:       /* --- pixel bitmap for stmary250 char#124 (noname) --- */
                   74263:       { 124,103027,                     /* character number, location */
                   74264:           1, 0,  -101, 0,     /* topleft row,col, and botleft row,col */
                   74265:           { 14,  102, 2,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   74266:             "\xff\x01\x00\x0e\xff\x61\x06\x02\x04\x02\x00\xff\x01"
                   74267:             "\x0e" }  },
                   74268:       /* --- pixel bitmap for stmary250 char#125 (noname) --- */
                   74269:       { 125,104335,                     /* character number, location */
                   74270:           0, 0,  -62, 0,      /* topleft row,col, and botleft row,col */
                   74271:           { 15,   62, 2,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   74272:             "\xff\x01\x00\x0f\xff\x3a\x06\x02\x05\x02\x07\x01\x05"
                   74273:             "\x02" }  },
                   74274:       /* --- pixel bitmap for stmary250 char#126 (noname) --- */
                   74275:       { 126,105509,                     /* character number, location */
                   74276:           2, 0,  -60, 0,      /* topleft row,col, and botleft row,col */
                   74277:           { 15,   62, 2,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   74278:             "\x07\x01\x05\x02\xff\x3a\x06\x02\x05\x02\x00\xff\x01"
                   74279:             "\x0f" }  },
                   74280:       /* --- pixel bitmap for stmary250 char#127 (noname) --- */
                   74281:       { 127,106580,                     /* character number, location */
                   74282:           2, 6,  -22, 6,      /* topleft row,col, and botleft row,col */
                   74283:           {  9,   24, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   74284:             "\x11\x52\x0f\xe2\x52\x0f\x72\x52" }  },
                   74285:       /* --- trailer  --- */
                   74286:       { -99, -999,  0,0,0,0, { 0,0,0,0, (pixbyte *)"\0" }  }
                   74287:    } ;
                   74288: 
1.1       albertel 74289: 
1.5     ! raeburn  74290: /* --- size=8 for .325gf ---
        !          74291:  * mf '\mode=preview; mag=magstep(-11.40956951729850636869); input stmary10'
        !          74292:  * --------------------------------------------------------------------- */
        !          74293: /* --- fontdef for stmary325 --- */
        !          74294: static	chardef  stmary325[] =
        !          74295:    {
        !          74296:       /* --- pixel bitmap for stmary325 char#0 \shortleftarrow --- */
        !          74297:       {   0,  948,                      /* character number, location */
        !          74298:          18, 3,    4, 3,      /* topleft row,col, and botleft row,col */
        !          74299:           { 30,   14, 3,65, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          74300:             "\xf1\x71\xe0\x80\x61\xe0\xe1\xe0\xe1\xe0\xe1\xe0\xc0"
        !          74301:             "\xf1\x1e\x0e\x01\x31\xe0\xe0\x21\xe0\xe0\x21\xe0\xe0"
        !          74302:             "\x21\xe0\x90\xf1\x71\xe0\x80" }  },
        !          74303:       /* --- pixel bitmap for stmary325 char#1 \shortrightarrow --- */
        !          74304:       {   1, 1897,                      /* character number, location */
        !          74305:          18, 3,    4, 3,      /* topleft row,col, and botleft row,col */
        !          74306:           { 30,   14, 2,31, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          74307:             "\xff\x01\x16\x01\x07\x00\x17\x01\x1e\x01\x1e\x01\x1e"
        !          74308:             "\x01\x03\x3b\x1b\x01\x1c\x01\x1c\x01\x1c\x01\x06\x00"
        !          74309:             "\xff\x01\x16\x01\x07" }  },
        !          74310:       /* --- pixel bitmap for stmary325 char#2 \shortuparrow --- */
        !          74311:       {   2, 2706,                      /* character number, location */
        !          74312:          26, 3,   -4, 3,      /* topleft row,col, and botleft row,col */
        !          74313:           { 15,   30, 3,47, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          74314:             "\x81\x60\xf1\x72\x60\x64\xa1\x12\x11\x81\x22\x21\x61"
        !          74315:             "\x32\x31\x32\x42\x42\xfe\x72\x60\xf6\x72\x61" }  },
        !          74316:       /* --- pixel bitmap for stmary325 char#3 \shortdownarrow --- */
        !          74317:       {   3, 3565,                      /* character number, location */
        !          74318:          26, 3,   -4, 3,      /* topleft row,col, and botleft row,col */
        !          74319:           { 15,   30, 3,49, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          74320:             "\xfe\x72\x60\xf6\x72\x60\x12\x42\x42\x31\x32\x31\x61"
        !          74321:             "\x22\x21\x81\x12\x11\xa4\x50\xf1\x72\x60\x81\x60" }  },
        !          74322:       /* --- pixel bitmap for stmary325 char#4 \Yup --- */
        !          74323:       {   4, 4204,                      /* character number, location */
        !          74324:          23, 3,    2, 3,      /* topleft row,col, and botleft row,col */
        !          74325:           { 20,   21, 3,42, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          74326:             "\xfb\x92\x90\x75\xe3\x13\xc3\x33\xa3\x53\x83\x73\x63"
        !          74327:             "\x93\x43\xb3\x23\xd3\x12\xe0\x13" }  },
        !          74328:       /* --- pixel bitmap for stmary325 char#5 \Ydown --- */
        !          74329:       {   5, 4813,                      /* character number, location */
        !          74330:          21, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          74331:           { 20,   22, 3,45, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          74332:             "\x02\xe0\x16\xd3\x23\xb3\x43\x93\x63\x73\x83\x53\xa3"
        !          74333:             "\x33\xc3\x13\xe5\xe0\x23\x90\xfb\x92\x90" }  },
        !          74334:       /* --- pixel bitmap for stmary325 char#6 \Yleft --- */
        !          74335:       {   6, 5465,                      /* character number, location */
        !          74336:          22, 2,    1, 2,      /* topleft row,col, and botleft row,col */
        !          74337:           { 23,   21, 3,82, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          74338:             "\xe0\x72\xe0\x63\xe0\x53\xe0\x53\xe0\x53\xe0\x53\xe0"
        !          74339:             "\x53\xe0\x62\xe0\x63\xe0\x53\x7f\x1e\x01\x80\xd3\xe0"
        !          74340:             "\x73\xe0\x73\xe0\x73\xe0\x73\xe0\x73\xe0\x73\xe0\x73"
        !          74341:             "\xe0\x72" }  },
        !          74342:       /* --- pixel bitmap for stmary325 char#7 \Yright --- */
        !          74343:       {   7, 6100,                      /* character number, location */
        !          74344:          22, 2,    1, 2,      /* topleft row,col, and botleft row,col */
        !          74345:           { 23,   21, 3,83, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          74346:             "\x02\xe0\x73\xe0\x73\xe0\x73\xe0\x73\xe0\x73\xe0\x73"
        !          74347:             "\xe0\x72\xe0\x73\xe0\x73\xd0\xf1\x8e\x01\x73\xe0\x53"
        !          74348:             "\xe0\x53\xe0\x53\xe0\x53\xe0\x53\xe0\x53\xe0\x53\xe0"
        !          74349:             "\x62\xe0\x70" }  },
        !          74350:       /* --- pixel bitmap for stmary325 char#8 \varcurlyvee --- */
        !          74351:       {   8, 6751,                      /* character number, location */
        !          74352:          31, 0,  -10, 0,      /* topleft row,col, and botleft row,col */
        !          74353:           { 30,   41, 3,127, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          74354:             "\x02\xe0\xc5\xe0\xa3\x13\xe0\x83\x33\xe0\x63\x53\xe0"
        !          74355:             "\x43\x73\xe0\x23\x93\xe3\xb2\xe2\xc3\xc3\xd3\xa3\xe0"
        !          74356:             "\x12\xa2\xe0\x23\x83\xe0\x32\x82\xe0\x43\x63\x90\xf1"
        !          74357:             "\xa2\x62\xa0\xa3\x43\xa0\xf1\xb2\x42\xb0\xb3\x23\xb0"
        !          74358:             "\xf2\xc2\x22\xc0\xc6\xc0\xf5\xd4\xd0\xfa\xe2\xe0" }  },
        !          74359:       /* --- pixel bitmap for stmary325 char#9 \varcurlywedge --- */
        !          74360:       {   9, 7500,                      /* character number, location */
        !          74361:          31, 0,  -10, 0,      /* topleft row,col, and botleft row,col */
        !          74362:           { 30,   41, 3,130, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          74363:             "\xf9\xe2\xe0\xf6\xd4\xd0\xc6\xc0\xf2\xc2\x22\xc0\xb3"
        !          74364:             "\x23\xb0\xf1\xb2\x42\xb0\xa3\x43\xe0\x62\x62\xe0\x53"
        !          74365:             "\x63\xe0\x42\x82\xe0\x33\x83\xe0\x22\xa2\xe0\x13\xa3"
        !          74366:             "\xe2\xc2\xd3\xc3\xb3\xe3\xa2\xe0\x22\x93\xe0\x23\x73"
        !          74367:             "\xe0\x43\x53\xe0\x63\x33\xe0\x83\x13\xe0\xa5\xe0\xc2" }  },
        !          74368:       /* --- pixel bitmap for stmary325 char#10 \minuso --- */
        !          74369:       {  10, 8377,                      /* character number, location */
        !          74370:          21, 3,    1, 3,      /* topleft row,col, and botleft row,col */
        !          74371:           { 29,   20, 3,93, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          74372:             "\xa9\xe0\x4d\xe0\x13\x93\xd3\xb3\xb3\xd3\xa2\xe0\x12"
        !          74373:             "\x93\xe0\x13\x40\xf1\x42\xe0\x32\x4f\x1e\x0e\x01\xf1"
        !          74374:             "\x42\xe0\x32\x40\x43\xe0\x13\x92\xe0\x12\xa3\xd3\xb3"
        !          74375:             "\xb3\xd3\x93\xe0\x1d\xe0\x49\xa0" }  },
        !          74376:       /* --- pixel bitmap for stmary325 char#11 \baro --- */
        !          74377:       {  11, 9091,                      /* character number, location */
        !          74378:          26, 3,   -4, 3,      /* topleft row,col, and botleft row,col */
        !          74379:           { 19,   30, 3,89, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          74380:             "\xf5\x92\x80\x59\x9b\x64\x32\x24\x42\x52\x42\x33\x52"
        !          74381:             "\x43\x22\x62\x52\x13\x62\x53\x0f\x32\x72\x62\x03\x62"
        !          74382:             "\x53\x12\x62\x52\x23\x52\x43\x32\x52\x42\x44\x32\x24"
        !          74383:             "\x6b\x99\x50\xf5\x92\x80" }  },
        !          74384:       /* --- pixel bitmap for stmary325 char#12 \sslash --- */
        !          74385:       {  12, 9823,                      /* character number, location */
        !          74386:          34, 3,  -11, 3,      /* topleft row,col, and botleft row,col */
        !          74387:           { 25,   45, 3,225, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          74388:             "\xf1\xe0\x22\x52\xe0\x13\x43\xf1\xe0\x12\x52\x10\xe3"
        !          74389:             "\x43\xe0\x12\x52\xe0\x13\x43\x20\xf1\xd2\x52\x30\xc3"
        !          74390:             "\x43\x30\xf1\xc2\x52\x40\xb3\x43\xe0\x12\x52\xe0\x13"
        !          74391:             "\x43\x50\xf1\xa2\x52\x60\x93\x43\x60\xf1\x92\x52\x70"
        !          74392:             "\x83\x43\xe0\x12\x52\xe0\x13\x43\x80\xf1\x72\x52\x90"
        !          74393:             "\x63\x43\x90\xf1\x62\x52\xa0\x53\x43\xe0\x12\x52\xe0"
        !          74394:             "\x13\x43\xb0\xf1\x42\x52\xc0\x33\x43\xc0\xf1\x32\x52"
        !          74395:             "\xd0\x23\x43\xe0\x12\x52\xe0\x13\x43\xe0\xf1\x12\x52"
        !          74396:             "\xe0\x13\x43\xe0\x1f\x12\x52\xe0\x20" }  },
        !          74397:       /* --- pixel bitmap for stmary325 char#13 \bblash --- */
        !          74398:       {  13,10620,                      /* character number, location */
        !          74399:          34, 3,  -11, 3,      /* topleft row,col, and botleft row,col */
        !          74400:           { 25,   45, 3,228, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          74401:             "\xf1\x02\x52\xe0\x23\x43\xe0\x10\xf1\x12\x52\xe0\x10"
        !          74402:             "\x13\x43\xe0\x22\x52\xe0\x23\x43\xd0\xf1\x32\x52\xd0"
        !          74403:             "\x33\x43\xc0\xf1\x42\x52\xc0\x43\x43\xe0\x22\x52\xe0"
        !          74404:             "\x23\x43\xa0\xf1\x62\x52\xa0\x63\x43\x90\xf1\x72\x52"
        !          74405:             "\x90\x73\x43\xe0\x22\x52\xe0\x23\x43\x70\xf1\x92\x52"
        !          74406:             "\x70\x93\x43\x60\xf1\xa2\x52\x60\xa3\x43\xe0\x22\x52"
        !          74407:             "\xe0\x23\x43\x40\xf1\xc2\x52\x40\xc3\x43\x30\xf1\xd2"
        !          74408:             "\x52\x30\xd3\x43\xe0\x22\x52\xe0\x23\x43\x10\xf1\xe0"
        !          74409:             "\x12\x52\x10\xe0\x13\x43\xf1\xe0\x22\x52" }  },
        !          74410:       /* --- pixel bitmap for stmary325 char#14 \moo --- */
        !          74411:       {  14,11531,                      /* character number, location */
        !          74412:          23, 5,   -1, 5,      /* topleft row,col, and botleft row,col */
        !          74413:           { 24,   24, 3,49, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          74414:             "\xfa\xb2\xbf\x1e\x0a\xf2\xb2\xb0\xf2\xa4\xa2\x76\x75"
        !          74415:             "\x62\x22\x63\x13\x34\x24\x33\x37\x67\x55\x85\x32" }  },
        !          74416:       /* --- pixel bitmap for stmary325 char#15 \varotimes --- */
        !          74417:       {  15,12336,                      /* character number, location */
        !          74418:          25, 3,   -3, 3,      /* topleft row,col, and botleft row,col */
        !          74419:           { 28,   28, 3,145, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          74420:             "\xa8\xe0\x4c\xe4\x84\xb3\xc3\x93\xe3\x74\xe4\x56\xc6"
        !          74421:             "\x33\x23\xa3\x23\x22\x43\x83\x42\x22\x53\x63\x52\x13"
        !          74422:             "\x63\x43\x65\x83\x23\x84\x96\x92\x0f\x12\xa4\xa2\x02"
        !          74423:             "\x96\x94\x83\x23\x85\x63\x43\x63\x12\x53\x63\x52\x22"
        !          74424:             "\x43\x83\x42\x23\x23\xa3\x23\x36\xc6\x54\xe4\x73\xe3"
        !          74425:             "\x93\xc3\xb4\x84\xec\xe0\x48\xa0" }  },
        !          74426:       /* --- pixel bitmap for stmary325 char#16 \varoast --- */
        !          74427:       {  16,13350,                      /* character number, location */
        !          74428:          25, 3,   -3, 3,      /* topleft row,col, and botleft row,col */
        !          74429:           { 28,   28, 3,157, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          74430:             "\xa8\xe0\x4c\xe4\x84\xb3\xc3\x93\xe3\x73\x72\x73\x53"
        !          74431:             "\x82\x83\x33\x92\x93\x22\xa2\xa2\x22\x32\x52\x52\x32"
        !          74432:             "\x13\x34\x32\x34\x35\x63\x22\x23\x64\x88\x82\x0f\x12"
        !          74433:             "\xa4\xa2\x02\x88\x84\x63\x22\x23\x65\x34\x32\x34\x33"
        !          74434:             "\x12\x32\x52\x52\x32\x22\xa2\xa2\x23\x92\x93\x33\x82"
        !          74435:             "\x83\x53\x72\x73\x73\xe3\x93\xc3\xb4\x84\xec\xe0\x48"
        !          74436:             "\xa0" }  },
        !          74437:       /* --- pixel bitmap for stmary325 char#17 \varobar --- */
        !          74438:       {  17,14249,                      /* character number, location */
        !          74439:          25, 3,   -3, 3,      /* topleft row,col, and botleft row,col */
        !          74440:           { 28,   28, 3,125, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          74441:             "\xa8\xe0\x4c\xe4\x32\x34\xb3\x52\x53\x93\x62\x63\x73"
        !          74442:             "\x72\x73\x53\x82\x83\x33\x92\x93\x10\xf1\x12\xa2\xa2"
        !          74443:             "\x13\xa2\xa3\x0f\x52\xb2\xb2\x03\xa2\xa3\xf1\x12\xa2"
        !          74444:             "\xa2\x10\x13\x92\x93\x33\x82\x83\x53\x72\x73\x73\x62"
        !          74445:             "\x63\x93\x52\x53\xb4\x32\x34\xec\xe0\x48\xa3" }  },
        !          74446:       /* --- pixel bitmap for stmary325 char#18 \varodot --- */
        !          74447:       {  18,15127,                      /* character number, location */
        !          74448:          25, 3,   -3, 3,      /* topleft row,col, and botleft row,col */
        !          74449:           { 28,   28, 3,121, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          74450:             "\xa8\xe0\x4c\xe4\x84\xb3\xc3\x93\xe3\x73\xe0\x23\x53"
        !          74451:             "\xe0\x43\x33\xe0\x63\x10\xf1\x12\xe0\x82\x13\xe0\x85"
        !          74452:             "\xa4\xa2\x0f\x32\x96\x92\x02\xa4\xa5\xe0\x83\xf1\x12"
        !          74453:             "\xe0\x82\x10\x13\xe0\x63\x33\xe0\x43\x53\xe0\x23\x73"
        !          74454:             "\xe3\x93\xc3\xb4\x84\xec\xe0\x48\xa0" }  },
        !          74455:       /* --- pixel bitmap for stmary325 char#19 \varoslash --- */
        !          74456:       {  19,15980,                      /* character number, location */
        !          74457:          25, 3,   -3, 3,      /* topleft row,col, and botleft row,col */
        !          74458:           { 28,   28, 3,139, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          74459:             "\xa8\xe0\x4c\xe4\x84\xb3\xc3\x93\xe3\x73\xe0\x14\x53"
        !          74460:             "\xe0\x16\x33\xe0\x13\x23\x22\xe0\x13\x42\x22\xe3\x52"
        !          74461:             "\x13\xd3\x65\xd3\x84\xc3\x94\xb3\xa4\xa3\xb4\x93\xc4"
        !          74462:             "\x83\xd5\x63\xd3\x12\x53\xe2\x22\x43\xe0\x12\x23\x23"
        !          74463:             "\xe0\x13\x36\xe0\x13\x54\xe0\x13\x73\xe3\x93\xc3\xb4"
        !          74464:             "\x84\xec\xe0\x48\xa3" }  },
        !          74465:       /* --- pixel bitmap for stmary325 char#20 \varobslash --- */
        !          74466:       {  20,16853,                      /* character number, location */
        !          74467:          25, 3,   -3, 3,      /* topleft row,col, and botleft row,col */
        !          74468:           { 28,   28, 3,139, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          74469:             "\xa8\xe0\x4c\xe4\x84\xb3\xc3\x93\xe3\x74\xe0\x13\x56"
        !          74470:             "\xe0\x13\x33\x23\xe0\x13\x22\x43\xe0\x12\x22\x53\xe2"
        !          74471:             "\x13\x63\xd5\x83\xd4\x93\xc4\xa3\xb4\xb3\xa4\xc3\x94"
        !          74472:             "\xd3\x85\xd3\x63\x12\xe3\x52\x22\xe0\x13\x42\x23\xe0"
        !          74473:             "\x13\x23\x33\xe0\x16\x53\xe0\x14\x73\xe3\x93\xc3\xb4"
        !          74474:             "\x84\xec\xe0\x48\xa3" }  },
        !          74475:       /* --- pixel bitmap for stmary325 char#21 \varocircle --- */
        !          74476:       {  21,17865,                      /* character number, location */
        !          74477:          25, 3,   -3, 3,      /* topleft row,col, and botleft row,col */
        !          74478:           { 28,   28, 3,147, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          74479:             "\xa8\xe0\x4c\xe4\x84\xb3\xc3\x93\xe3\x73\xe0\x23\x53"
        !          74480:             "\xe0\x43\x33\x68\x63\x22\x6a\x62\x22\x53\x63\x52\x13"
        !          74481:             "\x43\x83\x43\x0f\x12\x52\xa2\x52\x0f\x12\x43\xa3\x42"
        !          74482:             "\x0f\x12\x52\xa2\x52\x03\x43\x83\x43\x12\x53\x63\x52"
        !          74483:             "\x22\x6a\x62\x23\x68\x63\x33\xe0\x43\x53\xe0\x23\x73"
        !          74484:             "\xe3\x93\xc3\xb4\x84\xec\xe0\x48\xa4" }  },
        !          74485:       /* --- pixel bitmap for stmary325 char#22 \varoplus --- */
        !          74486:       {  22,18753,                      /* character number, location */
        !          74487:          25, 3,   -3, 3,      /* topleft row,col, and botleft row,col */
        !          74488:           { 28,   28, 3,139, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          74489:             "\xa8\xe0\x4c\xe4\x32\x34\xb3\x52\x53\x93\x62\x63\x73"
        !          74490:             "\x72\x73\x53\x82\x83\x33\x92\x93\x10\xf1\x12\xa2\xa2"
        !          74491:             "\x13\xa2\xa3\x0f\x12\xb2\xb2\x0f\x1e\x0e\x0f\x12\xb2"
        !          74492:             "\xb2\x03\xa2\xa3\xf1\x12\xa2\xa2\x10\x13\x92\x93\x33"
        !          74493:             "\x82\x83\x53\x72\x73\x73\x62\x63\x93\x52\x53\xb4\x32"
        !          74494:             "\x34\xec\xe0\x48\xa4" }  },
        !          74495:       /* --- pixel bitmap for stmary325 char#23 \varominus --- */
        !          74496:       {  23,19634,                      /* character number, location */
        !          74497:          25, 3,   -3, 3,      /* topleft row,col, and botleft row,col */
        !          74498:           { 28,   28, 3,127, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          74499:             "\xa8\xe0\x4c\xe4\x84\xb3\xc3\x93\xe3\x73\xe0\x23\x53"
        !          74500:             "\xe0\x43\x33\xe0\x63\x10\xf1\x12\xe0\x82\x13\xe0\x83"
        !          74501:             "\x0f\x12\xe0\xa2\x0f\x1e\x0e\x0f\x12\xe0\xa2\x03\xe0"
        !          74502:             "\x83\xf1\x12\xe0\x82\x10\x13\xe0\x63\x33\xe0\x43\x53"
        !          74503:             "\xe0\x23\x73\xe3\x93\xc3\xb4\x84\xec\xe0\x48\xa4" }  },
        !          74504:       /* --- pixel bitmap for stmary325 char#24 \boxast --- */
        !          74505:       {  24,20519,                      /* character number, location */
        !          74506:          24, 4,   -2, 4,      /* topleft row,col, and botleft row,col */
        !          74507:           { 26,   26, 3,112, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          74508:             "\xf1\x0e\x0c\x0f\x22\xe0\x82\x0f\x22\xa2\xa2\x02\x41"
        !          74509:             "\x52\x51\x44\x43\x32\x33\x44\x53\x22\x23\x54\x78\x72"
        !          74510:             "\x0f\x12\x94\x92\x02\x78\x74\x53\x22\x23\x54\x43\x32"
        !          74511:             "\x33\x44\x41\x52\x51\x42\x0f\x22\xa2\xa2\x0f\x22\xe0"
        !          74512:             "\x82\x0f\x1e\x0c" }  },
        !          74513:       /* --- pixel bitmap for stmary325 char#25 \boxbar --- */
        !          74514:       {  25,21334,                      /* character number, location */
        !          74515:          24, 4,   -2, 4,      /* topleft row,col, and botleft row,col */
        !          74516:           { 26,   26, 3,28, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          74517:             "\xf1\x0e\x0c\x0f\xe2\xa2\xa2\x0f\x62\xa2\xa2\x0f\x1e"
        !          74518:             "\x0c" }  },
        !          74519:       /* --- pixel bitmap for stmary325 char#26 \boxdot --- */
        !          74520:       {  26,22137,                      /* character number, location */
        !          74521:          24, 4,   -2, 4,      /* topleft row,col, and botleft row,col */
        !          74522:           { 26,   26, 3,48, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          74523:             "\xf1\x0e\x0c\x0f\x72\xe0\x82\x02\x94\x92\x0f\x32\x86"
        !          74524:             "\x82\x02\x94\x92\x0f\x72\xe0\x82\x0f\x1e\x0c" }  },
        !          74525:       /* --- pixel bitmap for stmary325 char#27 \boxslash --- */
        !          74526:       {  27,22910,                      /* character number, location */
        !          74527:          24, 4,   -2, 4,      /* topleft row,col, and botleft row,col */
        !          74528:           { 26,   26, 3,118, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          74529:             "\xf1\x0e\x0c\x02\xe0\x66\xe0\x57\xe0\x43\x14\xe0\x33"
        !          74530:             "\x24\xe0\x23\x34\xe0\x13\x44\xe3\x54\xd3\x64\xc3\x74"
        !          74531:             "\xb3\x84\xa3\x94\x93\xa4\x83\xb4\x73\xc4\x63\xd4\x53"
        !          74532:             "\xe4\x43\xe0\x14\x33\xe0\x24\x23\xe0\x34\x13\xe0\x47"
        !          74533:             "\xe0\x56\xe0\x62\x0f\x1e\x0c" }  },
        !          74534:       /* --- pixel bitmap for stmary325 char#28 \boxbslash --- */
        !          74535:       {  28,23708,                      /* character number, location */
        !          74536:          24, 4,   -2, 4,      /* topleft row,col, and botleft row,col */
        !          74537:           { 26,   26, 3,118, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          74538:             "\xf1\x0e\x0c\x04\xe0\x67\xe0\x54\x13\xe0\x44\x23\xe0"
        !          74539:             "\x34\x33\xe0\x24\x43\xe0\x14\x53\xe4\x63\xd4\x73\xc4"
        !          74540:             "\x83\xb4\x93\xa4\xa3\x94\xb3\x84\xc3\x74\xd3\x64\xe3"
        !          74541:             "\x54\xe0\x13\x44\xe0\x23\x34\xe0\x33\x24\xe0\x43\x14"
        !          74542:             "\xe0\x57\xe0\x64\x0f\x1e\x0c" }  },
        !          74543:       /* --- pixel bitmap for stmary325 char#29 \boxcircle --- */
        !          74544:       {  29,24510,                      /* character number, location */
        !          74545:          24, 4,   -2, 4,      /* topleft row,col, and botleft row,col */
        !          74546:           { 26,   26, 3,82, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          74547:             "\xf1\x0e\x0c\x0f\x42\xe0\x82\x02\x94\x94\x78\x74\x63"
        !          74548:             "\x43\x64\x53\x63\x52\x0f\x32\x52\x82\x52\x02\x53\x63"
        !          74549:             "\x54\x63\x43\x64\x78\x74\x94\x92\x0f\x42\xe0\x82\x0f"
        !          74550:             "\x1e\x0c" }  },
        !          74551:       /* --- pixel bitmap for stmary325 char#30 \boxbox --- */
        !          74552:       {  30,25309,                      /* character number, location */
        !          74553:          24, 4,   -2, 4,      /* topleft row,col, and botleft row,col */
        !          74554:           { 26,   26, 3,58, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          74555:             "\xf1\x0e\x0c\x0f\x42\xe0\x82\x02\x6a\x64\x5c\x52\x0f"
        !          74556:             "\x72\x52\x82\x52\x02\x5c\x54\x6a\x62\x0f\x42\xe0\x82"
        !          74557:             "\x0f\x1e\x0c" }  },
        !          74558:       /* --- pixel bitmap for stmary325 char#31 \boxempty --- */
        !          74559:       {  31,26104,                      /* character number, location */
        !          74560:          24, 4,   -2, 4,      /* topleft row,col, and botleft row,col */
        !          74561:           { 26,   26, 3,28, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          74562:             "\xf1\x0e\x0c\x0f\xe2\xe0\x82\x0f\x62\xe0\x82\x0f\x1e"
        !          74563:             "\x0c" }  },
        !          74564:       /* --- pixel bitmap for stmary325 char#32 \lightning --- */
        !          74565:       {  32,27037,                      /* character number, location */
        !          74566:          31, 3,   -9, 3,      /* topleft row,col, and botleft row,col */
        !          74567:           { 15,   40, 3,113, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          74568:             "\xd2\xc3\xc2\xc3\xc2\xc3\x20\xf1\xa2\x30\x93\xc2\xc3"
        !          74569:             "\xc2\xc3\x50\xf1\x72\x60\x63\xc2\xc3\x43\x52\x35\x4a"
        !          74570:             "\x56\x13\x53\x42\xd2\xc3\xc2\xc3\xc2\xc3\xc2\x51\x72"
        !          74571:             "\x61\x53\x71\x42\x81\x33\x91\x22\xa1\x13\xb3\x44\x43"
        !          74572:             "\x13\x84\xb2\xd1\xaf" }  },
        !          74573:       /* --- pixel bitmap for stmary325 char#33 \merge --- */
        !          74574:       {  33,27882,                      /* character number, location */
        !          74575:          33, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          74576:           { 34,   33, 3,234, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          74577:             "\xa2\xa2\xa0\xf1\xa3\x83\xa0\x94\x84\xe0\x45\x65\xe0"
        !          74578:             "\x42\x12\x62\x12\xe0\x33\x12\x62\x13\xe0\x22\x23\x43"
        !          74579:             "\x22\xe0\x22\x32\x42\x32\xe0\x13\x32\x42\x33\xe2\x43"
        !          74580:             "\x23\x42\xe2\x52\x22\x52\xd3\x52\x22\x53\xc2\x66\x62"
        !          74581:             "\xc2\x74\x72\xb3\x74\x73\xa2\x84\x82\xa2\x92\x92\x93"
        !          74582:             "\x92\x93\x40\xf1\x42\x94\x92\x40\x33\x94\x93\x62\x96"
        !          74583:             "\x92\x62\x92\x22\x92\x53\x92\x22\x93\x42\x93\x23\x92"
        !          74584:             "\x42\x92\x42\x92\x33\x92\x42\x93\x22\x93\x43\x92\x22"
        !          74585:             "\x92\x62\x92\x13\x92\x62\x95\x93\x63\x94\x92\x82\x92" }  },
        !          74586:       /* --- pixel bitmap for stmary325 char#34 \vartimes --- */
        !          74587:       {  34,28675,                      /* character number, location */
        !          74588:          31, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          74589:           { 19,   31, 3,116, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          74590:             "\x02\xe0\x15\xd3\x12\xd2\x23\xb3\x32\xb2\x43\x93\x53"
        !          74591:             "\x73\x72\x72\x83\x53\x92\x52\xa3\x33\xb2\x32\xc3\x13"
        !          74592:             "\xd5\x70\xf2\x83\x80\x75\xd3\x13\xc2\x32\xb3\x33\xa2"
        !          74593:             "\x52\x93\x53\x82\x72\x73\x73\x53\x93\x42\xb2\x33\xb3"
        !          74594:             "\x22\xd2\x13\xd5\xe0\x12" }  },
        !          74595:       /* --- pixel bitmap for stmary325 char#35 \fatsemi --- */
        !          74596:       {  35,29316,                      /* character number, location */
        !          74597:          25, 3,   -9, 3,      /* topleft row,col, and botleft row,col */
        !          74598:           { 10,   34, 3,69, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          74599:             "\x34\x48\x13\x43\x0f\x32\x62\x03\x43\x18\x44\x30\xf4"
        !          74600:             "\xa0\x34\x48\x13\x43\x0f\x32\x62\x03\x43\x19\x36\x82"
        !          74601:             "\x73\x63\x72\x73\x63\x72\x73\x72\x62" }  },
        !          74602:       /* --- pixel bitmap for stmary325 char#36 \sswarrow --- */
        !          74603:       {  36,30241,                      /* character number, location */
        !          74604:          31, 3,   -9, 3,      /* topleft row,col, and botleft row,col */
        !          74605:           { 22,   40, 3,157, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          74606:             "\xf1\xe0\x62\xf1\xe0\x52\x10\xe0\x43\x10\xf1\xe0\x42"
        !          74607:             "\x20\xf1\xe0\x32\x30\xf1\xe0\x22\x40\xe0\x13\x40\xf1"
        !          74608:             "\xe0\x12\x50\xf1\xe2\x60\xf1\xd2\x70\xc3\x70\xf1\xc2"
        !          74609:             "\x80\xf1\xb2\x90\xf1\xa2\xa0\x93\xa0\xf1\x92\xb0\x82"
        !          74610:             "\xc1\x72\xd1\x52\xe0\x11\x42\xe0\x11\x33\xd0\xf1\x31"
        !          74611:             "\x22\xe0\x43\x44\xb3\x13\xe0\x14\xe0\x42\xe0\x61\xe0"
        !          74612:             "\x32" }  },
        !          74613:       /* --- pixel bitmap for stmary325 char#37 \ssearrow --- */
        !          74614:       {  37,31178,                      /* character number, location */
        !          74615:          31, 2,   -9, 2,      /* topleft row,col, and botleft row,col */
        !          74616:           { 22,   40, 3,159, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          74617:             "\xf1\x02\xe0\x60\xf1\x12\xe0\x50\x13\xe0\x40\xf1\x22"
        !          74618:             "\xe0\x40\xf1\x32\xe0\x30\xf1\x42\xe0\x20\x43\xe0\x10"
        !          74619:             "\xf1\x52\xe0\x10\xf1\x62\xe0\xf1\x72\xd0\x73\xc0\xf1"
        !          74620:             "\x82\xc0\xf1\x92\xb0\xf1\xa2\xa0\xa3\x90\xf1\xb2\x90"
        !          74621:             "\xc2\xe0\x62\x71\xd2\x51\xe2\x41\xe0\x13\x31\x20\xf1"
        !          74622:             "\xe2\x21\x30\x74\x43\xe0\x13\x13\xe0\x44\xe0\x62\xe0"
        !          74623:             "\x71\x42" }  },
        !          74624:       /* --- pixel bitmap for stmary325 char#38 \curlywedgeuparrow --- */
        !          74625:       {  38,32226,                      /* character number, location */
        !          74626:          31, 0,   -9, 0,      /* topleft row,col, and botleft row,col */
        !          74627:           { 30,   40, 3,170, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          74628:             "\xf1\xe2\xe0\xd4\xd0\xf1\xc1\x12\x11\xc0\xa2\x22\x22"
        !          74629:             "\xe0\x51\x42\x41\xe0\x22\x52\x52\x70\xf1\xe2\xe0\xf5"
        !          74630:             "\xd4\xd0\xc6\xc0\xf2\xc2\x22\xc0\xb3\x23\xb0\xf1\xb2"
        !          74631:             "\x42\xb0\xa3\x43\xa0\xf1\xa2\x62\xa0\x93\x63\xe0\x42"
        !          74632:             "\x82\xe0\x33\x83\xe0\x22\xa2\xe0\x13\xa3\xd3\xc3\xc2"
        !          74633:             "\xe2\xb3\xe3\x93\xe0\x23\x73\xe0\x43\x53\xe0\x63\x33"
        !          74634:             "\xe0\x83\x13\xe0\xa5\xe0\xc2" }  },
        !          74635:       /* --- pixel bitmap for stmary325 char#39 \curlywedgedownarrow --- */
        !          74636:       {  39,33326,                      /* character number, location */
        !          74637:          32, 0,  -10, 0,      /* topleft row,col, and botleft row,col */
        !          74638:           { 30,   42, 3,153, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          74639:             "\xfa\xe2\xe0\xf5\xd4\xd0\xc6\xc0\xf2\xc2\x22\xc0\xb3"
        !          74640:             "\x23\xb0\xf1\xb2\x42\xb0\xa3\x43\xa0\xf1\xa2\x62\xa0"
        !          74641:             "\x93\x63\xe0\x42\x82\xe0\x33\x83\x91\x62\xa2\x61\x31"
        !          74642:             "\x43\xa3\x41\x41\x33\xc3\x31\x41\x32\xe2\x31\x41\x23"
        !          74643:             "\xe3\x21\x41\x13\xe0\x23\x11\x44\xe0\x44\x34\xe0\x64"
        !          74644:             "\x23\xe0\x83\x16\xe0\x49\x34\xa4\x33\xa1\x81\xa3" }  },
        !          74645:       /* --- pixel bitmap for stmary325 char#40 \fatslash --- */
        !          74646:       {  40,34086,                      /* character number, location */
        !          74647:          34,12,  -11,12,      /* topleft row,col, and botleft row,col */
        !          74648:           { 28,   45, 3,261, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          74649:             "\xf1\xe0\x2c\xe0\x13\x72\xe0\x22\x73\xe0\x22\x72\xe0"
        !          74650:             "\x23\x72\xe0\x22\x73\xe0\x13\x72\xe0\x22\x82\xe0\x22"
        !          74651:             "\x73\xe0\x13\x72\xe0\x22\x73\xe0\x22\x72\xe0\x23\x72"
        !          74652:             "\xe0\x22\x73\xe0\x13\x72\xe0\x22\x82\xe0\x22\x73\xe0"
        !          74653:             "\x13\x72\xe0\x22\x73\xe0\x22\x72\xe0\x23\x72\xe0\x22"
        !          74654:             "\x73\xe0\x13\x72\xe0\x22\x82\xe0\x22\x73\xe0\x13\x72"
        !          74655:             "\xe0\x22\x73\xe0\x22\x72\xe0\x23\x72\xe0\x22\x73\xe0"
        !          74656:             "\x13\x72\xe0\x22\x82\xe0\x22\x73\xe0\x13\x72\xe0\x22"
        !          74657:             "\x73\xe0\x22\x72\xe0\x23\x72\xe0\x22\x73\xe0\x13\x72"
        !          74658:             "\xe0\x22\x82\xe0\x22\x73\xe0\x13\x72\xe0\x2f\x1c\xe0"
        !          74659:             "\x20" }  },
        !          74660:       /* --- pixel bitmap for stmary325 char#41 \fatbslash --- */
        !          74661:       {  41,34866,                      /* character number, location */
        !          74662:          34, 2,  -11, 2,      /* topleft row,col, and botleft row,col */
        !          74663:           { 28,   45, 3,246, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          74664:             "\xf1\x0c\xe0\x23\x73\xe0\x10\xf1\x12\x82\xe0\x10\x13"
        !          74665:             "\x73\xe0\x22\x82\xe0\x23\x72\xe0\x32\x73\xe0\x22\x82"
        !          74666:             "\xe0\x23\x73\xc0\xf1\x42\x82\xc0\x43\x73\xe0\x22\x82"
        !          74667:             "\xe0\x23\x72\xe0\x32\x73\xe0\x22\x82\xe0\x23\x73\x90"
        !          74668:             "\xf1\x72\x82\x90\x73\x73\xe0\x22\x82\xe0\x23\x72\xe0"
        !          74669:             "\x32\x73\xe0\x22\x82\xe0\x23\x73\x60\xf1\xa2\x82\x60"
        !          74670:             "\xa3\x73\xe0\x22\x82\xe0\x23\x72\xe0\x32\x73\xe0\x22"
        !          74671:             "\x82\xe0\x23\x72\xe0\x32\x73\xe0\x22\x82\xe0\x23\x73"
        !          74672:             "\xe0\x22\x82\xe0\x23\x72\xe0\x32\x73\xe0\x22\x82\xe0"
        !          74673:             "\x23\x72\x10\xf1\xe0\x2c" }  },
        !          74674:       /* --- pixel bitmap for stmary325 char#42 \lbag --- */
        !          74675:       {  42,35545,                      /* character number, location */
        !          74676:          34, 3,  -11, 3,      /* topleft row,col, and botleft row,col */
        !          74677:           { 15,   45, 3,92, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          74678:             "\x34\x98\x63\x43\x5f\x22\x62\x50\xf5\x82\x50\x73\x50"
        !          74679:             "\xf3\x72\x60\x63\x60\xf2\x62\x70\x53\x70\xf3\x52\x80"
        !          74680:             "\x43\x80\xf4\x42\x90\x33\x90\xf2\x32\xa0\x33\x90\xf2"
        !          74681:             "\x42\x90\x43\xd3\xd4\xc8\xa5" }  },
        !          74682:       /* --- pixel bitmap for stmary325 char#43 \rbag --- */
        !          74683:       {  43,36151,                      /* character number, location */
        !          74684:          34, 3,  -11, 3,      /* topleft row,col, and botleft row,col */
        !          74685:           { 15,   45, 3,97, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          74686:             "\x74\x98\x63\x43\x52\x62\x52\x63\x42\x72\xf5\x42\x90"
        !          74687:             "\x43\x80\xf3\x52\x80\x53\x70\xf2\x62\x70\x63\x60\xf3"
        !          74688:             "\x72\x60\x73\x50\xf4\x82\x50\x83\x40\xf2\x92\x40\x83"
        !          74689:             "\x40\xf2\x82\x50\x73\xb3\xa4\x77\x84\xb0" }  },
        !          74690:       /* --- pixel bitmap for stmary325 char#44 \varbigcirc --- */
        !          74691:       {  44,37095,                      /* character number, location */
        !          74692:          31, 3,   -8, 3,      /* topleft row,col, and botleft row,col */
        !          74693:           { 39,   39, 3,227, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          74694:             "\xe0\x19\xe0\xde\x01\xe0\x85\x95\xe0\x53\xe0\x13\xe0"
        !          74695:             "\x24\xe0\x34\xd3\xe0\x73\xb3\xe0\x93\x93\xe0\xb3\x73"
        !          74696:             "\xe0\xd3\x62\xe0\xe0\x12\x53\xe0\xe0\x13\x42\xe0\xe0"
        !          74697:             "\x32\x33\xe0\xe0\x33\x10\xf1\x12\xe0\xe0\x52\x13\xe0"
        !          74698:             "\xe0\x53\x0f\x62\xe0\xe0\x72\x03\xe0\xe0\x53\xf1\x12"
        !          74699:             "\xe0\xe0\x52\x10\x13\xe0\xe0\x33\x32\xe0\xe0\x32\x43"
        !          74700:             "\xe0\xe0\x13\x52\xe0\xe0\x12\x63\xe0\xd3\x73\xe0\xb3"
        !          74701:             "\x93\xe0\x93\xb3\xe0\x73\xd4\xe0\x34\xe0\x23\xe0\x13"
        !          74702:             "\xe0\x55\x95\xe0\x8e\x01\xe0\xd9\xe0\x10" }  },
        !          74703:       /* --- pixel bitmap for stmary325 char#45 \leftrightarroweq --- */
        !          74704:       {  45,38203,                      /* character number, location */
        !          74705:          23, 2,    5, 2,      /* topleft row,col, and botleft row,col */
        !          74706:           { 31,   18, 3,99, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          74707:             "\xf1\x71\xe0\x11\x70\x61\xe0\x31\xb1\xe0\x51\x91\xe0"
        !          74708:             "\x71\x71\xe0\x91\x3e\x0e\x03\x1e\x0e\x01\x41\xe0\x91"
        !          74709:             "\x71\xe0\x71\x91\xe0\x51\xb1\xe0\x31\x60\xf1\x71\xe0"
        !          74710:             "\x11\x70\xf1\xe0\xe0\x30\xf1\x1e\x0e\x01\x12" }  },
        !          74711:       /* --- pixel bitmap for stmary325 char#46 \curlyveedownarrow --- */
        !          74712:       {  46,38833,                      /* character number, location */
        !          74713:          31, 0,   -9, 0,      /* topleft row,col, and botleft row,col */
        !          74714:           { 30,   40, 3,171, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          74715:             "\x02\xe0\xc5\xe0\xa3\x13\xe0\x83\x33\xe0\x63\x53\xe0"
        !          74716:             "\x43\x73\xe0\x23\x93\xe3\xb2\xe2\xc3\xc3\xd3\xa3\xe0"
        !          74717:             "\x12\xa2\xe0\x23\x83\xe0\x32\x82\xe0\x43\x63\x90\xf1"
        !          74718:             "\xa2\x62\xa0\xa3\x43\xa0\xf1\xb2\x42\xb0\xb3\x23\xb0"
        !          74719:             "\xf2\xc2\x22\xc0\xc6\xc0\xf5\xd4\xd0\xf1\xe2\xe0\x72"
        !          74720:             "\x52\x52\xe0\x21\x42\x41\xe0\x52\x22\x22\xa0\xf1\xc1"
        !          74721:             "\x12\x11\xc0\xd4\xd0\xf1\xe2\xe3" }  },
        !          74722:       /* --- pixel bitmap for stmary325 char#47 \curlyveeuparrow --- */
        !          74723:       {  47,39553,                      /* character number, location */
        !          74724:          32, 0,  -10, 0,      /* topleft row,col, and botleft row,col */
        !          74725:           { 30,   42, 3,153, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          74726:             "\xa1\x81\xa3\x34\xa4\x39\xe0\x46\x13\xe0\x83\x24\xe0"
        !          74727:             "\x64\x34\xe0\x44\x41\x13\xe0\x23\x11\x41\x23\xe3\x21"
        !          74728:             "\x41\x32\xe2\x31\x41\x33\xc3\x31\x41\x43\xa3\x41\x31"
        !          74729:             "\x62\xa2\x61\x93\x83\xe0\x32\x82\xe0\x43\x63\x90\xf1"
        !          74730:             "\xa2\x62\xa0\xa3\x43\xa0\xf1\xb2\x42\xb0\xb3\x23\xb0"
        !          74731:             "\xf2\xc2\x22\xc0\xc6\xc0\xf5\xd4\xd0\xfa\xe2\xe1" }  },
        !          74732:       /* --- pixel bitmap for stmary325 char#48 \nnwarrow --- */
        !          74733:       {  48,40242,                      /* character number, location */
        !          74734:          31, 3,   -9, 3,      /* topleft row,col, and botleft row,col */
        !          74735:           { 22,   40, 3,158, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          74736:             "\x41\xe0\x72\xe0\x64\xe0\x43\x13\xe0\x13\x44\x70\xf1"
        !          74737:             "\x31\x22\xe0\x21\x33\xe0\x11\x42\xe1\x52\xd1\x72\xe0"
        !          74738:             "\x62\xc0\xf1\x92\xb0\x93\xa0\xf1\xa2\xa0\xf1\xb2\x90"
        !          74739:             "\xf1\xc2\x80\xc3\x70\xf1\xd2\x70\xf1\xe2\x60\xf1\xe0"
        !          74740:             "\x12\x50\xe0\x13\x40\xf1\xe0\x22\x40\xf1\xe0\x32\x30"
        !          74741:             "\xf1\xe0\x42\x20\xe0\x43\x10\xf1\xe0\x52\x10\xf1\xe0"
        !          74742:             "\x62" }  },
        !          74743:       /* --- pixel bitmap for stmary325 char#49 \nnearrow --- */
        !          74744:       {  49,40867,                      /* character number, location */
        !          74745:          31, 2,   -9, 2,      /* topleft row,col, and botleft row,col */
        !          74746:           { 22,   40, 3,157, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          74747:             "\xe0\x31\xe0\x62\xe0\x44\xe0\x13\x13\xb4\x43\x40\xf1"
        !          74748:             "\xe2\x21\x30\xd3\x31\xe0\x12\x41\xe0\x12\x51\xd2\x71"
        !          74749:             "\xc2\x80\xf1\xb2\x90\xa3\x90\xf1\xa2\xa0\xf1\x92\xb0"
        !          74750:             "\xf1\x82\xc0\x73\xc0\xf1\x72\xd0\xf1\x62\xe0\xf1\x52"
        !          74751:             "\xe0\x10\x43\xe0\x10\xf1\x42\xe0\x20\xf1\x32\xe0\x30"
        !          74752:             "\xf1\x22\xe0\x40\x13\xe0\x40\xf1\x12\xe0\x5f\x12\xe0"
        !          74753:             "\x62" }  },
        !          74754:       /* --- pixel bitmap for stmary325 char#50 \leftslice --- */
        !          74755:       {  50,41680,                      /* character number, location */
        !          74756:          21, 3,    1, 3,      /* topleft row,col, and botleft row,col */
        !          74757:           { 29,   20, 3,97, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          74758:             "\xe0\x84\xe0\x87\xe0\x65\x23\xe0\x25\x63\xd5\x92\xa5"
        !          74759:             "\xc2\x85\xe3\x54\xe0\x42\x25\xe0\x62\x0f\x15\xe0\x82"
        !          74760:             "\x25\xe0\x62\x54\xe0\x42\x75\xe3\x95\xc2\xd5\x92\xe0"
        !          74761:             "\x15\x63\xe0\x45\x23\xe0\x77\xe0\xb4\x32" }  },
        !          74762:       /* --- pixel bitmap for stmary325 char#51 \rightslice --- */
        !          74763:       {  51,42470,                      /* character number, location */
        !          74764:          21, 3,    1, 3,      /* topleft row,col, and botleft row,col */
        !          74765:           { 29,   20, 3,97, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          74766:             "\x34\xe0\xb7\xe0\x73\x25\xe0\x43\x65\xe0\x12\x95\xd2"
        !          74767:             "\xc5\x93\xe5\x72\xe0\x44\x52\xe0\x65\x2f\x12\xe0\x85"
        !          74768:             "\x02\xe0\x65\x22\xe0\x44\x53\xe5\x82\xc5\xa2\x95\xd3"
        !          74769:             "\x65\xe0\x23\x25\xe0\x67\xe0\x84\xe0\x82" }  },
        !          74770:       /* --- pixel bitmap for stmary325 char#52 \varolessthan --- */
        !          74771:       {  52,43282,                      /* character number, location */
        !          74772:          25, 3,   -3, 3,      /* topleft row,col, and botleft row,col */
        !          74773:           { 28,   28, 3,133, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          74774:             "\xa8\xe0\x4c\xe4\x84\xb3\xc3\x93\xe3\x73\xd6\x53\xc5"
        !          74775:             "\x13\x33\xa5\x53\x22\x95\x82\x22\x65\xb2\x13\x45\xd5"
        !          74776:             "\x34\xe0\x39\xe0\x52\x0f\x15\xe0\x72\x07\xe0\x54\x34"
        !          74777:             "\xe0\x35\x45\xd3\x12\x65\xb2\x22\x95\x82\x23\xa5\x53"
        !          74778:             "\x33\xc5\x13\x53\xd6\x73\xe3\x93\xc3\xb4\x84\xec\xe0"
        !          74779:             "\x48\xa2" }  },
        !          74780:       /* --- pixel bitmap for stmary325 char#53 \varogreaterthan --- */
        !          74781:       {  53,44153,                      /* character number, location */
        !          74782:          25, 3,   -3, 3,      /* topleft row,col, and botleft row,col */
        !          74783:           { 28,   28, 3,133, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          74784:             "\xa8\xe0\x4c\xe4\x84\xb3\xc3\x93\xe3\x76\xd3\x53\x15"
        !          74785:             "\xc3\x33\x55\xa3\x22\x85\x92\x22\xb5\x62\x13\xd5\x45"
        !          74786:             "\xe0\x34\x34\xe0\x57\x0f\x12\xe0\x75\x02\xe0\x59\xe0"
        !          74787:             "\x34\x35\xd5\x43\x12\xb5\x62\x22\x85\x92\x23\x55\xa3"
        !          74788:             "\x33\x15\xc3\x56\xd3\x73\xe3\x93\xc3\xb4\x84\xec\xe0"
        !          74789:             "\x48\xa2" }  },
        !          74790:       /* --- pixel bitmap for stmary325 char#54 \varovee --- */
        !          74791:       {  54,45016,                      /* character number, location */
        !          74792:          25, 3,   -3, 3,      /* topleft row,col, and botleft row,col */
        !          74793:           { 28,   28, 3,167, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          74794:             "\xa8\xe0\x4c\xe4\x84\xb3\xc3\x93\xe3\x73\xe0\x23\x55"
        !          74795:             "\xe5\x33\x12\xe2\x13\x22\x23\xc3\x22\x22\x32\xc2\x32"
        !          74796:             "\x13\x32\xc2\x35\x43\xa3\x44\x52\xa2\x54\x53\x83\x52"
        !          74797:             "\x0f\x12\x62\x82\x62\x02\x63\x63\x65\x62\x62\x63\x12"
        !          74798:             "\x63\x43\x62\x22\x72\x42\x72\x23\x63\x23\x63\x33\x62"
        !          74799:             "\x22\x63\x53\x52\x22\x53\x73\x46\x43\x93\x44\x43\xb4"
        !          74800:             "\x24\x24\xec\xe0\x48\xa1" }  },
        !          74801:       /* --- pixel bitmap for stmary325 char#55 \varowedge --- */
        !          74802:       {  55,45927,                      /* character number, location */
        !          74803:          25, 3,   -3, 3,      /* topleft row,col, and botleft row,col */
        !          74804:           { 28,   28, 3,167, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          74805:             "\xa8\xe0\x4c\xe4\x24\x24\xb3\x44\x43\x93\x46\x43\x73"
        !          74806:             "\x52\x22\x53\x53\x62\x22\x63\x33\x63\x23\x63\x22\x72"
        !          74807:             "\x42\x72\x22\x63\x43\x62\x13\x62\x62\x65\x63\x63\x62"
        !          74808:             "\x0f\x12\x62\x82\x62\x02\x53\x83\x54\x52\xa2\x54\x43"
        !          74809:             "\xa3\x45\x32\xc2\x33\x12\x32\xc2\x32\x22\x23\xc3\x22"
        !          74810:             "\x23\x12\xe2\x13\x35\xe5\x53\xe0\x23\x73\xe3\x93\xc3"
        !          74811:             "\xb4\x84\xec\xe0\x48\xa1" }  },
        !          74812:       /* --- pixel bitmap for stmary325 char#56 \talloblong --- */
        !          74813:       {  56,46654,                      /* character number, location */
        !          74814:          34, 5,  -12, 5,      /* topleft row,col, and botleft row,col */
        !          74815:           { 12,   46, 3,26, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          74816:             "\xf1\x0c\x0f\xe2\x82\x0f\xe2\x82\x0f\xb2\x82\x0f\x1c" }  },
        !          74817:       /* --- pixel bitmap for stmary325 char#57 \interleave --- */
        !          74818:       {  57,47516,                      /* character number, location */
        !          74819:          34, 5,  -12, 5,      /* topleft row,col, and botleft row,col */
        !          74820:           { 22,   46, 2, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          74821:             "\xff\x2d\x00\x02\x08\x02\x08\x02" }  },
        !          74822:       /* --- pixel bitmap for stmary325 char#58 \obar --- */
        !          74823:       {  58,48518,                      /* character number, location */
        !          74824:          26, 3,   -4, 3,      /* topleft row,col, and botleft row,col */
        !          74825:           { 29,   30, 3,117, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          74826:             "\xb7\xe0\x53\x31\x33\xe2\x61\x62\xb1\x81\x81\x91\x91"
        !          74827:             "\x91\x71\xa1\xa1\x30\xf1\x21\xb1\xb1\x20\xf2\x11\xc1"
        !          74828:             "\xc1\x1f\x71\xd1\xd1\xf2\x11\xc1\xc1\x10\xf1\x21\xb1"
        !          74829:             "\xb1\x20\x31\xa1\xa1\x71\x91\x91\x91\x81\x81\xb2\x61"
        !          74830:             "\x62\xe3\x31\x33\xe0\x57\xb2" }  },
        !          74831:       /* --- pixel bitmap for stmary325 char#59 \oslash --- */
        !          74832:       {  59,49422,                      /* character number, location */
        !          74833:          26, 3,   -4, 3,      /* topleft row,col, and botleft row,col */
        !          74834:           { 29,   30, 3,189, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          74835:             "\xb7\xe0\x53\x73\xe2\xd2\xb1\xe0\x31\x91\xe0\x51\x71"
        !          74836:             "\x11\xe0\x51\x51\x31\xe0\x51\x41\x41\xe0\x41\x31\x61"
        !          74837:             "\xe0\x41\x21\x71\xe0\x31\x21\x81\xe0\x21\x11\xa1\xe0"
        !          74838:             "\x22\xb1\xe0\x12\xc1\xe1\x0f\x11\xd1\xd1\x01\xe1\xc2"
        !          74839:             "\xe0\x11\xb2\xe0\x21\xa1\x11\xe0\x21\x81\x21\xe0\x31"
        !          74840:             "\x71\x21\xe0\x41\x61\x31\xe0\x41\x41\x41\xe0\x51\x31"
        !          74841:             "\x51\xe0\x51\x11\x71\xe0\x51\x91\xe0\x31\xb2\xd2\xe3"
        !          74842:             "\x73\xe0\x57\xb3" }  },
        !          74843:       /* --- pixel bitmap for stmary325 char#60 \olessthan --- */
        !          74844:       {  60,50309,                      /* character number, location */
        !          74845:          26, 3,   -4, 3,      /* topleft row,col, and botleft row,col */
        !          74846:           { 29,   30, 3,181, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          74847:             "\xb7\xe0\x53\x73\xe2\xd2\xb1\xe0\x31\x91\xe0\x51\x71"
        !          74848:             "\xe0\x33\x11\x51\xe0\x22\x51\x41\xe2\x71\x31\xc3\xa1"
        !          74849:             "\x21\xa2\xd1\x21\x82\xe0\x11\x11\x63\xe0\x42\x42\xe0"
        !          74850:             "\x72\x22\xe0\x91\x0f\x13\xe0\xb1\x01\x22\xe0\x92\x42"
        !          74851:             "\xe0\x72\x63\xe0\x41\x11\x82\xe0\x11\x21\xa2\xd1\x21"
        !          74852:             "\xc3\xa1\x31\xe2\x71\x41\xe0\x22\x51\x51\xe0\x33\x11"
        !          74853:             "\x71\xe0\x51\x91\xe0\x31\xb2\xd2\xe3\x73\xe0\x57\xb3" }  },
        !          74854:       /* --- pixel bitmap for stmary325 char#61 \ogreaterthan --- */
        !          74855:       {  61,51195,                      /* character number, location */
        !          74856:          26, 3,   -4, 3,      /* topleft row,col, and botleft row,col */
        !          74857:           { 29,   30, 3,181, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          74858:             "\xb7\xe0\x53\x73\xe2\xd2\xb1\xe0\x31\x91\xe0\x51\x71"
        !          74859:             "\x13\xe0\x31\x51\x52\xe0\x21\x41\x72\xe1\x31\xa3\xc1"
        !          74860:             "\x21\xd2\xa1\x21\xe0\x12\x81\x11\xe0\x43\x62\xe0\x72"
        !          74861:             "\x42\xe0\x92\x21\x0f\x11\xe0\xb3\x01\xe0\x92\x22\xe0"
        !          74862:             "\x72\x42\xe0\x43\x61\x11\xe0\x12\x81\x21\xd2\xa1\x21"
        !          74863:             "\xa3\xc1\x31\x72\xe1\x41\x52\xe0\x21\x51\x13\xe0\x31"
        !          74864:             "\x71\xe0\x51\x91\xe0\x31\xb2\xd2\xe3\x73\xe0\x57\xb3" }  },
        !          74865:       /* --- pixel bitmap for stmary325 char#62 \ovee --- */
        !          74866:       {  62,52073,                      /* character number, location */
        !          74867:          26, 3,   -4, 3,      /* topleft row,col, and botleft row,col */
        !          74868:           { 29,   30, 3,175, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          74869:             "\xb7\xe0\x53\x73\xe2\xd2\xb1\xe0\x31\x91\xe0\x51\x72"
        !          74870:             "\xe0\x52\x30\xf1\x21\x21\xe0\x31\x21\x20\xf2\x11\x41"
        !          74871:             "\xe0\x11\x41\x1f\x11\x61\xd1\x61\x0f\x21\x71\xb1\x71"
        !          74872:             "\x0f\x11\x81\x91\x81\x01\x91\x71\x91\xf1\x11\x81\x71"
        !          74873:             "\x81\x10\x11\x91\x51\x91\x31\x81\x51\x81\x41\x91\x31"
        !          74874:             "\x91\x51\x81\x31\x81\x71\x71\x31\x71\x91\x71\x11\x71"
        !          74875:             "\xb2\x51\x11\x52\xe3\x31\x33\xe0\x57\xb3" }  },
        !          74876:       /* --- pixel bitmap for stmary325 char#63 \owedge --- */
        !          74877:       {  63,53007,                      /* character number, location */
        !          74878:          26, 3,   -4, 3,      /* topleft row,col, and botleft row,col */
        !          74879:           { 29,   30, 3,175, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          74880:             "\xb7\xe0\x53\x31\x33\xe2\x51\x11\x52\xb1\x71\x11\x71"
        !          74881:             "\x91\x71\x31\x71\x71\x81\x31\x81\x51\x91\x31\x91\x41"
        !          74882:             "\x81\x51\x81\x31\x91\x51\x91\x10\xf1\x11\x81\x71\x81"
        !          74883:             "\x11\x91\x71\x91\x0f\x11\x81\x91\x81\x0f\x21\x71\xb1"
        !          74884:             "\x71\x0f\x11\x61\xd1\x61\xf2\x11\x41\xe0\x11\x41\x10"
        !          74885:             "\xf1\x21\x21\xe0\x31\x21\x20\x32\xe0\x52\x71\xe0\x51"
        !          74886:             "\x91\xe0\x31\xb2\xd2\xe3\x73\xe0\x57\xb3" }  },
        !          74887:       /* --- pixel bitmap for stmary325 char#64 \oblong --- */
        !          74888:       {  64,53829,                      /* character number, location */
        !          74889:          27, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          74890:           { 24,   27, 3,28, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          74891:             "\xf1\x0e\x0a\x0f\xe2\xe0\x62\x0f\x72\xe0\x62\x0f\x1e"
        !          74892:             "\x0a" }  },
        !          74893:       /* --- pixel bitmap for stmary325 char#65 \inplus --- */
        !          74894:       {  65,54602,                      /* character number, location */
        !          74895:          25, 4,   -3, 4,      /* topleft row,col, and botleft row,col */
        !          74896:           { 22,   28, 3,104, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          74897:             "\xac\x7e\x01\x55\xe0\x23\xe0\x43\xe0\x43\xe0\x52\x72"
        !          74898:             "\xa3\x72\x90\xf1\x12\x82\x93\x82\x9f\x12\x92\x9f\x1e"
        !          74899:             "\x08\x0f\x12\x92\x93\x82\x90\xf1\x12\x82\x90\x13\x72"
        !          74900:             "\xb2\x72\xb3\xe0\x63\xe0\x63\xe0\x65\xe0\x5e\x01\xac" }  },
        !          74901:       /* --- pixel bitmap for stmary325 char#66 \niplus --- */
        !          74902:       {  66,55368,                      /* character number, location */
        !          74903:          25, 4,   -3, 4,      /* topleft row,col, and botleft row,col */
        !          74904:           { 22,   28, 3,105, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          74905:             "\x0c\xae\x01\xe0\x55\xe0\x63\xe0\x63\xe0\x63\xb2\x72"
        !          74906:             "\xb2\x73\x10\xf1\x92\x82\x10\x92\x83\xf1\x92\x92\x0f"
        !          74907:             "\x1e\x08\xf1\x92\x92\x92\x83\xf1\x92\x82\x10\x92\x73"
        !          74908:             "\xa2\x72\xe0\x53\xe0\x43\xe0\x43\xe0\x25\x5e\x01\x7c"
        !          74909:             "\xa1" }  },
        !          74910:       /* --- pixel bitmap for stmary325 char#67 \nplus --- */
        !          74911:       {  67,56138,                      /* character number, location */
        !          74912:          27, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          74913:           { 24,   28, 3,70, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          74914:             "\x96\xe0\x1c\xa5\x65\x73\xc3\x53\xe3\x33\xe0\x23\x22"
        !          74915:             "\xe0\x42\x13\x82\x83\x0f\x52\x92\x92\x0f\x12\x2e\x02"
        !          74916:             "\x22\x0f\x62\x92\x92\x0f\x42\xe0\x62" }  },
        !          74917:       /* --- pixel bitmap for stmary325 char#68 \subsetplus --- */
        !          74918:       {  68,57022,                      /* character number, location */
        !          74919:          25, 4,   -3, 4,      /* topleft row,col, and botleft row,col */
        !          74920:           { 27,   28, 3,110, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          74921:             "\xae\x03\x7e\x06\x55\xe0\x73\xe0\x93\xe0\x93\xe0\xa2"
        !          74922:             "\xb2\xb3\xb2\xa0\xf1\x12\xc2\xa3\xc2\xaf\x12\xd2\xaf"
        !          74923:             "\x12\x6e\x02\x3f\x12\xd2\xa3\xc2\xa0\xf1\x12\xc2\xa0"
        !          74924:             "\x13\xb2\xc2\xb2\xc3\xe0\xb3\xe0\xb3\xe0\xb5\xe0\xae"
        !          74925:             "\x06\xae\x03" }  },
        !          74926:       /* --- pixel bitmap for stmary325 char#69 \supsetplus --- */
        !          74927:       {  69,57856,                      /* character number, location */
        !          74928:          25, 4,   -3, 4,      /* topleft row,col, and botleft row,col */
        !          74929:           { 27,   28, 3,111, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          74930:             "\x0e\x03\xae\x06\xe0\xa5\xe0\xb3\xe0\xb3\xe0\xb3\xc2"
        !          74931:             "\xb2\xc2\xb3\x10\xf1\xa2\xc2\x10\xa2\xc3\xf1\xa2\xd2"
        !          74932:             "\xf1\x3e\x02\x62\xf1\xa2\xd2\xa2\xc3\xf1\xa2\xc2\x10"
        !          74933:             "\xa2\xb3\xb2\xb2\xe0\xa3\xe0\x93\xe0\x93\xe0\x75\x5e"
        !          74934:             "\x06\x7e\x03\xa1" }  },
        !          74935:       /* --- pixel bitmap for stmary325 char#70 \subsetpluseq --- */
        !          74936:       {  70,58708,                      /* character number, location */
        !          74937:          29, 4,   -9, 4,      /* topleft row,col, and botleft row,col */
        !          74938:           { 27,   38, 3,122, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          74939:             "\xae\x03\x7e\x06\x55\xe0\x73\xe0\x93\xe0\x93\xe0\xa2"
        !          74940:             "\xb2\xb3\xb2\xa0\xf1\x12\xc2\xa3\xc2\xaf\x12\xd2\xaf"
        !          74941:             "\x12\x6e\x02\x3f\x12\xd2\xa3\xc2\xa0\xf1\x12\xc2\xa0"
        !          74942:             "\x13\xb2\xc2\xb2\xc3\xe0\xb3\xe0\xb3\xe0\xb5\xe0\xae"
        !          74943:             "\x06\xae\x03\xf7\xe0\xd0\xf1\x1e\x0c" }  },
        !          74944:       /* --- pixel bitmap for stmary325 char#71 \supsetpluseq --- */
        !          74945:       {  71,59568,                      /* character number, location */
        !          74946:          29, 4,   -9, 4,      /* topleft row,col, and botleft row,col */
        !          74947:           { 27,   38, 3,123, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          74948:             "\x0e\x03\xae\x06\xe0\xa5\xe0\xb3\xe0\xb3\xe0\xb3\xc2"
        !          74949:             "\xb2\xc2\xb3\x10\xf1\xa2\xc2\x10\xa2\xc3\xf1\xa2\xd2"
        !          74950:             "\xf1\x3e\x02\x62\xf1\xa2\xd2\xa2\xc3\xf1\xa2\xc2\x10"
        !          74951:             "\xa2\xb3\xb2\xb2\xe0\xa3\xe0\x93\xe0\x93\xe0\x75\x5e"
        !          74952:             "\x06\x7e\x03\xa0\xf7\xe0\xdf\x1e\x0c\x10" }  },
        !          74953:       /* --- pixel bitmap for stmary325 char#72 \Lbag --- */
        !          74954:       {  72,60391,                      /* character number, location */
        !          74955:          34, 3,  -11, 3,      /* topleft row,col, and botleft row,col */
        !          74956:           { 14,   45, 3,108, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          74957:             "\x34\x91\x41\x71\x61\x53\x51\x5f\x14\x51\x40\x12\x61"
        !          74958:             "\xd1\x40\xf3\x81\x50\xf1\x72\x50\x71\x60\xf1\x62\x60"
        !          74959:             "\xf1\x52\x70\xf1\x43\x70\xf2\x33\x80\xf1\x23\x90\xf2"
        !          74960:             "\x14\x90\x13\xaf\x64\xa0\xf1\x14\x90\x23\xc3\xc3\xc3"
        !          74961:             "\xd3\xd5" }  },
        !          74962:       /* --- pixel bitmap for stmary325 char#73 \Rbag --- */
        !          74963:       {  73,60941,                      /* character number, location */
        !          74964:          34, 3,  -11, 3,      /* topleft row,col, and botleft row,col */
        !          74965:           { 14,   45, 3,107, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          74966:             "\x74\x91\x41\x71\x61\x61\x53\xf1\x41\x54\x41\x62\x51"
        !          74967:             "\x90\xf3\x51\x80\xf1\x52\x70\x61\x70\xf1\x62\x60\xf1"
        !          74968:             "\x72\x50\xf1\x73\x40\xf2\x83\x30\xf1\x93\x20\xf2\x94"
        !          74969:             "\x10\xa3\x10\xf6\xa4\xf1\x94\x10\x93\xa3\xa3\xa3\x93"
        !          74970:             "\x75\x95" }  },
        !          74971:       /* --- pixel bitmap for stmary325 char#74 \llbracket --- */
        !          74972:       {  74,61848,                      /* character number, location */
        !          74973:          34, 4,  -11, 4,      /* topleft row,col, and botleft row,col */
        !          74974:           { 14,   45, 3,26, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          74975:             "\xf1\x0e\x0f\xe2\x42\x6f\xe2\x42\x6f\xa2\x42\x6f\x1e" }  },
        !          74976:       /* --- pixel bitmap for stmary325 char#75 \rrbracket --- */
        !          74977:       {  75,62826,                      /* character number, location */
        !          74978:          34, 1,  -11, 1,      /* topleft row,col, and botleft row,col */
        !          74979:           { 13,   45, 3,26, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          74980:             "\xf1\x0d\xfe\x52\x42\xfe\x52\x42\xfa\x52\x42\x0f\x1d" }  },
        !          74981:       /* --- pixel bitmap for stmary325 char#76 \llparenthesis --- */
        !          74982:       {  76,63662,                      /* character number, location */
        !          74983:          34, 5,  -12, 5,      /* topleft row,col, and botleft row,col */
        !          74984:           { 10,   46, 3,98, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          74985:             "\x91\x82\x73\x64\x52\x12\x51\x22\x42\x22\xf1\x32\x32"
        !          74986:             "\x23\x32\xf1\x22\x42\x13\x42\xf3\x12\x52\x0f\xb3\x52"
        !          74987:             "\xf3\x12\x52\x13\x42\xf1\x22\x42\x23\x32\xf1\x32\x32"
        !          74988:             "\x42\x22\x51\x22\x52\x12\x64\x73\x82\x91" }  },
        !          74989:       /* --- pixel bitmap for stmary325 char#77 \rrparenthesis --- */
        !          74990:       {  77,64495,                      /* character number, location */
        !          74991:          34, 2,  -12, 2,      /* topleft row,col, and botleft row,col */
        !          74992:           { 10,   46, 3,99, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          74993:             "\x01\x92\x83\x74\x62\x12\x52\x21\x52\x22\x4f\x12\x32"
        !          74994:             "\x32\x33\x2f\x12\x42\x22\x43\x1f\x32\x52\x1f\xb2\x53"
        !          74995:             "\x0f\x32\x52\x12\x43\x1f\x12\x42\x22\x33\x2f\x12\x32"
        !          74996:             "\x32\x22\x42\x21\x52\x12\x54\x63\x72\x81\x93" }  },
        !          74997:       /* --- pixel bitmap for stmary325 char#78 \binampersand --- */
        !          74998:       {  78,65384,                      /* character number, location */
        !          74999:          26, 3,   -4, 3,      /* topleft row,col, and botleft row,col */
        !          75000:           { 30,   30, 3,153, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          75001:             "\xb6\xe0\x8a\xe0\x53\x63\xe0\x33\x83\x90\xf3\x72\xa2"
        !          75002:             "\x90\x72\x93\xe0\x23\x82\xe0\x42\x73\xe0\x43\x53\xe0"
        !          75003:             "\x63\x15\xe0\x77\xe0\x77\xe2\x54\x34\xb3\x34\x73\xa2"
        !          75004:             "\x33\xa3\x83\x23\xc3\x72\x32\xe3\x53\x23\xe0\x14\x23"
        !          75005:             "\x32\xe0\x46\x4f\x12\xe0\x54\x53\xe0\x27\x52\xe0\x13"
        !          75006:             "\x34\x33\xc4\x63\x33\x85\x93\x3d\xc2\x58\xe0\x30" }  },
        !          75007:       /* --- pixel bitmap for stmary325 char#79 \bindnasrepma --- */
        !          75008:       {  79,66145,                      /* character number, location */
        !          75009:          26, 2,   -4, 2,      /* topleft row,col, and botleft row,col */
        !          75010:           { 30,   30, 3,153, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          75011:             "\xe0\x38\x52\xcd\x33\x95\x83\x33\x64\xc3\x34\x33\xe0"
        !          75012:             "\x12\x57\xe0\x23\xf1\x54\xe0\x52\x46\xe0\x42\x33\x24"
        !          75013:             "\xe0\x13\x23\x53\xe2\x32\x73\xc3\x23\x83\xa3\x32\xa3"
        !          75014:             "\x74\x33\xb4\x34\x52\xe7\xe0\x77\xe0\x75\x13\xe0\x63"
        !          75015:             "\x53\xe0\x43\x72\xe0\x42\x83\xe0\x23\x92\x70\xf3\x92"
        !          75016:             "\xa2\x70\x93\x83\xe0\x33\x63\xe0\x5a\xe0\x86\xb0" }  },
        !          75017:       /* --- pixel bitmap for stmary325 char#80 \trianglelefteqslant --- */
        !          75018:       {  80,66981,                      /* character number, location */
        !          75019:          29, 4,   -9, 4,      /* topleft row,col, and botleft row,col */
        !          75020:           { 27,   38, 3,180, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          75021:             "\xe0\xb2\xe0\x94\xe0\x76\xe0\x54\x22\xe0\x34\x42\xe0"
        !          75022:             "\x14\x62\xd4\x82\xc3\xa2\xa4\xb2\x84\xd2\x64\xe0\x12"
        !          75023:             "\x44\xe0\x32\x24\xe0\x52\x0f\x14\xe0\x72\x24\xe0\x52"
        !          75024:             "\x44\xe0\x32\x64\xe0\x12\x84\xd2\xa4\xb2\xc3\xa2\xd4"
        !          75025:             "\x82\xe0\x14\x64\xe0\x14\x46\xe0\x14\x22\x24\xe0\x16"
        !          75026:             "\x44\xe0\x14\x64\xe0\x12\x84\xe0\xb4\xe0\xb3\xe0\xb4"
        !          75027:             "\xe0\xb4\xe0\xb4\xe0\xb4\xe0\xb4\xe0\xb4\xe0\xb2" }  },
        !          75028:       /* --- pixel bitmap for stmary325 char#81 \trianglerighteqslant --- */
        !          75029:       {  81,67820,                      /* character number, location */
        !          75030:          29, 4,   -9, 4,      /* topleft row,col, and botleft row,col */
        !          75031:           { 27,   38, 3,185, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          75032:             "\x02\xe0\xb4\xe0\x96\xe0\x72\x24\xe0\x52\x44\xe0\x32"
        !          75033:             "\x64\xe0\x12\x84\xd2\xa3\xc2\xb4\xa2\xd4\x82\xe0\x14"
        !          75034:             "\x62\xe0\x34\x42\xe0\x54\x2f\x12\xe0\x74\x02\xe0\x54"
        !          75035:             "\x22\xe0\x34\x42\xe0\x14\x62\xd4\x82\xb4\xa2\xa3\xc2"
        !          75036:             "\x84\xd2\x64\xe0\x12\x44\xe0\x14\x24\xe0\x1a\xe0\x14"
        !          75037:             "\x24\xe0\x14\x42\xe0\x14\xe0\x74\xe0\x74\xe0\x83\xe0"
        !          75038:             "\x84\xe0\x74\xe0\x74\xe0\x74\xe0\x74\xe0\x74\xe0\x92"
        !          75039:             "\xe0\xb0" }  },
        !          75040:       /* --- pixel bitmap for stmary325 char#82 \ntrianglelefteqslant --- */
        !          75041:       {  82,68705,                      /* character number, location */
        !          75042:          36, 4,  -14, 4,      /* topleft row,col, and botleft row,col */
        !          75043:           { 27,   50, 3,253, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          75044:             "\xe0\x92\xe0\xa3\xe0\xa2\xe0\xa3\xe0\xa2\xe0\xa3\x40"
        !          75045:             "\xf1\xe0\x62\x50\xe0\x53\x23\xe0\x52\x15\xe0\x46\x12"
        !          75046:             "\xe0\x44\x32\xe0\x24\x52\xe5\x62\xd3\x12\x62\xb4\x13"
        !          75047:             "\x62\x94\x32\x72\x74\x43\x72\x54\x62\x82\x34\x82\x82"
        !          75048:             "\x14\x93\x85\xb2\x92\x14\x83\x92\x34\x62\xa2\x54\x33"
        !          75049:             "\xa2\x74\x12\xb2\x95\xb2\xb3\xb2\xb5\x92\xa3\x14\x72"
        !          75050:             "\xa2\x44\x55\x72\x64\x32\x14\x43\x84\x12\x34\x22\xb5"
        !          75051:             "\x56\xd3\x74\xe0\x96\xe0\x72\x23\xe0\x62\x34\xe0\x33"
        !          75052:             "\x54\xe0\x12\x84\xc3\xa4\xa2\xd4\x82\xe0\x14\x53\xe0"
        !          75053:             "\x33\x42\xe0\xa3\xe0\x70\xf2\x32\xe0\x80" }  },
        !          75054:       /* --- pixel bitmap for stmary325 char#83 \ntrianglerighteqslant --- */
        !          75055:       {  83,69671,                      /* character number, location */
        !          75056:          36, 4,  -14, 4,      /* topleft row,col, and botleft row,col */
        !          75057:           { 27,   50, 3,243, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          75058:             "\xe0\x92\xe0\xa3\xe0\xa2\xe0\xa3\xe0\xa2\xe0\xa3\x40"
        !          75059:             "\xf1\xe0\x62\x53\xe0\x23\x55\xe2\x62\x14\xb3\x62\x34"
        !          75060:             "\x92\x72\x54\x63\x72\x74\x42\x82\x93\x32\x82\xa7\x82"
        !          75061:             "\xc4\x92\xd5\x72\xd2\x14\x52\xd2\x34\x32\xc3\x54\x12"
        !          75062:             "\xc2\x85\xb3\x64\x12\xb2\x54\x32\xa3\x34\x52\xa2\x24"
        !          75063:             "\x72\xa6\x92\x95\xb2\x94\xc2\x74\xe2\x55\xe0\x12\x34"
        !          75064:             "\x12\xc5\x14\x23\xa4\x15\x42\x94\x33\x53\x74\xd2\x64"
        !          75065:             "\xe3\x44\xe0\x22\x43\xe0\x42\x24\xe0\x47\xe0\x65\xe0"
        !          75066:             "\x74\xe0\x74\xe0\x76\xe0\x63\x13\xe0\xa2\xe0\xa3\xe0"
        !          75067:             "\x70\xf2\x32\xe0\x80" }  },
        !          75068:       /* --- pixel bitmap for stmary325 char#84 \llfloor --- */
        !          75069:       {  84,70477,                      /* character number, location */
        !          75070:          34, 3,  -12, 3,      /* topleft row,col, and botleft row,col */
        !          75071:           { 22,   46, 2,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          75072:             "\xff\x2b\x00\x02\x08\x02\x0a\xff\x01\x16" }  },
        !          75073:       /* --- pixel bitmap for stmary325 char#85 \rrfloor --- */
        !          75074:       {  85,71263,                      /* character number, location */
        !          75075:          34, 0,  -12, 0,      /* topleft row,col, and botleft row,col */
        !          75076:           { 22,   46, 2,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          75077:             "\xff\x2b\x0a\x02\x08\x02\x00\xff\x01\x16" }  },
        !          75078:       /* --- pixel bitmap for stmary325 char#86 \llceil --- */
        !          75079:       {  86,72035,                      /* character number, location */
        !          75080:          33, 3,  -11, 3,      /* topleft row,col, and botleft row,col */
        !          75081:           { 22,   44, 2,11, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          75082:             "\xff\x01\x00\x16\x00\xff\x29\x02\x08\x02\x0a" }  },
        !          75083:       /* --- pixel bitmap for stmary325 char#87 \rrceil --- */
        !          75084:       {  87,72800,                      /* character number, location */
        !          75085:          33, 0,  -11, 0,      /* topleft row,col, and botleft row,col */
        !          75086:           { 22,   44, 2,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          75087:             "\xff\x01\x00\x16\xff\x29\x0a\x02\x08\x02" }  },
        !          75088:       /* --- pixel bitmap for stmary325 char#88 \arrownot --- */
        !          75089:       {  88,73297,                      /* character number, location */
        !          75090:          19,17,    3,17,      /* topleft row,col, and botleft row,col */
        !          75091:           { 12,   16, 3,33, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          75092:             "\x93\x92\x93\x83\x92\x93\x83\x83\x92\x93\x83\x92\x93"
        !          75093:             "\x83\x9f\x12\xa3" }  },
        !          75094:       /* --- pixel bitmap for stmary325 char#89 \Arrownot --- */
        !          75095:       {  89,73661,                      /* character number, location */
        !          75096:          24,18,   -2,18,      /* topleft row,col, and botleft row,col */
        !          75097:           {  9,   26, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          75098:             "\x80\x01\x03\x06\x0e\x0c\x18\x38\x30\x60\xe0\xc0\x80"
        !          75099:             "\x81\x03\x03\x06\x0c\x1c\x18\x30\x70\x60\xc0\xc0\x81"
        !          75100:             "\x01\x03\x06\x00" }  },
        !          75101:       /* --- pixel bitmap for stmary325 char#90 \Mapstochar --- */
        !          75102:       {  90,74068,                      /* character number, location */
        !          75103:          24, 3,   -2, 3,      /* topleft row,col, and botleft row,col */
        !          75104:           {  3,   26, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          75105:             "\xdb\xb6\xed\xdf\xb6\x6d\xfb\xb7\x6d\x1b" }  },
        !          75106:       /* --- pixel bitmap for stmary325 char#91 \mapsfromchar --- */
        !          75107:       {  91,74387,                      /* character number, location */
        !          75108:          19,-6,    3,-6,      /* topleft row,col, and botleft row,col */
        !          75109:           {  3,   16, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          75110:             "\xb6\x6d\xfb\xb7\x6d\xdb" }  },
        !          75111:       /* --- pixel bitmap for stmary325 char#92 \Mapsfromchar --- */
        !          75112:       {  92,74705,                      /* character number, location */
        !          75113:          24,-6,   -2,-6,      /* topleft row,col, and botleft row,col */
        !          75114:           {  3,   26, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          75115:             "\xb6\x6d\xfb\xb7\x6d\xdb\xfe\x6d\xdb\x36" }  },
        !          75116:       /* --- pixel bitmap for stmary325 char#93 \leftrightarrowtriangle --- */
        !          75117:       {  93,75580,                      /* character number, location */
        !          75118:          18, 3,    4, 3,      /* topleft row,col, and botleft row,col */
        !          75119:           { 40,   14, 3,91, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          75120:             "\xa3\xe3\xe0\x54\xe4\xe0\x26\xe6\xc4\x22\xe2\x24\x84"
        !          75121:             "\x42\xe2\x44\x53\x62\xe2\x63\x2f\x14\x7e\x04\x74\x23"
        !          75122:             "\x62\xe2\x63\x54\x42\xe2\x44\x84\x22\xe2\x24\xc6\xe6"
        !          75123:             "\xe0\x24\xe4\xe0\x53\xe3\xa2" }  },
        !          75124:       /* --- pixel bitmap for stmary325 char#94 \leftarrowtriangle --- */
        !          75125:       {  94,76461,                      /* character number, location */
        !          75126:          18, 3,    4, 3,      /* topleft row,col, and botleft row,col */
        !          75127:           { 40,   14, 3,93, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          75128:             "\xa3\xe0\xe0\x75\xe0\xe0\x54\x12\xe0\xe0\x43\x32\xe0"
        !          75129:             "\xe0\x24\x42\xe0\xe4\x62\xe0\xdf\x13\x8e\x0e\x01\x14"
        !          75130:             "\x62\xe0\xe0\x24\x42\xe0\xe0\x43\x32\xe0\xe0\x54\x12"
        !          75131:             "\xe0\xe0\x75\xe0\xe0\x93\xe0\xd2" }  },
        !          75132:       /* --- pixel bitmap for stmary325 char#95 \rightarrowtriangle --- */
        !          75133:       {  95,77307,                      /* character number, location */
        !          75134:          18, 3,    4, 3,      /* topleft row,col, and botleft row,col */
        !          75135:           { 40,   14, 3,91, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          75136:             "\xe0\xc3\xe0\xe0\x95\xe0\xe0\x72\x14\xe0\xe0\x52\x33"
        !          75137:             "\xe0\xe0\x42\x44\xe0\xe0\x22\x64\x2f\x1e\x0e\x84\xe0"
        !          75138:             "\xc2\x64\xe0\xe2\x44\xe0\xe0\x22\x33\xe0\xe0\x42\x14"
        !          75139:             "\xe0\xe0\x55\xe0\xe0\x73\xb0" }  },
        !          75140:       /* --- pixel bitmap for stmary325 char#96 \bigtriangledown --- */
        !          75141:       {  96,78039,                      /* character number, location */
        !          75142:           0, 2,  -45, 2,      /* topleft row,col, and botleft row,col */
        !          75143:           { 33,   45, 3,221, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          75144:             "\xf2\x0e\x0e\x05\xf1\x13\xe0\xb3\x10\x14\xe0\x94\x10"
        !          75145:             "\xf1\x23\xe0\x93\x20\x24\xe0\x74\x20\xf1\x33\xe0\x73"
        !          75146:             "\x30\x34\xe0\x54\x30\xf1\x43\xe0\x53\x40\x44\xe0\x34"
        !          75147:             "\x93\xe0\x33\xa4\xe0\x14\x50\xf1\x63\xe0\x13\x60\x64"
        !          75148:             "\xd4\x60\xf1\x73\xd3\x70\x74\xb4\x70\xf1\x83\xb3\x80"
        !          75149:             "\x84\x94\x80\xf1\x93\x93\x90\x94\x74\xe0\x53\x73\xe0"
        !          75150:             "\x64\x54\xa0\xf1\xb3\x53\xb0\xb4\x34\xb0\xf1\xc3\x33"
        !          75151:             "\xc0\xc4\x14\xc0\xf1\xd3\x13\xd0\xd7\xd0\xf2\xe5\xe0"
        !          75152:             "\xe0\x13\xe0\xe0\x32\xe0\x13" }  },
        !          75153:       /* --- pixel bitmap for stmary325 char#97 \bigtriangleup --- */
        !          75154:       {  97,78904,                      /* character number, location */
        !          75155:           0, 2,  -45, 2,      /* topleft row,col, and botleft row,col */
        !          75156:           { 33,   45, 3,220, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          75157:             "\xe0\x22\xe0\xe0\x23\xe0\x10\xf2\xe5\xe0\xd7\xd0\xf1"
        !          75158:             "\xd3\x13\xd0\xc4\x14\xc0\xf1\xc3\x33\xc0\xb4\x34\xb0"
        !          75159:             "\xf1\xb3\x53\xb0\xa4\x54\xe0\x63\x73\xe0\x54\x74\x90"
        !          75160:             "\xf1\x93\x93\x90\x84\x94\x80\xf1\x83\xb3\x80\x74\xb4"
        !          75161:             "\x70\xf1\x73\xd3\x70\x64\xd4\x60\xf1\x63\xe0\x13\x60"
        !          75162:             "\x54\xe0\x14\xa3\xe0\x33\x94\xe0\x34\x40\xf1\x43\xe0"
        !          75163:             "\x53\x40\x34\xe0\x54\x30\xf1\x33\xe0\x73\x30\x24\xe0"
        !          75164:             "\x74\x20\xf1\x23\xe0\x93\x20\x14\xe0\x94\x10\xf1\x13"
        !          75165:             "\xe0\xb3\x1f\x2e\x0e\x05" }  },
        !          75166:       /* --- pixel bitmap for stmary325 char#98 \bigcurlyvee --- */
        !          75167:       {  98,79767,                      /* character number, location */
        !          75168:           0, 2,  -45, 2,      /* topleft row,col, and botleft row,col */
        !          75169:           { 33,   45, 3,139, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          75170:             "\x03\xe0\xd7\xe0\xb4\x15\xe0\x76\x25\xe0\x55\x55\xe0"
        !          75171:             "\x35\x84\xe0\x14\xb4\xd4\xd3\xd3\xe4\xb4\xe0\x14\x94"
        !          75172:             "\xe0\x33\x93\xe0\x44\x74\xe0\x53\x73\xe0\x64\x54\xe0"
        !          75173:             "\x73\x53\xe0\x84\x34\xb0\xf1\xc3\x33\xc0\xc4\x14\xc0"
        !          75174:             "\xf3\xd3\x13\xd0\xd7\xd0\xf6\xe5\xe0\xfc\xe0\x13\xe0"
        !          75175:             "\x10\xe0\x22\xe0\x10" }  },
        !          75176:       /* --- pixel bitmap for stmary325 char#99 \bigcurlywedge --- */
        !          75177:       {  99,80606,                      /* character number, location */
        !          75178:           0, 2,  -45, 2,      /* topleft row,col, and botleft row,col */
        !          75179:           { 33,   45, 3,136, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          75180:             "\xe0\x22\xe0\x10\xfc\xe0\x13\xe0\x10\xf6\xe5\xe0\xd7"
        !          75181:             "\xd0\xf3\xd3\x13\xd0\xc4\x14\xc0\xf1\xc3\x33\xc0\xb4"
        !          75182:             "\x34\xe0\x83\x53\xe0\x74\x54\xe0\x63\x73\xe0\x54\x74"
        !          75183:             "\xe0\x43\x93\xe0\x34\x94\xe0\x14\xb4\xe3\xd3\xd4\xd4"
        !          75184:             "\xb4\xe0\x14\x85\xe0\x35\x55\xe0\x55\x35\xe0\x7a\xe0"
        !          75185:             "\xb7\xe0\xd3" }  },
        !          75186:       /* --- pixel bitmap for stmary325 char#100 \bigsqcap --- */
        !          75187:       { 100,81473,                      /* character number, location */
        !          75188:           0, 2,  -45, 2,      /* topleft row,col, and botleft row,col */
        !          75189:           { 33,   45, 2,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          75190:             "\xff\x02\x00\x21\x00\xff\x28\x03\x1b\x03\x01\x02\x1c"
        !          75191:             "\x02" }  },
        !          75192:       /* --- pixel bitmap for stmary325 char#101 \bigbox --- */
        !          75193:       { 101,82358,                      /* character number, location */
        !          75194:           0, 2,  -45, 2,      /* topleft row,col, and botleft row,col */
        !          75195:           { 33,   45, 2,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          75196:             "\xff\x02\x00\x21\x00\xff\x26\x03\x1b\x03\x00\xff\x01"
        !          75197:             "\x21\x01\x20" }  },
        !          75198:       /* --- pixel bitmap for stmary325 char#102 \bigparallel --- */
        !          75199:       { 102,83067,                      /* character number, location */
        !          75200:           0, 3,  -45, 3,      /* topleft row,col, and botleft row,col */
        !          75201:           { 14,   45, 2,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          75202:             "\xff\x2b\x00\x03\x08\x03\x01\x02\x09\x02" }  },
        !          75203:       /* --- pixel bitmap for stmary325 char#103 \biginterleave --- */
        !          75204:       { 103,83911,                      /* character number, location */
        !          75205:           0, 2,  -45, 2,      /* topleft row,col, and botleft row,col */
        !          75206:           { 27,   45, 2,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          75207:             "\xff\x2b\x00\x03\x09\x03\x09\x03\x01\x02\x0a\x02\x0a"
        !          75208:             "\x02" }  },
        !          75209:       /* --- pixel bitmap for stmary325 char#104 (noname) --- */
        !          75210:       { 104,85017,                      /* character number, location */
        !          75211:           0, 3,  -63, 3,      /* topleft row,col, and botleft row,col */
        !          75212:           { 44,   63, 3,357, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          75213:             "\x1e\x0e\x0e\x1f\x2e\x0e\x0e\x02\x14\xe0\xe0\x64\x10"
        !          75214:             "\xf1\x15\xe0\xe0\x45\x10\x24\xe0\xe0\x44\x20\xf1\x25"
        !          75215:             "\xe0\xe0\x25\x20\x34\xe0\xe0\x24\x30\xf1\x35\xe0\xe5"
        !          75216:             "\x30\x44\xe0\xe4\x40\xf1\x45\xe0\xc5\x40\x54\xe0\xc4"
        !          75217:             "\x50\xf1\x55\xe0\xa5\x50\x64\xe0\xa4\x60\xf1\x65\xe0"
        !          75218:             "\x85\x60\x74\xe0\x84\x70\xf1\x75\xe0\x65\x70\x84\xe0"
        !          75219:             "\x64\x80\xf1\x85\xe0\x45\x80\x94\xe0\x44\x90\xf1\x95"
        !          75220:             "\xe0\x25\x90\xa4\xe0\x24\xa0\xf1\xa5\xe5\xa0\xb4\xe4"
        !          75221:             "\xb0\xf1\xb5\xc5\xb0\xc4\xc4\xc0\xf1\xc5\xa5\xc0\xd4"
        !          75222:             "\xa4\xd0\xf1\xd5\x85\xd0\xe4\x84\xe0\xf1\xe5\x65\xe0"
        !          75223:             "\xe0\x14\x64\xe0\x10\xf1\xe0\x15\x45\xe0\x10\xe0\x24"
        !          75224:             "\x44\xe0\x20\xf1\xe0\x25\x25\xe0\x20\xe0\x34\x24\xe0"
        !          75225:             "\x30\xf1\xe0\x3a\xe0\x30\xf2\xe0\x48\xe0\x40\xf2\xe0"
        !          75226:             "\x56\xe0\x50\xe0\x64\xe0\xe0\xd2\xe0\x70" }  },
        !          75227:       /* --- pixel bitmap for stmary325 char#105 (noname) --- */
        !          75228:       { 105,86077,                      /* character number, location */
        !          75229:           0, 3,  -63, 3,      /* topleft row,col, and botleft row,col */
        !          75230:           { 44,   63, 3,357, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          75231:             "\xe0\x72\xe0\xe0\xd4\xe0\x60\xf2\xe0\x56\xe0\x50\xf2"
        !          75232:             "\xe0\x48\xe0\x40\xf1\xe0\x3a\xe0\x30\xe0\x34\x24\xe0"
        !          75233:             "\x30\xf1\xe0\x25\x25\xe0\x20\xe0\x24\x44\xe0\x20\xf1"
        !          75234:             "\xe0\x15\x45\xe0\x10\xe0\x14\x64\xe0\x10\xf1\xe5\x65"
        !          75235:             "\xe0\xe4\x84\xe0\xf1\xd5\x85\xd0\xd4\xa4\xd0\xf1\xc5"
        !          75236:             "\xa5\xc0\xc4\xc4\xc0\xf1\xb5\xc5\xb0\xb4\xe4\xb0\xf1"
        !          75237:             "\xa5\xe5\xa0\xa4\xe0\x24\xa0\xf1\x95\xe0\x25\x90\x94"
        !          75238:             "\xe0\x44\x90\xf1\x85\xe0\x45\x80\x84\xe0\x64\x80\xf1"
        !          75239:             "\x75\xe0\x65\x70\x74\xe0\x84\x70\xf1\x65\xe0\x85\x60"
        !          75240:             "\x64\xe0\xa4\x60\xf1\x55\xe0\xa5\x50\x54\xe0\xc4\x50"
        !          75241:             "\xf1\x45\xe0\xc5\x40\x44\xe0\xe4\x40\xf1\x35\xe0\xe5"
        !          75242:             "\x30\x34\xe0\xe0\x24\x30\xf1\x25\xe0\xe0\x25\x20\x24"
        !          75243:             "\xe0\xe0\x44\x20\xf1\x15\xe0\xe0\x45\x10\x14\xe0\xe0"
        !          75244:             "\x64\x1f\x2e\x0e\x0e\x02\x1e\x0e\x0e\x10" }  },
        !          75245:       /* --- pixel bitmap for stmary325 char#106 (noname) --- */
        !          75246:       { 106,87135,                      /* character number, location */
        !          75247:           0, 3,  -63, 3,      /* topleft row,col, and botleft row,col */
        !          75248:           { 44,   63, 3,221, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          75249:             "\x12\xe0\xe0\xa2\x15\xe0\xe0\x6b\xe0\xe0\x46\x17\xe0"
        !          75250:             "\xe7\x37\xe0\xc7\x66\xe0\xa6\x96\xe0\x86\xb6\xe0\x66"
        !          75251:             "\xd6\xe0\x46\xe0\x16\xe0\x26\xe0\x35\xe0\x25\xe0\x55"
        !          75252:             "\xe5\xe0\x66\xc6\xe0\x75\xc5\xb0\xf1\xc5\xa5\xc0\xf1"
        !          75253:             "\xd5\x85\xd0\xf1\xe5\x65\xe0\xf1\xe0\x15\x45\xe0\x10"
        !          75254:             "\xf1\xe0\x24\x44\xe0\x20\xf1\xe0\x25\x25\xe0\x20\xe0"
        !          75255:             "\x34\x24\xe0\x30\xf1\xe0\x3a\xe0\x30\xf5\xe0\x48\xe0"
        !          75256:             "\x40\xf8\xe0\x56\xe0\x50\xfe\xe0\x64\xe0\x60\xf2\xe0"
        !          75257:             "\x64\xe0\x60\xe0\x72\xe0\x74" }  },
        !          75258:       /* --- pixel bitmap for stmary325 char#107 (noname) --- */
        !          75259:       { 107,88151,                      /* character number, location */
        !          75260:           0, 3,  -63, 3,      /* topleft row,col, and botleft row,col */
        !          75261:           { 44,   63, 3,221, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          75262:             "\xe0\x72\xe0\x70\xfe\xe0\x64\xe0\x60\xf2\xe0\x64\xe0"
        !          75263:             "\x60\xf8\xe0\x56\xe0\x50\xf5\xe0\x48\xe0\x40\xf1\xe0"
        !          75264:             "\x3a\xe0\x30\xe0\x34\x24\xe0\x30\xf1\xe0\x25\x25\xe0"
        !          75265:             "\x20\xf1\xe0\x24\x44\xe0\x20\xf1\xe0\x15\x45\xe0\x10"
        !          75266:             "\xf1\xe5\x65\xe0\xf1\xd5\x85\xd0\xf1\xc5\xa5\xc0\xb5"
        !          75267:             "\xc5\xe0\x76\xc6\xe0\x65\xe5\xe0\x55\xe0\x25\xe0\x36"
        !          75268:             "\xe0\x26\xe0\x16\xe0\x46\xd6\xe0\x66\xb6\xe0\x86\x96"
        !          75269:             "\xe0\xa6\x67\xe0\xc7\x37\xe0\xe7\x16\xe0\xe0\x4b\xe0"
        !          75270:             "\xe0\x65\x12\xe0\xe0\xa2\x14" }  },
        !          75271:       /* --- pixel bitmap for stmary325 char#108 (noname) --- */
        !          75272:       { 108,89188,                      /* character number, location */
        !          75273:           0, 3,  -63, 3,      /* topleft row,col, and botleft row,col */
        !          75274:           { 44,   63, 2,17, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          75275:             "\x01\x2a\x01\xff\x02\x2c\x00\xff\x39\x04\x24\x04\x01"
        !          75276:             "\x02\x26\x02\x01" }  },
        !          75277:       /* --- pixel bitmap for stmary325 char#109 (noname) --- */
        !          75278:       { 109,90276,                      /* character number, location */
        !          75279:           0, 3,  -63, 3,      /* topleft row,col, and botleft row,col */
        !          75280:           { 44,   63, 2,19, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          75281:             "\x01\x2a\x01\xff\x02\x2c\x00\xff\x36\x04\x24\x04\x00"
        !          75282:             "\xff\x02\x2c\x01\x2a\x01" }  },
        !          75283:       /* --- pixel bitmap for stmary325 char#110 (noname) --- */
        !          75284:       { 110,91108,                      /* character number, location */
        !          75285:           0, 3,  -63, 3,      /* topleft row,col, and botleft row,col */
        !          75286:           { 19,   63, 2,15, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          75287:             "\x01\x02\x0d\x02\x01\xff\x3c\x04\x0b\x04\x01\x02\x0d"
        !          75288:             "\x02\x01" }  },
        !          75289:       /* --- pixel bitmap for stmary325 char#111 (noname) --- */
        !          75290:       { 111,92131,                      /* character number, location */
        !          75291:           0, 2,  -63, 2,      /* topleft row,col, and botleft row,col */
        !          75292:           { 38,   63, 2,21, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          75293:             "\x01\x02\x0f\x02\x0f\x02\x01\xff\x3c\x04\x0d\x04\x0d"
        !          75294:             "\x04\x01\x02\x0f\x02\x0f\x02\x01" }  },
        !          75295:       /* --- pixel bitmap for stmary325 char#112 \bignplus --- */
        !          75296:       { 112,93313,                      /* character number, location */
        !          75297:           0, 2,  -45, 2,      /* topleft row,col, and botleft row,col */
        !          75298:           { 33,   45, 3,114, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          75299:             "\xc9\xe0\x7e\x01\xe0\x2e\x05\xd7\x77\xb5\xd5\x94\xe0"
        !          75300:             "\x34\x74\xe0\x54\x54\xe0\x74\x43\xe0\x93\x34\xe0\x94"
        !          75301:             "\x23\xe0\xb3\x14\xe0\xb7\xe0\xd6\xd1\xd3\x0f\x73\xc3"
        !          75302:             "\xc3\x03\x4e\x05\x43\x0f\x13\x3e\x07\x33\x0f\x83\xc3"
        !          75303:             "\xc3\x0f\xa3\xe0\xd3" }  },
        !          75304:       /* --- pixel bitmap for stmary325 char#113 (noname) --- */
        !          75305:       { 113,94447,                      /* character number, location */
        !          75306:           2, 9,  -51, 9,      /* topleft row,col, and botleft row,col */
        !          75307:           { 14,   53, 2,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          75308:             "\xff\x01\x00\x0e\x00\xff\x30\x02\x04\x02\x06\xff\x01"
        !          75309:             "\x0e" }  },
        !          75310:       /* --- pixel bitmap for stmary325 char#114 (noname) --- */
        !          75311:       { 114,95602,                      /* character number, location */
        !          75312:           2,10,  -78,10,      /* topleft row,col, and botleft row,col */
        !          75313:           { 15,   80, 2,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          75314:             "\xff\x01\x00\x0f\x00\xff\x4b\x02\x04\x02\x07\xff\x01"
        !          75315:             "\x0f" }  },
        !          75316:       /* --- pixel bitmap for stmary325 char#115 (noname) --- */
        !          75317:       { 115,96866,                      /* character number, location */
        !          75318:           2,11,  -105,11,     /* topleft row,col, and botleft row,col */
        !          75319:           { 18,  107, 2,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          75320:             "\xff\x02\x00\x12\x00\xff\x64\x03\x04\x03\x08\xff\x02"
        !          75321:             "\x12" }  },
        !          75322:       /* --- pixel bitmap for stmary325 char#116 (noname) --- */
        !          75323:       { 116,98260,                      /* character number, location */
        !          75324:           2,12,  -132,12,     /* topleft row,col, and botleft row,col */
        !          75325:           { 19,  134, 2,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          75326:             "\xff\x02\x00\x13\x00\xff\x7f\x03\x05\x03\x08\xff\x02"
        !          75327:             "\x13" }  },
        !          75328:       /* --- pixel bitmap for stmary325 char#117 (noname) --- */
        !          75329:       { 117,99705,                      /* character number, location */
        !          75330:           1,15,  -80,15,      /* topleft row,col, and botleft row,col */
        !          75331:           { 20,   81, 2,11, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          75332:             "\xff\x02\x00\x14\x00\xff\x4d\x03\x06\x03\x08" }  },
        !          75333:       /* --- pixel bitmap for stmary325 char#118 (noname) --- */
        !          75334:       { 118,100853,                     /* character number, location */
        !          75335:           3,15,  -78,15,      /* topleft row,col, and botleft row,col */
        !          75336:           { 20,   81, 2,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          75337:             "\xff\x4d\x00\x03\x06\x03\x08\xff\x02\x14" }  },
        !          75338:       /* --- pixel bitmap for stmary325 char#119 (noname) --- */
        !          75339:       { 119,102011,                     /* character number, location */
        !          75340:           2,15,  -28,15,      /* topleft row,col, and botleft row,col */
        !          75341:           { 12,   30, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          75342:             "\xfe\x03\x63\x0f\xe3\x63" }  },
        !          75343:       /* --- pixel bitmap for stmary325 char#120 (noname) --- */
        !          75344:       { 120,103049,                     /* character number, location */
        !          75345:           0, 3,  -63, 3,      /* topleft row,col, and botleft row,col */
        !          75346:           { 44,   63, 3,189, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          75347:             "\xe0\x3a\xe0\xe0\x3e\x02\xe0\xce\x06\xe0\x8e\x0a\xe0"
        !          75348:             "\x59\x89\xe0\x28\xe8\xd7\xe0\x47\xb6\xe0\x86\x96\xe0"
        !          75349:             "\xa6\x85\xe0\xc5\x75\xe0\xe5\x56\xe0\xe6\x45\xe0\xe0"
        !          75350:             "\x25\x20\xf1\x15\xe0\xe0\x45\x10\x14\xe0\xe0\x64\x1f"
        !          75351:             "\x15\xe0\xe0\x65\x04\xe0\xe0\x88\xe0\x32\xe0\x34\x0f"
        !          75352:             "\xa4\xe0\x24\xe0\x24\x04\x5e\x0c\x54\x0f\x24\x4e\x0e"
        !          75353:             "\x44\x0f\xb4\xe0\x24\xe0\x24\x0f\xe4\xe0\xe0\x84\x12"
        !          75354:             "\xe0\xe0\xa2\x10" }  },
        !          75355:       /* --- pixel bitmap for stmary325 char#121 (noname) --- */
        !          75356:       { 121,104254,                     /* character number, location */
        !          75357:           2, 1,  -51, 1,      /* topleft row,col, and botleft row,col */
        !          75358:           { 14,   53, 2,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          75359:             "\xff\x01\x00\x0e\xff\x30\x06\x02\x04\x02\x00\xff\x01"
        !          75360:             "\x0e" }  },
        !          75361:       /* --- pixel bitmap for stmary325 char#122 (noname) --- */
        !          75362:       { 122,105370,                     /* character number, location */
        !          75363:           2, 1,  -78, 1,      /* topleft row,col, and botleft row,col */
        !          75364:           { 15,   80, 2,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          75365:             "\xff\x01\x00\x0f\xff\x4b\x07\x02\x04\x02\x00\xff\x01"
        !          75366:             "\x0f" }  },
        !          75367:       /* --- pixel bitmap for stmary325 char#123 (noname) --- */
        !          75368:       { 123,106595,                     /* character number, location */
        !          75369:           2, 0,  -105, 0,     /* topleft row,col, and botleft row,col */
        !          75370:           { 18,  107, 2,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          75371:             "\xff\x02\x00\x12\xff\x64\x08\x03\x04\x03\x00\xff\x02"
        !          75372:             "\x12" }  },
        !          75373:       /* --- pixel bitmap for stmary325 char#124 (noname) --- */
        !          75374:       { 124,107950,                     /* character number, location */
        !          75375:           2, 0,  -132, 0,     /* topleft row,col, and botleft row,col */
        !          75376:           { 19,  134, 2,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          75377:             "\xff\x02\x00\x13\xff\x7f\x08\x03\x05\x03\x00\xff\x02"
        !          75378:             "\x13" }  },
        !          75379:       /* --- pixel bitmap for stmary325 char#125 (noname) --- */
        !          75380:       { 125,109382,                     /* character number, location */
        !          75381:           1, 0,  -80, 0,      /* topleft row,col, and botleft row,col */
        !          75382:           { 20,   81, 2,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          75383:             "\xff\x02\x00\x14\xff\x4d\x08\x03\x06\x03" }  },
        !          75384:       /* --- pixel bitmap for stmary325 char#126 (noname) --- */
        !          75385:       { 126,110611,                     /* character number, location */
        !          75386:           3, 0,  -78, 0,      /* topleft row,col, and botleft row,col */
        !          75387:           { 20,   81, 2,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          75388:             "\xff\x4d\x08\x03\x06\x03\x00\xff\x02\x14" }  },
        !          75389:       /* --- pixel bitmap for stmary325 char#127 (noname) --- */
        !          75390:       { 127,111756,                     /* character number, location */
        !          75391:           2, 8,  -28, 8,      /* topleft row,col, and botleft row,col */
        !          75392:           { 12,   30, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          75393:             "\xfe\x03\x63\x0f\xe3\x63" }  },
        !          75394:       /* --- trailer  --- */
        !          75395:       { -99, -999,  0,0,0,0, { 0,0,0,0, (pixbyte *)"\0" }  }
        !          75396:    } ;
        !          75397: 
        !          75398: 
        !          75399: /* --- size=9 for .450gf ---
        !          75400:  * mf '\mode=preview; mag=magstep(-9.62468787106292402266); input stmary10'
        !          75401:  * --------------------------------------------------------------------- */
        !          75402: /* --- fontdef for stmary450 --- */
        !          75403: static	chardef  stmary450[] =
        !          75404:    {
        !          75405:       /* --- pixel bitmap for stmary450 char#0 \shortleftarrow --- */
        !          75406:       {   0,  948,                      /* character number, location */
        !          75407:          26, 3,    5, 3,      /* topleft row,col, and botleft row,col */
        !          75408:           { 42,   21, 2,51, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          75409:             "\x0a\x02\x1e\x00\xff\x01\x09\x02\x1f\x00\x08\x02\x27"
        !          75410:             "\x03\x27\x02\x27\x02\x27\x02\x26\x03\x26\x27\x01\x2a"
        !          75411:             "\x02\x27\x04\x03\x29\x02\x29\x02\x29\x02\x28\x03\x28"
        !          75412:             "\x02\x20\x00\xff\x01\x09\x02\x1f\x00\x0a\x02\x1e" }  },
        !          75413:       /* --- pixel bitmap for stmary450 char#1 \shortrightarrow --- */
        !          75414:       {   1, 1911,                      /* character number, location */
        !          75415:          26, 3,    5, 3,      /* topleft row,col, and botleft row,col */
        !          75416:           { 42,   21, 2,51, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          75417:             "\x1e\x02\x0a\x00\xff\x01\x1f\x02\x09\x00\x20\x02\x28"
        !          75418:             "\x03\x28\x02\x29\x02\x29\x02\x29\x03\x04\x27\x02\x2a"
        !          75419:             "\x01\x27\x26\x03\x26\x02\x27\x02\x27\x02\x27\x03\x27"
        !          75420:             "\x02\x08\x00\xff\x01\x1f\x02\x09\x00\x1e\x02\x0a" }  },
        !          75421:       /* --- pixel bitmap for stmary450 char#2 \shortuparrow --- */
        !          75422:       {   2, 2734,                      /* character number, location */
        !          75423:          36, 5,   -5, 5,      /* topleft row,col, and botleft row,col */
        !          75424:           { 21,   41, 3,67, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          75425:             "\xf1\xa1\xa0\x93\x90\xf1\x85\x80\x77\xd2\x13\x12\xa3"
        !          75426:             "\x23\x23\x73\x33\x33\x44\x43\x44\x13\x63\x64\x83\x81"
        !          75427:             "\xfe\x93\x90\xfc\x93\x90\xa1\xae" }  },
        !          75428:       /* --- pixel bitmap for stmary450 char#3 \shortdownarrow --- */
        !          75429:       {   3, 3623,                      /* character number, location */
        !          75430:          36, 5,   -5, 5,      /* topleft row,col, and botleft row,col */
        !          75431:           { 21,   41, 3,67, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          75432:             "\xa1\xa0\xfe\x93\x90\xfc\x93\x91\x83\x84\x63\x63\x14"
        !          75433:             "\x43\x44\x43\x33\x33\x73\x23\x23\xa2\x13\x12\xd7\x70"
        !          75434:             "\xf1\x85\x80\x93\x90\xf1\xa1\xae" }  },
        !          75435:       /* --- pixel bitmap for stmary450 char#4 \Yup --- */
        !          75436:       {   4, 4292,                      /* character number, location */
        !          75437:          32, 4,    2, 4,      /* topleft row,col, and botleft row,col */
        !          75438:           { 27,   30, 3,72, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          75439:             "\xfe\xc3\xc0\xc3\xe0\xa4\xe0\x86\xe0\x68\xe0\x44\x24"
        !          75440:             "\xe0\x24\x44\xe4\x64\xc4\x84\xa4\xa4\x84\xc4\x64\xe4"
        !          75441:             "\x44\xe0\x24\x24\xe0\x48\xe0\x66\xe0\x82" }  },
        !          75442:       /* --- pixel bitmap for stmary450 char#5 \Ydown --- */
        !          75443:       {   5, 4925,                      /* character number, location */
        !          75444:          29, 4,   -1, 4,      /* topleft row,col, and botleft row,col */
        !          75445:           { 27,   30, 3,75, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          75446:             "\x03\xe0\x86\xe0\x63\x14\xe0\x44\x24\xe0\x24\x44\xe4"
        !          75447:             "\x64\xc4\x84\xa4\xa4\x84\xc4\x64\xe4\x44\xe0\x24\x24"
        !          75448:             "\xe0\x48\xe0\x66\xe0\x84\xb0\xfe\xc3\xc0\xc3\xc0" }  },
        !          75449:       /* --- pixel bitmap for stmary450 char#6 \Yleft --- */
        !          75450:       {   6, 5599,                      /* character number, location */
        !          75451:          30, 3,    1, 3,      /* topleft row,col, and botleft row,col */
        !          75452:           { 32,   29, 2,61, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          75453:             "\x1d\x03\x1c\x04\x1b\x04\x1b\x04\x1b\x04\x1b\x04\x1b"
        !          75454:             "\x04\x1b\x04\x1b\x04\x1b\x04\x1b\x04\x1b\x04\x0b\x14"
        !          75455:             "\x0b\xff\x01\x14\x0c\x00\x11\x04\x1d\x04\x1d\x04\x1d"
        !          75456:             "\x04\x1d\x04\x1d\x04\x1d\x04\x1d\x04\x1d\x04\x1d\x04"
        !          75457:             "\x1d\x04\x1d\x04\x1d\x03\x1e\x01\x01" }  },
        !          75458:       /* --- pixel bitmap for stmary450 char#7 \Yright --- */
        !          75459:       {   7, 6250,                      /* character number, location */
        !          75460:          30, 3,    1, 3,      /* topleft row,col, and botleft row,col */
        !          75461:           { 32,   29, 2,61, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          75462:             "\x00\x03\x1d\x04\x1d\x04\x1d\x04\x1d\x04\x1d\x04\x1d"
        !          75463:             "\x04\x1d\x04\x1d\x04\x1d\x04\x1d\x04\x1d\x04\x1d\x14"
        !          75464:             "\x01\x00\xff\x01\x0c\x14\x0b\x04\x1b\x04\x1b\x04\x1b"
        !          75465:             "\x04\x1b\x04\x1b\x04\x1b\x04\x1b\x04\x1b\x04\x1b\x04"
        !          75466:             "\x1b\x04\x1b\x04\x1c\x03\x1e\x01\x1e" }  },
        !          75467:       /* --- pixel bitmap for stmary450 char#8 \varcurlyvee --- */
        !          75468:       {   8, 6917,                      /* character number, location */
        !          75469:          43, 0,  -13, 0,      /* topleft row,col, and botleft row,col */
        !          75470:           { 43,   56, 3,251, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          75471:             "\x12\xe0\xe0\x97\xe0\xe0\x74\x14\xe0\xe0\x55\x24\xe0"
        !          75472:             "\xe0\x34\x54\xe0\xe0\x14\x74\xe0\xd4\x94\xe0\xb4\xb4"
        !          75473:             "\xe0\x94\xd4\xe0\x74\xe0\x14\xe0\x54\xe0\x33\xe0\x53"
        !          75474:             "\xe0\x44\xe0\x34\xe0\x54\xe0\x14\xe0\x73\xe0\x13\xe0"
        !          75475:             "\x84\xd4\xe0\x93\xd3\xe0\xa4\xb4\xe0\xb3\xb3\xe0\xc4"
        !          75476:             "\x94\xe0\xd3\x93\xe0\xe4\x74\xe0\xf1\xe0\x13\x73\xe0"
        !          75477:             "\x10\xe0\x14\x54\xe0\x10\xf1\xe0\x23\x53\xe0\x20\xe0"
        !          75478:             "\x24\x34\xe0\x20\xf2\xe0\x33\x33\xe0\x30\xe0\x34\x14"
        !          75479:             "\xe0\x30\xf2\xe0\x43\x13\xe0\x40\xe0\x47\xe0\x40\xf7"
        !          75480:             "\xe0\x55\xe0\x50\xfc\xe0\x63\xe0\x60" }  },
        !          75481:       /* --- pixel bitmap for stmary450 char#9 \varcurlywedge --- */
        !          75482:       {   9, 7718,                      /* character number, location */
        !          75483:          43, 0,  -13, 0,      /* topleft row,col, and botleft row,col */
        !          75484:           { 43,   56, 3,256, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          75485:             "\xe0\x72\xe0\x60\xfa\xe0\x63\xe0\x60\xf7\xe0\x55\xe0"
        !          75486:             "\x50\xe0\x47\xe0\x40\xf3\xe0\x43\x13\xe0\x40\xe0\x34"
        !          75487:             "\x14\xe0\x30\xf1\xe0\x33\x33\xe0\x30\xe0\x24\x34\xe0"
        !          75488:             "\x20\xf2\xe0\x23\x53\xe0\x20\xe0\x14\x54\xe0\xe0\x23"
        !          75489:             "\x73\xe0\xe0\x14\x74\xe0\xf1\xe3\x93\xe0\xd4\x94\xe0"
        !          75490:             "\xc3\xb3\xe0\xb4\xb4\xe0\xa3\xd3\xe0\x94\xd4\xe0\x74"
        !          75491:             "\xe0\x14\xe0\x63\xe0\x33\xe0\x54\xe0\x34\xe0\x34\xe0"
        !          75492:             "\x54\xe0\x23\xe0\x73\xe0\x14\xe0\x74\xd4\xe0\x94\xb4"
        !          75493:             "\xe0\xb4\x94\xe0\xd4\x74\xe0\xe0\x14\x54\xe0\xe0\x34"
        !          75494:             "\x34\xe0\xe0\x54\x14\xe0\xe0\x77\xe0\xe0\x93" }  },
        !          75495:       /* --- pixel bitmap for stmary450 char#10 \minuso --- */
        !          75496:       {  10, 8649,                      /* character number, location */
        !          75497:          30, 3,    1, 3,      /* topleft row,col, and botleft row,col */
        !          75498:           { 42,   29, 3,177, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          75499:             "\xe0\x54\xe0\xe0\x6c\xe0\xe0\x1e\xe0\xc8\x28\xe0\x95"
        !          75500:             "\xa5\xe0\x75\xc5\xe0\x54\xe0\x24\xe0\x43\xe0\x43\xe0"
        !          75501:             "\x34\xe0\x44\xe0\x23\xe0\x63\xe0\x14\xe0\x64\x70\xf1"
        !          75502:             "\x73\xe0\x83\x7f\x2e\x0e\x0e\xf1\x73\xe0\x83\x70\x74"
        !          75503:             "\xe0\x64\xe0\x13\xe0\x63\xe0\x24\xe0\x44\xe0\x33\xe0"
        !          75504:             "\x43\xe0\x44\xe0\x24\xe0\x55\xc5\xe0\x75\xa5\xe0\x98"
        !          75505:             "\x28\xe0\xce\xe0\xe0\x1c\xe0\xe0\x64\xe0\x50" }  },
        !          75506:       /* --- pixel bitmap for stmary450 char#11 \baro --- */
        !          75507:       {  11, 9393,                      /* character number, location */
        !          75508:          36, 4,   -5, 4,      /* topleft row,col, and botleft row,col */
        !          75509:           { 27,   41, 3,133, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          75510:             "\xf6\xc3\xc0\xa7\xe0\x3d\xde\x01\xb6\x13\x16\x94\x43"
        !          75511:             "\x44\x74\x53\x54\x54\x63\x64\x34\x73\x74\x10\xf1\x13"
        !          75512:             "\x83\x83\x14\x83\x84\x0f\x43\x93\x93\x04\x83\x84\xf1"
        !          75513:             "\x13\x83\x83\x10\x14\x73\x74\x34\x63\x64\x54\x53\x54"
        !          75514:             "\x74\x43\x44\x96\x13\x16\xbe\x01\xdd\xe0\x37\xa0\xf6"
        !          75515:             "\xc3\xc0" }  },
        !          75516:       /* --- pixel bitmap for stmary450 char#12 \sslash --- */
        !          75517:       {  12,10175,                      /* character number, location */
        !          75518:          47, 4,  -16, 4,      /* topleft row,col, and botleft row,col */
        !          75519:           { 34,   63, 3,345, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          75520:             "\xe0\x82\x82\xe0\x73\x73\xe0\x64\x64\xf1\xe0\x63\x73"
        !          75521:             "\x10\xe0\x54\x64\x10\xf1\xe0\x53\x73\x20\xe0\x44\x64"
        !          75522:             "\x20\xf1\xe0\x43\x73\x30\xe0\x34\x64\x30\xf1\xe0\x33"
        !          75523:             "\x73\x40\xe0\x24\x64\x40\xf1\xe0\x23\x73\x50\xe0\x14"
        !          75524:             "\x64\x50\xf1\xe0\x13\x73\x60\xe4\x64\xe0\x63\x73\xe0"
        !          75525:             "\x64\x64\x70\xf1\xd3\x73\x80\xc4\x64\x80\xf1\xc3\x73"
        !          75526:             "\x90\xb4\x64\x90\xf1\xb3\x73\xa0\xa4\x64\xa0\xf1\xa3"
        !          75527:             "\x73\xb0\x94\x64\xb0\xf1\x93\x73\xc0\x84\x64\xc0\xf1"
        !          75528:             "\x83\x73\xd0\x74\x64\xe0\x63\x73\xe0\x64\x64\xe0\xf1"
        !          75529:             "\x63\x73\xe0\x10\x54\x64\xe0\x10\xf1\x53\x73\xe0\x20"
        !          75530:             "\x44\x64\xe0\x20\xf1\x43\x73\xe0\x30\x34\x64\xe0\x30"
        !          75531:             "\xf1\x33\x73\xe0\x40\x24\x64\xe0\x40\xf1\x23\x73\xe0"
        !          75532:             "\x50\x14\x64\xe0\x50\xf1\x13\x73\xe0\x64\x64\xe0\x6f"
        !          75533:             "\x13\x73\xe0\x70" }  },
        !          75534:       /* --- pixel bitmap for stmary450 char#13 \bblash --- */
        !          75535:       {  13,11044,                      /* character number, location */
        !          75536:          47, 4,  -16, 4,      /* topleft row,col, and botleft row,col */
        !          75537:           { 34,   63, 3,348, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          75538:             "\xf1\x03\x73\xe0\x74\x64\xe0\x60\xf1\x13\x73\xe0\x60"
        !          75539:             "\x14\x64\xe0\x50\xf1\x23\x73\xe0\x50\x24\x64\xe0\x40"
        !          75540:             "\xf1\x33\x73\xe0\x40\x34\x64\xe0\x30\xf1\x43\x73\xe0"
        !          75541:             "\x30\x44\x64\xe0\x20\xf1\x53\x73\xe0\x20\x54\x64\xe0"
        !          75542:             "\x10\xf1\x63\x73\xe0\x10\x64\x64\xe0\x73\x73\xe0\x74"
        !          75543:             "\x64\xd0\xf1\x83\x73\xd0\x84\x64\xc0\xf1\x93\x73\xc0"
        !          75544:             "\x94\x64\xb0\xf1\xa3\x73\xb0\xa4\x64\xa0\xf1\xb3\x73"
        !          75545:             "\xa0\xb4\x64\x90\xf1\xc3\x73\x90\xc4\x64\x80\xf1\xd3"
        !          75546:             "\x73\x80\xd4\x64\xe0\x73\x73\xe0\x74\x64\x60\xf1\xe0"
        !          75547:             "\x13\x73\x60\xe0\x14\x64\x50\xf1\xe0\x23\x73\x50\xe0"
        !          75548:             "\x24\x64\x40\xf1\xe0\x33\x73\x40\xe0\x34\x64\x30\xf1"
        !          75549:             "\xe0\x43\x73\x30\xe0\x44\x64\x20\xf1\xe0\x53\x73\x20"
        !          75550:             "\xe0\x54\x64\x10\xf1\xe0\x63\x73\x10\xe0\x64\x64\xe0"
        !          75551:             "\x73\x73\xe0\x82\x82" }  },
        !          75552:       /* --- pixel bitmap for stmary450 char#14 \moo --- */
        !          75553:       {  14,12027,                      /* character number, location */
        !          75554:          32, 7,   -1, 7,      /* topleft row,col, and botleft row,col */
        !          75555:           { 35,   33, 3,91, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          75556:             "\xe0\x32\xe0\x20\xfd\xe0\x23\xe0\x2f\x2e\x0e\x07\xf2"
        !          75557:             "\xe0\x23\xe0\x20\xf3\xe0\x15\xe0\x10\x11\xc7\xc1\x13"
        !          75558:             "\xb3\x13\xb6\xa4\x14\xa7\x84\x34\x84\x15\x45\x55\x45"
        !          75559:             "\x3c\x7c\x5a\x9a\x86\xd6\x53" }  },
        !          75560:       /* --- pixel bitmap for stmary450 char#15 \varotimes --- */
        !          75561:       {  15,12864,                      /* character number, location */
        !          75562:          37, 3,   -6, 3,      /* topleft row,col, and botleft row,col */
        !          75563:           { 43,   43, 3,315, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          75564:             "\xe0\x39\xe0\xe0\x2e\x03\xe0\xae\x07\xe0\x78\x78\xe0"
        !          75565:             "\x46\xe0\x16\xe0\x15\xe0\x55\xd5\xe0\x75\xb5\xe0\xa4"
        !          75566:             "\x97\xe0\x86\x83\x14\xe0\x67\x74\x24\xe0\x44\x14\x54"
        !          75567:             "\x44\xe0\x24\x34\x43\x64\xe4\x53\x34\x74\xc4\x64\x23"
        !          75568:             "\x94\xa4\x83\x23\xa4\x84\x93\x23\xb4\x64\xa3\x14\xc4"
        !          75569:             "\x44\xb7\xe4\x24\xd6\xe0\x18\xe6\xe0\x26\xe0\x16\xe0"
        !          75570:             "\x34\xe0\x26\xe0\x26\xe0\x16\xe0\x18\xe6\xe4\x24\xd7"
        !          75571:             "\xc4\x44\xb4\x13\xb4\x64\xa3\x23\xa4\x84\x93\x23\x94"
        !          75572:             "\xa4\x83\x24\x74\xc4\x64\x33\x64\xe4\x53\x44\x44\xe0"
        !          75573:             "\x24\x34\x54\x24\xe0\x44\x14\x73\x14\xe0\x67\x87\xe0"
        !          75574:             "\x86\x95\xe0\xa4\xb5\xe0\x75\xd5\xe0\x55\xe0\x16\xe0"
        !          75575:             "\x16\xe0\x48\x78\xe0\x7e\x07\xe0\xae\x03\xe0\xe0\x29"
        !          75576:             "\xe0\x34" }  },
        !          75577:       /* --- pixel bitmap for stmary450 char#16 \varoast --- */
        !          75578:       {  16,13972,                      /* character number, location */
        !          75579:          37, 3,   -6, 3,      /* topleft row,col, and botleft row,col */
        !          75580:           { 43,   43, 3,327, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          75581:             "\xe0\x39\xe0\xe0\x2e\x03\xe0\xae\x07\xe0\x78\x78\xe0"
        !          75582:             "\x46\xe0\x16\xe0\x15\xe0\x55\xd5\xe0\x75\xb4\xc1\xc4"
        !          75583:             "\x94\xc3\xc4\x83\xd3\xd3\x74\xd3\xd4\x54\xe3\xe4\x43"
        !          75584:             "\xe0\x13\xe0\x13\x34\xe0\x13\xe0\x14\x23\x53\x83\x83"
        !          75585:             "\x53\x23\x55\x71\x75\x53\x23\x65\x61\x65\x63\x14\x85"
        !          75586:             "\x41\x45\x87\xb4\x31\x34\xb6\xd3\x21\x23\xd6\xe0\x17"
        !          75587:             "\xe0\x16\xe0\x33\xe0\x36\xe0\x17\xe0\x16\xd3\x21\x23"
        !          75588:             "\xd6\xb4\x31\x34\xb7\x85\x41\x45\x84\x13\x65\x61\x65"
        !          75589:             "\x63\x23\x55\x71\x75\x53\x23\x53\x83\x83\x53\x24\xe0"
        !          75590:             "\x13\xe0\x14\x33\xe0\x13\xe0\x13\x44\xe3\xe4\x54\xd3"
        !          75591:             "\xd4\x73\xd3\xd3\x84\xc3\xc4\x94\xc1\xc4\xb5\xe0\x75"
        !          75592:             "\xd5\xe0\x55\xe0\x16\xe0\x16\xe0\x48\x78\xe0\x7e\x07"
        !          75593:             "\xe0\xae\x03\xe0\xe0\x29\xe0\x33" }  },
        !          75594:       /* --- pixel bitmap for stmary450 char#17 \varobar --- */
        !          75595:       {  17,14973,                      /* character number, location */
        !          75596:          37, 3,   -6, 3,      /* topleft row,col, and botleft row,col */
        !          75597:           { 43,   43, 3,257, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          75598:             "\xe0\x39\xe0\xe0\x2e\x03\xe0\xae\x07\xe0\x78\x23\x28"
        !          75599:             "\xe0\x46\x63\x66\xe0\x15\x83\x85\xd5\x93\x95\xb4\xb3"
        !          75600:             "\xb4\x94\xc3\xc4\x83\xd3\xd3\x74\xd3\xd4\x54\xe3\xe4"
        !          75601:             "\x43\xe0\x13\xe0\x13\x34\xe0\x13\xe0\x14\x10\xf2\x13"
        !          75602:             "\xe0\x23\xe0\x23\x14\xe0\x23\xe0\x24\x0f\x63\xe0\x33"
        !          75603:             "\xe0\x33\x04\xe0\x23\xe0\x24\xf2\x13\xe0\x23\xe0\x23"
        !          75604:             "\x10\x14\xe0\x13\xe0\x14\x33\xe0\x13\xe0\x13\x44\xe3"
        !          75605:             "\xe4\x54\xd3\xd4\x73\xd3\xd3\x84\xc3\xc4\x94\xb3\xb4"
        !          75606:             "\xb5\x93\x95\xd5\x83\x85\xe0\x16\x63\x66\xe0\x48\x23"
        !          75607:             "\x28\xe0\x7e\x07\xe0\xae\x03\xe0\xe0\x29\xe0\x34" }  },
        !          75608:       /* --- pixel bitmap for stmary450 char#18 \varodot --- */
        !          75609:       {  18,15933,                      /* character number, location */
        !          75610:          37, 3,   -6, 3,      /* topleft row,col, and botleft row,col */
        !          75611:           { 43,   43, 3,265, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          75612:             "\xe0\x39\xe0\xe0\x2e\x03\xe0\xae\x07\xe0\x78\x78\xe0"
        !          75613:             "\x46\xe0\x16\xe0\x15\xe0\x55\xd5\xe0\x75\xb4\xe0\xb4"
        !          75614:             "\x94\xe0\xd4\x83\xe0\xe0\x13\x74\xe0\xe0\x14\x54\xe0"
        !          75615:             "\xe0\x34\x43\xe0\xe0\x53\x34\xe0\xe0\x54\x10\xf2\x13"
        !          75616:             "\xe0\xe0\x73\x14\xe0\x15\xe0\x17\xe0\x17\xe0\x13\x0f"
        !          75617:             "\x43\xe9\xe3\x03\xe0\x17\xe0\x17\xe0\x15\xe0\x14\xf2"
        !          75618:             "\x13\xe0\xe0\x73\x10\x14\xe0\xe0\x54\x33\xe0\xe0\x53"
        !          75619:             "\x44\xe0\xe0\x34\x54\xe0\xe0\x14\x73\xe0\xe0\x13\x84"
        !          75620:             "\xe0\xd4\x94\xe0\xb4\xb5\xe0\x75\xd5\xe0\x55\xe0\x16"
        !          75621:             "\xe0\x16\xe0\x48\x78\xe0\x7e\x07\xe0\xae\x03\xe0\xe0"
        !          75622:             "\x29\xe0\x33" }  },
        !          75623:       /* --- pixel bitmap for stmary450 char#19 \varoslash --- */
        !          75624:       {  19,16848,                      /* character number, location */
        !          75625:          37, 3,   -6, 3,      /* topleft row,col, and botleft row,col */
        !          75626:           { 43,   43, 3,307, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          75627:             "\xe0\x39\xe0\xe0\x2e\x03\xe0\xae\x07\xe0\x78\x78\xe0"
        !          75628:             "\x46\xe0\x16\xe0\x15\xe0\x55\xd5\xe0\x75\xb4\xe0\xb4"
        !          75629:             "\x94\xe0\xb6\x83\xe0\xb7\x74\xe0\xa4\x14\x54\xe0\xa4"
        !          75630:             "\x34\x43\xe0\xa4\x53\x34\xe0\x94\x64\x23\xe0\x94\x83"
        !          75631:             "\x23\xe0\x84\x93\x23\xe0\x74\xa3\x14\xe0\x64\xb7\xe0"
        !          75632:             "\x64\xd6\xe0\x54\xe6\xe0\x44\xe0\x16\xe0\x34\xe0\x26"
        !          75633:             "\xe0\x24\xe0\x36\xe0\x14\xe0\x46\xe4\xe0\x57\xc4\xe0"
        !          75634:             "\x54\x13\xb4\xe0\x63\x23\xa4\xe0\x73\x23\x94\xe0\x83"
        !          75635:             "\x24\x74\xe0\x84\x33\x64\xe0\x93\x44\x44\xe0\x94\x54"
        !          75636:             "\x24\xe0\x94\x73\x14\xe0\xa3\x87\xe0\xa4\x95\xe0\xa4"
        !          75637:             "\xb5\xe0\x75\xd5\xe0\x55\xe0\x16\xe0\x16\xe0\x48\x78"
        !          75638:             "\xe0\x7e\x07\xe0\xae\x03\xe0\xe0\x29\xe0\x30" }  },
        !          75639:       /* --- pixel bitmap for stmary450 char#20 \varobslash --- */
        !          75640:       {  20,17797,                      /* character number, location */
        !          75641:          37, 3,   -6, 3,      /* topleft row,col, and botleft row,col */
        !          75642:           { 43,   43, 3,307, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          75643:             "\xe0\x39\xe0\xe0\x2e\x03\xe0\xae\x07\xe0\x78\x78\xe0"
        !          75644:             "\x46\xe0\x16\xe0\x15\xe0\x55\xd5\xe0\x75\xb5\xe0\xa4"
        !          75645:             "\x97\xe0\xa4\x83\x14\xe0\xa3\x74\x24\xe0\x94\x54\x44"
        !          75646:             "\xe0\x94\x43\x64\xe0\x93\x34\x74\xe0\x84\x23\x94\xe0"
        !          75647:             "\x83\x23\xa4\xe0\x73\x23\xb4\xe0\x63\x14\xc4\xe0\x57"
        !          75648:             "\xe4\xe0\x56\xe0\x14\xe0\x46\xe0\x24\xe0\x36\xe0\x34"
        !          75649:             "\xe0\x26\xe0\x44\xe0\x16\xe0\x54\xe6\xe0\x64\xd7\xe0"
        !          75650:             "\x64\xb4\x13\xe0\x74\xa3\x23\xe0\x84\x93\x23\xe0\x94"
        !          75651:             "\x83\x24\xe0\x94\x64\x33\xe0\xa4\x53\x44\xe0\xa4\x34"
        !          75652:             "\x54\xe0\xa4\x14\x73\xe0\xb7\x84\xe0\xb6\x94\xe0\xb4"
        !          75653:             "\xb5\xe0\x75\xd5\xe0\x55\xe0\x16\xe0\x16\xe0\x48\x78"
        !          75654:             "\xe0\x7e\x07\xe0\xae\x03\xe0\xe0\x29\xe0\x30" }  },
        !          75655:       /* --- pixel bitmap for stmary450 char#21 \varocircle --- */
        !          75656:       {  21,18885,                      /* character number, location */
        !          75657:          37, 3,   -6, 3,      /* topleft row,col, and botleft row,col */
        !          75658:           { 43,   43, 3,285, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          75659:             "\xe0\x39\xe0\xe0\x2e\x03\xe0\xae\x07\xe0\x78\x78\xe0"
        !          75660:             "\x46\xe0\x16\xe0\x15\xe0\x55\xd5\xe0\x75\xb4\xe0\xb4"
        !          75661:             "\x94\xe0\xd4\x83\xe0\xe0\x13\x74\xb7\xb4\x54\xab\xa4"
        !          75662:             "\x43\x9e\x01\x93\x34\x86\x56\x84\x23\x85\x95\x83\x23"
        !          75663:             "\x83\xd3\x83\x23\x74\xd4\x73\x14\x73\xe0\x13\x77\x74"
        !          75664:             "\xe0\x14\x73\x0f\x43\x73\xe0\x33\x73\x03\x74\xe0\x14"
        !          75665:             "\x77\x73\xe0\x13\x74\x13\x74\xd4\x73\x23\x83\xd3\x83"
        !          75666:             "\x23\x85\x95\x83\x24\x86\x56\x84\x33\x9e\x01\x93\x44"
        !          75667:             "\xab\xa4\x54\xb7\xb4\x73\xe0\xe0\x13\x84\xe0\xd4\x94"
        !          75668:             "\xe0\xb4\xb5\xe0\x75\xd5\xe0\x55\xe0\x16\xe0\x16\xe0"
        !          75669:             "\x48\x78\xe0\x7e\x07\xe0\xae\x03\xe0\xe0\x29\xe0\x38" }  },
        !          75670:       /* --- pixel bitmap for stmary450 char#22 \varoplus --- */
        !          75671:       {  22,19861,                      /* character number, location */
        !          75672:          37, 3,   -6, 3,      /* topleft row,col, and botleft row,col */
        !          75673:           { 43,   43, 3,279, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          75674:             "\xe0\x39\xe0\xe0\x2e\x03\xe0\xae\x07\xe0\x78\x23\x28"
        !          75675:             "\xe0\x46\x63\x66\xe0\x15\x83\x85\xd5\x93\x95\xb4\xb3"
        !          75676:             "\xb4\x94\xc3\xc4\x83\xd3\xd3\x74\xd3\xd4\x54\xe3\xe4"
        !          75677:             "\x43\xe0\x13\xe0\x13\x34\xe0\x13\xe0\x14\x10\xf2\x13"
        !          75678:             "\xe0\x23\xe0\x23\x14\xe0\x23\xe0\x24\x0f\x13\xe0\x33"
        !          75679:             "\xe0\x33\x0f\x2e\x0e\x0e\x01\x0f\x13\xe0\x33\xe0\x33"
        !          75680:             "\x04\xe0\x23\xe0\x24\xf2\x13\xe0\x23\xe0\x23\x10\x14"
        !          75681:             "\xe0\x13\xe0\x14\x33\xe0\x13\xe0\x13\x44\xe3\xe4\x54"
        !          75682:             "\xd3\xd4\x73\xd3\xd3\x84\xc3\xc4\x94\xb3\xb4\xb5\x93"
        !          75683:             "\x95\xd5\x83\x85\xe0\x16\x63\x66\xe0\x48\x23\x28\xe0"
        !          75684:             "\x7e\x07\xe0\xae\x03\xe0\xe0\x29\xe0\x30" }  },
        !          75685:       /* --- pixel bitmap for stmary450 char#23 \varominus --- */
        !          75686:       {  23,20820,                      /* character number, location */
        !          75687:          37, 3,   -6, 3,      /* topleft row,col, and botleft row,col */
        !          75688:           { 43,   43, 3,267, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          75689:             "\xe0\x39\xe0\xe0\x2e\x03\xe0\xae\x07\xe0\x78\x78\xe0"
        !          75690:             "\x46\xe0\x16\xe0\x15\xe0\x55\xd5\xe0\x75\xb4\xe0\xb4"
        !          75691:             "\x94\xe0\xd4\x83\xe0\xe0\x13\x74\xe0\xe0\x14\x54\xe0"
        !          75692:             "\xe0\x34\x43\xe0\xe0\x53\x34\xe0\xe0\x54\x10\xf2\x13"
        !          75693:             "\xe0\xe0\x73\x14\xe0\xe0\x74\x0f\x13\xe0\xe0\x93\x0f"
        !          75694:             "\x2e\x0e\x0e\x01\x0f\x13\xe0\xe0\x93\x04\xe0\xe0\x74"
        !          75695:             "\xf2\x13\xe0\xe0\x73\x10\x14\xe0\xe0\x54\x33\xe0\xe0"
        !          75696:             "\x53\x44\xe0\xe0\x34\x54\xe0\xe0\x14\x73\xe0\xe0\x13"
        !          75697:             "\x84\xe0\xd4\x94\xe0\xb4\xb5\xe0\x75\xd5\xe0\x55\xe0"
        !          75698:             "\x16\xe0\x16\xe0\x48\x78\xe0\x7e\x07\xe0\xae\x03\xe0"
        !          75699:             "\xe0\x29\xe0\x3e" }  },
        !          75700:       /* --- pixel bitmap for stmary450 char#24 \boxast --- */
        !          75701:       {  24,21759,                      /* character number, location */
        !          75702:          35, 5,   -4, 5,      /* topleft row,col, and botleft row,col */
        !          75703:           { 39,   39, 3,174, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          75704:             "\xf2\x0e\x0e\x0b\x0f\x33\xe0\xe0\x53\x0f\x43\xe0\x13"
        !          75705:             "\xe0\x13\x03\x61\x83\x81\x66\x54\x63\x64\x56\x55\x61"
        !          75706:             "\x65\x56\x75\x41\x45\x76\x94\x31\x34\x96\xb4\x11\x14"
        !          75707:             "\xb6\xd7\xd6\xe0\x13\xe0\x16\xd7\xd6\xb4\x11\x14\xb6"
        !          75708:             "\x94\x31\x34\x96\x75\x41\x45\x76\x55\x61\x65\x56\x54"
        !          75709:             "\x63\x64\x56\x61\x83\x81\x63\x0f\x43\xe0\x13\xe0\x13"
        !          75710:             "\x0f\x33\xe0\xe0\x53\x0f\x2e\x0e\x0b" }  },
        !          75711:       /* --- pixel bitmap for stmary450 char#25 \boxbar --- */
        !          75712:       {  25,22664,                      /* character number, location */
        !          75713:          35, 5,   -4, 5,      /* topleft row,col, and botleft row,col */
        !          75714:           { 39,   39, 2,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          75715:             "\xff\x02\x00\x27\x00\xff\x20\x03\x0f\x03\x0f\x03\x00"
        !          75716:             "\xff\x02\x27" }  },
        !          75717:       /* --- pixel bitmap for stmary450 char#26 \boxdot --- */
        !          75718:       {  26,23537,                      /* character number, location */
        !          75719:          35, 5,   -4, 5,      /* topleft row,col, and botleft row,col */
        !          75720:           { 39,   39, 3,64, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          75721:             "\xf2\x0e\x0e\x0b\x0f\xb3\xe0\xe0\x53\x03\xe5\xe6\xd7"
        !          75722:             "\xd3\x0f\x43\xc9\xc3\x03\xd7\xd6\xe5\xe3\x0f\xb3\xe0"
        !          75723:             "\xe0\x53\x0f\x2e\x0e\x0b" }  },
        !          75724:       /* --- pixel bitmap for stmary450 char#27 \boxslash --- */
        !          75725:       {  27,24364,                      /* character number, location */
        !          75726:          35, 5,   -4, 5,      /* topleft row,col, and botleft row,col */
        !          75727:           { 39,   39, 3,216, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          75728:             "\xf2\x0e\x0e\x0b\x03\xe0\xe0\x38\xe0\xe0\x29\xe0\xe0"
        !          75729:             "\x1a\xe0\xe4\x16\xe0\xd4\x26\xe0\xc4\x36\xe0\xb4\x46"
        !          75730:             "\xe0\xa4\x56\xe0\x94\x66\xe0\x84\x76\xe0\x74\x86\xe0"
        !          75731:             "\x64\x96\xe0\x54\xa6\xe0\x44\xb6\xe0\x34\xc6\xe0\x24"
        !          75732:             "\xd6\xe0\x14\xe6\xe4\xe0\x16\xd4\xe0\x26\xc4\xe0\x36"
        !          75733:             "\xb4\xe0\x46\xa4\xe0\x56\x94\xe0\x66\x84\xe0\x76\x74"
        !          75734:             "\xe0\x86\x64\xe0\x96\x54\xe0\xa6\x44\xe0\xb6\x34\xe0"
        !          75735:             "\xc6\x24\xe0\xd6\x14\xe0\xea\xe0\xe0\x19\xe0\xe0\x23"
        !          75736:             "\x0f\x2e\x0e\x0b" }  },
        !          75737:       /* --- pixel bitmap for stmary450 char#28 \boxbslash --- */
        !          75738:       {  28,25230,                      /* character number, location */
        !          75739:          35, 5,   -4, 5,      /* topleft row,col, and botleft row,col */
        !          75740:           { 39,   39, 3,216, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          75741:             "\xf2\x0e\x0e\x0b\x06\xe0\xe0\x2a\xe0\xe0\x16\x14\xe0"
        !          75742:             "\xe6\x24\xe0\xd6\x34\xe0\xc6\x44\xe0\xb6\x54\xe0\xa6"
        !          75743:             "\x64\xe0\x96\x74\xe0\x86\x84\xe0\x76\x94\xe0\x66\xa4"
        !          75744:             "\xe0\x56\xb4\xe0\x46\xc4\xe0\x36\xd4\xe0\x26\xe4\xe0"
        !          75745:             "\x16\xe0\x14\xe6\xe0\x24\xd6\xe0\x34\xc6\xe0\x44\xb6"
        !          75746:             "\xe0\x54\xa6\xe0\x64\x96\xe0\x74\x86\xe0\x84\x76\xe0"
        !          75747:             "\x94\x66\xe0\xa4\x56\xe0\xb4\x46\xe0\xc4\x36\xe0\xd4"
        !          75748:             "\x26\xe0\xe4\x16\xe0\xe0\x1a\xe0\xe0\x29\xe0\xe0\x35"
        !          75749:             "\x0f\x2e\x0e\x0b" }  },
        !          75750:       /* --- pixel bitmap for stmary450 char#29 \boxcircle --- */
        !          75751:       {  29,26100,                      /* character number, location */
        !          75752:          35, 5,   -3, 5,      /* topleft row,col, and botleft row,col */
        !          75753:           { 38,   38, 3,134, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          75754:             "\x1e\x0e\x09\x0f\x1e\x0e\x0a\x0f\x63\xe0\xe0\x43\x03"
        !          75755:             "\xd6\xd6\xba\xb6\xac\xa6\x95\x45\x96\x84\x84\x86\x83"
        !          75756:             "\xa3\x86\x74\xa4\x73\x0f\x33\x73\xc3\x73\x03\x74\xa4"
        !          75757:             "\x76\x83\xa3\x86\x84\x84\x86\x95\x45\x96\xac\xa6\xba"
        !          75758:             "\xb6\xd6\xd3\x0f\x63\xe0\xe0\x43\x0f\x1e\x0e\x0a\x1e"
        !          75759:             "\x0e\x09" }  },
        !          75760:       /* --- pixel bitmap for stmary450 char#30 \boxbox --- */
        !          75761:       {  30,26963,                      /* character number, location */
        !          75762:          35, 5,   -4, 5,      /* topleft row,col, and botleft row,col */
        !          75763:           { 39,   39, 3,66, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          75764:             "\xf2\x0e\x0e\x0b\x0f\x73\xe0\xe0\x53\x0f\x23\x8e\x03"
        !          75765:             "\x83\x0f\xa3\x83\xb3\x83\x0f\x23\x8e\x03\x83\x0f\x73"
        !          75766:             "\xe0\xe0\x53\x0f\x2e\x0e\x0b" }  },
        !          75767:       /* --- pixel bitmap for stmary450 char#31 \boxempty --- */
        !          75768:       {  31,27822,                      /* character number, location */
        !          75769:          35, 5,   -4, 5,      /* topleft row,col, and botleft row,col */
        !          75770:           { 39,   39, 2,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          75771:             "\xff\x02\x00\x27\x00\xff\x20\x03\x21\x03\x00\xff\x02"
        !          75772:             "\x27" }  },
        !          75773:       /* --- pixel bitmap for stmary450 char#32 \lightning --- */
        !          75774:       {  32,28803,                      /* character number, location */
        !          75775:          43, 4,  -12, 4,      /* topleft row,col, and botleft row,col */
        !          75776:           { 21,   55, 3,215, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          75777:             "\xe0\x42\xe0\x44\xf1\xe0\x33\x10\xe0\x24\xe0\x33\xe0"
        !          75778:             "\x34\xe0\x33\xe0\x34\x30\xf1\xe3\x40\xd4\xe0\x33\xe0"
        !          75779:             "\x34\xe0\x33\xe0\x34\xe0\x33\xe0\x34\x70\xf1\xa3\x80"
        !          75780:             "\x94\xe0\x33\xe0\x34\x71\x93\x55\x74\x37\x73\x1a\x7d"
        !          75781:             "\x79\x14\x76\x43\x84\x63\xe0\x34\xe0\x33\xe0\x34\xe0"
        !          75782:             "\x33\xe0\x34\x40\xf1\xd3\x50\xc4\xe0\x33\xe0\x34\x71"
        !          75783:             "\x93\x82\x74\x70\xf1\x22\x63\x80\x32\x44\xc2\x33\xd2"
        !          75784:             "\x24\xe2\x13\xe0\x16\x55\x55\x28\x79\xc6\xe0\x14\xe0"
        !          75785:             "\x32\xe0\x51\xeb" }  },
        !          75786:       /* --- pixel bitmap for stmary450 char#33 \merge --- */
        !          75787:       {  33,29688,                      /* character number, location */
        !          75788:          46, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          75789:           { 47,   46, 3,356, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          75790:             "\xe0\x11\xe0\x11\xe0\xe0\x13\xd3\xe0\xf1\xe4\xb4\xe0"
        !          75791:             "\xd5\xb5\xd0\xf1\xd6\x96\xd0\xc7\x97\xe0\xa3\x14\x74"
        !          75792:             "\x13\xe0\xa3\x23\x73\x23\xe0\x94\x23\x73\x24\xe0\x83"
        !          75793:             "\x34\x54\x33\xe0\x83\x43\x53\x43\xe0\x74\x43\x53\x44"
        !          75794:             "\xe0\x63\x54\x34\x53\xe0\x63\x63\x33\x63\xe0\x54\x63"
        !          75795:             "\x33\x64\xe0\x43\x74\x14\x73\xe0\x43\x83\x13\x83\xe0"
        !          75796:             "\x34\x83\x13\x84\xe0\x23\x97\x93\xe0\x23\xa5\xa3\xe0"
        !          75797:             "\x14\xa5\xa4\xe3\xb5\xb3\xe3\xc3\xc3\xd4\xc3\xc4\x60"
        !          75798:             "\xf1\x63\xc5\xc3\x60\x54\xc5\xc4\xa3\xc7\xc3\xa3\xc3"
        !          75799:             "\x13\xc3\x94\xc3\x13\xc4\x83\xc4\x14\xc3\x83\xc3\x33"
        !          75800:             "\xc3\x74\xc3\x33\xc4\x63\xc4\x34\xc3\x63\xc3\x53\xc3"
        !          75801:             "\x54\xc3\x53\xc4\x43\xc4\x54\xc3\x43\xc3\x73\xc3\x34"
        !          75802:             "\xc3\x73\xc4\x23\xc4\x74\xc3\x23\xc3\x93\xc3\x14\xc3"
        !          75803:             "\x93\xc7\xc4\x94\xc3\x12\xd2\xb2\xe2" }  },
        !          75804:       /* --- pixel bitmap for stmary450 char#34 \vartimes --- */
        !          75805:       {  34,30573,                      /* character number, location */
        !          75806:          43, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          75807:           { 27,   43, 3,210, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          75808:             "\x02\xe0\x95\xe0\x77\xe0\x54\x13\xe0\x53\x24\xe0\x34"
        !          75809:             "\x34\xe0\x14\x53\xe0\x13\x64\xd4\x73\xd3\x84\xb4\x94"
        !          75810:             "\x94\xb3\x93\xc4\x74\xd3\x73\xe4\x54\xe0\x14\x34\xe0"
        !          75811:             "\x33\x33\xe0\x44\x14\xe0\x53\x13\xe0\x67\xe0\x75\xe0"
        !          75812:             "\x93\xe0\x95\xe0\x77\xe0\x63\x13\xe0\x54\x14\xe0\x43"
        !          75813:             "\x33\xe0\x34\x34\xe0\x14\x54\xe3\x73\xd4\x74\xc3\x93"
        !          75814:             "\xb4\x94\x94\xb4\x83\xd3\x74\xd4\x63\xe0\x13\x54\xe0"
        !          75815:             "\x14\x34\xe0\x34\x23\xe0\x53\x14\xe0\x57\xe0\x75\xe0"
        !          75816:             "\x92" }  },
        !          75817:       /* --- pixel bitmap for stmary450 char#35 \fatsemi --- */
        !          75818:       {  35,31262,                      /* character number, location */
        !          75819:          35, 4,  -12, 4,      /* topleft row,col, and botleft row,col */
        !          75820:           { 13,   47, 3,87, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          75821:             "\x37\x59\x3b\x14\x54\x0f\x43\x73\x04\x54\x1b\x39\x57"
        !          75822:             "\x30\xf8\xd0\x37\x59\x3b\x14\x54\x0f\x43\x73\x04\x54"
        !          75823:             "\x1c\x2a\x49\x94\x10\xf1\x83\x20\x74\x84\x93\x94\x93"
        !          75824:             "\x94\x84\x93\xb2\x74" }  },
        !          75825:       /* --- pixel bitmap for stmary450 char#36 \sswarrow --- */
        !          75826:       {  36,32209,                      /* character number, location */
        !          75827:          43, 4,  -12, 4,      /* topleft row,col, and botleft row,col */
        !          75828:           { 31,   55, 3,255, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          75829:             "\xe0\xe0\x11\xe0\xe0\x13\xe0\xd4\xf1\xe0\xd3\x10\xf1"
        !          75830:             "\xe0\xc3\x20\xf1\xe0\xb3\x30\xe0\xa4\x30\xf1\xe0\xa3"
        !          75831:             "\x40\xf1\xe0\x93\x50\xf1\xe0\x83\x60\xe0\x74\x60\xf1"
        !          75832:             "\xe0\x73\x70\xf1\xe0\x63\x80\xf1\xe0\x53\x90\xe0\x44"
        !          75833:             "\xe0\xd3\xe0\xd4\xa0\xf1\xe0\x33\xb0\xf1\xe0\x23\xc0"
        !          75834:             "\xe0\x14\xe0\xd3\xe0\xd4\xd0\xf1\xe3\xe0\xf1\xd3\xe0"
        !          75835:             "\x10\xf1\xc3\xe0\x20\xb4\xe0\x31\x93\xe0\x42\x83\xe0"
        !          75836:             "\x30\xf1\x22\x63\xe0\x40\x32\x43\xe0\x92\x33\xe0\x92"
        !          75837:             "\x24\xe0\xa2\x13\xe0\xb2\x13\x55\xe0\x15\x28\xe0\x39"
        !          75838:             "\xe0\x86\xe0\xb4\xe0\xd2\xe0\xe0\x11\xe0\xa3" }  },
        !          75839:       /* --- pixel bitmap for stmary450 char#37 \ssearrow --- */
        !          75840:       {  37,33182,                      /* character number, location */
        !          75841:          43, 3,  -12, 3,      /* topleft row,col, and botleft row,col */
        !          75842:           { 30,   55, 3,247, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          75843:             "\x11\xe0\xe3\xe0\xd4\xe0\xc0\xf1\x13\xe0\xc0\xf1\x23"
        !          75844:             "\xe0\xb0\xf1\x33\xe0\xa0\x34\xe0\x90\xf1\x43\xe0\x90"
        !          75845:             "\xf1\x53\xe0\x80\xf1\x63\xe0\x70\x64\xe0\x60\xf1\x73"
        !          75846:             "\xe0\x60\xf1\x83\xe0\x50\xf1\x93\xe0\x40\x94\xe0\xd3"
        !          75847:             "\xe0\xd4\xe0\x20\xf1\xb3\xe0\x20\xf1\xc3\xe0\x10\xc4"
        !          75848:             "\xe0\xd3\xe0\xd4\xd0\xf1\xe3\xd0\xf1\xe0\x13\xc0\xf1"
        !          75849:             "\xe0\x23\xb0\xe0\x24\xe0\xd3\x91\xe0\x33\x82\xf1\xe0"
        !          75850:             "\x43\x62\x10\xe0\x53\x42\xe0\x73\x32\xe0\x84\x22\xe0"
        !          75851:             "\x93\x12\xe5\x53\x12\xe0\x18\x25\xe0\x69\xe0\xa6\xe0"
        !          75852:             "\xc4\xe0\xe2\xe0\xe0\x11\x50" }  },
        !          75853:       /* --- pixel bitmap for stmary450 char#38 \curlywedgeuparrow --- */
        !          75854:       {  38,34266,                      /* character number, location */
        !          75855:          43, 0,  -12, 0,      /* topleft row,col, and botleft row,col */
        !          75856:           { 43,   55, 3,328, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          75857:             "\xf1\xe0\x71\xe0\x70\xe0\x63\xe0\x60\xf1\xe0\x55\xe0"
        !          75858:             "\x50\xe0\x47\xe0\xe0\x72\x13\x12\xe0\xe0\x43\x23\x23"
        !          75859:             "\xe0\xe0\x13\x33\x33\xe0\xc3\x53\x53\xe0\x84\x63\x64"
        !          75860:             "\xe0\x71\x83\x81\xb0\xf7\xe0\x55\xe0\x50\xe0\x47\xe0"
        !          75861:             "\x40\xf2\xe0\x43\x13\xe0\x40\xe0\x34\x14\xe0\x30\xf2"
        !          75862:             "\xe0\x33\x33\xe0\x30\xe0\x24\x34\xe0\x20\xf1\xe0\x23"
        !          75863:             "\x53\xe0\x20\xe0\x14\x54\xe0\x10\xf1\xe0\x13\x73\xe0"
        !          75864:             "\x10\xe4\x74\xe0\xe3\x93\xe0\xd4\x94\xe0\xc3\xb3\xe0"
        !          75865:             "\xb4\xb4\xe0\xa3\xd3\xe0\x94\xd4\xe0\x83\xe0\x13\xe0"
        !          75866:             "\x74\xe0\x14\xe0\x54\xe0\x34\xe0\x43\xe0\x53\xe0\x34"
        !          75867:             "\xe0\x54\xe0\x14\xe0\x74\xd4\xe0\x94\xb4\xe0\xb4\x94"
        !          75868:             "\xe0\xd4\x74\xe0\xe0\x14\x54\xe0\xe0\x34\x34\xe0\xe0"
        !          75869:             "\x59\xe0\xe0\x74\x12\xe0\xe0\x93" }  },
        !          75870:       /* --- pixel bitmap for stmary450 char#39 \curlywedgedownarrow --- */
        !          75871:       {  39,35422,                      /* character number, location */
        !          75872:          44, 0,  -15, 0,      /* topleft row,col, and botleft row,col */
        !          75873:           { 43,   59, 3,291, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          75874:             "\xfc\xe0\x63\xe0\x60\xf7\xe0\x55\xe0\x50\xe0\x47\xe0"
        !          75875:             "\x40\xf2\xe0\x43\x13\xe0\x40\xe0\x34\x14\xe0\x30\xf2"
        !          75876:             "\xe0\x33\x33\xe0\x30\xe0\x24\x34\xe0\x20\xf1\xe0\x23"
        !          75877:             "\x53\xe0\x20\xe0\x14\x54\xe0\x10\xf1\xe0\x13\x73\xe0"
        !          75878:             "\x10\xe4\x74\xe0\xe3\x93\xe0\xd4\x94\xe0\xc3\xb3\xe0"
        !          75879:             "\xb4\xb4\xe0\x11\x83\xd3\x81\x52\x74\xd4\x72\x42\x73"
        !          75880:             "\xe0\x13\x72\x42\x64\xe0\x14\x62\x42\x54\xe0\x34\x52"
        !          75881:             "\x51\x53\xe0\x53\x51\x61\x44\xe0\x54\x41\x52\x34\xe0"
        !          75882:             "\x74\x32\x42\x24\xe0\x94\x22\x42\x14\xe0\xb4\x12\x46"
        !          75883:             "\xe0\xd6\x45\xe0\xe0\x15\x35\xe0\xe0\x35\x24\xe0\xe0"
        !          75884:             "\x54\x29\xe0\x99\x1d\xe0\x3d\xa5\xd5\xe0\x93\xb3\xe0"
        !          75885:             "\xd1\xd1\xe4" }  },
        !          75886:       /* --- pixel bitmap for stmary450 char#40 \fatslash --- */
        !          75887:       {  40,36254,                      /* character number, location */
        !          75888:          47,17,  -16,17,      /* topleft row,col, and botleft row,col */
        !          75889:           { 39,   63, 3,379, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          75890:             "\xe0\x9e\x01\xe0\x9e\x03\xe0\x7e\x03\xe0\x83\xb3\xe0"
        !          75891:             "\x83\xa4\xe0\x74\xa3\xe0\x83\xa4\xe0\x83\xa3\xe0\x84"
        !          75892:             "\xa3\xe0\x83\xa4\xe0\x83\xa3\xe0\x84\xa3\xe0\x83\xa4"
        !          75893:             "\xe0\x74\xa3\xe0\x83\xb3\xe0\x83\xa4\xe0\x74\xa3\xe0"
        !          75894:             "\x83\xa4\xe0\x83\xa3\xe0\x84\xa3\xe0\x83\xa4\xe0\x74"
        !          75895:             "\xa3\xe0\x83\xb3\xe0\x83\xa4\xe0\x74\xa3\xe0\x83\xb3"
        !          75896:             "\xe0\x83\xa4\xe0\x74\xa3\xe0\x83\xa4\xe0\x83\xa3\xe0"
        !          75897:             "\x84\xa3\xe0\x83\xa4\xe0\x74\xa3\xe0\x83\xb3\xe0\x83"
        !          75898:             "\xa4\xe0\x74\xa3\xe0\x83\xa4\xe0\x83\xa3\xe0\x84\xa3"
        !          75899:             "\xe0\x83\xa4\xe0\x83\xa3\xe0\x84\xa3\xe0\x83\xa4\xe0"
        !          75900:             "\x74\xa3\xe0\x83\xb3\xe0\x83\xa4\xe0\x74\xa3\xe0\x83"
        !          75901:             "\xa4\xe0\x83\xa3\xe0\x84\xa3\xe0\x83\xa4\xe0\x74\xa3"
        !          75902:             "\xe0\x83\xb3\xe0\x83\xa4\xe0\x74\xa3\xe0\x83\xb3\xe0"
        !          75903:             "\x83\xa4\xe0\x74\xa3\xe0\x83\xa4\xe0\x83\xa3\xe0\x8f"
        !          75904:             "\x1e\x03\xe0\x80\x1e\x01\xe0\x90" }  },
        !          75905:       /* --- pixel bitmap for stmary450 char#41 \fatbslash --- */
        !          75906:       {  41,37102,                      /* character number, location */
        !          75907:          47, 3,  -16, 3,      /* topleft row,col, and botleft row,col */
        !          75908:           { 39,   63, 3,367, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          75909:             "\x0e\x02\xe0\x9f\x1e\x03\xe0\x80\x13\xa4\xe0\x83\xb3"
        !          75910:             "\xe0\x84\xa3\xe0\x93\xa4\xe0\x83\xb3\xe0\x84\xa4\xe0"
        !          75911:             "\x50\xf1\x33\xb3\xe0\x50\x34\xa4\xe0\x83\xb3\xe0\x84"
        !          75912:             "\xa3\xe0\x93\xa4\xe0\x83\xb3\xe0\x84\xa4\xe0\x20\xf1"
        !          75913:             "\x63\xb3\xe0\x20\x64\xa4\xe0\x83\xb3\xe0\x84\xa3\xe0"
        !          75914:             "\x93\xa4\xe0\x83\xb3\xe0\x84\xa3\xe0\x93\xa4\xe0\x83"
        !          75915:             "\xb3\xe0\x84\xa4\xc0\xf1\xa3\xb3\xc0\xa4\xa4\xe0\x83"
        !          75916:             "\xb3\xe0\x84\xa3\xe0\x93\xa4\xe0\x83\xb3\xe0\x84\xa3"
        !          75917:             "\xe0\x93\xa4\xe0\x83\xb3\xe0\x84\xa4\x80\xf1\xe3\xb3"
        !          75918:             "\x80\xe4\xa4\xe0\x83\xb3\xe0\x84\xa3\xe0\x93\xa4\xe0"
        !          75919:             "\x83\xb3\xe0\x84\xa4\x50\xf1\xe0\x33\xb3\x50\xe0\x34"
        !          75920:             "\xa4\xe0\x83\xb3\xe0\x84\xa3\xe0\x93\xa4\xe0\x83\xb3"
        !          75921:             "\xe0\x84\xa3\xe0\x93\xa4\xe0\x83\xb3\xe0\x84\xa4\x10"
        !          75922:             "\xf1\xe0\x73\xb3\x10\xe0\x7e\x04\xe0\x8e\x03\xe0\x9e"
        !          75923:             "\x01\x13" }  },
        !          75924:       /* --- pixel bitmap for stmary450 char#42 \lbag --- */
        !          75925:       {  42,37849,                      /* character number, location */
        !          75926:          47, 4,  -16, 4,      /* topleft row,col, and botleft row,col */
        !          75927:           { 20,   63, 3,124, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          75928:             "\x46\xd9\xab\x84\x45\x64\x73\x63\x83\x6f\x13\x84\x52"
        !          75929:             "\x93\x60\xf7\xb3\x60\xa4\x60\xf3\xa3\x70\x94\x70\xf3"
        !          75930:             "\x93\x80\x84\x80\xf2\x83\x90\x74\x90\xf3\x73\xa0\x64"
        !          75931:             "\xa0\xf3\x63\xb0\x54\xb0\xfb\x53\xc0\x54\xe0\x33\xe0"
        !          75932:             "\x34\xe0\x33\xe0\x35\xe0\x27\xeb\xb9\xe6" }  },
        !          75933:       /* --- pixel bitmap for stmary450 char#43 \rbag --- */
        !          75934:       {  43,38495,                      /* character number, location */
        !          75935:          47, 4,  -16, 4,      /* topleft row,col, and botleft row,col */
        !          75936:           { 20,   63, 3,121, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          75937:             "\xa6\xc9\xab\x85\x44\x73\x74\x63\x83\xf1\x54\x83\x63"
        !          75938:             "\x92\xf7\x63\xb0\x64\xa0\xf3\x73\xa0\x74\x90\xf3\x83"
        !          75939:             "\x90\x84\x80\xf2\x93\x80\x94\x70\xf3\xa3\x70\xa4\x60"
        !          75940:             "\xf3\xb3\x60\xb4\x50\xfb\xc3\x50\xb4\xe0\x23\xe0\x24"
        !          75941:             "\xe0\x23\xe0\x15\xc7\x8b\x99\xb6\xe9" }  },
        !          75942:       /* --- pixel bitmap for stmary450 char#44 \varbigcirc --- */
        !          75943:       {  44,39479,                      /* character number, location */
        !          75944:          44, 3,  -12, 3,      /* topleft row,col, and botleft row,col */
        !          75945:           { 56,   56, 2,183, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          75946:             "\x16\x0c\x29\x12\x23\x18\x1e\x09\x0a\x09\x1b\x07\x10"
        !          75947:             "\x07\x18\x06\x16\x06\x15\x05\x1a\x05\x13\x05\x1c\x05"
        !          75948:             "\x11\x04\x20\x04\x0f\x04\x22\x04\x0d\x04\x24\x04\x0b"
        !          75949:             "\x04\x26\x04\x0a\x03\x28\x03\x09\x04\x28\x04\x07\x04"
        !          75950:             "\x2a\x04\x06\x03\x2c\x03\x05\x04\x2c\x04\x02\x00\xff"
        !          75951:             "\x01\x02\x03\x2e\x03\x02\x00\x01\x04\x2e\x04\x01\x00"
        !          75952:             "\xff\x01\x01\x03\x30\x03\x01\x04\x30\x04\x00\xff\x09"
        !          75953:             "\x03\x32\x03\x00\x04\x30\x04\xff\x01\x01\x03\x30\x03"
        !          75954:             "\x01\x00\x01\x04\x2e\x04\x01\x00\xff\x01\x02\x03\x2e"
        !          75955:             "\x03\x02\x00\x02\x04\x2c\x04\x05\x03\x2c\x03\x06\x04"
        !          75956:             "\x2a\x04\x07\x04\x28\x04\x09\x03\x28\x03\x0a\x04\x26"
        !          75957:             "\x04\x0b\x04\x24\x04\x0d\x04\x22\x04\x0f\x04\x20\x04"
        !          75958:             "\x11\x05\x1c\x05\x13\x05\x1a\x05\x15\x06\x16\x06\x18"
        !          75959:             "\x07\x10\x07\x1b\x09\x0a\x09\x1e\x18\x23\x12\x29\x0c"
        !          75960:             "\x16" }  },
        !          75961:       /* --- pixel bitmap for stmary450 char#45 \leftrightarroweq --- */
        !          75962:       {  45,40651,                      /* character number, location */
        !          75963:          33, 3,    7, 3,      /* topleft row,col, and botleft row,col */
        !          75964:           { 42,   26, 3,158, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          75965:             "\xa2\xe0\x42\xa0\xf1\x92\xe0\x62\x90\x82\xe0\x82\xe0"
        !          75966:             "\x13\xe0\x83\xe2\xe0\xa2\xd2\xe0\xc2\xb2\xe0\xe2\x83"
        !          75967:             "\xe0\xe0\x23\x5e\x0e\x0a\x2e\x0e\x0e\x2e\x0e\x0a\x53"
        !          75968:             "\xe0\xe0\x23\x82\xe0\xe2\xb2\xe0\xc2\xd2\xe0\xa2\xe3"
        !          75969:             "\xe0\x83\xe0\x12\xe0\x82\x80\xf1\x92\xe0\x62\x90\xa2"
        !          75970:             "\xe0\x42\xa0\xf1\xe0\xe0\xe0\x1e\x0e\x0c\x1f\x1e\x0e"
        !          75971:             "\x0e" }  },
        !          75972:       /* --- pixel bitmap for stmary450 char#46 \curlyveedownarrow --- */
        !          75973:       {  46,41309,                      /* character number, location */
        !          75974:          43, 0,  -12, 0,      /* topleft row,col, and botleft row,col */
        !          75975:           { 43,   55, 3,329, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          75976:             "\x12\xe0\xe0\x97\xe0\xe0\x74\x14\xe0\xe0\x55\x24\xe0"
        !          75977:             "\xe0\x34\x54\xe0\xe0\x14\x74\xe0\xd4\x94\xe0\xb4\xb4"
        !          75978:             "\xe0\x94\xd4\xe0\x74\xe0\x14\xe0\x54\xe0\x33\xe0\x53"
        !          75979:             "\xe0\x44\xe0\x34\xe0\x54\xe0\x14\xe0\x73\xe0\x13\xe0"
        !          75980:             "\x84\xd4\xe0\x93\xd3\xe0\xa4\xb4\xe0\xb3\xb3\xe0\xc4"
        !          75981:             "\x94\xe0\xd3\x93\xe0\xe4\x74\xe0\xf1\xe0\x13\x73\xe0"
        !          75982:             "\x10\xe0\x14\x54\xe0\x10\xf1\xe0\x23\x53\xe0\x20\xe0"
        !          75983:             "\x24\x34\xe0\x20\xf2\xe0\x33\x33\xe0\x30\xe0\x34\x14"
        !          75984:             "\xe0\x30\xf2\xe0\x43\x13\xe0\x40\xe0\x47\xe0\x40\xf7"
        !          75985:             "\xe0\x55\xe0\x50\xb1\x83\x81\xe0\x74\x63\x64\xe0\x83"
        !          75986:             "\x53\x53\xe0\xc3\x33\x33\xe0\xe0\x13\x23\x23\xe0\xe0"
        !          75987:             "\x42\x13\x12\xe0\xe0\x77\xe0\x40\xf1\xe0\x55\xe0\x50"
        !          75988:             "\xe0\x63\xe0\x60\xf1\xe0\x71\xe0\x74" }  },
        !          75989:       /* --- pixel bitmap for stmary450 char#47 \curlyveeuparrow --- */
        !          75990:       {  47,42085,                      /* character number, location */
        !          75991:          46, 0,  -13, 0,      /* topleft row,col, and botleft row,col */
        !          75992:           { 43,   59, 3,291, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          75993:             "\xe1\xd1\xe0\xd3\xb3\xe0\x95\xd5\xad\xe0\x3d\x19\xe0"
        !          75994:             "\x99\x24\xe0\xe0\x54\x25\xe0\xe0\x35\x35\xe0\xe0\x15"
        !          75995:             "\x46\xe0\xd6\x42\x14\xe0\xb4\x12\x42\x24\xe0\x94\x22"
        !          75996:             "\x42\x34\xe0\x74\x32\x51\x44\xe0\x54\x41\x61\x53\xe0"
        !          75997:             "\x53\x51\x52\x54\xe0\x34\x52\x42\x64\xe0\x14\x62\x42"
        !          75998:             "\x73\xe0\x13\x72\x42\x74\xd4\x72\x51\x83\xd3\x81\xe0"
        !          75999:             "\x14\xb4\xe0\xb3\xb3\xe0\xc4\x94\xe0\xd3\x93\xe0\xe4"
        !          76000:             "\x74\xe0\xf1\xe0\x13\x73\xe0\x10\xe0\x14\x54\xe0\x10"
        !          76001:             "\xf1\xe0\x23\x53\xe0\x20\xe0\x24\x34\xe0\x20\xf2\xe0"
        !          76002:             "\x33\x33\xe0\x30\xe0\x34\x14\xe0\x30\xf2\xe0\x43\x13"
        !          76003:             "\xe0\x40\xe0\x47\xe0\x40\xf7\xe0\x55\xe0\x50\xfc\xe0"
        !          76004:             "\x63\xe0\x62" }  },
        !          76005:       /* --- pixel bitmap for stmary450 char#48 \nnwarrow --- */
        !          76006:       {  48,42846,                      /* character number, location */
        !          76007:          43, 4,  -12, 4,      /* topleft row,col, and botleft row,col */
        !          76008:           { 31,   55, 3,255, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          76009:             "\x61\xe0\xe0\x22\xe0\xe0\x14\xe0\xd6\xe0\xb9\xe0\x75"
        !          76010:             "\x28\xe0\x22\x13\x55\xe0\x12\x13\xe0\xa2\x24\xe0\x92"
        !          76011:             "\x33\xe0\x82\x43\xe0\x50\xf1\x22\x63\xe0\x40\x12\x83"
        !          76012:             "\xe0\x41\x93\xe0\xe4\xe0\x20\xf1\xc3\xe0\x20\xf1\xd3"
        !          76013:             "\xe0\x10\xf1\xe3\xe0\xe4\xe0\xe3\xe0\xe4\xc0\xf1\xe0"
        !          76014:             "\x23\xc0\xf1\xe0\x33\xb0\xe0\x34\xe0\xe3\xe0\xe4\x90"
        !          76015:             "\xf1\xe0\x53\x90\xf1\xe0\x63\x80\xf1\xe0\x73\x70\xe0"
        !          76016:             "\x74\x60\xf1\xe0\x83\x60\xf1\xe0\x93\x50\xf1\xe0\xa3"
        !          76017:             "\x40\xe0\xa4\x30\xf1\xe0\xb3\x30\xf1\xe0\xc3\x20\xf1"
        !          76018:             "\xe0\xd3\x10\xe0\xd4\xe0\xe3\xe0\xe0\x11\x10" }  },
        !          76019:       /* --- pixel bitmap for stmary450 char#49 \nnearrow --- */
        !          76020:       {  49,43507,                      /* character number, location */
        !          76021:          43, 3,  -12, 3,      /* topleft row,col, and botleft row,col */
        !          76022:           { 30,   55, 3,245, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          76023:             "\xe0\xa1\xe0\xe2\xe0\xc4\xe0\xa6\xe0\x79\xe0\x28\x25"
        !          76024:             "\xe5\x53\x12\xe0\xa3\x12\xe0\x94\x22\xe0\x83\x32\xe0"
        !          76025:             "\x83\x42\x20\xf1\xe0\x43\x62\x10\xe0\x33\x82\xe0\x33"
        !          76026:             "\x91\xe0\x24\xa0\xf1\xe0\x23\xb0\xf1\xe0\x13\xc0\xf1"
        !          76027:             "\xe3\xd0\xd4\xe0\xc3\xe0\xc4\xe0\xf1\xc3\xe0\x10\xf1"
        !          76028:             "\xb3\xe0\x20\xa4\xe0\xc3\xe0\xc4\xe0\x30\xf1\x93\xe0"
        !          76029:             "\x40\xf1\x83\xe0\x50\xf1\x73\xe0\x60\x64\xe0\x60\xf1"
        !          76030:             "\x63\xe0\x70\xf1\x53\xe0\x80\xf1\x43\xe0\x90\x34\xe0"
        !          76031:             "\x90\xf1\x33\xe0\xa0\xf1\x23\xe0\xb0\xf1\x13\xe0\xc4"
        !          76032:             "\xe0\xc3\xe0\xe1\xe0\xe0" }  },
        !          76033:       /* --- pixel bitmap for stmary450 char#50 \leftslice --- */
        !          76034:       {  50,44356,                      /* character number, location */
        !          76035:          31, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          76036:           { 42,   31, 3,195, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          76037:             "\xe0\xe0\x62\xe0\xe0\x96\xe0\xe0\x68\xe0\xe0\x3c\xe0"
        !          76038:             "\xe8\x34\xe0\xb8\x64\xe0\x78\xa3\xe0\x58\xc3\xe0\x29"
        !          76039:             "\xe4\xd8\xe0\x43\xa9\xe0\x63\x88\xe0\x94\x58\xe0\xc3"
        !          76040:             "\x28\xe0\xe0\x13\x17\xe0\xe0\x39\xe0\xe0\x53\x17\xe0"
        !          76041:             "\xe0\x33\x28\xe0\xe0\x13\x58\xe0\xc3\x78\xe0\x94\x99"
        !          76042:             "\xe0\x63\xd8\xe0\x43\xe0\x19\xe4\xe0\x48\xc3\xe0\x78"
        !          76043:             "\xa3\xe0\xa8\x64\xe0\xc8\x34\xe0\xe0\x1c\xe0\xe0\x58"
        !          76044:             "\xe0\xe0\x86\xe0\xe0\xb2\x60" }  },
        !          76045:       /* --- pixel bitmap for stmary450 char#51 \rightslice --- */
        !          76046:       {  51,45182,                      /* character number, location */
        !          76047:          31, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          76048:           { 42,   31, 3,195, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          76049:             "\x62\xe0\xe0\xb6\xe0\xe0\x88\xe0\xe0\x5c\xe0\xe0\x14"
        !          76050:             "\x38\xe0\xc4\x68\xe0\xa3\xa8\xe0\x64\xc8\xe0\x43\xe0"
        !          76051:             "\x19\xe0\x13\xe0\x48\xd3\xe0\x69\x94\xe0\x98\x73\xe0"
        !          76052:             "\xc8\x53\xe0\xe0\x18\x23\xe0\xe0\x3b\xe0\xe0\x59\xe0"
        !          76053:             "\xe0\x3b\xe0\xe0\x18\x23\xe0\xc8\x54\xe0\x98\x83\xe0"
        !          76054:             "\x69\xa3\xe0\x48\xd3\xe0\x19\xe0\x14\xc8\xe0\x53\xa8"
        !          76055:             "\xe0\x74\x68\xe0\xb4\x38\xe0\xec\xe0\xe0\x38\xe0\xe0"
        !          76056:             "\x66\xe0\xe0\x92\xe0\xe0\x60" }  },
        !          76057:       /* --- pixel bitmap for stmary450 char#52 \varolessthan --- */
        !          76058:       {  52,46030,                      /* character number, location */
        !          76059:          37, 3,   -6, 3,      /* topleft row,col, and botleft row,col */
        !          76060:           { 43,   43, 3,293, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          76061:             "\xe0\x39\xe0\xe0\x2e\x03\xe0\xae\x07\xe0\x78\x78\xe0"
        !          76062:             "\x46\xe0\x16\xe0\x15\xe0\x55\xd5\xe0\x75\xb4\xe0\x87"
        !          76063:             "\x94\xe0\x7a\x83\xe0\x59\x13\x74\xe0\x38\x44\x54\xe0"
        !          76064:             "\x28\x74\x43\xe8\xb3\x34\xc8\xd4\x23\xa9\xe0\x23\x23"
        !          76065:             "\x88\xe0\x53\x23\x59\xe0\x73\x14\x38\xe0\xa7\x28\xe0"
        !          76066:             "\xdd\xe0\xe0\x2b\xe0\xe0\x49\xe0\xe0\x6b\xe0\xe0\x4d"
        !          76067:             "\xe0\xe0\x26\x28\xe0\xd7\x38\xe0\xa4\x13\x59\xe0\x73"
        !          76068:             "\x23\x88\xe0\x53\x23\xa9\xe0\x23\x24\xc8\xd4\x33\xe8"
        !          76069:             "\xb3\x44\xe0\x28\x74\x54\xe0\x38\x44\x73\xe0\x59\x13"
        !          76070:             "\x84\xe0\x7a\x94\xe0\x87\xb5\xe0\x75\xd5\xe0\x55\xe0"
        !          76071:             "\x16\xe0\x16\xe0\x48\x78\xe0\x7e\x07\xe0\xae\x03\xe0"
        !          76072:             "\xe0\x29\xe0\x30" }  },
        !          76073:       /* --- pixel bitmap for stmary450 char#53 \varogreaterthan --- */
        !          76074:       {  53,46973,                      /* character number, location */
        !          76075:          37, 3,   -6, 3,      /* topleft row,col, and botleft row,col */
        !          76076:           { 43,   43, 3,293, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          76077:             "\xe0\x39\xe0\xe0\x2e\x03\xe0\xae\x07\xe0\x78\x78\xe0"
        !          76078:             "\x46\xe0\x16\xe0\x15\xe0\x55\xd5\xe0\x75\xb7\xe0\x84"
        !          76079:             "\x9a\xe0\x74\x83\x19\xe0\x53\x74\x48\xe0\x34\x54\x78"
        !          76080:             "\xe0\x24\x43\xb8\xe3\x34\xd8\xc4\x23\xe0\x29\xa3\x23"
        !          76081:             "\xe0\x58\x83\x23\xe0\x79\x53\x14\xe0\xa8\x37\xe0\xd8"
        !          76082:             "\x26\xe0\xe0\x2d\xe0\xe0\x4b\xe0\xe0\x69\xe0\xe0\x4b"
        !          76083:             "\xe0\xe0\x2d\xe0\xd8\x27\xe0\xa8\x34\x13\xe0\x79\x53"
        !          76084:             "\x23\xe0\x58\x83\x23\xe0\x29\xa3\x24\xd8\xc4\x33\xb8"
        !          76085:             "\xe3\x44\x78\xe0\x24\x54\x48\xe0\x34\x73\x19\xe0\x53"
        !          76086:             "\x8a\xe0\x74\x97\xe0\x84\xb5\xe0\x75\xd5\xe0\x55\xe0"
        !          76087:             "\x16\xe0\x16\xe0\x48\x78\xe0\x7e\x07\xe0\xae\x03\xe0"
        !          76088:             "\xe0\x29\xe0\x30" }  },
        !          76089:       /* --- pixel bitmap for stmary450 char#54 \varovee --- */
        !          76090:       {  54,47908,                      /* character number, location */
        !          76091:          37, 3,   -6, 3,      /* topleft row,col, and botleft row,col */
        !          76092:           { 43,   43, 3,315, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          76093:             "\xe0\x39\xe0\xe0\x2e\x03\xe0\xae\x07\xe0\x78\x78\xe0"
        !          76094:             "\x46\xe0\x16\xe0\x15\xe0\x55\xd5\xe0\x75\xb4\xe0\xb4"
        !          76095:             "\x50\xf1\x46\xe0\x96\x40\x37\xe0\x97\x54\x14\xe0\x74"
        !          76096:             "\x14\x43\x33\xe0\x73\x33\x34\x34\xe0\x54\x34\x10\xf1"
        !          76097:             "\x13\x53\xe0\x53\x53\x10\x13\x54\xe0\x34\x53\x14\x63"
        !          76098:             "\xe0\x33\x67\x74\xe0\x14\x76\x83\xe0\x13\x86\x84\xd4"
        !          76099:             "\x83\x0f\x13\x93\xd3\x93\x03\x94\xb4\x96\xa3\xb3\xa7"
        !          76100:             "\x94\x94\x94\xf1\x13\xa3\x93\xa3\x10\x13\xa4\x74\xa3"
        !          76101:             "\x24\xa3\x73\xa4\x33\xa4\x54\xa3\x44\xa3\x53\xa4\x54"
        !          76102:             "\x93\x53\x94\x73\x94\x34\x93\x84\x93\x33\x94\x94\x84"
        !          76103:             "\x14\x84\xb5\x73\x13\x75\xd5\x67\x65\xe0\x16\x55\x56"
        !          76104:             "\xe0\x48\x15\x18\xe0\x7e\x07\xe0\xae\x03\xe0\xe0\x29"
        !          76105:             "\xe0\x33" }  },
        !          76106:       /* --- pixel bitmap for stmary450 char#55 \varowedge --- */
        !          76107:       {  55,48915,                      /* character number, location */
        !          76108:          37, 3,   -6, 3,      /* topleft row,col, and botleft row,col */
        !          76109:           { 43,   43, 3,315, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          76110:             "\xe0\x39\xe0\xe0\x2e\x03\xe0\xae\x07\xe0\x78\x15\x18"
        !          76111:             "\xe0\x46\x55\x56\xe0\x15\x67\x65\xd5\x73\x13\x75\xb4"
        !          76112:             "\x84\x14\x84\x94\x93\x33\x94\x83\x94\x34\x93\x74\x93"
        !          76113:             "\x53\x94\x54\xa3\x53\xa4\x43\xa4\x54\xa3\x34\xa3\x73"
        !          76114:             "\xa4\x23\xa4\x74\xa3\x10\xf1\x13\xa3\x93\xa3\x14\x94"
        !          76115:             "\x94\x97\xa3\xb3\xa6\x94\xb4\x93\x0f\x13\x93\xd3\x93"
        !          76116:             "\x03\x84\xd4\x86\x83\xe0\x13\x86\x74\xe0\x14\x77\x63"
        !          76117:             "\xe0\x33\x64\x13\x54\xe0\x34\x53\x10\xf1\x13\x53\xe0"
        !          76118:             "\x53\x53\x10\x14\x34\xe0\x54\x34\x33\x33\xe0\x73\x33"
        !          76119:             "\x44\x14\xe0\x74\x14\x57\xe0\x97\x30\xf1\x46\xe0\x96"
        !          76120:             "\x40\x54\xe0\xb4\xb5\xe0\x75\xd5\xe0\x55\xe0\x16\xe0"
        !          76121:             "\x16\xe0\x48\x78\xe0\x7e\x07\xe0\xae\x03\xe0\xe0\x29"
        !          76122:             "\xe0\x33" }  },
        !          76123:       /* --- pixel bitmap for stmary450 char#56 \talloblong --- */
        !          76124:       {  56,49738,                      /* character number, location */
        !          76125:          47, 7,  -16, 7,      /* topleft row,col, and botleft row,col */
        !          76126:           { 17,   63, 2,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          76127:             "\xff\x02\x00\x11\x00\xff\x38\x03\x0b\x03\x00\xff\x02"
        !          76128:             "\x11" }  },
        !          76129:       /* --- pixel bitmap for stmary450 char#57 \interleave --- */
        !          76130:       {  57,50664,                      /* character number, location */
        !          76131:          47, 6,  -16, 6,      /* topleft row,col, and botleft row,col */
        !          76132:           { 31,   63, 2,20, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          76133:             "\x01\x02\x0c\x02\x0c\x02\x00\xff\x3c\x03\x0b\x03\x0b"
        !          76134:             "\x03\x01\x02\x0c\x02\x0c\x02" }  },
        !          76135:       /* --- pixel bitmap for stmary450 char#58 \obar --- */
        !          76136:       {  58,51768,                      /* character number, location */
        !          76137:          36, 3,   -5, 3,      /* topleft row,col, and botleft row,col */
        !          76138:           { 42,   41, 3,273, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          76139:             "\xe0\x38\xe0\xe0\x3e\xe0\xc5\x32\x35\xe0\x84\x62\x64"
        !          76140:             "\xe0\x44\x82\x84\xe0\x13\xa2\xa3\xd3\xb2\xb3\xb3\xc2"
        !          76141:             "\xc3\x93\xd2\xd3\x73\xe2\xe3\x62\xe0\x12\xe0\x12\x53"
        !          76142:             "\xe0\x12\xe0\x13\x42\xe0\x22\xe0\x22\x33\xe0\x22\xe0"
        !          76143:             "\x23\x10\xf1\x12\xe0\x32\xe0\x32\x13\xe0\x32\xe0\x33"
        !          76144:             "\x0f\x62\xe0\x42\xe0\x42\x03\xe0\x32\xe0\x33\xf1\x12"
        !          76145:             "\xe0\x32\xe0\x32\x10\x13\xe0\x22\xe0\x23\x32\xe0\x22"
        !          76146:             "\xe0\x22\x43\xe0\x12\xe0\x13\x52\xe0\x12\xe0\x12\x63"
        !          76147:             "\xe2\xe3\x73\xd2\xd3\x93\xc2\xc3\xb3\xb2\xb3\xd3\xa2"
        !          76148:             "\xa3\xe0\x14\x82\x84\xe0\x44\x62\x64\xe0\x85\x32\x35"
        !          76149:             "\xe0\xce\xe0\xe0\x38\xe0\x35" }  },
        !          76150:       /* --- pixel bitmap for stmary450 char#59 \oslash --- */
        !          76151:       {  59,52730,                      /* character number, location */
        !          76152:          36, 3,   -5, 3,      /* topleft row,col, and botleft row,col */
        !          76153:           { 42,   41, 3,291, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          76154:             "\xe0\x38\xe0\xe0\x3e\xe0\xc5\x85\xe0\x84\xe4\xe0\x44"
        !          76155:             "\xe0\x44\xe0\x13\xe0\x83\xd3\xe0\xa3\xb4\xe0\xb3\x96"
        !          76156:             "\xe0\xb3\x73\x23\xe0\xb3\x62\x43\xe0\xb2\x53\x53\xe0"
        !          76157:             "\xa3\x42\x73\xe0\xa2\x33\x83\xe0\x93\x22\xa3\xe0\x92"
        !          76158:             "\x22\xb3\xe0\x82\x13\xc3\xe0\x75\xe3\xe0\x74\xe0\x13"
        !          76159:             "\xe0\x64\xe0\x23\xe0\x54\xe0\x34\xe0\x34\xe0\x53\xe0"
        !          76160:             "\x24\xe0\x63\xe0\x14\xe0\x73\xe5\xe0\x73\xc3\x12\xe0"
        !          76161:             "\x83\xb2\x22\xe0\x93\xa2\x23\xe0\x93\x83\x32\xe0\xa3"
        !          76162:             "\x72\x43\xe0\xa3\x53\x52\xe0\xb3\x42\x63\xe0\xb3\x23"
        !          76163:             "\x73\xe0\xb6\x93\xe0\xb4\xb3\xe0\xa3\xd3\xe0\x83\xe0"
        !          76164:             "\x14\xe0\x44\xe0\x44\xe4\xe0\x85\x85\xe0\xce\xe0\xe0"
        !          76165:             "\x38\xe0\x38" }  },
        !          76166:       /* --- pixel bitmap for stmary450 char#60 \olessthan --- */
        !          76167:       {  60,53663,                      /* character number, location */
        !          76168:          36, 3,   -5, 3,      /* topleft row,col, and botleft row,col */
        !          76169:           { 42,   41, 3,293, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          76170:             "\xe0\x38\xe0\xe0\x3e\xe0\xc5\x85\xe0\x84\xe4\xe0\x44"
        !          76171:             "\xe0\x44\xe0\x13\xe0\x83\xd3\xe0\xa3\xb3\xe0\x96\x93"
        !          76172:             "\xe0\x75\x23\x73\xe0\x65\x53\x62\xe0\x45\x92\x53\xe0"
        !          76173:             "\x25\xb3\x42\xe5\xe0\x12\x33\xc5\xe0\x33\x22\xa5\xe0"
        !          76174:             "\x72\x22\x85\xe0\x92\x13\x55\xe0\xc5\x45\xe0\xe0\x14"
        !          76175:             "\x15\xe0\xe0\x48\xe0\xe0\x65\xe0\xe0\x98\xe0\xe0\x64"
        !          76176:             "\x15\xe0\xe0\x44\x45\xe0\xe0\x15\x55\xe0\xc3\x12\x85"
        !          76177:             "\xe0\x92\x22\xa5\xe0\x72\x23\xc5\xe0\x33\x32\xe5\xe0"
        !          76178:             "\x12\x43\xe0\x25\xb3\x52\xe0\x45\x92\x63\xe0\x65\x53"
        !          76179:             "\x73\xe0\x75\x23\x93\xe0\x96\xb3\xe0\xa3\xd3\xe0\x83"
        !          76180:             "\xe0\x14\xe0\x44\xe0\x44\xe4\xe0\x85\x85\xe0\xce\xe0"
        !          76181:             "\xe0\x38\xe0\x38" }  },
        !          76182:       /* --- pixel bitmap for stmary450 char#61 \ogreaterthan --- */
        !          76183:       {  61,54597,                      /* character number, location */
        !          76184:          36, 3,   -5, 3,      /* topleft row,col, and botleft row,col */
        !          76185:           { 42,   41, 3,293, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          76186:             "\xe0\x38\xe0\xe0\x3e\xe0\xc5\x85\xe0\x84\xe4\xe0\x44"
        !          76187:             "\xe0\x44\xe0\x13\xe0\x83\xd3\xe0\xa3\xb6\xe0\x93\x93"
        !          76188:             "\x25\xe0\x73\x73\x55\xe0\x63\x62\x95\xe0\x42\x53\xb5"
        !          76189:             "\xe0\x23\x42\xe0\x15\xe2\x33\xe0\x35\xc3\x22\xe0\x75"
        !          76190:             "\xa2\x22\xe0\x95\x82\x13\xe0\xc5\x55\xe0\xe0\x15\x44"
        !          76191:             "\xe0\xe0\x45\x14\xe0\xe0\x68\xe0\xe0\x95\xe0\xe0\x68"
        !          76192:             "\xe0\xe0\x45\x14\xe0\xe0\x15\x45\xe0\xc5\x53\x12\xe0"
        !          76193:             "\x95\x82\x22\xe0\x75\xa2\x23\xe0\x35\xc3\x32\xe0\x15"
        !          76194:             "\xe2\x43\xb5\xe0\x23\x52\x95\xe0\x42\x63\x55\xe0\x63"
        !          76195:             "\x73\x25\xe0\x73\x96\xe0\x93\xb3\xe0\xa3\xd3\xe0\x83"
        !          76196:             "\xe0\x14\xe0\x44\xe0\x44\xe4\xe0\x85\x85\xe0\xce\xe0"
        !          76197:             "\xe0\x38\xe0\x38" }  },
        !          76198:       /* --- pixel bitmap for stmary450 char#62 \ovee --- */
        !          76199:       {  62,55523,                      /* character number, location */
        !          76200:          36, 3,   -5, 3,      /* topleft row,col, and botleft row,col */
        !          76201:           { 42,   41, 3,309, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          76202:             "\xe0\x38\xe0\xe0\x3e\xe0\xc5\x85\xe0\x84\xe4\xe0\x44"
        !          76203:             "\xe0\x44\xe0\x13\xe0\x83\xd3\xe0\xa3\xb3\xe0\xc3\x95"
        !          76204:             "\xe0\xa5\x73\x12\xe0\xa2\x13\x62\x23\xe0\x83\x22\x53"
        !          76205:             "\x32\xe0\x82\x33\x42\x43\xe0\x63\x42\x33\x52\xe0\x62"
        !          76206:             "\x53\x22\x62\xe0\x62\x62\x22\x63\xe0\x43\x62\x13\x72"
        !          76207:             "\xe0\x42\x75\x83\xe0\x23\x84\x92\xe0\x22\x94\x93\xe3"
        !          76208:             "\x92\x0f\x12\xa2\xe2\xa2\x02\xa3\xc3\xa4\xb2\xc2\xb5"
        !          76209:             "\xa3\xa3\xa3\xf1\x12\xb2\xa2\xb2\x10\x13\xa3\x83\xa3"
        !          76210:             "\x32\xb2\x82\xb2\x43\xa3\x63\xa3\x52\xb2\x62\xb2\x63"
        !          76211:             "\xa3\x43\xa3\x73\xa2\x42\xa3\x93\x92\x42\x93\xb3\x83"
        !          76212:             "\x23\x83\xd3\x82\x22\x83\xe0\x14\x66\x64\xe0\x44\x54"
        !          76213:             "\x54\xe0\x85\x24\x25\xe0\xce\xe0\xe0\x38\xe0\x30" }  },
        !          76214:       /* --- pixel bitmap for stmary450 char#63 \owedge --- */
        !          76215:       {  63,56521,                      /* character number, location */
        !          76216:          36, 3,   -5, 3,      /* topleft row,col, and botleft row,col */
        !          76217:           { 42,   41, 3,309, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          76218:             "\xe0\x38\xe0\xe0\x3e\xe0\xc5\x24\x25\xe0\x84\x54\x54"
        !          76219:             "\xe0\x44\x66\x64\xe0\x13\x82\x22\x83\xd3\x83\x23\x83"
        !          76220:             "\xb3\x92\x42\x93\x93\xa2\x42\xa3\x73\xa3\x43\xa3\x62"
        !          76221:             "\xb2\x62\xb2\x53\xa3\x63\xa3\x42\xb2\x82\xb2\x33\xa3"
        !          76222:             "\x83\xa3\x10\xf1\x12\xb2\xa2\xb2\x13\xa3\xa3\xa5\xb2"
        !          76223:             "\xc2\xb4\xa3\xc3\xa2\x0f\x12\xa2\xe2\xa2\x02\x93\xe3"
        !          76224:             "\x94\x92\xe0\x22\x94\x83\xe0\x23\x85\x72\xe0\x42\x73"
        !          76225:             "\x12\x63\xe0\x43\x62\x22\x62\xe0\x62\x62\x23\x52\xe0"
        !          76226:             "\x62\x53\x32\x43\xe0\x63\x42\x43\x32\xe0\x82\x33\x52"
        !          76227:             "\x23\xe0\x83\x22\x63\x12\xe0\xa2\x13\x75\xe0\xa5\x93"
        !          76228:             "\xe0\xc3\xb3\xe0\xa3\xd3\xe0\x83\xe0\x14\xe0\x44\xe0"
        !          76229:             "\x44\xe4\xe0\x85\x85\xe0\xce\xe0\xe0\x38\xe0\x30" }  },
        !          76230:       /* --- pixel bitmap for stmary450 char#64 \oblong --- */
        !          76231:       {  64,57407,                      /* character number, location */
        !          76232:          38, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          76233:           { 34,   38, 2,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          76234:             "\xff\x02\x00\x22\x00\xff\x1f\x03\x1c\x03\x00\xff\x01"
        !          76235:             "\x22\x01\x21" }  },
        !          76236:       /* --- pixel bitmap for stmary450 char#65 \inplus --- */
        !          76237:       {  65,58220,                      /* character number, location */
        !          76238:          34, 5,   -3, 5,      /* topleft row,col, and botleft row,col */
        !          76239:           { 32,   37, 3,162, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          76240:             "\xe0\x1e\x03\xce\x06\xae\x08\x88\xe0\x96\xe0\xb5\xe0"
        !          76241:             "\xc4\xe0\xd4\xe0\xd4\xe0\xe3\x93\xe0\x24\x93\xe0\x14"
        !          76242:             "\xa3\xe0\xf1\x13\xb3\xe4\xb3\xef\x13\xc3\xef\x2e\x0e"
        !          76243:             "\x04\x0f\x13\xc3\xe4\xb3\xe0\xf1\x13\xb3\xe0\x14\xa3"
        !          76244:             "\xe0\x24\x93\xe0\x33\xa1\xe0\x44\xe0\xe0\x14\xe0\xe0"
        !          76245:             "\x14\xe0\xe0\x15\xe0\xe6\xe0\xd8\xe0\xce\x08\xce\x06"
        !          76246:             "\xe0\x1e\x03" }  },
        !          76247:       /* --- pixel bitmap for stmary450 char#66 \niplus --- */
        !          76248:       {  66,59008,                      /* character number, location */
        !          76249:          34, 5,   -3, 5,      /* topleft row,col, and botleft row,col */
        !          76250:           { 32,   37, 3,163, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          76251:             "\x1e\x02\xe0\x1e\x06\xde\x07\xe0\xc8\xe0\xd6\xe0\xe5"
        !          76252:             "\xe0\xe0\x14\xe0\xe0\x14\xe0\xe0\x14\xe0\x33\x93\xe0"
        !          76253:             "\x33\x94\xe0\x23\xa4\x10\xf1\xe3\xb3\x10\xe3\xb4\xf1"
        !          76254:             "\xe3\xc3\x0f\x2e\x0e\x04\xf1\xe3\xc3\xe3\xb4\xf1\xe3"
        !          76255:             "\xb3\x10\xe3\xa4\xe0\x13\x94\xe0\x31\xa3\xe0\xe4\xe0"
        !          76256:             "\xd4\xe0\xd4\xe0\xc5\xe0\xb6\xe0\x98\x9e\x07\xae\x06"
        !          76257:             "\xde\x02\xe0\x12" }  },
        !          76258:       /* --- pixel bitmap for stmary450 char#67 \nplus --- */
        !          76259:       {  67,59800,                      /* character number, location */
        !          76260:          38, 4,   -1, 4,      /* topleft row,col, and botleft row,col */
        !          76261:           { 34,   39, 3,114, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          76262:             "\xca\xe0\x7e\x02\xe0\x2e\x06\xc8\x88\x96\xe6\x75\xe0"
        !          76263:             "\x45\x54\xe0\x84\x34\xe0\xa4\x10\xf1\x13\xe0\xc3\x14"
        !          76264:             "\xc3\xb4\x0f\x73\xd3\xc3\x03\x4e\x06\x46\x3e\x08\x36"
        !          76265:             "\x4e\x06\x43\x0f\x83\xd3\xc3\x03\xe1\xd3\x0f\x53\xe0"
        !          76266:             "\xe3\x12\xe0\xe0\x12" }  },
        !          76267:       /* --- pixel bitmap for stmary450 char#68 \subsetplus --- */
        !          76268:       {  68,60738,                      /* character number, location */
        !          76269:          34, 5,   -3, 5,      /* topleft row,col, and botleft row,col */
        !          76270:           { 38,   37, 3,214, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          76271:             "\xe0\x1e\x09\xce\x0c\xae\x0e\x88\xe0\xe0\x16\xe0\xe0"
        !          76272:             "\x35\xe0\xe0\x44\xe0\xe0\x54\xe0\xe0\x54\xe0\xe0\x63"
        !          76273:             "\xe0\x13\xe0\x24\xe0\x13\xe0\x14\xe0\x23\xe0\xf1\x13"
        !          76274:             "\xe0\x33\xe4\xe0\x33\xef\x13\xe0\x43\xe3\xbe\x04\x63"
        !          76275:             "\xae\x05\x63\xbe\x04\x6f\x13\xe0\x43\xe4\xe0\x33\xe0"
        !          76276:             "\xf1\x13\xe0\x33\xe0\x14\xe0\x23\xe0\x24\xe0\x13\xe0"
        !          76277:             "\x33\xe0\x21\xe0\x44\xe0\xe0\x74\xe0\xe0\x74\xe0\xe0"
        !          76278:             "\x75\xe0\xe0\x66\xe0\xe0\x58\xe0\xe0\x4e\x0e\xce\x0c"
        !          76279:             "\xe0\x1e\x09" }  },
        !          76280:       /* --- pixel bitmap for stmary450 char#69 \supsetplus --- */
        !          76281:       {  69,61596,                      /* character number, location */
        !          76282:          34, 5,   -3, 5,      /* topleft row,col, and botleft row,col */
        !          76283:           { 38,   37, 3,215, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          76284:             "\x1e\x08\xe0\x1e\x0c\xde\x0d\xe0\xe0\x48\xe0\xe0\x56"
        !          76285:             "\xe0\xe0\x65\xe0\xe0\x74\xe0\xe0\x74\xe0\xe0\x74\xe0"
        !          76286:             "\x33\xe0\x13\xe0\x33\xe0\x14\xe0\x23\xe0\x24\x10\xf1"
        !          76287:             "\xe3\xe0\x33\x10\xe3\xe0\x34\xf1\xe3\xe0\x43\x6e\x04"
        !          76288:             "\xb3\x6e\x05\xa3\x6e\x04\xb3\xf1\xe3\xe0\x43\xe3\xe0"
        !          76289:             "\x34\xf1\xe3\xe0\x33\x10\xe3\xe0\x24\xe0\x13\xe0\x14"
        !          76290:             "\xe0\x31\xe0\x23\xe0\xe0\x64\xe0\xe0\x54\xe0\xe0\x54"
        !          76291:             "\xe0\xe0\x45\xe0\xe0\x36\xe0\xe0\x18\x9e\x0d\xae\x0c"
        !          76292:             "\xde\x08\xe0\x13" }  },
        !          76293:       /* --- pixel bitmap for stmary450 char#70 \subsetpluseq --- */
        !          76294:       {  70,62472,                      /* character number, location */
        !          76295:          40, 5,  -11, 5,      /* topleft row,col, and botleft row,col */
        !          76296:           { 38,   51, 3,240, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          76297:             "\xe0\x1e\x09\xce\x0c\xae\x0e\x88\xe0\xe0\x16\xe0\xe0"
        !          76298:             "\x35\xe0\xe0\x44\xe0\xe0\x54\xe0\xe0\x54\xe0\xe0\x63"
        !          76299:             "\xe0\x13\xe0\x24\xe0\x13\xe0\x14\xe0\x23\xe0\xf1\x13"
        !          76300:             "\xe0\x33\xe4\xe0\x33\xef\x13\xe0\x43\xe3\xbe\x04\x63"
        !          76301:             "\xae\x05\x63\xbe\x04\x6f\x13\xe0\x43\xe4\xe0\x33\xe0"
        !          76302:             "\xf1\x13\xe0\x33\xe0\x14\xe0\x23\xe0\x24\xe0\x13\xe0"
        !          76303:             "\x33\xe0\x22\xe0\x34\xe0\xe0\x74\xe0\xe0\x74\xe0\xe0"
        !          76304:             "\x75\xe0\xe0\x66\xe0\xe0\x58\xe0\xe0\x4e\x0e\xce\x0c"
        !          76305:             "\xe0\x1e\x09\xfa\xe0\xe0\xa0\x2e\x0e\x08\x1e\x0e\x09"
        !          76306:             "\x2e\x0e\x08" }  },
        !          76307:       /* --- pixel bitmap for stmary450 char#71 \supsetpluseq --- */
        !          76308:       {  71,63358,                      /* character number, location */
        !          76309:          40, 5,  -11, 5,      /* topleft row,col, and botleft row,col */
        !          76310:           { 38,   51, 3,241, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          76311:             "\x1e\x08\xe0\x1e\x0c\xde\x0d\xe0\xe0\x48\xe0\xe0\x56"
        !          76312:             "\xe0\xe0\x65\xe0\xe0\x74\xe0\xe0\x74\xe0\xe0\x74\xe0"
        !          76313:             "\x33\xe0\x13\xe0\x33\xe0\x14\xe0\x23\xe0\x24\x10\xf1"
        !          76314:             "\xe3\xe0\x33\x10\xe3\xe0\x34\xf1\xe3\xe0\x43\x6e\x04"
        !          76315:             "\xb3\x6e\x05\xa3\x6e\x04\xb3\xf1\xe3\xe0\x43\xe3\xe0"
        !          76316:             "\x34\xf1\xe3\xe0\x33\x10\xe3\xe0\x24\xe0\x13\xe0\x14"
        !          76317:             "\xe0\x32\xe0\x13\xe0\xe0\x64\xe0\xe0\x54\xe0\xe0\x54"
        !          76318:             "\xe0\xe0\x45\xe0\xe0\x36\xe0\xe0\x18\x9e\x0d\xae\x0c"
        !          76319:             "\xde\x08\xe0\x10\xfa\xe0\xe0\xae\x0e\x08\x2e\x0e\x09"
        !          76320:             "\x1e\x0e\x08\x22" }  },
        !          76321:       /* --- pixel bitmap for stmary450 char#72 \Lbag --- */
        !          76322:       {  72,64207,                      /* character number, location */
        !          76323:          47, 4,  -16, 4,      /* topleft row,col, and botleft row,col */
        !          76324:           { 20,   63, 3,180, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          76325:             "\x55\xd2\x42\xb2\x71\x92\x82\x84\x72\x6f\x36\x62\x60"
        !          76326:             "\x14\x72\x60\xf3\xc2\x60\xb3\x60\xf1\xb2\x70\xf1\xa3"
        !          76327:             "\x70\xa2\x80\xf1\x93\x80\xf1\x83\x90\x74\xe0\x23\xe0"
        !          76328:             "\x24\xe0\x23\xb0\xf1\x54\xb0\x53\xc0\xf1\x44\xc0\xf1"
        !          76329:             "\x34\xd0\xf1\x25\xd0\x24\xe0\xf2\x15\xe0\x14\xe0\x1f"
        !          76330:             "\x85\xe0\x10\xf1\x15\xe0\x24\xe0\x25\xe0\x24\xe0\x34"
        !          76331:             "\xe0\x34\xe0\x34\xe0\x34\xe0\x44\xe0\x45\xe0\x55" }  },
        !          76332:       /* --- pixel bitmap for stmary450 char#73 \Rbag --- */
        !          76333:       {  73,64799,                      /* character number, location */
        !          76334:          47, 4,  -16, 4,      /* topleft row,col, and botleft row,col */
        !          76335:           { 20,   63, 3,177, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          76336:             "\xa5\xe2\x42\xb1\x72\x92\x82\x72\x74\x10\xf3\x62\x66"
        !          76337:             "\x62\x74\x10\xf3\x62\xc0\x63\xb0\xf1\x72\xb0\xf1\x73"
        !          76338:             "\xa0\x82\xa0\xf1\x83\x90\xf1\x93\x80\x94\xe0\x33\xe0"
        !          76339:             "\x34\xe0\x33\x60\xf1\xb4\x50\xc3\x50\xf1\xc4\x40\xf1"
        !          76340:             "\xd4\x30\xf1\xd5\x20\xe4\x20\xf2\xe5\x10\xe0\x14\x10"
        !          76341:             "\xf8\xe0\x15\xf1\xe5\x10\xe4\xe0\x15\xe0\x14\xe0\x14"
        !          76342:             "\xe0\x14\xe0\x14\xe0\x14\xe4\xd5\xb5\xe0\x10" }  },
        !          76343:       /* --- pixel bitmap for stmary450 char#74 \llbracket --- */
        !          76344:       {  74,65748,                      /* character number, location */
        !          76345:          47, 6,  -16, 6,      /* topleft row,col, and botleft row,col */
        !          76346:           { 18,   63, 2,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          76347:             "\xff\x02\x00\x12\x00\xff\x38\x03\x05\x03\x07\xff\x02"
        !          76348:             "\x12" }  },
        !          76349:       /* --- pixel bitmap for stmary450 char#75 \rrbracket --- */
        !          76350:       {  75,66794,                      /* character number, location */
        !          76351:          47, 2,  -16, 2,      /* topleft row,col, and botleft row,col */
        !          76352:           { 17,   63, 2,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          76353:             "\xff\x02\x00\x11\xff\x38\x06\x03\x05\x03\x00\xff\x02"
        !          76354:             "\x11" }  },
        !          76355:       /* --- pixel bitmap for stmary450 char#76 \llparenthesis --- */
        !          76356:       {  76,67698,                      /* character number, location */
        !          76357:          47, 7,  -16, 7,      /* topleft row,col, and botleft row,col */
        !          76358:           { 14,   63, 3,138, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          76359:             "\xd1\xc2\xb3\xa4\x95\x82\x13\xf1\x72\x23\x62\x33\x53"
        !          76360:             "\x33\x52\x43\x43\x43\x42\x53\xf1\x33\x53\x32\x63\xf2"
        !          76361:             "\x23\x63\x14\x63\xf3\x13\x73\x0f\xe4\x73\xf3\x13\x73"
        !          76362:             "\x14\x63\xf2\x23\x63\x32\x63\xf1\x33\x53\x42\x53\x43"
        !          76363:             "\x43\x52\x43\x53\x33\x62\x33\xf1\x72\x23\x82\x13\x95"
        !          76364:             "\xa4\xb3\xc2\xd1" }  },
        !          76365:       /* --- pixel bitmap for stmary450 char#77 \rrparenthesis --- */
        !          76366:       {  77,68595,                      /* character number, location */
        !          76367:          47, 3,  -16, 3,      /* topleft row,col, and botleft row,col */
        !          76368:           { 14,   63, 3,139, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          76369:             "\x01\xd2\xc3\xb4\xa5\x93\x12\x8f\x13\x22\x73\x32\x63"
        !          76370:             "\x33\x53\x42\x53\x43\x43\x52\x4f\x13\x53\x33\x62\x3f"
        !          76371:             "\x23\x63\x23\x64\x1f\x33\x73\x1f\xe3\x74\x0f\x33\x73"
        !          76372:             "\x13\x64\x1f\x23\x63\x23\x62\x3f\x13\x53\x33\x52\x43"
        !          76373:             "\x43\x43\x42\x53\x33\x53\x32\x6f\x13\x22\x73\x12\x85"
        !          76374:             "\x94\xa3\xb2\xc1\xd5" }  },
        !          76375:       /* --- pixel bitmap for stmary450 char#78 \binampersand --- */
        !          76376:       {  78,69548,                      /* character number, location */
        !          76377:          37, 3,   -6, 3,      /* topleft row,col, and botleft row,col */
        !          76378:           { 42,   43, 3,269, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          76379:             "\xe0\x28\xe0\xe0\x3d\xe0\xee\x01\xe0\xc6\x65\xe0\xa4"
        !          76380:             "\xb4\xe0\x93\xd3\xe0\x84\xd4\xc0\xf3\x93\xe0\x13\xc0"
        !          76381:             "\x94\xe3\xe0\x83\xd4\xe0\x84\xc3\xe0\xa3\xb4\xe0\xa4"
        !          76382:             "\x94\xe0\xc4\x65\xe0\xe4\x36\xe0\xe0\x2b\xe0\xe0\x2a"
        !          76383:             "\xe0\xe0\x1b\xe0\x52\x8e\xe0\x33\x68\x45\xe0\x14\x56"
        !          76384:             "\x94\xe3\x55\xc4\xc4\x44\xe0\x14\xb3\x44\xe0\x35\x84"
        !          76385:             "\x34\xe0\x55\x64\x43\xe0\x75\x53\x44\xe0\x94\x34\x43"
        !          76386:             "\xe0\xb4\x14\x53\xe0\xc7\x63\xe0\xd5\x73\xe0\xd6\x63"
        !          76387:             "\xe0\xb9\x54\xe0\x95\x24\x53\xe0\x76\x44\x44\xe0\x46"
        !          76388:             "\x74\x44\xe8\x95\x36\x7a\xc4\x4e\x06\xe0\x13\x5e\x02"
        !          76389:             "\xe0\xe0\x19\xe0\xb3" }  },
        !          76390:       /* --- pixel bitmap for stmary450 char#79 \bindnasrepma --- */
        !          76391:       {  79,70365,                      /* character number, location */
        !          76392:          37, 3,   -6, 3,      /* topleft row,col, and botleft row,col */
        !          76393:           { 42,   43, 3,269, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          76394:             "\xe0\xb9\xe0\xe0\x1e\x02\x53\xe0\x1e\x06\x44\xca\x76"
        !          76395:             "\x35\x98\xe4\x44\x76\xe0\x44\x44\x46\xe0\x73\x54\x25"
        !          76396:             "\xe0\x94\x59\xe0\xb3\x66\xe0\xd3\x75\xe0\xd3\x67\xe0"
        !          76397:             "\xc3\x54\x14\xe0\xb3\x44\x34\xe0\x94\x43\x55\xe0\x73"
        !          76398:             "\x44\x65\xe0\x54\x34\x85\xe0\x34\x43\xb4\xe0\x14\x44"
        !          76399:             "\xc4\xc5\x53\xe4\x96\x54\xe0\x15\x48\x63\xe0\x3e\x82"
        !          76400:             "\xe0\x5b\xe0\xe0\x1a\xe0\xe0\x2b\xe0\xe0\x26\x34\xe0"
        !          76401:             "\xe5\x64\xe0\xc4\x94\xe0\xa4\xb3\xe0\xa3\xc4\xe0\x84"
        !          76402:             "\xd3\xe0\x83\xe4\x90\xf3\xc3\xe0\x13\x90\xc4\xd4\xe0"
        !          76403:             "\x83\xd3\xe0\x94\xb4\xe0\xa5\x66\xe0\xce\x01\xe0\xed"
        !          76404:             "\xe0\xe0\x38\xe0\x23" }  },
        !          76405:       /* --- pixel bitmap for stmary450 char#80 \trianglelefteqslant --- */
        !          76406:       {  80,71257,                      /* character number, location */
        !          76407:          40, 5,  -11, 5,      /* topleft row,col, and botleft row,col */
        !          76408:           { 38,   51, 3,294, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          76409:             "\xe0\xe0\x73\xe0\xe0\x55\xe0\xe0\x37\xe0\xe0\x19\xe0"
        !          76410:             "\xd7\x13\xe0\xb7\x33\xe0\x97\x53\xe0\x77\x73\xe0\x57"
        !          76411:             "\x93\xe0\x28\xb3\xe8\xd3\xc8\xe0\x13\xa7\xe0\x43\x87"
        !          76412:             "\xe0\x63\x67\xe0\x83\x47\xe0\xa3\x27\xe0\xca\xe0\xe8"
        !          76413:             "\xe0\xe0\x2a\xe0\xe3\x27\xe0\xc3\x47\xe0\xa3\x67\xe0"
        !          76414:             "\x83\x87\xe0\x63\xa7\xe0\x43\xc7\xe0\x23\xe8\xd3\xe0"
        !          76415:             "\x28\xb3\xe0\x48\x93\xe0\x77\x73\xe0\x97\x53\x12\xe0"
        !          76416:             "\x87\x38\xe0\x87\x1a\xe0\x89\x27\xe0\x87\x47\xe0\x85"
        !          76417:             "\x67\xe0\x83\x87\xe0\xe0\x57\xe0\xe0\x57\xe0\xe0\x58"
        !          76418:             "\xe0\xe0\x48\xe0\xe0\x48\xe0\xe0\x57\xe0\xe0\x57\xe0"
        !          76419:             "\xe0\x57\xe0\xe0\x57\xe0\xe0\x57\xe0\xe0\x56\xe0\xe0"
        !          76420:             "\x65\xe0\xe0\x73" }  },
        !          76421:       /* --- pixel bitmap for stmary450 char#81 \trianglerighteqslant --- */
        !          76422:       {  81,72138,                      /* character number, location */
        !          76423:          40, 5,  -11, 5,      /* topleft row,col, and botleft row,col */
        !          76424:           { 38,   51, 3,295, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          76425:             "\x03\xe0\xe0\x75\xe0\xe0\x57\xe0\xe0\x39\xe0\xe0\x13"
        !          76426:             "\x17\xe0\xd3\x37\xe0\xb3\x57\xe0\x93\x77\xe0\x73\x97"
        !          76427:             "\xe0\x53\xb8\xe0\x23\xd8\xe3\xe0\x18\xc3\xe0\x47\xa3"
        !          76428:             "\xe0\x67\x83\xe0\x87\x63\xe0\xa7\x43\xe0\xc7\x23\xe0"
        !          76429:             "\xea\xe0\xe0\x28\xe0\xea\xe0\xc7\x23\xe0\xa7\x43\xe0"
        !          76430:             "\x87\x63\xe0\x67\x83\xe0\x47\xa3\xe0\x27\xc3\xd8\xe3"
        !          76431:             "\xb8\xe0\x23\x98\xe0\x43\x77\xe0\x73\x57\xe0\x93\x37"
        !          76432:             "\xe0\x82\x13\x17\xe0\x8e\xe0\x8e\xe0\x87\x25\xe0\x87"
        !          76433:             "\x43\xe0\x87\xe0\xe0\x17\xe0\xe0\x17\xe0\xe0\x17\xe0"
        !          76434:             "\xe8\xe0\xe8\xe0\xe8\xe0\xe7\xe0\xe0\x17\xe0\xe0\x17"
        !          76435:             "\xe0\xe0\x17\xe0\xe0\x17\xe0\xe0\x26\xe0\xe0\x35\xe0"
        !          76436:             "\xe0\x53\xe0\xe0\x75" }  },
        !          76437:       /* --- pixel bitmap for stmary450 char#82 \ntrianglelefteqslant --- */
        !          76438:       {  82,73065,                      /* character number, location */
        !          76439:          50, 5,  -19, 5,      /* topleft row,col, and botleft row,col */
        !          76440:           { 38,   69, 3,403, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          76441:             "\xe0\xe0\x42\x40\xf1\xe0\xe0\x33\x40\xe0\xe0\x24\xe0"
        !          76442:             "\xe0\x63\xe0\xe0\x64\x50\xf1\xe0\xe0\x13\x60\xe0\xe4"
        !          76443:             "\xe0\xe0\x63\xe0\xe0\x64\x51\xe0\xe3\x44\xe0\xc4\x17"
        !          76444:             "\xf1\xe0\xcc\xe0\xb7\x33\xe0\x97\x53\xe0\x77\x73\xe0"
        !          76445:             "\x58\x83\xe0\x3a\x83\xe0\x17\x14\x83\xd7\x33\x93\xb7"
        !          76446:             "\x44\x93\x97\x63\xa3\x77\x74\xa3\x57\x93\xb3\x37\xb3"
        !          76447:             "\xb3\x17\xc4\xb9\xe3\xca\xc4\xc3\x18\xa3\xd3\x38\x83"
        !          76448:             "\xd3\x67\x54\xd3\x87\x33\xe3\xab\xe3\xc8\xe0\x13\xe7"
        !          76449:             "\xe3\xe0\x27\xc3\xe0\x29\xa3\xe0\x14\x17\x83\xe0\x13"
        !          76450:             "\x47\x63\x11\xc4\x67\x47\xa3\x97\x2a\x73\xba\x18\x44"
        !          76451:             "\xd8\x38\x23\xe0\x26\x6a\xe0\x44\x87\xe0\xe0\x57\xe0"
        !          76452:             "\xe0\x48\xe0\xe0\x2a\xe0\xd4\x27\xe0\xb3\x57\xe0\x84"
        !          76453:             "\x77\xe0\x63\xa7\xe0\x43\xc7\xe0\x14\xe7\xd3\xe0\x37"
        !          76454:             "\xa4\xe0\x57\x83\xe0\x86\x64\xe0\xa4\xf1\x63\xe0\xe0"
        !          76455:             "\x10\x54\xe0\xe0\x63\xe0\xe0\x64\xe0\xe0\x20\xf1\x43"
        !          76456:             "\xe0\xe0\x30\x42\xe0\xe0\x40" }  },
        !          76457:       /* --- pixel bitmap for stmary450 char#83 \ntrianglerighteqslant --- */
        !          76458:       {  83,74097,                      /* character number, location */
        !          76459:          50, 5,  -19, 5,      /* topleft row,col, and botleft row,col */
        !          76460:           { 38,   69, 3,419, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          76461:             "\xe0\xe0\x42\x40\xf1\xe0\xe0\x33\x40\xe0\xe0\x24\xe0"
        !          76462:             "\xe0\x63\xe0\xe0\x64\x50\xf1\xe0\xe0\x13\x60\xe0\xe4"
        !          76463:             "\xe0\xe0\x63\x81\xe0\xb4\x74\xe0\x93\x87\xe0\x54\x89"
        !          76464:             "\xe0\x33\x9b\xe0\x13\x93\x37\xc4\x93\x57\xa3\xa3\x77"
        !          76465:             "\x74\xa3\x97\x53\xb3\xb7\x33\xb3\xdb\xb3\xe0\x18\xc3"
        !          76466:             "\xe0\x37\xb3\xe0\x57\x93\xe0\x4a\x73\xe0\x43\x27\x53"
        !          76467:             "\xe0\x43\x47\x33\xe0\x34\x67\x13\xe0\x33\x99\xe0\x24"
        !          76468:             "\x8a\xe0\x23\x78\x13\xe0\x23\x58\x33\xe0\x14\x37\x63"
        !          76469:             "\xe0\x13\x27\x83\xeb\xa3\xe9\xc3\xd8\xe3\xc7\xe0\x23"
        !          76470:             "\xa7\xe0\x43\x88\xe0\x53\x69\xe0\x63\x4b\xe0\x41\x13"
        !          76471:             "\x27\x23\xe0\x3e\x43\xee\x01\x54\xc8\x16\x73\xb8\x34"
        !          76472:             "\x84\x97\xe0\x43\x87\xe0\x54\x67\xe0\x73\x57\xe0\x93"
        !          76473:             "\x37\xe0\xa4\x17\xe0\xca\xe0\xd9\xe0\xe0\x17\xe0\xe0"
        !          76474:             "\x17\xe0\xe0\x17\xe0\xe0\x18\xe0\xea\xe0\xd6\x13\xe0"
        !          76475:             "\xe4\x24\xe0\xe0\xf1\x63\xe0\xe0\x10\x54\xe0\xe0\x63"
        !          76476:             "\xe0\xe0\x64\xe0\xe0\x20\xf1\x43\xe0\xe0\x30\x42\xe0"
        !          76477:             "\xe0\x40" }  },
        !          76478:       /* --- pixel bitmap for stmary450 char#84 \llfloor --- */
        !          76479:       {  84,74969,                      /* character number, location */
        !          76480:          47, 4,  -16, 4,      /* topleft row,col, and botleft row,col */
        !          76481:           { 31,   63, 2,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          76482:             "\x01\x02\x0c\x02\x0e\xff\x3a\x03\x0b\x03\x0e\xff\x01"
        !          76483:             "\x1f\x01\x1e" }  },
        !          76484:       /* --- pixel bitmap for stmary450 char#85 \rrfloor --- */
        !          76485:       {  85,75821,                      /* character number, location */
        !          76486:          47, 0,  -16, 0,      /* topleft row,col, and botleft row,col */
        !          76487:           { 31,   63, 2,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          76488:             "\x0f\x02\x0c\x02\xff\x3a\x0e\x03\x0b\x03\x01\x3d\x01"
        !          76489:             "\x1e" }  },
        !          76490:       /* --- pixel bitmap for stmary450 char#86 \llceil --- */
        !          76491:       {  86,76659,                      /* character number, location */
        !          76492:          47, 4,  -16, 4,      /* topleft row,col, and botleft row,col */
        !          76493:           { 31,   63, 2,19, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          76494:             "\x01\x1e\x00\xff\x01\x1f\x00\xff\x3a\x03\x0b\x03\x0e"
        !          76495:             "\x00\x01\x02\x0c\x02\x0e" }  },
        !          76496:       /* --- pixel bitmap for stmary450 char#87 \rrceil --- */
        !          76497:       {  87,77498,                      /* character number, location */
        !          76498:          47, 0,  -16, 0,      /* topleft row,col, and botleft row,col */
        !          76499:           { 31,   63, 2,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          76500:             "\x01\x3d\x01\x1e\xff\x3a\x0e\x03\x0b\x03\x0f\x02\x0c"
        !          76501:             "\x02" }  },
        !          76502:       /* --- pixel bitmap for stmary450 char#88 \arrownot --- */
        !          76503:       {  88,78069,                      /* character number, location */
        !          76504:          27,23,    4,23,      /* topleft row,col, and botleft row,col */
        !          76505:           { 16,   23, 3,47, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          76506:             "\xe2\xd3\xc4\xc3\xc4\xb4\xc3\xc4\xb4\xc3\xc4\xb4\xb4"
        !          76507:             "\xc3\xc4\xb4\xc3\xc4\xb4\xc3\xc4\xc3\xd2\xe0" }  },
        !          76508:       /* --- pixel bitmap for stmary450 char#89 \Arrownot --- */
        !          76509:       {  89,78447,                      /* character number, location */
        !          76510:          34,24,   -3,24,      /* topleft row,col, and botleft row,col */
        !          76511:           { 14,   37, 3,103, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          76512:             "\xb2\xb4\xf2\xa3\x10\x94\x10\xf1\x93\x20\x84\x20\xf1"
        !          76513:             "\x83\x30\x74\x30\xf2\x73\x40\x64\x40\xf1\x63\x50\x54"
        !          76514:             "\x50\xf1\x53\x60\x44\x60\xf2\x43\x70\x34\x70\xf1\x33"
        !          76515:             "\x80\x24\x80\xf1\x23\x90\x14\x90\xf2\x13\xa4\xb2\xb7" }  },
        !          76516:       /* --- pixel bitmap for stmary450 char#90 \Mapstochar --- */
        !          76517:       {  90,78876,                      /* character number, location */
        !          76518:          34, 3,   -3, 3,      /* topleft row,col, and botleft row,col */
        !          76519:           {  5,   37, 3,21, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          76520:             "\xf9\x03\x24\x19\x1f\xa3\x24\x19\x1f\x93\x24" }  },
        !          76521:       /* --- pixel bitmap for stmary450 char#91 \mapsfromchar --- */
        !          76522:       {  91,79217,                      /* character number, location */
        !          76523:          27,-8,    4,-8,      /* topleft row,col, and botleft row,col */
        !          76524:           {  5,   23, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          76525:             "\xf9\x23\x19\x14\xf9\x23" }  },
        !          76526:       /* --- pixel bitmap for stmary450 char#92 \Mapsfromchar --- */
        !          76527:       {  92,79549,                      /* character number, location */
        !          76528:          34,-8,   -3,-8,      /* topleft row,col, and botleft row,col */
        !          76529:           {  5,   37, 3,20, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          76530:             "\xf9\x23\x19\x14\xfa\x23\x19\x14\xf9\x23" }  },
        !          76531:       /* --- pixel bitmap for stmary450 char#93 \leftrightarrowtriangle --- */
        !          76532:       {  93,80446,                      /* character number, location */
        !          76533:          26, 3,    5, 3,      /* topleft row,col, and botleft row,col */
        !          76534:           { 56,   21, 3,189, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          76535:             "\xe0\x21\xe0\x81\xe0\xe0\x24\xe0\x64\xe0\xc6\xe0\x66"
        !          76536:             "\xe0\x97\xe0\x67\xe0\x69\xe0\x69\xe0\x26\x23\xe0\x63"
        !          76537:             "\x26\xc7\x33\xe0\x63\x37\x96\x53\xe0\x63\x56\x66\x73"
        !          76538:             "\xe0\x63\x76\x26\x9e\x0c\x9b\xae\x0c\xab\x9e\x0c\x96"
        !          76539:             "\x26\x73\xe0\x63\x76\x66\x53\xe0\x63\x56\x97\x33\xe0"
        !          76540:             "\x63\x37\xc6\x23\xe0\x63\x26\xe0\x29\xe0\x69\xe0\x67"
        !          76541:             "\xe0\x67\xe0\x96\xe0\x66\xe0\xc4\xe0\x64\xe0\xe0\x21"
        !          76542:             "\xe0\x81\xe0\x28" }  },
        !          76543:       /* --- pixel bitmap for stmary450 char#94 \leftarrowtriangle --- */
        !          76544:       {  94,81365,                      /* character number, location */
        !          76545:          26, 3,    5, 3,      /* topleft row,col, and botleft row,col */
        !          76546:           { 56,   21, 2,65, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          76547:             "\x10\x01\x35\x04\x33\x05\x31\x07\x2f\x09\x2e\x06\x01"
        !          76548:             "\x03\x2c\x06\x03\x03\x2a\x06\x05\x03\x28\x07\x06\x03"
        !          76549:             "\x27\x06\x08\x28\x01\x05\x0a\x29\x01\x06\x08\x28\x03"
        !          76550:             "\x07\x06\x03\x2a\x06\x05\x03\x2c\x06\x03\x03\x2e\x06"
        !          76551:             "\x01\x03\x2f\x09\x31\x07\x33\x05\x34\x04\x36\x01\x27" }  },
        !          76552:       /* --- pixel bitmap for stmary450 char#95 \rightarrowtriangle --- */
        !          76553:       {  95,82227,                      /* character number, location */
        !          76554:          26, 3,    5, 3,      /* topleft row,col, and botleft row,col */
        !          76555:           { 56,   21, 2,65, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          76556:             "\x27\x01\x36\x04\x34\x05\x33\x07\x31\x09\x2f\x03\x01"
        !          76557:             "\x06\x2e\x03\x03\x06\x2c\x03\x05\x06\x2a\x03\x06\x07"
        !          76558:             "\x03\x28\x08\x06\x01\x29\x0a\x05\x01\x28\x08\x06\x27"
        !          76559:             "\x03\x06\x07\x28\x03\x05\x06\x2a\x03\x03\x06\x2c\x03"
        !          76560:             "\x01\x06\x2e\x09\x2f\x07\x31\x05\x33\x04\x35\x01\x10" }  },
        !          76561:       /* --- pixel bitmap for stmary450 char#96 \bigtriangledown --- */
        !          76562:       {  96,82975,                      /* character number, location */
        !          76563:           0, 3,  -62, 3,      /* topleft row,col, and botleft row,col */
        !          76564:           { 46,   62, 3,357, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          76565:             "\x1e\x0e\x0e\x02\x1f\x2e\x0e\x0e\x04\x14\xe0\xe0\x84"
        !          76566:             "\x10\xf1\x15\xe0\xe0\x65\x10\x24\xe0\xe0\x64\x20\xf1"
        !          76567:             "\x25\xe0\xe0\x45\x20\x34\xe0\xe0\x44\x30\xf1\x35\xe0"
        !          76568:             "\xe0\x25\x30\xf1\x45\xe0\xe5\x40\x54\xe0\xe4\x50\xf1"
        !          76569:             "\x55\xe0\xc5\x50\x64\xe0\xc4\x60\xf1\x65\xe0\xa5\x60"
        !          76570:             "\x74\xe0\xa4\x70\xf1\x75\xe0\x85\x70\xf1\x85\xe0\x65"
        !          76571:             "\x80\x94\xe0\x64\x90\xf1\x95\xe0\x45\x90\xa4\xe0\x44"
        !          76572:             "\xa0\xf1\xa5\xe0\x25\xa0\xb4\xe0\x24\xb0\xf1\xb5\xe5"
        !          76573:             "\xb0\xc4\xe4\xc0\xf1\xc5\xc5\xc0\xf1\xd5\xa5\xd0\xe4"
        !          76574:             "\xa4\xe0\xf1\xe5\x85\xe0\xe0\x14\x84\xe0\x10\xf1\xe0"
        !          76575:             "\x15\x65\xe0\x10\xe0\x24\x64\xe0\x20\xf1\xe0\x25\x45"
        !          76576:             "\xe0\x20\xf1\xe0\x35\x25\xe0\x30\xe0\x44\x24\xe0\x40"
        !          76577:             "\xf1\xe0\x4a\xe0\x40\xf2\xe0\x58\xe0\x50\xf2\xe0\x66"
        !          76578:             "\xe0\x60\xe0\x74\xe0\xe0\xe0\x12\xe0\x80" }  },
        !          76579:       /* --- pixel bitmap for stmary450 char#97 \bigtriangleup --- */
        !          76580:       {  97,83898,                      /* character number, location */
        !          76581:           0, 3,  -62, 3,      /* topleft row,col, and botleft row,col */
        !          76582:           { 46,   62, 3,357, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          76583:             "\xe0\x82\xe0\xe0\xe0\x14\xe0\x70\xf2\xe0\x66\xe0\x60"
        !          76584:             "\xf2\xe0\x58\xe0\x50\xf1\xe0\x4a\xe0\x40\xe0\x44\x24"
        !          76585:             "\xe0\x40\xf1\xe0\x35\x25\xe0\x30\xf1\xe0\x25\x45\xe0"
        !          76586:             "\x20\xe0\x24\x64\xe0\x20\xf1\xe0\x15\x65\xe0\x10\xe0"
        !          76587:             "\x14\x84\xe0\x10\xf1\xe5\x85\xe0\xe4\xa4\xe0\xf1\xd5"
        !          76588:             "\xa5\xd0\xf1\xc5\xc5\xc0\xc4\xe4\xc0\xf1\xb5\xe5\xb0"
        !          76589:             "\xb4\xe0\x24\xb0\xf1\xa5\xe0\x25\xa0\xa4\xe0\x44\xa0"
        !          76590:             "\xf1\x95\xe0\x45\x90\x94\xe0\x64\x90\xf1\x85\xe0\x65"
        !          76591:             "\x80\xf1\x75\xe0\x85\x70\x74\xe0\xa4\x70\xf1\x65\xe0"
        !          76592:             "\xa5\x60\x64\xe0\xc4\x60\xf1\x55\xe0\xc5\x50\x54\xe0"
        !          76593:             "\xe4\x50\xf1\x45\xe0\xe5\x40\xf1\x35\xe0\xe0\x25\x30"
        !          76594:             "\x34\xe0\xe0\x44\x30\xf1\x25\xe0\xe0\x45\x20\x24\xe0"
        !          76595:             "\xe0\x64\x20\xf1\x15\xe0\xe0\x65\x10\x14\xe0\xe0\x84"
        !          76596:             "\x1f\x2e\x0e\x0e\x04\x1e\x0e\x0e\x02\x10" }  },
        !          76597:       /* --- pixel bitmap for stmary450 char#98 \bigcurlyvee --- */
        !          76598:       {  98,84819,                      /* character number, location */
        !          76599:           0, 3,  -62, 3,      /* topleft row,col, and botleft row,col */
        !          76600:           { 46,   62, 3,243, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          76601:             "\x12\xe0\xe0\xc2\x15\xe0\xe0\x8b\xe0\xe0\x66\x17\xe0"
        !          76602:             "\xe0\x27\x37\xe0\xe7\x66\xe0\xc6\x96\xe0\xa6\xb6\xe0"
        !          76603:             "\x86\xd6\xe0\x66\xe0\x16\xe0\x46\xe0\x36\xe0\x26\xe0"
        !          76604:             "\x55\xe0\x25\xe0\x75\xe5\xe0\x86\xc6\xe0\x95\xc5\xc0"
        !          76605:             "\xf1\xd5\xa5\xd0\xf1\xe5\x85\xe0\xf1\xe0\x15\x65\xe0"
        !          76606:             "\x10\xe0\x24\x64\xe0\x20\xf1\xe0\x25\x45\xe0\x20\xe0"
        !          76607:             "\x34\x44\xe0\x30\xf1\xe0\x35\x25\xe0\x30\xf1\xe0\x44"
        !          76608:             "\x24\xe0\x40\xf1\xe0\x4a\xe0\x40\xf5\xe0\x58\xe0\x50"
        !          76609:             "\xf7\xe0\x66\xe0\x60\xfe\xe0\x74\xe0\x70\xe0\x74\xe0"
        !          76610:             "\xe0\xe0\x12\xe0\x84" }  },
        !          76611:       /* --- pixel bitmap for stmary450 char#99 \bigcurlywedge --- */
        !          76612:       {  99,85704,                      /* character number, location */
        !          76613:           0, 3,  -62, 3,      /* topleft row,col, and botleft row,col */
        !          76614:           { 46,   62, 3,243, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          76615:             "\xe0\x82\xe0\x80\xfe\xe0\x74\xe0\x70\xe0\x74\xe0\x70"
        !          76616:             "\xf7\xe0\x66\xe0\x60\xf5\xe0\x58\xe0\x50\xf1\xe0\x4a"
        !          76617:             "\xe0\x40\xf1\xe0\x44\x24\xe0\x40\xf1\xe0\x35\x25\xe0"
        !          76618:             "\x30\xe0\x34\x44\xe0\x30\xf1\xe0\x25\x45\xe0\x20\xe0"
        !          76619:             "\x24\x64\xe0\x20\xf1\xe0\x15\x65\xe0\x10\xf1\xe5\x85"
        !          76620:             "\xe0\xf1\xd5\xa5\xd0\xc5\xc5\xe0\x96\xc6\xe0\x85\xe5"
        !          76621:             "\xe0\x75\xe0\x25\xe0\x56\xe0\x26\xe0\x36\xe0\x46\xe0"
        !          76622:             "\x16\xe0\x66\xd6\xe0\x86\xb6\xe0\xa6\x96\xe0\xc6\x67"
        !          76623:             "\xe0\xe7\x37\xe0\xe0\x27\x16\xe0\xe0\x6b\xe0\xe0\x85"
        !          76624:             "\x12\xe0\xe0\xc2\x14" }  },
        !          76625:       /* --- pixel bitmap for stmary450 char#100 \bigsqcap --- */
        !          76626:       { 100,86617,                      /* character number, location */
        !          76627:           0, 3,  -62, 3,      /* topleft row,col, and botleft row,col */
        !          76628:           { 46,   62, 2,17, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          76629:             "\x01\x2c\x01\xff\x02\x2e\x00\xff\x38\x04\x26\x04\x01"
        !          76630:             "\x02\x28\x02\x01" }  },
        !          76631:       /* --- pixel bitmap for stmary450 char#101 \bigbox --- */
        !          76632:       { 101,87568,                      /* character number, location */
        !          76633:           0, 3,  -62, 3,      /* topleft row,col, and botleft row,col */
        !          76634:           { 46,   62, 2,19, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          76635:             "\x01\x2c\x01\xff\x02\x2e\x00\xff\x35\x04\x26\x04\x00"
        !          76636:             "\xff\x02\x2e\x01\x2c\x01" }  },
        !          76637:       /* --- pixel bitmap for stmary450 char#102 \bigparallel --- */
        !          76638:       { 102,88341,                      /* character number, location */
        !          76639:           0, 4,  -62, 4,      /* topleft row,col, and botleft row,col */
        !          76640:           { 20,   62, 2,15, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          76641:             "\x01\x02\x0e\x02\x01\xff\x3b\x04\x0c\x04\x01\x02\x0e"
        !          76642:             "\x02\x01" }  },
        !          76643:       /* --- pixel bitmap for stmary450 char#103 \biginterleave --- */
        !          76644:       { 103,89253,                      /* character number, location */
        !          76645:           0, 3,  -62, 3,      /* topleft row,col, and botleft row,col */
        !          76646:           { 36,   62, 2,21, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          76647:             "\x01\x02\x0e\x02\x0e\x02\x01\xff\x3b\x04\x0c\x04\x0c"
        !          76648:             "\x04\x01\x02\x0e\x02\x0e\x02\x01" }  },
        !          76649:       /* --- pixel bitmap for stmary450 char#104 (noname) --- */
        !          76650:       { 104,90461,                      /* character number, location */
        !          76651:           0, 3,  -87, 3,      /* topleft row,col, and botleft row,col */
        !          76652:           { 63,   87, 3,653, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          76653:             "\x1e\x0e\x0e\x0e\x05\x1f\x2e\x0e\x0e\x0e\x07\x1e\x0e"
        !          76654:             "\x0e\x0e\x05\x25\xe0\xe0\xe0\x95\x26\xe0\xe0\xe0\x76"
        !          76655:             "\x10\xf1\x25\xe0\xe0\xe0\x75\x20\x26\xe0\xe0\xe0\x56"
        !          76656:             "\x20\xf1\x35\xe0\xe0\xe0\x55\x30\x36\xe0\xe0\xe0\x36"
        !          76657:             "\x30\xf1\x45\xe0\xe0\xe0\x35\x40\x46\xe0\xe0\xe0\x16"
        !          76658:             "\x40\xf1\x55\xe0\xe0\xe0\x15\x50\x56\xe0\xe0\xd6\xb5"
        !          76659:             "\xe0\xe0\xd5\xc6\xe0\xe0\xb6\x60\xf1\x75\xe0\xe0\xb5"
        !          76660:             "\x70\x76\xe0\xe0\x96\x70\xf1\x85\xe0\xe0\x95\x80\x86"
        !          76661:             "\xe0\xe0\x76\x80\xf1\x95\xe0\xe0\x75\x90\x96\xe0\xe0"
        !          76662:             "\x56\x90\xf1\xa5\xe0\xe0\x55\xa0\xa6\xe0\xe0\x36\xa0"
        !          76663:             "\xf1\xb5\xe0\xe0\x35\xb0\xb6\xe0\xe0\x16\xe0\x95\xe0"
        !          76664:             "\xe0\x15\xe0\xa6\xe0\xd6\xc0\xf1\xd5\xe0\xd5\xd0\xd6"
        !          76665:             "\xe0\xb6\xd0\xf1\xe5\xe0\xb5\xe0\xe6\xe0\x96\xe0\xf1"
        !          76666:             "\xe0\x15\xe0\x95\xe0\x10\xe0\x16\xe0\x76\xe0\x10\xf1"
        !          76667:             "\xe0\x25\xe0\x75\xe0\x20\xe0\x26\xe0\x56\xe0\xe0\x55"
        !          76668:             "\xe0\x55\xe0\xe0\x66\xe0\x36\xe0\x30\xf1\xe0\x45\xe0"
        !          76669:             "\x35\xe0\x40\xe0\x46\xe0\x16\xe0\x40\xf1\xe0\x55\xe0"
        !          76670:             "\x15\xe0\x50\xe0\x56\xd6\xe0\x50\xf1\xe0\x65\xd5\xe0"
        !          76671:             "\x60\xe0\x66\xb6\xe0\x60\xf1\xe0\x75\xb5\xe0\x70\xe0"
        !          76672:             "\x76\x96\xe0\x70\xf1\xe0\x85\x95\xe0\x80\xe0\x86\x76"
        !          76673:             "\xe0\xe0\xe0\x35\x75\xe0\xe0\xe0\x46\x56\xe0\x90\xf1"
        !          76674:             "\xe0\xa5\x55\xe0\xa0\xe0\xa6\x36\xe0\xa0\xf1\xe0\xb5"
        !          76675:             "\x35\xe0\xb0\xe0\xb6\x16\xe0\xb0\xf1\xe0\xc5\x15\xe0"
        !          76676:             "\xc0\xe0\xcb\xe0\xc0\xf2\xe0\xd9\xe0\xd0\xf2\xe0\xe7"
        !          76677:             "\xe0\xe0\xf1\xe0\xe0\x15\xe0\xe0\x10\xe0\xe0\x23\xe0"
        !          76678:             "\xe0\x20" }  },
        !          76679:       /* --- pixel bitmap for stmary450 char#105 (noname) --- */
        !          76680:       { 105,91615,                      /* character number, location */
        !          76681:           0, 3,  -87, 3,      /* topleft row,col, and botleft row,col */
        !          76682:           { 63,   87, 3,653, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          76683:             "\xe0\xe0\x23\xe0\xe0\x20\xf1\xe0\xe0\x15\xe0\xe0\x10"
        !          76684:             "\xf2\xe0\xe7\xe0\xe0\xf2\xe0\xd9\xe0\xd0\xe0\xcb\xe0"
        !          76685:             "\xc0\xf1\xe0\xc5\x15\xe0\xc0\xe0\xb6\x16\xe0\xb0\xf1"
        !          76686:             "\xe0\xb5\x35\xe0\xb0\xe0\xa6\x36\xe0\xa0\xf1\xe0\xa5"
        !          76687:             "\x55\xe0\xa0\xe0\x96\x56\xe0\xe0\xe0\x45\x75\xe0\xe0"
        !          76688:             "\xe0\x36\x76\xe0\x80\xf1\xe0\x85\x95\xe0\x80\xe0\x76"
        !          76689:             "\x96\xe0\x70\xf1\xe0\x75\xb5\xe0\x70\xe0\x66\xb6\xe0"
        !          76690:             "\x60\xf1\xe0\x65\xd5\xe0\x60\xe0\x56\xd6\xe0\x50\xf1"
        !          76691:             "\xe0\x55\xe0\x15\xe0\x50\xe0\x46\xe0\x16\xe0\x40\xf1"
        !          76692:             "\xe0\x45\xe0\x35\xe0\x40\xe0\x36\xe0\x36\xe0\xe0\x65"
        !          76693:             "\xe0\x55\xe0\xe0\x56\xe0\x56\xe0\x20\xf1\xe0\x25\xe0"
        !          76694:             "\x75\xe0\x20\xe0\x16\xe0\x76\xe0\x10\xf1\xe0\x15\xe0"
        !          76695:             "\x95\xe0\x10\xe6\xe0\x96\xe0\xf1\xe5\xe0\xb5\xe0\xd6"
        !          76696:             "\xe0\xb6\xd0\xf1\xd5\xe0\xd5\xd0\xc6\xe0\xd6\xe0\xa5"
        !          76697:             "\xe0\xe0\x15\xe0\x96\xe0\xe0\x16\xb0\xf1\xb5\xe0\xe0"
        !          76698:             "\x35\xb0\xa6\xe0\xe0\x36\xa0\xf1\xa5\xe0\xe0\x55\xa0"
        !          76699:             "\x96\xe0\xe0\x56\x90\xf1\x95\xe0\xe0\x75\x90\x86\xe0"
        !          76700:             "\xe0\x76\x80\xf1\x85\xe0\xe0\x95\x80\x76\xe0\xe0\x96"
        !          76701:             "\x70\xf1\x75\xe0\xe0\xb5\x70\x66\xe0\xe0\xb6\xc5\xe0"
        !          76702:             "\xe0\xd5\xb6\xe0\xe0\xd6\x50\xf1\x55\xe0\xe0\xe0\x15"
        !          76703:             "\x50\x46\xe0\xe0\xe0\x16\x40\xf1\x45\xe0\xe0\xe0\x35"
        !          76704:             "\x40\x36\xe0\xe0\xe0\x36\x30\xf1\x35\xe0\xe0\xe0\x55"
        !          76705:             "\x30\x26\xe0\xe0\xe0\x56\x20\xf1\x25\xe0\xe0\xe0\x75"
        !          76706:             "\x20\x16\xe0\xe0\xe0\x76\x25\xe0\xe0\xe0\x95\x2e\x0e"
        !          76707:             "\x0e\x0e\x05\x1f\x2e\x0e\x0e\x0e\x07\x1e\x0e\x0e\x0e"
        !          76708:             "\x05\x10" }  },
        !          76709:       /* --- pixel bitmap for stmary450 char#106 (noname) --- */
        !          76710:       { 106,92767,                      /* character number, location */
        !          76711:           0, 3,  -87, 3,      /* topleft row,col, and botleft row,col */
        !          76712:           { 63,   87, 2,203, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          76713:             "\x01\x03\x37\x03\x01\x06\x33\x0d\x31\x10\x2d\x09\x01"
        !          76714:             "\x09\x2b\x09\x04\x08\x29\x08\x07\x08\x27\x08\x0a\x07"
        !          76715:             "\x25\x07\x0d\x07\x23\x07\x0f\x07\x21\x07\x11\x07\x1f"
        !          76716:             "\x07\x13\x07\x1d\x07\x15\x07\x1b\x07\x17\x07\x19\x07"
        !          76717:             "\x19\x06\x19\x06\x1b\x06\x17\x06\x0e\x00\xff\x01\x0f"
        !          76718:             "\x06\x15\x06\x0f\x00\x10\x06\x13\x06\x10\x00\xff\x01"
        !          76719:             "\x11\x06\x11\x06\x11\x00\x12\x06\x0f\x06\x25\x05\x0f"
        !          76720:             "\x05\x26\x06\x0d\x06\x27\x05\x0d\x05\x28\x06\x0b\x06"
        !          76721:             "\x14\x00\xff\x01\x15\x05\x0b\x05\x15\x00\x15\x06\x09"
        !          76722:             "\x06\x2b\x05\x09\x05\x2c\x06\x07\x06\x16\x00\xff\x01"
        !          76723:             "\x17\x05\x07\x05\x17\x00\x17\x06\x05\x06\x17\x00\xff"
        !          76724:             "\x02\x18\x05\x05\x05\x18\x00\x18\x06\x03\x06\x18\x00"
        !          76725:             "\xff\x02\x19\x05\x03\x05\x19\x00\x19\x06\x01\x06\x19"
        !          76726:             "\x00\xff\x03\x1a\x05\x01\x05\x1a\x00\x1a\x0b\x1a\x00"
        !          76727:             "\xff\x06\x1b\x09\x1b\x00\xff\x0a\x1c\x07\x1c\x00\xff"
        !          76728:             "\x14\x1d\x05\x1d\x00\x1e\x03\x1e" }  },
        !          76729:       /* --- pixel bitmap for stmary450 char#107 (noname) --- */
        !          76730:       { 107,93869,                      /* character number, location */
        !          76731:           0, 3,  -87, 3,      /* topleft row,col, and botleft row,col */
        !          76732:           { 63,   87, 2,203, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          76733:             "\x1e\x03\x1e\x00\xff\x14\x1d\x05\x1d\x00\xff\x0a\x1c"
        !          76734:             "\x07\x1c\x00\xff\x06\x1b\x09\x1b\x00\x1a\x0b\x1a\x00"
        !          76735:             "\xff\x03\x1a\x05\x01\x05\x1a\x00\x19\x06\x01\x06\x19"
        !          76736:             "\x00\xff\x02\x19\x05\x03\x05\x19\x00\x18\x06\x03\x06"
        !          76737:             "\x18\x00\xff\x02\x18\x05\x05\x05\x18\x00\x17\x06\x05"
        !          76738:             "\x06\x17\x00\xff\x01\x17\x05\x07\x05\x17\x00\x16\x06"
        !          76739:             "\x07\x06\x2c\x05\x09\x05\x2b\x06\x09\x06\x15\x00\xff"
        !          76740:             "\x01\x15\x05\x0b\x05\x15\x00\x14\x06\x0b\x06\x28\x05"
        !          76741:             "\x0d\x05\x27\x06\x0d\x06\x26\x05\x0f\x05\x25\x06\x0f"
        !          76742:             "\x06\x12\x00\xff\x01\x11\x06\x11\x06\x11\x00\x10\x06"
        !          76743:             "\x13\x06\x10\x00\xff\x01\x0f\x06\x15\x06\x0f\x00\x0e"
        !          76744:             "\x06\x17\x06\x1b\x06\x19\x06\x19\x07\x19\x07\x17\x07"
        !          76745:             "\x1b\x07\x15\x07\x1d\x07\x13\x07\x1f\x07\x11\x07\x21"
        !          76746:             "\x07\x0f\x07\x23\x07\x0d\x07\x25\x07\x0a\x08\x27\x08"
        !          76747:             "\x07\x08\x29\x08\x04\x09\x2b\x09\x01\x09\x2d\x10\x31"
        !          76748:             "\x0d\x33\x06\x01\x03\x37\x03\x01" }  },
        !          76749:       /* --- pixel bitmap for stmary450 char#108 (noname) --- */
        !          76750:       { 108,94992,                      /* character number, location */
        !          76751:           0, 3,  -87, 3,      /* topleft row,col, and botleft row,col */
        !          76752:           { 63,   87, 2,17, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          76753:             "\x01\x3d\x01\xff\x03\x3f\x00\xff\x50\x05\x35\x05\x01"
        !          76754:             "\x03\x37\x03\x01" }  },
        !          76755:       /* --- pixel bitmap for stmary450 char#109 (noname) --- */
        !          76756:       { 109,96174,                      /* character number, location */
        !          76757:           0, 3,  -87, 3,      /* topleft row,col, and botleft row,col */
        !          76758:           { 63,   87, 2,19, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          76759:             "\x01\x3d\x01\xff\x03\x3f\x00\xff\x4c\x05\x35\x05\x00"
        !          76760:             "\xff\x03\x3f\x01\x3d\x01" }  },
        !          76761:       /* --- pixel bitmap for stmary450 char#110 (noname) --- */
        !          76762:       { 110,97098,                      /* character number, location */
        !          76763:           0, 4,  -87, 4,      /* topleft row,col, and botleft row,col */
        !          76764:           { 27,   87, 2,15, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          76765:             "\x01\x03\x13\x03\x01\xff\x54\x05\x11\x05\x01\x03\x13"
        !          76766:             "\x03\x01" }  },
        !          76767:       /* --- pixel bitmap for stmary450 char#111 (noname) --- */
        !          76768:       { 111,98217,                      /* character number, location */
        !          76769:           0, 3,  -87, 3,      /* topleft row,col, and botleft row,col */
        !          76770:           { 51,   87, 2,21, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          76771:             "\x01\x03\x14\x03\x14\x03\x01\xff\x54\x05\x12\x05\x12"
        !          76772:             "\x05\x01\x03\x14\x03\x14\x03\x01" }  },
        !          76773:       /* --- pixel bitmap for stmary450 char#112 \bignplus --- */
        !          76774:       { 112,99543,                      /* character number, location */
        !          76775:           0, 3,  -62, 3,      /* topleft row,col, and botleft row,col */
        !          76776:           { 46,   62, 3,191, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          76777:             "\xe0\x4a\xe0\xe0\x4e\x04\xe0\xce\x08\xe0\x8e\x0c\xe0"
        !          76778:             "\x5a\x8a\xe0\x37\xe0\x27\xe7\xe0\x67\xb7\xe0\x87\x96"
        !          76779:             "\xe0\xc6\x85\xe0\xe5\x75\xe0\xe0\x25\x56\xe0\xe0\x26"
        !          76780:             "\x45\xe0\xe0\x45\x20\xf1\x15\xe0\xe0\x65\x10\x14\xe0"
        !          76781:             "\xe0\x84\x1f\x15\xe0\xe0\x85\x0f\xc4\xe0\x34\xe0\x34"
        !          76782:             "\x0f\x24\x4e\x0e\x02\x44\x04\x5e\x0e\x54\x0f\xb4\xe0"
        !          76783:             "\x34\xe0\x34\x04\xe0\x42\xe0\x44\x0f\xc4\xe0\xe0\xa4"
        !          76784:             "\x12\xe0\xe0\xc2\x16" }  },
        !          76785:       /* --- pixel bitmap for stmary450 char#113 (noname) --- */
        !          76786:       { 113,100761,                     /* character number, location */
        !          76787:           2,12,  -71,12,      /* topleft row,col, and botleft row,col */
        !          76788:           { 20,   73, 2,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          76789:             "\xff\x02\x00\x14\x00\xff\x42\x03\x05\x03\x09\xff\x02"
        !          76790:             "\x14" }  },
        !          76791:       /* --- pixel bitmap for stmary450 char#114 (noname) --- */
        !          76792:       { 114,101992,                     /* character number, location */
        !          76793:           2,14,  -109,14,     /* topleft row,col, and botleft row,col */
        !          76794:           { 21,  111, 2,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          76795:             "\xff\x02\x00\x15\x00\xff\x68\x03\x06\x03\x09\xff\x02"
        !          76796:             "\x15" }  },
        !          76797:       /* --- pixel bitmap for stmary450 char#115 (noname) --- */
        !          76798:       { 115,103376,                     /* character number, location */
        !          76799:           2,16,  -146,16,     /* topleft row,col, and botleft row,col */
        !          76800:           { 23,  148, 2,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          76801:             "\xff\x03\x00\x17\x00\xff\x8b\x04\x06\x04\x09\xff\x03"
        !          76802:             "\x17" }  },
        !          76803:       /* --- pixel bitmap for stmary450 char#116 (noname) --- */
        !          76804:       { 116,104930,                     /* character number, location */
        !          76805:           2,17,  -183,17,     /* topleft row,col, and botleft row,col */
        !          76806:           { 25,  185, 2,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          76807:             "\xff\x03\x00\x19\x00\xff\xb0\x04\x07\x04\x0a\xff\x03"
        !          76808:             "\x19" }  },
        !          76809:       /* --- pixel bitmap for stmary450 char#117 (noname) --- */
        !          76810:       { 117,106601,                     /* character number, location */
        !          76811:           1,21,  -111,21,     /* topleft row,col, and botleft row,col */
        !          76812:           { 26,  112, 2,15, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          76813:             "\xff\x03\x00\x1a\x00\xff\x6a\x04\x08\x04\x0a\x04\x08"
        !          76814:             "\x03\x0b" }  },
        !          76815:       /* --- pixel bitmap for stmary450 char#118 (noname) --- */
        !          76816:       { 118,107897,                     /* character number, location */
        !          76817:           3,21,  -109,21,     /* topleft row,col, and botleft row,col */
        !          76818:           { 26,  112, 2,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          76819:             "\x00\x04\x08\x03\x0b\xff\x6a\x04\x08\x04\x0a\xff\x03"
        !          76820:             "\x1a" }  },
        !          76821:       /* --- pixel bitmap for stmary450 char#119 (noname) --- */
        !          76822:       { 119,109203,                     /* character number, location */
        !          76823:           2,21,  -38,21,      /* topleft row,col, and botleft row,col */
        !          76824:           { 16,   40, 2,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          76825:             "\x00\x04\x08\x03\x01\xff\x26\x04\x08\x04" }  },
        !          76826:       /* --- pixel bitmap for stmary450 char#120 (noname) --- */
        !          76827:       { 120,110281,                     /* character number, location */
        !          76828:           0, 3,  -87, 3,      /* topleft row,col, and botleft row,col */
        !          76829:           { 63,   87, 2,147, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          76830:             "\x19\x0d\x2f\x13\x29\x19\x24\x1d\x20\x21\x1c\x0d\x0b"
        !          76831:             "\x0d\x19\x0b\x11\x0b\x17\x09\x17\x09\x14\x09\x1b\x09"
        !          76832:             "\x11\x08\x1f\x08\x10\x07\x21\x07\x0f\x07\x23\x07\x0d"
        !          76833:             "\x06\x27\x06\x0b\x07\x27\x07\x09\x07\x29\x07\x08\x06"
        !          76834:             "\x2b\x06\x07\x06\x2d\x06\x06\x05\x2f\x05\x05\x06\x2f"
        !          76835:             "\x06\x02\x00\xff\x01\x02\x05\x31\x05\x02\x00\x01\x06"
        !          76836:             "\x31\x06\x01\x00\xff\x01\x01\x05\x33\x05\x01\x06\x19"
        !          76837:             "\x01\x19\x06\x00\xff\x11\x05\x18\x05\x18\x05\x00\x05"
        !          76838:             "\x07\x27\x07\x05\x00\xff\x02\x05\x05\x2b\x05\x05\x00"
        !          76839:             "\x05\x06\x29\x06\x05\x00\xff\x11\x05\x18\x05\x18\x05"
        !          76840:             "\x00\x05\x19\x03\x19\x05\x00\xff\x12\x05\x35\x05\x01"
        !          76841:             "\x03\x37\x03\x01" }  },
        !          76842:       /* --- pixel bitmap for stmary450 char#121 (noname) --- */
        !          76843:       { 121,111610,                     /* character number, location */
        !          76844:           2, 1,  -71, 1,      /* topleft row,col, and botleft row,col */
        !          76845:           { 20,   73, 2,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          76846:             "\xff\x02\x00\x14\xff\x42\x09\x03\x05\x03\x00\xff\x02"
        !          76847:             "\x14" }  },
        !          76848:       /* --- pixel bitmap for stmary450 char#122 (noname) --- */
        !          76849:       { 122,112802,                     /* character number, location */
        !          76850:           2, 1,  -109, 1,     /* topleft row,col, and botleft row,col */
        !          76851:           { 21,  111, 2,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          76852:             "\xff\x02\x00\x15\xff\x68\x09\x03\x06\x03\x00\xff\x02"
        !          76853:             "\x15" }  },
        !          76854:       /* --- pixel bitmap for stmary450 char#123 (noname) --- */
        !          76855:       { 123,114173,                     /* character number, location */
        !          76856:           2, 1,  -146, 1,     /* topleft row,col, and botleft row,col */
        !          76857:           { 23,  148, 2,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          76858:             "\xff\x03\x00\x17\xff\x8b\x09\x04\x06\x04\x00\xff\x03"
        !          76859:             "\x17" }  },
        !          76860:       /* --- pixel bitmap for stmary450 char#124 (noname) --- */
        !          76861:       { 124,115714,                     /* character number, location */
        !          76862:           2, 1,  -183, 1,     /* topleft row,col, and botleft row,col */
        !          76863:           { 25,  185, 2,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          76864:             "\xff\x03\x00\x19\xff\xb0\x0a\x04\x07\x04\x00\xff\x03"
        !          76865:             "\x19" }  },
        !          76866:       /* --- pixel bitmap for stmary450 char#125 (noname) --- */
        !          76867:       { 125,117346,                     /* character number, location */
        !          76868:           1, 1,  -111, 1,     /* topleft row,col, and botleft row,col */
        !          76869:           { 26,  112, 2,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          76870:             "\xff\x03\x00\x1a\xff\x6a\x0a\x04\x08\x04\x0b\x03\x08"
        !          76871:             "\x04" }  },
        !          76872:       /* --- pixel bitmap for stmary450 char#126 (noname) --- */
        !          76873:       { 126,118697,                     /* character number, location */
        !          76874:           3, 1,  -109, 1,     /* topleft row,col, and botleft row,col */
        !          76875:           { 26,  112, 2,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          76876:             "\x0b\x03\x08\x04\xff\x6a\x0a\x04\x08\x04\x00\xff\x03"
        !          76877:             "\x1a" }  },
        !          76878:       /* --- pixel bitmap for stmary450 char#127 (noname) --- */
        !          76879:       { 127,119964,                     /* character number, location */
        !          76880:           2,11,  -38,11,      /* topleft row,col, and botleft row,col */
        !          76881:           { 16,   40, 2,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          76882:             "\x01\x03\x08\x04\x00\xff\x26\x04\x08\x04" }  },
        !          76883:       /* --- trailer  --- */
        !          76884:       { -99, -999,  0,0,0,0, { 0,0,0,0, (pixbyte *)"\0" }  }
        !          76885:    } ;
        !          76886: 
        !          76887: 
        !          76888: /* --- size=10 for .600gf ---
        !          76889:  * mf '\mode=preview; mag=magstep(-8.04680493988053835544); input stmary10'
        !          76890:  * --------------------------------------------------------------------- */
        !          76891: /* --- fontdef for stmary600 --- */
        !          76892: static	chardef  stmary600[] =
        !          76893:    {
        !          76894:       /* --- pixel bitmap for stmary600 char#0 \shortleftarrow --- */
        !          76895:       {   0,  948,                      /* character number, location */
        !          76896:          36, 5,    6, 5,      /* topleft row,col, and botleft row,col */
        !          76897:           { 55,   30, 2,77, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          76898:             "\x0e\x02\x27\x00\xff\x01\x0d\x03\x27\x00\x0c\x04\x33"
        !          76899:             "\x03\x33\x04\x32\x04\x29\x00\xff\x01\x09\x04\x2a\x00"
        !          76900:             "\x08\x04\x31\x05\x31\x05\x31\x05\x30\x34\x01\xff\x01"
        !          76901:             "\x37\x02\x34\x05\x05\x33\x05\x33\x05\x34\x04\x2b\x00"
        !          76902:             "\xff\x01\x09\x04\x2a\x00\x0a\x04\x34\x04\x34\x03\x34"
        !          76903:             "\x04\x27\x00\xff\x01\x0d\x03\x27\x00\x0e\x02\x27" }  },
        !          76904:       /* --- pixel bitmap for stmary600 char#1 \shortrightarrow --- */
        !          76905:       {   1, 1929,                      /* character number, location */
        !          76906:          36, 5,    6, 5,      /* topleft row,col, and botleft row,col */
        !          76907:           { 55,   30, 2,77, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          76908:             "\x27\x02\x0e\x00\xff\x01\x27\x03\x0d\x00\x27\x04\x34"
        !          76909:             "\x03\x34\x04\x34\x04\x0a\x00\xff\x01\x2a\x04\x09\x00"
        !          76910:             "\x2b\x04\x34\x05\x33\x05\x33\x05\x05\x34\x02\xff\x01"
        !          76911:             "\x37\x01\x34\x30\x05\x31\x05\x31\x05\x31\x04\x08\x00"
        !          76912:             "\xff\x01\x2a\x04\x09\x00\x29\x04\x32\x04\x33\x03\x33"
        !          76913:             "\x04\x0c\x00\xff\x01\x27\x03\x0d\x00\x27\x02\x0e" }  },
        !          76914:       /* --- pixel bitmap for stmary600 char#2 \shortuparrow --- */
        !          76915:       {   2, 2770,                      /* character number, location */
        !          76916:          48, 6,   -7, 6,      /* topleft row,col, and botleft row,col */
        !          76917:           { 30,   55, 3,91, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          76918:             "\xf1\xe2\xe0\xd4\xd0\xf1\xc6\xc0\xb8\xe0\x7a\xa0\xf1"
        !          76919:             "\x9c\x90\x75\x14\x15\xd5\x24\x25\xb5\x34\x35\x85\x54"
        !          76920:             "\x55\x46\x64\x66\x15\x84\x88\xa4\xa3\xfe\xd4\xd0\xfe"
        !          76921:             "\xd4\xd0\xf7\xd4\xd0\xe2\xe5" }  },
        !          76922:       /* --- pixel bitmap for stmary600 char#3 \shortdownarrow --- */
        !          76923:       {   3, 3691,                      /* character number, location */
        !          76924:          48, 6,   -7, 6,      /* topleft row,col, and botleft row,col */
        !          76925:           { 30,   55, 3,91, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          76926:             "\xe2\xe0\xfe\xd4\xd0\xfe\xd4\xd0\xf7\xd4\xd3\xa4\xa8"
        !          76927:             "\x84\x85\x16\x64\x66\x45\x54\x55\x85\x34\x35\xb5\x24"
        !          76928:             "\x25\xd5\x14\x15\x70\xf1\x9c\x90\xaa\xe0\x78\xb0\xf1"
        !          76929:             "\xc6\xc0\xd4\xd0\xf1\xe2\xe5" }  },
        !          76930:       /* --- pixel bitmap for stmary600 char#4 \Yup --- */
        !          76931:       {   4, 4392,                      /* character number, location */
        !          76932:          43, 5,    3, 5,      /* topleft row,col, and botleft row,col */
        !          76933:           { 36,   40, 3,120, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          76934:             "\xfe\xe0\x24\xe0\x20\xf5\xe0\x24\xe0\x20\xe0\x25\xe0"
        !          76935:             "\xe0\x27\xe0\xe9\xe0\xcb\xe0\xa6\x16\xe0\x86\x36\xe0"
        !          76936:             "\x66\x56\xe0\x46\x76\xe0\x26\x96\xe6\xb6\xc6\xd6\xa6"
        !          76937:             "\xe0\x16\x86\xe0\x36\x66\xe0\x56\x46\xe0\x76\x26\xe0"
        !          76938:             "\x9c\xe0\xba\xe0\xd7\xe0\xe0\x23" }  },
        !          76939:       /* --- pixel bitmap for stmary600 char#5 \Ydown --- */
        !          76940:       {   5, 5053,                      /* character number, location */
        !          76941:          39, 5,   -2, 5,      /* topleft row,col, and botleft row,col */
        !          76942:           { 36,   41, 3,123, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          76943:             "\x03\xe0\xe0\x28\xe0\xda\xe0\xb5\x16\xe0\x96\x26\xe0"
        !          76944:             "\x76\x46\xe0\x56\x66\xe0\x36\x86\xe0\x16\xa6\xd6\xc6"
        !          76945:             "\xb6\xe6\x96\xe0\x26\x76\xe0\x46\x56\xe0\x66\x36\xe0"
        !          76946:             "\x86\x16\xe0\xab\xe0\xc9\xe0\xe7\xe0\xe0\x25\xe0\x10"
        !          76947:             "\xfe\xe0\x24\xe0\x20\xf6\xe0\x24\xe0\x20" }  },
        !          76948:       /* --- pixel bitmap for stmary600 char#6 \Yleft --- */
        !          76949:       {   6, 5757,                      /* character number, location */
        !          76950:          39, 5,    3, 5,      /* topleft row,col, and botleft row,col */
        !          76951:           { 41,   36, 2,75, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          76952:             "\x26\x02\x25\x05\x23\x06\x22\x06\x22\x06\x22\x06\x22"
        !          76953:             "\x06\x22\x06\x22\x06\x22\x06\x22\x06\x22\x06\x22\x06"
        !          76954:             "\x22\x06\x22\x06\x22\x06\x0e\x1a\x0e\xff\x01\x1a\x0f"
        !          76955:             "\x00\x01\x1a\x24\x06\x24\x06\x24\x06\x24\x06\x24\x06"
        !          76956:             "\x24\x06\x24\x06\x24\x06\x24\x06\x24\x06\x24\x06\x24"
        !          76957:             "\x06\x24\x06\x24\x06\x24\x05\x26\x02\x01" }  },
        !          76958:       /* --- pixel bitmap for stmary600 char#7 \Yright --- */
        !          76959:       {   7, 6422,                      /* character number, location */
        !          76960:          39, 5,    3, 5,      /* topleft row,col, and botleft row,col */
        !          76961:           { 41,   36, 2,75, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          76962:             "\x01\x02\x26\x05\x24\x06\x24\x06\x24\x06\x24\x06\x24"
        !          76963:             "\x06\x24\x06\x24\x06\x24\x06\x24\x06\x24\x06\x24\x06"
        !          76964:             "\x24\x06\x24\x06\x24\x06\x24\x1a\x01\x00\xff\x01\x0f"
        !          76965:             "\x1a\x0e\x1a\x0e\x06\x22\x06\x22\x06\x22\x06\x22\x06"
        !          76966:             "\x22\x06\x22\x06\x22\x06\x22\x06\x22\x06\x22\x06\x22"
        !          76967:             "\x06\x22\x06\x22\x06\x23\x05\x25\x02\x26" }  },
        !          76968:       /* --- pixel bitmap for stmary600 char#8 \varcurlyvee --- */
        !          76969:       {   8, 7129,                      /* character number, location */
        !          76970:          58, 0,  -18, 0,      /* topleft row,col, and botleft row,col */
        !          76971:           { 56,   76, 3,351, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          76972:             "\x12\xe0\xe0\xe0\x82\x15\xe0\xe0\xe0\x4b\xe0\xe0\xe0"
        !          76973:             "\x26\x16\xe0\xe0\xe6\x36\xe0\xe0\xc6\x56\xe0\xe0\xa6"
        !          76974:             "\x76\xe0\xe0\x86\x96\xe0\xe0\x66\xb6\xe0\xe0\x46\xd6"
        !          76975:             "\xe0\xe0\x26\xe0\x16\xe0\xe6\xe0\x35\xe0\xe5\xe0\x55"
        !          76976:             "\xe0\xc5\xe0\x66\xe0\xa6\xe0\x75\xe0\xa5\xe0\x95\xe0"
        !          76977:             "\x85\xe0\xa6\xe0\x66\xe0\xb5\xe0\x65\xd0\xf1\xe5\xe0"
        !          76978:             "\x45\xe0\xf1\xe0\x15\xe0\x25\xe0\x10\xf1\xe0\x25\xe5"
        !          76979:             "\xe0\x20\xf1\xe0\x35\xc5\xe0\x30\xf1\xe0\x45\xa5\xe0"
        !          76980:             "\x40\xe0\x54\xa4\xe0\x50\xf1\xe0\x55\x85\xe0\x50\xf1"
        !          76981:             "\xe0\x65\x65\xe0\x60\xf1\xe0\x74\x64\xe0\x70\xf1\xe0"
        !          76982:             "\x75\x45\xe0\x70\xf1\xe0\x84\x44\xe0\x80\xf1\xe0\x85"
        !          76983:             "\x25\xe0\x80\xf1\xe0\x94\x24\xe0\x90\xf1\xe0\x9a\xe0"
        !          76984:             "\x90\xf5\xe0\xa8\xe0\xa0\xf9\xe0\xb6\xe0\xb0\xfd\xe0"
        !          76985:             "\xc4\xe0\xc0\xe0\xd2\xe0\xd0" }  },
        !          76986:       /* --- pixel bitmap for stmary600 char#9 \varcurlywedge --- */
        !          76987:       {   9, 8014,                      /* character number, location */
        !          76988:          58, 0,  -18, 0,      /* topleft row,col, and botleft row,col */
        !          76989:           { 56,   76, 3,361, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          76990:             "\xe0\xd2\xe0\xd0\xfc\xe0\xc4\xe0\xc0\xf8\xe0\xb6\xe0"
        !          76991:             "\xb0\xf5\xe0\xa8\xe0\xa0\xf1\xe0\x9a\xe0\x90\xf2\xe0"
        !          76992:             "\x94\x24\xe0\x90\xf1\xe0\x85\x25\xe0\x80\xf1\xe0\x84"
        !          76993:             "\x44\xe0\x80\xf1\xe0\x75\x45\xe0\x70\xe0\x74\x64\xe0"
        !          76994:             "\x70\xf1\xe0\x65\x65\xe0\x60\xe0\x64\x84\xe0\x60\xf1"
        !          76995:             "\xe0\x55\x85\xe0\x50\xe0\x54\xa4\xe0\x50\xf1\xe0\x45"
        !          76996:             "\xa5\xe0\x40\xf1\xe0\x35\xc5\xe0\x30\xf1\xe0\x25\xe5"
        !          76997:             "\xe0\x20\xf1\xe0\x15\xe0\x25\xe0\x10\xf1\xe5\xe0\x45"
        !          76998:             "\xe0\xf1\xd5\xe0\x65\xd0\xc5\xe0\x85\xe0\x96\xe0\x86"
        !          76999:             "\xe0\x85\xe0\xa5\xe0\x75\xe0\xc5\xe0\x56\xe0\xc6\xe0"
        !          77000:             "\x36\xe0\xe6\xe0\x16\xe0\xe0\x26\xe5\xe0\xe0\x45\xd5"
        !          77001:             "\xe0\xe0\x65\xb6\xe0\xe0\x66\x96\xe0\xe0\x86\x76\xe0"
        !          77002:             "\xe0\xa6\x56\xe0\xe0\xc6\x36\xe0\xe0\xe6\x16\xe0\xe0"
        !          77003:             "\xe0\x2b\xe0\xe0\xe0\x45\x12\xe0\xe0\xe0\x82\x10" }  },
        !          77004:       /* --- pixel bitmap for stmary600 char#10 \minuso --- */
        !          77005:       {  10, 9005,                      /* character number, location */
        !          77006:          39, 5,    3, 5,      /* topleft row,col, and botleft row,col */
        !          77007:           { 55,   36, 2,125, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          77008:             "\x16\x0b\x29\x11\x25\x13\x22\x17\x1f\x08\x09\x08\x1d"
        !          77009:             "\x06\x0f\x06\x1b\x06\x11\x06\x19\x06\x13\x06\x18\x05"
        !          77010:             "\x15\x05\x17\x05\x17\x05\x15\x06\x17\x06\x14\x05\x19"
        !          77011:             "\x05\x0a\x00\xff\x01\x0a\x04\x1b\x04\x0a\x00\xff\x01"
        !          77012:             "\x09\x05\x1b\x05\x09\x00\x01\x35\x01\xff\x01\x37\x01"
        !          77013:             "\x35\x01\x00\xff\x01\x09\x05\x1b\x05\x09\x00\xff\x01"
        !          77014:             "\x0a\x04\x1b\x04\x0a\x00\x0a\x05\x19\x05\x14\x06\x17"
        !          77015:             "\x06\x15\x05\x17\x05\x17\x05\x15\x05\x18\x06\x13\x06"
        !          77016:             "\x19\x06\x11\x06\x1b\x06\x0f\x06\x1d\x08\x09\x08\x1f"
        !          77017:             "\x17\x22\x13\x25\x11\x29\x0b\x16" }  },
        !          77018:       /* --- pixel bitmap for stmary600 char#11 \baro --- */
        !          77019:       {  11, 9771,                      /* character number, location */
        !          77020:          48, 5,   -6, 5,      /* topleft row,col, and botleft row,col */
        !          77021:           { 36,   54, 3,205, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          77022:             "\xe0\x32\xe0\x30\xf7\xe0\x24\xe0\x20\xe8\xe0\xbe\xe0"
        !          77023:             "\x6e\x04\xe0\x2e\x08\xd9\x14\x19\xb7\x44\x47\x96\x64"
        !          77024:             "\x66\x76\x74\x76\x56\x84\x86\x45\x94\x95\x20\xf1\x15"
        !          77025:             "\xa4\xa5\x10\x14\xb4\xb4\x1f\x15\xb4\xb5\x0f\x54\xc4"
        !          77026:             "\xc4\x0f\x15\xb4\xb5\x14\xb4\xb4\x10\xf1\x15\xa4\xa5"
        !          77027:             "\x10\x25\x94\x95\x46\x84\x86\x56\x74\x76\x76\x64\x66"
        !          77028:             "\x97\x44\x47\xb9\x14\x19\xde\x08\xe0\x2e\x04\xe0\x6e"
        !          77029:             "\xe0\xb8\xe0\xf7\xe0\x24\xe0\x20\xe0\x32\xe0\x36" }  },
        !          77030:       /* --- pixel bitmap for stmary600 char#12 \sslash --- */
        !          77031:       {  12,10607,                      /* character number, location */
        !          77032:          62, 5,  -21, 5,      /* topleft row,col, and botleft row,col */
        !          77033:           { 45,   83, 3,481, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          77034:             "\xe0\xe2\xc2\xe0\xe4\xa4\xf1\xe0\xc5\x95\xe0\xc4\xa4"
        !          77035:             "\x10\xf1\xe0\xb5\x95\x10\xe0\xb4\xa4\x20\xf1\xe0\xa5"
        !          77036:             "\x95\x20\xe0\xa4\xa4\x30\xf1\xe0\x95\x95\x30\xe0\x94"
        !          77037:             "\xa4\x40\xf1\xe0\x85\x95\x40\xe0\x84\xa4\x50\xf1\xe0"
        !          77038:             "\x75\x95\x50\xe0\x74\xa4\x60\xf1\xe0\x65\x95\x60\xe0"
        !          77039:             "\x64\xa4\x70\xf1\xe0\x55\x95\x70\xe0\x54\xa4\x80\xf1"
        !          77040:             "\xe0\x45\x95\x80\xe0\x44\xa4\x90\xf1\xe0\x35\x95\x90"
        !          77041:             "\xe0\x34\xa4\xa0\xf1\xe0\x25\x95\xa0\xe0\x24\xa4\xb0"
        !          77042:             "\xf1\xe0\x15\x95\xb0\xe0\x14\xa4\xc0\xf1\xe5\x95\xc0"
        !          77043:             "\xf1\xd5\x95\xd0\xd4\xa4\xe0\xf1\xc5\x95\xe0\xc4\xa4"
        !          77044:             "\xe0\x10\xf1\xb5\x95\xe0\x10\xb4\xa4\xe0\x20\xf1\xa5"
        !          77045:             "\x95\xe0\x20\xa4\xa4\xe0\x30\xf1\x95\x95\xe0\x30\x94"
        !          77046:             "\xa4\xe0\x40\xf1\x85\x95\xe0\x40\x84\xa4\xe0\x50\xf1"
        !          77047:             "\x75\x95\xe0\x50\x74\xa4\xe0\x60\xf1\x65\x95\xe0\x60"
        !          77048:             "\x64\xa4\xe0\x70\xf1\x55\x95\xe0\x70\x54\xa4\xe0\x80"
        !          77049:             "\xf1\x45\x95\xe0\x80\x44\xa4\xe0\x90\xf1\x35\x95\xe0"
        !          77050:             "\x90\x34\xa4\xe0\xa0\xf1\x25\x95\xe0\xa0\x24\xa4\xe0"
        !          77051:             "\xb0\xf1\x15\x95\xe0\xb0\x14\xa4\xe0\xcf\x15\x95\xe0"
        !          77052:             "\xc4\xa4\xe0\xe2\xc2\xe0\xe0" }  },
        !          77053:       /* --- pixel bitmap for stmary600 char#13 \bblash --- */
        !          77054:       {  13,11556,                      /* character number, location */
        !          77055:          62, 5,  -21, 5,      /* topleft row,col, and botleft row,col */
        !          77056:           { 45,   83, 3,485, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          77057:             "\x12\xc2\xe0\xe4\xa4\xe0\xdf\x15\x95\xe0\xc0\x14\xa4"
        !          77058:             "\xe0\xc0\xf1\x15\x95\xe0\xb0\x24\xa4\xe0\xb0\xf1\x25"
        !          77059:             "\x95\xe0\xa0\x34\xa4\xe0\xa0\xf1\x35\x95\xe0\x90\x44"
        !          77060:             "\xa4\xe0\x90\xf1\x45\x95\xe0\x80\x54\xa4\xe0\x80\xf1"
        !          77061:             "\x55\x95\xe0\x70\x64\xa4\xe0\x70\xf1\x65\x95\xe0\x60"
        !          77062:             "\x74\xa4\xe0\x60\xf1\x75\x95\xe0\x50\x84\xa4\xe0\x50"
        !          77063:             "\xf1\x85\x95\xe0\x40\x94\xa4\xe0\x40\xf1\x95\x95\xe0"
        !          77064:             "\x30\xa4\xa4\xe0\x30\xf1\xa5\x95\xe0\x20\xb4\xa4\xe0"
        !          77065:             "\x20\xf1\xb5\x95\xe0\x10\xc4\xa4\xe0\x10\xf1\xc5\x95"
        !          77066:             "\xe0\xd4\xa4\xe0\xf1\xd5\x95\xd0\xf1\xe5\x95\xc0\xe0"
        !          77067:             "\x14\xa4\xc0\xf1\xe0\x15\x95\xb0\xe0\x24\xa4\xb0\xf1"
        !          77068:             "\xe0\x25\x95\xa0\xe0\x34\xa4\xa0\xf1\xe0\x35\x95\x90"
        !          77069:             "\xe0\x44\xa4\x90\xf1\xe0\x45\x95\x80\xe0\x54\xa4\x80"
        !          77070:             "\xf1\xe0\x55\x95\x70\xe0\x64\xa4\x70\xf1\xe0\x65\x95"
        !          77071:             "\x60\xe0\x74\xa4\x60\xf1\xe0\x75\x95\x50\xe0\x84\xa4"
        !          77072:             "\x50\xf1\xe0\x85\x95\x40\xe0\x94\xa4\x40\xf1\xe0\x95"
        !          77073:             "\x95\x30\xe0\xa4\xa4\x30\xf1\xe0\xa5\x95\x20\xe0\xb4"
        !          77074:             "\xa4\x20\xf1\xe0\xb5\x95\x10\xe0\xc4\xa4\x10\xf1\xe0"
        !          77075:             "\xc5\x95\xe0\xd4\xa4\xe0\xe2\xc2\x10" }  },
        !          77076:       /* --- pixel bitmap for stmary600 char#14 \moo --- */
        !          77077:       {  14,12619,                      /* character number, location */
        !          77078:          44, 9,   -2, 9,      /* topleft row,col, and botleft row,col */
        !          77079:           { 46,   46, 3,155, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          77080:             "\xe0\x82\xe0\x80\xfe\xe0\x74\xe0\x70\xf4\xe0\x74\xe0"
        !          77081:             "\x70\x1e\x0e\x0e\x02\x1f\x1e\x0e\x0e\x04\x1e\x0e\x0e"
        !          77082:             "\x02\x10\xf2\xe0\x74\xe0\x70\xf4\xe0\x66\xe0\x60\xf1"
        !          77083:             "\xe0\x58\xe0\x50\xe0\x4a\xe0\x44\xea\xe8\xd5\x25\xd9"
        !          77084:             "\xc5\x25\xca\xb5\x45\xb5\x15\x96\x46\x95\x27\x57\x67"
        !          77085:             "\x57\x3e\x03\x8e\x03\x6e\xae\x9b\xeb\xc7\xe0\x47\x70" }  },
        !          77086:       /* --- pixel bitmap for stmary600 char#15 \varotimes --- */
        !          77087:       {  15,13490,                      /* character number, location */
        !          77088:          48, 5,   -6, 5,      /* topleft row,col, and botleft row,col */
        !          77089:           { 54,   54, 3,429, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          77090:             "\xe0\x8a\xe0\xe0\xce\x04\xe0\xe0\x6e\x08\xe0\xe0\x2e"
        !          77091:             "\x0c\xe0\xcb\x8b\xe0\x98\xe0\x28\xe0\x68\xe0\x68\xe0"
        !          77092:             "\x37\xe0\xa7\xe0\x16\xe0\xe6\xd7\xe0\xe0\x16\xb9\xe0"
        !          77093:             "\xd8\xaa\xe0\xb9\x95\x16\xe0\x9b\x76\x26\xe0\x76\x16"
        !          77094:             "\x65\x46\xe0\x56\x35\x55\x66\xe0\x36\x55\x45\x76\xe0"
        !          77095:             "\x16\x65\x35\x96\xd6\x85\x25\xa6\xb6\x95\x24\xc6\x96"
        !          77096:             "\xb4\x24\xd6\x76\xc4\x15\xe6\x56\xda\xe0\x16\x36\xe9"
        !          77097:             "\xe0\x36\x16\xe0\x28\xe0\x4b\xe0\x38\xe0\x59\xe0\x44"
        !          77098:             "\x0f\x14\xe0\x67\xe0\x54\x04\xe0\x59\xe0\x48\xe0\x4b"
        !          77099:             "\xe0\x38\xe0\x36\x16\xe0\x29\xe0\x16\x36\xea\xe6\x56"
        !          77100:             "\xd5\x14\xd6\x76\xc4\x24\xc6\x96\xb4\x25\xa6\xb6\x95"
        !          77101:             "\x25\x96\xd6\x85\x35\x76\xe0\x16\x65\x45\x66\xe0\x36"
        !          77102:             "\x55\x55\x46\xe0\x56\x35\x66\x26\xe0\x76\x16\x75\x16"
        !          77103:             "\xe0\x9b\x9a\xe0\xb9\xa9\xe0\xd8\xb7\xe0\xe0\x16\xd6"
        !          77104:             "\xe0\xe6\xe0\x17\xe0\xa7\xe0\x38\xe0\x68\xe0\x68\xe0"
        !          77105:             "\x28\xe0\x9b\x8b\xe0\xce\x0c\xe0\xe0\x2e\x08\xe0\xe0"
        !          77106:             "\x6e\x04\xe0\xe0\xca\xe0\x81" }  },
        !          77107:       /* --- pixel bitmap for stmary600 char#16 \varoast --- */
        !          77108:       {  16,14656,                      /* character number, location */
        !          77109:          48, 5,   -6, 5,      /* topleft row,col, and botleft row,col */
        !          77110:           { 54,   54, 3,457, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          77111:             "\xe0\x8a\xe0\xe0\xce\x04\xe0\xe0\x6e\x08\xe0\xe0\x2e"
        !          77112:             "\x0c\xe0\xcb\x8b\xe0\x98\xe0\x28\xe0\x68\xe0\x68\xe0"
        !          77113:             "\x37\xe0\xa7\xe0\x16\xe0\xe6\xd6\xe0\xe0\x26\xb6\xe4"
        !          77114:             "\xe6\xa5\xe0\x14\xe0\x15\x95\xe0\x24\xe0\x25\x76\xe0"
        !          77115:             "\x24\xe0\x26\x65\xe0\x34\xe0\x35\x30\xf1\x25\xe0\x44"
        !          77116:             "\xe0\x45\x20\x15\x63\xa4\xa3\x65\x25\x65\x84\x85\x65"
        !          77117:             "\x24\x67\x74\x77\x64\x24\x78\x54\x58\x74\x15\x79\x44"
        !          77118:             "\x49\x7a\xa7\x42\x47\xa9\xd7\x22\x27\xd8\xe0\x16\x12"
        !          77119:             "\x16\xe0\x18\xe0\x3c\xe0\x34\x0f\x14\xe0\x58\xe0\x54"
        !          77120:             "\x04\xe0\x3c\xe0\x38\xe0\x16\x12\x16\xe0\x18\xd7\x22"
        !          77121:             "\x27\xd9\xa7\x42\x47\xaa\x79\x44\x49\x75\x14\x78\x54"
        !          77122:             "\x58\x74\x24\x67\x74\x77\x64\x25\x65\x84\x85\x65\x25"
        !          77123:             "\x63\xa4\xa3\x65\x10\xf1\x25\xe0\x44\xe0\x45\x20\x35"
        !          77124:             "\xe0\x34\xe0\x35\x66\xe0\x24\xe0\x26\x75\xe0\x24\xe0"
        !          77125:             "\x25\x95\xe0\x14\xe0\x15\xa6\xe4\xe6\xb6\xe0\xe0\x26"
        !          77126:             "\xd6\xe0\xe6\xe0\x17\xe0\xa7\xe0\x38\xe0\x68\xe0\x68"
        !          77127:             "\xe0\x28\xe0\x9b\x8b\xe0\xce\x0c\xe0\xe0\x2e\x08\xe0"
        !          77128:             "\xe0\x6e\x04\xe0\xe0\xca\xe0\x80" }  },
        !          77129:       /* --- pixel bitmap for stmary600 char#17 \varobar --- */
        !          77130:       {  17,15723,                      /* character number, location */
        !          77131:          48, 5,   -6, 5,      /* topleft row,col, and botleft row,col */
        !          77132:           { 54,   54, 3,361, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          77133:             "\xe0\x8a\xe0\xe0\xce\x04\xe0\xe0\x6e\x08\xe0\xe0\x2e"
        !          77134:             "\x0c\xe0\xcb\x24\x2b\xe0\x98\x64\x68\xe0\x68\x84\x88"
        !          77135:             "\xe0\x37\xa4\xa7\xe0\x16\xc4\xc6\xd6\xd4\xd6\xb6\xe4"
        !          77136:             "\xe6\xa5\xe0\x14\xe0\x15\x95\xe0\x24\xe0\x25\x76\xe0"
        !          77137:             "\x24\xe0\x26\x65\xe0\x34\xe0\x35\x30\xf1\x25\xe0\x44"
        !          77138:             "\xe0\x45\x20\xf1\x15\xe0\x54\xe0\x55\x10\xf1\x14\xe0"
        !          77139:             "\x64\xe0\x64\x1f\x15\xe0\x64\xe0\x65\x0f\x74\xe0\x74"
        !          77140:             "\xe0\x74\x0f\x15\xe0\x64\xe0\x65\xf1\x14\xe0\x64\xe0"
        !          77141:             "\x64\x10\xf1\x15\xe0\x54\xe0\x55\x10\xf1\x25\xe0\x44"
        !          77142:             "\xe0\x45\x20\x35\xe0\x34\xe0\x35\x66\xe0\x24\xe0\x26"
        !          77143:             "\x75\xe0\x24\xe0\x25\x95\xe0\x14\xe0\x15\xa6\xe4\xe6"
        !          77144:             "\xb6\xd4\xd6\xd6\xc4\xc6\xe0\x17\xa4\xa7\xe0\x38\x84"
        !          77145:             "\x88\xe0\x68\x64\x68\xe0\x9b\x24\x2b\xe0\xce\x0c\xe0"
        !          77146:             "\xe0\x2e\x08\xe0\xe0\x6e\x04\xe0\xe0\xca\xe0\x84" }  },
        !          77147:       /* --- pixel bitmap for stmary600 char#18 \varodot --- */
        !          77148:       {  18,16741,                      /* character number, location */
        !          77149:          48, 5,   -6, 5,      /* topleft row,col, and botleft row,col */
        !          77150:           { 54,   54, 3,377, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          77151:             "\xe0\x8a\xe0\xe0\xce\x04\xe0\xe0\x6e\x08\xe0\xe0\x2e"
        !          77152:             "\x0c\xe0\xcb\x8b\xe0\x98\xe0\x28\xe0\x68\xe0\x68\xe0"
        !          77153:             "\x37\xe0\xa7\xe0\x16\xe0\xe6\xd6\xe0\xe0\x26\xb6\xe0"
        !          77154:             "\xe0\x46\xa5\xe0\xe0\x65\x95\xe0\xe0\x85\x76\xe0\xe0"
        !          77155:             "\x86\x65\xe0\xe0\xa5\x30\xf1\x25\xe0\xe0\xc5\x20\xf1"
        !          77156:             "\x15\xe0\xe0\xe5\x10\xf1\x14\xe0\xe0\xe0\x24\x15\xe0"
        !          77157:             "\x64\xe0\x6a\xe0\x48\xe0\x45\x0f\x14\xe0\x4a\xe0\x44"
        !          77158:             "\x0f\x34\xe0\x3c\xe0\x34\x0f\x14\xe0\x4a\xe0\x44\x05"
        !          77159:             "\xe0\x48\xe0\x4a\xe0\x64\xe0\x65\xf1\x14\xe0\xe0\xe0"
        !          77160:             "\x24\x10\xf1\x15\xe0\xe0\xe5\x10\xf1\x25\xe0\xe0\xc5"
        !          77161:             "\x20\x35\xe0\xe0\xa5\x66\xe0\xe0\x86\x75\xe0\xe0\x85"
        !          77162:             "\x95\xe0\xe0\x65\xa6\xe0\xe0\x46\xb6\xe0\xe0\x26\xd6"
        !          77163:             "\xe0\xe6\xe0\x17\xe0\xa7\xe0\x38\xe0\x68\xe0\x68\xe0"
        !          77164:             "\x28\xe0\x9b\x8b\xe0\xce\x0c\xe0\xe0\x2e\x08\xe0\xe0"
        !          77165:             "\x6e\x04\xe0\xe0\xca\xe0\x86" }  },
        !          77166:       /* --- pixel bitmap for stmary600 char#19 \varoslash --- */
        !          77167:       {  19,17702,                      /* character number, location */
        !          77168:          48, 5,   -6, 5,      /* topleft row,col, and botleft row,col */
        !          77169:           { 54,   54, 3,425, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          77170:             "\xe0\x8a\xe0\xe0\xce\x04\xe0\xe0\x6e\x08\xe0\xe0\x2e"
        !          77171:             "\x0c\xe0\xcb\x8b\xe0\x98\xe0\x28\xe0\x68\xe0\x68\xe0"
        !          77172:             "\x37\xe0\xa7\xe0\x16\xe0\xe6\xd6\xe0\xe0\x26\xb6\xe0"
        !          77173:             "\xe0\x28\xa5\xe0\xe0\x29\x95\xe0\xe0\x2b\x76\xe0\xe0"
        !          77174:             "\x16\x16\x65\xe0\xe0\x16\x35\x55\xe0\xe0\x16\x55\x45"
        !          77175:             "\xe0\xe6\x65\x35\xe0\xe6\x85\x25\xe0\xd6\x95\x24\xe0"
        !          77176:             "\xd6\xb4\x24\xe0\xc6\xc4\x15\xe0\xb6\xda\xe0\xa6\xe9"
        !          77177:             "\xe0\xa6\xe0\x28\xe0\x96\xe0\x38\xe0\x86\xe0\x48\xe0"
        !          77178:             "\x76\xe0\x58\xe0\x66\xe0\x68\xe0\x56\xe0\x78\xe0\x46"
        !          77179:             "\xe0\x88\xe0\x36\xe0\x99\xe0\x16\xe0\x9a\xe6\xe0\xa5"
        !          77180:             "\x14\xd6\xe0\xb4\x24\xc6\xe0\xc4\x25\xa6\xe0\xc5\x25"
        !          77181:             "\x96\xe0\xd5\x35\x76\xe0\xd5\x45\x66\xe0\xe5\x55\x46"
        !          77182:             "\xe0\xe5\x66\x26\xe0\xe6\x75\x16\xe0\xe0\x15\x9a\xe0"
        !          77183:             "\xe0\x15\xa9\xe0\xe0\x16\xb7\xe0\xe0\x16\xd6\xe0\xe6"
        !          77184:             "\xe0\x17\xe0\xa7\xe0\x38\xe0\x68\xe0\x68\xe0\x28\xe0"
        !          77185:             "\x9b\x8b\xe0\xce\x0c\xe0\xe0\x2e\x08\xe0\xe0\x6e\x04"
        !          77186:             "\xe0\xe0\xca\xe0\x8b" }  },
        !          77187:       /* --- pixel bitmap for stmary600 char#20 \varobslash --- */
        !          77188:       {  20,18701,                      /* character number, location */
        !          77189:          48, 5,   -6, 5,      /* topleft row,col, and botleft row,col */
        !          77190:           { 54,   54, 3,425, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          77191:             "\xe0\x8a\xe0\xe0\xce\x04\xe0\xe0\x6e\x08\xe0\xe0\x2e"
        !          77192:             "\x0c\xe0\xcb\x8b\xe0\x98\xe0\x28\xe0\x68\xe0\x68\xe0"
        !          77193:             "\x37\xe0\xa7\xe0\x16\xe0\xe6\xd7\xe0\xe0\x16\xb9\xe0"
        !          77194:             "\xe0\x16\xaa\xe0\xe0\x15\x95\x16\xe0\xe0\x15\x76\x26"
        !          77195:             "\xe0\xe6\x65\x46\xe0\xe5\x55\x66\xe0\xe5\x45\x76\xe0"
        !          77196:             "\xd5\x35\x96\xe0\xd5\x25\xa6\xe0\xc5\x24\xc6\xe0\xc4"
        !          77197:             "\x24\xd6\xe0\xb4\x15\xe6\xe0\xaa\xe0\x16\xe0\x99\xe0"
        !          77198:             "\x36\xe0\x98\xe0\x46\xe0\x88\xe0\x56\xe0\x78\xe0\x66"
        !          77199:             "\xe0\x68\xe0\x76\xe0\x58\xe0\x86\xe0\x48\xe0\x96\xe0"
        !          77200:             "\x38\xe0\xa6\xe0\x29\xe0\xa6\xea\xe0\xb6\xd5\x14\xe0"
        !          77201:             "\xc6\xc4\x24\xe0\xd6\xb4\x25\xe0\xd6\x95\x25\xe0\xe6"
        !          77202:             "\x85\x35\xe0\xe6\x65\x45\xe0\xe0\x16\x55\x55\xe0\xe0"
        !          77203:             "\x16\x35\x66\xe0\xe0\x16\x16\x75\xe0\xe0\x2b\x95\xe0"
        !          77204:             "\xe0\x29\xa6\xe0\xe0\x28\xb6\xe0\xe0\x26\xd6\xe0\xe6"
        !          77205:             "\xe0\x17\xe0\xa7\xe0\x38\xe0\x68\xe0\x68\xe0\x28\xe0"
        !          77206:             "\x9b\x8b\xe0\xce\x0c\xe0\xe0\x2e\x08\xe0\xe0\x6e\x04"
        !          77207:             "\xe0\xe0\xca\xe0\x8b" }  },
        !          77208:       /* --- pixel bitmap for stmary600 char#21 \varocircle --- */
        !          77209:       {  21,19839,                      /* character number, location */
        !          77210:          48, 5,   -6, 5,      /* topleft row,col, and botleft row,col */
        !          77211:           { 54,   54, 3,385, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          77212:             "\xe0\x8a\xe0\xe0\xce\x04\xe0\xe0\x6e\x08\xe0\xe0\x2e"
        !          77213:             "\x0c\xe0\xcb\x8b\xe0\x98\xe0\x28\xe0\x68\xe0\x68\xe0"
        !          77214:             "\x37\xe0\xa7\xe0\x16\xe0\xe6\xd6\xe0\xe0\x26\xb6\xe0"
        !          77215:             "\xe0\x46\xa5\xe0\xe0\x65\x95\xe0\x32\xe0\x35\x76\xda"
        !          77216:             "\xd6\x65\xce\xc5\x55\xbe\x04\xb5\x45\xae\x06\xa5\x35"
        !          77217:             "\xa7\x87\xa5\x25\x96\xc6\x95\x24\x96\xe6\x94\x24\x95"
        !          77218:             "\xe0\x25\x94\x1f\x15\x85\xe0\x45\x85\x0f\x24\x94\xe0"
        !          77219:             "\x64\x94\x0f\x14\x85\xe0\x65\x84\x0f\x24\x94\xe0\x64"
        !          77220:             "\x94\x0f\x15\x85\xe0\x45\x85\x14\x95\xe0\x25\x94\x24"
        !          77221:             "\x96\xe6\x94\x25\x96\xc6\x95\x25\xa7\x87\xa5\x35\xae"
        !          77222:             "\x06\xa5\x45\xbe\x04\xb5\x55\xce\xc5\x66\xda\xd6\x75"
        !          77223:             "\xe0\x32\xe0\x35\x95\xe0\xe0\x65\xa6\xe0\xe0\x46\xb6"
        !          77224:             "\xe0\xe0\x26\xd6\xe0\xe6\xe0\x17\xe0\xa7\xe0\x38\xe0"
        !          77225:             "\x68\xe0\x68\xe0\x28\xe0\x9b\x8b\xe0\xce\x0c\xe0\xe0"
        !          77226:             "\x2e\x08\xe0\xe0\x6e\x04\xe0\xe0\xca\xe0\x80" }  },
        !          77227:       /* --- pixel bitmap for stmary600 char#22 \varoplus --- */
        !          77228:       {  22,20875,                      /* character number, location */
        !          77229:          48, 5,   -6, 5,      /* topleft row,col, and botleft row,col */
        !          77230:           { 54,   54, 3,383, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          77231:             "\xe0\x8a\xe0\xe0\xce\x04\xe0\xe0\x6e\x08\xe0\xe0\x2e"
        !          77232:             "\x0c\xe0\xcb\x24\x2b\xe0\x98\x64\x68\xe0\x68\x84\x88"
        !          77233:             "\xe0\x37\xa4\xa7\xe0\x16\xc4\xc6\xd6\xd4\xd6\xb6\xe4"
        !          77234:             "\xe6\xa5\xe0\x14\xe0\x15\x95\xe0\x24\xe0\x25\x76\xe0"
        !          77235:             "\x24\xe0\x26\x65\xe0\x34\xe0\x35\x30\xf1\x25\xe0\x44"
        !          77236:             "\xe0\x45\x20\xf1\x15\xe0\x54\xe0\x55\x10\xf1\x14\xe0"
        !          77237:             "\x64\xe0\x64\x1f\x15\xe0\x64\xe0\x65\x0f\x14\xe0\x74"
        !          77238:             "\xe0\x74\x0f\x3e\x0e\x0e\x0c\x0f\x14\xe0\x74\xe0\x74"
        !          77239:             "\x0f\x15\xe0\x64\xe0\x65\xf1\x14\xe0\x64\xe0\x64\x10"
        !          77240:             "\xf1\x15\xe0\x54\xe0\x55\x10\xf1\x25\xe0\x44\xe0\x45"
        !          77241:             "\x20\x35\xe0\x34\xe0\x35\x66\xe0\x24\xe0\x26\x75\xe0"
        !          77242:             "\x24\xe0\x25\x95\xe0\x14\xe0\x15\xa6\xe4\xe6\xb6\xd4"
        !          77243:             "\xd6\xd6\xc4\xc6\xe0\x17\xa4\xa7\xe0\x38\x84\x88\xe0"
        !          77244:             "\x68\x64\x68\xe0\x9b\x24\x2b\xe0\xce\x0c\xe0\xe0\x2e"
        !          77245:             "\x08\xe0\xe0\x6e\x04\xe0\xe0\xca\xe0\x80" }  },
        !          77246:       /* --- pixel bitmap for stmary600 char#23 \varominus --- */
        !          77247:       {  23,21888,                      /* character number, location */
        !          77248:          48, 5,   -6, 5,      /* topleft row,col, and botleft row,col */
        !          77249:           { 54,   54, 2,181, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          77250:             "\x16\x0a\x28\x12\x22\x16\x1e\x1a\x1a\x0b\x08\x0b\x17"
        !          77251:             "\x08\x10\x08\x14\x08\x14\x08\x11\x07\x18\x07\x0f\x06"
        !          77252:             "\x1c\x06\x0d\x06\x1e\x06\x0b\x06\x20\x06\x0a\x05\x22"
        !          77253:             "\x05\x09\x05\x24\x05\x07\x06\x24\x06\x06\x05\x26\x05"
        !          77254:             "\x03\x00\xff\x01\x02\x05\x28\x05\x02\x00\xff\x01\x01"
        !          77255:             "\x05\x2a\x05\x01\x00\xff\x01\x01\x04\x2c\x04\x01\xff"
        !          77256:             "\x01\x05\x2c\x05\x00\xff\x01\x04\x2e\x04\x00\xff\x03"
        !          77257:             "\x36\x00\xff\x01\x04\x2e\x04\x00\xff\x01\x05\x2c\x05"
        !          77258:             "\xff\x01\x01\x04\x2c\x04\x01\x00\xff\x01\x01\x05\x2a"
        !          77259:             "\x05\x01\x00\xff\x01\x02\x05\x28\x05\x02\x00\x03\x05"
        !          77260:             "\x26\x05\x06\x06\x24\x06\x07\x05\x24\x05\x09\x05\x22"
        !          77261:             "\x05\x0a\x06\x20\x06\x0b\x06\x1e\x06\x0d\x06\x1c\x06"
        !          77262:             "\x0f\x07\x18\x07\x11\x08\x14\x08\x14\x08\x10\x08\x17"
        !          77263:             "\x0b\x08\x0b\x1a\x1a\x1e\x16\x22\x12\x28\x0a\x16" }  },
        !          77264:       /* --- pixel bitmap for stmary600 char#24 \boxast --- */
        !          77265:       {  24,22865,                      /* character number, location */
        !          77266:          46, 7,   -4, 7,      /* topleft row,col, and botleft row,col */
        !          77267:           { 50,   50, 3,225, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          77268:             "\x1e\x0e\x0e\x06\x1f\x2e\x0e\x0e\x08\x0f\x44\xe0\xe0"
        !          77269:             "\xe4\x0f\x64\xe0\x54\xe0\x54\x04\x74\x84\x84\x78\x75"
        !          77270:             "\x74\x75\x78\x77\x54\x57\x78\x78\x44\x48\x78\x89\x32"
        !          77271:             "\x39\x88\xb7\x22\x27\xb8\xd6\x12\x16\xd8\xe0\x1c\xe0"
        !          77272:             "\x14\x0f\x14\xe0\x38\xe0\x34\x04\xe0\x1c\xe0\x18\xd6"
        !          77273:             "\x12\x16\xd8\xb7\x22\x27\xb8\x89\x32\x39\x88\x78\x44"
        !          77274:             "\x48\x78\x77\x54\x57\x78\x75\x74\x75\x78\x74\x84\x84"
        !          77275:             "\x74\x0f\x64\xe0\x54\xe0\x54\x0f\x44\xe0\xe0\xe4\x0f"
        !          77276:             "\x2e\x0e\x0e\x08\x1e\x0e\x0e\x06\x11" }  },
        !          77277:       /* --- pixel bitmap for stmary600 char#25 \boxbar --- */
        !          77278:       {  25,23832,                      /* character number, location */
        !          77279:          46, 7,   -4, 7,      /* topleft row,col, and botleft row,col */
        !          77280:           { 50,   50, 2,21, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          77281:             "\x01\x30\x01\xff\x02\x32\x00\xff\x29\x04\x13\x04\x13"
        !          77282:             "\x04\x00\xff\x02\x32\x01\x30\x01" }  },
        !          77283:       /* --- pixel bitmap for stmary600 char#26 \boxdot --- */
        !          77284:       {  26,24763,                      /* character number, location */
        !          77285:          46, 7,   -4, 7,      /* topleft row,col, and botleft row,col */
        !          77286:           { 50,   50, 3,129, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          77287:             "\x1e\x0e\x0e\x06\x1f\x2e\x0e\x0e\x08\x0f\xe4\xe0\xe0"
        !          77288:             "\xe4\x04\xe0\x54\xe0\x58\xe0\x38\xe0\x34\x0f\x14\xe0"
        !          77289:             "\x2a\xe0\x24\x0f\x34\xe0\x1c\xe0\x14\x0f\x14\xe0\x2a"
        !          77290:             "\xe0\x24\x04\xe0\x38\xe0\x38\xe0\x54\xe0\x54\x0f\xe4"
        !          77291:             "\xe0\xe0\xe4\x0f\x2e\x0e\x0e\x08\x1e\x0e\x0e\x06\x16" }  },
        !          77292:       /* --- pixel bitmap for stmary600 char#27 \boxslash --- */
        !          77293:       {  27,25636,                      /* character number, location */
        !          77294:          46, 7,   -4, 7,      /* topleft row,col, and botleft row,col */
        !          77295:           { 50,   50, 3,333, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          77296:             "\x1e\x0e\x0e\x06\x1f\x2e\x0e\x0e\x08\x04\xe0\xe0\xbb"
        !          77297:             "\xe0\xe0\xac\xe0\xe0\x9d\xe0\xe0\x8e\xe0\xe0\x76\x18"
        !          77298:             "\xe0\xe0\x66\x28\xe0\xe0\x56\x38\xe0\xe0\x46\x48\xe0"
        !          77299:             "\xe0\x36\x58\xe0\xe0\x26\x68\xe0\xe0\x16\x78\xe0\xe6"
        !          77300:             "\x88\xe0\xd6\x98\xe0\xc6\xa8\xe0\xb6\xb8\xe0\xa6\xc8"
        !          77301:             "\xe0\x96\xd8\xe0\x86\xe8\xe0\x76\xe0\x18\xe0\x66\xe0"
        !          77302:             "\x28\xe0\x56\xe0\x38\xe0\x46\xe0\x48\xe0\x36\xe0\x58"
        !          77303:             "\xe0\x26\xe0\x68\xe0\x16\xe0\x78\xe6\xe0\x88\xd6\xe0"
        !          77304:             "\x98\xc6\xe0\xa8\xb6\xe0\xb8\xa6\xe0\xc8\x96\xe0\xd8"
        !          77305:             "\x86\xe0\xe8\x76\xe0\xe0\x18\x66\xe0\xe0\x28\x56\xe0"
        !          77306:             "\xe0\x38\x46\xe0\xe0\x48\x36\xe0\xe0\x58\x26\xe0\xe0"
        !          77307:             "\x68\x16\xe0\xe0\x7e\xe0\xe0\x8d\xe0\xe0\x9c\xe0\xe0"
        !          77308:             "\xa4\x0f\x2e\x0e\x0e\x08\x1e\x0e\x0e\x06\x10" }  },
        !          77309:       /* --- pixel bitmap for stmary600 char#28 \boxbslash --- */
        !          77310:       {  28,26556,                      /* character number, location */
        !          77311:          46, 7,   -4, 7,      /* topleft row,col, and botleft row,col */
        !          77312:           { 50,   50, 3,333, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          77313:             "\x1e\x0e\x0e\x06\x1f\x2e\x0e\x0e\x08\x08\xe0\xe0\xad"
        !          77314:             "\xe0\xe0\x9e\xe0\xe0\x88\x16\xe0\xe0\x78\x26\xe0\xe0"
        !          77315:             "\x68\x36\xe0\xe0\x58\x46\xe0\xe0\x48\x56\xe0\xe0\x38"
        !          77316:             "\x66\xe0\xe0\x28\x76\xe0\xe0\x18\x86\xe0\xe8\x96\xe0"
        !          77317:             "\xd8\xa6\xe0\xc8\xb6\xe0\xb8\xc6\xe0\xa8\xd6\xe0\x98"
        !          77318:             "\xe6\xe0\x88\xe0\x16\xe0\x78\xe0\x26\xe0\x68\xe0\x36"
        !          77319:             "\xe0\x58\xe0\x46\xe0\x48\xe0\x56\xe0\x38\xe0\x66\xe0"
        !          77320:             "\x28\xe0\x76\xe0\x18\xe0\x86\xe8\xe0\x96\xd8\xe0\xa6"
        !          77321:             "\xc8\xe0\xb6\xb8\xe0\xc6\xa8\xe0\xd6\x98\xe0\xe6\x88"
        !          77322:             "\xe0\xe0\x16\x78\xe0\xe0\x26\x68\xe0\xe0\x36\x58\xe0"
        !          77323:             "\xe0\x46\x48\xe0\xe0\x56\x38\xe0\xe0\x66\x28\xe0\xe0"
        !          77324:             "\x76\x18\xe0\xe0\x8e\xe0\xe0\x9d\xe0\xe0\xac\xe0\xe0"
        !          77325:             "\xb7\x0f\x2e\x0e\x0e\x08\x1e\x0e\x0e\x06\x10" }  },
        !          77326:       /* --- pixel bitmap for stmary600 char#29 \boxcircle --- */
        !          77327:       {  29,27480,                      /* character number, location */
        !          77328:          46, 7,   -4, 7,      /* topleft row,col, and botleft row,col */
        !          77329:           { 50,   50, 3,179, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          77330:             "\x1e\x0e\x0e\x06\x1f\x2e\x0e\x0e\x08\x0f\x94\xe0\xe0"
        !          77331:             "\xe4\x04\xe0\x46\xe0\x48\xe0\x2a\xe0\x28\xee\xe8\xde"
        !          77332:             "\x02\xd8\xc7\x47\xc8\xb6\x86\xb8\xb5\xa5\xb4\x0f\x14"
        !          77333:             "\xa5\xc5\xa4\x0f\x34\xa4\xe4\xa4\x0f\x14\xa5\xc5\xa4"
        !          77334:             "\x04\xb5\xa5\xb8\xb6\x86\xb8\xc7\x47\xc8\xde\x02\xd8"
        !          77335:             "\xee\xe8\xe0\x2a\xe0\x28\xe0\x46\xe0\x44\x0f\x94\xe0"
        !          77336:             "\xe0\xe4\x0f\x2e\x0e\x0e\x08\x1e\x0e\x0e\x06\x16" }  },
        !          77337:       /* --- pixel bitmap for stmary600 char#30 \boxbox --- */
        !          77338:       {  30,28399,                      /* character number, location */
        !          77339:          46, 7,   -4, 7,      /* topleft row,col, and botleft row,col */
        !          77340:           { 50,   50, 3,87, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          77341:             "\x1e\x0e\x0e\x06\x1f\x2e\x0e\x0e\x08\x0f\x94\xe0\xe0"
        !          77342:             "\xe4\x0f\x34\xae\x08\xa4\x0f\xd4\xa4\xe4\xa4\x0f\x34"
        !          77343:             "\xae\x08\xa4\x0f\x94\xe0\xe0\xe4\x0f\x2e\x0e\x0e\x08"
        !          77344:             "\x1e\x0e\x0e\x06\x14" }  },
        !          77345:       /* --- pixel bitmap for stmary600 char#31 \boxempty --- */
        !          77346:       {  31,29314,                      /* character number, location */
        !          77347:          46, 7,   -4, 7,      /* topleft row,col, and botleft row,col */
        !          77348:           { 50,   50, 2,19, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          77349:             "\x01\x30\x01\xff\x02\x32\x00\xff\x29\x04\x2a\x04\x00"
        !          77350:             "\xff\x02\x32\x01\x30\x01" }  },
        !          77351:       /* --- pixel bitmap for stmary600 char#32 \lightning --- */
        !          77352:       {  32,30335,                      /* character number, location */
        !          77353:          58, 6,  -16, 6,      /* topleft row,col, and botleft row,col */
        !          77354:           { 28,   74, 3,315, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          77355:             "\xe0\x92\xe0\xb4\x20\xf1\xe0\x75\x20\xe0\x74\x30\xf1"
        !          77356:             "\xe0\x65\x30\xf1\xe0\x55\x40\xe0\x54\x50\xf1\xe0\x45"
        !          77357:             "\x50\xf1\xe0\x35\x60\xe0\x34\x70\xf1\xe0\x25\x70\xf1"
        !          77358:             "\xe0\x15\x80\xe0\x14\x90\xf1\xe5\x90\xf1\xd5\xa0\xf1"
        !          77359:             "\xc5\xb0\xc4\xc0\xf1\xb5\xc0\xa5\xe0\x95\xa1\xc4\x86"
        !          77360:             "\x95\x68\x95\x3b\x85\x2c\x9e\x05\x9e\x04\x9b\x35\x99"
        !          77361:             "\x54\xa6\x75\xb3\x95\x30\xf1\xe0\x55\x40\xe0\x54\x50"
        !          77362:             "\xf1\xe0\x45\x50\xf1\xe0\x35\x60\xe0\x34\x70\xf1\xe0"
        !          77363:             "\x25\x70\xf1\xe0\x15\x80\x11\xd4\x93\xb5\x94\xa5\xa4"
        !          77364:             "\x85\xc4\x75\xd3\x74\xe4\x55\xe0\x14\x45\xe0\x23\x35"
        !          77365:             "\xe0\x34\x25\xe0\x43\x15\xe0\x53\x15\x67\x77\x4a\x77"
        !          77366:             "\x1d\x7e\xea\xe0\x57\xe0\x76\xe0\x84\xe0\xa3\xe0\xb2"
        !          77367:             "\xe0\x4f" }  },
        !          77368:       /* --- pixel bitmap for stmary600 char#33 \merge --- */
        !          77369:       {  33,31272,                      /* character number, location */
        !          77370:          62, 5,    0, 5,      /* topleft row,col, and botleft row,col */
        !          77371:           { 64,   62, 3,525, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          77372:             "\xe0\x63\xe0\x43\xe0\x60\xf2\xe0\x55\xe0\x25\xe0\x50"
        !          77373:             "\xf2\xe0\x47\xe7\xe0\x40\xf1\xe0\x39\xc9\xe0\x30\xe0"
        !          77374:             "\x34\x14\xc4\x14\xe0\x30\xf1\xe0\x25\x15\xa5\x15\xe0"
        !          77375:             "\x20\xe0\x24\x34\xa4\x34\xe0\x20\xf1\xe0\x15\x35\x85"
        !          77376:             "\x35\xe0\x10\xe0\x14\x54\x84\x54\xe0\x10\xf1\xe5\x55"
        !          77377:             "\x65\x55\xe0\xe4\x74\x64\x74\xe0\xf1\xd5\x75\x45\x75"
        !          77378:             "\xd0\xd4\x94\x44\x94\xd0\xf1\xc5\x95\x25\x95\xc0\xc4"
        !          77379:             "\xb4\x24\xb4\xc0\xf1\xb5\xba\xb5\xb0\xb4\xd8\xd4\xb0"
        !          77380:             "\xf1\xa5\xd8\xd5\xa0\xa4\xe0\x16\xe0\x14\xa0\xf1\x95"
        !          77381:             "\xe0\x16\xe0\x15\x90\x94\xe0\x34\xe0\x34\x90\xf1\x85"
        !          77382:             "\xe0\x26\xe0\x25\x80\x84\xe0\x36\xe0\x34\x80\xf1\x75"
        !          77383:             "\xe0\x28\xe0\x25\x70\x74\xe0\x38\xe0\x34\x70\xf1\x65"
        !          77384:             "\xe0\x2a\xe0\x25\x60\x64\xe0\x34\x24\xe0\x34\x60\xf1"
        !          77385:             "\x55\xe0\x25\x25\xe0\x25\x50\x54\xe0\x34\x44\xe0\x34"
        !          77386:             "\x50\xf1\x45\xe0\x25\x45\xe0\x25\x40\x44\xe0\x34\x64"
        !          77387:             "\xe0\x34\x40\xf1\x35\xe0\x25\x65\xe0\x25\x30\x34\xe0"
        !          77388:             "\x34\x84\xe0\x34\x30\xf1\x25\xe0\x25\x85\xe0\x25\x20"
        !          77389:             "\x24\xe0\x34\xa4\xe0\x34\x20\xf1\x15\xe0\x25\xa5\xe0"
        !          77390:             "\x25\x10\x14\xe0\x34\xc4\xe0\x34\x1f\x15\xe0\x25\xc5"
        !          77391:             "\xe0\x25\x04\xe0\x34\xe4\xe0\x34\x12\xe0\x52\xe0\x22"
        !          77392:             "\xe0\x52\x10" }  },
        !          77393:       /* --- pixel bitmap for stmary600 char#34 \vartimes --- */
        !          77394:       {  34,32267,                      /* character number, location */
        !          77395:          58, 5,    0, 5,      /* topleft row,col, and botleft row,col */
        !          77396:           { 36,   58, 3,289, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          77397:             "\x12\xe0\xe0\x22\x14\xe0\xe4\x0f\x15\xe0\xc5\x15\xe0"
        !          77398:             "\xa5\x26\xe0\x86\x35\xe0\x85\x20\xf1\x35\xe0\x65\x30"
        !          77399:             "\x45\xe0\x45\x86\xe0\x26\x95\xe0\x25\x50\xf1\x65\xe5"
        !          77400:             "\x60\x75\xc5\xe6\xa6\xe0\x15\xa5\x80\xf1\x95\x85\x90"
        !          77401:             "\xa5\x65\xe0\x66\x46\xe0\x75\x45\xb0\xf1\xc5\x25\xc0"
        !          77402:             "\xf1\xda\xd0\xe8\xe0\xf3\xe0\x16\xe0\x10\xe8\xe0\xf1"
        !          77403:             "\xda\xd0\xf1\xc5\x25\xc0\xb5\x45\xe0\x76\x46\xe0\x65"
        !          77404:             "\x65\xa0\xf1\x95\x85\x90\x85\xa5\xe0\x16\xa6\xe5\xc5"
        !          77405:             "\x70\xf1\x65\xe5\x60\x55\xe0\x25\x96\xe0\x26\x85\xe0"
        !          77406:             "\x45\x40\xf1\x35\xe0\x65\x30\x25\xe0\x85\x36\xe0\x86"
        !          77407:             "\x25\xe0\xa5\x1f\x15\xe0\xc5\x04\xe0\xe4\x12\xe0\xe0"
        !          77408:             "\x22\x18" }  },
        !          77409:       /* --- pixel bitmap for stmary600 char#35 \fatsemi --- */
        !          77410:       {  35,33006,                      /* character number, location */
        !          77411:          47, 5,  -16, 5,      /* topleft row,col, and botleft row,col */
        !          77412:           { 18,   63, 3,155, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          77413:             "\x66\xb8\x8c\x5e\x36\x46\x25\x65\x1f\x15\x85\x0f\x14"
        !          77414:             "\xa4\x0f\x15\x85\x15\x65\x26\x46\x3e\x5c\x88\xb6\x60"
        !          77415:             "\xfa\xe0\x40\x66\xb8\x8c\x5e\x36\x46\x25\x65\x1f\x15"
        !          77416:             "\x85\x0f\x14\xa4\x0f\x15\x85\x15\x66\x16\x47\x2e\x02"
        !          77417:             "\x3e\x6c\x7b\xd4\x20\xf1\xb5\x20\xf1\xa5\x30\xf1\x95"
        !          77418:             "\x40\x85\xc6\xc5\xc5\xc6\xc5\x80\xf1\x45\x90\x53\xa1" }  },
        !          77419:       /* --- pixel bitmap for stmary600 char#36 \sswarrow --- */
        !          77420:       {  36,33993,                      /* character number, location */
        !          77421:          58, 6,  -16, 6,      /* topleft row,col, and botleft row,col */
        !          77422:           { 40,   74, 2,217, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          77423:             "\x25\x02\x01\x00\xff\x01\x24\x04\x23\x05\x23\x04\x23"
        !          77424:             "\x05\x23\x04\x02\x00\xff\x01\x21\x05\x02\x00\x21\x04"
        !          77425:             "\x23\x05\x23\x04\x04\x00\xff\x01\x1f\x05\x04\x00\x1f"
        !          77426:             "\x04\x23\x05\x23\x04\x06\x00\xff\x01\x1d\x05\x06\x00"
        !          77427:             "\x1d\x04\x23\x05\x23\x04\x08\x00\xff\x01\x1b\x05\x08"
        !          77428:             "\x00\x1b\x04\x23\x05\x23\x04\x23\x05\x23\x04\x0b\x00"
        !          77429:             "\xff\x01\x18\x05\x0b\x00\x18\x04\x23\x05\x23\x04\x0d"
        !          77430:             "\x00\xff\x01\x16\x05\x0d\x00\x16\x04\x23\x05\x23\x04"
        !          77431:             "\x0f\x00\xff\x01\x14\x05\x0f\x00\x14\x04\x23\x05\x23"
        !          77432:             "\x04\x11\x00\xff\x01\x12\x05\x11\x00\x12\x04\x23\x05"
        !          77433:             "\x23\x04\x23\x05\x23\x04\x14\x00\xff\x01\x0f\x05\x14"
        !          77434:             "\x00\x01\x01\x0d\x04\x15\x03\x0b\x05\x15\x04\x0a\x04"
        !          77435:             "\x17\x04\x08\x05\x18\x04\x07\x05\x19\x03\x07\x04\x1a"
        !          77436:             "\x04\x05\x05\x1b\x04\x04\x04\x1d\x03\x03\x05\x1d\x04"
        !          77437:             "\x02\x05\x1e\x03\x02\x04\x1f\x03\x01\x05\x06\x07\x13"
        !          77438:             "\x07\x04\x0a\x13\x07\x01\x0d\x13\x0e\x1a\x0a\x1f\x07"
        !          77439:             "\x21\x06\x22\x04\x24\x03\x25\x02\x1e" }  },
        !          77440:       /* --- pixel bitmap for stmary600 char#37 \ssearrow --- */
        !          77441:       {  37,35012,                      /* character number, location */
        !          77442:          58, 5,  -16, 5,      /* topleft row,col, and botleft row,col */
        !          77443:           { 40,   74, 2,215, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          77444:             "\x01\x02\x25\xff\x01\x04\x24\x05\x24\x04\x24\x05\x24"
        !          77445:             "\x04\x22\x00\xff\x01\x02\x05\x21\x00\x03\x04\x24\x05"
        !          77446:             "\x24\x04\x20\x00\xff\x01\x04\x05\x1f\x00\x05\x04\x24"
        !          77447:             "\x05\x24\x04\x1e\x00\xff\x01\x06\x05\x1d\x00\x07\x04"
        !          77448:             "\x24\x05\x24\x04\x1c\x00\xff\x01\x08\x05\x1b\x00\x09"
        !          77449:             "\x04\x24\x05\x24\x04\x24\x05\x24\x04\x19\x00\xff\x01"
        !          77450:             "\x0b\x05\x18\x00\x0c\x04\x24\x05\x24\x04\x17\x00\xff"
        !          77451:             "\x01\x0d\x05\x16\x00\x0e\x04\x24\x05\x24\x04\x15\x00"
        !          77452:             "\xff\x01\x0f\x05\x14\x00\x10\x04\x24\x05\x24\x04\x13"
        !          77453:             "\x00\xff\x01\x11\x05\x12\x00\x12\x04\x24\x05\x24\x04"
        !          77454:             "\x24\x05\x24\x04\x10\x00\xff\x01\x14\x05\x0f\x00\x15"
        !          77455:             "\x04\x0d\x01\x16\x05\x0b\x03\x16\x04\x0a\x04\x16\x05"
        !          77456:             "\x08\x04\x17\x05\x07\x04\x19\x04\x07\x03\x1a\x05\x05"
        !          77457:             "\x04\x1b\x04\x04\x04\x1c\x05\x03\x03\x1d\x05\x02\x04"
        !          77458:             "\x1e\x04\x02\x03\x12\x07\x06\x05\x01\x03\x12\x0a\x04"
        !          77459:             "\x07\x13\x0d\x01\x07\x1a\x0e\x1e\x0a\x20\x07\x22\x06"
        !          77460:             "\x24\x04\x25\x03\x26\x02\x08" }  },
        !          77461:       /* --- pixel bitmap for stmary600 char#38 \curlywedgeuparrow --- */
        !          77462:       {  38,36168,                      /* character number, location */
        !          77463:          59, 0,  -16, 0,      /* topleft row,col, and botleft row,col */
        !          77464:           { 56,   75, 3,453, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          77465:             "\xf1\xe0\xd2\xe0\xd0\xf1\xe0\xc4\xe0\xc0\xe0\xb6\xe0"
        !          77466:             "\xe0\xe0\x78\xe0\xa0\xf1\xe0\x9a\xe0\x90\xe0\x8c\xe0"
        !          77467:             "\xe0\xe0\x14\x14\x14\xe0\xe0\xc5\x24\x25\xe0\xe0\x95"
        !          77468:             "\x34\x35\xe0\xe0\x65\x54\x55\xe0\xe0\x26\x64\x66\xe0"
        !          77469:             "\xd5\x76\x75\xe0\xc3\x96\x93\xd0\xf7\xe0\xb6\xe0\xb0"
        !          77470:             "\xf5\xe0\xa8\xe0\xa0\xf1\xe0\x9a\xe0\x90\xf1\xe0\x94"
        !          77471:             "\x24\xe0\x90\xf1\xe0\x85\x25\xe0\x80\xf1\xe0\x84\x44"
        !          77472:             "\xe0\x80\xf1\xe0\x75\x45\xe0\x70\xf1\xe0\x74\x64\xe0"
        !          77473:             "\x70\xf1\xe0\x65\x65\xe0\x60\xf1\xe0\x55\x85\xe0\x50"
        !          77474:             "\xe0\x54\xa4\xe0\x50\xf1\xe0\x45\xa5\xe0\x40\xf1\xe0"
        !          77475:             "\x35\xc5\xe0\x30\xf1\xe0\x25\xe5\xe0\x20\xf1\xe0\x15"
        !          77476:             "\xe0\x25\xe0\x10\xf1\xe5\xe0\x45\xe0\xd5\xe0\x65\xe0"
        !          77477:             "\xb6\xe0\x66\xe0\xa5\xe0\x85\xe0\x95\xe0\xa5\xe0\x76"
        !          77478:             "\xe0\xa6\xe0\x65\xe0\xc5\xe0\x55\xe0\xe5\xe0\x36\xe0"
        !          77479:             "\xe6\xe0\x16\xe0\xe0\x26\xd6\xe0\xe0\x46\xb6\xe0\xe0"
        !          77480:             "\x66\x96\xe0\xe0\x86\x76\xe0\xe0\xa6\x56\xe0\xe0\xc6"
        !          77481:             "\x36\xe0\xe0\xe6\x16\xe0\xe0\xe0\x2b\xe0\xe0\xe0\x45"
        !          77482:             "\x12\xe0\xe0\xe0\x82\x14" }  },
        !          77483:       /* --- pixel bitmap for stmary600 char#39 \curlywedgedownarrow --- */
        !          77484:       {  39,37412,                      /* character number, location */
        !          77485:          60, 0,  -19, 0,      /* topleft row,col, and botleft row,col */
        !          77486:           { 56,   79, 3,407, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          77487:             "\xe0\xd2\xe0\xd0\xfd\xe0\xc4\xe0\xc0\xf9\xe0\xb6\xe0"
        !          77488:             "\xb0\xf5\xe0\xa8\xe0\xa0\xf1\xe0\x9a\xe0\x90\xf1\xe0"
        !          77489:             "\x94\x24\xe0\x90\xf1\xe0\x85\x25\xe0\x80\xf1\xe0\x84"
        !          77490:             "\x44\xe0\x80\xf1\xe0\x75\x45\xe0\x70\xf1\xe0\x74\x64"
        !          77491:             "\xe0\x70\xf1\xe0\x65\x65\xe0\x60\xf1\xe0\x55\x85\xe0"
        !          77492:             "\x50\xe0\x54\xa4\xe0\x50\xf1\xe0\x45\xa5\xe0\x40\xf1"
        !          77493:             "\xe0\x35\xc5\xe0\x30\xf1\xe0\x25\xe5\xe0\x20\xe0\x15"
        !          77494:             "\xe0\x25\xe0\x33\xa5\xe0\x25\xa3\x43\x95\xe0\x45\x93"
        !          77495:             "\x44\x85\xe0\x45\x84\x53\x75\xe0\x65\x73\x63\x66\xe0"
        !          77496:             "\x66\x63\x63\x65\xe0\x85\x63\x63\x55\xe0\xa5\x53\x63"
        !          77497:             "\x46\xe0\xa6\x43\x63\x45\xe0\xc5\x43\x63\x35\xe0\xe5"
        !          77498:             "\x33\x63\x26\xe0\xe6\x23\x63\x16\xe0\xe0\x26\x13\x69"
        !          77499:             "\xe0\xe0\x49\x59\xe0\xe0\x69\x48\xe0\xe0\x88\x47\xe0"
        !          77500:             "\xe0\xa7\x37\xe0\xe0\xc7\x29\xe0\xe0\x89\x2e\xe0\xce"
        !          77501:             "\x1e\x03\xe0\x8e\x06\x89\xe0\x29\x83\xe0\x16\xe6\xe0"
        !          77502:             "\xe0\x54\xc4\xe0\xe0\x92\xe2\xe0\x56" }  },
        !          77503:       /* --- pixel bitmap for stmary600 char#40 \fatslash --- */
        !          77504:       {  40,38314,                      /* character number, location */
        !          77505:          62,23,  -21,23,      /* topleft row,col, and botleft row,col */
        !          77506:           { 51,   83, 3,507, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          77507:             "\xe0\xe0\x1e\x07\xe0\xe0\x1e\x09\xf1\xe0\xde\x0a\xe0"
        !          77508:             "\xd4\xe0\x14\x10\xf1\xe0\xc5\xe5\x10\xe0\xc4\xe5\xe0"
        !          77509:             "\xd5\xe5\xe0\xd5\xe4\xe0\xe4\xe5\xe0\xd5\xe5\xe0\xd5"
        !          77510:             "\xe4\xe0\xe4\xe5\xe0\xd5\xe5\xe0\xd5\xe4\xe0\xe4\xe5"
        !          77511:             "\xe0\xd5\xe5\xe0\xd5\xe4\x60\xf1\xe0\x75\xe5\x60\xe0"
        !          77512:             "\x74\xe5\xe0\xd5\xe5\xe0\xd5\xe4\xe0\xe4\xe5\xe0\xd5"
        !          77513:             "\xe5\xe0\xd5\xe4\xe0\xe4\xe5\xe0\xd5\xe5\xe0\xd5\xe4"
        !          77514:             "\xe0\xe4\xe5\xe0\xd5\xe5\xe0\xd5\xe4\xb0\xf1\xe0\x25"
        !          77515:             "\xe5\xb0\xe0\x24\xe0\x14\xc0\xf1\xe0\x15\xe5\xc0\xe0"
        !          77516:             "\x14\xe5\xe0\xd5\xe5\xe0\xd5\xe4\xe0\xe4\xe5\xe0\xd5"
        !          77517:             "\xe5\xe0\xd5\xe4\xe0\xe4\xe5\xe0\xd5\xe5\xe0\xd5\xe4"
        !          77518:             "\xe0\xe4\xe5\xe0\xd5\xe5\xe0\xd5\xe4\xe0\x30\xf1\xa5"
        !          77519:             "\xe5\xe0\x30\xa4\xe5\xe0\xd5\xe5\xe0\xd5\xe4\xe0\xe4"
        !          77520:             "\xe5\xe0\xd5\xe5\xe0\xd5\xe4\xe0\xe4\xe5\xe0\xd5\xe5"
        !          77521:             "\xe0\xd5\xe4\xe0\xe4\xe5\xe0\xd5\xe5\xe0\xd5\xe4\xe0"
        !          77522:             "\x80\xf1\x55\xe5\xe0\x80\x54\xe0\x14\xe0\x90\xf1\x45"
        !          77523:             "\xe5\xe0\x90\x44\xe5\xe0\xd5\xe5\xe0\xd5\xe4\xe0\xe4"
        !          77524:             "\xe5\xe0\xd5\xe5\xe0\xd5\xe4\xe0\xe4\xe5\xe0\xd5\xe5"
        !          77525:             "\xe0\xd5\xe4\xe0\xe4\xe5\xe0\xde\x0a\xe0\xdf\x1e\x09"
        !          77526:             "\xe0\xe0\x1e\x07\xe0\xe0\x10" }  },
        !          77527:       /* --- pixel bitmap for stmary600 char#41 \fatbslash --- */
        !          77528:       {  41,39238,                      /* character number, location */
        !          77529:          62, 5,  -21, 5,      /* topleft row,col, and botleft row,col */
        !          77530:           { 50,   83, 3,486, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          77531:             "\x1e\x07\xe0\xef\x2e\x09\xe0\xd0\x14\xe5\xe0\xd5\xd5"
        !          77532:             "\xe0\xd5\xe4\xe0\xe4\xe5\xe0\xd5\xd5\xe0\xd5\xe4\xe0"
        !          77533:             "\xe4\xe5\xe0\xd5\xd5\xe0\xd5\xe5\xe0\xd4\xe5\xe0\xd5"
        !          77534:             "\xe4\xe0\xd5\xe5\xe0\xd4\xe5\xe0\xd5\xe4\xe0\xd5\xe5"
        !          77535:             "\xe0\xd5\xd5\xe0\xd5\xe4\xe0\xe4\xe5\xe0\xd5\xd5\xe0"
        !          77536:             "\xd5\xe4\xe0\xe4\xe5\xe0\xd5\xd5\xe0\xd5\xe4\xe0\xe4"
        !          77537:             "\xe5\xe0\xd5\xd5\xe0\xd5\xe5\xe0\xd4\xe5\xe0\xd5\xe4"
        !          77538:             "\xe0\xd5\xe5\xe0\xd5\xd5\xe0\xd5\xe4\xe0\xe4\xe5\xe0"
        !          77539:             "\xd5\xd5\xe0\xd5\xe4\xe0\xe4\xe5\xe0\xd5\xd5\xe0\xd5"
        !          77540:             "\xe4\xe0\xe4\xe5\xe0\xd5\xd5\xe0\xd5\xe5\xe0\xd4\xe5"
        !          77541:             "\xe0\xd5\xe4\xe0\xd5\xe5\xe0\xd4\xe5\xe0\xd5\xe4\xe0"
        !          77542:             "\xd5\xe5\xe0\xd5\xd5\xe0\xd5\xe4\xe0\xe4\xe5\xe0\xd5"
        !          77543:             "\xd5\xe0\xd5\xe4\xe0\xe4\xe5\xe0\xd5\xd5\xe0\xd5\xe4"
        !          77544:             "\xe0\xe4\xe5\xe0\xd5\xd5\xe0\xd5\xe5\xe0\xd4\xe5\xe0"
        !          77545:             "\xd5\xe4\xe0\xd5\xe5\xe0\xd5\xd5\xe0\xd5\xe4\xe0\xe4"
        !          77546:             "\xe5\xe0\xd5\xd5\xe0\xd5\xe4\xe0\xe4\xe5\xe0\xd5\xd5"
        !          77547:             "\xe0\xd5\xe4\xe0\xe4\xe5\xe0\xd5\xd5\xe0\xd5\xe5\xe0"
        !          77548:             "\xd4\xe5\xe0\xd5\xe4\xe0\xd5\xe5\xe0\xd4\xe5\xf1\xe0"
        !          77549:             "\xde\x09\xe0\xee\x08\xe0\xe0\x1e\x07" }  },
        !          77550:       /* --- pixel bitmap for stmary600 char#42 \lbag --- */
        !          77551:       {  42,40061,                      /* character number, location */
        !          77552:          62, 5,  -21, 5,      /* topleft row,col, and botleft row,col */
        !          77553:           { 27,   83, 3,196, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          77554:             "\x67\xe0\x4b\xe0\x1d\xde\x02\xa6\x56\x96\x85\x85\x95"
        !          77555:             "\x8f\x24\xb4\x83\xc4\x80\xf8\xe0\x14\x80\xf1\xe5\x80"
        !          77556:             "\xf3\xe4\x90\xf1\xd5\x90\xf1\xd4\xa0\xf1\xc5\xa0\xf2"
        !          77557:             "\xc4\xb0\xf1\xb5\xb0\xf1\xb4\xc0\xf1\xa5\xc0\xf2\xa4"
        !          77558:             "\xd0\xf1\x95\xd0\xf2\x94\xe0\xf1\x85\xe0\xf2\x84\xe0"
        !          77559:             "\x10\xf1\x75\xe0\x10\xfd\x74\xe0\x20\xf1\x75\xe0\x10"
        !          77560:             "\x84\xe0\x10\xf1\x85\xe0\x95\xe0\x86\xe0\x87\xe0\x79"
        !          77561:             "\xe0\x6e\xed\xe0\x2b\xe0\x58" }  },
        !          77562:       /* --- pixel bitmap for stmary600 char#43 \rbag --- */
        !          77563:       {  43,40749,                      /* character number, location */
        !          77564:          62, 5,  -21, 5,      /* topleft row,col, and botleft row,col */
        !          77565:           { 27,   83, 3,193, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          77566:             "\xe7\xe0\x4b\xe0\x1d\xce\x02\xb6\x56\x95\x86\x85\x95"
        !          77567:             "\xf2\x84\xb4\x84\xc3\xf8\x84\xe0\x10\xf1\x85\xe0\xf3"
        !          77568:             "\x94\xe0\xf1\x95\xd0\xf1\xa4\xd0\xf1\xa5\xc0\xf2\xb4"
        !          77569:             "\xc0\xf1\xb5\xb0\xf1\xc4\xb0\xf1\xc5\xa0\xf2\xd4\xa0"
        !          77570:             "\xf1\xd5\x90\xf2\xe4\x90\xf1\xe5\x80\xf2\xe0\x14\x80"
        !          77571:             "\xf1\xe0\x15\x70\xfd\xe0\x24\x70\xf1\xe0\x15\x70\xe0"
        !          77572:             "\x14\x80\xf1\xe5\x80\xd5\xe0\x76\xe0\x57\xe0\x39\xbe"
        !          77573:             "\xdd\xeb\xe0\x28\xe0\x50" }  },
        !          77574:       /* --- pixel bitmap for stmary600 char#44 \varbigcirc --- */
        !          77575:       {  44,41775,                      /* character number, location */
        !          77576:          58, 5,  -15, 5,      /* topleft row,col, and botleft row,col */
        !          77577:           { 73,   73, 2,247, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          77578:             "\x1e\x0d\x38\x15\x31\x1b\x2c\x1f\x28\x0c\x0b\x0c\x25"
        !          77579:             "\x09\x13\x09\x22\x08\x19\x08\x1f\x07\x1d\x07\x1c\x07"
        !          77580:             "\x21\x07\x19\x07\x23\x07\x17\x06\x27\x06\x15\x06\x29"
        !          77581:             "\x06\x13\x06\x2b\x06\x11\x06\x2d\x06\x0f\x06\x2f\x06"
        !          77582:             "\x0e\x05\x31\x05\x0d\x05\x33\x05\x0b\x06\x33\x06\x0a"
        !          77583:             "\x05\x35\x05\x05\x00\xff\x01\x04\x05\x37\x05\x04\x00"
        !          77584:             "\xff\x01\x03\x05\x39\x05\x03\x00\xff\x01\x02\x05\x3b"
        !          77585:             "\x05\x02\x00\x02\x04\x3d\x04\x02\x00\xff\x01\x01\x05"
        !          77586:             "\x3d\x05\x01\x00\xff\x01\x01\x04\x3f\x04\x01\xff\x01"
        !          77587:             "\x05\x3f\x05\x00\xff\x08\x04\x41\x04\x00\xff\x01\x05"
        !          77588:             "\x3f\x05\xff\x01\x01\x04\x3f\x04\x01\x00\xff\x01\x01"
        !          77589:             "\x05\x3d\x05\x01\x00\x02\x04\x3d\x04\x02\x00\xff\x01"
        !          77590:             "\x02\x05\x3b\x05\x02\x00\xff\x01\x03\x05\x39\x05\x03"
        !          77591:             "\x00\xff\x01\x04\x05\x37\x05\x04\x00\x05\x05\x35\x05"
        !          77592:             "\x0a\x06\x33\x06\x0b\x05\x33\x05\x0d\x05\x31\x05\x0e"
        !          77593:             "\x06\x2f\x06\x0f\x06\x2d\x06\x11\x06\x2b\x06\x13\x06"
        !          77594:             "\x29\x06\x15\x06\x27\x06\x17\x07\x23\x07\x19\x07\x21"
        !          77595:             "\x07\x1c\x07\x1d\x07\x1f\x08\x19\x08\x22\x09\x13\x09"
        !          77596:             "\x25\x0c\x0b\x0c\x28\x1f\x2c\x1b\x31\x15\x38\x0d\x1e" }  },
        !          77597:       /* --- pixel bitmap for stmary600 char#45 \leftrightarroweq --- */
        !          77598:       {  45,43020,                      /* character number, location */
        !          77599:          45, 3,   10, 3,      /* topleft row,col, and botleft row,col */
        !          77600:           { 59,   35, 2,133, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          77601:             "\x0e\x02\x1b\x02\x0e\x00\xff\x01\x0d\x03\x1b\x03\x0d"
        !          77602:             "\x00\x0c\x04\x1b\x04\x18\x03\x1d\x03\x17\x04\x1d\x04"
        !          77603:             "\x15\x04\x1f\x04\x0a\x00\xff\x01\x09\x04\x21\x04\x09"
        !          77604:             "\x00\x08\x04\x23\x04\x0e\x05\x25\x05\x0b\x05\x27\x05"
        !          77605:             "\x09\x05\x29\x05\x06\x37\x02\xff\x01\x3b\x02\x37\x06"
        !          77606:             "\x05\x29\x05\x09\x05\x27\x05\x0b\x05\x25\x05\x0e\x04"
        !          77607:             "\x23\x04\x08\x00\xff\x01\x09\x04\x21\x04\x09\x00\x0a"
        !          77608:             "\x04\x1f\x04\x15\x04\x1d\x04\x17\x03\x1d\x03\x18\x04"
        !          77609:             "\x1b\x04\x0c\x00\xff\x01\x0d\x03\x1b\x03\x0d\x00\x0e"
        !          77610:             "\x02\x1b\x02\x4c\x35\x03\x00\xff\x01\x02\x37\x02\x00"
        !          77611:             "\x03\x35\x03" }  },
        !          77612:       /* --- pixel bitmap for stmary600 char#46 \curlyveedownarrow --- */
        !          77613:       {  46,43740,                      /* character number, location */
        !          77614:          58, 0,  -17, 0,      /* topleft row,col, and botleft row,col */
        !          77615:           { 56,   75, 3,453, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          77616:             "\x12\xe0\xe0\xe0\x82\x15\xe0\xe0\xe0\x4b\xe0\xe0\xe0"
        !          77617:             "\x26\x16\xe0\xe0\xe6\x36\xe0\xe0\xc6\x56\xe0\xe0\xa6"
        !          77618:             "\x76\xe0\xe0\x86\x96\xe0\xe0\x66\xb6\xe0\xe0\x46\xd6"
        !          77619:             "\xe0\xe0\x26\xe0\x16\xe0\xe6\xe0\x35\xe0\xe5\xe0\x55"
        !          77620:             "\xe0\xc5\xe0\x66\xe0\xa6\xe0\x75\xe0\xa5\xe0\x95\xe0"
        !          77621:             "\x85\xe0\xa6\xe0\x66\xe0\xb5\xe0\x65\xd0\xf1\xe5\xe0"
        !          77622:             "\x45\xe0\xf1\xe0\x15\xe0\x25\xe0\x10\xf1\xe0\x25\xe5"
        !          77623:             "\xe0\x20\xf1\xe0\x35\xc5\xe0\x30\xf1\xe0\x45\xa5\xe0"
        !          77624:             "\x40\xe0\x54\xa4\xe0\x50\xf1\xe0\x55\x85\xe0\x50\xf1"
        !          77625:             "\xe0\x65\x65\xe0\x60\xf1\xe0\x74\x64\xe0\x70\xf1\xe0"
        !          77626:             "\x75\x45\xe0\x70\xf1\xe0\x84\x44\xe0\x80\xf1\xe0\x85"
        !          77627:             "\x25\xe0\x80\xf1\xe0\x94\x24\xe0\x90\xf1\xe0\x9a\xe0"
        !          77628:             "\x90\xf5\xe0\xa8\xe0\xa0\xf7\xe0\xb6\xe0\xb0\xd3\x96"
        !          77629:             "\x93\xe0\xc5\x76\x75\xe0\xd6\x64\x66\xe0\xe0\x25\x54"
        !          77630:             "\x55\xe0\xe0\x65\x34\x35\xe0\xe0\x95\x24\x25\xe0\xe0"
        !          77631:             "\xc4\x14\x14\xe0\xe0\xe0\x1c\xe0\x80\xf1\xe0\x9a\xe0"
        !          77632:             "\x90\xe0\xa8\xe0\xe0\xe0\x76\xe0\xb0\xf1\xe0\xc4\xe0"
        !          77633:             "\xc0\xf1\xe0\xd2\xe0\xd0" }  },
        !          77634:       /* --- pixel bitmap for stmary600 char#47 \curlyveeuparrow --- */
        !          77635:       {  47,44604,                      /* character number, location */
        !          77636:          61, 0,  -18, 0,      /* topleft row,col, and botleft row,col */
        !          77637:           { 56,   79, 3,407, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          77638:             "\xe0\x52\xe2\xe0\xe0\x94\xc4\xe0\xe0\x56\xe6\xe0\x13"
        !          77639:             "\x89\xe0\x29\x8e\x06\xe0\x8e\x03\x1e\xe0\xce\x29\xe0"
        !          77640:             "\xe0\x89\x27\xe0\xe0\xc7\x37\xe0\xe0\xa7\x48\xe0\xe0"
        !          77641:             "\x88\x49\xe0\xe0\x69\x59\xe0\xe0\x49\x63\x16\xe0\xe0"
        !          77642:             "\x26\x13\x63\x26\xe0\xe6\x23\x63\x35\xe0\xe5\x33\x63"
        !          77643:             "\x45\xe0\xc5\x43\x63\x46\xe0\xa6\x43\x63\x55\xe0\xa5"
        !          77644:             "\x53\x63\x65\xe0\x85\x63\x63\x66\xe0\x66\x63\x63\x75"
        !          77645:             "\xe0\x65\x73\x54\x85\xe0\x45\x84\x43\x95\xe0\x45\x93"
        !          77646:             "\x43\xa5\xe0\x25\xa3\xe0\x35\xe0\x25\xe0\x10\xf1\xe0"
        !          77647:             "\x25\xe5\xe0\x20\xf1\xe0\x35\xc5\xe0\x30\xf1\xe0\x45"
        !          77648:             "\xa5\xe0\x40\xe0\x54\xa4\xe0\x50\xf1\xe0\x55\x85\xe0"
        !          77649:             "\x50\xf1\xe0\x65\x65\xe0\x60\xf1\xe0\x74\x64\xe0\x70"
        !          77650:             "\xf1\xe0\x75\x45\xe0\x70\xf1\xe0\x84\x44\xe0\x80\xf1"
        !          77651:             "\xe0\x85\x25\xe0\x80\xf1\xe0\x94\x24\xe0\x90\xf1\xe0"
        !          77652:             "\x9a\xe0\x90\xf5\xe0\xa8\xe0\xa0\xf9\xe0\xb6\xe0\xb0"
        !          77653:             "\xfd\xe0\xc4\xe0\xc0\xe0\xd2\xe0\xd0" }  },
        !          77654:       /* --- pixel bitmap for stmary600 char#48 \nnwarrow --- */
        !          77655:       {  48,45435,                      /* character number, location */
        !          77656:          58, 6,  -16, 6,      /* topleft row,col, and botleft row,col */
        !          77657:           { 40,   74, 2,215, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          77658:             "\x08\x02\x26\x03\x25\x04\x24\x06\x22\x07\x20\x0a\x1e"
        !          77659:             "\x0e\x1a\x07\x01\x0d\x13\x07\x04\x0a\x12\x03\x01\x05"
        !          77660:             "\x06\x07\x12\x03\x02\x04\x1e\x04\x02\x05\x1d\x03\x03"
        !          77661:             "\x05\x1c\x04\x04\x04\x1b\x04\x05\x05\x1a\x03\x07\x04"
        !          77662:             "\x19\x04\x07\x05\x17\x04\x08\x05\x16\x04\x0a\x04\x16"
        !          77663:             "\x03\x0b\x05\x16\x01\x0d\x04\x15\x00\xff\x01\x0f\x05"
        !          77664:             "\x14\x00\x10\x04\x24\x05\x24\x04\x24\x05\x24\x04\x12"
        !          77665:             "\x00\xff\x01\x12\x05\x11\x00\x13\x04\x24\x05\x24\x04"
        !          77666:             "\x10\x00\xff\x01\x14\x05\x0f\x00\x15\x04\x24\x05\x24"
        !          77667:             "\x04\x0e\x00\xff\x01\x16\x05\x0d\x00\x17\x04\x24\x05"
        !          77668:             "\x24\x04\x0c\x00\xff\x01\x18\x05\x0b\x00\x19\x04\x24"
        !          77669:             "\x05\x24\x04\x24\x05\x24\x04\x09\x00\xff\x01\x1b\x05"
        !          77670:             "\x08\x00\x1c\x04\x24\x05\x24\x04\x07\x00\xff\x01\x1d"
        !          77671:             "\x05\x06\x00\x1e\x04\x24\x05\x24\x04\x05\x00\xff\x01"
        !          77672:             "\x1f\x05\x04\x00\x20\x04\x24\x05\x24\x04\x03\x00\xff"
        !          77673:             "\x01\x21\x05\x02\x00\x22\x04\x24\x05\x24\x04\x24\x05"
        !          77674:             "\xff\x01\x24\x04\x25\x02\x01" }  },
        !          77675:       /* --- pixel bitmap for stmary600 char#49 \nnearrow --- */
        !          77676:       {  49,46142,                      /* character number, location */
        !          77677:          58, 5,  -16, 5,      /* topleft row,col, and botleft row,col */
        !          77678:           { 40,   74, 2,217, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          77679:             "\x1e\x02\x25\x03\x24\x04\x22\x06\x21\x07\x1f\x0a\x1a"
        !          77680:             "\x0e\x13\x0d\x01\x07\x13\x0a\x04\x07\x13\x07\x06\x05"
        !          77681:             "\x01\x03\x1f\x04\x02\x03\x1e\x05\x02\x04\x1d\x05\x03"
        !          77682:             "\x03\x1d\x04\x04\x04\x1b\x05\x05\x04\x1a\x04\x07\x03"
        !          77683:             "\x19\x05\x07\x04\x18\x05\x08\x04\x17\x04\x0a\x04\x15"
        !          77684:             "\x05\x0b\x03\x15\x04\x0d\x01\x01\x00\xff\x01\x14\x05"
        !          77685:             "\x0f\x00\x14\x04\x23\x05\x23\x04\x23\x05\x23\x04\x12"
        !          77686:             "\x00\xff\x01\x11\x05\x12\x00\x11\x04\x23\x05\x23\x04"
        !          77687:             "\x14\x00\xff\x01\x0f\x05\x14\x00\x0f\x04\x23\x05\x23"
        !          77688:             "\x04\x16\x00\xff\x01\x0d\x05\x16\x00\x0d\x04\x23\x05"
        !          77689:             "\x23\x04\x18\x00\xff\x01\x0b\x05\x18\x00\x0b\x04\x23"
        !          77690:             "\x05\x23\x04\x23\x05\x23\x04\x1b\x00\xff\x01\x08\x05"
        !          77691:             "\x1b\x00\x08\x04\x23\x05\x23\x04\x1d\x00\xff\x01\x06"
        !          77692:             "\x05\x1d\x00\x06\x04\x23\x05\x23\x04\x1f\x00\xff\x01"
        !          77693:             "\x04\x05\x1f\x00\x04\x04\x23\x05\x23\x04\x21\x00\xff"
        !          77694:             "\x01\x02\x05\x21\x00\x02\x04\x23\x05\x23\x04\x23\x05"
        !          77695:             "\x23\xff\x01\x04\x24\x00\x01\x02\x25" }  },
        !          77696:       /* --- pixel bitmap for stmary600 char#50 \leftslice --- */
        !          77697:       {  50,47037,                      /* character number, location */
        !          77698:          41, 5,    1, 5,      /* topleft row,col, and botleft row,col */
        !          77699:           { 55,   40, 2,139, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          77700:             "\x2c\x03\x31\x07\x2e\x0a\x2b\x0d\x27\x10\x25\x0a\x04"
        !          77701:             "\x05\x21\x0b\x06\x06\x1e\x0b\x09\x05\x1b\x0b\x0d\x05"
        !          77702:             "\x18\x0b\x0f\x05\x16\x0a\x13\x05\x12\x0b\x15\x05\x10"
        !          77703:             "\x0a\x19\x04\x0d\x0b\x1b\x04\x0b\x0b\x1d\x05\x08\x0a"
        !          77704:             "\x20\x05\x05\x0b\x23\x04\x03\x0a\x26\x04\x01\x0a\x28"
        !          77705:             "\x04\x00\xff\x01\x09\x2a\x04\x01\x0a\x28\x04\x03\x0a"
        !          77706:             "\x26\x04\x05\x0b\x23\x04\x08\x0a\x20\x05\x0a\x0b\x1d"
        !          77707:             "\x05\x0c\x0b\x1b\x04\x10\x0a\x19\x04\x12\x0b\x15\x05"
        !          77708:             "\x15\x0a\x13\x05\x17\x0b\x0f\x05\x1a\x0b\x0d\x05\x1d"
        !          77709:             "\x0b\x09\x05\x20\x0b\x06\x06\x23\x0a\x04\x05\x26\x10"
        !          77710:             "\x2a\x0d\x2c\x0a\x2f\x07\x33\x03\x08" }  },
        !          77711:       /* --- pixel bitmap for stmary600 char#51 \rightslice --- */
        !          77712:       {  51,47895,                      /* character number, location */
        !          77713:          41, 5,    1, 5,      /* topleft row,col, and botleft row,col */
        !          77714:           { 55,   40, 2,139, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          77715:             "\x08\x03\x33\x07\x2f\x0a\x2c\x0d\x2a\x10\x26\x05\x04"
        !          77716:             "\x0a\x23\x06\x06\x0b\x20\x05\x09\x0b\x1d\x05\x0d\x0b"
        !          77717:             "\x1a\x05\x0f\x0b\x17\x05\x13\x0a\x15\x05\x15\x0b\x12"
        !          77718:             "\x04\x19\x0a\x10\x04\x1b\x0b\x0c\x05\x1d\x0b\x0a\x05"
        !          77719:             "\x20\x0a\x08\x04\x23\x0b\x05\x04\x26\x0a\x03\x04\x28"
        !          77720:             "\x0a\x01\xff\x01\x04\x2a\x09\x00\x04\x28\x0a\x01\x04"
        !          77721:             "\x26\x0a\x03\x04\x23\x0b\x05\x05\x20\x0a\x08\x05\x1d"
        !          77722:             "\x0b\x0b\x04\x1b\x0b\x0d\x04\x19\x0a\x10\x05\x15\x0b"
        !          77723:             "\x12\x05\x13\x0a\x16\x05\x0f\x0b\x18\x05\x0d\x0b\x1b"
        !          77724:             "\x05\x09\x0b\x1e\x06\x06\x0b\x21\x05\x04\x0a\x25\x10"
        !          77725:             "\x27\x0d\x2b\x0a\x2e\x07\x31\x03\x2c" }  },
        !          77726:       /* --- pixel bitmap for stmary600 char#52 \varolessthan --- */
        !          77727:       {  52,48775,                      /* character number, location */
        !          77728:          48, 5,   -6, 5,      /* topleft row,col, and botleft row,col */
        !          77729:           { 54,   54, 3,405, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          77730:             "\xe0\x8a\xe0\xe0\xce\x04\xe0\xe0\x6e\x08\xe0\xe0\x2e"
        !          77731:             "\x0c\xe0\xcb\x8b\xe0\x98\xe0\x28\xe0\x68\xe0\x68\xe0"
        !          77732:             "\x37\xe0\xa7\xe0\x16\xe0\xe6\xd6\xe0\xd9\xb6\xe0\xcc"
        !          77733:             "\xa5\xe0\xae\x01\x95\xe0\x9a\x35\x76\xe0\x6b\x56\x65"
        !          77734:             "\xe0\x5b\x85\x55\xe0\x3b\xc5\x45\xe0\x1b\xe5\x35\xea"
        !          77735:             "\xe0\x45\x25\xbb\xe0\x65\x24\xaa\xe0\xa4\x24\x7b\xe0"
        !          77736:             "\xc4\x15\x5b\xe0\xea\x3a\xe0\xe0\x39\x1b\xe0\xe0\x6e"
        !          77737:             "\x03\xe0\xe0\x9e\x01\xe0\xe0\xb4\x0f\x19\xe0\xe0\xd4"
        !          77738:             "\x0b\xe0\xe0\xbe\x03\xe0\xe0\x98\x1b\xe0\xe0\x69\x3a"
        !          77739:             "\xe0\xe0\x3a\x5b\xe0\xe5\x14\x7b\xe0\xc4\x24\xaa\xe0"
        !          77740:             "\xa4\x25\xbb\xe0\x65\x25\xea\xe0\x45\x35\xe0\x1b\xe5"
        !          77741:             "\x45\xe0\x3b\xc5\x55\xe0\x5b\x85\x66\xe0\x6b\x56\x75"
        !          77742:             "\xe0\x9a\x35\x95\xe0\xae\x01\xa6\xe0\xcc\xb6\xe0\xd9"
        !          77743:             "\xd6\xe0\xe6\xe0\x17\xe0\xa7\xe0\x38\xe0\x68\xe0\x68"
        !          77744:             "\xe0\x28\xe0\x9b\x8b\xe0\xce\x0c\xe0\xe0\x2e\x08\xe0"
        !          77745:             "\xe0\x6e\x04\xe0\xe0\xca\xe0\x80" }  },
        !          77746:       /* --- pixel bitmap for stmary600 char#53 \varogreaterthan --- */
        !          77747:       {  53,49766,                      /* character number, location */
        !          77748:          48, 5,   -6, 5,      /* topleft row,col, and botleft row,col */
        !          77749:           { 54,   54, 3,405, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          77750:             "\xe0\x8a\xe0\xe0\xce\x04\xe0\xe0\x6e\x08\xe0\xe0\x2e"
        !          77751:             "\x0c\xe0\xcb\x8b\xe0\x98\xe0\x28\xe0\x68\xe0\x68\xe0"
        !          77752:             "\x37\xe0\xa7\xe0\x16\xe0\xe6\xd9\xe0\xd6\xbc\xe0\xc6"
        !          77753:             "\xae\x01\xe0\xa5\x95\x3a\xe0\x95\x76\x5b\xe0\x66\x65"
        !          77754:             "\x8b\xe0\x55\x55\xcb\xe0\x35\x45\xeb\xe0\x15\x35\xe0"
        !          77755:             "\x4a\xe5\x25\xe0\x6b\xb5\x24\xe0\xaa\xa4\x24\xe0\xcb"
        !          77756:             "\x74\x15\xe0\xeb\x5a\xe0\xe0\x3a\x39\xe0\xe0\x6b\x18"
        !          77757:             "\xe0\xe0\x9e\x03\xe0\xe0\xbb\x0f\x14\xe0\xe0\xd9\x04"
        !          77758:             "\xe0\xe0\xbe\x01\xe0\xe0\x9e\x03\xe0\xe0\x6b\x19\xe0"
        !          77759:             "\xe0\x3a\x3a\xe0\xeb\x55\x14\xe0\xcb\x74\x24\xe0\xaa"
        !          77760:             "\xa4\x25\xe0\x6b\xb5\x25\xe0\x4a\xe5\x35\xeb\xe0\x15"
        !          77761:             "\x45\xcb\xe0\x35\x55\x8b\xe0\x55\x66\x5b\xe0\x66\x75"
        !          77762:             "\x3a\xe0\x95\x9e\x01\xe0\xa5\xac\xe0\xc6\xb9\xe0\xd6"
        !          77763:             "\xd6\xe0\xe6\xe0\x17\xe0\xa7\xe0\x38\xe0\x68\xe0\x68"
        !          77764:             "\xe0\x28\xe0\x9b\x8b\xe0\xce\x0c\xe0\xe0\x2e\x08\xe0"
        !          77765:             "\xe0\x6e\x04\xe0\xe0\xca\xe0\x80" }  },
        !          77766:       /* --- pixel bitmap for stmary600 char#54 \varovee --- */
        !          77767:       {  54,50749,                      /* character number, location */
        !          77768:          48, 5,   -6, 5,      /* topleft row,col, and botleft row,col */
        !          77769:           { 54,   54, 3,403, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          77770:             "\xe0\x8a\xe0\xe0\xce\x04\xe0\xe0\x6e\x08\xe0\xe0\x2e"
        !          77771:             "\x0c\xe0\xcb\x8b\xe0\x98\xe0\x28\xe0\x68\xe0\x68\xe0"
        !          77772:             "\x37\xe0\xa7\xe0\x16\xe0\xe6\xd6\xe0\xe0\x26\xb7\xe0"
        !          77773:             "\xe0\x27\xa8\xe0\xe8\x99\xe0\xe9\x7a\xe0\xea\x65\x15"
        !          77774:             "\xe0\xc5\x15\x55\x25\xe0\xc5\x25\x45\x35\xe0\xa5\x35"
        !          77775:             "\x35\x45\xe0\xa5\x45\x25\x55\xe0\x85\x55\x24\x65\xe0"
        !          77776:             "\x85\x64\x24\x74\xe0\x84\x74\x1f\x15\x75\xe0\x65\x75"
        !          77777:             "\x0f\x14\x95\xe0\x45\x94\x04\xa4\xe0\x44\xa4\x0f\x14"
        !          77778:             "\xa5\xe0\x25\xa4\x0f\x14\xb5\xe5\xb4\x04\xc5\xc5\xc9"
        !          77779:             "\xb5\xc5\xba\xc4\xc4\xc5\xf1\x14\xc5\xa5\xc4\x10\xf1"
        !          77780:             "\x15\xc5\x85\xc5\x10\x25\xc4\x84\xc5\x45\xc5\x65\xc5"
        !          77781:             "\x55\xb5\x65\xb5\x66\xb5\x45\xb6\x75\xb5\x45\xb5\x95"
        !          77782:             "\xb4\x44\xb5\xa6\xa5\x25\xa6\xb6\x95\x25\x96\xd6\x9a"
        !          77783:             "\x96\xe0\x17\x7a\x77\xe0\x38\x68\x68\xe0\x68\x48\x48"
        !          77784:             "\xe0\x9b\x16\x1b\xe0\xce\x0c\xe0\xe0\x2e\x08\xe0\xe0"
        !          77785:             "\x6e\x04\xe0\xe0\xca\xe0\x80" }  },
        !          77786:       /* --- pixel bitmap for stmary600 char#55 \varowedge --- */
        !          77787:       {  55,51820,                      /* character number, location */
        !          77788:          48, 5,   -6, 5,      /* topleft row,col, and botleft row,col */
        !          77789:           { 54,   54, 3,403, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          77790:             "\xe0\x8a\xe0\xe0\xce\x04\xe0\xe0\x6e\x08\xe0\xe0\x2e"
        !          77791:             "\x0c\xe0\xcb\x16\x1b\xe0\x98\x48\x48\xe0\x68\x68\x68"
        !          77792:             "\xe0\x37\x7a\x77\xe0\x16\x9a\x96\xd6\x95\x25\x96\xb6"
        !          77793:             "\xa5\x25\xa6\xa5\xb4\x44\xb5\x95\xb5\x45\xb5\x76\xb5"
        !          77794:             "\x45\xb6\x65\xb5\x65\xb5\x55\xc5\x65\xc5\x45\xc4\x84"
        !          77795:             "\xc5\x20\xf1\x15\xc5\x85\xc5\x10\xf1\x14\xc5\xa5\xc4"
        !          77796:             "\x15\xc4\xc4\xca\xb5\xc5\xb9\xc5\xc5\xc4\x0f\x14\xb5"
        !          77797:             "\xe5\xb4\x0f\x14\xa5\xe0\x25\xa4\x04\xa4\xe0\x44\xa4"
        !          77798:             "\x0f\x14\x95\xe0\x45\x94\x0f\x15\x75\xe0\x65\x75\x14"
        !          77799:             "\x74\xe0\x84\x74\x24\x65\xe0\x85\x64\x25\x55\xe0\x85"
        !          77800:             "\x55\x25\x45\xe0\xa5\x45\x35\x35\xe0\xa5\x35\x45\x25"
        !          77801:             "\xe0\xc5\x25\x55\x15\xe0\xc5\x15\x6a\xe0\xea\x79\xe0"
        !          77802:             "\xe9\x98\xe0\xe8\xa7\xe0\xe0\x27\xb6\xe0\xe0\x26\xd6"
        !          77803:             "\xe0\xe6\xe0\x17\xe0\xa7\xe0\x38\xe0\x68\xe0\x68\xe0"
        !          77804:             "\x28\xe0\x9b\x8b\xe0\xce\x0c\xe0\xe0\x2e\x08\xe0\xe0"
        !          77805:             "\x6e\x04\xe0\xe0\xca\xe0\x80" }  },
        !          77806:       /* --- pixel bitmap for stmary600 char#56 \talloblong --- */
        !          77807:       {  56,52707,                      /* character number, location */
        !          77808:          62,10,  -20,10,      /* topleft row,col, and botleft row,col */
        !          77809:           { 22,   82, 2,19, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          77810:             "\x01\x14\x01\xff\x02\x16\x00\xff\x49\x04\x0e\x04\x00"
        !          77811:             "\xff\x02\x16\x01\x14\x01" }  },
        !          77812:       /* --- pixel bitmap for stmary600 char#57 \interleave --- */
        !          77813:       {  57,53705,                      /* character number, location */
        !          77814:          62, 9,  -20, 9,      /* topleft row,col, and botleft row,col */
        !          77815:           { 40,   82, 2,21, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          77816:             "\x01\x02\x10\x02\x10\x02\x01\xff\x4f\x04\x0e\x04\x0e"
        !          77817:             "\x04\x01\x02\x10\x02\x10\x02\x01" }  },
        !          77818:       /* --- pixel bitmap for stmary600 char#58 \obar --- */
        !          77819:       {  58,54923,                      /* character number, location */
        !          77820:          48, 5,   -6, 5,      /* topleft row,col, and botleft row,col */
        !          77821:           { 55,   54, 3,417, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          77822:             "\xe0\x8b\xe0\xe0\xce\x05\xe0\xe0\x66\x52\x46\xe0\xe0"
        !          77823:             "\x24\x92\x84\xe0\xc4\xb2\xa4\xe0\x84\xd2\xc4\xe0\x53"
        !          77824:             "\xe0\x12\xe3\xe0\x33\xe0\x22\xe0\x13\xe0\x13\xe0\x32"
        !          77825:             "\xe0\x23\xd3\xe0\x42\xe0\x33\xb3\xe0\x52\xe0\x43\xa2"
        !          77826:             "\xe0\x62\xe0\x52\x93\xe0\x62\xe0\x53\x73\xe0\x72\xe0"
        !          77827:             "\x63\x62\xe0\x82\xe0\x72\x53\xe0\x82\xe0\x73\x20\xf1"
        !          77828:             "\x22\xe0\x92\xe0\x82\x20\x13\xe0\x92\xe0\x83\x10\xf1"
        !          77829:             "\x12\xe0\xa2\xe0\x92\x13\xe0\xa2\xe0\x93\x0f\x92\xe0"
        !          77830:             "\xb2\xe0\xa2\x03\xe0\xa2\xe0\x93\xf1\x12\xe0\xa2\xe0"
        !          77831:             "\x92\x10\x13\xe0\x92\xe0\x83\x10\xf1\x22\xe0\x92\xe0"
        !          77832:             "\x82\x20\x23\xe0\x82\xe0\x73\x52\xe0\x82\xe0\x72\x63"
        !          77833:             "\xe0\x72\xe0\x63\x73\xe0\x62\xe0\x53\x92\xe0\x62\xe0"
        !          77834:             "\x52\xa3\xe0\x52\xe0\x43\xb3\xe0\x42\xe0\x33\xd3\xe0"
        !          77835:             "\x32\xe0\x23\xe0\x13\xe0\x22\xe0\x13\xe0\x33\xe0\x12"
        !          77836:             "\xe3\xe0\x54\xd2\xc4\xe0\x84\xb2\xa4\xe0\xc4\x92\x84"
        !          77837:             "\xe0\xe0\x26\x52\x46\xe0\xe0\x6e\x05\xe0\xe0\xcb\xe0"
        !          77838:             "\x80" }  },
        !          77839:       /* --- pixel bitmap for stmary600 char#59 \oslash --- */
        !          77840:       {  59,55963,                      /* character number, location */
        !          77841:          48, 5,   -6, 5,      /* topleft row,col, and botleft row,col */
        !          77842:           { 55,   54, 3,503, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          77843:             "\xe0\x8b\xe0\xe0\xce\x05\xe0\xe0\x66\xb6\xe0\xe0\x24"
        !          77844:             "\xe0\x54\xe0\xc4\xe0\x94\xe0\x84\xe0\xd4\xe0\x53\xe0"
        !          77845:             "\xe0\x33\xe0\x33\xe0\xe0\x53\xe0\x13\xe0\xe0\x73\xd5"
        !          77846:             "\xe0\xe0\x73\xb3\x13\xe0\xe0\x73\xa2\x33\xe0\xe0\x72"
        !          77847:             "\x93\x43\xe0\xe0\x63\x73\x63\xe0\xe0\x63\x62\x83\xe0"
        !          77848:             "\xe0\x62\x53\x93\xe0\xe0\x53\x42\xb3\xe0\xe0\x52\x42"
        !          77849:             "\xc3\xe0\xe0\x42\x33\xd3\xe0\xe0\x33\x22\xe0\x13\xe0"
        !          77850:             "\xe0\x32\x22\xe0\x23\xe0\xe0\x22\x13\xe0\x33\xe0\xe0"
        !          77851:             "\x15\xe0\x53\xe0\xe0\x14\xe0\x63\xe0\xe4\xe0\x73\xe0"
        !          77852:             "\xd4\xe0\x83\xe0\xc4\xe0\x93\xe0\xb4\xe0\xa4\xe0\x94"
        !          77853:             "\xe0\xc3\xe0\x84\xe0\xd3\xe0\x74\xe0\xe3\xe0\x64\xe0"
        !          77854:             "\xe0\x13\xe0\x55\xe0\xe0\x13\xe0\x33\x12\xe0\xe0\x23"
        !          77855:             "\xe0\x22\x22\xe0\xe0\x33\xe0\x12\x23\xe0\xe0\x33\xd3"
        !          77856:             "\x32\xe0\xe0\x43\xc2\x42\xe0\xe0\x53\xb2\x43\xe0\xe0"
        !          77857:             "\x53\x93\x52\xe0\xe0\x63\x82\x63\xe0\xe0\x63\x63\x73"
        !          77858:             "\xe0\xe0\x63\x43\x92\xe0\xe0\x73\x32\xa3\xe0\xe0\x73"
        !          77859:             "\x13\xb3\xe0\xe0\x75\xd3\xe0\xe0\x73\xe0\x13\xe0\xe0"
        !          77860:             "\x53\xe0\x33\xe0\xe0\x33\xe0\x54\xe0\xd4\xe0\x84\xe0"
        !          77861:             "\x94\xe0\xc4\xe0\x54\xe0\xe0\x26\xb6\xe0\xe0\x6e\x05"
        !          77862:             "\xe0\xe0\xcb\xe0\x86" }  },
        !          77863:       /* --- pixel bitmap for stmary600 char#60 \olessthan --- */
        !          77864:       {  60,56970,                      /* character number, location */
        !          77865:          48, 5,   -6, 5,      /* topleft row,col, and botleft row,col */
        !          77866:           { 55,   54, 3,481, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          77867:             "\xe0\x8b\xe0\xe0\xce\x05\xe0\xe0\x66\xb6\xe0\xe0\x24"
        !          77868:             "\xe0\x54\xe0\xc4\xe0\x94\xe0\x84\xe0\xd4\xe0\x53\xe0"
        !          77869:             "\xe0\x33\xe0\x33\xe0\xe0\x53\xe0\x13\xe0\xe0\x64\xd3"
        !          77870:             "\xe0\xe0\x57\xb3\xe0\xe0\x35\x33\xa2\xe0\xe0\x25\x62"
        !          77871:             "\x93\xe0\xd5\x93\x73\xe0\xc5\xc3\x62\xe0\xa5\xe0\x22"
        !          77872:             "\x53\xe0\x85\xe0\x43\x42\xe0\x65\xe0\x82\x42\xe0\x45"
        !          77873:             "\xe0\xa2\x33\xe0\x15\xe0\xd3\x22\xe5\xe0\xe0\x22\x22"
        !          77874:             "\xc4\xe0\xe0\x52\x13\x95\xe0\xe0\x75\x85\xe0\xe0\xa4"
        !          77875:             "\x55\xe0\xe0\xd4\x35\xe0\xe0\xe0\x19\xe0\xe0\xe0\x42"
        !          77876:             "\x0f\x15\xe0\xe0\xe0\x62\x07\xe0\xe0\xe0\x44\x35\xe0"
        !          77877:             "\xe0\xe0\x14\x55\xe0\xe0\xd4\x85\xe0\xe0\xa5\x95\xe0"
        !          77878:             "\xe0\x73\x12\xc4\xe0\xe0\x52\x22\xe5\xe0\xe0\x22\x23"
        !          77879:             "\xe0\x15\xe0\xd3\x32\xe0\x45\xe0\xa2\x42\xe0\x65\xe0"
        !          77880:             "\x82\x43\xe0\x85\xe0\x43\x52\xe0\xa5\xe0\x22\x63\xe0"
        !          77881:             "\xc5\xc3\x73\xe0\xd5\x93\x92\xe0\xe0\x25\x62\xa3\xe0"
        !          77882:             "\xe0\x35\x33\xb3\xe0\xe0\x57\xd3\xe0\xe0\x64\xe0\x13"
        !          77883:             "\xe0\xe0\x53\xe0\x33\xe0\xe0\x33\xe0\x54\xe0\xd4\xe0"
        !          77884:             "\x84\xe0\x94\xe0\xc4\xe0\x54\xe0\xe0\x26\xb6\xe0\xe0"
        !          77885:             "\x6e\x05\xe0\xe0\xcb\xe0\x80" }  },
        !          77886:       /* --- pixel bitmap for stmary600 char#61 \ogreaterthan --- */
        !          77887:       {  61,57972,                      /* character number, location */
        !          77888:          48, 5,   -6, 5,      /* topleft row,col, and botleft row,col */
        !          77889:           { 55,   54, 3,481, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          77890:             "\xe0\x8b\xe0\xe0\xce\x05\xe0\xe0\x66\xb6\xe0\xe0\x24"
        !          77891:             "\xe0\x54\xe0\xc4\xe0\x94\xe0\x84\xe0\xd4\xe0\x53\xe0"
        !          77892:             "\xe0\x33\xe0\x33\xe0\xe0\x53\xe0\x14\xe0\xe0\x63\xd7"
        !          77893:             "\xe0\xe0\x53\xb3\x35\xe0\xe0\x33\xa2\x65\xe0\xe0\x22"
        !          77894:             "\x93\x95\xe0\xd3\x73\xc5\xe0\xc3\x62\xe0\x25\xe0\xa2"
        !          77895:             "\x53\xe0\x45\xe0\x83\x42\xe0\x85\xe0\x62\x42\xe0\xa5"
        !          77896:             "\xe0\x42\x33\xe0\xd5\xe0\x13\x22\xe0\xe0\x25\xe2\x22"
        !          77897:             "\xe0\xe0\x54\xc2\x13\xe0\xe0\x75\x95\xe0\xe0\xa5\x84"
        !          77898:             "\xe0\xe0\xd5\x54\xe0\xe0\xe0\x15\x34\xe0\xe0\xe0\x47"
        !          77899:             "\x0f\x12\xe0\xe0\xe0\x65\x02\xe0\xe0\xe0\x49\xe0\xe0"
        !          77900:             "\xe0\x15\x34\xe0\xe0\xd5\x54\xe0\xe0\xa5\x85\xe0\xe0"
        !          77901:             "\x75\x93\x12\xe0\xe0\x54\xc2\x22\xe0\xe0\x25\xe2\x23"
        !          77902:             "\xe0\xd5\xe0\x13\x32\xe0\xa5\xe0\x42\x42\xe0\x85\xe0"
        !          77903:             "\x62\x43\xe0\x45\xe0\x83\x52\xe0\x25\xe0\xa2\x63\xc5"
        !          77904:             "\xe0\xc3\x73\x95\xe0\xd3\x92\x65\xe0\xe0\x22\xa3\x35"
        !          77905:             "\xe0\xe0\x33\xb7\xe0\xe0\x53\xd4\xe0\xe0\x63\xe0\x13"
        !          77906:             "\xe0\xe0\x53\xe0\x33\xe0\xe0\x33\xe0\x54\xe0\xd4\xe0"
        !          77907:             "\x84\xe0\x94\xe0\xc4\xe0\x54\xe0\xe0\x26\xb6\xe0\xe0"
        !          77908:             "\x6e\x05\xe0\xe0\xcb\xe0\x80" }  },
        !          77909:       /* --- pixel bitmap for stmary600 char#62 \ovee --- */
        !          77910:       {  62,58966,                      /* character number, location */
        !          77911:          48, 5,   -6, 5,      /* topleft row,col, and botleft row,col */
        !          77912:           { 55,   54, 3,529, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          77913:             "\xe0\x8b\xe0\xe0\xce\x05\xe0\xe0\x66\xb6\xe0\xe0\x24"
        !          77914:             "\xe0\x54\xe0\xc4\xe0\x94\xe0\x84\xe0\xd4\xe0\x53\xe0"
        !          77915:             "\xe0\x33\xe0\x33\xe0\xe0\x53\xe0\x13\xe0\xe0\x73\xd4"
        !          77916:             "\xe0\xe0\x74\xb6\xe0\xe0\x56\xa2\x22\xe0\xe0\x52\x22"
        !          77917:             "\x93\x23\xe0\xe0\x33\x23\x73\x42\xe0\xe0\x32\x43\x62"
        !          77918:             "\x52\xe0\xe0\x32\x52\x53\x53\xe0\xe0\x13\x53\x42\x72"
        !          77919:             "\xe0\xe0\x12\x72\x42\x73\xe0\xd3\x72\x33\x82\xe0\xd2"
        !          77920:             "\x83\x22\x93\xe0\xb3\x92\x22\xa2\xe0\xb2\xa2\x13\xa2"
        !          77921:             "\xe0\xb2\xa5\xb3\xe0\x93\xb4\xc2\xe0\x92\xc4\xc3\xe0"
        !          77922:             "\x73\xc4\xd2\xe0\x72\xd4\xd3\xe0\x53\xd2\x0f\x12\xe2"
        !          77923:             "\xe0\x52\xe2\x02\xe3\xe0\x33\xe4\xe0\x12\xe0\x32\xe0"
        !          77924:             "\x14\xe0\x13\xe0\x13\xe0\x15\xe0\x12\xe0\x12\xe0\x13"
        !          77925:             "\x12\xe0\x12\xe0\x12\xe0\x12\x22\xe0\x13\xd3\xe0\x12"
        !          77926:             "\x23\xe0\x12\xd2\xe0\x13\x32\xe0\x13\xb3\xe0\x12\x42"
        !          77927:             "\xe0\x22\xb2\xe0\x22\x43\xe0\x13\x93\xe0\x13\x52\xe0"
        !          77928:             "\x22\x92\xe0\x22\x63\xe0\x12\x92\xe0\x13\x73\xe3\x73"
        !          77929:             "\xe3\x92\xe0\x12\x72\xe0\x12\xa3\xe3\x53\xe3\xb3\xe2"
        !          77930:             "\x52\xe3\xd3\xd3\x33\xd3\xe0\x13\xd2\x32\xd3\xe0\x33"
        !          77931:             "\xc2\x32\xc3\xe0\x54\xa3\x13\xa4\xe0\x84\x92\x12\x94"
        !          77932:             "\xe0\xc4\x75\x74\xe0\xe0\x26\x43\x46\xe0\xe0\x6e\x05"
        !          77933:             "\xe0\xe0\xcb\xe0\x80" }  },
        !          77934:       /* --- pixel bitmap for stmary600 char#63 \owedge --- */
        !          77935:       {  63,60062,                      /* character number, location */
        !          77936:          48, 5,   -6, 5,      /* topleft row,col, and botleft row,col */
        !          77937:           { 55,   54, 3,529, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          77938:             "\xe0\x8b\xe0\xe0\xce\x05\xe0\xe0\x66\x43\x46\xe0\xe0"
        !          77939:             "\x24\x75\x74\xe0\xc4\x92\x12\x94\xe0\x84\xa3\x13\xa4"
        !          77940:             "\xe0\x53\xc2\x32\xc3\xe0\x33\xd2\x32\xd3\xe0\x13\xd3"
        !          77941:             "\x33\xd3\xd3\xe2\x52\xe3\xb3\xe3\x53\xe3\xa2\xe0\x12"
        !          77942:             "\x72\xe0\x12\x93\xe3\x73\xe3\x73\xe0\x12\x92\xe0\x13"
        !          77943:             "\x62\xe0\x22\x92\xe0\x22\x53\xe0\x13\x93\xe0\x13\x42"
        !          77944:             "\xe0\x22\xb2\xe0\x22\x42\xe0\x13\xb3\xe0\x12\x33\xe0"
        !          77945:             "\x12\xd2\xe0\x13\x22\xe0\x13\xd3\xe0\x12\x22\xe0\x12"
        !          77946:             "\xe0\x12\xe0\x12\x13\xe0\x12\xe0\x12\xe0\x15\xe0\x13"
        !          77947:             "\xe0\x13\xe0\x14\xe0\x12\xe0\x32\xe0\x14\xe3\xe0\x33"
        !          77948:             "\xe2\x0f\x12\xe2\xe0\x52\xe2\x02\xd3\xe0\x53\xd4\xd2"
        !          77949:             "\xe0\x72\xd4\xc3\xe0\x73\xc4\xc2\xe0\x92\xc4\xb3\xe0"
        !          77950:             "\x93\xb5\xa2\xe0\xb2\xa3\x12\xa2\xe0\xb2\xa2\x22\x93"
        !          77951:             "\xe0\xb3\x92\x23\x82\xe0\xd2\x83\x32\x73\xe0\xd3\x72"
        !          77952:             "\x42\x72\xe0\xe0\x12\x72\x43\x53\xe0\xe0\x13\x53\x52"
        !          77953:             "\x52\xe0\xe0\x32\x52\x63\x42\xe0\xe0\x32\x43\x73\x23"
        !          77954:             "\xe0\xe0\x33\x23\x92\x22\xe0\xe0\x52\x22\xa6\xe0\xe0"
        !          77955:             "\x56\xb4\xe0\xe0\x74\xd3\xe0\xe0\x73\xe0\x13\xe0\xe0"
        !          77956:             "\x53\xe0\x33\xe0\xe0\x33\xe0\x54\xe0\xd4\xe0\x84\xe0"
        !          77957:             "\x94\xe0\xc4\xe0\x54\xe0\xe0\x26\xb6\xe0\xe0\x6e\x05"
        !          77958:             "\xe0\xe0\xcb\xe0\x80" }  },
        !          77959:       /* --- pixel bitmap for stmary600 char#64 \oblong --- */
        !          77960:       {  64,61046,                      /* character number, location */
        !          77961:          50, 5,    0, 5,      /* topleft row,col, and botleft row,col */
        !          77962:           { 45,   50, 2,19, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          77963:             "\x01\x2b\x01\xff\x02\x2d\x00\xff\x29\x04\x25\x04\x00"
        !          77964:             "\xff\x02\x2d\x01\x2b\x01" }  },
        !          77965:       /* --- pixel bitmap for stmary600 char#65 \inplus --- */
        !          77966:       {  65,61903,                      /* character number, location */
        !          77967:          46, 7,   -4, 7,      /* topleft row,col, and botleft row,col */
        !          77968:           { 41,   50, 3,285, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          77969:             "\xe0\x6e\x06\xe0\x3e\x0b\xee\x0d\xce\x0e\xca\xe0\xe0"
        !          77970:             "\x18\xe0\xe0\x47\xe0\xe0\x56\xe0\xe0\x66\xe0\xe0\x66"
        !          77971:             "\xe0\xe0\x66\xe0\xe0\x75\xe0\xe0\x75\xd2\xe0\x75\xc4"
        !          77972:             "\xe0\x30\xf1\x25\xd4\xe0\x30\xf1\x15\xe4\xe0\x30\x14"
        !          77973:             "\xe0\x14\xe0\x3f\x15\xe0\x14\xe0\x3f\x14\xe0\x24\xe0"
        !          77974:             "\x3e\x0e\x0c\x1f\x1e\x0e\x0d\x0e\x0e\x0c\x1f\x14\xe0"
        !          77975:             "\x24\xe0\x3f\x15\xe0\x14\xe0\x30\x14\xe0\x14\xe0\x30"
        !          77976:             "\xf1\x15\xe4\xe0\x30\xf1\x25\xd4\xe0\x30\x35\xc4\xe0"
        !          77977:             "\x65\xd2\xe0\x85\xe0\xe0\x86\xe0\xe0\x86\xe0\xe0\x86"
        !          77978:             "\xe0\xe0\x86\xe0\xe0\x87\xe0\xe0\x78\xe0\xe0\x7a\xe0"
        !          77979:             "\xe0\x4e\x0e\xe0\x1e\x0d\xe0\x2e\x0b\xe0\x6e\x06\x12" }  },
        !          77980:       /* --- pixel bitmap for stmary600 char#66 \niplus --- */
        !          77981:       {  66,62729,                      /* character number, location */
        !          77982:          46, 7,   -4, 7,      /* topleft row,col, and botleft row,col */
        !          77983:           { 41,   50, 3,285, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          77984:             "\x1e\x06\xe0\x6e\x0b\xe0\x2e\x0d\xe0\x1e\x0e\xe0\xe0"
        !          77985:             "\x4a\xe0\xe0\x78\xe0\xe0\x77\xe0\xe0\x86\xe0\xe0\x86"
        !          77986:             "\xe0\xe0\x86\xe0\xe0\x86\xe0\xe0\x85\xe0\x82\xd5\xe0"
        !          77987:             "\x64\xc5\x30\xf1\xe0\x34\xd5\x20\xf1\xe0\x34\xe5\x10"
        !          77988:             "\xe0\x34\xe0\x14\x10\xf1\xe0\x34\xe0\x15\xf1\xe0\x34"
        !          77989:             "\xe0\x24\x1e\x0e\x0c\x0f\x1e\x0e\x0d\x1e\x0e\x0c\xf1"
        !          77990:             "\xe0\x34\xe0\x24\xf1\xe0\x34\xe0\x15\xe0\x34\xe0\x14"
        !          77991:             "\x10\xf1\xe0\x34\xe5\x10\xf1\xe0\x34\xd5\x20\xe0\x34"
        !          77992:             "\xc5\xe0\x72\xd5\xe0\xe0\x75\xe0\xe0\x76\xe0\xe0\x66"
        !          77993:             "\xe0\xe0\x66\xe0\xe0\x66\xe0\xe0\x57\xe0\xe0\x48\xe0"
        !          77994:             "\xe0\x1a\xce\x0e\xce\x0d\xee\x0b\xe0\x3e\x06\xe0\x62" }  },
        !          77995:       /* --- pixel bitmap for stmary600 char#67 \nplus --- */
        !          77996:       {  67,63559,                      /* character number, location */
        !          77997:          50, 5,   -2, 5,      /* topleft row,col, and botleft row,col */
        !          77998:           { 45,   52, 3,191, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          77999:             "\xe0\x3b\xe0\xe0\x2e\x05\xe0\xae\x09\xe0\x6e\x0d\xe0"
        !          78000:             "\x3a\x9a\xe8\xe0\x38\xb7\xe0\x77\x96\xe0\xb6\x76\xe0"
        !          78001:             "\xd6\x56\xe0\xe0\x16\x45\xe0\xe0\x35\x20\xf1\x15\xe0"
        !          78002:             "\xe0\x55\x10\x14\xe0\x32\xe0\x2a\xe0\x24\xe0\x1a\xe0"
        !          78003:             "\x24\xe0\x24\x0f\x84\xe0\x34\xe0\x24\x04\x5e\x0d\x54"
        !          78004:             "\x0f\x14\x4e\x0e\x01\x44\x04\x5e\x0d\x54\x0f\xb4\xe0"
        !          78005:             "\x34\xe0\x24\x04\xe0\x42\xe0\x34\x0f\x84\xe0\xe0\x94"
        !          78006:             "\x12\xe0\xe0\xb2\x15" }  },
        !          78007:       /* --- pixel bitmap for stmary600 char#68 \subsetplus --- */
        !          78008:       {  68,64561,                      /* character number, location */
        !          78009:          46, 7,   -4, 7,      /* topleft row,col, and botleft row,col */
        !          78010:           { 51,   50, 2,149, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          78011:             "\x14\x1e\x12\x22\x0e\x25\x0c\x26\x0c\x0a\x27\x09\x29"
        !          78012:             "\x07\x2b\x06\x2c\x06\x2c\x06\x2c\x06\x2d\x05\x2d\x05"
        !          78013:             "\x15\x02\x17\x05\x14\x04\x13\x00\xff\x01\x02\x05\x15"
        !          78014:             "\x04\x13\x00\xff\x01\x01\x05\x16\x04\x13\x00\x01\x04"
        !          78015:             "\x17\x04\x13\xff\x01\x05\x17\x04\x13\xff\x01\x04\x18"
        !          78016:             "\x04\x13\x04\x0e\x18\x09\xff\x01\x04\x0d\x1a\x08\x04"
        !          78017:             "\x0e\x18\x09\xff\x01\x04\x18\x04\x13\xff\x01\x05\x17"
        !          78018:             "\x04\x13\x00\x01\x04\x17\x04\x13\x00\xff\x01\x01\x05"
        !          78019:             "\x16\x04\x13\x00\xff\x01\x02\x05\x15\x04\x13\x00\x03"
        !          78020:             "\x05\x14\x04\x16\x05\x15\x02\x18\x05\x2e\x06\x2e\x06"
        !          78021:             "\x2e\x06\x2e\x06\x2e\x07\x2d\x09\x2c\x0a\x2a\x26\x0f"
        !          78022:             "\x25\x11\x22\x14\x1e\x01" }  },
        !          78023:       /* --- pixel bitmap for stmary600 char#69 \supsetplus --- */
        !          78024:       {  69,65459,                      /* character number, location */
        !          78025:          46, 7,   -4, 7,      /* topleft row,col, and botleft row,col */
        !          78026:           { 51,   50, 2,149, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          78027:             "\x01\x1e\x14\x22\x11\x25\x0f\x26\x2a\x0a\x2c\x09\x2d"
        !          78028:             "\x07\x2e\x06\x2e\x06\x2e\x06\x2e\x06\x2e\x05\x18\x02"
        !          78029:             "\x15\x05\x16\x04\x14\x05\x03\x00\xff\x01\x13\x04\x15"
        !          78030:             "\x05\x02\x00\xff\x01\x13\x04\x16\x05\x01\x00\x13\x04"
        !          78031:             "\x17\x04\x01\x00\xff\x01\x13\x04\x17\x05\xff\x01\x13"
        !          78032:             "\x04\x18\x04\x09\x18\x0e\x04\xff\x01\x08\x1a\x0d\x04"
        !          78033:             "\x09\x18\x0e\x04\xff\x01\x13\x04\x18\x04\xff\x01\x13"
        !          78034:             "\x04\x17\x05\x13\x04\x17\x04\x01\x00\xff\x01\x13\x04"
        !          78035:             "\x16\x05\x01\x00\xff\x01\x13\x04\x15\x05\x02\x00\x13"
        !          78036:             "\x04\x14\x05\x17\x02\x15\x05\x2d\x05\x2d\x06\x2c\x06"
        !          78037:             "\x2c\x06\x2c\x06\x2b\x07\x29\x09\x27\x0a\x0c\x26\x0c"
        !          78038:             "\x25\x0e\x22\x12\x1e\x14" }  },
        !          78039:       /* --- pixel bitmap for stmary600 char#70 \subsetpluseq --- */
        !          78040:       {  70,66375,                      /* character number, location */
        !          78041:          53, 7,  -15, 7,      /* topleft row,col, and botleft row,col */
        !          78042:           { 51,   68, 2,165, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          78043:             "\x14\x1e\x12\x22\x0e\x25\x0c\x26\x0c\x0a\x27\x09\x29"
        !          78044:             "\x07\x2b\x06\x2c\x06\x2c\x06\x2c\x06\x2d\x05\x2d\x05"
        !          78045:             "\x15\x02\x17\x05\x14\x04\x13\x00\xff\x01\x02\x05\x15"
        !          78046:             "\x04\x13\x00\xff\x01\x01\x05\x16\x04\x13\x00\x01\x04"
        !          78047:             "\x17\x04\x13\xff\x01\x05\x17\x04\x13\xff\x01\x04\x18"
        !          78048:             "\x04\x13\x04\x0e\x18\x09\xff\x01\x04\x0d\x1a\x08\x04"
        !          78049:             "\x0e\x18\x09\xff\x01\x04\x18\x04\x13\xff\x01\x05\x17"
        !          78050:             "\x04\x13\x00\x01\x04\x17\x04\x13\x00\xff\x01\x01\x05"
        !          78051:             "\x16\x04\x13\x00\xff\x01\x02\x05\x15\x04\x13\x00\x03"
        !          78052:             "\x05\x14\x04\x16\x05\x15\x02\x18\x05\x2e\x06\x2e\x06"
        !          78053:             "\x2e\x06\x2e\x06\x2e\x07\x2d\x09\x2c\x0a\x2a\x26\x0f"
        !          78054:             "\x25\x11\x22\x14\x1e\x01\x00\xff\x0d\x33\x00\x03\x2f"
        !          78055:             "\x01\x00\xff\x01\x02\x31\x03\x2f\x01" }  },
        !          78056:       /* --- pixel bitmap for stmary600 char#71 \supsetpluseq --- */
        !          78057:       {  71,67303,                      /* character number, location */
        !          78058:          53, 7,  -15, 7,      /* topleft row,col, and botleft row,col */
        !          78059:           { 51,   68, 2,165, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          78060:             "\x01\x1e\x14\x22\x11\x25\x0f\x26\x2a\x0a\x2c\x09\x2d"
        !          78061:             "\x07\x2e\x06\x2e\x06\x2e\x06\x2e\x06\x2e\x05\x18\x02"
        !          78062:             "\x15\x05\x16\x04\x14\x05\x03\x00\xff\x01\x13\x04\x15"
        !          78063:             "\x05\x02\x00\xff\x01\x13\x04\x16\x05\x01\x00\x13\x04"
        !          78064:             "\x17\x04\x01\x00\xff\x01\x13\x04\x17\x05\xff\x01\x13"
        !          78065:             "\x04\x18\x04\x09\x18\x0e\x04\xff\x01\x08\x1a\x0d\x04"
        !          78066:             "\x09\x18\x0e\x04\xff\x01\x13\x04\x18\x04\xff\x01\x13"
        !          78067:             "\x04\x17\x05\x13\x04\x17\x04\x01\x00\xff\x01\x13\x04"
        !          78068:             "\x16\x05\x01\x00\xff\x01\x13\x04\x15\x05\x02\x00\x13"
        !          78069:             "\x04\x14\x05\x17\x02\x15\x05\x2d\x05\x2d\x06\x2c\x06"
        !          78070:             "\x2c\x06\x2c\x06\x2b\x07\x29\x09\x27\x0a\x0c\x26\x0c"
        !          78071:             "\x25\x0e\x22\x12\x1e\x14\x00\xff\x0d\x33\x00\x01\x2f"
        !          78072:             "\x03\xff\x01\x31\x02\x00\x01\x2f\x03" }  },
        !          78073:       /* --- pixel bitmap for stmary600 char#72 \Lbag --- */
        !          78074:       {  72,68194,                      /* character number, location */
        !          78075:          62, 5,  -21, 5,      /* topleft row,col, and botleft row,col */
        !          78076:           { 27,   83, 3,264, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          78077:             "\x66\xe0\x5a\xe0\x23\x64\xd3\x93\xb3\xb2\xb2\xc3\x96"
        !          78078:             "\xa2\x97\x93\x8f\x27\xa2\x80\x15\xb2\xa3\xb3\xe0\xa3"
        !          78079:             "\x80\xf3\xe0\x22\x90\xf1\xe0\x13\x90\xe0\x12\xa0\xf2"
        !          78080:             "\xe3\xa0\xf1\xd3\xb0\xf1\xc4\xb0\xc3\xc0\xf1\xb4\xc0"
        !          78081:             "\xf1\xa4\xd0\x95\xe0\x84\xe0\xf1\x85\xe0\xf1\x75\xe0"
        !          78082:             "\x10\x66\xe0\x75\xe0\x20\xf1\x56\xe0\x20\xf2\x46\xe0"
        !          78083:             "\x30\x37\xe0\x66\xe0\x40\xf1\x27\xe0\x40\x26\xe0\x50"
        !          78084:             "\xf4\x17\xe0\x5f\x97\xe0\x68\xe0\x50\xf1\x17\xe0\x50"
        !          78085:             "\x18\xe0\x67\xe0\x40\xf1\x37\xe0\x30\x47\xe0\x77\xe0"
        !          78086:             "\x77\xe0\x77\xe0\x77\xe0\x86\xe0\x96\xe0\x98\xe0\x7b"
        !          78087:             "\xe0\x67" }  },
        !          78088:       /* --- pixel bitmap for stmary600 char#73 \Rbag --- */
        !          78089:       {  73,68830,                      /* character number, location */
        !          78090:          62, 5,  -21, 5,      /* topleft row,col, and botleft row,col */
        !          78091:           { 27,   83, 3,267, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          78092:             "\xe0\x16\xe0\x5a\xe0\x14\x63\xd3\x93\xc2\xb3\xa3\xc2"
        !          78093:             "\xa2\xa6\x83\x97\xf2\x82\xa7\x82\xb5\x93\xb3\xa3\xe0"
        !          78094:             "\x20\xf3\x92\xe0\x20\xf1\x93\xe0\x10\xa2\xe0\x10\xf2"
        !          78095:             "\xa3\xe0\xf1\xb3\xd0\xf1\xb4\xc0\xc3\xc0\xf1\xc4\xb0"
        !          78096:             "\xf1\xd4\xa0\xd5\xe0\x94\x90\xf1\xe5\x80\xf1\xe0\x15"
        !          78097:             "\x70\xe0\x16\xe0\x85\x60\xf1\xe0\x26\x50\xf2\xe0\x36"
        !          78098:             "\x40\xe0\x37\xe0\x76\x30\xf1\xe0\x47\x20\xe0\x56\x20"
        !          78099:             "\xf4\xe0\x57\x10\xf9\xe0\x67\xe0\x58\xf1\xe0\x57\x10"
        !          78100:             "\xe0\x48\xe0\x57\x20\xf1\xe0\x37\x30\xe0\x27\xe0\x57"
        !          78101:             "\xe0\x57\xe0\x57\xe0\x57\xe0\x56\xe0\x56\xe0\x38\xeb"
        !          78102:             "\xe0\x27\xe0\x60" }  },
        !          78103:       /* --- pixel bitmap for stmary600 char#74 \llbracket --- */
        !          78104:       {  74,69849,                      /* character number, location */
        !          78105:          62, 8,  -21, 8,      /* topleft row,col, and botleft row,col */
        !          78106:           { 24,   83, 2,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          78107:             "\xff\x03\x00\x18\x00\xff\x4a\x04\x07\x04\x09\xff\x03"
        !          78108:             "\x18" }  },
        !          78109:       /* --- pixel bitmap for stmary600 char#75 \rrbracket --- */
        !          78110:       {  75,70997,                      /* character number, location */
        !          78111:          62, 2,  -21, 2,      /* topleft row,col, and botleft row,col */
        !          78112:           { 23,   83, 2,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          78113:             "\xff\x03\x00\x17\xff\x4a\x08\x04\x07\x04\x00\xff\x03"
        !          78114:             "\x17" }  },
        !          78115:       /* --- pixel bitmap for stmary600 char#76 \llparenthesis --- */
        !          78116:       {  76,71977,                      /* character number, location */
        !          78117:          62, 8,  -20, 8,      /* topleft row,col, and botleft row,col */
        !          78118:           { 19,   82, 3,184, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          78119:             "\xe0\x32\xe0\x23\xe0\x14\xe5\xd6\xc7\xb8\xa4\x14\xf1"
        !          78120:             "\x94\x24\x84\x34\xf1\x74\x44\xf1\x64\x54\x55\x54\x54"
        !          78121:             "\x64\x45\x64\xf1\x44\x74\x35\x74\xf1\x34\x84\xf2\x25"
        !          78122:             "\x84\xf5\x15\x94\x0f\xe5\xa4\x0f\x25\xa4\xf5\x15\x94"
        !          78123:             "\xf2\x25\x84\xf1\x34\x84\x35\x74\xf1\x44\x74\x45\x64"
        !          78124:             "\x54\x64\x55\x54\xf1\x64\x54\xf1\x74\x44\x84\x34\xf1"
        !          78125:             "\x94\x24\xa4\x14\xb8\xc7\xd6\xe5\xe0\x14\xe0\x23\xe0"
        !          78126:             "\x32" }  },
        !          78127:       /* --- pixel bitmap for stmary600 char#77 \rrparenthesis --- */
        !          78128:       {  77,72942,                      /* character number, location */
        !          78129:          62, 5,  -20, 5,      /* topleft row,col, and botleft row,col */
        !          78130:           { 19,   82, 3,185, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          78131:             "\x02\xe0\x33\xe0\x24\xe0\x15\xe6\xd7\xc8\xb4\x14\xaf"
        !          78132:             "\x14\x24\x94\x34\x8f\x14\x44\x7f\x14\x54\x64\x55\x54"
        !          78133:             "\x64\x54\x65\x4f\x14\x74\x44\x75\x3f\x14\x84\x3f\x24"
        !          78134:             "\x85\x2f\x54\x95\x1f\xe4\xa5\x0f\x24\xa5\x0f\x54\x95"
        !          78135:             "\x1f\x24\x85\x2f\x14\x84\x34\x75\x3f\x14\x74\x44\x65"
        !          78136:             "\x44\x64\x54\x55\x5f\x14\x54\x6f\x14\x44\x74\x34\x8f"
        !          78137:             "\x14\x24\x94\x14\xa8\xb7\xc6\xd5\xe4\xe0\x13\xe0\x22"
        !          78138:             "\xe0\x30" }  },
        !          78139:       /* --- pixel bitmap for stmary600 char#78 \binampersand --- */
        !          78140:       {  78,73963,                      /* character number, location */
        !          78141:          49, 5,   -7, 5,      /* topleft row,col, and botleft row,col */
        !          78142:           { 55,   56, 3,445, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          78143:             "\xe0\x98\xe0\xe0\xe0\x2d\xe0\xe0\xce\x03\xe0\xe0\x8e"
        !          78144:             "\x06\xe0\xe0\x69\x67\xe0\xe0\x47\xb6\xe0\xe0\x26\xe5"
        !          78145:             "\xe0\xe0\x25\xe0\x25\xe0\xe5\xe0\x35\xe0\xe5\xe0\x44"
        !          78146:             "\xe0\x20\xf2\xc4\xe0\x54\xe0\x20\xc4\xe0\x45\xe0\xe5"
        !          78147:             "\xe0\x35\xe0\xe5\xe0\x25\xe0\xe0\x24\xe0\x25\xe0\xe0"
        !          78148:             "\x25\xe5\xe0\xe0\x36\xc6\xe0\xe0\x45\xb6\xe0\xe0\x65"
        !          78149:             "\x87\xe0\xe0\x76\x58\xe0\xe0\x96\x1a\xe0\xe0\xbe\xe0"
        !          78150:             "\xe0\xcd\xe0\xe0\xbe\xe0\xe0\xbe\x02\xe0\xb2\xab\x26"
        !          78151:             "\xe0\x94\x89\x66\xe0\x75\x68\xa6\xe0\x65\x57\xd7\xe0"
        !          78152:             "\x35\x56\xe0\x27\xe0\x25\x46\xe0\x56\xe5\x46\xe0\x76"
        !          78153:             "\xd5\x45\xe0\x96\xb5\x45\xe0\xb7\x86\x45\xe0\xc7\x66"
        !          78154:             "\x45\xe0\xe0\x16\x55\x55\xe0\xe0\x26\x35\x64\xe0\xe0"
        !          78155:             "\x46\x16\x64\xe0\xe0\x5b\x74\xe0\xe0\x69\x84\xe0\xe0"
        !          78156:             "\x86\x94\xe0\xe0\x78\x85\xe0\xe0\x4b\x75\xe0\xe0\x3e"
        !          78157:             "\x65\xe0\xe0\x16\x37\x55\xe0\xd7\x66\x55\xe0\xa8\x86"
        !          78158:             "\x46\xe0\x69\xb6\x46\xe0\x2b\xd6\x48\x9d\xe0\x25\x5e"
        !          78159:             "\x0d\xe0\x62\x8e\x08\xe0\xe0\x6e\x04\xe0\xe0\xcb\xe0"
        !          78160:             "\xe0\x54" }  },
        !          78161:       /* --- pixel bitmap for stmary600 char#79 \bindnasrepma --- */
        !          78162:       {  79,74836,                      /* character number, location */
        !          78163:          48, 5,   -8, 5,      /* topleft row,col, and botleft row,col */
        !          78164:           { 55,   56, 3,445, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          78165:             "\xe0\xe0\x5b\xe0\xe0\xce\x04\xe0\xe0\x6e\x08\x82\xe0"
        !          78166:             "\x6e\x0d\x55\xe0\x2d\x98\x46\xdb\xe0\x26\x46\xb9\xe0"
        !          78167:             "\x66\x46\x88\xe0\xa5\x56\x67\xe0\xd5\x57\x36\xe0\xe0"
        !          78168:             "\x15\x6e\xe0\xe0\x35\x7b\xe0\xe0\x45\x88\xe0\xe0\x74"
        !          78169:             "\x96\xe0\xe0\x84\x89\xe0\xe0\x64\x7b\xe0\xe0\x54\x66"
        !          78170:             "\x16\xe0\xe0\x44\x65\x36\xe0\xe0\x25\x55\x56\xe0\xe0"
        !          78171:             "\x15\x46\x67\xe0\xc5\x46\x87\xe0\xb5\x45\xb6\xe0\x95"
        !          78172:             "\x45\xd6\xe0\x76\x45\xe6\xe0\x56\x45\xe0\x27\xe0\x26"
        !          78173:             "\x55\xe0\x37\xd7\x55\xe0\x66\xa8\x65\xe0\x76\x69\x84"
        !          78174:             "\xe0\x96\x2b\xa2\xe0\xbe\x02\xe0\xe0\xbe\xe0\xe0\xbd"
        !          78175:             "\xe0\xe0\xce\xe0\xe0\xba\x16\xe0\xe0\x98\x56\xe0\xe0"
        !          78176:             "\x77\x85\xe0\xe0\x66\xb5\xe0\xe0\x46\xc6\xe0\xe0\x35"
        !          78177:             "\xe5\xe0\xe0\x25\xe0\x24\xe0\xe0\x25\xe0\x25\xe0\xe5"
        !          78178:             "\xe0\x35\xe0\xe5\xe0\x44\xc0\xf2\xe0\x24\xe0\x54\xc0"
        !          78179:             "\xe0\x24\xe0\x45\xe0\xe5\xe0\x35\xe0\xe5\xe0\x25\xe0"
        !          78180:             "\xe0\x25\xe6\xe0\xe0\x26\xb7\xe0\xe0\x47\x69\xe0\xe0"
        !          78181:             "\x6e\x06\xe0\xe0\x8e\x03\xe0\xe0\xcd\xe0\xe0\xe0\x28"
        !          78182:             "\xe0\x94" }  },
        !          78183:       /* --- pixel bitmap for stmary600 char#80 \trianglelefteqslant --- */
        !          78184:       {  80,75784,                      /* character number, location */
        !          78185:          53, 7,  -15, 7,      /* topleft row,col, and botleft row,col */
        !          78186:           { 51,   68, 2,229, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          78187:             "\x2f\x03\x2e\x06\x2b\x08\x29\x0a\x27\x0c\x25\x09\x01"
        !          78188:             "\x04\x23\x09\x03\x04\x21\x09\x05\x04\x1f\x09\x07\x04"
        !          78189:             "\x1d\x09\x09\x04\x1b\x09\x0b\x04\x19\x09\x0d\x04\x17"
        !          78190:             "\x09\x0f\x04\x15\x09\x11\x04\x13\x09\x13\x04\x11\x09"
        !          78191:             "\x15\x04\x0f\x09\x17\x04\x0d\x09\x19\x04\x0b\x09\x1b"
        !          78192:             "\x04\x09\x09\x1d\x04\x07\x09\x1f\x04\x05\x09\x21\x04"
        !          78193:             "\x03\x09\x23\x04\x01\x09\x25\x04\x00\xff\x01\x08\x27"
        !          78194:             "\x04\x01\x09\x25\x04\x03\x09\x23\x04\x05\x09\x21\x04"
        !          78195:             "\x07\x09\x1f\x04\x09\x09\x1d\x04\x0b\x09\x1b\x04\x0d"
        !          78196:             "\x09\x19\x04\x0f\x09\x17\x04\x11\x09\x15\x04\x13\x09"
        !          78197:             "\x13\x04\x15\x09\x11\x04\x17\x09\x0f\x04\x19\x09\x0d"
        !          78198:             "\x04\x1b\x09\x0b\x04\x1d\x09\x09\x04\x01\x03\x1b\x09"
        !          78199:             "\x07\x0a\x1b\x09\x05\x0c\x1b\x09\x03\x04\x01\x09\x1b"
        !          78200:             "\x09\x01\x04\x03\x09\x1b\x0c\x05\x09\x1b\x0a\x07\x09"
        !          78201:             "\x1b\x08\x09\x09\x1b\x06\x0b\x09\x1b\x03\x0e\x09\x2c"
        !          78202:             "\x09\x2c\x09\x2c\x09\x2c\x09\x2c\x09\x2c\x09\x2c\x09"
        !          78203:             "\x2c\x09\x2c\x09\x2c\x09\x2c\x09\x2c\x09\x2c\x09\x2c"
        !          78204:             "\x09\x2c\x08\x2d\x06\x2f\x03\x01" }  },
        !          78205:       /* --- pixel bitmap for stmary600 char#81 \trianglerighteqslant --- */
        !          78206:       {  81,76727,                      /* character number, location */
        !          78207:          53, 7,  -15, 7,      /* topleft row,col, and botleft row,col */
        !          78208:           { 51,   68, 2,229, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          78209:             "\x01\x03\x2f\x06\x2d\x08\x2b\x0a\x29\x0c\x27\x04\x01"
        !          78210:             "\x09\x25\x04\x03\x09\x23\x04\x05\x09\x21\x04\x07\x09"
        !          78211:             "\x1f\x04\x09\x09\x1d\x04\x0b\x09\x1b\x04\x0d\x09\x19"
        !          78212:             "\x04\x0f\x09\x17\x04\x11\x09\x15\x04\x13\x09\x13\x04"
        !          78213:             "\x15\x09\x11\x04\x17\x09\x0f\x04\x19\x09\x0d\x04\x1b"
        !          78214:             "\x09\x0b\x04\x1d\x09\x09\x04\x1f\x09\x07\x04\x21\x09"
        !          78215:             "\x05\x04\x23\x09\x03\x04\x25\x09\x01\xff\x01\x04\x27"
        !          78216:             "\x08\x00\x04\x25\x09\x01\x04\x23\x09\x03\x04\x21\x09"
        !          78217:             "\x05\x04\x1f\x09\x07\x04\x1d\x09\x09\x04\x1b\x09\x0b"
        !          78218:             "\x04\x19\x09\x0d\x04\x17\x09\x0f\x04\x15\x09\x11\x04"
        !          78219:             "\x13\x09\x13\x04\x11\x09\x15\x04\x0f\x09\x17\x04\x0d"
        !          78220:             "\x09\x19\x04\x0b\x09\x1b\x04\x09\x09\x1d\x04\x07\x09"
        !          78221:             "\x1b\x03\x01\x04\x05\x09\x1b\x0a\x03\x09\x1b\x0c\x01"
        !          78222:             "\x09\x1b\x09\x01\x0c\x1b\x09\x03\x0a\x1b\x09\x05\x08"
        !          78223:             "\x1b\x09\x07\x06\x1b\x09\x0a\x03\x1b\x09\x28\x09\x28"
        !          78224:             "\x09\x28\x09\x28\x09\x28\x09\x28\x09\x28\x09\x28\x09"
        !          78225:             "\x28\x09\x28\x09\x28\x09\x28\x09\x28\x09\x28\x09\x28"
        !          78226:             "\x09\x29\x08\x2b\x06\x2e\x03\x2f" }  },
        !          78227:       /* --- pixel bitmap for stmary600 char#82 \ntrianglelefteqslant --- */
        !          78228:       {  82,77716,                      /* character number, location */
        !          78229:          67, 7,  -25, 7,      /* topleft row,col, and botleft row,col */
        !          78230:           { 51,   92, 3,657, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          78231:             "\xe0\xe0\xe0\x12\xe0\xe0\xe0\x64\x50\xf1\xe0\xe0\xd5"
        !          78232:             "\x50\xe0\xe0\xd4\x60\xf1\xe0\xe0\xc5\x60\xf1\xe0\xe0"
        !          78233:             "\xb5\x70\xf1\xe0\xe0\xa5\x80\xe0\xe0\xa4\x90\xf1\xe0"
        !          78234:             "\xe0\x95\x90\xe0\xe0\x85\x63\xe0\xe0\x95\x46\xe0\xe0"
        !          78235:             "\x84\x38\xe0\xe0\x75\x1a\xe0\xe0\x7e\x02\xe0\xe0\x6c"
        !          78236:             "\x14\xe0\xe0\x6a\x34\xe0\xe0\x59\x54\xe0\xe0\x39\x74"
        !          78237:             "\xe0\xe0\x19\x94\xe0\xda\xa4\xe0\xbc\xa4\xe0\x9d\xb4"
        !          78238:             "\xe0\x79\x15\xb4\xe0\x59\x25\xc4\xe0\x39\x45\xc4\xe0"
        !          78239:             "\x19\x64\xd4\xd9\x75\xd4\xb9\x95\xd4\x99\xa5\xe4\x6a"
        !          78240:             "\xc5\xe4\x4a\xe4\xe0\x14\x2a\xe0\x15\xe0\x14\x19\xe0"
        !          78241:             "\x35\xe0\x1b\xe0\x55\xe0\x2c\xe0\x45\xe0\x24\x19\xe0"
        !          78242:             "\x15\xe0\x34\x39\xd5\xe0\x34\x59\xb4\xe0\x44\x79\x85"
        !          78243:             "\xe0\x44\x99\x65\xe0\x44\xb9\x35\xe0\x54\xd9\x15\xe0"
        !          78244:             "\x54\xe0\x1c\xe0\x64\xe0\x3a\xe0\x64\xe0\x59\xe0\x54"
        !          78245:             "\xe0\x79\xe0\x34\xe0\x7b\xe0\x14\xe0\x6e\xd4\xe0\x65"
        !          78246:             "\x29\xb4\xe0\x55\x59\x94\x13\xe0\x15\x79\x7a\xd4\xa9"
        !          78247:             "\x5c\xa5\xca\x24\x19\x85\xee\x39\x55\xe0\x3c\x59\x35"
        !          78248:             "\xe0\x5a\x79\x14\xe0\x97\x9c\xe0\xb5\xba\xe0\xd2\xe9"
        !          78249:             "\xe0\xe0\xe0\x29\xe0\xe0\xdc\xe0\xe0\xbe\xe0\xe0\x94"
        !          78250:             "\x39\xe0\xe0\x65\x59\xe0\xe0\x45\x79\xe0\xe0\x15\xa9"
        !          78251:             "\xe0\xd5\xc9\xe0\xa5\xe0\x19\xe0\x85\xe0\x39\xe0\x64"
        !          78252:             "\xe0\x6a\xe0\x25\xe0\x8a\xe5\xe0\xaa\xb5\xe0\xd9\xa5"
        !          78253:             "\xe0\xe0\x27\x94\xe0\xe0\x55\x85\xe0\xe0\x72\x95\xe0"
        !          78254:             "\xe0\xa0\xf1\x75\xe0\xe0\xb0\xf1\x65\xe0\xe0\xc0\x64"
        !          78255:             "\xe0\xe0\xd0\xf1\x55\xe0\xe0\xd0\x54\xe0\xe0\xe0\x62"
        !          78256:             "\xe0\xe0\xe0\x10" }  },
        !          78257:       /* --- pixel bitmap for stmary600 char#83 \ntrianglerighteqslant --- */
        !          78258:       {  83,78848,                      /* character number, location */
        !          78259:          67, 7,  -25, 7,      /* topleft row,col, and botleft row,col */
        !          78260:           { 51,   92, 3,645, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          78261:             "\xe0\xe0\xe0\x12\xe0\xe0\xe0\x64\x50\xf1\xe0\xe0\xd5"
        !          78262:             "\x50\xe0\xe0\xd4\x60\xf1\xe0\xe0\xc5\x60\xf1\xe0\xe0"
        !          78263:             "\xb5\x70\xf1\xe0\xe0\xa5\x80\xe0\xe0\xa4\x90\xf1\xe0"
        !          78264:             "\xe0\x95\x90\x13\xe0\xe0\x45\xa6\xe0\xe0\x25\xa8\xe0"
        !          78265:             "\xe4\xba\xe0\xb5\xbc\xe0\x95\xb4\x19\xe0\x65\xc4\x39"
        !          78266:             "\xe0\x45\xc4\x59\xe0\x15\xd4\x79\xd5\xd4\x99\xb4\xe4"
        !          78267:             "\xb9\x85\xe4\xd9\x65\xe4\xe0\x19\x35\xe0\x14\xe0\x39"
        !          78268:             "\x15\xe0\x14\xe0\x5c\xe0\x24\xe0\x7a\xe0\x24\xe0\x99"
        !          78269:             "\xe0\x14\xe0\xb9\xd4\xe0\xbb\xb4\xe0\xae\x94\xe0\xa5"
        !          78270:             "\x2a\x64\xe0\xa4\x5a\x44\xe0\x95\x7a\x24\xe0\x95\x99"
        !          78271:             "\x14\xe0\x85\xdb\xe0\x85\xcc\xe0\x75\xb9\x14\xe0\x75"
        !          78272:             "\x99\x34\xe0\x74\x89\x54\xe0\x65\x69\x74\xe0\x65\x49"
        !          78273:             "\x94\xe0\x55\x39\xb4\xe0\x55\x19\xd4\xe0\x4e\xe0\x14"
        !          78274:             "\xe0\x4c\xe0\x34\xe0\x4a\xe0\x54\xe0\x39\xe0\x74\xe0"
        !          78275:             "\x19\xe0\x94\xd9\xe0\xb4\xba\xe0\xc4\x9b\xe0\xd4\x7d"
        !          78276:             "\xe0\x93\x14\x59\x14\xe0\x8a\x2a\x25\xe0\x6e\x08\x45"
        !          78277:             "\xe0\x49\x1c\x55\xe0\x39\x3a\x75\xe0\x19\x57\xa4\xe9"
        !          78278:             "\x75\xb5\xc9\xa2\xd5\xa9\xe0\xc5\x99\xe0\xe5\x79\xe0"
        !          78279:             "\xe0\x15\x69\xe0\xe0\x35\x49\xe0\xe0\x54\x39\xe0\xe0"
        !          78280:             "\x65\x19\xe0\xe0\x8d\xe0\xe0\x9c\xe0\xe0\xba\xe0\xe0"
        !          78281:             "\xc9\xe0\xe0\xc9\xe0\xe0\xba\xe0\xe0\xbb\xe0\xe0\xad"
        !          78282:             "\xe0\xe0\x9d\xe0\xe0\x97\x25\xe0\xe0\x95\x44\xe0\xe0"
        !          78283:             "\xb2\x55\xe0\xe0\xe0\x45\xe0\xe0\xa0\xf1\x75\xe0\xe0"
        !          78284:             "\xb0\xf1\x65\xe0\xe0\xc0\x64\xe0\xe0\xd0\xf1\x55\xe0"
        !          78285:             "\xe0\xd0\x54\xe0\xe0\xe0\x62\xe0\xe0\xe0\x10" }  },
        !          78286:       /* --- pixel bitmap for stmary600 char#84 \llfloor --- */
        !          78287:       {  84,79820,                      /* character number, location */
        !          78288:          62, 6,  -20, 6,      /* topleft row,col, and botleft row,col */
        !          78289:           { 40,   82, 2,19, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          78290:             "\x01\x02\x10\x02\x13\xff\x4c\x04\x0e\x04\x12\x27\x01"
        !          78291:             "\xff\x01\x28\x01\x26\x01" }  },
        !          78292:       /* --- pixel bitmap for stmary600 char#85 \rrfloor --- */
        !          78293:       {  85,80746,                      /* character number, location */
        !          78294:          62, 0,  -20, 0,      /* topleft row,col, and botleft row,col */
        !          78295:           { 40,   82, 2,21, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          78296:             "\x13\x02\x10\x02\x01\x00\xff\x4c\x12\x04\x0e\x04\x01"
        !          78297:             "\x27\x00\xff\x01\x28\x01\x26\x01" }  },
        !          78298:       /* --- pixel bitmap for stmary600 char#86 \llceil --- */
        !          78299:       {  86,81658,                      /* character number, location */
        !          78300:          63, 6,  -21, 6,      /* topleft row,col, and botleft row,col */
        !          78301:           { 40,   84, 2,21, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          78302:             "\x01\x26\x01\xff\x01\x28\x00\x27\x01\xff\x4e\x04\x0e"
        !          78303:             "\x04\x12\x00\x01\x02\x10\x02\x13" }  },
        !          78304:       /* --- pixel bitmap for stmary600 char#87 \rrceil --- */
        !          78305:       {  87,82579,                      /* character number, location */
        !          78306:          63, 0,  -21, 0,      /* topleft row,col, and botleft row,col */
        !          78307:           { 40,   84, 2,19, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          78308:             "\x01\x26\x01\xff\x01\x28\x01\x27\xff\x4e\x12\x04\x0e"
        !          78309:             "\x04\x13\x02\x10\x02\x01" }  },
        !          78310:       /* --- pixel bitmap for stmary600 char#88 \arrownot --- */
        !          78311:       {  88,83232,                      /* character number, location */
        !          78312:          37,30,    4,30,      /* topleft row,col, and botleft row,col */
        !          78313:           { 23,   33, 3,133, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          78314:             "\xe0\x62\x10\xf1\xe0\x45\xf1\xe0\x35\x10\xe0\x25\xe0"
        !          78315:             "\x36\xe0\x35\xe0\x35\xe0\x36\xe0\x35\xe0\x35\xe0\x36"
        !          78316:             "\xe0\x35\xe0\x35\xe0\x36\xe0\x35\x90\xf1\x85\xa0\x75"
        !          78317:             "\xe0\x36\xe0\x35\xe0\x35\xe0\x36\xe0\x35\xe0\x35\xe0"
        !          78318:             "\x36\xe0\x35\xe0\x20\xf1\x15\xe0\x3f\x15\xe0\x40\x12"
        !          78319:             "\xe0\x65" }  },
        !          78320:       /* --- pixel bitmap for stmary600 char#89 \Arrownot --- */
        !          78321:       {  89,83630,                      /* character number, location */
        !          78322:          46,33,   -5,33,      /* topleft row,col, and botleft row,col */
        !          78323:           { 17,   51, 3,143, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          78324:             "\xe3\xf2\xd4\xf1\xc5\xf1\xc4\x10\xf1\xb5\x10\xb4\x20"
        !          78325:             "\xf1\xa5\x20\xa4\x30\xf1\x95\x30\xf1\x94\x40\xf1\x85"
        !          78326:             "\x40\x84\x50\xf1\x75\x50\x74\x60\xf1\x65\x60\xf1\x64"
        !          78327:             "\x70\xf1\x55\x70\x54\x80\xf1\x45\x80\xf1\x44\x90\xf1"
        !          78328:             "\x35\x90\x34\xa0\xf1\x25\xa0\x24\xb0\xf1\x15\xb0\xf1"
        !          78329:             "\x14\xcf\x15\xcf\x24\xd3\xe4" }  },
        !          78330:       /* --- pixel bitmap for stmary600 char#90 \Mapstochar --- */
        !          78331:       {  90,84087,                      /* character number, location */
        !          78332:          46, 5,   -4, 5,      /* topleft row,col, and botleft row,col */
        !          78333:           {  6,   50, 3,27, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          78334:             "\x12\x3f\xc4\x2f\x36\x0f\xd4\x2f\x36\x0f\xc4\x20\x12"
        !          78335:             "\x31" }  },
        !          78336:       /* --- pixel bitmap for stmary600 char#91 \mapsfromchar --- */
        !          78337:       {  91,84454,                      /* character number, location */
        !          78338:          37,-11,    5,-11,    /* topleft row,col, and botleft row,col */
        !          78339:           {  6,   32, 3,19, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          78340:             "\x32\x10\xfc\x24\x0f\x36\xfc\x24\x32\x1f" }  },
        !          78341:       /* --- pixel bitmap for stmary600 char#92 \Mapsfromchar --- */
        !          78342:       {  92,84804,                      /* character number, location */
        !          78343:          46,-11,   -4,-11,    /* topleft row,col, and botleft row,col */
        !          78344:           {  6,   50, 3,27, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          78345:             "\x32\x10\xfc\x24\x0f\x36\xfd\x24\x0f\x36\xfc\x24\x32"
        !          78346:             "\x11" }  },
        !          78347:       /* --- pixel bitmap for stmary600 char#93 \leftrightarrowtriangle --- */
        !          78348:       {  93,85727,                      /* character number, location */
        !          78349:          34, 5,    7, 5,      /* topleft row,col, and botleft row,col */
        !          78350:           { 73,   27, 3,275, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          78351:             "\xe0\x64\xe0\xb4\xe0\xe0\xa6\xe0\xb6\xe0\xe0\x68\xe0"
        !          78352:             "\xb8\xe0\xe0\x2a\xe0\xba\xe0\xdb\xe0\xbb\xe0\xa8\x14"
        !          78353:             "\xe0\xb4\x18\xe0\x68\x34\xe0\xb4\x38\xe0\x37\x54\xe0"
        !          78354:             "\xb4\x57\xe8\x64\xe0\xb4\x68\xa8\x84\xe0\xb4\x88\x68"
        !          78355:             "\xa4\xe0\xb4\xa8\x38\xbe\x0e\x05\xb8\x17\xde\x0e\x05"
        !          78356:             "\xdd\xee\x0e\x05\xe6\x17\xce\x0e\x05\xc7\x38\xa4\xe0"
        !          78357:             "\xb4\xa8\x67\x94\xe0\xb4\x97\x98\x74\xe0\xb4\x78\xc7"
        !          78358:             "\x64\xe0\xb4\x67\xe0\x27\x44\xe0\xb4\x47\xe0\x58\x24"
        !          78359:             "\xe0\xb4\x28\xe0\x87\x14\xe0\xb4\x17\xe0\xbb\xe0\xbb"
        !          78360:             "\xe0\xe9\xe0\xb9\xe0\xe0\x47\xe0\xb7\xe0\xe0\x76\xe0"
        !          78361:             "\xb6\xe0\xe0\xa4\xe0\xb4\xe0\x60" }  },
        !          78362:       /* --- pixel bitmap for stmary600 char#94 \leftarrowtriangle --- */
        !          78363:       {  94,86692,                      /* character number, location */
        !          78364:          34, 5,    7, 5,      /* topleft row,col, and botleft row,col */
        !          78365:           { 73,   27, 2,83, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          78366:             "\x13\x04\x44\x05\x42\x07\x40\x09\x3e\x0b\x3d\x0c\x3b"
        !          78367:             "\x08\x02\x04\x39\x08\x04\x04\x37\x08\x06\x04\x36\x08"
        !          78368:             "\x07\x04\x34\x08\x09\x04\x32\x08\x0b\x36\x00\xff\x01"
        !          78369:             "\x06\x0d\x36\x00\x08\x0b\x36\x02\x07\x0a\x04\x35\x08"
        !          78370:             "\x08\x04\x37\x07\x07\x04\x39\x07\x05\x04\x3a\x08\x03"
        !          78371:             "\x04\x3c\x07\x02\x04\x3d\x0c\x3f\x0a\x41\x08\x42\x07"
        !          78372:             "\x44\x05\x45\x04\x32" }  },
        !          78373:       /* --- pixel bitmap for stmary600 char#95 \rightarrowtriangle --- */
        !          78374:       {  95,87574,                      /* character number, location */
        !          78375:          34, 5,    7, 5,      /* topleft row,col, and botleft row,col */
        !          78376:           { 73,   27, 2,83, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          78377:             "\x32\x04\x45\x05\x44\x07\x42\x09\x40\x0b\x3e\x0c\x3d"
        !          78378:             "\x04\x02\x08\x3b\x04\x04\x08\x39\x04\x06\x08\x37\x04"
        !          78379:             "\x07\x08\x36\x04\x09\x08\x02\x36\x0b\x08\x00\xff\x01"
        !          78380:             "\x36\x0d\x06\x00\x36\x0b\x08\x32\x04\x0a\x07\x34\x04"
        !          78381:             "\x08\x08\x35\x04\x07\x07\x37\x04\x05\x07\x39\x04\x03"
        !          78382:             "\x08\x3a\x04\x02\x07\x3c\x0c\x3d\x0a\x3f\x08\x41\x07"
        !          78383:             "\x42\x05\x44\x04\x13" }  },
        !          78384:       /* --- pixel bitmap for stmary600 char#96 \bigtriangledown --- */
        !          78385:       {  96,88342,                      /* character number, location */
        !          78386:           0, 5,  -83, 5,      /* topleft row,col, and botleft row,col */
        !          78387:           { 59,   83, 3,563, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          78388:             "\x1e\x0e\x0e\x0e\x01\x1f\x3e\x0e\x0e\x0e\x03\x1e\x0e"
        !          78389:             "\x0e\x0e\x01\x26\xe0\xe0\xe0\x36\x27\xe0\xe0\xe0\x17"
        !          78390:             "\x10\xf1\x26\xe0\xe0\xe0\x16\x20\x27\xe0\xe0\xd7\x20"
        !          78391:             "\xf1\x36\xe0\xe0\xd6\x30\x37\xe0\xe0\xb7\x30\xf1\x46"
        !          78392:             "\xe0\xe0\xb6\x40\x47\xe0\xe0\x97\x96\xe0\xe0\x96\xa7"
        !          78393:             "\xe0\xe0\x77\x50\xf1\x66\xe0\xe0\x76\x60\x67\xe0\xe0"
        !          78394:             "\x57\x60\xf1\x76\xe0\xe0\x56\x70\x77\xe0\xe0\x37\x70"
        !          78395:             "\xf1\x86\xe0\xe0\x36\x80\x87\xe0\xe0\x17\x80\xf1\x96"
        !          78396:             "\xe0\xe0\x16\x90\x97\xe0\xd7\x90\xf1\xa6\xe0\xd6\xa0"
        !          78397:             "\xa7\xe0\xb7\xa0\xf1\xb6\xe0\xb6\xb0\xb7\xe0\x97\xb0"
        !          78398:             "\xf1\xc6\xe0\x96\xc0\xc7\xe0\x77\xc0\xf1\xd6\xe0\x76"
        !          78399:             "\xd0\xd7\xe0\x57\xd0\xf1\xe6\xe0\x56\xe0\xe7\xe0\x37"
        !          78400:             "\xe0\xf1\xe0\x16\xe0\x36\xe0\x10\xe0\x17\xe0\x17\xe0"
        !          78401:             "\xe0\x36\xe0\x16\xe0\xe0\x47\xd7\xe0\x20\xf1\xe0\x36"
        !          78402:             "\xd6\xe0\x30\xe0\x37\xb7\xe0\x30\xf1\xe0\x46\xb6\xe0"
        !          78403:             "\x40\xe0\x47\x97\xe0\x40\xf1\xe0\x56\x96\xe0\x50\xe0"
        !          78404:             "\x57\x77\xe0\x50\xf1\xe0\x66\x76\xe0\x60\xe0\x67\x57"
        !          78405:             "\xe0\x60\xf1\xe0\x76\x56\xe0\x70\xe0\x77\x37\xe0\x70"
        !          78406:             "\xf1\xe0\x86\x36\xe0\x80\xe0\x87\x17\xe0\x80\xf1\xe0"
        !          78407:             "\x96\x16\xe0\x90\xe0\x9d\xe0\x90\xf2\xe0\xab\xe0\xa0"
        !          78408:             "\xf2\xe0\xb9\xe0\xb0\xf1\xe0\xc7\xe0\xc0\xe0\xd6\xe0"
        !          78409:             "\xe0\xe0\xb5\xe0\xe0\xe0\xd3\xe0\xe0" }  },
        !          78410:       /* --- pixel bitmap for stmary600 char#97 \bigtriangleup --- */
        !          78411:       {  97,89341,                      /* character number, location */
        !          78412:           0, 5,  -83, 5,      /* topleft row,col, and botleft row,col */
        !          78413:           { 59,   83, 3,563, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          78414:             "\xe0\xe3\xe0\xe0\xe0\xd5\xe0\xe0\xe0\xc6\xe0\xc0\xf1"
        !          78415:             "\xe0\xc7\xe0\xc0\xf2\xe0\xb9\xe0\xb0\xf2\xe0\xab\xe0"
        !          78416:             "\xa0\xe0\x9d\xe0\x90\xf1\xe0\x96\x16\xe0\x90\xe0\x87"
        !          78417:             "\x17\xe0\x80\xf1\xe0\x86\x36\xe0\x80\xe0\x77\x37\xe0"
        !          78418:             "\x70\xf1\xe0\x76\x56\xe0\x70\xe0\x67\x57\xe0\x60\xf1"
        !          78419:             "\xe0\x66\x76\xe0\x60\xe0\x57\x77\xe0\x50\xf1\xe0\x56"
        !          78420:             "\x96\xe0\x50\xe0\x47\x97\xe0\x40\xf1\xe0\x46\xb6\xe0"
        !          78421:             "\x40\xe0\x37\xb7\xe0\x30\xf1\xe0\x36\xd6\xe0\x30\xe0"
        !          78422:             "\x27\xd7\xe0\xe0\x46\xe0\x16\xe0\xe0\x37\xe0\x17\xe0"
        !          78423:             "\x10\xf1\xe0\x16\xe0\x36\xe0\x10\xe7\xe0\x37\xe0\xf1"
        !          78424:             "\xe6\xe0\x56\xe0\xd7\xe0\x57\xd0\xf1\xd6\xe0\x76\xd0"
        !          78425:             "\xc7\xe0\x77\xc0\xf1\xc6\xe0\x96\xc0\xb7\xe0\x97\xb0"
        !          78426:             "\xf1\xb6\xe0\xb6\xb0\xa7\xe0\xb7\xa0\xf1\xa6\xe0\xd6"
        !          78427:             "\xa0\x97\xe0\xd7\x90\xf1\x96\xe0\xe0\x16\x90\x87\xe0"
        !          78428:             "\xe0\x17\x80\xf1\x86\xe0\xe0\x36\x80\x77\xe0\xe0\x37"
        !          78429:             "\x70\xf1\x76\xe0\xe0\x56\x70\x67\xe0\xe0\x57\x60\xf1"
        !          78430:             "\x66\xe0\xe0\x76\x60\x57\xe0\xe0\x77\xa6\xe0\xe0\x96"
        !          78431:             "\x97\xe0\xe0\x97\x40\xf1\x46\xe0\xe0\xb6\x40\x37\xe0"
        !          78432:             "\xe0\xb7\x30\xf1\x36\xe0\xe0\xd6\x30\x27\xe0\xe0\xd7"
        !          78433:             "\x20\xf1\x26\xe0\xe0\xe0\x16\x20\x17\xe0\xe0\xe0\x17"
        !          78434:             "\x26\xe0\xe0\xe0\x36\x2e\x0e\x0e\x0e\x01\x1f\x3e\x0e"
        !          78435:             "\x0e\x0e\x03\x1e\x0e\x0e\x0e\x01\x10" }  },
        !          78436:       /* --- pixel bitmap for stmary600 char#98 \bigcurlyvee --- */
        !          78437:       {  98,90338,                      /* character number, location */
        !          78438:           0, 5,  -83, 5,      /* topleft row,col, and botleft row,col */
        !          78439:           { 59,   83, 3,365, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          78440:             "\x14\xe0\xe0\xe0\x74\x16\xe0\xe0\xe0\x5e\xe0\xe0\xe0"
        !          78441:             "\x1e\x03\xe0\xe0\xd9\x19\xe0\xe0\xba\x29\xe0\xe0\x99"
        !          78442:             "\x5a\xe0\xe0\x5a\x89\xe0\xe0\x39\xb9\xe0\xe0\x19\xd9"
        !          78443:             "\xe0\xd9\xe0\x18\xe0\xd8\xe0\x47\xe0\xb7\xe0\x77\xe0"
        !          78444:             "\x97\xe0\x88\xe0\x78\xe0\x98\xe0\x58\xe0\xb7\xe0\x57"
        !          78445:             "\xe0\xd7\xe0\x37\xe0\xe0\x16\xe0\x36\xe0\xe0\x27\xe0"
        !          78446:             "\x17\xe0\x10\xf1\xe0\x27\xd7\xe0\x20\xe0\x37\xb7\xe0"
        !          78447:             "\xe0\x76\xb6\xe0\xe0\x87\x97\xe0\x40\xf1\xe0\x56\x96"
        !          78448:             "\xe0\x50\xe0\x57\x77\xe0\xe0\xb6\x76\xe0\xe0\xc7\x57"
        !          78449:             "\xe0\x60\xf1\xe0\x76\x56\xe0\x70\xe0\x77\x37\xe0\x70"
        !          78450:             "\xf2\xe0\x86\x36\xe0\x80\xe0\x87\x17\xe0\x80\xf2\xe0"
        !          78451:             "\x96\x16\xe0\x90\xe0\x9d\xe0\x90\xf4\xe0\xab\xe0\xa0"
        !          78452:             "\xf7\xe0\xb9\xe0\xb0\xfe\xe0\xc7\xe0\xc0\xfb\xe0\xc7"
        !          78453:             "\xe0\xc0\xe0\xd6\xe0\xe0\xe0\xb5\xe0\xe0\xe0\xd3\xe0"
        !          78454:             "\xe0" }  },
        !          78455:       /* --- pixel bitmap for stmary600 char#99 \bigcurlywedge --- */
        !          78456:       {  99,91285,                      /* character number, location */
        !          78457:           0, 5,  -83, 5,      /* topleft row,col, and botleft row,col */
        !          78458:           { 59,   83, 2,181, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          78459:             "\x1c\x03\x37\x05\x36\x06\x1a\x00\xff\x1a\x1a\x07\x1a"
        !          78460:             "\x00\xff\x07\x19\x09\x19\x00\xff\x04\x18\x0b\x18\x00"
        !          78461:             "\x17\x0d\x17\x00\xff\x02\x17\x06\x01\x06\x17\x00\x16"
        !          78462:             "\x07\x01\x07\x16\x00\xff\x02\x16\x06\x03\x06\x16\x00"
        !          78463:             "\x15\x07\x03\x07\x15\x00\xff\x01\x15\x06\x05\x06\x15"
        !          78464:             "\x00\x14\x07\x05\x07\x28\x06\x07\x06\x27\x07\x07\x07"
        !          78465:             "\x13\x00\xff\x01\x13\x06\x09\x06\x13\x00\x12\x07\x09"
        !          78466:             "\x07\x24\x06\x0b\x06\x23\x07\x0b\x07\x11\x00\xff\x01"
        !          78467:             "\x10\x07\x0d\x07\x10\x00\x0f\x07\x0f\x07\x1e\x06\x11"
        !          78468:             "\x06\x1d\x07\x11\x07\x1b\x07\x13\x07\x19\x08\x13\x08"
        !          78469:             "\x17\x08\x15\x08\x16\x07\x17\x07\x15\x07\x19\x07\x12"
        !          78470:             "\x08\x1b\x08\x0f\x09\x1b\x09\x0d\x09\x1d\x09\x0b\x09"
        !          78471:             "\x1f\x09\x08\x0a\x21\x0a\x05\x09\x25\x09\x03\x09\x27"
        !          78472:             "\x13\x29\x11\x2b\x0e\x2f\x06\x01\x04\x31\x04\x01" }  },
        !          78473:       /* --- pixel bitmap for stmary600 char#100 \bigsqcap --- */
        !          78474:       { 100,92260,                      /* character number, location */
        !          78475:           0, 5,  -83, 5,      /* topleft row,col, and botleft row,col */
        !          78476:           { 59,   83, 2,21, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          78477:             "\x01\x39\x01\xff\x04\x3b\x00\xff\x4a\x06\x2f\x06\x01"
        !          78478:             "\x05\x30\x05\x02\x03\x32\x03\x01" }  },
        !          78479:       /* --- pixel bitmap for stmary600 char#101 \bigbox --- */
        !          78480:       { 101,93291,                      /* character number, location */
        !          78481:           0, 5,  -83, 5,      /* topleft row,col, and botleft row,col */
        !          78482:           { 59,   83, 2,21, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          78483:             "\x01\x39\x01\xff\x04\x3b\x00\xff\x46\x06\x2f\x06\x00"
        !          78484:             "\xff\x03\x3b\x01\x3a\x02\x38\x01" }  },
        !          78485:       /* --- pixel bitmap for stmary600 char#102 \bigparallel --- */
        !          78486:       { 102,94140,                      /* character number, location */
        !          78487:           0, 5,  -83, 5,      /* topleft row,col, and botleft row,col */
        !          78488:           { 27,   83, 2,19, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          78489:             "\x01\x04\x11\x04\x01\xff\x4f\x06\x0f\x06\x01\x05\x10"
        !          78490:             "\x05\x02\x03\x12\x03\x01" }  },
        !          78491:       /* --- pixel bitmap for stmary600 char#103 \biginterleave --- */
        !          78492:       { 103,95162,                      /* character number, location */
        !          78493:           0, 5,  -83, 5,      /* topleft row,col, and botleft row,col */
        !          78494:           { 48,   83, 2,27, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          78495:             "\x01\x04\x11\x04\x11\x04\x01\xff\x4f\x06\x0f\x06\x0f"
        !          78496:             "\x06\x01\x05\x10\x05\x10\x05\x02\x03\x12\x03\x12\x03"
        !          78497:             "\x01" }  },
        !          78498:       /* --- pixel bitmap for stmary600 char#104 (noname) --- */
        !          78499:       { 104,96496,                      /* character number, location */
        !          78500:           0, 5,  -116, 5,     /* topleft row,col, and botleft row,col */
        !          78501:           { 82,  116, 2,479, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          78502:             "\xff\x01\x01\x50\x01\xff\x03\x52\x01\x50\x01\x00\xff"
        !          78503:             "\x01\x01\x08\x40\x08\x01\x00\x02\x07\x40\x07\x02\x00"
        !          78504:             "\xff\x01\x02\x08\x3e\x08\x02\x00\x03\x07\x3e\x07\x03"
        !          78505:             "\x00\xff\x01\x03\x08\x3c\x08\x03\x00\x04\x07\x3c\x07"
        !          78506:             "\x04\x00\xff\x01\x04\x08\x3a\x08\x04\x00\xff\x01\x05"
        !          78507:             "\x08\x38\x08\x05\x00\x06\x07\x38\x07\x06\x00\xff\x01"
        !          78508:             "\x06\x08\x36\x08\x06\x00\x07\x07\x36\x07\x07\x00\xff"
        !          78509:             "\x01\x07\x08\x34\x08\x07\x00\x08\x07\x34\x07\x08\x00"
        !          78510:             "\xff\x01\x08\x08\x32\x08\x08\x00\x09\x07\x32\x07\x09"
        !          78511:             "\x00\xff\x01\x09\x08\x30\x08\x09\x00\x0a\x07\x30\x07"
        !          78512:             "\x0a\x00\xff\x01\x0a\x08\x2e\x08\x0a\x00\x0b\x07\x2e"
        !          78513:             "\x07\x0b\x00\xff\x01\x0b\x08\x2c\x08\x0b\x00\x0c\x07"
        !          78514:             "\x2c\x07\x0c\x00\xff\x01\x0c\x08\x2a\x08\x0c\x00\x0d"
        !          78515:             "\x07\x2a\x07\x0d\x00\xff\x01\x0d\x08\x28\x08\x0d\x00"
        !          78516:             "\x0e\x07\x28\x07\x0e\x00\xff\x01\x0e\x08\x26\x08\x0e"
        !          78517:             "\x00\x0f\x07\x26\x07\x0f\x00\xff\x01\x0f\x08\x24\x08"
        !          78518:             "\x0f\x00\xff\x01\x10\x08\x22\x08\x10\x00\x11\x07\x22"
        !          78519:             "\x07\x11\x00\xff\x01\x11\x08\x20\x08\x11\x00\x12\x07"
        !          78520:             "\x20\x07\x12\x00\xff\x01\x12\x08\x1e\x08\x12\x00\x13"
        !          78521:             "\x07\x1e\x07\x13\x00\xff\x01\x13\x08\x1c\x08\x13\x00"
        !          78522:             "\x14\x07\x1c\x07\x14\x00\xff\x01\x14\x08\x1a\x08\x14"
        !          78523:             "\x00\x15\x07\x1a\x07\x15\x00\xff\x01\x15\x08\x18\x08"
        !          78524:             "\x15\x00\x16\x07\x18\x07\x16\x00\xff\x01\x16\x08\x16"
        !          78525:             "\x08\x16\x00\x17\x07\x16\x07\x17\x00\xff\x01\x17\x08"
        !          78526:             "\x14\x08\x17\x00\x18\x07\x14\x07\x18\x00\xff\x01\x18"
        !          78527:             "\x08\x12\x08\x18\x00\x19\x07\x12\x07\x19\x00\xff\x01"
        !          78528:             "\x19\x08\x10\x08\x19\x00\x1a\x07\x10\x07\x1a\x00\xff"
        !          78529:             "\x01\x1a\x08\x0e\x08\x1a\x00\xff\x01\x1b\x08\x0c\x08"
        !          78530:             "\x1b\x00\x1c\x07\x0c\x07\x1c\x00\xff\x01\x1c\x08\x0a"
        !          78531:             "\x08\x1c\x00\x1d\x07\x0a\x07\x1d\x00\xff\x01\x1d\x08"
        !          78532:             "\x08\x08\x1d\x00\x1e\x07\x08\x07\x1e\x00\xff\x01\x1e"
        !          78533:             "\x08\x06\x08\x1e\x00\x1f\x07\x06\x07\x1f\x00\xff\x01"
        !          78534:             "\x1f\x08\x04\x08\x1f\x00\x20\x07\x04\x07\x20\x00\xff"
        !          78535:             "\x01\x20\x08\x02\x08\x20\x00\x21\x07\x02\x07\x21\x00"
        !          78536:             "\xff\x01\x21\x10\x21\x00\xff\x02\x22\x0e\x22\x00\xff"
        !          78537:             "\x02\x23\x0c\x23\x00\xff\x02\x24\x0a\x24\x00\xff\x01"
        !          78538:             "\x25\x08\x25\x00\x26\x07\x4b\x06\x4d\x04\x27" }  },
        !          78539:       /* --- pixel bitmap for stmary600 char#105 (noname) --- */
        !          78540:       { 105,97760,                      /* character number, location */
        !          78541:           0, 5,  -116, 5,     /* topleft row,col, and botleft row,col */
        !          78542:           { 82,  116, 2,479, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          78543:             "\x27\x04\x4d\x06\x4c\x07\x25\x00\xff\x01\x25\x08\x25"
        !          78544:             "\x00\xff\x02\x24\x0a\x24\x00\xff\x02\x23\x0c\x23\x00"
        !          78545:             "\xff\x02\x22\x0e\x22\x00\xff\x01\x21\x10\x21\x00\x21"
        !          78546:             "\x07\x02\x07\x21\x00\xff\x01\x20\x08\x02\x08\x20\x00"
        !          78547:             "\x20\x07\x04\x07\x20\x00\xff\x01\x1f\x08\x04\x08\x1f"
        !          78548:             "\x00\x1f\x07\x06\x07\x1f\x00\xff\x01\x1e\x08\x06\x08"
        !          78549:             "\x1e\x00\x1e\x07\x08\x07\x1e\x00\xff\x01\x1d\x08\x08"
        !          78550:             "\x08\x1d\x00\x1d\x07\x0a\x07\x1d\x00\xff\x01\x1c\x08"
        !          78551:             "\x0a\x08\x1c\x00\x1c\x07\x0c\x07\x1c\x00\xff\x01\x1b"
        !          78552:             "\x08\x0c\x08\x1b\x00\xff\x01\x1a\x08\x0e\x08\x1a\x00"
        !          78553:             "\x1a\x07\x10\x07\x1a\x00\xff\x01\x19\x08\x10\x08\x19"
        !          78554:             "\x00\x19\x07\x12\x07\x19\x00\xff\x01\x18\x08\x12\x08"
        !          78555:             "\x18\x00\x18\x07\x14\x07\x18\x00\xff\x01\x17\x08\x14"
        !          78556:             "\x08\x17\x00\x17\x07\x16\x07\x17\x00\xff\x01\x16\x08"
        !          78557:             "\x16\x08\x16\x00\x16\x07\x18\x07\x16\x00\xff\x01\x15"
        !          78558:             "\x08\x18\x08\x15\x00\x15\x07\x1a\x07\x15\x00\xff\x01"
        !          78559:             "\x14\x08\x1a\x08\x14\x00\x14\x07\x1c\x07\x14\x00\xff"
        !          78560:             "\x01\x13\x08\x1c\x08\x13\x00\x13\x07\x1e\x07\x13\x00"
        !          78561:             "\xff\x01\x12\x08\x1e\x08\x12\x00\x12\x07\x20\x07\x12"
        !          78562:             "\x00\xff\x01\x11\x08\x20\x08\x11\x00\x11\x07\x22\x07"
        !          78563:             "\x11\x00\xff\x01\x10\x08\x22\x08\x10\x00\xff\x01\x0f"
        !          78564:             "\x08\x24\x08\x0f\x00\x0f\x07\x26\x07\x0f\x00\xff\x01"
        !          78565:             "\x0e\x08\x26\x08\x0e\x00\x0e\x07\x28\x07\x0e\x00\xff"
        !          78566:             "\x01\x0d\x08\x28\x08\x0d\x00\x0d\x07\x2a\x07\x0d\x00"
        !          78567:             "\xff\x01\x0c\x08\x2a\x08\x0c\x00\x0c\x07\x2c\x07\x0c"
        !          78568:             "\x00\xff\x01\x0b\x08\x2c\x08\x0b\x00\x0b\x07\x2e\x07"
        !          78569:             "\x0b\x00\xff\x01\x0a\x08\x2e\x08\x0a\x00\x0a\x07\x30"
        !          78570:             "\x07\x0a\x00\xff\x01\x09\x08\x30\x08\x09\x00\x09\x07"
        !          78571:             "\x32\x07\x09\x00\xff\x01\x08\x08\x32\x08\x08\x00\x08"
        !          78572:             "\x07\x34\x07\x08\x00\xff\x01\x07\x08\x34\x08\x07\x00"
        !          78573:             "\x07\x07\x36\x07\x07\x00\xff\x01\x06\x08\x36\x08\x06"
        !          78574:             "\x00\x06\x07\x38\x07\x06\x00\xff\x01\x05\x08\x38\x08"
        !          78575:             "\x05\x00\xff\x01\x04\x08\x3a\x08\x04\x00\x04\x07\x3c"
        !          78576:             "\x07\x04\x00\xff\x01\x03\x08\x3c\x08\x03\x00\x03\x07"
        !          78577:             "\x3e\x07\x03\x00\xff\x01\x02\x08\x3e\x08\x02\x00\x02"
        !          78578:             "\x07\x40\x07\x02\x00\xff\x01\x01\x08\x40\x08\x01\x00"
        !          78579:             "\x01\x50\x01\xff\x03\x52\xff\x01\x01\x50\x01" }  },
        !          78580:       /* --- pixel bitmap for stmary600 char#106 (noname) --- */
        !          78581:       { 106,99022,                      /* character number, location */
        !          78582:           0, 5,  -116, 5,     /* topleft row,col, and botleft row,col */
        !          78583:           { 82,  116, 2,259, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          78584:             "\x01\x05\x46\x05\x02\x06\x44\x06\x01\x09\x40\x13\x3e"
        !          78585:             "\x16\x3a\x0c\x01\x0c\x38\x0c\x03\x0c\x36\x0c\x05\x0c"
        !          78586:             "\x34\x0c\x08\x0b\x32\x0b\x0b\x0b\x30\x0b\x0e\x0a\x2e"
        !          78587:             "\x0a\x11\x0a\x2c\x0a\x13\x0a\x2a\x0a\x15\x0a\x28\x0a"
        !          78588:             "\x17\x0a\x26\x0a\x19\x0a\x24\x0a\x1b\x0a\x22\x0a\x1d"
        !          78589:             "\x0a\x20\x0a\x1f\x09\x20\x09\x21\x09\x1e\x09\x23\x09"
        !          78590:             "\x1c\x09\x25\x08\x1c\x08\x27\x08\x1a\x08\x28\x09\x18"
        !          78591:             "\x09\x29\x08\x18\x08\x15\x00\xff\x01\x16\x08\x16\x08"
        !          78592:             "\x16\x00\xff\x01\x17\x08\x14\x08\x17\x00\xff\x01\x18"
        !          78593:             "\x08\x12\x08\x18\x00\xff\x01\x19\x08\x10\x08\x19\x00"
        !          78594:             "\xff\x01\x1a\x08\x0e\x08\x1a\x00\xff\x01\x1b\x08\x0c"
        !          78595:             "\x08\x1b\x00\xff\x01\x1c\x08\x0a\x08\x1c\x00\x1d\x07"
        !          78596:             "\x0a\x07\x1d\x00\xff\x01\x1d\x08\x08\x08\x1d\x00\x1e"
        !          78597:             "\x07\x08\x07\x1e\x00\xff\x01\x1e\x08\x06\x08\x1e\x00"
        !          78598:             "\xff\x01\x1f\x07\x06\x07\x1f\x00\xff\x01\x1f\x08\x04"
        !          78599:             "\x08\x1f\x00\xff\x01\x20\x07\x04\x07\x20\x00\xff\x01"
        !          78600:             "\x20\x08\x02\x08\x20\x00\xff\x01\x21\x07\x02\x07\x21"
        !          78601:             "\x00\xff\x01\x21\x10\x21\x00\xff\x05\x22\x0e\x22\x00"
        !          78602:             "\xff\x06\x23\x0c\x23\x00\xff\x09\x24\x0a\x24\x00\xff"
        !          78603:             "\x20\x25\x08\x25\x00\x26\x07\x4b\x06\x4d\x04\x27" }  },
        !          78604:       /* --- pixel bitmap for stmary600 char#107 (noname) --- */
        !          78605:       { 107,100203,                     /* character number, location */
        !          78606:           0, 5,  -116, 5,     /* topleft row,col, and botleft row,col */
        !          78607:           { 82,  116, 2,259, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          78608:             "\x27\x04\x4d\x06\x4c\x07\x25\x00\xff\x20\x25\x08\x25"
        !          78609:             "\x00\xff\x09\x24\x0a\x24\x00\xff\x06\x23\x0c\x23\x00"
        !          78610:             "\xff\x05\x22\x0e\x22\x00\xff\x01\x21\x10\x21\x00\xff"
        !          78611:             "\x01\x21\x07\x02\x07\x21\x00\xff\x01\x20\x08\x02\x08"
        !          78612:             "\x20\x00\xff\x01\x20\x07\x04\x07\x20\x00\xff\x01\x1f"
        !          78613:             "\x08\x04\x08\x1f\x00\xff\x01\x1f\x07\x06\x07\x1f\x00"
        !          78614:             "\xff\x01\x1e\x08\x06\x08\x1e\x00\x1e\x07\x08\x07\x1e"
        !          78615:             "\x00\xff\x01\x1d\x08\x08\x08\x1d\x00\x1d\x07\x0a\x07"
        !          78616:             "\x1d\x00\xff\x01\x1c\x08\x0a\x08\x1c\x00\xff\x01\x1b"
        !          78617:             "\x08\x0c\x08\x1b\x00\xff\x01\x1a\x08\x0e\x08\x1a\x00"
        !          78618:             "\xff\x01\x19\x08\x10\x08\x19\x00\xff\x01\x18\x08\x12"
        !          78619:             "\x08\x18\x00\xff\x01\x17\x08\x14\x08\x17\x00\xff\x01"
        !          78620:             "\x16\x08\x16\x08\x16\x00\x15\x08\x18\x08\x29\x09\x18"
        !          78621:             "\x09\x28\x08\x1a\x08\x27\x08\x1c\x08\x25\x09\x1c\x09"
        !          78622:             "\x23\x09\x1e\x09\x21\x09\x20\x09\x1f\x0a\x20\x0a\x1d"
        !          78623:             "\x0a\x22\x0a\x1b\x0a\x24\x0a\x19\x0a\x26\x0a\x17\x0a"
        !          78624:             "\x28\x0a\x15\x0a\x2a\x0a\x13\x0a\x2c\x0a\x11\x0a\x2e"
        !          78625:             "\x0a\x0e\x0b\x30\x0b\x0b\x0b\x32\x0b\x08\x0c\x34\x0c"
        !          78626:             "\x05\x0c\x36\x0c\x03\x0c\x38\x0c\x01\x0c\x3a\x16\x3e"
        !          78627:             "\x13\x40\x09\x01\x06\x44\x06\x02\x05\x46\x05\x01" }  },
        !          78628:       /* --- pixel bitmap for stmary600 char#108 (noname) --- */
        !          78629:       { 108,101405,                     /* character number, location */
        !          78630:           0, 5,  -116, 5,     /* topleft row,col, and botleft row,col */
        !          78631:           { 82,  116, 2,23, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          78632:             "\xff\x01\x01\x50\x01\xff\x04\x52\x00\xff\x6a\x07\x44"
        !          78633:             "\x07\x01\x05\x46\x05\x03\x04\x47\x04\x01" }  },
        !          78634:       /* --- pixel bitmap for stmary600 char#109 (noname) --- */
        !          78635:       { 109,102815,                     /* character number, location */
        !          78636:           0, 5,  -116, 5,     /* topleft row,col, and botleft row,col */
        !          78637:           { 82,  116, 2,23, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          78638:             "\xff\x01\x01\x50\x01\xff\x04\x52\x00\xff\x65\x07\x44"
        !          78639:             "\x07\x00\xff\x04\x52\x01\x50\x03\x4f\x01" }  },
        !          78640:       /* --- pixel bitmap for stmary600 char#110 (noname) --- */
        !          78641:       { 110,103963,                     /* character number, location */
        !          78642:           0, 5,  -116, 5,     /* topleft row,col, and botleft row,col */
        !          78643:           { 36,  116, 2,21, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          78644:             "\xff\x01\x01\x05\x18\x05\x01\xff\x6f\x07\x16\x07\x01"
        !          78645:             "\x05\x18\x05\x03\x04\x19\x04\x01" }  },
        !          78646:       /* --- pixel bitmap for stmary600 char#111 (noname) --- */
        !          78647:       { 111,105224,                     /* character number, location */
        !          78648:           0, 5,  -116, 5,     /* topleft row,col, and botleft row,col */
        !          78649:           { 67,  116, 2,29, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          78650:             "\xff\x01\x01\x05\x19\x05\x19\x05\x01\xff\x6f\x07\x17"
        !          78651:             "\x07\x17\x07\x01\x05\x19\x05\x19\x05\x03\x04\x1a\x04"
        !          78652:             "\x1a\x04\x01" }  },
        !          78653:       /* --- pixel bitmap for stmary600 char#112 \bignplus --- */
        !          78654:       { 112,106724,                     /* character number, location */
        !          78655:           0, 5,  -83, 5,      /* topleft row,col, and botleft row,col */
        !          78656:           { 59,   83, 2,169, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          78657:             "\x18\x0b\x2c\x13\x26\x17\x22\x1b\x1e\x1f\x1a\x23\x17"
        !          78658:             "\x0e\x09\x0e\x15\x0b\x11\x0b\x13\x0a\x15\x0a\x11\x09"
        !          78659:             "\x19\x09\x0f\x08\x1d\x08\x0d\x08\x1f\x08\x0b\x08\x21"
        !          78660:             "\x08\x0a\x07\x23\x07\x09\x07\x25\x07\x04\x00\xff\x01"
        !          78661:             "\x03\x07\x27\x07\x03\x00\x02\x07\x29\x07\x02\x00\xff"
        !          78662:             "\x01\x02\x06\x2b\x06\x02\x00\x01\x07\x2b\x07\x01\x00"
        !          78663:             "\xff\x01\x01\x06\x2d\x06\x01\x07\x2d\x07\x00\xff\x01"
        !          78664:             "\x06\x2f\x06\x00\x06\x17\x01\x17\x06\x00\xff\x01\x06"
        !          78665:             "\x15\x05\x15\x06\x00\xff\x0b\x06\x15\x06\x14\x06\x00"
        !          78666:             "\x06\x07\x21\x07\x06\x00\xff\x02\x06\x06\x23\x06\x06"
        !          78667:             "\x00\x06\x07\x21\x07\x0c\x08\x1f\x08\x06\x00\xff\x0b"
        !          78668:             "\x06\x15\x06\x14\x06\x00\x06\x15\x05\x15\x0c\x16\x03"
        !          78669:             "\x16\x06\x00\xff\x14\x06\x2f\x06\x01\x04\x31\x04\x01" }  },
        !          78670:       /* --- pixel bitmap for stmary600 char#113 (noname) --- */
        !          78671:       { 113,108032,                     /* character number, location */
        !          78672:           3,17,  -95,17,      /* topleft row,col, and botleft row,col */
        !          78673:           { 26,   98, 2,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          78674:             "\xff\x03\x00\x1a\x00\xff\x59\x04\x07\x04\x0b\xff\x03"
        !          78675:             "\x1a" }  },
        !          78676:       /* --- pixel bitmap for stmary600 char#114 (noname) --- */
        !          78677:       { 114,109333,                     /* character number, location */
        !          78678:           3,18,  -145,18,     /* topleft row,col, and botleft row,col */
        !          78679:           { 29,  148, 2,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          78680:             "\xff\x04\x00\x1d\x00\xff\x89\x05\x07\x05\x0c\xff\x04"
        !          78681:             "\x1d" }  },
        !          78682:       /* --- pixel bitmap for stmary600 char#115 (noname) --- */
        !          78683:       { 115,110857,                     /* character number, location */
        !          78684:           3,21,  -195,21,     /* topleft row,col, and botleft row,col */
        !          78685:           { 31,  198, 2,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          78686:             "\xff\x04\x00\x1f\x00\xff\xbb\x05\x08\x05\x0d\xff\x04"
        !          78687:             "\x1f" }  },
        !          78688:       /* --- pixel bitmap for stmary600 char#116 (noname) --- */
        !          78689:       { 116,112633,                     /* character number, location */
        !          78690:           3,23,  -245,23,     /* topleft row,col, and botleft row,col */
        !          78691:           { 35,  248, 2,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          78692:             "\xff\x05\x00\x23\x00\xff\xeb\x06\x08\x06\x0f\xff\x05"
        !          78693:             "\x23" }  },
        !          78694:       /* --- pixel bitmap for stmary600 char#117 (noname) --- */
        !          78695:       { 117,114522,                     /* character number, location */
        !          78696:           2,27,  -147,27,     /* topleft row,col, and botleft row,col */
        !          78697:           { 37,  149, 2,11, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          78698:             "\xff\x05\x00\x25\x00\xff\x8e\x06\x0a\x07\x0e" }  },
        !          78699:       /* --- pixel bitmap for stmary600 char#118 (noname) --- */
        !          78700:       { 118,115936,                     /* character number, location */
        !          78701:           4,27,  -145,27,     /* topleft row,col, and botleft row,col */
        !          78702:           { 37,  149, 2,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          78703:             "\xff\x8e\x00\x06\x0a\x07\x0e\xff\x05\x25" }  },
        !          78704:       /* --- pixel bitmap for stmary600 char#119 (noname) --- */
        !          78705:       { 119,117360,                     /* character number, location */
        !          78706:           2,27,  -51,27,      /* topleft row,col, and botleft row,col */
        !          78707:           { 23,   53, 2, 6, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          78708:             "\xff\x34\x00\x06\x0a\x07" }  },
        !          78709:       /* --- pixel bitmap for stmary600 char#120 (noname) --- */
        !          78710:       { 120,118490,                     /* character number, location */
        !          78711:           0, 5,  -116, 5,     /* topleft row,col, and botleft row,col */
        !          78712:           { 82,  116, 2,201, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          78713:             "\x22\x0e\x40\x16\x39\x1c\x33\x22\x2e\x26\x2a\x2a\x26"
        !          78714:             "\x2e\x23\x12\x0c\x12\x21\x0f\x14\x0f\x1e\x0e\x1a\x0e"
        !          78715:             "\x1b\x0d\x1e\x0d\x19\x0c\x22\x0c\x17\x0b\x26\x0b\x15"
        !          78716:             "\x0b\x28\x0b\x13\x0b\x2a\x0b\x12\x09\x2e\x09\x11\x09"
        !          78717:             "\x30\x09\x0f\x09\x32\x09\x0d\x09\x34\x09\x0c\x08\x36"
        !          78718:             "\x08\x0b\x09\x36\x09\x0a\x08\x38\x08\x09\x08\x3a\x08"
        !          78719:             "\x07\x09\x3a\x09\x06\x08\x3c\x08\x06\x07\x3e\x07\x03"
        !          78720:             "\x00\xff\x01\x02\x08\x3e\x08\x02\x00\x02\x07\x40\x07"
        !          78721:             "\x02\x00\xff\x01\x01\x08\x40\x08\x01\x00\xff\x01\x01"
        !          78722:             "\x07\x42\x07\x01\x08\x42\x10\x20\x02\x20\x08\x00\xff"
        !          78723:             "\x01\x07\x1f\x06\x1f\x07\x00\xff\x14\x07\x1f\x07\x1e"
        !          78724:             "\x07\x00\xff\x01\x07\x08\x34\x08\x07\x00\xff\x02\x07"
        !          78725:             "\x07\x36\x07\x07\x00\x07\x08\x34\x08\x0e\x09\x32\x09"
        !          78726:             "\x07\x00\xff\x14\x07\x1f\x07\x1e\x07\x00\x07\x1f\x06"
        !          78727:             "\x1f\x0e\x20\x04\x20\x07\x00\xff\x19\x07\x44\x07\xff"
        !          78728:             "\x01\x01\x05\x46\x05\x01" }  },
        !          78729:       /* --- pixel bitmap for stmary600 char#121 (noname) --- */
        !          78730:       { 121,119987,                     /* character number, location */
        !          78731:           3, 1,  -95, 1,      /* topleft row,col, and botleft row,col */
        !          78732:           { 26,   98, 2,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          78733:             "\xff\x03\x00\x1a\xff\x59\x0b\x04\x07\x04\x00\xff\x03"
        !          78734:             "\x1a" }  },
        !          78735:       /* --- pixel bitmap for stmary600 char#122 (noname) --- */
        !          78736:       { 122,121275,                     /* character number, location */
        !          78737:           3, 1,  -145, 1,     /* topleft row,col, and botleft row,col */
        !          78738:           { 29,  148, 2,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          78739:             "\xff\x04\x00\x1d\xff\x89\x0c\x05\x07\x05\x00\xff\x04"
        !          78740:             "\x1d" }  },
        !          78741:       /* --- pixel bitmap for stmary600 char#123 (noname) --- */
        !          78742:       { 123,122786,                     /* character number, location */
        !          78743:           3, 1,  -195, 1,     /* topleft row,col, and botleft row,col */
        !          78744:           { 31,  198, 2,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          78745:             "\xff\x04\x00\x1f\xff\xbb\x0d\x05\x08\x05\x00\xff\x04"
        !          78746:             "\x1f" }  },
        !          78747:       /* --- pixel bitmap for stmary600 char#124 (noname) --- */
        !          78748:       { 124,124523,                     /* character number, location */
        !          78749:           3, 0,  -245, 0,     /* topleft row,col, and botleft row,col */
        !          78750:           { 35,  248, 2,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          78751:             "\xff\x05\x00\x23\xff\xeb\x0f\x06\x08\x06\x00\xff\x05"
        !          78752:             "\x23" }  },
        !          78753:       /* --- pixel bitmap for stmary600 char#125 (noname) --- */
        !          78754:       { 125,126399,                     /* character number, location */
        !          78755:           2, 1,  -147, 1,     /* topleft row,col, and botleft row,col */
        !          78756:           { 37,  149, 2,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          78757:             "\xff\x05\x00\x25\xff\x8e\x0e\x07\x0a\x06" }  },
        !          78758:       /* --- pixel bitmap for stmary600 char#126 (noname) --- */
        !          78759:       { 126,127894,                     /* character number, location */
        !          78760:           4, 1,  -145, 1,     /* topleft row,col, and botleft row,col */
        !          78761:           { 37,  149, 2,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          78762:             "\xff\x8e\x0e\x07\x0a\x06\x00\xff\x05\x25" }  },
        !          78763:       /* --- pixel bitmap for stmary600 char#127 (noname) --- */
        !          78764:       { 127,129305,                     /* character number, location */
        !          78765:           2,15,  -51,15,      /* topleft row,col, and botleft row,col */
        !          78766:           { 23,   53, 2, 6, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          78767:             "\xff\x34\x00\x07\x0a\x06" }  },
        !          78768:       /* --- trailer  --- */
        !          78769:       { -99, -999,  0,0,0,0, { 0,0,0,0, (pixbyte *)"\0" }  }
        !          78770:    } ;
        !          78771: 
        !          78772: 
1.3       albertel 78773: /* ------------------------------------------------------------------------
1.5     ! raeburn  78774: font sizes 0-10 for wncyr10
1.3       albertel 78775: ------------------------------------------------------------------------ */
                   78776: 
                   78777: /* --- size=0 for .83gf ---
                   78778:  * mf '\mode=eighthre;  input wncyr10'
                   78779:  * --------------------------------------------------------------------- */
                   78780: /* --- fontdef for wncyr83 --- */
                   78781: static	chardef  wncyr83[] =
                   78782:    {
                   78783:       /* --- pixel bitmap for wncyr83 char#0 Nj --- */
                   78784:       {   0, 1901,                      /* character number, location */
                   78785:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   78786:           { 11,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   78787:             "\xe7\x10\x82\x10\xfc\x27\x64\x21\x0a\xf1\x7c" }  },
                   78788:       /* --- pixel bitmap for wncyr83 char#1 Lj --- */
                   78789:       {   1, 1944,                      /* character number, location */
                   78790:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   78791:           { 10,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   78792:             "\x7e\x90\x40\x02\x79\x26\x9b\x28\xe2\x7c" }  },
                   78793:       /* --- pixel bitmap for wncyr83 char#2 Dzh --- */
                   78794:       {   2, 1987,                      /* character number, location */
                   78795:           8, 0,   -2, 0,      /* topleft row,col, and botleft row,col */
                   78796:           {  8,   10, 3,17, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   78797:             "\x03\x23\xf5\x11\x41\x18\xf1\x41\x32" }  },
                   78798:       /* --- pixel bitmap for wncyr83 char#3 \`E --- */
                   78799:       {   3, 2028,                      /* character number, location */
                   78800:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   78801:           {  6,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   78802:             "\x4f\x94\xfe\x67\x18\x39" }  },
                   78803:       /* --- pixel bitmap for wncyr83 char#4 \=I --- */
                   78804:       {   4, 2328,                      /* character number, location */
                   78805:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   78806:           {  3,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   78807:             "\x97\x24\xe9" }  },
                   78808:       /* --- pixel bitmap for wncyr83 char#5 \=E --- */
                   78809:       {   5, 2063,                      /* character number, location */
                   78810:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   78811:           {  6,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   78812:             "\xbc\x58\xfe\x79\x28\x72" }  },
                   78813:       /* --- pixel bitmap for wncyr83 char#6 Dj --- */
                   78814:       {   6, 2351,                      /* character number, location */
                   78815:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   78816:           {  9,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   78817:             "\x7f\x92\x20\xc0\x87\x10\x21\x42\x7f" }  },
                   78818:       /* --- pixel bitmap for wncyr83 char#7 \'C --- */
                   78819:       {   7, 2384,                      /* character number, location */
                   78820:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   78821:           {  7,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   78822:             "\xbf\x12\x81\x47\x24\x12\xdd" }  },
                   78823:       /* --- pixel bitmap for wncyr83 char#8 nj --- */
                   78824:       {   8, 3368,                      /* character number, location */
                   78825:           5, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   78826:           {  8,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   78827:             "\x1b\x0a\xfe\x8a\x7b" }  },
                   78828:       /* --- pixel bitmap for wncyr83 char#9 lj --- */
                   78829:       {   9, 3395,                      /* character number, location */
                   78830:           5, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   78831:           {  8,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   78832:             "\x3e\x14\xf4\x96\xfa" }  },
                   78833:       /* --- pixel bitmap for wncyr83 char#10 dzh --- */
                   78834:       {  10, 3422,                      /* character number, location */
                   78835:           5, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
                   78836:           {  5,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   78837:             "\x5b\x29\xf5\x09" }  },
                   78838:       /* --- pixel bitmap for wncyr83 char#11 \`e --- */
                   78839:       {  11, 3449,                      /* character number, location */
                   78840:           5, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   78841:           {  5,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   78842:             "\xaf\xff\xe9\x00" }  },
                   78843:       /* --- pixel bitmap for wncyr83 char#12 \=\i --- */
                   78844:       {  12, 2493,                      /* character number, location */
                   78845:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   78846:           {  3,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   78847:             "\x02\x30\x49\x07" }  },
                   78848:       /* --- pixel bitmap for wncyr83 char#13 \=e --- */
                   78849:       {  13, 3470,                      /* character number, location */
                   78850:           5, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   78851:           {  5,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   78852:             "\xfe\xfe\xec\x00" }  },
                   78853:       /* --- pixel bitmap for wncyr83 char#14 dj --- */
                   78854:       {  14, 2514,                      /* character number, location */
                   78855:           8, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   78856:           {  4,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   78857:             "\xf3\xe2\x2a\xf2\x48" }  },
                   78858:       /* --- pixel bitmap for wncyr83 char#15 \'c --- */
                   78859:       {  15, 2543,                      /* character number, location */
                   78860:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   78861:           {  7,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   78862:             "\x83\x9f\xc0\x23\x12\x89\xee" }  },
                   78863:       /* --- pixel bitmap for wncyr83 char#16 Yu --- */
                   78864:       {  16, 2098,                      /* character number, location */
                   78865:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   78866:           { 12,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   78867:             "\x8f\x43\x44\x24\x48\x82\x3c\x48\x82\x44\xf4\x38" }  },
                   78868:       /* --- pixel bitmap for wncyr83 char#17 Zh --- */
                   78869:       {  17, 1850,                      /* character number, location */
                   78870:           8,-1,    0,-1,      /* topleft row,col, and botleft row,col */
                   78871:           { 13,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   78872:             "\xe3\x58\x08\x11\x11\xfc\x41\x44\x84\xd0\x10\x1e\xc7" }  },
                   78873:       /* --- pixel bitmap for wncyr83 char#18 \u I --- */
                   78874:       {  18, 2147,                      /* character number, location */
                   78875:          10, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   78876:           {  9,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   78877:             "\xfe\x00\x1c\x17\x26\x4a\x90\x20\x45\x86\x8e\x03" }  },
                   78878:       /* --- pixel bitmap for wncyr83 char#19 \"E --- */
                   78879:       {  19, 2419,                      /* character number, location */
                   78880:          10, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   78881:           {  8,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   78882:             "\x28\x00\x7f\x42\x62\x3e\xa2\x82\xc2\xff" }  },
                   78883:       /* --- pixel bitmap for wncyr83 char#20 (noname) --- */
                   78884:       {  20, 2194,                      /* character number, location */
                   78885:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   78886:           {  7,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   78887:             "\x47\x31\x89\x44\xa1\x60\x10" }  },
                   78888:       /* --- pixel bitmap for wncyr83 char#21 (noname) --- */
                   78889:       {  21, 2229,                      /* character number, location */
                   78890:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   78891:           {  9,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   78892:             "\x38\x50\x10\xf9\x5f\x94\x08\x0a\x1c" }  },
                   78893:       /* --- pixel bitmap for wncyr83 char#22 \Dz --- */
                   78894:       {  22, 2266,                      /* character number, location */
                   78895:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   78896:           {  4,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   78897:             "\x9e\x61\x8c\x79" }  },
                   78898:       /* --- pixel bitmap for wncyr83 char#23 Ya --- */
                   78899:       {  23, 2293,                      /* character number, location */
                   78900:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   78901:           {  8,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   78902:             "\xfc\x42\x42\x7c\x42\x42\x42\xe3" }  },
                   78903:       /* --- pixel bitmap for wncyr83 char#24 yu --- */
                   78904:       {  24, 3491,                      /* character number, location */
                   78905:           5, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   78906:           {  7,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   78907:             "\xbb\xe2\xb1\xb8\x03" }  },
                   78908:       /* --- pixel bitmap for wncyr83 char#25 zh --- */
                   78909:       {  25, 3335,                      /* character number, location */
                   78910:           5, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   78911:           {  7,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   78912:             "\x5d\x15\x67\xdd\x05" }  },
                   78913:       /* --- pixel bitmap for wncyr83 char#26 \u\i --- */
                   78914:       {  26, 3522,                      /* character number, location */
                   78915:           7, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   78916:           {  6,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   78917:             "\x1e\x30\x6b\x92\x35\x03" }  },
                   78918:       /* --- pixel bitmap for wncyr83 char#27 \"e --- */
                   78919:       {  27, 2574,                      /* character number, location */
                   78920:           5, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   78921:           {  5,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   78922:             "\xee\x87\xe8\x00" }  },
                   78923:       /* --- pixel bitmap for wncyr83 char#28 (noname) --- */
                   78924:       {  28, 3553,                      /* character number, location */
                   78925:           5, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   78926:           {  4,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   78927:             "\xab\x66\x04" }  },
                   78928:       /* --- pixel bitmap for wncyr83 char#29 (noname) --- */
                   78929:       {  29, 3574,                      /* character number, location */
                   78930:           5, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   78931:           {  6,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   78932:             "\x8c\xf4\x4b\x0c" }  },
                   78933:       /* --- pixel bitmap for wncyr83 char#30 \dz --- */
                   78934:       {  30, 3595,                      /* character number, location */
                   78935:           5, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   78936:           {  4,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   78937:             "\x16\x86\x07" }  },
                   78938:       /* --- pixel bitmap for wncyr83 char#31 ya --- */
                   78939:       {  31, 3612,                      /* character number, location */
                   78940:           5, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   78941:           {  5,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   78942:             "\x5e\x39\xf5\x01" }  },
                   78943:       /* --- pixel bitmap for wncyr83 char#32 \cyddot --- */
                   78944:       {  32, 1665,                      /* character number, location */
                   78945:           9, 1,    8, 1,      /* topleft row,col, and botleft row,col */
                   78946:           {  3,    1, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   78947:             "\x05" }  },
                   78948:       /* --- pixel bitmap for wncyr83 char#33 (noname) --- */
                   78949:       {  33, 1051,                      /* character number, location */
                   78950:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   78951:           {  1,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   78952:             "\x9f" }  },
                   78953:       /* --- pixel bitmap for wncyr83 char#34 (noname) --- */
                   78954:       {  34, 1676,                      /* character number, location */
                   78955:           8, 0,    5, 0,      /* topleft row,col, and botleft row,col */
                   78956:           {  3,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   78957:             "\x6d\x01" }  },
                   78958:       /* --- pixel bitmap for wncyr83 char#35 (noname) --- */
                   78959:       {  35, 2460,                      /* character number, location */
                   78960:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   78961:           {  8,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   78962:             "\x0e\x7e\x46\x04\x7c\x84\x84\x84\x7e" }  },
                   78963:       /* --- pixel bitmap for wncyr83 char#36 (noname) --- */
                   78964:       {  36, 1695,                      /* character number, location */
                   78965:           7, 0,    6, 0,      /* topleft row,col, and botleft row,col */
                   78966:           {  5,    1, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   78967:             "\x1f" }  },
                   78968:       /* --- pixel bitmap for wncyr83 char#37 (noname) --- */
                   78969:       {  37, 1072,                      /* character number, location */
                   78970:           9, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   78971:           {  7,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   78972:             "\xc2\x5e\xa9\xa2\x40\x51\xa5\xd2\x10" }  },
                   78973:       /* --- pixel bitmap for wncyr83 char#38 (noname) --- */
                   78974:       {  38, 1704,                      /* character number, location */
                   78975:           8, 2,    6, 2,      /* topleft row,col, and botleft row,col */
                   78976:           {  2,    2, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   78977:             "\x06" }  },
                   78978:       /* --- pixel bitmap for wncyr83 char#39 (noname) --- */
                   78979:       {  39, 1129,                      /* character number, location */
                   78980:           8, 1,    5, 1,      /* topleft row,col, and botleft row,col */
                   78981:           {  1,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   78982:             "\x07" }  },
                   78983:       /* --- pixel bitmap for wncyr83 char#40 (noname) --- */
                   78984:       {  40, 1142,                      /* character number, location */
                   78985:           9, 0,   -4, 0,      /* topleft row,col, and botleft row,col */
                   78986:           {  3,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   78987:             "\x94\x92\x24\x89\x44" }  },
                   78988:       /* --- pixel bitmap for wncyr83 char#41 (noname) --- */
                   78989:       {  41, 1175,                      /* character number, location */
                   78990:           9, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   78991:           {  3,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   78992:             "\x91\x48\x92\xa4\x14" }  },
                   78993:       /* --- pixel bitmap for wncyr83 char#42 (noname) --- */
                   78994:       {  42, 1208,                      /* character number, location */
                   78995:           9, 1,    4, 1,      /* topleft row,col, and botleft row,col */
                   78996:           {  3,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   78997:             "\xba\x2e" }  },
                   78998:       /* --- pixel bitmap for wncyr83 char#43 (noname) --- */
                   78999:       {  43, 2593,                      /* character number, location */
                   79000:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   79001:           {  5,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79002:             "\xe2\x08\xe1\xa5\x7c" }  },
                   79003:       /* --- pixel bitmap for wncyr83 char#44 (noname) --- */
                   79004:       {  44, 1225,                      /* character number, location */
                   79005:           1, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   79006:           {  1,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79007:             "\x07" }  },
                   79008:       /* --- pixel bitmap for wncyr83 char#45 (noname) --- */
                   79009:       {  45, 1238,                      /* character number, location */
                   79010:           3, 0,    2, 0,      /* topleft row,col, and botleft row,col */
                   79011:           {  3,    1, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79012:             "\x07" }  },
                   79013:       /* --- pixel bitmap for wncyr83 char#46 (noname) --- */
                   79014:       {  46, 1247,                      /* character number, location */
                   79015:           1, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   79016:           {  1,    1, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79017:             "\x01" }  },
                   79018:       /* --- pixel bitmap for wncyr83 char#47 (noname) --- */
                   79019:       {  47, 1256,                      /* character number, location */
                   79020:           9, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   79021:           {  3,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79022:             "\x24\x25\x49\x4a\x02" }  },
                   79023:       /* --- pixel bitmap for wncyr83 char#48 (noname) --- */
                   79024:       {  48, 1415,                      /* character number, location */
                   79025:           7, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   79026:           {  5,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79027:             "\x2e\xc6\x18\xa3\x03" }  },
                   79028:       /* --- pixel bitmap for wncyr83 char#49 (noname) --- */
                   79029:       {  49, 1446,                      /* character number, location */
                   79030:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   79031:           {  3,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79032:             "\x9a\x24\x1d" }  },
                   79033:       /* --- pixel bitmap for wncyr83 char#50 (noname) --- */
                   79034:       {  50, 1467,                      /* character number, location */
                   79035:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   79036:           {  4,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79037:             "\x96\x88\xa4\x0f" }  },
                   79038:       /* --- pixel bitmap for wncyr83 char#51 (noname) --- */
                   79039:       {  51, 1492,                      /* character number, location */
                   79040:           7, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   79041:           {  5,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79042:             "\x44\x21\x06\xa3\x03" }  },
                   79043:       /* --- pixel bitmap for wncyr83 char#52 (noname) --- */
                   79044:       {  52, 1517,                      /* character number, location */
                   79045:           7, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   79046:           {  5,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79047:             "\xcc\xad\x8f\x10\x07" }  },
                   79048:       /* --- pixel bitmap for wncyr83 char#53 (noname) --- */
                   79049:       {  53, 1540,                      /* character number, location */
                   79050:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   79051:           {  4,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79052:             "\x17\x71\x98\x06" }  },
                   79053:       /* --- pixel bitmap for wncyr83 char#54 (noname) --- */
                   79054:       {  54, 1563,                      /* character number, location */
                   79055:           7, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   79056:           {  5,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79057:             "\x4c\x84\x17\xa3\x03" }  },
                   79058:       /* --- pixel bitmap for wncyr83 char#55 (noname) --- */
                   79059:       {  55, 1588,                      /* character number, location */
                   79060:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   79061:           {  4,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79062:             "\x9f\x24\x22\x02" }  },
                   79063:       /* --- pixel bitmap for wncyr83 char#56 (noname) --- */
                   79064:       {  56, 1611,                      /* character number, location */
                   79065:           7, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   79066:           {  5,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79067:             "\x44\x29\x17\xa3\x03" }  },
                   79068:       /* --- pixel bitmap for wncyr83 char#57 (noname) --- */
                   79069:       {  57, 1640,                      /* character number, location */
                   79070:           7, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   79071:           {  5,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79072:             "\x2e\x46\x0f\x91\x01" }  },
                   79073:       /* --- pixel bitmap for wncyr83 char#58 (noname) --- */
                   79074:       {  58, 1287,                      /* character number, location */
                   79075:           5, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   79076:           {  1,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79077:             "\x11" }  },
                   79078:       /* --- pixel bitmap for wncyr83 char#59 (noname) --- */
                   79079:       {  59, 1300,                      /* character number, location */
                   79080:           5, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   79081:           {  1,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79082:             "\x71" }  },
                   79083:       /* --- pixel bitmap for wncyr83 char#60 < --- */
                   79084:       {  60, 1715,                      /* character number, location */
                   79085:           5, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   79086:           {  5,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79087:             "\xd4\x3d\x47\x01" }  },
                   79088:       /* --- pixel bitmap for wncyr83 char#61 (noname) --- */
                   79089:       {  61, 2620,                      /* character number, location */
                   79090:           5, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   79091:           {  3,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79092:             "\x93\x74" }  },
                   79093:       /* --- pixel bitmap for wncyr83 char#62 > --- */
                   79094:       {  62, 1736,                      /* character number, location */
                   79095:           5, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   79096:           {  5,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79097:             "\xc5\x79\x57\x00" }  },
                   79098:       /* --- pixel bitmap for wncyr83 char#63 (noname) --- */
                   79099:       {  63, 1317,                      /* character number, location */
                   79100:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   79101:           {  3,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79102:             "\xae\x24\x40" }  },
                   79103:       /* --- pixel bitmap for wncyr83 char#64 (noname) --- */
                   79104:       {  64, 1757,                      /* character number, location */
                   79105:           8, 1,    6, 1,      /* topleft row,col, and botleft row,col */
                   79106:           {  3,    2, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79107:             "\x3d" }  },
                   79108:       /* --- pixel bitmap for wncyr83 char#65 A --- */
                   79109:       {  65,  768,                      /* character number, location */
                   79110:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   79111:           {  8,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79112:             "\x18\x18\x18\x24\x24\x3c\x24\xe7" }  },
                   79113:       /* --- pixel bitmap for wncyr83 char#66 B --- */
                   79114:       {  66,  799,                      /* character number, location */
                   79115:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   79116:           {  7,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79117:             "\x7f\xa1\xd0\x27\x16\x0a\x7f" }  },
                   79118:       /* --- pixel bitmap for wncyr83 char#67 Ts --- */
                   79119:       {  67,   35,                      /* character number, location */
                   79120:           8, 0,   -4, 0,      /* topleft row,col, and botleft row,col */
                   79121:           { 10,   12, 3,24, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79122:             "\x03\x23\x20\xf5\x11\x41\x38\x20\xf1\xa0\x81\xa1" }  },
                   79123:       /* --- pixel bitmap for wncyr83 char#68 D --- */
                   79124:       {  68,   78,                      /* character number, location */
                   79125:           8,-2,   -4,-2,      /* topleft row,col, and botleft row,col */
                   79126:           { 12,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79127:             "\xf0\x03\x12\x20\x01\x12\x20\x01\x13\x30\xc1\x3f\x04"
                   79128:             "\x40\x00\x00\x24\x80" }  },
                   79129:       /* --- pixel bitmap for wncyr83 char#69 E --- */
                   79130:       {  69,  832,                      /* character number, location */
                   79131:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   79132:           {  8,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79133:             "\x7f\x42\x62\x3e\xa2\x82\xc2\xff" }  },
                   79134:       /* --- pixel bitmap for wncyr83 char#70 F --- */
                   79135:       {  70,  867,                      /* character number, location */
                   79136:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   79137:           {  6,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79138:             "\x1e\xe2\xa5\xa9\x87\x78" }  },
                   79139:       /* --- pixel bitmap for wncyr83 char#71 G --- */
                   79140:       {  71,  123,                      /* character number, location */
                   79141:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   79142:           {  7,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79143:             "\x7f\xa1\x50\x20\x10\x08\x0e" }  },
                   79144:       /* --- pixel bitmap for wncyr83 char#72 Kh --- */
                   79145:       {  72,  150,                      /* character number, location */
                   79146:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   79147:           {  8,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79148:             "\x67\x24\x18\x18\x18\x34\x24\xe7" }  },
                   79149:       /* --- pixel bitmap for wncyr83 char#73 I --- */
                   79150:       {  73,  183,                      /* character number, location */
                   79151:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   79152:           {  9,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79153:             "\xc7\x85\x89\x12\x24\x48\x91\xa1\xe3" }  },
                   79154:       /* --- pixel bitmap for wncyr83 char#74 J --- */
                   79155:       {  74,  898,                      /* character number, location */
                   79156:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   79157:           {  5,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79158:             "\x1e\x21\x84\x50\x3a" }  },
                   79159:       /* --- pixel bitmap for wncyr83 char#75 K --- */
                   79160:       {  75,  731,                      /* character number, location */
                   79161:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   79162:           {  8,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79163:             "\xc7\x42\x22\x1e\x22\x42\xc2\xc7" }  },
                   79164:       /* --- pixel bitmap for wncyr83 char#76 L --- */
                   79165:       {  76,  226,                      /* character number, location */
                   79166:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   79167:           {  7,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79168:             "\x7e\x12\x89\x44\x32\x9d\xe6" }  },
                   79169:       /* --- pixel bitmap for wncyr83 char#77 M --- */
                   79170:       {  77,  263,                      /* character number, location */
                   79171:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   79172:           { 10,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79173:             "\x87\x1b\x66\x98\x52\x4a\xc9\x24\xd3\xed" }  },
                   79174:       /* --- pixel bitmap for wncyr83 char#78 N --- */
                   79175:       {  78,  316,                      /* character number, location */
                   79176:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   79177:           {  8,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79178:             "\xe7\x42\x42\x7e\x42\x42\x42\xe7" }  },
                   79179:       /* --- pixel bitmap for wncyr83 char#79 O --- */
                   79180:       {  79,  923,                      /* character number, location */
                   79181:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   79182:           {  7,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79183:             "\x1c\x51\x30\x18\x0c\x8a\x38" }  },
                   79184:       /* --- pixel bitmap for wncyr83 char#80 P --- */
                   79185:       {  80,  353,                      /* character number, location */
                   79186:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   79187:           {  8,    8, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79188:             "\x08\xf5\x11\x41\x13\x23" }  },
                   79189:       /* --- pixel bitmap for wncyr83 char#81 Ch --- */
                   79190:       {  81,  390,                      /* character number, location */
                   79191:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   79192:           {  9,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79193:             "\xc7\x05\x09\x12\x44\x0e\x13\x20\xe0" }  },
                   79194:       /* --- pixel bitmap for wncyr83 char#82 R --- */
                   79195:       {  82,  958,                      /* character number, location */
                   79196:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   79197:           {  7,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79198:             "\x3f\xa1\x50\xe8\x13\x08\x0e" }  },
                   79199:       /* --- pixel bitmap for wncyr83 char#83 S --- */
                   79200:       {  83,  987,                      /* character number, location */
                   79201:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   79202:           {  6,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79203:             "\xbc\x18\x06\x41\x28\x72" }  },
                   79204:       /* --- pixel bitmap for wncyr83 char#84 T --- */
                   79205:       {  84,  425,                      /* character number, location */
                   79206:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   79207:           {  8,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79208:             "\xff\x91\x91\x10\x10\x10\x10\x7c" }  },
                   79209:       /* --- pixel bitmap for wncyr83 char#85 U --- */
                   79210:       {  85, 1018,                      /* character number, location */
                   79211:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   79212:           {  8,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79213:             "\xe7\x24\x24\x34\x18\x18\x0a\x0e" }  },
                   79214:       /* --- pixel bitmap for wncyr83 char#86 V --- */
                   79215:       {  86,  456,                      /* character number, location */
                   79216:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   79217:           {  7,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79218:             "\x3f\xa1\xd0\x27\x16\x0a\x7f" }  },
                   79219:       /* --- pixel bitmap for wncyr83 char#87 Shch --- */
                   79220:       {  87,  489,                      /* character number, location */
                   79221:           8, 0,   -4, 0,      /* topleft row,col, and botleft row,col */
                   79222:           { 14,   12, 3,28, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79223:             "\x03\x14\x13\x20\xf5\x11\x41\x31\x3c\x20\xf1\xe0\xc1"
                   79224:             "\xe1" }  },
                   79225:       /* --- pixel bitmap for wncyr83 char#88 Sh --- */
                   79226:       {  88,  546,                      /* character number, location */
                   79227:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   79228:           { 12,    8, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79229:             "\x03\x14\x13\xf5\x11\x41\x31\x1c" }  },
                   79230:       /* --- pixel bitmap for wncyr83 char#89 Y --- */
                   79231:       {  89,  597,                      /* character number, location */
                   79232:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   79233:           { 11,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79234:             "\x07\x17\x90\x80\x7c\x24\x26\x21\x09\xe9\xe7" }  },
                   79235:       /* --- pixel bitmap for wncyr83 char#90 Z --- */
                   79236:       {  90,  642,                      /* character number, location */
                   79237:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   79238:           {  7,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79239:             "\x1e\x11\x88\x07\x04\x06\x7f" }  },
                   79240:       /* --- pixel bitmap for wncyr83 char#91 (noname) --- */
                   79241:       {  91, 1340,                      /* character number, location */
                   79242:           9, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   79243:           {  3,   12, 3, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79244:             "\x03\x0f\x91\x23" }  },
                   79245:       /* --- pixel bitmap for wncyr83 char#92 (noname) --- */
                   79246:       {  92, 1770,                      /* character number, location */
                   79247:           8, 2,    5, 2,      /* topleft row,col, and botleft row,col */
                   79248:           {  3,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79249:             "\x6d\x01" }  },
                   79250:       /* --- pixel bitmap for wncyr83 char#93 (noname) --- */
                   79251:       {  93, 1371,                      /* character number, location */
                   79252:           9, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   79253:           {  3,   12, 3, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79254:             "\x03\xf9\x21\x03" }  },
                   79255:       /* --- pixel bitmap for wncyr83 char#94 \Cprime --- */
                   79256:       {  94,  669,                      /* character number, location */
                   79257:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   79258:           {  7,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79259:             "\x07\x81\xc0\x27\x16\x0a\x7f" }  },
                   79260:       /* --- pixel bitmap for wncyr83 char#95 \Cdprime --- */
                   79261:       {  95,  698,                      /* character number, location */
                   79262:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   79263:           { 10,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79264:             "\x3f\x44\x10\x01\x7c\x10\x43\x08\x21\x7e" }  },
                   79265:       /* --- pixel bitmap for wncyr83 char#96 (noname) --- */
                   79266:       {  96, 1402,                      /* character number, location */
                   79267:           8, 1,    5, 1,      /* topleft row,col, and botleft row,col */
                   79268:           {  1,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79269:             "\x07" }  },
                   79270:       /* --- pixel bitmap for wncyr83 char#97 a --- */
                   79271:       {  97, 2637,                      /* character number, location */
                   79272:           5, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   79273:           {  5,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79274:             "\xc6\xa5\xec\x01" }  },
                   79275:       /* --- pixel bitmap for wncyr83 char#98 b --- */
                   79276:       {  98, 2658,                      /* character number, location */
                   79277:           7, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   79278:           {  6,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79279:             "\x5e\xf0\x85\x61\xe8\x01" }  },
                   79280:       /* --- pixel bitmap for wncyr83 char#99 ts --- */
                   79281:       {  99, 2858,                      /* character number, location */
                   79282:           5, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   79283:           {  6,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79284:             "\x9b\xa2\x28\x1f\x04\x80" }  },
                   79285:       /* --- pixel bitmap for wncyr83 char#100 d --- */
                   79286:       { 100, 2889,                      /* character number, location */
                   79287:           5,-2,   -4,-2,      /* topleft row,col, and botleft row,col */
                   79288:           { 10,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79289:             "\xf8\xc1\x02\x0b\x24\xfc\x11\x04\x80\x80\x02\x00" }  },
                   79290:       /* --- pixel bitmap for wncyr83 char#101 e --- */
                   79291:       { 101, 2685,                      /* character number, location */
                   79292:           5, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   79293:           {  5,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79294:             "\xee\x87\xe8\x00" }  },
                   79295:       /* --- pixel bitmap for wncyr83 char#102 f --- */
                   79296:       { 102, 2704,                      /* character number, location */
                   79297:           8, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   79298:           {  6,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79299:             "\x0c\x00\xfc\x6d\xd8\xfe\x00\xc0\x00" }  },
                   79300:       /* --- pixel bitmap for wncyr83 char#103 g --- */
                   79301:       { 103, 2924,                      /* character number, location */
                   79302:           5, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   79303:           {  5,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79304:             "\x5f\x0a\x71\x00" }  },
                   79305:       /* --- pixel bitmap for wncyr83 char#104 kh --- */
                   79306:       { 104, 2943,                      /* character number, location */
                   79307:           5, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   79308:           {  5,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79309:             "\x9b\x10\xb5\x01" }  },
                   79310:       /* --- pixel bitmap for wncyr83 char#105 i --- */
                   79311:       { 105, 2966,                      /* character number, location */
                   79312:           5, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   79313:           {  6,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79314:             "\xb3\x26\x59\x33" }  },
                   79315:       /* --- pixel bitmap for wncyr83 char#106 j --- */
                   79316:       { 106, 2739,                      /* character number, location */
                   79317:           9,-1,   -2,-1,      /* topleft row,col, and botleft row,col */
                   79318:           {  3,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79319:             "\x04\x60\x92\xe4\x01" }  },
                   79320:       /* --- pixel bitmap for wncyr83 char#107 k --- */
                   79321:       { 107, 3310,                      /* character number, location */
                   79322:           5, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   79323:           {  5,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79324:             "\x57\x19\x7d\x01" }  },
                   79325:       /* --- pixel bitmap for wncyr83 char#108 l --- */
                   79326:       { 108, 2993,                      /* character number, location */
                   79327:           5, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   79328:           {  6,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79329:             "\x3e\x45\x55\x3e" }  },
                   79330:       /* --- pixel bitmap for wncyr83 char#109 m --- */
                   79331:       { 109, 3018,                      /* character number, location */
                   79332:           5, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   79333:           {  7,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79334:             "\x77\x9b\x4d\xf5\x07" }  },
                   79335:       /* --- pixel bitmap for wncyr83 char#110 n --- */
                   79336:       { 110, 3045,                      /* character number, location */
                   79337:           5, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   79338:           {  5,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79339:             "\x5b\x39\xb5\x01" }  },
                   79340:       /* --- pixel bitmap for wncyr83 char#111 o --- */
                   79341:       { 111, 2764,                      /* character number, location */
                   79342:           5, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   79343:           {  5,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79344:             "\x2e\xc6\xe8\x00" }  },
                   79345:       /* --- pixel bitmap for wncyr83 char#112 p --- */
                   79346:       { 112, 3070,                      /* character number, location */
                   79347:           5, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   79348:           {  5,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79349:             "\x5f\x29\xb5\x01" }  },
                   79350:       /* --- pixel bitmap for wncyr83 char#113 ch --- */
                   79351:       { 113, 3095,                      /* character number, location */
                   79352:           5, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   79353:           {  6,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79354:             "\xb3\xe4\x41\x30" }  },
                   79355:       /* --- pixel bitmap for wncyr83 char#114 r --- */
                   79356:       { 114, 2787,                      /* character number, location */
                   79357:           5, 0,   -2, 0,      /* topleft row,col, and botleft row,col */
                   79358:           {  6,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79359:             "\x9f\x28\x8a\x9e\x70\x00" }  },
                   79360:       /* --- pixel bitmap for wncyr83 char#115 s --- */
                   79361:       { 115, 2814,                      /* character number, location */
                   79362:           5, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   79363:           {  5,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79364:             "\x3e\x84\xe8\x00" }  },
                   79365:       /* --- pixel bitmap for wncyr83 char#116 t --- */
                   79366:       { 116, 3116,                      /* character number, location */
                   79367:           5, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   79368:           {  5,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79369:             "\xbf\x12\xe2\x00" }  },
                   79370:       /* --- pixel bitmap for wncyr83 char#117 u --- */
                   79371:       { 117, 2833,                      /* character number, location */
                   79372:           5, 0,   -2, 0,      /* topleft row,col, and botleft row,col */
                   79373:           {  6,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79374:             "\xb3\xc4\x30\x0c\x71\x00" }  },
                   79375:       /* --- pixel bitmap for wncyr83 char#118 v --- */
                   79376:       { 118, 3137,                      /* character number, location */
                   79377:           5, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   79378:           {  5,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79379:             "\x4f\x79\xf9\x01" }  },
                   79380:       /* --- pixel bitmap for wncyr83 char#119 shch --- */
                   79381:       { 119, 3158,                      /* character number, location */
                   79382:           5, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   79383:           {  9,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79384:             "\xdb\xa4\x48\x91\xf2\x0f\x10\x00\x80" }  },
                   79385:       /* --- pixel bitmap for wncyr83 char#120 sh --- */
                   79386:       { 120, 3197,                      /* character number, location */
                   79387:           5, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   79388:           {  8,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79389:             "\xdb\x52\x52\x52\xff" }  },
                   79390:       /* --- pixel bitmap for wncyr83 char#121 y --- */
                   79391:       { 121, 3230,                      /* character number, location */
                   79392:           5, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   79393:           {  7,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79394:             "\x67\x91\x4f\xf6\x07" }  },
                   79395:       /* --- pixel bitmap for wncyr83 char#122 z --- */
                   79396:       { 122, 3253,                      /* character number, location */
                   79397:           5, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   79398:           {  4,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79399:             "\x87\x86\x07" }  },
                   79400:       /* --- pixel bitmap for wncyr83 char#123 (noname) --- */
                   79401:       { 123, 1789,                      /* character number, location */
                   79402:           4, 0,    3, 0,      /* topleft row,col, and botleft row,col */
                   79403:           {  5,    1, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79404:             "\x1f" }  },
                   79405:       /* --- pixel bitmap for wncyr83 char#124 (noname) --- */
                   79406:       { 124, 1798,                      /* character number, location */
                   79407:           4, 0,    3, 0,      /* topleft row,col, and botleft row,col */
                   79408:           { 12,    1, 3, 2, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79409:             "\x0c" }  },
                   79410:       /* --- pixel bitmap for wncyr83 char#125 N0 --- */
                   79411:       { 125, 1807,                      /* character number, location */
                   79412:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   79413:           { 10,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79414:             "\x27\x50\x40\x19\x97\x9c\x71\x4f\xc1\x04" }  },
                   79415:       /* --- pixel bitmap for wncyr83 char#126 \cprime --- */
                   79416:       { 126, 3270,                      /* character number, location */
                   79417:           5, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   79418:           {  5,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79419:             "\x47\x78\xf9\x01" }  },
                   79420:       /* --- pixel bitmap for wncyr83 char#127 \cdprime --- */
                   79421:       { 127, 3289,                      /* character number, location */
                   79422:           5, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   79423:           {  6,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79424:             "\x47\xc1\x93\x3e" }  },
                   79425:       /* --- trailer  --- */
                   79426:       { -99, -999,  0,0,0,0, { 0,0,0,0, (pixbyte *)"\0" }  }
                   79427:    } ;
                   79428: 
                   79429: 
                   79430: /* --- size=1 for .100gf ---
                   79431:  * mf '\mode=preview; mag=magstep(-17.87427405946994351363); input wncyr10'
                   79432:  * --------------------------------------------------------------------- */
                   79433: /* --- fontdef for wncyr100 --- */
                   79434: static	chardef  wncyr100[] =
                   79435:    {
                   79436:       /* --- pixel bitmap for wncyr100 char#0 Nj --- */
                   79437:       {   0,59858,                      /* character number, location */
                   79438:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   79439:           { 14,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79440:             "\xe7\x81\x20\x20\x08\x08\x02\xfe\x9f\x20\x28\x08\x0a"
                   79441:             "\xc2\xe7\x1f" }  },
                   79442:       /* --- pixel bitmap for wncyr100 char#1 Lj --- */
                   79443:       {   1,60810,                      /* character number, location */
                   79444:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   79445:           { 14,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79446:             "\xfe\x01\x22\x80\x08\x20\x02\x8c\x1f\x23\xc8\x08\x1a"
                   79447:             "\xc2\xc3\x1f" }  },
                   79448:       /* --- pixel bitmap for wncyr100 char#2 Dzh --- */
                   79449:       {   2,61855,                      /* character number, location */
                   79450:           9, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   79451:           {  9,   11, 3,17, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79452:             "\x03\x33\xf6\x11\x51\x19\xf1\x41\x40" }  },
                   79453:       /* --- pixel bitmap for wncyr100 char#3 \`E --- */
                   79454:       {   3,62779,                      /* character number, location */
                   79455:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   79456:           {  9,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79457:             "\x3d\x86\x05\xc2\xff\xd1\x61\xa0\x61\x3c\x00" }  },
                   79458:       /* --- pixel bitmap for wncyr100 char#4 \=I --- */
                   79459:       {   4,71231,                      /* character number, location */
                   79460:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   79461:           {  5,    9, 3, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79462:             "\x05\xf6\x21\x25" }  },
                   79463:       /* --- pixel bitmap for wncyr100 char#5 \=E --- */
                   79464:       {   5,63696,                      /* character number, location */
                   79465:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   79466:           {  9,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79467:             "\x78\x0d\x0b\xfc\x11\x3f\x9c\x40\xc3\x78\x00" }  },
                   79468:       /* --- pixel bitmap for wncyr100 char#6 Dj --- */
                   79469:       {   6,72375,                      /* character number, location */
                   79470:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   79471:           { 10,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79472:             "\xff\x45\x04\x01\x7c\x10\x62\x08\x21\x84\xfc\x01" }  },
                   79473:       /* --- pixel bitmap for wncyr100 char#7 \'C --- */
                   79474:       {   7,73706,                      /* character number, location */
                   79475:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   79476:           { 11,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79477:             "\xff\x89\x08\x04\xe0\x03\x11\x08\x41\x08\x42\xb8\x07" }  },
                   79478:       /* --- pixel bitmap for wncyr100 char#8 nj --- */
                   79479:       {   8,113023,                     /* character number, location */
                   79480:           6, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   79481:           { 10,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79482:             "\xf7\x08\xe1\x9f\x90\x42\xde\x07" }  },
                   79483:       /* --- pixel bitmap for wncyr100 char#9 lj --- */
                   79484:       {   9,113961,                     /* character number, location */
                   79485:           6, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   79486:           {  9,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79487:             "\x7f\x48\x90\x33\x69\x72\x3e" }  },
                   79488:       /* --- pixel bitmap for wncyr100 char#10 dzh --- */
                   79489:       {  10,115018,                     /* character number, location */
                   79490:           6, 0,   -2, 0,      /* topleft row,col, and botleft row,col */
                   79491:           {  8,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79492:             "\xe7\x42\x42\x42\x42\xff\x10\x10" }  },
                   79493:       /* --- pixel bitmap for wncyr100 char#11 \`e --- */
                   79494:       {  11,115930,                     /* character number, location */
                   79495:           6, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   79496:           {  5,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79497:             "\xaf\xfe\x1b\x1d" }  },
                   79498:       /* --- pixel bitmap for wncyr100 char#12 \=\i --- */
                   79499:       {  12,77286,                      /* character number, location */
                   79500:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   79501:           {  3,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79502:             "\x02\x30\x49\x3a" }  },
                   79503:       /* --- pixel bitmap for wncyr100 char#13 \=e --- */
                   79504:       {  13,116835,                     /* character number, location */
                   79505:           6, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   79506:           {  5,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79507:             "\xbe\xfe\x1e\x1d" }  },
                   79508:       /* --- pixel bitmap for wncyr100 char#14 dj --- */
                   79509:       {  14,78276,                      /* character number, location */
                   79510:          10, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   79511:           {  7,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79512:             "\x86\x3f\x81\xc0\x23\x12\x08\x44\x27\x10\x84\x01" }  },
                   79513:       /* --- pixel bitmap for wncyr100 char#15 \'c --- */
                   79514:       {  15,79268,                      /* character number, location */
                   79515:          10, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   79516:           {  9,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79517:             "\x06\xfe\x11\x20\xc0\x87\x10\x21\x42\x84\x9c\x03" }  },
                   79518:       /* --- pixel bitmap for wncyr100 char#16 Yu --- */
                   79519:       {  16,64812,                      /* character number, location */
                   79520:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   79521:           { 16,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79522:             "\x0f\x1e\x84\x61\x84\x40\x44\x80\x7c\x80\x44\x80\x84"
                   79523:             "\x40\x84\x61\x0f\x1e" }  },
                   79524:       /* --- pixel bitmap for wncyr100 char#17 Zh --- */
                   79525:       {  17,58538,                      /* character number, location */
                   79526:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   79527:           { 15,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79528:             "\xc3\x61\x41\x10\x21\x04\xff\x81\xff\x20\x84\x14\x42"
                   79529:             "\x0f\xe1\xc3\x61" }  },
                   79530:       /* --- pixel bitmap for wncyr100 char#18 \u I --- */
                   79531:       {  18,66271,                      /* character number, location */
                   79532:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   79533:           { 12,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79534:             "\xfc\x03\x00\x9f\x4f\x30\x84\x42\x24\x04\x42\x22\x14"
                   79535:             "\xc2\x20\x9f\x0f" }  },
                   79536:       /* --- pixel bitmap for wncyr100 char#19 \"E --- */
                   79537:       {  19,75080,                      /* character number, location */
                   79538:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   79539:           {  9,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79540:             "\x28\x00\xfc\x13\x26\x4a\x94\x0f\x91\x22\x05\xfd\x03" }  },
                   79541:       /* --- pixel bitmap for wncyr100 char#20 (noname) --- */
                   79542:       {  20,67192,                      /* character number, location */
                   79543:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   79544:           { 10,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79545:             "\x0f\x13\x4c\x08\x22\x48\x20\x01\x03\x0c\x30\x00" }  },
                   79546:       /* --- pixel bitmap for wncyr100 char#21 (noname) --- */
                   79547:       {  21,68302,                      /* character number, location */
                   79548:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   79549:           { 12,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79550:             "\xf0\x80\x10\x04\x42\x20\xff\x5f\xa0\x04\x82\x10\xf0"
                   79551:             "\x00" }  },
                   79552:       /* --- pixel bitmap for wncyr100 char#22 \Dz --- */
                   79553:       {  22,69326,                      /* character number, location */
                   79554:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   79555:           {  6,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79556:             "\x7e\x18\x0c\x1c\x08\x86\x1f" }  },
                   79557:       /* --- pixel bitmap for wncyr100 char#23 Ya --- */
                   79558:       {  23,70576,                      /* character number, location */
                   79559:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   79560:           { 10,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79561:             "\xf0\x13\x44\x10\x41\xf0\x21\x84\x10\x42\x8f\x03" }  },
                   79562:       /* --- pixel bitmap for wncyr100 char#24 yu --- */
                   79563:       {  24,117939,                     /* character number, location */
                   79564:           6, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   79565:           { 10,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79566:             "\xe7\xc9\x2c\xa1\x87\x32\x9f\x07" }  },
                   79567:       /* --- pixel bitmap for wncyr100 char#25 zh --- */
                   79568:       {  25,111695,                     /* character number, location */
                   79569:           6,-1,    0,-1,      /* topleft row,col, and botleft row,col */
                   79570:           { 11,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79571:             "\x73\x16\x11\x7f\x4c\x36\xe2\x38\x02" }  },
                   79572:       /* --- pixel bitmap for wncyr100 char#26 \u\i --- */
                   79573:       {  26,119406,                     /* character number, location */
                   79574:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   79575:           {  8,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79576:             "\x7e\x00\xe7\x62\x52\x4a\x46\xe7" }  },
                   79577:       /* --- pixel bitmap for wncyr100 char#27 \"e --- */
                   79578:       {  27,80013,                      /* character number, location */
                   79579:           6, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   79580:           {  6,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79581:             "\x5e\xf8\x07\xa3\x07" }  },
                   79582:       /* --- pixel bitmap for wncyr100 char#28 (noname) --- */
                   79583:       {  28,120311,                     /* character number, location */
                   79584:           6, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   79585:           {  7,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79586:             "\x47\x32\x89\x82\x41\x00" }  },
                   79587:       /* --- pixel bitmap for wncyr100 char#29 (noname) --- */
                   79588:       {  29,121411,                     /* character number, location */
                   79589:           6, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   79590:           {  8,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79591:             "\x3c\x66\xff\x42\x66\x3c" }  },
                   79592:       /* --- pixel bitmap for wncyr100 char#30 \dz --- */
                   79593:       {  30,122419,                     /* character number, location */
                   79594:           6, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   79595:           {  4,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79596:             "\x1e\xc7\x78" }  },
                   79597:       /* --- pixel bitmap for wncyr100 char#31 ya --- */
                   79598:       {  31,123659,                     /* character number, location */
                   79599:           6, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   79600:           {  8,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79601:             "\xfc\x42\x7c\x42\x42\xe3" }  },
                   79602:       /* --- pixel bitmap for wncyr100 char#32 \cyddot --- */
                   79603:       {  32,50709,                      /* character number, location */
                   79604:          10, 2,    9, 2,      /* topleft row,col, and botleft row,col */
                   79605:           {  4,    1, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79606:             "\x09" }  },
                   79607:       /* --- pixel bitmap for wncyr100 char#33 (noname) --- */
                   79608:       {  33,32200,                      /* character number, location */
                   79609:          10, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   79610:           {  1,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79611:             "\x3f\x02" }  },
                   79612:       /* --- pixel bitmap for wncyr100 char#34 (noname) --- */
                   79613:       {  34,51552,                      /* character number, location */
                   79614:          10, 1,    6, 1,      /* topleft row,col, and botleft row,col */
                   79615:           {  4,    4, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79616:             "\x99\x99" }  },
                   79617:       /* --- pixel bitmap for wncyr100 char#35 (noname) --- */
                   79618:       {  35,76575,                      /* character number, location */
                   79619:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   79620:           { 10,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79621:             "\x1c\xfc\xb7\x5c\x42\xf8\x20\x8c\x20\x82\x08\xf3\x07" }  },
                   79622:       /* --- pixel bitmap for wncyr100 char#36 (noname) --- */
                   79623:       {  36,52228,                      /* character number, location */
                   79624:           9, 0,    7, 0,      /* topleft row,col, and botleft row,col */
                   79625:           {  7,    2, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79626:             "\x41\x1f" }  },
                   79627:       /* --- pixel bitmap for wncyr100 char#37 (noname) --- */
                   79628:       {  37,33355,                      /* character number, location */
                   79629:          10, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   79630:           { 10,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79631:             "\x06\xe5\x93\x48\x12\x26\x40\x06\x25\x92\x44\x12\x29"
                   79632:             "\x18" }  },
                   79633:       /* --- pixel bitmap for wncyr100 char#38 (noname) --- */
                   79634:       {  38,52771,                      /* character number, location */
                   79635:          10, 3,    7, 3,      /* topleft row,col, and botleft row,col */
                   79636:           {  3,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79637:             "\x54\x00" }  },
                   79638:       /* --- pixel bitmap for wncyr100 char#39 (noname) --- */
                   79639:       {  39,33945,                      /* character number, location */
                   79640:          10, 2,    6, 2,      /* topleft row,col, and botleft row,col */
                   79641:           {  1,    4, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79642:             "\x0f" }  },
                   79643:       /* --- pixel bitmap for wncyr100 char#40 (noname) --- */
                   79644:       {  40,34489,                      /* character number, location */
                   79645:          10, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   79646:           {  4,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79647:             "\x48\x22\x11\x11\x21\x42\x08" }  },
                   79648:       /* --- pixel bitmap for wncyr100 char#41 (noname) --- */
                   79649:       {  41,35052,                      /* character number, location */
                   79650:          10, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   79651:           {  4,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79652:             "\x21\x44\x88\x88\x48\x24\x01" }  },
                   79653:       /* --- pixel bitmap for wncyr100 char#42 (noname) --- */
                   79654:       {  42,35639,                      /* character number, location */
                   79655:          10, 1,    4, 1,      /* topleft row,col, and botleft row,col */
                   79656:           {  6,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79657:             "\x48\xea\x79\x29\x02" }  },
                   79658:       /* --- pixel bitmap for wncyr100 char#43 (noname) --- */
                   79659:       {  43,80810,                      /* character number, location */
                   79660:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   79661:           {  8,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79662:             "\x0a\x04\x04\x1f\x04\x7c\x84\x84\xc4\x7e" }  },
                   79663:       /* --- pixel bitmap for wncyr100 char#44 (noname) --- */
                   79664:       {  44,36188,                      /* character number, location */
                   79665:           1, 2,   -3, 2,      /* topleft row,col, and botleft row,col */
                   79666:           {  1,    4, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79667:             "\x0f" }  },
                   79668:       /* --- pixel bitmap for wncyr100 char#45 (noname) --- */
                   79669:       {  45,36649,                      /* character number, location */
                   79670:           4, 0,    3, 0,      /* topleft row,col, and botleft row,col */
                   79671:           {  4,    1, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79672:             "\x0f" }  },
                   79673:       /* --- pixel bitmap for wncyr100 char#46 (noname) --- */
                   79674:       {  46,37078,                      /* character number, location */
                   79675:           1, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   79676:           {  1,    1, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79677:             "\x01" }  },
                   79678:       /* --- pixel bitmap for wncyr100 char#47 (noname) --- */
                   79679:       {  47,37556,                      /* character number, location */
                   79680:          10, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   79681:           {  6,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79682:             "\x20\x08\x41\x08\x42\x10\x84\x20\x04\x01" }  },
                   79683:       /* --- pixel bitmap for wncyr100 char#48 (noname) --- */
                   79684:       {  48,42109,                      /* character number, location */
                   79685:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   79686:           {  6,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79687:             "\x9e\x14\x86\x61\x18\x4a\x1e" }  },
                   79688:       /* --- pixel bitmap for wncyr100 char#49 (noname) --- */
                   79689:       {  49,42837,                      /* character number, location */
                   79690:           9, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   79691:           {  5,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79692:             "\xe4\x10\x42\x08\x21\x1f" }  },
                   79693:       /* --- pixel bitmap for wncyr100 char#50 (noname) --- */
                   79694:       {  50,43770,                      /* character number, location */
                   79695:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   79696:           {  6,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79697:             "\x5e\x18\x82\x10\x46\x88\x3f" }  },
                   79698:       /* --- pixel bitmap for wncyr100 char#51 (noname) --- */
                   79699:       {  51,44758,                      /* character number, location */
                   79700:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   79701:           {  6,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79702:             "\x5e\x08\x82\x1c\x18\x86\x1e" }  },
                   79703:       /* --- pixel bitmap for wncyr100 char#52 (noname) --- */
                   79704:       {  52,45634,                      /* character number, location */
                   79705:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   79706:           {  8,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79707:             "\x30\x38\x2c\x26\x23\xff\x20\x20\xf8" }  },
                   79708:       /* --- pixel bitmap for wncyr100 char#53 (noname) --- */
                   79709:       {  53,46622,                      /* character number, location */
                   79710:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   79711:           {  6,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79712:             "\x7f\x10\x74\x23\x18\x46\x0e" }  },
                   79713:       /* --- pixel bitmap for wncyr100 char#54 (noname) --- */
                   79714:       {  54,47468,                      /* character number, location */
                   79715:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   79716:           {  6,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79717:             "\xbc\x10\x7c\x61\x18\x8a\x1c" }  },
                   79718:       /* --- pixel bitmap for wncyr100 char#55 (noname) --- */
                   79719:       {  55,48316,                      /* character number, location */
                   79720:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   79721:           {  7,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79722:             "\xff\x20\x08\x82\x40\x10\x08\x04" }  },
                   79723:       /* --- pixel bitmap for wncyr100 char#56 (noname) --- */
                   79724:       {  56,49190,                      /* character number, location */
                   79725:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   79726:           {  6,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79727:             "\x5e\x18\x7a\x5e\x18\x86\x1e" }  },
                   79728:       /* --- pixel bitmap for wncyr100 char#57 (noname) --- */
                   79729:       {  57,50038,                      /* character number, location */
                   79730:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   79731:           {  6,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79732:             "\x8c\x14\x86\xa1\x0f\x42\x0f" }  },
                   79733:       /* --- pixel bitmap for wncyr100 char#58 (noname) --- */
                   79734:       {  58,38102,                      /* character number, location */
                   79735:           6, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   79736:           {  1,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79737:             "\x21" }  },
                   79738:       /* --- pixel bitmap for wncyr100 char#59 (noname) --- */
                   79739:       {  59,38735,                      /* character number, location */
                   79740:           6, 2,   -3, 2,      /* topleft row,col, and botleft row,col */
                   79741:           {  1,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79742:             "\xe1\x01" }  },
                   79743:       /* --- pixel bitmap for wncyr100 char#60 < --- */
                   79744:       {  60,53359,                      /* character number, location */
                   79745:           6, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   79746:           {  7,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79747:             "\x48\x92\x44\x42\x42\x02" }  },
                   79748:       /* --- pixel bitmap for wncyr100 char#61 (noname) --- */
                   79749:       {  61,81511,                      /* character number, location */
                   79750:           6, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   79751:           {  3,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79752:             "\x93\xa4\x03" }  },
                   79753:       /* --- pixel bitmap for wncyr100 char#62 > --- */
                   79754:       {  62,53876,                      /* character number, location */
                   79755:           6, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   79756:           {  6,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79757:             "\x89\x44\x92\x52\x02" }  },
                   79758:       /* --- pixel bitmap for wncyr100 char#63 (noname) --- */
                   79759:       {  63,39614,                      /* character number, location */
                   79760:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   79761:           {  5,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79762:             "\x2e\x42\x44\x08\x00\x80\x00" }  },
                   79763:       /* --- pixel bitmap for wncyr100 char#64 (noname) --- */
                   79764:       {  64,54484,                      /* character number, location */
                   79765:          10, 1,    7, 1,      /* topleft row,col, and botleft row,col */
                   79766:           {  6,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79767:             "\xe1\xec\x01" }  },
                   79768:       /* --- pixel bitmap for wncyr100 char#65 A --- */
                   79769:       {  65,23189,                      /* character number, location */
                   79770:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   79771:           { 11,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79772:             "\x20\x80\x02\x14\xa0\x80\x08\x7c\x20\x82\x20\x8f\x07" }  },
                   79773:       /* --- pixel bitmap for wncyr100 char#66 B --- */
                   79774:       {  66,24525,                      /* character number, location */
                   79775:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   79776:           { 10,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79777:             "\xff\x11\x46\x10\x41\xfc\x11\x48\x20\xc1\xff\x01" }  },
                   79778:       /* --- pixel bitmap for wncyr100 char#67 Ts --- */
                   79779:       {  67, 1061,                      /* character number, location */
                   79780:           9, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   79781:           { 11,   11, 3,18, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79782:             "\x03\x33\x20\xf6\x11\x51\x39\xb1\xb1" }  },
                   79783:       /* --- pixel bitmap for wncyr100 char#68 D --- */
                   79784:       {  68, 2037,                      /* character number, location */
                   79785:           9,-2,   -2,-2,      /* topleft row,col, and botleft row,col */
                   79786:           { 14,   11, 3,30, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79787:             "\x48\x20\xf4\x61\x31\x30\x52\x31\x81\x41\x5a\x41\x91"
                   79788:             "\x21\xb1" }  },
                   79789:       /* --- pixel bitmap for wncyr100 char#69 E --- */
                   79790:       {  69,25874,                      /* character number, location */
                   79791:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   79792:           {  9,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79793:             "\xff\x84\x89\x12\xe5\x43\xa4\x48\x41\xff\x00" }  },
                   79794:       /* --- pixel bitmap for wncyr100 char#70 F --- */
                   79795:       {  70,26895,                      /* character number, location */
                   79796:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   79797:           {  9,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79798:             "\x7c\x20\xf0\x99\x1c\x71\x32\x1f\x08\x7c\x00" }  },
                   79799:       /* --- pixel bitmap for wncyr100 char#71 G --- */
                   79800:       {  71, 3179,                      /* character number, location */
                   79801:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   79802:           {  9,    9, 3,19, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79803:             "\x09\x21\x42\xf1\x21\x51\xf3\x21\x65\x41" }  },
                   79804:       /* --- pixel bitmap for wncyr100 char#72 Kh --- */
                   79805:       {  72, 4219,                      /* character number, location */
                   79806:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   79807:           { 11,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79808:             "\xcf\x43\x04\x16\x60\x00\x02\x28\x20\x82\x31\x8f\x07" }  },
                   79809:       /* --- pixel bitmap for wncyr100 char#73 I --- */
                   79810:       {  73, 5395,                      /* character number, location */
                   79811:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   79812:           { 12,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79813:             "\x9f\x4f\x30\x84\x42\x24\x04\x42\x22\x14\xc2\x20\x9f"
                   79814:             "\x0f" }  },
                   79815:       /* --- pixel bitmap for wncyr100 char#74 J --- */
                   79816:       {  74,27676,                      /* character number, location */
                   79817:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   79818:           {  6,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79819:             "\x3c\x04\x41\x10\x04\x45\x0e" }  },
                   79820:       /* --- pixel bitmap for wncyr100 char#75 K --- */
                   79821:       {  75,22175,                      /* character number, location */
                   79822:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   79823:           {  9,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79824:             "\x87\x05\x09\xf1\xe1\x43\x88\x50\xe1\x87\x01" }  },
                   79825:       /* --- pixel bitmap for wncyr100 char#76 L --- */
                   79826:       {  76, 6243,                      /* character number, location */
                   79827:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   79828:           {  9,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79829:             "\xfe\x11\x21\x42\xc4\x88\x11\xa3\x43\xc3\x01" }  },
                   79830:       /* --- pixel bitmap for wncyr100 char#77 M --- */
                   79831:       {  77, 7494,                      /* character number, location */
                   79832:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   79833:           { 14,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79834:             "\x0f\x3c\x03\x43\xa1\x50\x28\x14\x09\x49\x42\x92\x10"
                   79835:             "\x23\xdf\x3e" }  },
                   79836:       /* --- pixel bitmap for wncyr100 char#78 N --- */
                   79837:       {  78, 8663,                      /* character number, location */
                   79838:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   79839:           {  9,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79840:             "\xc7\x05\x09\x12\xe4\x4f\x90\x20\x41\xc7\x01" }  },
                   79841:       /* --- pixel bitmap for wncyr100 char#79 O --- */
                   79842:       {  79,28465,                      /* character number, location */
                   79843:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   79844:           { 10,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79845:             "\x78\x18\x26\x50\x80\x01\x06\x28\x90\x61\x78\x00" }  },
                   79846:       /* --- pixel bitmap for wncyr100 char#80 P --- */
                   79847:       {  80, 9713,                      /* character number, location */
                   79848:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   79849:           {  9,    9, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79850:             "\x09\xf6\x11\x51\x13\x33" }  },
                   79851:       /* --- pixel bitmap for wncyr100 char#81 Ch --- */
                   79852:       {  81,10710,                      /* character number, location */
                   79853:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   79854:           { 12,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79855:             "\x9f\x4f\x20\x04\x42\x20\x0c\x83\x2f\x00\x02\x20\x80"
                   79856:             "\x0f" }  },
                   79857:       /* --- pixel bitmap for wncyr100 char#82 R --- */
                   79858:       {  82,29546,                      /* character number, location */
                   79859:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   79860:           {  8,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79861:             "\x7f\x82\x82\x82\x7e\x02\x02\x02\x07" }  },
                   79862:       /* --- pixel bitmap for wncyr100 char#83 S --- */
                   79863:       {  83,30439,                      /* character number, location */
                   79864:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   79865:           {  9,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79866:             "\x78\x0d\x0b\x0c\x10\x20\x80\x40\xc3\x78\x00" }  },
                   79867:       /* --- pixel bitmap for wncyr100 char#84 T --- */
                   79868:       {  84,11755,                      /* character number, location */
                   79869:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   79870:           {  9,    9, 3,19, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79871:             "\x09\x0f\x21\x31\x31\xf3\x41\x40\x25\x21" }  },
                   79872:       /* --- pixel bitmap for wncyr100 char#85 U --- */
                   79873:       {  85,31623,                      /* character number, location */
                   79874:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   79875:           { 11,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79876:             "\x87\x27\x0c\x22\x90\x01\x05\x38\x80\x40\x06\x1c\x00" }  },
                   79877:       /* --- pixel bitmap for wncyr100 char#86 V --- */
                   79878:       {  86,13057,                      /* character number, location */
                   79879:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   79880:           { 10,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79881:             "\xff\x10\x4c\x20\xc1\xfc\x11\x48\x20\xc1\xff\x01" }  },
                   79882:       /* --- pixel bitmap for wncyr100 char#87 Shch --- */
                   79883:       {  87,14500,                      /* character number, location */
                   79884:           9, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   79885:           { 16,   11, 3,26, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79886:             "\x03\x24\x23\x20\xf6\x11\x51\x41\x3e\xe0\x21\xe0\x21" }  },
                   79887:       /* --- pixel bitmap for wncyr100 char#88 Sh --- */
                   79888:       {  88,15933,                      /* character number, location */
                   79889:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   79890:           { 14,    9, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79891:             "\x03\x24\x23\xf6\x11\x51\x41\x1e" }  },
                   79892:       /* --- pixel bitmap for wncyr100 char#89 Y --- */
                   79893:       {  89,17473,                      /* character number, location */
                   79894:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   79895:           { 15,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79896:             "\x1f\x78\x02\x08\x01\x84\x00\xc2\x1f\x21\x90\x10\x48"
                   79897:             "\x08\x26\xff\x79" }  },
                   79898:       /* --- pixel bitmap for wncyr100 char#90 Z --- */
                   79899:       {  90,18465,                      /* character number, location */
                   79900:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   79901:           {  7,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79902:             "\xbf\x20\x10\xe4\x01\x03\xc3\x1f" }  },
                   79903:       /* --- pixel bitmap for wncyr100 char#91 (noname) --- */
                   79904:       {  91,40253,                      /* character number, location */
                   79905:          10, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   79906:           {  3,   13, 3, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79907:             "\x03\x0f\xa1\x23" }  },
                   79908:       /* --- pixel bitmap for wncyr100 char#92 (noname) --- */
                   79909:       {  92,55333,                      /* character number, location */
                   79910:          10, 3,    6, 3,      /* topleft row,col, and botleft row,col */
                   79911:           {  4,    4, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79912:             "\x99\x99" }  },
                   79913:       /* --- pixel bitmap for wncyr100 char#93 (noname) --- */
                   79914:       {  93,40901,                      /* character number, location */
                   79915:          10, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   79916:           {  3,   13, 3, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79917:             "\x03\xfa\x21\x03" }  },
                   79918:       /* --- pixel bitmap for wncyr100 char#94 \Cprime --- */
                   79919:       {  94,19751,                      /* character number, location */
                   79920:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   79921:           { 10,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79922:             "\x1f\x10\x40\x00\x01\xfc\x11\x48\x20\xc1\xff\x01" }  },
                   79923:       /* --- pixel bitmap for wncyr100 char#95 \Cdprime --- */
                   79924:       {  95,21205,                      /* character number, location */
                   79925:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   79926:           { 13,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79927:             "\x7f\x60\x04\x84\x80\x10\x00\xfe\x40\x20\x08\x04\xc1"
                   79928:             "\xf8\x0f" }  },
                   79929:       /* --- pixel bitmap for wncyr100 char#96 (noname) --- */
                   79930:       {  96,41469,                      /* character number, location */
                   79931:          10, 2,    6, 2,      /* topleft row,col, and botleft row,col */
                   79932:           {  1,    4, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79933:             "\x0f" }  },
                   79934:       /* --- pixel bitmap for wncyr100 char#97 a --- */
                   79935:       {  97,82597,                      /* character number, location */
                   79936:           6, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   79937:           {  7,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79938:             "\x0f\x88\x27\x12\xf5\x01" }  },
                   79939:       /* --- pixel bitmap for wncyr100 char#98 b --- */
                   79940:       {  98,83255,                      /* character number, location */
                   79941:           9, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   79942:           {  6,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79943:             "\xb0\x10\x7c\x61\x18\x86\x1e" }  },
                   79944:       /* --- pixel bitmap for wncyr100 char#99 ts --- */
                   79945:       {  99,89898,                      /* character number, location */
                   79946:           6, 0,   -4, 0,      /* topleft row,col, and botleft row,col */
                   79947:           { 10,   10, 3,24, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79948:             "\x03\x23\x20\xf3\x11\x41\x38\x20\xf1\xa0\x81\xa1" }  },
                   79949:       /* --- pixel bitmap for wncyr100 char#100 d --- */
                   79950:       { 100,90812,                      /* character number, location */
                   79951:           6,-2,   -4,-2,      /* topleft row,col, and botleft row,col */
                   79952:           { 12,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79953:             "\xf0\x03\x12\x20\x01\x12\x30\xc1\x3f\x04\x40\x00\x00"
                   79954:             "\x24\x80" }  },
                   79955:       /* --- pixel bitmap for wncyr100 char#101 e --- */
                   79956:       { 101,83973,                      /* character number, location */
                   79957:           6, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   79958:           {  6,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79959:             "\x5e\xf8\x07\xa3\x07" }  },
                   79960:       /* --- pixel bitmap for wncyr100 char#102 f --- */
                   79961:       { 102,84510,                      /* character number, location */
                   79962:           9, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   79963:           {  8,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79964:             "\x18\x00\x00\x7e\x81\x81\x81\x81\x7e\x00\x00\x18" }  },
                   79965:       /* --- pixel bitmap for wncyr100 char#103 g --- */
                   79966:       { 103,91918,                      /* character number, location */
                   79967:           6, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   79968:           {  7,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79969:             "\x7f\xa1\x50\x20\x78\x00" }  },
                   79970:       /* --- pixel bitmap for wncyr100 char#104 kh --- */
                   79971:       { 104,92950,                      /* character number, location */
                   79972:           6, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   79973:           {  8,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79974:             "\x67\x1c\x18\x18\x24\xe7" }  },
                   79975:       /* --- pixel bitmap for wncyr100 char#105 i --- */
                   79976:       { 105,94138,                      /* character number, location */
                   79977:           6, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   79978:           {  8,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79979:             "\xe7\x62\x52\x4a\x46\xe7" }  },
                   79980:       /* --- pixel bitmap for wncyr100 char#106 j --- */
                   79981:       { 106,85289,                      /* character number, location */
                   79982:          10,-1,   -3,-1,      /* topleft row,col, and botleft row,col */
                   79983:           {  4,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79984:             "\x08\x00\x8c\x88\x88\x88\x07" }  },
                   79985:       /* --- pixel bitmap for wncyr100 char#107 k --- */
                   79986:       { 107,110818,                     /* character number, location */
                   79987:           6, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   79988:           {  7,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79989:             "\x67\x91\x47\x26\x3e\x02" }  },
                   79990:       /* --- pixel bitmap for wncyr100 char#108 l --- */
                   79991:       { 108,94944,                      /* character number, location */
                   79992:           6, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   79993:           {  6,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79994:             "\xbf\x65\x59\xd3\x0e" }  },
                   79995:       /* --- pixel bitmap for wncyr100 char#109 m --- */
                   79996:       { 109,96209,                      /* character number, location */
                   79997:           6, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   79998:           {  9,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   79999:             "\xc7\x8d\xa9\x52\xa5\xea\x3a" }  },
                   80000:       /* --- pixel bitmap for wncyr100 char#110 n --- */
                   80001:       { 110,97382,                      /* character number, location */
                   80002:           6, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   80003:           {  8,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80004:             "\xe7\x42\x7e\x42\x42\xe7" }  },
                   80005:       /* --- pixel bitmap for wncyr100 char#111 o --- */
                   80006:       { 111,85950,                      /* character number, location */
                   80007:           6, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   80008:           {  6,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80009:             "\x5e\x18\x86\xa1\x07" }  },
                   80010:       /* --- pixel bitmap for wncyr100 char#112 p --- */
                   80011:       { 112,98446,                      /* character number, location */
                   80012:           6, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   80013:           {  8,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80014:             "\xff\x42\x42\x42\x42\xe7" }  },
                   80015:       /* --- pixel bitmap for wncyr100 char#113 ch --- */
                   80016:       { 113,99457,                      /* character number, location */
                   80017:           6, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   80018:           {  8,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80019:             "\xe7\x42\x42\x76\x40\xe0" }  },
                   80020:       /* --- pixel bitmap for wncyr100 char#114 r --- */
                   80021:       { 114,86998,                      /* character number, location */
                   80022:           6, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   80023:           {  6,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80024:             "\x9f\x28\x8a\xa2\x27\x08\x07" }  },
                   80025:       /* --- pixel bitmap for wncyr100 char#115 s --- */
                   80026:       { 115,87747,                      /* character number, location */
                   80027:           6, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   80028:           {  6,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80029:             "\x5e\x10\x04\xa1\x07" }  },
                   80030:       /* --- pixel bitmap for wncyr100 char#116 t --- */
                   80031:       { 116,100492,                     /* character number, location */
                   80032:           6, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   80033:           {  7,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80034:             "\xff\x64\x12\x81\xf0\x01" }  },
                   80035:       /* --- pixel bitmap for wncyr100 char#117 u --- */
                   80036:       { 117,88813,                      /* character number, location */
                   80037:           6, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   80038:           {  8,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80039:             "\xe7\x24\x24\x34\x18\x18\x08\x08\x07" }  },
                   80040:       /* --- pixel bitmap for wncyr100 char#118 v --- */
                   80041:       { 118,101758,                     /* character number, location */
                   80042:           6, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   80043:           {  6,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80044:             "\x9f\xe8\x8b\xe2\x07" }  },
                   80045:       /* --- pixel bitmap for wncyr100 char#119 shch --- */
                   80046:       { 119,103215,                     /* character number, location */
                   80047:           6, 0,   -4, 0,      /* topleft row,col, and botleft row,col */
                   80048:           { 13,   10, 3,28, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80049:             "\x03\x13\x13\x20\xf3\x11\x31\x31\x3b\x20\xf1\xd0\xb1"
                   80050:             "\xd1" }  },
                   80051:       /* --- pixel bitmap for wncyr100 char#120 sh --- */
                   80052:       { 120,104658,                     /* character number, location */
                   80053:           6, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   80054:           { 11,    6, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80055:             "\x03\x13\x13\xf3\x11\x31\x31\x1b" }  },
                   80056:       /* --- pixel bitmap for wncyr100 char#121 y --- */
                   80057:       { 121,106206,                     /* character number, location */
                   80058:           6, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   80059:           { 10,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80060:             "\x87\x0b\xe4\x91\x48\x22\x7d\x0e" }  },
                   80061:       /* --- pixel bitmap for wncyr100 char#122 z --- */
                   80062:       { 122,107184,                     /* character number, location */
                   80063:           6, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   80064:           {  6,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80065:             "\x8e\xc4\x81\xe1\x07" }  },
                   80066:       /* --- pixel bitmap for wncyr100 char#123 (noname) --- */
                   80067:       { 123,55907,                      /* character number, location */
                   80068:           4, 0,    3, 0,      /* topleft row,col, and botleft row,col */
                   80069:           {  8,    1, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80070:             "\xff" }  },
                   80071:       /* --- pixel bitmap for wncyr100 char#124 (noname) --- */
                   80072:       { 124,56701,                      /* character number, location */
                   80073:           4, 0,    3, 0,      /* topleft row,col, and botleft row,col */
                   80074:           { 15,    1, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80075:             "\xff\x7f" }  },
                   80076:       /* --- pixel bitmap for wncyr100 char#125 N0 --- */
                   80077:       { 125,57633,                      /* character number, location */
                   80078:           9, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   80079:           { 12,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80080:             "\x87\x40\x04\x4c\xc0\x64\x54\x4a\x45\x64\x4e\x06\x43"
                   80081:             "\x00" }  },
                   80082:       /* --- pixel bitmap for wncyr100 char#126 \cprime --- */
                   80083:       { 126,108438,                     /* character number, location */
                   80084:           6, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   80085:           {  6,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80086:             "\x87\xe0\x89\xe2\x07" }  },
                   80087:       /* --- pixel bitmap for wncyr100 char#127 \cdprime --- */
                   80088:       { 127,109858,                     /* character number, location */
                   80089:           6, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   80090:           {  8,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80091:             "\x1f\x09\x79\x88\x88\x7c" }  },
                   80092:       /* --- trailer  --- */
                   80093:       { -99, -999,  0,0,0,0, { 0,0,0,0, (pixbyte *)"\0" }  }
                   80094:    } ;
                   80095: 
                   80096: 
                   80097: /* --- size=2 for .118gf ---
                   80098:  * mf '\mode=preview; mag=magstep(-16.96645799324018499600); input wncyr10'
                   80099:  * --------------------------------------------------------------------- */
                   80100: /* --- fontdef for wncyr118 --- */
                   80101: static	chardef  wncyr118[] =
                   80102:    {
                   80103:       /* --- pixel bitmap for wncyr118 char#0 Nj --- */
                   80104:       {   0,61782,                      /* character number, location */
                   80105:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   80106:           { 17,   11, 3,41, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80107:             "\x05\x15\x60\xf3\x21\x51\x80\x2e\x31\x51\x62\xf1\x21"
                   80108:             "\x51\x71\x21\x51\x61\x15\x19\x21" }  },
                   80109:       /* --- pixel bitmap for wncyr118 char#1 Lj --- */
                   80110:       {   1,62770,                      /* character number, location */
                   80111:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   80112:           { 17,   11, 3,43, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80113:             "\x2a\x50\xf3\x41\x41\x70\x41\x47\x51\x41\x52\x32\x41"
                   80114:             "\x63\x12\x41\x65\x51\x51\x22\x48\x21" }  },
                   80115:       /* --- pixel bitmap for wncyr118 char#2 Dzh --- */
                   80116:       {   2,63853,                      /* character number, location */
                   80117:          11, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   80118:           { 11,   14, 3,17, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80119:             "\x05\x15\xf8\x21\x51\x2b\xf2\x51\x51" }  },
                   80120:       /* --- pixel bitmap for wncyr118 char#3 \`E --- */
                   80121:       {   3,64813,                      /* character number, location */
                   80122:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   80123:           { 11,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80124:             "\x79\x38\x4c\x80\xc2\x09\xff\x1f\x7a\x30\x80\x01\x12"
                   80125:             "\x0c\x1f\x00" }  },
                   80126:       /* --- pixel bitmap for wncyr118 char#4 \=I --- */
                   80127:       {   4,73533,                      /* character number, location */
                   80128:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   80129:           {  5,   11, 3, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80130:             "\x05\xf8\x21\x25" }  },
                   80131:       /* --- pixel bitmap for wncyr118 char#5 \=E --- */
                   80132:       {   5,65766,                      /* character number, location */
                   80133:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   80134:           { 11,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80135:             "\xf0\x64\xb8\x00\x73\xf8\x87\xf0\x07\x2f\x80\x02\x64"
                   80136:             "\x10\x7c\x00" }  },
                   80137:       /* --- pixel bitmap for wncyr118 char#6 Dj --- */
                   80138:       {   6,74681,                      /* character number, location */
                   80139:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   80140:           { 12,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80141:             "\xff\x17\x42\x21\x04\x02\xa0\x07\x46\x30\x08\x82\x20"
                   80142:             "\x08\x42\xf8\x07" }  },
                   80143:       /* --- pixel bitmap for wncyr118 char#7 \'C --- */
                   80144:       {   7,76024,                      /* character number, location */
                   80145:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   80146:           { 12,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80147:             "\xff\x13\x21\x11\x02\x01\xd0\x03\x23\x10\x04\x41\x10"
                   80148:             "\x04\x41\x3c\x0f" }  },
                   80149:       /* --- pixel bitmap for wncyr118 char#8 nj --- */
                   80150:       {   8,115927,                     /* character number, location */
                   80151:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   80152:           { 11,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80153:             "\x77\x10\x81\x08\xfc\x27\x42\x11\xde\x0f" }  },
                   80154:       /* --- pixel bitmap for wncyr118 char#9 lj --- */
                   80155:       {   9,116869,                     /* character number, location */
                   80156:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   80157:           { 11,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80158:             "\xfe\x60\x02\x13\x98\xf7\xc4\x23\x9e\x0f" }  },
                   80159:       /* --- pixel bitmap for wncyr118 char#10 dzh --- */
                   80160:       {  10,117930,                     /* character number, location */
                   80161:           7, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   80162:           {  7,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80163:             "\x77\x91\x48\x24\x12\xfd\x11\x08" }  },
                   80164:       /* --- pixel bitmap for wncyr118 char#11 \`e --- */
                   80165:       {  11,118846,                     /* character number, location */
                   80166:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   80167:           {  7,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80168:             "\x9f\x10\xff\x6f\x0c\x79\x00" }  },
                   80169:       /* --- pixel bitmap for wncyr118 char#12 \=\i --- */
                   80170:       {  12,79654,                      /* character number, location */
                   80171:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   80172:           {  3,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80173:             "\x1b\x80\x49\x92\x0e" }  },
                   80174:       /* --- pixel bitmap for wncyr118 char#13 \=e --- */
                   80175:       {  13,119751,                     /* character number, location */
                   80176:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   80177:           {  7,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80178:             "\x7c\xe1\xe7\x1f\x13\xf2\x00" }  },
                   80179:       /* --- pixel bitmap for wncyr118 char#14 dj --- */
                   80180:       {  14,80648,                      /* character number, location */
                   80181:          11, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   80182:           {  8,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80183:             "\x06\xff\x04\x04\x7c\x8c\x84\x04\x84\x84\x8e\x40\x20"
                   80184:             "\x18" }  },
                   80185:       /* --- pixel bitmap for wncyr118 char#15 \'c --- */
                   80186:       {  15,81712,                      /* character number, location */
                   80187:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   80188:           {  9,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80189:             "\x06\xfe\x11\x20\x40\x87\x11\x21\x42\x84\x08\x39\x07" }  },
                   80190:       /* --- pixel bitmap for wncyr118 char#16 Yu --- */
                   80191:       {  16,66918,                      /* character number, location */
                   80192:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   80193:           { 18,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80194:             "\x0f\x3c\x10\x0c\x43\x08\x10\x11\x80\x44\x00\xf2\x01"
                   80195:             "\x48\x04\x20\x31\xc0\x84\x00\x11\x0c\xf3\xe0\x07" }  },
                   80196:       /* --- pixel bitmap for wncyr118 char#17 Zh --- */
                   80197:       {  17,60424,                      /* character number, location */
                   80198:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   80199:           { 17,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80200:             "\xc3\x87\x05\x02\x11\x04\x41\x08\x01\xff\x01\xfe\x03"
                   80201:             "\x43\x18\x82\x20\x05\x41\x0f\x82\x0f\x1f\x06" }  },
                   80202:       /* --- pixel bitmap for wncyr118 char#18 \u I --- */
                   80203:       {  18,68415,                      /* character number, location */
                   80204:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   80205:           { 12,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80206:             "\x0c\xc6\x60\xf8\x01\x00\x9f\x4f\x30\x04\x42\x28\x44"
                   80207:             "\x42\x20\x24\x42\x21\x04\xc2\x20\x9f\x0f" }  },
                   80208:       /* --- pixel bitmap for wncyr118 char#19 \"E --- */
                   80209:       {  19,77436,                      /* character number, location */
                   80210:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   80211:           { 11,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80212:             "\xcc\x60\x06\x00\x00\xf0\x3f\x82\x11\x88\x48\x44\xe0"
                   80213:             "\x03\x11\x89\x48\x20\x82\xfd\x0f" }  },
                   80214:       /* --- pixel bitmap for wncyr118 char#20 (noname) --- */
                   80215:       {  20,69378,                      /* character number, location */
                   80216:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   80217:           { 12,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80218:             "\x0f\x4c\xa0\x04\x82\x10\x08\x81\x10\x90\x00\x09\x50"
                   80219:             "\x00\x06\x20\x00" }  },
                   80220:       /* --- pixel bitmap for wncyr118 char#21 (noname) --- */
                   80221:       {  21,70526,                      /* character number, location */
                   80222:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   80223:           { 12,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80224:             "\xf0\x80\x19\x08\x41\x20\x04\xf2\xff\x05\x4a\x20\x08"
                   80225:             "\x81\x19\xf0\x00" }  },
                   80226:       /* --- pixel bitmap for wncyr118 char#22 \Dz --- */
                   80227:       {  22,71584,                      /* character number, location */
                   80228:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   80229:           {  8,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80230:             "\xbc\xc2\x81\x01\x06\x38\x40\x80\x81\x41\x3f" }  },
                   80231:       /* --- pixel bitmap for wncyr118 char#23 Ya --- */
                   80232:       {  23,72870,                      /* character number, location */
                   80233:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   80234:           { 12,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80235:             "\xf0\x8f\x20\x04\x42\x20\x08\x02\x3f\x18\x82\x20\x08"
                   80236:             "\x82\x20\x87\x0f" }  },
                   80237:       /* --- pixel bitmap for wncyr118 char#24 yu --- */
                   80238:       {  24,120881,                     /* character number, location */
                   80239:           7, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   80240:           { 12,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80241:             "\x8f\x43\x44\x24\xc8\x83\x24\x48\x44\x8f\x03" }  },
                   80242:       /* --- pixel bitmap for wncyr118 char#25 zh --- */
                   80243:       {  25,114597,                     /* character number, location */
                   80244:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   80245:           { 11,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80246:             "\x73\x16\x11\x7f\xf8\x23\xa2\x11\xcf\x19" }  },
                   80247:       /* --- pixel bitmap for wncyr118 char#26 \u\i --- */
                   80248:       {  26,122354,                     /* character number, location */
                   80249:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   80250:           {  8,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80251:             "\x66\x66\x3c\x00\xe7\x62\x52\x42\x4a\x46\xe7" }  },
                   80252:       /* --- pixel bitmap for wncyr118 char#27 \"e --- */
                   80253:       {  27,82489,                      /* character number, location */
                   80254:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   80255:           {  6,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80256:             "\x33\x00\x70\xe2\x1f\x04\x22\x07" }  },
                   80257:       /* --- pixel bitmap for wncyr118 char#28 (noname) --- */
                   80258:       {  28,123271,                     /* character number, location */
                   80259:           7, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   80260:           {  8,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80261:             "\xc7\xc4\x24\x24\x28\x18\x18" }  },
                   80262:       /* --- pixel bitmap for wncyr118 char#29 (noname) --- */
                   80263:       {  29,124375,                     /* character number, location */
                   80264:           7, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   80265:           {  9,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80266:             "\x38\xd8\x10\xf9\x5f\x94\x08\x0e" }  },
                   80267:       /* --- pixel bitmap for wncyr118 char#30 \dz --- */
                   80268:       {  30,125391,                     /* character number, location */
                   80269:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   80270:           {  5,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80271:             "\x3e\x04\x07\xe1\x03" }  },
                   80272:       /* --- pixel bitmap for wncyr118 char#31 ya --- */
                   80273:       {  31,126633,                     /* character number, location */
                   80274:           7, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   80275:           {  8,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80276:             "\xf8\x44\x44\x78\x44\x44\xe7" }  },
                   80277:       /* --- pixel bitmap for wncyr118 char#32 \cyddot --- */
                   80278:       {  32,52275,                      /* character number, location */
                   80279:          12, 2,   10, 2,      /* topleft row,col, and botleft row,col */
                   80280:           {  5,    2, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80281:             "\x7b\x03" }  },
                   80282:       /* --- pixel bitmap for wncyr118 char#33 (noname) --- */
                   80283:       {  33,32986,                      /* character number, location */
                   80284:          11, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   80285:           {  2,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80286:             "\xff\x0f\x3c" }  },
                   80287:       /* --- pixel bitmap for wncyr118 char#34 (noname) --- */
                   80288:       {  34,53148,                      /* character number, location */
                   80289:          11, 1,    6, 1,      /* topleft row,col, and botleft row,col */
                   80290:           {  6,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80291:             "\xf3\x2c\x8a\x11" }  },
                   80292:       /* --- pixel bitmap for wncyr118 char#35 (noname) --- */
                   80293:       {  35,78941,                      /* character number, location */
                   80294:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   80295:           { 12,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80296:             "\x3e\x80\x00\xff\x93\x20\x08\x80\x3f\x08\x86\x80\x08"
                   80297:             "\x88\x80\x08\xe4\x3f" }  },
                   80298:       /* --- pixel bitmap for wncyr118 char#36 (noname) --- */
                   80299:       {  36,53854,                      /* character number, location */
                   80300:          11, 0,    8, 0,      /* topleft row,col, and botleft row,col */
                   80301:           {  8,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80302:             "\xc3\xc3\x7e" }  },
                   80303:       /* --- pixel bitmap for wncyr118 char#37 (noname) --- */
                   80304:       {  37,34169,                      /* character number, location */
                   80305:          12, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   80306:           { 13,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80307:             "\x0e\x48\x83\xc4\x9f\x08\x11\x11\x14\x81\xa3\x03\x52"
                   80308:             "\x20\x11\x22\x42\x44\x04\x45\xe0\x00" }  },
                   80309:       /* --- pixel bitmap for wncyr118 char#38 (noname) --- */
                   80310:       {  38,54427,                      /* character number, location */
                   80311:          11, 4,    8, 4,      /* topleft row,col, and botleft row,col */
                   80312:           {  3,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80313:             "\x5c\x00" }  },
                   80314:       /* --- pixel bitmap for wncyr118 char#39 (noname) --- */
                   80315:       {  39,34801,                      /* character number, location */
                   80316:          11, 2,    6, 2,      /* topleft row,col, and botleft row,col */
                   80317:           {  2,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80318:             "\xaf\x01" }  },
                   80319:       /* --- pixel bitmap for wncyr118 char#40 (noname) --- */
                   80320:       {  40,35373,                      /* character number, location */
                   80321:          12, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   80322:           {  5,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80323:             "\x10\x11\x21\x42\x08\x21\x08\x41\x10\x04" }  },
                   80324:       /* --- pixel bitmap for wncyr118 char#41 (noname) --- */
                   80325:       {  41,35966,                      /* character number, location */
                   80326:          12, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   80327:           {  5,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80328:             "\x41\x10\x84\x20\x84\x10\x22\x44\x44\x00" }  },
                   80329:       /* --- pixel bitmap for wncyr118 char#42 (noname) --- */
                   80330:       {  42,36583,                      /* character number, location */
                   80331:          12, 1,    5, 1,      /* topleft row,col, and botleft row,col */
                   80332:           {  6,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80333:             "\x08\xe2\x73\x3e\x82\x00" }  },
                   80334:       /* --- pixel bitmap for wncyr118 char#43 (noname) --- */
                   80335:       {  43,83294,                      /* character number, location */
                   80336:          12, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   80337:           {  9,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80338:             "\x0a\x08\x10\x20\xf0\x83\x00\x1f\xc2\x04\x09\x12\xf6"
                   80339:             "\x03" }  },
                   80340:       /* --- pixel bitmap for wncyr118 char#44 (noname) --- */
                   80341:       {  44,37152,                      /* character number, location */
                   80342:           2, 2,   -3, 2,      /* topleft row,col, and botleft row,col */
                   80343:           {  2,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80344:             "\xaf\x01" }  },
                   80345:       /* --- pixel bitmap for wncyr118 char#45 (noname) --- */
                   80346:       {  45,37641,                      /* character number, location */
                   80347:           4, 0,    3, 0,      /* topleft row,col, and botleft row,col */
                   80348:           {  5,    1, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80349:             "\x1f" }  },
                   80350:       /* --- pixel bitmap for wncyr118 char#46 (noname) --- */
                   80351:       {  46,38096,                      /* character number, location */
                   80352:           2, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   80353:           {  2,    2, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80354:             "\x0f" }  },
                   80355:       /* --- pixel bitmap for wncyr118 char#47 (noname) --- */
                   80356:       {  47,38602,                      /* character number, location */
                   80357:          12, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   80358:           {  7,   16, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80359:             "\x40\x20\x08\x04\x81\x40\x10\x08\x02\x81\x20\x10\x04"
                   80360:             "\x02" }  },
                   80361:       /* --- pixel bitmap for wncyr118 char#48 (noname) --- */
                   80362:       {  48,43341,                      /* character number, location */
                   80363:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   80364:           {  7,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80365:             "\x1c\x51\x30\x18\x0c\x06\x83\x41\x11\x07" }  },
                   80366:       /* --- pixel bitmap for wncyr118 char#49 (noname) --- */
                   80367:       {  49,44103,                      /* character number, location */
                   80368:          11, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   80369:           {  5,   11, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80370:             "\x21\x23\x20\xf7\x21\x25" }  },
                   80371:       /* --- pixel bitmap for wncyr118 char#50 (noname) --- */
                   80372:       {  50,45066,                      /* character number, location */
                   80373:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   80374:           {  7,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80375:             "\x1c\x51\x30\x08\x04\x41\x10\x44\xe1\x1f" }  },
                   80376:       /* --- pixel bitmap for wncyr118 char#51 (noname) --- */
                   80377:       {  51,46088,                      /* character number, location */
                   80378:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   80379:           {  7,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80380:             "\x9e\x70\x10\x08\xe2\x80\x80\xc1\x11\x07" }  },
                   80381:       /* --- pixel bitmap for wncyr118 char#52 (noname) --- */
                   80382:       {  52,46996,                      /* character number, location */
                   80383:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   80384:           {  8,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80385:             "\x30\x30\x28\x24\x22\x23\xff\x20\x20\x20\xf8" }  },
                   80386:       /* --- pixel bitmap for wncyr118 char#53 (noname) --- */
                   80387:       {  53,48016,                      /* character number, location */
                   80388:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   80389:           {  7,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80390:             "\x22\x8f\x40\xe0\x11\x01\x81\xc1\x90\x07" }  },
                   80391:       /* --- pixel bitmap for wncyr118 char#54 (noname) --- */
                   80392:       {  54,48892,                      /* character number, location */
                   80393:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   80394:           {  7,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80395:             "\x38\xa2\x20\xd0\x19\x05\x83\x41\x11\x07" }  },
                   80396:       /* --- pixel bitmap for wncyr118 char#55 (noname) --- */
                   80397:       {  55,49776,                      /* character number, location */
                   80398:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   80399:           {  8,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80400:             "\x01\xff\x81\x41\x20\x10\x10\x08\x08\x08\x08\x08" }  },
                   80401:       /* --- pixel bitmap for wncyr118 char#56 (noname) --- */
                   80402:       {  56,50684,                      /* character number, location */
                   80403:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   80404:           {  7,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80405:             "\xbe\x60\x50\x48\xe3\x88\x82\x41\x11\x07" }  },
                   80406:       /* --- pixel bitmap for wncyr118 char#57 (noname) --- */
                   80407:       {  57,51568,                      /* character number, location */
                   80408:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   80409:           {  7,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80410:             "\x1c\x51\x30\x18\x14\x73\x81\xa0\x88\x03" }  },
                   80411:       /* --- pixel bitmap for wncyr118 char#58 (noname) --- */
                   80412:       {  58,39180,                      /* character number, location */
                   80413:           7, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   80414:           {  2,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80415:             "\x0f\x3c" }  },
                   80416:       /* --- pixel bitmap for wncyr118 char#59 (noname) --- */
                   80417:       {  59,39843,                      /* character number, location */
                   80418:           7, 2,   -3, 2,      /* topleft row,col, and botleft row,col */
                   80419:           {  2,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80420:             "\x0f\xbc\x06" }  },
                   80421:       /* --- pixel bitmap for wncyr118 char#60 < --- */
                   80422:       {  60,55041,                      /* character number, location */
                   80423:           7, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   80424:           {  9,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80425:             "\x30\x11\x91\x99\x41\x06\x11\x4c" }  },
                   80426:       /* --- pixel bitmap for wncyr118 char#61 (noname) --- */
                   80427:       {  61,84001,                      /* character number, location */
                   80428:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   80429:           {  3,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80430:             "\x93\x24\x1d" }  },
                   80431:       /* --- pixel bitmap for wncyr118 char#62 > --- */
                   80432:       {  62,55588,                      /* character number, location */
                   80433:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   80434:           {  9,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80435:             "\x19\x44\x30\xc1\xcc\x44\x44\x06" }  },
                   80436:       /* --- pixel bitmap for wncyr118 char#63 (noname) --- */
                   80437:       {  63,40726,                      /* character number, location */
                   80438:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   80439:           {  7,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80440:             "\xbe\x20\x18\x82\x60\x00\x00\x00\x06\x03" }  },
                   80441:       /* --- pixel bitmap for wncyr118 char#64 (noname) --- */
                   80442:       {  64,56226,                      /* character number, location */
                   80443:          11, 2,    8, 2,      /* topleft row,col, and botleft row,col */
                   80444:           {  5,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80445:             "\x31\x3a" }  },
                   80446:       /* --- pixel bitmap for wncyr118 char#65 A --- */
                   80447:       {  65,23735,                      /* character number, location */
                   80448:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   80449:           { 12,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80450:             "\x20\x00\x05\x50\x00\x05\x88\x80\x08\xf8\x40\x10\x04"
                   80451:             "\x21\x20\x8f\x0f" }  },
                   80452:       /* --- pixel bitmap for wncyr118 char#66 B --- */
                   80453:       {  66,25079,                      /* character number, location */
                   80454:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   80455:           { 11,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80456:             "\xff\x23\x18\x81\x08\x44\x00\xfe\x11\x98\x80\x04\x24"
                   80457:             "\xd0\x7f\x00" }  },
                   80458:       /* --- pixel bitmap for wncyr118 char#67 Ts --- */
                   80459:       {  67, 1087,                      /* character number, location */
                   80460:          11, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   80461:           { 12,   13, 3,18, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80462:             "\x05\x15\x10\xf8\x21\x51\x3b\xb1\xc1" }  },
                   80463:       /* --- pixel bitmap for wncyr118 char#68 D --- */
                   80464:       {  68, 2071,                      /* character number, location */
                   80465:          11,-1,   -2,-1,      /* topleft row,col, and botleft row,col */
                   80466:           { 15,   13, 3,38, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80467:             "\x4a\x10\xf4\x61\x41\x30\xf1\x52\x41\x30\x51\x51\x72"
                   80468:             "\x51\x5c\x22\xa1\x11\xd1" }  },
                   80469:       /* --- pixel bitmap for wncyr118 char#69 E --- */
                   80470:       {  69,26460,                      /* character number, location */
                   80471:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   80472:           { 11,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80473:             "\xff\x23\x18\x81\x88\x44\x04\x3e\x10\x91\x88\x04\x22"
                   80474:             "\xd8\xff\x00" }  },
                   80475:       /* --- pixel bitmap for wncyr118 char#70 F --- */
                   80476:       {  70,27513,                      /* character number, location */
                   80477:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   80478:           { 11,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80479:             "\xf8\x00\x01\x08\xf8\x33\xe2\x10\x8e\x98\x3f\x20\x00"
                   80480:             "\x01\x3e\x00" }  },
                   80481:       /* --- pixel bitmap for wncyr118 char#71 G --- */
                   80482:       {  71, 3221,                      /* character number, location */
                   80483:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   80484:           { 10,   11, 3,19, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80485:             "\x0a\x21\x52\xf1\x21\x61\xf5\x21\x75\x50" }  },
                   80486:       /* --- pixel bitmap for wncyr118 char#72 Kh --- */
                   80487:       {  72, 4291,                      /* character number, location */
                   80488:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   80489:           { 13,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80490:             "\x1e\x0f\x61\x40\x04\x50\x00\x06\x80\x00\x28\x80\x08"
                   80491:             "\x18\x03\x41\x3c\x78" }  },
                   80492:       /* --- pixel bitmap for wncyr118 char#73 I --- */
                   80493:       {  73, 5501,                      /* character number, location */
                   80494:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   80495:           { 12,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80496:             "\x9f\x4f\x30\x04\x42\x28\x44\x42\x20\x24\x42\x21\x04"
                   80497:             "\xc2\x20\x9f\x0f" }  },
                   80498:       /* --- pixel bitmap for wncyr118 char#74 J --- */
                   80499:       {  74,28324,                      /* character number, location */
                   80500:          11, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   80501:           {  6,   11, 3,13, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80502:             "\x24\xf7\x41\x11\x31\x23\x22" }  },
                   80503:       /* --- pixel bitmap for wncyr118 char#75 K --- */
                   80504:       {  75,22687,                      /* character number, location */
                   80505:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   80506:           { 11,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80507:             "\x1f\x26\x10\x41\x08\xc1\x07\x3e\x10\x86\x20\x04\x25"
                   80508:             "\xf8\x87\x01" }  },
                   80509:       /* --- pixel bitmap for wncyr118 char#76 L --- */
                   80510:       {  76, 6357,                      /* character number, location */
                   80511:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   80512:           { 12,   11, 3,30, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80513:             "\x2a\xf2\x41\x41\x20\xf3\x32\x41\x20\x31\x51\x24\x51"
                   80514:             "\x23\x45" }  },
                   80515:       /* --- pixel bitmap for wncyr118 char#77 M --- */
                   80516:       {  77, 7642,                      /* character number, location */
                   80517:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   80518:           { 16,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80519:             "\x0f\xf0\x0c\x30\x14\x28\x14\x28\x24\x24\x24\x24\x24"
                   80520:             "\x24\x44\x22\x44\x22\x84\x21\x9f\xf9" }  },
                   80521:       /* --- pixel bitmap for wncyr118 char#78 N --- */
                   80522:       {  78, 8853,                      /* character number, location */
                   80523:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   80524:           { 11,   11, 3,26, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80525:             "\x05\x15\xf3\x21\x51\x20\x27\x20\xf3\x21\x51\x25\x15" }  },
                   80526:       /* --- pixel bitmap for wncyr118 char#79 O --- */
                   80527:       {  79,29143,                      /* character number, location */
                   80528:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   80529:           { 12,   11, 3,31, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80530:             "\x44\x62\x42\x31\x81\x1f\x31\xa1\x02\x82\x11\x81\x32"
                   80531:             "\x42\x56\x31" }  },
                   80532:       /* --- pixel bitmap for wncyr118 char#80 P --- */
                   80533:       {  80, 9937,                      /* character number, location */
                   80534:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   80535:           { 11,   11, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80536:             "\x0b\xf8\x21\x51\x25\x15" }  },
                   80537:       /* --- pixel bitmap for wncyr118 char#81 Ch --- */
                   80538:       {  81,10968,                      /* character number, location */
                   80539:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   80540:           { 12,   11, 3,30, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80541:             "\x05\x25\xf3\x21\x61\x20\x22\x42\x63\x21\x20\xf2\x91"
                   80542:             "\x20\x75" }  },
                   80543:       /* --- pixel bitmap for wncyr118 char#82 R --- */
                   80544:       {  82,30258,                      /* character number, location */
                   80545:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   80546:           { 10,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80547:             "\xff\x10\x44\x20\x81\x04\xf1\x43\x00\x01\x04\x10\xf0"
                   80548:             "\x01" }  },
                   80549:       /* --- pixel bitmap for wncyr118 char#83 S --- */
                   80550:       {  83,31183,                      /* character number, location */
                   80551:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   80552:           { 11,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80553:             "\xf0\x64\xb8\x00\x03\x18\x80\x00\x04\x20\x80\x02\x64"
                   80554:             "\x10\x7c\x00" }  },
                   80555:       /* --- pixel bitmap for wncyr118 char#84 T --- */
                   80556:       {  84,12045,                      /* character number, location */
                   80557:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   80558:           { 11,   11, 3,19, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80559:             "\x0b\x0f\x21\x41\x41\xf5\x51\x50\x35\x31" }  },
                   80560:       /* --- pixel bitmap for wncyr118 char#85 U --- */
                   80561:       {  85,32375,                      /* character number, location */
                   80562:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   80563:           { 13,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80564:             "\x0f\x9e\xc0\x20\x08\x84\x01\x11\x40\x01\x38\x00\x02"
                   80565:             "\x62\x40\x04\x70\x00" }  },
                   80566:       /* --- pixel bitmap for wncyr118 char#86 V --- */
                   80567:       {  86,13351,                      /* character number, location */
                   80568:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   80569:           { 11,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80570:             "\xff\x20\x18\x81\x08\x44\x10\xfe\x11\x98\x80\x04\x24"
                   80571:             "\xd0\x7f\x00" }  },
                   80572:       /* --- pixel bitmap for wncyr118 char#87 Shch --- */
                   80573:       {  87,14828,                      /* character number, location */
                   80574:          11, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   80575:           { 18,   13, 3,28, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80576:             "\x05\x15\x15\x10\xf8\x21\x51\x51\x3e\x03\xe0\x31\xe0"
                   80577:             "\x41" }  },
                   80578:       /* --- pixel bitmap for wncyr118 char#88 Sh --- */
                   80579:       {  88,16299,                      /* character number, location */
                   80580:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   80581:           { 17,   11, 3,18, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80582:             "\x05\x15\x15\xf8\x21\x51\x51\x2e\x03" }  },
                   80583:       /* --- pixel bitmap for wncyr118 char#89 Y --- */
                   80584:       {  89,17877,                      /* character number, location */
                   80585:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   80586:           { 16,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80587:             "\x1f\xf0\x04\x20\x04\x20\x04\x20\x04\x20\xfc\x23\x04"
                   80588:             "\x26\x04\x24\x04\x24\x04\x22\xff\xf1" }  },
                   80589:       /* --- pixel bitmap for wncyr118 char#90 Z --- */
                   80590:       {  90,18905,                      /* character number, location */
                   80591:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   80592:           {  9,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80593:             "\x7f\x02\x05\x04\x08\x8c\x0f\x20\x80\x01\x03\xfd\x01" }  },
                   80594:       /* --- pixel bitmap for wncyr118 char#91 (noname) --- */
                   80595:       {  91,41393,                      /* character number, location */
                   80596:          12, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   80597:           {  4,   16, 3, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80598:             "\x04\x0f\xd1\x34" }  },
                   80599:       /* --- pixel bitmap for wncyr118 char#92 (noname) --- */
                   80600:       {  92,57101,                      /* character number, location */
                   80601:          11, 2,    6, 2,      /* topleft row,col, and botleft row,col */
                   80602:           {  6,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80603:             "\x62\x14\xcd\x33" }  },
                   80604:       /* --- pixel bitmap for wncyr118 char#93 (noname) --- */
                   80605:       {  93,42073,                      /* character number, location */
                   80606:          12, 0,   -4, 0,      /* topleft row,col, and botleft row,col */
                   80607:           {  4,   16, 3, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80608:             "\x04\xfd\x31\x04" }  },
                   80609:       /* --- pixel bitmap for wncyr118 char#94 \Cprime --- */
                   80610:       {  94,20199,                      /* character number, location */
                   80611:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   80612:           { 11,   11, 3,29, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80613:             "\x05\x60\xf3\x21\x80\x28\x31\x62\xf1\x21\x71\x21\x61"
                   80614:             "\x19\x21" }  },
                   80615:       /* --- pixel bitmap for wncyr118 char#95 \Cdprime --- */
                   80616:       {  95,21685,                      /* character number, location */
                   80617:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   80618:           { 15,   11, 3,35, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80619:             "\x08\x72\x41\x8f\x11\x51\x80\x61\xe8\x71\x62\xf1\x61"
                   80620:             "\x71\x61\x61\x59\x21" }  },
                   80621:       /* --- pixel bitmap for wncyr118 char#96 (noname) --- */
                   80622:       {  96,42673,                      /* character number, location */
                   80623:          11, 2,    6, 2,      /* topleft row,col, and botleft row,col */
                   80624:           {  2,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80625:             "\xd6\x03" }  },
                   80626:       /* --- pixel bitmap for wncyr118 char#97 a --- */
                   80627:       {  97,85115,                      /* character number, location */
                   80628:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   80629:           {  8,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80630:             "\x1e\x20\x3c\x22\x21\xa1\x7e" }  },
                   80631:       /* --- pixel bitmap for wncyr118 char#98 b --- */
                   80632:       {  98,85803,                      /* character number, location */
                   80633:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   80634:           {  8,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80635:             "\x80\xf0\x06\x03\x3d\x43\x81\x81\x81\x42\x3c" }  },
                   80636:       /* --- pixel bitmap for wncyr118 char#99 ts --- */
                   80637:       {  99,92620,                      /* character number, location */
                   80638:           7, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   80639:           {  9,   11, 3,24, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80640:             "\x03\x13\x20\xf4\x11\x31\x37\xb0\xf1\x71\x10\x81" }  },
                   80641:       /* --- pixel bitmap for wncyr118 char#100 d --- */
                   80642:       { 100,93540,                      /* character number, location */
                   80643:           7,-2,   -4,-2,      /* topleft row,col, and botleft row,col */
                   80644:           { 13,   11, 3,30, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80645:             "\x47\x20\xf3\x52\x21\x30\x51\x31\x59\x41\xc1\x81\xc1"
                   80646:             "\x21\xa1" }  },
                   80647:       /* --- pixel bitmap for wncyr118 char#101 e --- */
                   80648:       { 101,86555,                      /* character number, location */
                   80649:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   80650:           {  6,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80651:             "\x9c\xf8\x07\x81\xc8\x01" }  },
                   80652:       /* --- pixel bitmap for wncyr118 char#102 f --- */
                   80653:       { 102,87120,                      /* character number, location */
                   80654:          10, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   80655:           { 10,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80656:             "\x30\x00\x00\x80\x73\x31\x06\x18\x60\x80\x31\x3a\x07"
                   80657:             "\x00\x00\x30\x00" }  },
                   80658:       /* --- pixel bitmap for wncyr118 char#103 g --- */
                   80659:       { 103,94678,                      /* character number, location */
                   80660:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   80661:           {  6,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80662:             "\xbf\x28\x0a\x82\xf0\x00" }  },
                   80663:       /* --- pixel bitmap for wncyr118 char#104 kh --- */
                   80664:       { 104,95712,                      /* character number, location */
                   80665:           7, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   80666:           {  9,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80667:             "\xef\x50\xe0\x80\x80\x82\xc8\x7b" }  },
                   80668:       /* --- pixel bitmap for wncyr118 char#105 i --- */
                   80669:       { 105,96906,                      /* character number, location */
                   80670:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   80671:           {  8,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80672:             "\xe7\x62\x52\x42\x4a\x46\xe7" }  },
                   80673:       /* --- pixel bitmap for wncyr118 char#106 j --- */
                   80674:       { 106,87911,                      /* character number, location */
                   80675:          12,-1,   -3,-1,      /* topleft row,col, and botleft row,col */
                   80676:           {  5,   15, 3,17, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80677:             "\xf1\x32\xf2\x50\x23\xf7\x41\x04\x11" }  },
                   80678:       /* --- pixel bitmap for wncyr118 char#107 k --- */
                   80679:       { 107,113718,                     /* character number, location */
                   80680:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   80681:           {  7,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80682:             "\x67\x91\xc7\x23\x12\x9f\x01" }  },
                   80683:       /* --- pixel bitmap for wncyr118 char#108 l --- */
                   80684:       { 108,97742,                      /* character number, location */
                   80685:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   80686:           {  8,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80687:             "\xfe\x4c\x4c\x4c\x44\x47\xe3" }  },
                   80688:       /* --- pixel bitmap for wncyr118 char#109 m --- */
                   80689:       { 109,99011,                      /* character number, location */
                   80690:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   80691:           {  9,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80692:             "\xc7\x8d\x19\x53\xa5\x4a\xd5\x75" }  },
                   80693:       /* --- pixel bitmap for wncyr118 char#110 n --- */
                   80694:       { 110,100188,                     /* character number, location */
                   80695:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   80696:           {  7,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80697:             "\x77\x91\xc8\x27\x12\xdd\x01" }  },
                   80698:       /* --- pixel bitmap for wncyr118 char#111 o --- */
                   80699:       { 111,88602,                      /* character number, location */
                   80700:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   80701:           {  7,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80702:             "\x1c\x51\x30\x18\x14\x71\x00" }  },
                   80703:       /* --- pixel bitmap for wncyr118 char#112 p --- */
                   80704:       { 112,101256,                     /* character number, location */
                   80705:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   80706:           {  7,    7, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80707:             "\x07\xf4\x11\x31\x13\x13" }  },
                   80708:       /* --- pixel bitmap for wncyr118 char#113 ch --- */
                   80709:       { 113,102271,                     /* character number, location */
                   80710:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   80711:           {  8,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80712:             "\xe7\x42\x42\x66\x5c\x40\xe0" }  },
                   80713:       /* --- pixel bitmap for wncyr118 char#114 r --- */
                   80714:       { 114,89680,                      /* character number, location */
                   80715:           7, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   80716:           {  8,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80717:             "\x3b\x46\x82\x82\x82\x46\x3a\x02\x02\x07" }  },
                   80718:       /* --- pixel bitmap for wncyr118 char#115 s --- */
                   80719:       { 115,90463,                      /* character number, location */
                   80720:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   80721:           {  7,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80722:             "\x3c\x41\x20\x10\x10\xf2\x00" }  },
                   80723:       /* --- pixel bitmap for wncyr118 char#116 t --- */
                   80724:       { 116,103310,                     /* character number, location */
                   80725:           7, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   80726:           {  9,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80727:             "\xff\x23\x46\x84\x00\x01\x02\x1f" }  },
                   80728:       /* --- pixel bitmap for wncyr118 char#117 u --- */
                   80729:       { 117,91531,                      /* character number, location */
                   80730:           7, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   80731:           { 10,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80732:             "\xcf\x13\x42\x0c\x12\x48\xc0\x00\x03\x04\x10\x3c\x00" }  },
                   80733:       /* --- pixel bitmap for wncyr118 char#118 v --- */
                   80734:       { 118,104604,                     /* character number, location */
                   80735:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   80736:           {  7,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80737:             "\x3f\xa1\xd0\x27\x14\xfe\x00" }  },
                   80738:       /* --- pixel bitmap for wncyr118 char#119 shch --- */
                   80739:       { 119,106065,                     /* character number, location */
                   80740:           7, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   80741:           { 13,   11, 3,30, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80742:             "\x03\x13\x13\x20\xf4\x11\x31\x31\x3b\xe0\x10\xf1\xb1"
                   80743:             "\x10\xc1" }  },
                   80744:       /* --- pixel bitmap for wncyr118 char#120 sh --- */
                   80745:       { 120,107516,                     /* character number, location */
                   80746:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   80747:           { 11,    7, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80748:             "\x03\x13\x13\xf4\x11\x31\x31\x1b" }  },
                   80749:       /* --- pixel bitmap for wncyr118 char#121 y --- */
                   80750:       { 121,109044,                     /* character number, location */
                   80751:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   80752:           { 11,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80753:             "\x07\x17\x90\x80\x7c\x24\x24\x21\xfd\x1c" }  },
                   80754:       /* --- pixel bitmap for wncyr118 char#122 z --- */
                   80755:       { 122,110026,                     /* character number, location */
                   80756:           7, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   80757:           {  7,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80758:             "\x1e\x11\x88\x07\x0c\xfe\x00" }  },
                   80759:       /* --- pixel bitmap for wncyr118 char#123 (noname) --- */
                   80760:       { 123,57705,                      /* character number, location */
                   80761:           5, 0,    4, 0,      /* topleft row,col, and botleft row,col */
                   80762:           {  9,    1, 3, 2, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80763:             "\x09" }  },
                   80764:       /* --- pixel bitmap for wncyr118 char#124 (noname) --- */
                   80765:       { 124,58525,                      /* character number, location */
                   80766:           5, 0,    4, 0,      /* topleft row,col, and botleft row,col */
                   80767:           { 18,    1, 3, 4, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80768:             "\x0e\x04" }  },
                   80769:       /* --- pixel bitmap for wncyr118 char#125 N0 --- */
                   80770:       { 125,59483,                      /* character number, location */
                   80771:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   80772:           { 14,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80773:             "\x07\x01\x23\xc0\x08\x50\x62\x94\x00\x25\x40\x8a\x91"
                   80774:             "\x02\xc4\x38\x31\x60\x08\x00" }  },
                   80775:       /* --- pixel bitmap for wncyr118 char#126 \cprime --- */
                   80776:       { 126,111308,                     /* character number, location */
                   80777:           7, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   80778:           {  7,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80779:             "\x07\x81\xc0\x27\x14\xfe\x00" }  },
                   80780:       /* --- pixel bitmap for wncyr118 char#127 \cdprime --- */
                   80781:       { 127,112756,                     /* character number, location */
                   80782:           7, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   80783:           { 10,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80784:             "\x3f\x44\x10\x01\x7c\x10\x42\x88\x1f" }  },
                   80785:       /* --- trailer  --- */
                   80786:       { -99, -999,  0,0,0,0, { 0,0,0,0, (pixbyte *)"\0" }  }
                   80787:    } ;
                   80788: 
                   80789: 
                   80790: /* --- size=3 for .131gf ---
                   80791:  * mf '\mode=preview; mag=magstep(-16.39322518098640003469); input wncyr10'
                   80792:  * --------------------------------------------------------------------- */
                   80793: /* --- fontdef for wncyr131 --- */
                   80794: static	chardef  wncyr131[] =
                   80795:    {
                   80796:       /* --- pixel bitmap for wncyr131 char#0 Nj --- */
                   80797:       {   0,62020,                      /* character number, location */
                   80798:          12, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   80799:           { 20,   12, 3,45, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80800:             "\x06\x26\x60\xf3\x22\x62\x80\x2e\x02\x42\x62\x52\x10"
                   80801:             "\xf2\x22\x62\x62\x22\x62\x52\x16\x2a\x22" }  },
                   80802:       /* --- pixel bitmap for wncyr131 char#1 Lj --- */
                   80803:       {   1,63014,                      /* character number, location */
                   80804:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   80805:           { 19,   12, 3,53, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80806:             "\x3b\xa1\x42\x70\xf2\x42\x42\x70\x42\x47\x62\x42\x42"
                   80807:             "\x52\x42\x52\x41\x52\x54\x12\x52\x57\x52\x42\x23\x49"
                   80808:             "\x22" }  },
                   80809:       /* --- pixel bitmap for wncyr131 char#2 Dzh --- */
                   80810:       {   2,64103,                      /* character number, location */
                   80811:          12, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   80812:           { 15,   15, 3,19, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80813:             "\x06\x36\xf9\x22\x72\x2e\x01\xf2\x72\x67" }  },
                   80814:       /* --- pixel bitmap for wncyr131 char#3 \`E --- */
                   80815:       {   3,65067,                      /* character number, location */
                   80816:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   80817:           { 12,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80818:             "\xf9\x70\x30\x01\x16\x60\xe0\x9d\xff\x1f\xcc\xc0\x01"
                   80819:             "\x16\x60\x02\xc3\x0f" }  },
                   80820:       /* --- pixel bitmap for wncyr131 char#4 \=I --- */
                   80821:       {   4,73847,                      /* character number, location */
                   80822:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   80823:           {  6,   12, 3, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80824:             "\x06\xf9\x22\x26" }  },
                   80825:       /* --- pixel bitmap for wncyr131 char#5 \=E --- */
                   80826:       {   5,66024,                      /* character number, location */
                   80827:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   80828:           { 12,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80829:             "\xf0\xc9\xe0\x06\x68\x80\x7b\xf0\x9f\x83\x3f\x30\x06"
                   80830:             "\x68\x80\x0c\x04\x3f" }  },
                   80831:       /* --- pixel bitmap for wncyr131 char#6 Dj --- */
                   80832:       {   6,74997,                      /* character number, location */
                   80833:          12, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   80834:           { 16,   12, 3,43, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80835:             "\x1d\x31\x42\x51\x21\x52\x51\x82\xe2\x24\x84\x41\x73"
                   80836:             "\x61\xf2\x62\x71\x62\x61\x47\x13\x26" }  },
                   80837:       /* --- pixel bitmap for wncyr131 char#7 \'C --- */
                   80838:       {   7,76320,                      /* character number, location */
                   80839:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   80840:           { 13,   12, 3,36, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80841:             "\x0b\x2f\x11\x32\x41\x20\x42\xb2\x13\x73\x31\x20\xf4"
                   80842:             "\x42\x51\x10\x25\x24" }  },
                   80843:       /* --- pixel bitmap for wncyr131 char#8 nj --- */
                   80844:       {   8,116419,                     /* character number, location */
                   80845:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   80846:           { 12,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80847:             "\xf7\x20\x04\x42\xe0\x3f\x42\x2c\x84\x42\x78\x7f" }  },
                   80848:       /* --- pixel bitmap for wncyr131 char#9 lj --- */
                   80849:       {   9,117367,                     /* character number, location */
                   80850:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   80851:           { 12,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80852:             "\xfe\xc0\x04\x4c\xc0\x7c\x4c\xfc\x84\x47\x78\x7e" }  },
                   80853:       /* --- pixel bitmap for wncyr131 char#10 dzh --- */
                   80854:       {  10,118434,                     /* character number, location */
                   80855:           8, 0,   -2, 0,      /* topleft row,col, and botleft row,col */
                   80856:           { 10,   10, 3,17, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80857:             "\x04\x24\xf5\x21\x41\x2a\xf1\x51\x42" }  },
                   80858:       /* --- pixel bitmap for wncyr131 char#11 \`e --- */
                   80859:       {  11,119354,                     /* character number, location */
                   80860:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   80861:           {  8,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80862:             "\x3d\x43\xb9\xfd\x8f\x85\x41\x3e" }  },
                   80863:       /* --- pixel bitmap for wncyr131 char#12 \=\i --- */
                   80864:       {  12,79916,                      /* character number, location */
                   80865:          13, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   80866:           {  4,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80867:             "\x66\x00\x70\x44\x44\x44\x0f" }  },
                   80868:       /* --- pixel bitmap for wncyr131 char#13 \=e --- */
                   80869:       {  13,120273,                     /* character number, location */
                   80870:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   80871:           {  8,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80872:             "\xbc\xc2\x9d\xbf\xf1\xa1\x82\x7c" }  },
                   80873:       /* --- pixel bitmap for wncyr131 char#14 dj --- */
                   80874:       {  14,80886,                      /* character number, location */
                   80875:          13, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   80876:           { 10,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80877:             "\x07\x10\xf0\x3f\x01\x04\xd0\xc3\x30\x81\x04\x10\x40"
                   80878:             "\x20\x81\x1f\x02\x04\x08\x10\x38\x00" }  },
                   80879:       /* --- pixel bitmap for wncyr131 char#15 \'c --- */
                   80880:       {  15,81958,                      /* character number, location */
                   80881:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   80882:           { 11,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80883:             "\x06\x20\xc0\xff\x08\x40\x00\xfa\x30\x88\x40\x04\x22"
                   80884:             "\x10\x81\x08\xe4\x70" }  },
                   80885:       /* --- pixel bitmap for wncyr131 char#16 Yu --- */
                   80886:       {  16,67206,                      /* character number, location */
                   80887:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   80888:           { 20,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80889:             "\x3f\xf8\xc0\x60\x30\x0c\x03\xc6\x10\x40\x8c\x01\xcc"
                   80890:             "\x18\xc0\xfc\x01\xcc\x18\xc0\x0c\x03\xc6\x30\x60\x0c"
                   80891:             "\x06\xf3\x83\x0f" }  },
                   80892:       /* --- pixel bitmap for wncyr131 char#17 Zh --- */
                   80893:       {  17,60652,                      /* character number, location */
                   80894:          12, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   80895:           { 20,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80896:             "\x83\x1f\x6c\x60\x60\x04\x06\x82\x60\x10\x70\xe6\x00"
                   80897:             "\xfe\x07\x18\x86\x41\x60\x20\x04\x06\x52\x60\xa0\x07"
                   80898:             "\x06\x2e\xf8\x41" }  },
                   80899:       /* --- pixel bitmap for wncyr131 char#18 \u I --- */
                   80900:       {  18,68709,                      /* character number, location */
                   80901:          16, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   80902:           { 16,   16, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80903:             "\x18\x18\x18\x18\xe0\x07\x00\x00\x3f\xfc\x0c\x38\x0c"
                   80904:             "\x3c\x0c\x36\x0c\x32\x0c\x31\x8c\x30\x4c\x30\x6c\x30"
                   80905:             "\x3c\x30\x1c\x30\x3f\xfc" }  },
                   80906:       /* --- pixel bitmap for wncyr131 char#19 \"E --- */
                   80907:       {  19,77736,                      /* character number, location */
                   80908:          16, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   80909:           { 12,   16, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80910:             "\x10\x01\x11\x00\x00\x00\xff\xc7\x60\x0c\xc4\x90\x0c"
                   80911:             "\xc9\x1f\x0c\xc1\x90\x0c\xc8\x40\x0c\xf6\x7f" }  },
                   80912:       /* --- pixel bitmap for wncyr131 char#20 (noname) --- */
                   80913:       {  20,69680,                      /* character number, location */
                   80914:          12, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   80915:           { 14,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80916:             "\x3f\x38\x03\x8a\x41\x60\x10\x18\x02\x8c\x00\x23\xc0"
                   80917:             "\x05\x60\x01\x38\x00\x0c\x00\x01" }  },
                   80918:       /* --- pixel bitmap for wncyr131 char#21 (noname) --- */
                   80919:       {  21,70830,                      /* character number, location */
                   80920:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   80921:           { 13,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80922:             "\xe0\x00\x22\x60\x0c\x06\xc3\x60\xfe\xff\xff\x6f\xb0"
                   80923:             "\x0c\x06\x63\x40\x04\x70\x00" }  },
                   80924:       /* --- pixel bitmap for wncyr131 char#22 \Dz --- */
                   80925:       {  22,71890,                      /* character number, location */
                   80926:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   80927:           {  9,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80928:             "\xbc\x84\x0d\x1a\xf0\xc0\x0f\x3e\xe0\x80\x03\x07\xfa"
                   80929:             "\x03" }  },
                   80930:       /* --- pixel bitmap for wncyr131 char#23 Ya --- */
                   80931:       {  23,73178,                      /* character number, location */
                   80932:          12, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   80933:           { 14,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80934:             "\xf0\x3f\x06\xc3\xc0\x30\x30\x18\x0c\xfc\x03\xc3\x60"
                   80935:             "\x30\x18\x0c\x06\x93\xc1\x3c\xfc" }  },
                   80936:       /* --- pixel bitmap for wncyr131 char#24 yu --- */
                   80937:       {  24,121443,                     /* character number, location */
                   80938:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   80939:           { 13,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80940:             "\x8f\x47\x08\x89\x40\x11\xe8\x03\x45\xa0\x10\x7a\x3c" }  },
                   80941:       /* --- pixel bitmap for wncyr131 char#25 zh --- */
                   80942:       {  25,115079,                     /* character number, location */
                   80943:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   80944:           { 13,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80945:             "\xf3\x59\x08\x11\x11\xfc\x81\x24\x88\xc8\x11\x9f\xcf" }  },
                   80946:       /* --- pixel bitmap for wncyr131 char#26 \u\i --- */
                   80947:       {  26,122922,                     /* character number, location */
                   80948:          12, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   80949:           { 11,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80950:             "\x8c\x61\x0c\x3e\x00\xf0\x7d\xc2\x10\x85\x20\x04\xa1"
                   80951:             "\x08\x43\xbe\x0f" }  },
                   80952:       /* --- pixel bitmap for wncyr131 char#27 \"e --- */
                   80953:       {  27,82741,                      /* character number, location */
                   80954:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   80955:           {  7,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80956:             "\x66\x00\x80\x27\x0a\xfe\x03\x01\x21\x0f" }  },
                   80957:       /* --- pixel bitmap for wncyr131 char#28 (noname) --- */
                   80958:       {  28,123843,                     /* character number, location */
                   80959:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   80960:           {  9,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80961:             "\x8f\x09\x13\x21\x82\x02\x05\x0a\x08" }  },
                   80962:       /* --- pixel bitmap for wncyr131 char#29 (noname) --- */
                   80963:       {  29,124953,                     /* character number, location */
                   80964:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   80965:           { 10,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80966:             "\x30\x20\x41\xc8\xff\x85\x12\x82\x04\x0c" }  },
                   80967:       /* --- pixel bitmap for wncyr131 char#30 \dz --- */
                   80968:       {  30,125973,                     /* character number, location */
                   80969:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   80970:           {  6,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80971:             "\x7e\x18\x38\x10\x18\x7e" }  },
                   80972:       /* --- pixel bitmap for wncyr131 char#31 ya --- */
                   80973:       {  31,127221,                     /* character number, location */
                   80974:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   80975:           { 10,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80976:             "\xf8\x13\x42\x08\x3e\x88\x20\x82\xc8\xfb" }  },
                   80977:       /* --- pixel bitmap for wncyr131 char#32 \cyddot --- */
                   80978:       {  32,52445,                      /* character number, location */
                   80979:          13, 2,   11, 2,      /* topleft row,col, and botleft row,col */
                   80980:           {  6,    2, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80981:             "\xf3\x0c" }  },
                   80982:       /* --- pixel bitmap for wncyr131 char#33 (noname) --- */
                   80983:       {  33,33058,                      /* character number, location */
                   80984:          13, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   80985:           {  2,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80986:             "\xff\xff\xc0\x03" }  },
                   80987:       /* --- pixel bitmap for wncyr131 char#34 (noname) --- */
                   80988:       {  34,53318,                      /* character number, location */
                   80989:          13, 1,    7, 1,      /* topleft row,col, and botleft row,col */
                   80990:           {  6,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80991:             "\xf3\x2c\x8a\x62\x04" }  },
                   80992:       /* --- pixel bitmap for wncyr131 char#35 (noname) --- */
                   80993:       {  35,79219,                      /* character number, location */
                   80994:          14, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   80995:           { 14,   14, 3,41, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   80996:             "\x16\xa2\x9c\x21\x22\x52\x21\x22\x61\x52\xc8\x62\x53"
                   80997:             "\x10\xf3\x32\x72\x32\x62\x2b\x21" }  },
                   80998:       /* --- pixel bitmap for wncyr131 char#36 (noname) --- */
                   80999:       {  36,54028,                      /* character number, location */
                   81000:          12, 0,    9, 0,      /* topleft row,col, and botleft row,col */
                   81001:           {  9,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81002:             "\x83\x07\xfb\x03" }  },
                   81003:       /* --- pixel bitmap for wncyr131 char#37 (noname) --- */
                   81004:       {  37,34245,                      /* character number, location */
                   81005:          14, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   81006:           { 14,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81007:             "\x0e\x88\x06\x11\x7f\x44\x08\x11\x41\x44\xa0\x08\x38"
                   81008:             "\x71\x40\x14\x88\x08\x22\x42\x88\x08\x22\x02\x45\xc0"
                   81009:             "\x01" }  },
                   81010:       /* --- pixel bitmap for wncyr131 char#38 (noname) --- */
                   81011:       {  38,54601,                      /* character number, location */
                   81012:          13, 4,    9, 4,      /* topleft row,col, and botleft row,col */
                   81013:           {  4,    4, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81014:             "\x48\x13" }  },
                   81015:       /* --- pixel bitmap for wncyr131 char#39 (noname) --- */
                   81016:       {  39,34889,                      /* character number, location */
                   81017:          13, 2,    7, 2,      /* topleft row,col, and botleft row,col */
                   81018:           {  2,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81019:             "\xaf\x05" }  },
                   81020:       /* --- pixel bitmap for wncyr131 char#40 (noname) --- */
                   81021:       {  40,35463,                      /* character number, location */
                   81022:          14, 2,   -5, 2,      /* topleft row,col, and botleft row,col */
                   81023:           {  5,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81024:             "\x10\x11\x21\x44\x08\x21\x84\x10\x84\x10\x04\x41" }  },
                   81025:       /* --- pixel bitmap for wncyr131 char#41 (noname) --- */
                   81026:       {  41,36064,                      /* character number, location */
                   81027:          14, 1,   -5, 1,      /* topleft row,col, and botleft row,col */
                   81028:           {  5,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81029:             "\x41\x10\x84\x10\x84\x10\x42\x08\x11\x42\x44\x04" }  },
                   81030:       /* --- pixel bitmap for wncyr131 char#42 (noname) --- */
                   81031:       {  42,36689,                      /* character number, location */
                   81032:          14, 1,    6, 1,      /* topleft row,col, and botleft row,col */
                   81033:           {  8,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81034:             "\x10\x10\xd3\x3c\x3c\xd3\x10\x10" }  },
                   81035:       /* --- pixel bitmap for wncyr131 char#43 (noname) --- */
                   81036:       {  43,83550,                      /* character number, location */
                   81037:          14, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   81038:           { 11,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81039:             "\x14\x00\x00\x02\x10\xf0\x07\x04\x20\x00\x1f\x08\x43"
                   81040:             "\x20\x02\x11\x88\x20\xfe\x00" }  },
                   81041:       /* --- pixel bitmap for wncyr131 char#44 (noname) --- */
                   81042:       {  44,37268,                      /* character number, location */
                   81043:           2, 2,   -4, 2,      /* topleft row,col, and botleft row,col */
                   81044:           {  2,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81045:             "\xaf\x05" }  },
                   81046:       /* --- pixel bitmap for wncyr131 char#45 (noname) --- */
                   81047:       {  45,37759,                      /* character number, location */
                   81048:           5, 0,    4, 0,      /* topleft row,col, and botleft row,col */
                   81049:           {  6,    1, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81050:             "\x3f" }  },
                   81051:       /* --- pixel bitmap for wncyr131 char#46 (noname) --- */
                   81052:       {  46,38214,                      /* character number, location */
                   81053:           2, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   81054:           {  2,    2, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81055:             "\x0f" }  },
                   81056:       /* --- pixel bitmap for wncyr131 char#47 (noname) --- */
                   81057:       {  47,38720,                      /* character number, location */
                   81058:          14, 1,   -5, 1,      /* topleft row,col, and botleft row,col */
                   81059:           {  8,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81060:             "\x80\x80\x40\x40\x20\x20\x20\x10\x10\x08\x08\x08\x04"
                   81061:             "\x04\x04\x02\x02\x01\x01" }  },
                   81062:       /* --- pixel bitmap for wncyr131 char#48 (noname) --- */
                   81063:       {  48,43487,                      /* character number, location */
                   81064:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   81065:           {  8,   12, 3,19, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81066:             "\x24\x31\x41\x9f\x61\x61\x11\x41\x34\x20" }  },
                   81067:       /* --- pixel bitmap for wncyr131 char#49 (noname) --- */
                   81068:       {  49,44251,                      /* character number, location */
                   81069:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   81070:           {  7,   12, 3,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81071:             "\x31\x34\x30\xf8\x31\x30\x16" }  },
                   81072:       /* --- pixel bitmap for wncyr131 char#50 (noname) --- */
                   81073:       {  50,45216,                      /* character number, location */
                   81074:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   81075:           {  8,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81076:             "\x3c\x42\xc3\x83\xc0\x40\x60\x30\x18\x84\x42\x7f" }  },
                   81077:       /* --- pixel bitmap for wncyr131 char#51 (noname) --- */
                   81078:       {  51,46240,                      /* character number, location */
                   81079:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   81080:           {  8,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81081:             "\x3e\x41\xc1\xc0\x60\x3c\x60\xc0\xc0\xc3\x63\x3c" }  },
                   81082:       /* --- pixel bitmap for wncyr131 char#52 (noname) --- */
                   81083:       {  52,47150,                      /* character number, location */
                   81084:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   81085:           {  8,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81086:             "\x30\x30\x28\x2c\x24\x22\x23\xff\x20\x20\x20\xf8" }  },
                   81087:       /* --- pixel bitmap for wncyr131 char#53 (noname) --- */
                   81088:       {  53,48174,                      /* character number, location */
                   81089:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   81090:           {  8,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81091:             "\x42\x3e\x1e\x02\x02\x3e\x42\xc0\xc0\xc1\x61\x3e" }  },
                   81092:       /* --- pixel bitmap for wncyr131 char#54 (noname) --- */
                   81093:       {  54,49052,                      /* character number, location */
                   81094:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   81095:           {  8,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81096:             "\x78\x84\x02\x03\x3d\x43\x81\x81\x81\x82\x42\x3c" }  },
                   81097:       /* --- pixel bitmap for wncyr131 char#55 (noname) --- */
                   81098:       {  55,49940,                      /* character number, location */
                   81099:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   81100:           {  9,   13, 3,27, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81101:             "\x11\x88\x11\x62\x61\x71\x71\x30\xf2\x41\x40\xf3\x31"
                   81102:             "\x51" }  },
                   81103:       /* --- pixel bitmap for wncyr131 char#56 (noname) --- */
                   81104:       {  56,50850,                      /* character number, location */
                   81105:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   81106:           {  8,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81107:             "\x3c\xc0\x81\x83\x6e\x3c\x76\xe1\x81\x81\x42\x3c" }  },
                   81108:       /* --- pixel bitmap for wncyr131 char#57 (noname) --- */
                   81109:       {  57,51736,                      /* character number, location */
                   81110:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   81111:           {  8,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81112:             "\x3c\x42\x41\x81\x81\xc2\xbc\x80\x80\x40\x21\x1e" }  },
                   81113:       /* --- pixel bitmap for wncyr131 char#58 (noname) --- */
                   81114:       {  58,39304,                      /* character number, location */
                   81115:           8, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   81116:           {  2,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81117:             "\x0f\xf0" }  },
                   81118:       /* --- pixel bitmap for wncyr131 char#59 (noname) --- */
                   81119:       {  59,39967,                      /* character number, location */
                   81120:           8, 2,   -4, 2,      /* topleft row,col, and botleft row,col */
                   81121:           {  2,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81122:             "\x0f\xf0\x5a" }  },
                   81123:       /* --- pixel bitmap for wncyr131 char#60 < --- */
                   81124:       {  60,55217,                      /* character number, location */
                   81125:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   81126:           { 10,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81127:             "\x20\x62\xc4\x8c\x19\x66\x30\x83\x11\x88" }  },
                   81128:       /* --- pixel bitmap for wncyr131 char#61 (noname) --- */
                   81129:       {  61,84237,                      /* character number, location */
                   81130:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   81131:           {  4,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81132:             "\x47\x44\x44\xf4" }  },
                   81133:       /* --- pixel bitmap for wncyr131 char#62 > --- */
                   81134:       {  62,55768,                      /* character number, location */
                   81135:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   81136:           {  9,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81137:             "\x11\xc4\x30\xc3\x8c\x99\x99\x98\x08" }  },
                   81138:       /* --- pixel bitmap for wncyr131 char#63 (noname) --- */
                   81139:       {  63,40852,                      /* character number, location */
                   81140:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   81141:           {  7,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81142:             "\xbe\x60\x10\x04\x41\x20\x18\x00\x00\x80\xc1\x00" }  },
                   81143:       /* --- pixel bitmap for wncyr131 char#64 (noname) --- */
                   81144:       {  64,56410,                      /* character number, location */
                   81145:          13, 2,    9, 2,      /* topleft row,col, and botleft row,col */
                   81146:           {  6,    4, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81147:             "\x61\x28\x79" }  },
                   81148:       /* --- pixel bitmap for wncyr131 char#65 A --- */
                   81149:       {  65,23777,                      /* character number, location */
                   81150:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   81151:           { 13,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81152:             "\x40\x00\x1c\x80\x03\x70\x00\x19\x20\x03\xc2\x40\x18"
                   81153:             "\xf8\x83\xc0\x10\x98\x87\x0f" }  },
                   81154:       /* --- pixel bitmap for wncyr131 char#66 B --- */
                   81155:       {  66,25119,                      /* character number, location */
                   81156:          12, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   81157:           { 13,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81158:             "\xff\x87\xc1\x30\x10\x06\xc4\x80\xf8\x07\x83\x63\xc0"
                   81159:             "\x0c\x98\x01\x33\xb0\xff\x03" }  },
                   81160:       /* --- pixel bitmap for wncyr131 char#67 Ts --- */
                   81161:       {  67, 1087,                      /* character number, location */
                   81162:          12, 0,   -2, 0,      /* topleft row,col, and botleft row,col */
                   81163:           { 16,   14, 3,24, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81164:             "\x06\x36\x10\xf9\x22\x72\x3e\x01\xe0\x11\xe0\x21" }  },
                   81165:       /* --- pixel bitmap for wncyr131 char#68 D --- */
                   81166:       {  68, 2049,                      /* character number, location */
                   81167:          12,-1,   -2,-1,      /* topleft row,col, and botleft row,col */
                   81168:           { 17,   14, 3,48, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81169:             "\x5b\x10\xf2\x71\x42\x30\xf2\x62\x42\x30\xf1\x61\x52"
                   81170:             "\x30\x52\x52\x81\x62\x5e\x22\xc1\x11\xe0\x11" }  },
                   81171:       /* --- pixel bitmap for wncyr131 char#69 E --- */
                   81172:       {  69,26506,                      /* character number, location */
                   81173:          12, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   81174:           { 12,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81175:             "\xff\xc7\x60\x0c\xc4\x90\x0c\xc9\x1f\x0c\xc1\x90\x0c"
                   81176:             "\xc8\x40\x0c\xf6\x7f" }  },
                   81177:       /* --- pixel bitmap for wncyr131 char#70 F --- */
                   81178:       {  70,27563,                      /* character number, location */
                   81179:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   81180:           { 12,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81181:             "\xf8\x01\x06\x60\x80\x1f\x66\x36\xc6\x63\x6c\x66\xf8"
                   81182:             "\x01\x06\x60\x80\x1f" }  },
                   81183:       /* --- pixel bitmap for wncyr131 char#71 G --- */
                   81184:       {  71, 3203,                      /* character number, location */
                   81185:          12, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   81186:           { 12,   12, 3,25, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81187:             "\x0b\x32\x52\x32\x61\x10\xf1\x22\x71\xf5\x22\x86\x62" }  },
                   81188:       /* --- pixel bitmap for wncyr131 char#72 Kh --- */
                   81189:       {  72, 4277,                      /* character number, location */
                   81190:          12, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   81191:           { 15,   12, 3,42, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81192:             "\x15\x35\x43\x41\x82\x31\xa2\x12\xa4\xc2\xd3\xb2\x12"
                   81193:             "\xa1\x23\x81\x42\x71\x62\x36\x36" }  },
                   81194:       /* --- pixel bitmap for wncyr131 char#73 I --- */
                   81195:       {  73, 5489,                      /* character number, location */
                   81196:          12, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   81197:           { 16,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81198:             "\x3f\xfc\x0c\x38\x0c\x3c\x0c\x36\x0c\x32\x0c\x31\x8c"
                   81199:             "\x30\x4c\x30\x6c\x30\x3c\x30\x1c\x30\x3f\xfc" }  },
                   81200:       /* --- pixel bitmap for wncyr131 char#74 J --- */
                   81201:       {  74,28380,                      /* character number, location */
                   81202:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   81203:           {  8,   12, 3,17, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81204:             "\x26\xf7\x52\x1f\x12\x32\x10\x14\x32" }  },
                   81205:       /* --- pixel bitmap for wncyr131 char#75 K --- */
                   81206:       {  75,22723,                      /* character number, location */
                   81207:          12, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   81208:           { 13,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81209:             "\x3f\x98\x81\x31\x10\x06\xc1\x1c\xf8\x01\xc3\x60\x20"
                   81210:             "\x0c\x84\x81\x32\xf0\x1f\x04" }  },
                   81211:       /* --- pixel bitmap for wncyr131 char#76 L --- */
                   81212:       {  76, 6353,                      /* character number, location */
                   81213:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   81214:           { 14,   12, 3,32, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81215:             "\x2c\xf4\x42\x42\x20\xf1\x41\x52\x20\xf1\x32\x52\x24"
                   81216:             "\x62\x23\x56" }  },
                   81217:       /* --- pixel bitmap for wncyr131 char#77 M --- */
                   81218:       {  77, 7642,                      /* character number, location */
                   81219:          12, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   81220:           { 18,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81221:             "\x1f\xe0\x73\x80\x43\x03\x0d\x0d\x34\x64\xc8\x90\x21"
                   81222:             "\x43\x86\x0c\x31\x31\xc4\xc4\x10\x0e\x43\x38\xcc\x47"
                   81223:             "\xfc" }  },
                   81224:       /* --- pixel bitmap for wncyr131 char#78 N --- */
                   81225:       {  78, 8859,                      /* character number, location */
                   81226:          12, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   81227:           { 15,   12, 3,26, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81228:             "\x06\x36\xf3\x22\x72\x20\x2b\x20\xf4\x22\x72\x26\x36" }  },
                   81229:       /* --- pixel bitmap for wncyr131 char#79 O --- */
                   81230:       {  79,29203,                      /* character number, location */
                   81231:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   81232:           { 13,   12, 3,35, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81233:             "\x45\x62\x52\x32\x72\x21\x91\x1f\x32\x92\xf1\x12\x72"
                   81234:             "\x10\x22\x52\x65\x40" }  },
                   81235:       /* --- pixel bitmap for wncyr131 char#80 P --- */
                   81236:       {  80, 9947,                      /* character number, location */
                   81237:          12, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   81238:           { 15,   12, 3,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81239:             "\x0e\x01\xf9\x22\x72\x26\x36" }  },
                   81240:       /* --- pixel bitmap for wncyr131 char#81 Ch --- */
                   81241:       {  81,10982,                      /* character number, location */
                   81242:          12, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   81243:           { 16,   12, 3,34, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81244:             "\x06\x46\xf4\x22\x82\x20\x32\x63\x67\x12\x83\x32\x20"
                   81245:             "\xf1\xc2\x20\xa6" }  },
                   81246:       /* --- pixel bitmap for wncyr131 char#82 R --- */
                   81247:       {  82,30322,                      /* character number, location */
                   81248:          12, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   81249:           { 12,   12, 3,29, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81250:             "\x0a\x42\x52\x10\xf2\x22\x62\x22\x52\x38\x20\xf3\x22"
                   81251:             "\x86\x62" }  },
                   81252:       /* --- pixel bitmap for wncyr131 char#83 S --- */
                   81253:       {  83,31251,                      /* character number, location */
                   81254:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   81255:           { 12,   12, 3,33, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81256:             "\x45\x21\x22\x53\xf1\x12\x81\x0f\x32\xa0\xf1\x12\x81"
                   81257:             "\x22\x61\x56\x25" }  },
                   81258:       /* --- pixel bitmap for wncyr131 char#84 T --- */
                   81259:       {  84,12065,                      /* character number, location */
                   81260:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   81261:           { 12,   12, 3,23, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81262:             "\x0e\x32\x32\x0f\x21\x42\x41\xf5\x52\x50\x28\x22" }  },
                   81263:       /* --- pixel bitmap for wncyr131 char#85 U --- */
                   81264:       {  85,32445,                      /* character number, location */
                   81265:          12, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   81266:           { 15,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81267:             "\x1f\x7c\x0c\x04\x06\x03\x86\x00\x67\x00\x13\x00\x07"
                   81268:             "\x80\x03\x80\x00\x62\x00\x19\x00\x07\x00" }  },
                   81269:       /* --- pixel bitmap for wncyr131 char#86 V --- */
                   81270:       {  86,13377,                      /* character number, location */
                   81271:          12, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   81272:           { 13,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81273:             "\xff\x83\xc1\x30\x30\x06\xc6\xe0\xf8\x0f\x83\x63\xc0"
                   81274:             "\x0c\x98\x01\x33\xb0\xff\x03" }  },
                   81275:       /* --- pixel bitmap for wncyr131 char#87 Shch --- */
                   81276:       {  87,14858,                      /* character number, location */
                   81277:          12, 0,   -2, 0,      /* topleft row,col, and botleft row,col */
                   81278:           { 22,   14, 3,28, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81279:             "\x06\x25\x26\x10\xf9\x22\x62\x52\x3e\x07\xe0\x71\xe0"
                   81280:             "\x81" }  },
                   81281:       /* --- pixel bitmap for wncyr131 char#88 Sh --- */
                   81282:       {  88,16335,                      /* character number, location */
                   81283:          12, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   81284:           { 21,   12, 3,18, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81285:             "\x06\x25\x26\xf9\x22\x62\x52\x2e\x07" }  },
                   81286:       /* --- pixel bitmap for wncyr131 char#89 Y --- */
                   81287:       {  89,17919,                      /* character number, location */
                   81288:          12, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   81289:           { 19,   12, 3,44, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81290:             "\x06\x76\xf3\x22\xb2\x20\x28\x52\x42\x53\x32\x20\xf2"
                   81291:             "\x22\x72\x22\x20\x22\x62\x32\x2b\x26" }  },
                   81292:       /* --- pixel bitmap for wncyr131 char#90 Z --- */
                   81293:       {  90,18953,                      /* character number, location */
                   81294:          12, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   81295:           { 10,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81296:             "\xfd\x0c\x14\x30\xc0\x80\xf1\x01\x18\xc0\x00\x07\x1c"
                   81297:             "\xd8\x1f" }  },
                   81298:       /* --- pixel bitmap for wncyr131 char#91 (noname) --- */
                   81299:       {  91,41525,                      /* character number, location */
                   81300:          14, 2,   -5, 2,      /* topleft row,col, and botleft row,col */
                   81301:           {  4,   19, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81302:             "\x04\x0f\xe1\x3f\x11\x34" }  },
                   81303:       /* --- pixel bitmap for wncyr131 char#92 (noname) --- */
                   81304:       {  92,57289,                      /* character number, location */
                   81305:          13, 3,    7, 3,      /* topleft row,col, and botleft row,col */
                   81306:           {  6,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81307:             "\x62\x14\x45\xf3\x0c" }  },
                   81308:       /* --- pixel bitmap for wncyr131 char#93 (noname) --- */
                   81309:       {  93,42211,                      /* character number, location */
                   81310:          14, 0,   -5, 0,      /* topleft row,col, and botleft row,col */
                   81311:           {  4,   19, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81312:             "\x04\xfe\x31\xf1\x31\x04" }  },
                   81313:       /* --- pixel bitmap for wncyr131 char#94 \Cprime --- */
                   81314:       {  94,20251,                      /* character number, location */
                   81315:          12, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   81316:           { 13,   12, 3,31, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81317:             "\x06\x70\xf3\x22\x90\x28\x52\x53\x10\xf2\x22\x72\x22"
                   81318:             "\x62\x1b\x22" }  },
                   81319:       /* --- pixel bitmap for wncyr131 char#95 \Cdprime --- */
                   81320:       {  95,21715,                      /* character number, location */
                   81321:          12, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   81322:           { 17,   12, 3,35, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81323:             "\x09\x82\x42\x9f\x21\x52\x90\x68\x92\x53\x10\xf2\x62"
                   81324:             "\x72\x62\x62\x5b\x22" }  },
                   81325:       /* --- pixel bitmap for wncyr131 char#96 (noname) --- */
                   81326:       {  96,42817,                      /* character number, location */
                   81327:          13, 2,    7, 2,      /* topleft row,col, and botleft row,col */
                   81328:           {  2,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81329:             "\x5a\x0f" }  },
                   81330:       /* --- pixel bitmap for wncyr131 char#97 a --- */
                   81331:       {  97,85353,                      /* character number, location */
                   81332:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   81333:           {  9,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81334:             "\x3e\x80\x00\xe1\x33\x24\x68\x50\x7f" }  },
                   81335:       /* --- pixel bitmap for wncyr131 char#98 b --- */
                   81336:       {  98,86085,                      /* character number, location */
                   81337:          13, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   81338:           {  8,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81339:             "\x80\x80\x7c\x02\x01\x3d\x43\x81\x81\x81\x81\x42\x3c" }  },
                   81340:       /* --- pixel bitmap for wncyr131 char#99 ts --- */
                   81341:       {  99,92950,                      /* character number, location */
                   81342:           8, 0,   -4, 0,      /* topleft row,col, and botleft row,col */
                   81343:           { 11,   12, 3,26, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81344:             "\x04\x24\x10\xf5\x21\x41\x3a\x10\xf1\x91\x10\xe0\x71" }  },
                   81345:       /* --- pixel bitmap for wncyr131 char#100 d --- */
                   81346:       { 100,93926,                      /* character number, location */
                   81347:           8,-2,   -4,-2,      /* topleft row,col, and botleft row,col */
                   81348:           { 13,   12, 3,34, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81349:             "\x47\x20\xf3\x52\x21\x30\xf1\x51\x31\x30\x29\x41\xc1"
                   81350:             "\x81\xc1\x21\xa1" }  },
                   81351:       /* --- pixel bitmap for wncyr131 char#101 e --- */
                   81352:       { 101,86843,                      /* character number, location */
                   81353:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   81354:           {  7,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81355:             "\x3c\x51\xf0\x1f\x08\x08\x79" }  },
                   81356:       /* --- pixel bitmap for wncyr131 char#102 f --- */
                   81357:       { 102,87412,                      /* character number, location */
                   81358:          12, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   81359:           { 10,   16, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81360:             "\x30\xc0\x00\x00\x00\xce\xc9\x14\x63\x80\x01\xc6\x28"
                   81361:             "\x93\x73\x00\x00\x00\x03\x0c" }  },
                   81362:       /* --- pixel bitmap for wncyr131 char#103 g --- */
                   81363:       { 103,95068,                      /* character number, location */
                   81364:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   81365:           {  8,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81366:             "\xff\x84\x84\x04\x04\x04\x04\x1f" }  },
                   81367:       /* --- pixel bitmap for wncyr131 char#104 kh --- */
                   81368:       { 104,96104,                      /* character number, location */
                   81369:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   81370:           { 10,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81371:             "\xcf\x21\x81\x03\x0c\x30\x20\xc1\xcc\xf3" }  },
                   81372:       /* --- pixel bitmap for wncyr131 char#105 i --- */
                   81373:       { 105,97300,                      /* character number, location */
                   81374:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   81375:           { 11,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81376:             "\xdf\x27\x0c\x51\x08\x42\x10\x8a\x30\xe4\xfb" }  },
                   81377:       /* --- pixel bitmap for wncyr131 char#106 j --- */
                   81378:       { 106,88215,                      /* character number, location */
                   81379:          13,-1,   -4,-1,      /* topleft row,col, and botleft row,col */
                   81380:           {  5,   17, 3,17, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81381:             "\xf1\x32\xf2\x50\x23\xf9\x41\x03\x22" }  },
                   81382:       /* --- pixel bitmap for wncyr131 char#107 k --- */
                   81383:       { 107,114194,                     /* character number, location */
                   81384:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   81385:           {  8,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81386:             "\xcf\x42\x22\x1e\x12\x22\xe2\xcf" }  },
                   81387:       /* --- pixel bitmap for wncyr131 char#108 l --- */
                   81388:       { 108,98114,                      /* character number, location */
                   81389:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   81390:           { 10,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81391:             "\xfe\x23\x82\x08\x23\x8c\x30\x72\xc8\xf9" }  },
                   81392:       /* --- pixel bitmap for wncyr131 char#109 m --- */
                   81393:       { 109,99387,                      /* character number, location */
                   81394:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   81395:           { 11,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81396:             "\x87\x37\x8c\x61\x94\xa2\x14\x99\xc8\xe4\xf7" }  },
                   81397:       /* --- pixel bitmap for wncyr131 char#110 n --- */
                   81398:       { 110,100566,                     /* character number, location */
                   81399:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   81400:           { 10,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81401:             "\xcf\x13\x42\x08\x3f\x84\x10\x42\xc8\xf3" }  },
                   81402:       /* --- pixel bitmap for wncyr131 char#111 o --- */
                   81403:       { 111,88910,                      /* character number, location */
                   81404:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   81405:           {  8,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81406:             "\x3c\x42\x81\x81\x81\x81\x42\x3c" }  },
                   81407:       /* --- pixel bitmap for wncyr131 char#112 p --- */
                   81408:       { 112,101638,                     /* character number, location */
                   81409:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   81410:           { 10,    8, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81411:             "\x0a\xf5\x21\x41\x24\x24" }  },
                   81412:       /* --- pixel bitmap for wncyr131 char#113 ch --- */
                   81413:       { 113,102657,                     /* character number, location */
                   81414:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   81415:           { 11,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81416:             "\xdf\x27\x08\x41\x08\x82\x1c\x98\x00\x04\xf8" }  },
                   81417:       /* --- pixel bitmap for wncyr131 char#114 r --- */
                   81418:       { 114,89992,                      /* character number, location */
                   81419:           8, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   81420:           {  9,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81421:             "\x7b\x0c\x09\x14\x28\x50\xa0\x21\x3d\x02\x04\x08\x38"
                   81422:             "\x00" }  },
                   81423:       /* --- pixel bitmap for wncyr131 char#115 s --- */
                   81424:       { 115,90781,                      /* character number, location */
                   81425:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   81426:           {  7,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81427:             "\x7c\x41\x20\x10\x08\x08\x79" }  },
                   81428:       /* --- pixel bitmap for wncyr131 char#116 t --- */
                   81429:       { 116,103700,                     /* character number, location */
                   81430:           8, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   81431:           { 10,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81432:             "\xff\x87\x18\x22\x08\x20\x80\x00\x02\x3e" }  },
                   81433:       /* --- pixel bitmap for wncyr131 char#117 u --- */
                   81434:       { 117,91851,                      /* character number, location */
                   81435:           8, 0,   -4, 0,      /* topleft row,col, and botleft row,col */
                   81436:           { 11,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81437:             "\x8f\x27\x08\x22\x10\x81\x0c\x28\x40\x01\x04\x20\x80"
                   81438:             "\x40\x04\x1e\x00" }  },
                   81439:       /* --- pixel bitmap for wncyr131 char#118 v --- */
                   81440:       { 118,104996,                     /* character number, location */
                   81441:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   81442:           {  7,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81443:             "\x3f\xa1\xd0\x27\x16\x0a\x7f" }  },
                   81444:       /* --- pixel bitmap for wncyr131 char#119 shch --- */
                   81445:       { 119,106461,                     /* character number, location */
                   81446:           8, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   81447:           { 14,   12, 3,26, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81448:             "\x03\x14\x13\x20\xf5\x11\x41\x31\x3c\xe0\xe1\xe0\xe1" }  },
                   81449:       /* --- pixel bitmap for wncyr131 char#120 sh --- */
                   81450:       { 120,107918,                     /* character number, location */
                   81451:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   81452:           { 12,    8, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81453:             "\x03\x14\x13\xf5\x11\x41\x31\x1c" }  },
                   81454:       /* --- pixel bitmap for wncyr131 char#121 y --- */
                   81455:       { 121,109478,                     /* character number, location */
                   81456:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   81457:           { 11,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81458:             "\x07\x17\x90\x80\x7c\x24\x26\x21\x09\xe9\xe7" }  },
                   81459:       /* --- pixel bitmap for wncyr131 char#122 z --- */
                   81460:       { 122,110466,                     /* character number, location */
                   81461:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   81462:           {  6,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81463:             "\x5f\x08\x7a\x20\x18\x7e" }  },
                   81464:       /* --- pixel bitmap for wncyr131 char#123 (noname) --- */
                   81465:       { 123,57897,                      /* character number, location */
                   81466:           5, 0,    4, 0,      /* topleft row,col, and botleft row,col */
                   81467:           { 10,    1, 3, 2, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81468:             "\x0a" }  },
                   81469:       /* --- pixel bitmap for wncyr131 char#124 (noname) --- */
                   81470:       { 124,58717,                      /* character number, location */
                   81471:           5, 0,    4, 0,      /* topleft row,col, and botleft row,col */
                   81472:           { 20,    1, 3, 4, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81473:             "\x0e\x06" }  },
                   81474:       /* --- pixel bitmap for wncyr131 char#125 N0 --- */
                   81475:       { 125,59675,                      /* character number, location */
                   81476:          12, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   81477:           { 15,   12, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81478:             "\x1f\x02\x8e\x01\x4d\x80\x26\x44\x17\x25\x8b\x90\xc5"
                   81479:             "\x89\x03\xc4\x01\xc2\xb8\x61\xc0\x20\x00" }  },
                   81480:       /* --- pixel bitmap for wncyr131 char#126 \cprime --- */
                   81481:       { 126,111750,                     /* character number, location */
                   81482:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   81483:           {  7,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81484:             "\x07\x81\xc0\x27\x16\x0a\x7f" }  },
                   81485:       /* --- pixel bitmap for wncyr131 char#127 \cdprime --- */
                   81486:       { 127,113228,                     /* character number, location */
                   81487:           8, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   81488:           { 10,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81489:             "\x3f\x44\x10\x01\x7c\x10\x43\x08\x21\x7e" }  },
                   81490:       /* --- trailer  --- */
                   81491:       { -99, -999,  0,0,0,0, { 0,0,0,0, (pixbyte *)"\0" }  }
                   81492:    } ;
                   81493: 
                   81494: 
                   81495: /* --- size=4 for .160gf ---
                   81496:  * mf '\mode=preview; mag=magstep(-15.29639112828755784636); input wncyr10'
                   81497:  * --------------------------------------------------------------------- */
                   81498: /* --- fontdef for wncyr160 --- */
                   81499: static	chardef  wncyr160[] =
                   81500:    {
                   81501:       /* --- pixel bitmap for wncyr160 char#0 Nj --- */
                   81502:       {   0,62562,                      /* character number, location */
                   81503:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   81504:           { 23,   15, 3,45, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81505:             "\x06\x36\x80\xf5\x22\x72\xa0\x2e\x05\x42\x72\x72\x10"
                   81506:             "\xf3\x22\x72\x82\x22\x72\x72\x16\x3b\x32" }  },
                   81507:       /* --- pixel bitmap for wncyr160 char#1 Lj --- */
                   81508:       {   1,63570,                      /* character number, location */
                   81509:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   81510:           { 23,   15, 3,53, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81511:             "\x3d\x70\xf5\x52\x52\x90\x52\x59\x72\x52\x62\x10\xf1"
                   81512:             "\x51\x62\x72\x42\x62\x74\x22\x62\x77\x72\x62\x23\x6a"
                   81513:             "\x32" }  },
                   81514:       /* --- pixel bitmap for wncyr160 char#2 Dzh --- */
                   81515:       {   2,64673,                      /* character number, location */
                   81516:          15, 1,   -3, 1,      /* topleft row,col, and botleft row,col */
                   81517:           { 16,   18, 3,19, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81518:             "\x06\x46\xfc\x22\x82\x2e\x02\xf2\x72\x72" }  },
                   81519:       /* --- pixel bitmap for wncyr160 char#3 \`E --- */
                   81520:       {   3,65649,                      /* character number, location */
                   81521:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   81522:           { 15,   15, 3,55, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81523:             "\x01\x36\x54\x52\x42\x92\x2f\x11\xb2\x10\x65\x22\x5b"
                   81524:             "\x24\x62\x15\x72\xd2\x0f\x11\xb2\x10\x11\x92\x41\x62"
                   81525:             "\x77\x52" }  },
                   81526:       /* --- pixel bitmap for wncyr160 char#4 \=I --- */
                   81527:       {   4,74509,                      /* character number, location */
                   81528:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   81529:           {  8,   15, 3, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81530:             "\x08\xfc\x32\x38" }  },
                   81531:       /* --- pixel bitmap for wncyr160 char#5 \=E --- */
                   81532:       {   5,66616,                      /* character number, location */
                   81533:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   81534:           { 15,   15, 3,53, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81535:             "\x56\x31\x42\x54\x22\x92\xf1\x12\xb1\x02\x25\x6a\x52"
                   81536:             "\x64\x23\x75\x12\xd0\xf1\x12\xb1\x22\x91\x52\x61\x77"
                   81537:             "\x37" }  },
                   81538:       /* --- pixel bitmap for wncyr160 char#6 Dj --- */
                   81539:       {   6,75665,                      /* character number, location */
                   81540:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   81541:           { 19,   15, 3,61, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81542:             "\x0e\x02\x31\x62\x52\x31\x62\x61\x30\xf1\x72\xa0\x72"
                   81543:             "\x35\x92\x12\x42\x83\x71\x10\xf3\x72\x82\x72\x81\x82"
                   81544:             "\x32\x22\x57\x24\x22" }  },
                   81545:       /* --- pixel bitmap for wncyr160 char#7 \'C --- */
                   81546:       {   7,77002,                      /* character number, location */
                   81547:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   81548:           { 17,   15, 3,44, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81549:             "\x0e\x31\x42\x52\x31\x42\x61\x30\xf1\x52\xa0\x52\x24"
                   81550:             "\x94\x42\x20\xf6\x52\x62\x20\x36\x26" }  },
                   81551:       /* --- pixel bitmap for wncyr160 char#8 nj --- */
                   81552:       {   8,117471,                     /* character number, location */
                   81553:          10, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   81554:           { 16,   10, 3,37, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81555:             "\x05\x24\x50\xf2\x22\x42\x60\x2c\x42\x42\x32\x10\xf2"
                   81556:             "\x22\x42\x42\x05\x28\x11" }  },
                   81557:       /* --- pixel bitmap for wncyr160 char#9 lj --- */
                   81558:       {   9,118429,                     /* character number, location */
                   81559:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   81560:           { 15,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81561:             "\xfc\x0f\x88\x01\xc4\x00\x62\x80\xf1\xc1\x98\x63\x8c"
                   81562:             "\x17\xc6\x0f\x63\xe3\x1f" }  },
                   81563:       /* --- pixel bitmap for wncyr160 char#10 dzh --- */
                   81564:       {  10,119508,                     /* character number, location */
                   81565:          10, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   81566:           { 12,   13, 3,17, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81567:             "\x05\x25\xf7\x22\x42\x2c\xf2\x52\x52" }  },
                   81568:       /* --- pixel bitmap for wncyr160 char#11 \`e --- */
                   81569:       {  11,120438,                     /* character number, location */
                   81570:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   81571:           { 10,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81572:             "\x7d\x0c\x13\x18\xdc\xf9\x3f\x4c\x70\x60\xc3\xf0\x01" }  },
                   81573:       /* --- pixel bitmap for wncyr160 char#12 \=\i --- */
                   81574:       {  12,80680,                      /* character number, location */
                   81575:          16, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   81576:           {  6,   16, 3,18, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81577:             "\xf1\x22\x20\xf3\x64\x20\xf7\x22\x26" }  },
                   81578:       /* --- pixel bitmap for wncyr160 char#13 \=e --- */
                   81579:       {  13,121361,                     /* character number, location */
                   81580:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   81581:           { 10,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81582:             "\xf8\x32\x6c\xe0\x0e\x7f\x0e\x3f\x88\x81\x0c\xe3\x03" }  },
                   81583:       /* --- pixel bitmap for wncyr160 char#14 dj --- */
                   81584:       {  14,81654,                      /* character number, location */
                   81585:          15, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   81586:           { 13,   19, 3,55, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81587:             "\x04\xb2\x9c\x10\xf1\x22\x90\x22\x15\x54\x41\x43\x61"
                   81588:             "\x10\xf3\x22\x72\x22\x71\x32\x62\x16\x42\xa2\xa2\xa2"
                   81589:             "\x83\x62" }  },
                   81590:       /* --- pixel bitmap for wncyr160 char#15 \'c --- */
                   81591:       {  15,82738,                      /* character number, location */
                   81592:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   81593:           { 14,   15, 3,34, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81594:             "\x04\xc2\xab\x30\xf1\x22\xa0\x22\x24\x64\x42\x20\xf6"
                   81595:             "\x22\x62\x26\x26" }  },
                   81596:       /* --- pixel bitmap for wncyr160 char#16 Yu --- */
                   81597:       {  16,67782,                      /* character number, location */
                   81598:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   81599:           { 25,   15, 3,75, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81600:             "\x06\x77\x72\x73\x53\x52\x62\x92\x20\xf1\x22\x52\xb2"
                   81601:             "\x10\xf1\x22\x42\xd2\x28\xd2\xf1\x22\x42\xd2\xf1\x22"
                   81602:             "\x52\xb2\x10\x22\x62\x92\x42\x73\x53\x36\x77\x52" }  },
                   81603:       /* --- pixel bitmap for wncyr160 char#17 Zh --- */
                   81604:       {  17,61172,                      /* character number, location */
                   81605:          15, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   81606:           { 24,   15, 3,81, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81607:             "\x03\x66\x66\x82\x83\xf1\x31\x72\x71\x30\x41\x62\x61"
                   81608:             "\x92\x42\x42\xca\xc4\x22\x24\x92\x52\x52\x40\xf1\x32"
                   81609:             "\x62\x62\x3f\x11\x22\x62\x62\x21\x04\x72\x74\x12\x66"
                   81610:             "\x62\x15" }  },
                   81611:       /* --- pixel bitmap for wncyr160 char#18 \u I --- */
                   81612:       {  18,69303,                      /* character number, location */
                   81613:          19, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   81614:           { 17,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81615:             "\x18\x30\x30\x60\x80\x3f\x00\x00\xf0\x83\x9f\x01\x0e"
                   81616:             "\x03\x1c\x06\x34\x0c\x64\x18\xcc\x30\x88\x61\x08\xc3"
                   81617:             "\x08\x86\x19\x0c\x13\x18\x16\x30\x1c\x60\x38\xc0\xfc"
                   81618:             "\xe0\x07" }  },
                   81619:       /* --- pixel bitmap for wncyr160 char#19 \"E --- */
                   81620:       {  19,78428,                      /* character number, location */
                   81621:          19, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   81622:           { 14,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81623:             "\x30\x03\xcc\x00\x00\x00\x00\xff\x1f\x03\xc6\x00\x31"
                   81624:             "\x80\x0c\x22\x83\xc0\x30\xf0\x0f\x0c\x03\x83\xc8\x20"
                   81625:             "\x32\xc0\x0c\x10\x03\xf6\xff\x01" }  },
                   81626:       /* --- pixel bitmap for wncyr160 char#20 (noname) --- */
                   81627:       {  20,70292,                      /* character number, location */
                   81628:          15, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   81629:           { 17,   15, 3,59, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81630:             "\x07\x73\xf1\x32\x81\x21\x32\x71\x82\x61\x82\x51\x93"
                   81631:             "\x41\xa2\x41\xa2\x31\xc2\x21\x60\xf1\x62\x11\x70\x73"
                   81632:             "\x70\xf1\x72\x82" }  },
                   81633:       /* --- pixel bitmap for wncyr160 char#21 (noname) --- */
                   81634:       {  21,71456,                      /* character number, location */
                   81635:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   81636:           { 17,   15, 3,59, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81637:             "\x65\xb2\x32\x91\x71\x72\x72\x61\x91\x52\x92\x2f\x1e"
                   81638:             "\x03\x01\x12\x92\x11\x22\x92\x51\x91\x62\x72\x71\x71"
                   81639:             "\x92\x32\xb5\x62" }  },
                   81640:       /* --- pixel bitmap for wncyr160 char#22 \Dz --- */
                   81641:       {  22,72528,                      /* character number, location */
                   81642:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   81643:           { 12,   15, 3,41, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81644:             "\x36\x11\x22\x62\x1f\x12\x81\x12\xa4\x97\x77\x94\xa3"
                   81645:             "\xa3\x93\x91\x12\x72\x11\x17\x31" }  },
                   81646:       /* --- pixel bitmap for wncyr160 char#23 Ya --- */
                   81647:       {  23,73828,                      /* character number, location */
                   81648:          15, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   81649:           { 17,   15, 3,44, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81650:             "\x6b\x43\x62\x20\xf3\x32\x82\x20\x43\x62\x89\x72\x62"
                   81651:             "\x20\xf3\x42\x72\x21\x32\x72\x34\x66" }  },
                   81652:       /* --- pixel bitmap for wncyr160 char#24 yu --- */
                   81653:       {  24,122509,                     /* character number, location */
                   81654:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   81655:           { 16,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81656:             "\x1f\x1e\x86\x61\x86\x40\xc6\xc0\xc6\xc0\xfe\xc0\xc6"
                   81657:             "\xc0\x86\x61\x86\x61\x1f\x1e" }  },
                   81658:       /* --- pixel bitmap for wncyr160 char#25 zh --- */
                   81659:       {  25,116115,                     /* character number, location */
                   81660:          10, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   81661:           { 16,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81662:             "\xe3\xc7\x82\x41\x84\x21\x98\x19\xf0\x0f\x88\x11\x84"
                   81663:             "\x21\x85\xa1\x87\xe1\xe3\xc7" }  },
                   81664:       /* --- pixel bitmap for wncyr160 char#26 \u\i --- */
                   81665:       {  26,124000,                     /* character number, location */
                   81666:          14, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   81667:           { 13,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81668:             "\x0c\x86\xc1\xe0\x0f\x00\xf0\xfb\x19\x0e\xc3\x61\x34"
                   81669:             "\x4c\x86\xc9\xb0\x18\x0e\xc3\x61\x7e\x3f" }  },
                   81670:       /* --- pixel bitmap for wncyr160 char#27 \"e --- */
                   81671:       {  27,83529,                      /* character number, location */
                   81672:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   81673:           {  9,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81674:             "\xcc\x00\x00\xc0\x63\x4c\xf0\xe0\xff\x03\x06\x18\x70"
                   81675:             "\x88\x0f" }  },
                   81676:       /* --- pixel bitmap for wncyr160 char#28 (noname) --- */
                   81677:       {  28,124933,                     /* character number, location */
                   81678:          10, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   81679:           { 11,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81680:             "\x1f\x66\x28\x43\x30\x81\x09\x4c\xc0\x01\x0e\x30\x00"
                   81681:             "\x01" }  },
                   81682:       /* --- pixel bitmap for wncyr160 char#29 (noname) --- */
                   81683:       {  29,126047,                     /* character number, location */
                   81684:          10, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   81685:           { 13,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81686:             "\xe0\x00\x63\x20\x08\x06\xf3\xff\xff\x7f\x83\x45\x10"
                   81687:             "\x18\x03\x1c\x00" }  },
                   81688:       /* --- pixel bitmap for wncyr160 char#30 \dz --- */
                   81689:       {  30,127073,                     /* character number, location */
                   81690:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   81691:           {  7,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81692:             "\xfe\xe1\xe0\xe0\xe3\x83\xc1\xa1\x0f" }  },
                   81693:       /* --- pixel bitmap for wncyr160 char#31 ya --- */
                   81694:       {  31,128325,                     /* character number, location */
                   81695:          10, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   81696:           { 12,   10, 3,24, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81697:             "\x48\xf2\x22\x42\x20\x46\x20\xf3\x32\x32\x24\x26" }  },
                   81698:       /* --- pixel bitmap for wncyr160 char#32 \cyddot --- */
                   81699:       {  32,52927,                      /* character number, location */
                   81700:          16, 3,   14, 3,      /* topleft row,col, and botleft row,col */
                   81701:           {  6,    2, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81702:             "\xf3\x0c" }  },
                   81703:       /* --- pixel bitmap for wncyr160 char#33 (noname) --- */
                   81704:       {  33,33396,                      /* character number, location */
                   81705:          15, 3,    0, 3,      /* topleft row,col, and botleft row,col */
                   81706:           {  2,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81707:             "\xff\xff\x03\x3c" }  },
                   81708:       /* --- pixel bitmap for wncyr160 char#34 (noname) --- */
                   81709:       {  34,53800,                      /* character number, location */
                   81710:          15, 1,    9, 1,      /* topleft row,col, and botleft row,col */
                   81711:           {  7,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81712:             "\xe3\xb1\x50\x18\x0a\x01" }  },
                   81713:       /* --- pixel bitmap for wncyr160 char#35 (noname) --- */
                   81714:       {  35,79949,                      /* character number, location */
                   81715:          17, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   81716:           { 17,   17, 3,51, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81717:             "\x26\x90\xf1\x42\xbe\x3f\x11\x32\x71\x30\xf1\x42\xb0"
                   81718:             "\x4b\x62\x82\x10\xf3\x42\x92\x42\x82\x52\x72\x4c\x31" }  },
                   81719:       /* --- pixel bitmap for wncyr160 char#36 (noname) --- */
                   81720:       {  36,54510,                      /* character number, location */
                   81721:          15, 0,   11, 0,      /* topleft row,col, and botleft row,col */
                   81722:           { 11,    4, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81723:             "\x03\x1e\xb0\x80\xf8\x03" }  },
                   81724:       /* --- pixel bitmap for wncyr160 char#37 (noname) --- */
                   81725:       {  37,34585,                      /* character number, location */
                   81726:          17, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   81727:           { 18,   18, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81728:             "\x1c\x80\x98\x00\x21\x0c\xc3\xd0\x0b\x43\x10\x0c\x21"
                   81729:             "\x30\x44\x80\x10\x01\x26\x02\x70\x84\x03\x08\x13\x20"
                   81730:             "\x86\x40\x18\x82\x60\x08\x81\x21\x04\x86\x08\x30\x11"
                   81731:             "\x80\x03" }  },
                   81732:       /* --- pixel bitmap for wncyr160 char#38 (noname) --- */
                   81733:       {  38,55087,                      /* character number, location */
                   81734:          15, 5,   11, 5,      /* topleft row,col, and botleft row,col */
                   81735:           {  4,    4, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81736:             "\xec\x17" }  },
                   81737:       /* --- pixel bitmap for wncyr160 char#39 (noname) --- */
                   81738:       {  39,35251,                      /* character number, location */
                   81739:          15, 3,    9, 3,      /* topleft row,col, and botleft row,col */
                   81740:           {  2,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81741:             "\xaf\x05" }  },
                   81742:       /* --- pixel bitmap for wncyr160 char#40 (noname) --- */
                   81743:       {  40,35825,                      /* character number, location */
                   81744:          17, 3,   -6, 3,      /* topleft row,col, and botleft row,col */
                   81745:           {  6,   23, 3,34, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81746:             "\x51\x41\x41\x42\x41\x42\x41\x4f\x82\x40\x11\x52\x51"
                   81747:             "\x52\x51\x61\x61" }  },
                   81748:       /* --- pixel bitmap for wncyr160 char#41 (noname) --- */
                   81749:       {  41,36434,                      /* character number, location */
                   81750:          17, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   81751:           {  6,   23, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81752:             "\x81\x40\x30\x08\x06\xc1\x30\x0c\xc3\x30\x0c\xc3\x10"
                   81753:             "\x86\x30\x84\x10\x00" }  },
                   81754:       /* --- pixel bitmap for wncyr160 char#42 (noname) --- */
                   81755:       {  42,37067,                      /* character number, location */
                   81756:          17, 2,    7, 2,      /* topleft row,col, and botleft row,col */
                   81757:           {  8,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81758:             "\x18\x18\xdb\xff\x3c\x3c\xff\xdb\x18\x18" }  },
                   81759:       /* --- pixel bitmap for wncyr160 char#43 (noname) --- */
                   81760:       {  43,84344,                      /* character number, location */
                   81761:          18, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   81762:           { 14,   18, 3,51, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81763:             "\x11\x41\x91\x21\xa4\x80\xf2\x32\x98\x60\xf2\x32\x90"
                   81764:             "\x39\x52\x53\x10\xf2\x32\x72\x32\x63\x32\x53\x2a\x32" }  },
                   81765:       /* --- pixel bitmap for wncyr160 char#44 (noname) --- */
                   81766:       {  44,37650,                      /* character number, location */
                   81767:           2, 3,   -4, 3,      /* topleft row,col, and botleft row,col */
                   81768:           {  2,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81769:             "\xaf\x05" }  },
                   81770:       /* --- pixel bitmap for wncyr160 char#45 (noname) --- */
                   81771:       {  45,38141,                      /* character number, location */
                   81772:           6, 0,    4, 0,      /* topleft row,col, and botleft row,col */
                   81773:           {  7,    2, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81774:             "\xff\x3f" }  },
                   81775:       /* --- pixel bitmap for wncyr160 char#46 (noname) --- */
                   81776:       {  46,38598,                      /* character number, location */
                   81777:           2, 3,    0, 3,      /* topleft row,col, and botleft row,col */
                   81778:           {  2,    2, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81779:             "\x0f" }  },
                   81780:       /* --- pixel bitmap for wncyr160 char#47 (noname) --- */
                   81781:       {  47,39104,                      /* character number, location */
                   81782:          17, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   81783:           { 10,   23, 3,55, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81784:             "\xf1\x91\xf1\x81\x10\xf2\x71\x20\xf1\x61\x30\xf1\x51"
                   81785:             "\x40\xf2\x41\x50\xf1\x31\x60\xf2\x21\x70\xf1\x11\x8f"
                   81786:             "\x11\x93" }  },
                   81787:       /* --- pixel bitmap for wncyr160 char#48 (noname) --- */
                   81788:       {  48,43897,                      /* character number, location */
                   81789:          14, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   81790:           { 10,   14, 3,27, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81791:             "\x34\x42\x42\x21\x61\x1f\x72\x62\x11\x61\x22\x42\x44"
                   81792:             "\x30" }  },
                   81793:       /* --- pixel bitmap for wncyr160 char#49 (noname) --- */
                   81794:       {  49,44671,                      /* character number, location */
                   81795:          14, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   81796:           {  8,   14, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81797:             "\x41\x35\x30\xfa\x32\x38" }  },
                   81798:       /* --- pixel bitmap for wncyr160 char#50 (noname) --- */
                   81799:       {  50,45640,                      /* character number, location */
                   81800:          14, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   81801:           { 10,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81802:             "\x7c\x08\x16\xf0\xc0\x00\x03\x0c\x18\x20\x40\xc0\x80"
                   81803:             "\x21\x81\xfe\xfd\x07" }  },
                   81804:       /* --- pixel bitmap for wncyr160 char#51 (noname) --- */
                   81805:       {  51,46668,                      /* character number, location */
                   81806:          14, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   81807:           { 10,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81808:             "\x7c\x08\x62\x18\x60\x80\x01\x83\x07\x60\x00\x03\x3c"
                   81809:             "\xf0\xc0\x82\xf1\x01" }  },
                   81810:       /* --- pixel bitmap for wncyr160 char#52 (noname) --- */
                   81811:       {  52,47584,                      /* character number, location */
                   81812:          14, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   81813:           { 10,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81814:             "\xc0\x80\x03\x0e\x34\xc8\x10\x63\xcc\x30\xff\x03\x03"
                   81815:             "\x0c\x30\xc0\xc0\x0f" }  },
                   81816:       /* --- pixel bitmap for wncyr160 char#53 (noname) --- */
                   81817:       {  53,48612,                      /* character number, location */
                   81818:          14, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   81819:           { 10,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81820:             "\x06\xf9\xa3\x83\x00\x02\xe8\xe1\x98\x41\x00\x03\x3c"
                   81821:             "\xf0\x40\x82\xf0\x01" }  },
                   81822:       /* --- pixel bitmap for wncyr160 char#54 (noname) --- */
                   81823:       {  54,49502,                      /* character number, location */
                   81824:          14, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   81825:           { 10,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81826:             "\xf0\x20\x46\x98\x01\x03\xec\x71\xd8\x40\x03\x0f\x2c"
                   81827:             "\xb0\x41\x84\xe1\x01" }  },
                   81828:       /* --- pixel bitmap for wncyr160 char#55 (noname) --- */
                   81829:       {  55,50398,                      /* character number, location */
                   81830:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   81831:           { 11,   15, 3,35, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81832:             "\x11\x90\xf1\x1a\x01\x81\x11\x71\x91\x91\x92\x91\x92"
                   81833:             "\x91\x60\xf3\x32\x62" }  },
                   81834:       /* --- pixel bitmap for wncyr160 char#56 (noname) --- */
                   81835:       {  56,51312,                      /* character number, location */
                   81836:          14, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   81837:           { 10,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81838:             "\x78\x10\x22\x90\x40\x0e\x71\x83\x07\x3b\x86\x0d\x3c"
                   81839:             "\xf0\xc0\x86\xf1\x01" }  },
                   81840:       /* --- pixel bitmap for wncyr160 char#57 (noname) --- */
                   81841:       {  57,52208,                      /* character number, location */
                   81842:          14, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   81843:           { 10,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81844:             "\x78\x10\x22\xd8\xc0\x03\x0f\x2c\xb0\xe1\x78\x03\x0c"
                   81845:             "\x98\x21\xc6\xf0\x00" }  },
                   81846:       /* --- pixel bitmap for wncyr160 char#58 (noname) --- */
                   81847:       {  58,39696,                      /* character number, location */
                   81848:          10, 3,    0, 3,      /* topleft row,col, and botleft row,col */
                   81849:           {  2,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81850:             "\x0f\x00\x0f" }  },
                   81851:       /* --- pixel bitmap for wncyr160 char#59 (noname) --- */
                   81852:       {  59,40359,                      /* character number, location */
                   81853:          10, 3,   -4, 3,      /* topleft row,col, and botleft row,col */
                   81854:           {  2,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81855:             "\x0f\x00\xaf\x05" }  },
                   81856:       /* --- pixel bitmap for wncyr160 char#60 < --- */
                   81857:       {  60,55703,                      /* character number, location */
                   81858:          10, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   81859:           { 13,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81860:             "\xc0\x00\x04\x43\x18\x86\x61\x0c\x8c\x01\xc3\x80\x30"
                   81861:             "\x20\x18\x18\x00" }  },
                   81862:       /* --- pixel bitmap for wncyr160 char#61 (noname) --- */
                   81863:       {  61,85069,                      /* character number, location */
                   81864:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   81865:           {  6,   10, 3,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81866:             "\x04\x20\xf7\x22\x26" }  },
                   81867:       /* --- pixel bitmap for wncyr160 char#62 > --- */
                   81868:       {  62,56258,                      /* character number, location */
                   81869:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   81870:           { 12,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81871:             "\x60\x30\x08\x0c\x81\x61\x60\x0c\xc6\x18\xc6\x10\x83"
                   81872:             "\x00\x06" }  },
                   81873:       /* --- pixel bitmap for wncyr160 char#63 (noname) --- */
                   81874:       {  63,41244,                      /* character number, location */
                   81875:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   81876:           { 10,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81877:             "\xfc\x0c\x34\x30\xc0\x80\x01\x01\x02\x08\x30\x00\x00"
                   81878:             "\x00\x00\x00\xc0\x00\x03" }  },
                   81879:       /* --- pixel bitmap for wncyr160 char#64 (noname) --- */
                   81880:       {  64,56904,                      /* character number, location */
                   81881:          15, 2,   11, 2,      /* topleft row,col, and botleft row,col */
                   81882:           {  8,    4, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81883:             "\x81\x81\x42\x3c" }  },
                   81884:       /* --- pixel bitmap for wncyr160 char#65 A --- */
                   81885:       {  65,24015,                      /* character number, location */
                   81886:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   81887:           { 16,   15, 3,50, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81888:             "\xf1\x72\x70\x64\x60\xf1\x61\x12\x60\xf2\x51\x32\x50"
                   81889:             "\x41\x52\x88\x40\xf2\x31\x72\x30\x21\x92\x25\x56" }  },
                   81890:       /* --- pixel bitmap for wncyr160 char#66 B --- */
                   81891:       {  66,25371,                      /* character number, location */
                   81892:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   81893:           { 15,   15, 3,51, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81894:             "\x0c\x52\x62\x52\x71\x30\xf1\x22\x81\x20\xf1\x22\xb0"
                   81895:             "\x2b\x42\x82\x10\xf2\x22\x92\x22\x83\x22\x73\x1c\x31" }  },
                   81896:       /* --- pixel bitmap for wncyr160 char#67 Ts --- */
                   81897:       {  67, 1087,                      /* character number, location */
                   81898:          15, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   81899:           { 17,   17, 3,24, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81900:             "\x06\x46\x10\xfc\x22\x82\x3e\x02\xe0\x22\xe0\x21" }  },
                   81901:       /* --- pixel bitmap for wncyr160 char#68 D --- */
                   81902:       {  68, 2087,                      /* character number, location */
                   81903:          15,-1,   -2,-1,      /* topleft row,col, and botleft row,col */
                   81904:           { 20,   17, 3,60, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81905:             "\x6d\x10\xf4\x82\x52\x30\xf1\x81\x62\x30\xf1\x72\x62"
                   81906:             "\x30\x71\x72\x92\x72\x91\x82\x82\x82\x5e\x03\x31\xe0"
                   81907:             "\x12\x11\xe0\x31" }  },
                   81908:       /* --- pixel bitmap for wncyr160 char#69 E --- */
                   81909:       {  69,26766,                      /* character number, location */
                   81910:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   81911:           { 14,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81912:             "\xff\x1f\x03\xc6\x00\x31\x80\x0c\x22\x83\xc0\x30\xf0"
                   81913:             "\x0f\x0c\x03\x83\xc8\x20\x32\xc0\x0c\x10\x03\xf6\xff"
                   81914:             "\x01" }  },
                   81915:       /* --- pixel bitmap for wncyr160 char#70 F --- */
                   81916:       {  70,27835,                      /* character number, location */
                   81917:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   81918:           { 15,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81919:             "\xf0\x07\xc0\x00\x60\x00\xfe\xc0\x98\x31\x8c\x0d\x86"
                   81920:             "\x07\xc3\x83\x61\xc3\x18\x63\x06\xfe\x00\x18\x00\x0c"
                   81921:             "\xc0\x1f\x00" }  },
                   81922:       /* --- pixel bitmap for wncyr160 char#71 G --- */
                   81923:       {  71, 3253,                      /* character number, location */
                   81924:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   81925:           { 14,   15, 3,25, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81926:             "\x0d\x32\x72\x32\x81\x10\xf1\x22\x91\xf8\x22\xa7\x72" }  },
                   81927:       /* --- pixel bitmap for wncyr160 char#72 Kh --- */
                   81928:       {  72, 4333,                      /* character number, location */
                   81929:          15, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   81930:           { 18,   15, 3,58, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81931:             "\x16\x46\x52\x62\x83\x51\xa2\x41\xc2\x21\xe4\xe3\xe0"
                   81932:             "\x22\xe0\x11\x12\xd2\x13\xc1\x33\xa1\x52\x91\x72\x72"
                   81933:             "\x73\x36\x57" }  },
                   81934:       /* --- pixel bitmap for wncyr160 char#73 I --- */
                   81935:       {  73, 5557,                      /* character number, location */
                   81936:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   81937:           { 17,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81938:             "\x3f\xf8\x19\xe0\x30\xc0\x61\x40\xc3\x40\x86\xc1\x0c"
                   81939:             "\x83\x18\x86\x30\x8c\x60\x98\xc1\x30\x81\x61\x01\xc3"
                   81940:             "\x01\x86\x03\xcc\x0f\x7e" }  },
                   81941:       /* --- pixel bitmap for wncyr160 char#74 J --- */
                   81942:       {  74,28670,                      /* character number, location */
                   81943:          15, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   81944:           { 10,   15, 3,17, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81945:             "\x37\xfa\x62\x22\x42\x22\x32\x45\x42" }  },
                   81946:       /* --- pixel bitmap for wncyr160 char#75 K --- */
                   81947:       {  75,22947,                      /* character number, location */
                   81948:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   81949:           { 15,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81950:             "\x3f\x70\x06\x38\x03\x82\x01\xc1\x40\x60\x18\xf0\x03"
                   81951:             "\x98\x07\x0c\x06\x06\x06\x03\x83\x81\xc9\xc0\x64\xc0"
                   81952:             "\xff\xc0\x00" }  },
                   81953:       /* --- pixel bitmap for wncyr160 char#76 L --- */
                   81954:       {  76, 6439,                      /* character number, location */
                   81955:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   81956:           { 16,   15, 3,38, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81957:             "\x3d\xf3\x61\x52\x20\xf4\x52\x52\x20\xf1\x51\x62\x23"
                   81958:             "\x12\x62\x25\x72\x33\x66" }  },
                   81959:       /* --- pixel bitmap for wncyr160 char#77 M --- */
                   81960:       {  77, 7742,                      /* character number, location */
                   81961:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   81962:           { 20,   15, 3,72, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81963:             "\x05\xa5\x23\xa3\x20\xf2\x21\x12\x81\x12\x20\xf1\x21"
                   81964:             "\x22\x61\x22\x20\xf1\x21\x32\x41\x32\x20\xf2\x21\x42"
                   81965:             "\x21\x42\x20\xf1\x21\x53\x52\x25\x41\x46" }  },
                   81966:       /* --- pixel bitmap for wncyr160 char#78 N --- */
                   81967:       {  78, 8983,                      /* character number, location */
                   81968:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   81969:           { 16,   15, 3,26, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81970:             "\x06\x46\xf5\x22\x82\x20\x2c\x20\xf5\x22\x82\x26\x46" }  },
                   81971:       /* --- pixel bitmap for wncyr160 char#79 O --- */
                   81972:       {  79,29499,                      /* character number, location */
                   81973:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   81974:           { 17,   15, 3,43, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81975:             "\x57\x83\x53\x52\x92\x20\xf1\x12\xb2\x1f\x42\xd2\xf1"
                   81976:             "\x12\xb2\x10\x22\x92\x53\x53\x87\x52" }  },
                   81977:       /* --- pixel bitmap for wncyr160 char#80 P --- */
                   81978:       {  80,10083,                      /* character number, location */
                   81979:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   81980:           { 16,   15, 3,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81981:             "\x0e\x02\xfc\x22\x82\x26\x46" }  },
                   81982:       /* --- pixel bitmap for wncyr160 char#81 Ch --- */
                   81983:       {  81,11130,                      /* character number, location */
                   81984:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   81985:           { 17,   15, 3,36, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81986:             "\x06\x56\xf5\x22\x92\x20\x32\x73\x53\x42\x12\x75\x32"
                   81987:             "\x20\xf3\xd2\x20\xb6" }  },
                   81988:       /* --- pixel bitmap for wncyr160 char#82 R --- */
                   81989:       {  82,30630,                      /* character number, location */
                   81990:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   81991:           { 14,   15, 3,29, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81992:             "\x0b\x52\x63\x10\xf3\x22\x82\x22\x63\x39\x30\xf5\x22"
                   81993:             "\xa6\x82" }  },
                   81994:       /* --- pixel bitmap for wncyr160 char#83 S --- */
                   81995:       {  83,31567,                      /* character number, location */
                   81996:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   81997:           { 15,   15, 3,41, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   81998:             "\x56\x31\x42\x54\x22\x92\xf1\x12\xb1\x0f\x42\xd0\xf1"
                   81999:             "\x12\xb1\x22\x91\x52\x61\x77\x37" }  },
                   82000:       /* --- pixel bitmap for wncyr160 char#84 T --- */
                   82001:       {  84,12223,                      /* character number, location */
                   82002:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   82003:           { 15,   15, 3,25, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82004:             "\x0e\x03\x52\x42\x0f\x21\x62\x51\xf8\x72\x60\x48\x32" }  },
                   82005:       /* --- pixel bitmap for wncyr160 char#85 U --- */
                   82006:       {  85,32771,                      /* character number, location */
                   82007:          15, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   82008:           { 18,   15, 3,57, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82009:             "\x06\x75\x32\x82\x72\x71\x82\x62\x92\x51\xa2\x42\xb2"
                   82010:             "\x31\xd2\x11\xe4\x70\xf1\x82\x80\x22\x41\xb2\x32\xb2"
                   82011:             "\x22\xd4\xbd" }  },
                   82012:       /* --- pixel bitmap for wncyr160 char#86 V --- */
                   82013:       {  86,13541,                      /* character number, location */
                   82014:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   82015:           { 15,   15, 3,49, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82016:             "\x0b\x62\x72\x20\xf2\x22\x82\x10\x22\x73\x32\x54\x4b"
                   82017:             "\x42\x82\x10\xf2\x22\x92\x22\x83\x22\x73\x1c\x31" }  },
                   82018:       /* --- pixel bitmap for wncyr160 char#87 Shch --- */
                   82019:       {  87,15034,                      /* character number, location */
                   82020:          15, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   82021:           { 25,   17, 3,28, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82022:             "\x06\x36\x36\x10\xfc\x22\x72\x72\x3e\x0a\xe0\xa2\xe0"
                   82023:             "\xa1" }  },
                   82024:       /* --- pixel bitmap for wncyr160 char#88 Sh --- */
                   82025:       {  88,16529,                      /* character number, location */
                   82026:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   82027:           { 24,   15, 3,18, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82028:             "\x06\x36\x36\xfc\x22\x72\x72\x2e\x0a" }  },
                   82029:       /* --- pixel bitmap for wncyr160 char#89 Y --- */
                   82030:       {  89,18105,                      /* character number, location */
                   82031:          15, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   82032:           { 24,   15, 3,52, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82033:             "\x08\x97\xf5\x32\xe0\x12\x20\x3c\x52\x52\x83\x42\x20"
                   82034:             "\xf2\x32\xa2\x32\x20\x32\x92\x42\x52\x83\x42\x2e\x37" }  },
                   82035:       /* --- pixel bitmap for wncyr160 char#90 Z --- */
                   82036:       {  90,19153,                      /* character number, location */
                   82037:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   82038:           { 13,   15, 3,43, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82039:             "\x11\x17\x42\x62\x31\x82\xb2\xb1\xa2\x66\xd2\xc2\x10"
                   82040:             "\xf2\xb2\x01\x92\x12\x72\x21\x17\x42" }  },
                   82041:       /* --- pixel bitmap for wncyr160 char#91 (noname) --- */
                   82042:       {  91,41919,                      /* character number, location */
                   82043:          17, 2,   -6, 2,      /* topleft row,col, and botleft row,col */
                   82044:           {  5,   23, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82045:             "\x05\x0f\xe1\x4f\x51\x45" }  },
                   82046:       /* --- pixel bitmap for wncyr160 char#92 (noname) --- */
                   82047:       {  92,57783,                      /* character number, location */
                   82048:          15, 4,    9, 4,      /* topleft row,col, and botleft row,col */
                   82049:           {  7,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82050:             "\x42\x61\x28\x34\x1e\x03" }  },
                   82051:       /* --- pixel bitmap for wncyr160 char#93 (noname) --- */
                   82052:       {  93,42613,                      /* character number, location */
                   82053:          17, 0,   -6, 0,      /* topleft row,col, and botleft row,col */
                   82054:           {  5,   23, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82055:             "\x05\xfe\x41\xf5\x41\x05" }  },
                   82056:       /* --- pixel bitmap for wncyr160 char#94 \Cprime --- */
                   82057:       {  94,20459,                      /* character number, location */
                   82058:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   82059:           { 15,   15, 3,35, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82060:             "\x06\x90\xf5\x22\xb0\x2b\x42\x82\x10\xf2\x22\x92\x22"
                   82061:             "\x83\x22\x73\x1c\x32" }  },
                   82062:       /* --- pixel bitmap for wncyr160 char#95 \Cdprime --- */
                   82063:       {  95,21931,                      /* character number, location */
                   82064:          15, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   82065:           { 21,   15, 3,51, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82066:             "\x1a\xb2\x52\xb0\xf1\x11\x62\xb1\x72\xb0\xf1\x82\xb0"
                   82067:             "\x8b\xa2\x82\x10\xf2\x82\x92\x82\x83\x82\x73\x7c\x37" }  },
                   82068:       /* --- pixel bitmap for wncyr160 char#96 (noname) --- */
                   82069:       {  96,43227,                      /* character number, location */
                   82070:          15, 3,    9, 3,      /* topleft row,col, and botleft row,col */
                   82071:           {  2,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82072:             "\x5a\x0f" }  },
                   82073:       /* --- pixel bitmap for wncyr160 char#97 a --- */
                   82074:       {  97,86189,                      /* character number, location */
                   82075:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   82076:           { 11,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82077:             "\x7c\x30\x06\x60\x00\xc3\x1f\xc3\x0c\x66\xb0\xc2\xe5"
                   82078:             "\x1d" }  },
                   82079:       /* --- pixel bitmap for wncyr160 char#98 b --- */
                   82080:       {  98,86931,                      /* character number, location */
                   82081:          15, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   82082:           { 10,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82083:             "\x00\xe2\xef\x9f\x01\x03\xec\x71\xd8\x40\x03\x0f\x3c"
                   82084:             "\xf0\xc0\x02\x19\x86\x07" }  },
                   82085:       /* --- pixel bitmap for wncyr160 char#99 ts --- */
                   82086:       {  99,93866,                      /* character number, location */
                   82087:          10, 0,   -4, 0,      /* topleft row,col, and botleft row,col */
                   82088:           { 13,   14, 3,22, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82089:             "\x05\x25\x10\xf7\x22\x42\x3c\xb2\xc1\xe0\xc1" }  },
                   82090:       /* --- pixel bitmap for wncyr160 char#100 d --- */
                   82091:       { 100,94824,                      /* character number, location */
                   82092:          10,-2,   -4,-2,      /* topleft row,col, and botleft row,col */
                   82093:           { 16,   14, 3,44, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82094:             "\x5a\x10\xf3\x71\x32\x30\xf1\x62\x32\x30\x61\x42\x82"
                   82095:             "\x42\x5d\x32\x92\x31\xb1\x31\xe1\xd1" }  },
                   82096:       /* --- pixel bitmap for wncyr160 char#101 e --- */
                   82097:       { 101,87697,                      /* character number, location */
                   82098:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   82099:           {  9,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82100:             "\x78\x8c\x09\x1e\xfc\x7f\xc0\x00\x03\x0e\xf1\x01" }  },
                   82101:       /* --- pixel bitmap for wncyr160 char#102 f --- */
                   82102:       { 102,88272,                      /* character number, location */
                   82103:          15, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   82104:           { 14,   21, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82105:             "\x20\x01\x00\x00\x0c\x00\x03\xc0\x00\xfe\x61\x8c\x19"
                   82106:             "\x63\xc2\xd0\x30\x3c\x0c\x0b\x43\xc6\x98\x31\x86\x7f"
                   82107:             "\x00\x03\xc0\x00\x30\x00\x0c\x00\x00\x20\x01" }  },
                   82108:       /* --- pixel bitmap for wncyr160 char#103 g --- */
                   82109:       { 103,95976,                      /* character number, location */
                   82110:          10, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   82111:           { 10,   10, 3,19, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82112:             "\x0a\x22\x42\xf1\x22\x51\xf4\x22\x66\x40" }  },
                   82113:       /* --- pixel bitmap for wncyr160 char#104 kh --- */
                   82114:       { 104,97018,                      /* character number, location */
                   82115:          10, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   82116:           { 12,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82117:             "\x9f\x87\x19\xb8\x00\x07\x60\x00\x0e\xd0\x80\x19\x88"
                   82118:             "\xf1\xfd" }  },
                   82119:       /* --- pixel bitmap for wncyr160 char#105 i --- */
                   82120:       { 105,98222,                      /* character number, location */
                   82121:          10, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   82122:           { 13,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82123:             "\xbf\x9f\xe1\x30\x1c\x46\xc3\x64\x98\x0c\x8b\xe1\x30"
                   82124:             "\x1c\xe6\xf7\x03" }  },
                   82125:       /* --- pixel bitmap for wncyr160 char#106 j --- */
                   82126:       { 106,89101,                      /* character number, location */
                   82127:          16,-1,   -4,-1,      /* topleft row,col, and botleft row,col */
                   82128:           {  6,   20, 3,19, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82129:             "\xf1\x42\xf3\x60\x24\xfa\x42\x02\x26\x21" }  },
                   82130:       /* --- pixel bitmap for wncyr160 char#107 k --- */
                   82131:       { 107,115220,                     /* character number, location */
                   82132:          10, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   82133:           { 11,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82134:             "\x3f\x66\x10\x43\x98\xc1\x07\x46\x30\x84\xa1\x0c\xff"
                   82135:             "\x31" }  },
                   82136:       /* --- pixel bitmap for wncyr160 char#108 l --- */
                   82137:       { 108,99048,                      /* character number, location */
                   82138:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   82139:           { 12,   10, 3,26, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82140:             "\x1b\xf4\x32\x32\x20\x31\x42\x42\x42\x24\x42\x23\x36" }  },
                   82141:       /* --- pixel bitmap for wncyr160 char#109 m --- */
                   82142:       { 109,100329,                     /* character number, location */
                   82143:          10, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   82144:           { 15,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82145:             "\x1f\x7c\x0e\x0e\x8f\x86\x46\x43\xa3\x21\xcb\x90\x65"
                   82146:             "\xc8\x31\xc4\x98\x6f\x3f" }  },
                   82147:       /* --- pixel bitmap for wncyr160 char#110 n --- */
                   82148:       { 110,101528,                     /* character number, location */
                   82149:          10, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   82150:           { 12,   10, 3,26, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82151:             "\x05\x25\xf2\x22\x42\x20\x28\x20\xf3\x22\x42\x25\x25" }  },
                   82152:       /* --- pixel bitmap for wncyr160 char#111 o --- */
                   82153:       { 111,89802,                      /* character number, location */
                   82154:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   82155:           { 10,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82156:             "\x78\x18\x26\xd0\xc0\x03\x0f\x3c\xb0\x40\x86\xe1\x01" }  },
                   82157:       /* --- pixel bitmap for wncyr160 char#112 p --- */
                   82158:       { 112,102608,                     /* character number, location */
                   82159:          10, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   82160:           { 12,   10, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82161:             "\x0c\xf7\x22\x42\x25\x25" }  },
                   82162:       /* --- pixel bitmap for wncyr160 char#113 ch --- */
                   82163:       { 113,103635,                     /* character number, location */
                   82164:          10, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   82165:           { 13,   10, 3,30, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82166:             "\x06\x16\xf3\x22\x52\x20\x33\x14\x63\x22\x20\xf1\x92"
                   82167:             "\x20\x76" }  },
                   82168:       /* --- pixel bitmap for wncyr160 char#114 r --- */
                   82169:       { 114,90892,                      /* character number, location */
                   82170:          10, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   82171:           { 12,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82172:             "\xef\xc1\x31\x0c\xc6\xc0\x0c\xcc\xc0\x0c\xcc\x60\x1c"
                   82173:             "\xc3\x1e\x0c\xc0\x00\x0c\xf0\x03" }  },
                   82174:       /* --- pixel bitmap for wncyr160 char#115 s --- */
                   82175:       { 115,91689,                      /* character number, location */
                   82176:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   82177:           {  9,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82178:             "\xf8\x08\x1b\x18\x30\x60\xc0\x00\x03\x04\xf1\x01" }  },
                   82179:       /* --- pixel bitmap for wncyr160 char#116 t --- */
                   82180:       { 116,104684,                     /* character number, location */
                   82181:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   82182:           { 10,   10, 3,19, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82183:             "\x0a\x0f\x21\x32\x31\xf4\x42\x40\x18\x12" }  },
                   82184:       /* --- pixel bitmap for wncyr160 char#117 u --- */
                   82185:       { 117,92765,                      /* character number, location */
                   82186:          10, 0,   -4, 0,      /* topleft row,col, and botleft row,col */
                   82187:           { 13,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82188:             "\x3f\x9f\xc1\x60\x08\x0c\x01\x13\x60\x02\x7c\x00\x07"
                   82189:             "\xe0\x00\x08\x00\x01\x10\x30\x03\x3c\x00" }  },
                   82190:       /* --- pixel bitmap for wncyr160 char#118 v --- */
                   82191:       { 118,105988,                     /* character number, location */
                   82192:          10, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   82193:           { 11,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82194:             "\xff\x61\x38\x83\x19\xcc\x3f\x86\x31\x98\xc1\x0c\xff"
                   82195:             "\x0f" }  },
                   82196:       /* --- pixel bitmap for wncyr160 char#119 shch --- */
                   82197:       { 119,107461,                     /* character number, location */
                   82198:          10, 0,   -4, 0,      /* topleft row,col, and botleft row,col */
                   82199:           { 18,   14, 3,38, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82200:             "\x05\x15\x15\x10\xf7\x22\x42\x32\x3e\x03\xe0\x22\x10"
                   82201:             "\xf1\xe0\x21\x10\xe0\x31" }  },
                   82202:       /* --- pixel bitmap for wncyr160 char#120 sh --- */
                   82203:       { 120,108930,                     /* character number, location */
                   82204:          10, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   82205:           { 17,   10, 3,18, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82206:             "\x05\x15\x15\xf7\x22\x42\x32\x2e\x03" }  },
                   82207:       /* --- pixel bitmap for wncyr160 char#121 y --- */
                   82208:       { 121,110476,                     /* character number, location */
                   82209:          10, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   82210:           { 17,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82211:             "\x3f\xf8\x19\xc0\x30\x80\x61\x00\xc3\x1f\x86\x61\x0c"
                   82212:             "\x83\x19\x06\x33\x0c\x67\xfe\xf3\x03" }  },
                   82213:       /* --- pixel bitmap for wncyr160 char#122 z --- */
                   82214:       { 122,111474,                     /* character number, location */
                   82215:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   82216:           {  8,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82217:             "\x3f\xc1\xc0\x40\x3c\x60\xc0\xc0\x61\x3f" }  },
                   82218:       /* --- pixel bitmap for wncyr160 char#123 (noname) --- */
                   82219:       { 123,58391,                      /* character number, location */
                   82220:           7, 0,    6, 0,      /* topleft row,col, and botleft row,col */
                   82221:           { 12,    1, 3, 2, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82222:             "\x0c" }  },
                   82223:       /* --- pixel bitmap for wncyr160 char#124 (noname) --- */
                   82224:       { 124,59211,                      /* character number, location */
                   82225:           7, 0,    6, 0,      /* topleft row,col, and botleft row,col */
                   82226:           { 24,    1, 3, 4, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82227:             "\x0e\x0a" }  },
                   82228:       /* --- pixel bitmap for wncyr160 char#125 N0 --- */
                   82229:       { 125,60169,                      /* character number, location */
                   82230:          15, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   82231:           { 19,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82232:             "\x1e\x38\xc0\xa1\x01\x0e\x01\xd0\x08\x80\x46\x30\x64"
                   82233:             "\x42\x22\x13\x13\xb1\x98\x88\x85\x47\x2c\x00\xc2\x01"
                   82234:             "\x10\x8e\x8f\x60\x80\x05\x03\x1c\x10\x00" }  },
                   82235:       /* --- pixel bitmap for wncyr160 char#126 \cprime --- */
                   82236:       { 126,112762,                     /* character number, location */
                   82237:          10, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   82238:           { 11,   10, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82239:             "\x3f\x60\x00\x03\x18\xc0\x1f\x86\x31\x98\xc1\x0c\xff"
                   82240:             "\x0f" }  },
                   82241:       /* --- pixel bitmap for wncyr160 char#127 \cdprime --- */
                   82242:       { 127,114246,                     /* character number, location */
                   82243:          10, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   82244:           { 13,   10, 3,31, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82245:             "\x08\x52\x32\x6f\x11\x42\x60\x56\x72\x32\x10\xf2\x52"
                   82246:             "\x42\x39\x12" }  },
                   82247:       /* --- trailer  --- */
                   82248:       { -99, -999,  0,0,0,0, { 0,0,0,0, (pixbyte *)"\0" }  }
                   82249:    } ;
                   82250: 
                   82251: 
                   82252: /* --- size=5 for .180gf ---
                   82253:  * mf '\mode=preview; mag=magstep(-14.65037297372839890542); input wncyr10'
                   82254:  * --------------------------------------------------------------------- */
                   82255: /* --- fontdef for wncyr180 --- */
                   82256: static	chardef  wncyr180[] =
                   82257:    {
                   82258:       /* --- pixel bitmap for wncyr180 char#0 Nj --- */
                   82259:       {   0,63058,                      /* character number, location */
                   82260:          17, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   82261:           { 26,   17, 3,51, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82262:             "\x08\x28\x80\xf6\x32\x82\xb0\x3e\x07\x52\x82\x82\x10"
                   82263:             "\xf3\x32\x82\x92\x32\x82\x82\x42\x82\x73\x18\x2d\x33" }  },
                   82264:       /* --- pixel bitmap for wncyr180 char#1 Lj --- */
                   82265:       {   1,64076,                      /* character number, location */
                   82266:          17, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   82267:           { 26,   17, 3,67, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82268:             "\x4e\x01\x70\xf6\x71\x62\xa0\x62\x6a\x82\x62\x72\x10"
                   82269:             "\xf1\x62\x62\x82\x61\x72\x82\x12\x31\x72\x82\x12\x22"
                   82270:             "\x72\x72\x25\x82\x63\x33\x6c\x31" }  },
                   82271:       /* --- pixel bitmap for wncyr180 char#2 Dzh --- */
                   82272:       {   2,65191,                      /* character number, location */
                   82273:          17, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   82274:           { 18,   21, 3,19, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82275:             "\x08\x28\xfe\x32\x82\x3e\x04\xf3\x82\x82" }  },
                   82276:       /* --- pixel bitmap for wncyr180 char#3 \`E --- */
                   82277:       {   3,66177,                      /* character number, location */
                   82278:          18, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   82279:           { 16,   19, 3,73, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82280:             "\x01\x45\x62\x12\x52\x43\x82\x32\xa2\x22\xb2\x11\xc2"
                   82281:             "\x11\xd2\x75\x22\x5c\x33\x72\x15\x82\x31\xa3\xd2\x0f"
                   82282:             "\x11\xc2\x10\x11\xa2\x41\x82\x61\x62\x86\x62" }  },
                   82283:       /* --- pixel bitmap for wncyr180 char#4 \=I --- */
                   82284:       {   4,75201,                      /* character number, location */
                   82285:          17, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   82286:           {  8,   17, 3, 8, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82287:             "\x08\xfe\x32\x38" }  },
                   82288:       /* --- pixel bitmap for wncyr180 char#5 \=E --- */
                   82289:       {   5,67164,                      /* character number, location */
                   82290:          18, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   82291:           { 16,   19, 3,69, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82292:             "\x65\x41\x42\x52\x12\x32\x83\x22\xa2\x12\xb2\x12\xc3"
                   82293:             "\xd3\x25\x7b\x52\x73\x33\x85\x12\xa1\x32\xd1\xf1\x12"
                   82294:             "\xc1\x22\xa1\x42\x81\x62\x61\x96\x42" }  },
                   82295:       /* --- pixel bitmap for wncyr180 char#6 Dj --- */
                   82296:       {   6,76361,                      /* character number, location */
                   82297:          17, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   82298:           { 21,   17, 3,61, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82299:             "\x1e\x02\x51\x62\x52\x41\x72\x61\x40\xf2\x82\xb0\x82"
                   82300:             "\x35\xb2\x12\x51\xa3\x72\x10\xf4\x82\x92\x82\x82\x92"
                   82301:             "\x32\x31\x69\x14\x31" }  },
                   82302:       /* --- pixel bitmap for wncyr180 char#7 \'C --- */
                   82303:       {   7,77704,                      /* character number, location */
                   82304:          17, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   82305:           { 18,   17, 3,48, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82306:             "\x0e\x41\x42\x61\x41\x42\x71\x30\xf2\x52\xb0\x52\x25"
                   82307:             "\x94\x51\x83\x62\x20\xf6\x52\x72\x20\x27\x36" }  },
                   82308:       /* --- pixel bitmap for wncyr180 char#8 nj --- */
                   82309:       {   8,118769,                     /* character number, location */
                   82310:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   82311:           { 18,   11, 3,39, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82312:             "\x06\x16\x50\xf3\x22\x52\x70\x2e\x01\x10\xf2\x22\x52"
                   82313:             "\x52\x22\x52\x42\x16\x19\x21" }  },
                   82314:       /* --- pixel bitmap for wncyr180 char#9 lj --- */
                   82315:       {   9,119757,                     /* character number, location */
                   82316:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   82317:           { 17,   11, 3,45, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82318:             "\x2b\x40\xf3\x42\x32\x60\x42\x37\x21\x22\x32\x42\x0f"
                   82319:             "\x13\x11\x42\x42\x05\x42\x42\x13\x39\x11" }  },
                   82320:       /* --- pixel bitmap for wncyr180 char#10 dzh --- */
                   82321:       {  10,120870,                     /* character number, location */
                   82322:          11, 0,   -3, 0,      /* topleft row,col, and botleft row,col */
                   82323:           { 14,   14, 3,17, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82324:             "\x06\x26\xf8\x22\x62\x2e\xf2\x62\x61" }  },
                   82325:       /* --- pixel bitmap for wncyr180 char#11 \`e --- */
                   82326:       {  11,121830,                     /* character number, location */
                   82327:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   82328:           { 11,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82329:             "\x7d\x18\x4c\xc0\xc2\x0c\xff\x1f\x3b\x38\xc0\x01\x13"
                   82330:             "\x0c\x1f\x00" }  },
                   82331:       /* --- pixel bitmap for wncyr180 char#12 \=\i --- */
                   82332:       {  12,81380,                      /* character number, location */
                   82333:          18, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   82334:           {  6,   18, 3,20, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82335:             "\x21\x43\x41\x30\xf3\x64\x20\xf8\x22\x26" }  },
                   82336:       /* --- pixel bitmap for wncyr180 char#13 \=e --- */
                   82337:       {  13,122783,                     /* character number, location */
                   82338:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   82339:           { 11,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82340:             "\xf0\x65\xb0\x01\x67\xf8\x87\xf1\x0f\x6e\x80\x06\x64"
                   82341:             "\x10\x7c\x00" }  },
                   82342:       /* --- pixel bitmap for wncyr180 char#14 dj --- */
                   82343:       {  14,82384,                      /* character number, location */
                   82344:          17, 2,   -5, 2,      /* topleft row,col, and botleft row,col */
                   82345:           { 14,   22, 3,57, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82346:             "\x14\xc2\x9d\x10\xf2\x32\x90\x32\x15\x63\x42\x52\x62"
                   82347:             "\x10\xf4\x32\x72\x32\x71\x42\x62\x26\x42\xc1\xc2\xb2"
                   82348:             "\xb2\x93\x62" }  },
                   82349:       /* --- pixel bitmap for wncyr180 char#15 \'c --- */
                   82350:       {  15,83476,                      /* character number, location */
                   82351:          17, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   82352:           { 15,   17, 3,40, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82353:             "\x14\xd2\xac\x30\xf2\x32\xa0\x32\x24\x74\x41\x63\x52"
                   82354:             "\x20\xf6\x32\x62\x20\x16\x26" }  },
                   82355:       /* --- pixel bitmap for wncyr180 char#16 Yu --- */
                   82356:       {  16,68376,                      /* character number, location */
                   82357:          18, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   82358:           { 28,   19, 3,103, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   82359:             "\xe0\x17\x67\x63\x53\x63\x72\x92\x53\x62\xb2\x20\xf1"
                   82360:             "\x23\x52\xd2\x10\x23\x51\xe0\x11\x10\xf1\x23\x42\xe0"
                   82361:             "\x12\x29\xe0\x12\xf2\x23\x42\xe0\x12\xf1\x23\x52\xd2"
                   82362:             "\x10\x23\x62\xb2\x43\x72\x92\x37\x63\x53\xe0\x57\x62" }  },
                   82363:       /* --- pixel bitmap for wncyr180 char#17 Zh --- */
                   82364:       {  17,61656,                      /* character number, location */
                   82365:          17, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   82366:           { 27,   17, 3,89, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82367:             "\x03\x69\x67\x83\x84\x31\x83\x81\x62\x73\x81\x71\x73"
                   82368:             "\x71\x91\x63\x61\xb3\x33\x33\xeb\xd4\x33\x34\x93\x53"
                   82369:             "\x53\x40\xf2\x32\x73\x72\x3f\x11\x22\x73\x72\x21\x04"
                   82370:             "\x83\x84\x12\x69\x62\x17" }  },
                   82371:       /* --- pixel bitmap for wncyr180 char#18 \u I --- */
                   82372:       {  18,69917,                      /* character number, location */
                   82373:          24, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   82374:           { 20,   24, 3,112, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   82375:             "\x41\xa1\x40\xf1\x33\x83\x30\x41\xa1\x9a\x50\xf1\xe0"
                   82376:             "\x68\x48\x32\xa2\x62\x93\x62\x84\x62\x81\x12\x62\x71"
                   82377:             "\x22\x62\x61\x32\x62\x51\x42\x62\x42\x42\x62\x41\x52"
                   82378:             "\x62\x31\x62\x62\x21\x72\x62\x11\x82\x64\x82\x63\x92"
                   82379:             "\x62\xa2\x38\x48" }  },
                   82380:       /* --- pixel bitmap for wncyr180 char#19 \"E --- */
                   82381:       {  19,79136,                      /* character number, location */
                   82382:          23, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   82383:           { 17,   23, 3,89, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82384:             "\x52\x42\x84\x23\x92\x42\x40\xf2\xe0\x3e\x02\x42\x92"
                   82385:             "\x42\xa1\x42\xa2\x32\xb1\x32\x61\x41\x32\x61\x82\x52"
                   82386:             "\x89\x82\x52\x50\xf1\x32\x61\x41\x32\xb1\xf1\x32\xa1"
                   82387:             "\x10\x32\x83\x1e\x02\x12" }  },
                   82388:       /* --- pixel bitmap for wncyr180 char#20 (noname) --- */
                   82389:       {  20,70922,                      /* character number, location */
                   82390:          17, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   82391:           { 18,   18, 3,69, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82392:             "\x06\x93\x22\xa1\x21\x22\x91\x31\xf1\x32\x81\x40\x32"
                   82393:             "\x71\x92\x61\x50\xf1\x42\x51\x60\x52\x41\x60\xf1\x52"
                   82394:             "\x31\x70\xf2\x62\x11\x80\xf2\x72\x92" }  },
                   82395:       /* --- pixel bitmap for wncyr180 char#21 (noname) --- */
                   82396:       {  21,72098,                      /* character number, location */
                   82397:          18, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   82398:           { 19,   19, 3,79, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82399:             "\x75\xd2\x32\xb2\x52\x50\xf1\x42\x72\x40\x41\x91\x40"
                   82400:             "\xf1\x32\x92\x3f\x1e\x05\x01\x22\x92\x21\xf1\x32\x92"
                   82401:             "\x30\x41\x91\x40\xf1\x42\x72\x40\x52\x52\xb2\x32\xd5"
                   82402:             "\x72" }  },
                   82403:       /* --- pixel bitmap for wncyr180 char#22 \Dz --- */
                   82404:       {  22,73186,                      /* character number, location */
                   82405:          18, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   82406:           { 13,   19, 3,59, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82407:             "\x35\x31\x32\x42\x11\x22\x72\x12\x82\x1f\x12\x91\x13"
                   82408:             "\xb3\xb6\x88\xa4\xb2\xc2\x0f\x21\xa2\x02\x82\x11\x12"
                   82409:             "\x52\x21\x36\x30" }  },
                   82410:       /* --- pixel bitmap for wncyr180 char#23 Ya --- */
                   82411:       {  23,74506,                      /* character number, location */
                   82412:          17, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
                   82413:           { 19,   18, 3,61, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82414:             "\x7c\x52\x72\x72\x82\x30\xf2\x32\x92\x30\x42\x82\x82"
                   82415:             "\x72\xa9\x83\x62\x30\xf3\x42\x82\x3f\x11\x32\x82\x31"
                   82416:             "\x31\x68\x13\xe0\x11" }  },
                   82417:       /* --- pixel bitmap for wncyr180 char#24 yu --- */
                   82418:       {  24,123935,                     /* character number, location */
                   82419:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   82420:           { 20,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82421:             "\x3f\xf8\xc0\x60\x30\x0c\x03\xc6\x18\xc0\x8c\x01\xcc"
                   82422:             "\x1f\xc0\x8c\x01\xcc\x18\xc0\x0c\x03\xc6\x60\x30\x3f"
                   82423:             "\xf8\x00" }  },
                   82424:       /* --- pixel bitmap for wncyr180 char#25 zh --- */
                   82425:       {  25,117385,                     /* character number, location */
                   82426:          11,-1,    0,-1,      /* topleft row,col, and botleft row,col */
                   82427:           { 20,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82428:             "\x83\x1f\x6c\x60\x60\x04\x06\x82\x61\x18\xf0\xff\x80"
                   82429:             "\xff\x1f\x04\x06\x42\x60\x20\x05\x06\x7a\x60\xe0\x82"
                   82430:             "\x1f\x04" }  },
                   82431:       /* --- pixel bitmap for wncyr180 char#26 \u\i --- */
                   82432:       {  26,125458,                     /* character number, location */
                   82433:          17, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   82434:           { 15,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82435:             "\x38\x0e\x1c\x07\x06\x03\xfe\x00\x00\x00\x00\xfc\xf8"
                   82436:             "\x19\x38\x0c\x1e\x06\x0d\x43\x86\x11\xc3\x84\x61\xc1"
                   82437:             "\xf0\x60\x38\x30\x3f\x7e" }  },
                   82438:       /* --- pixel bitmap for wncyr180 char#27 \"e --- */
                   82439:       {  27,84273,                      /* character number, location */
                   82440:          16, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   82441:           { 10,   16, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82442:             "\x8e\x39\x06\x00\x00\x00\xe0\xc3\x98\xc1\x03\xff\x3f"
                   82443:             "\xc0\x00\x03\x18\xc8\x10\x3e" }  },
                   82444:       /* --- pixel bitmap for wncyr180 char#28 (noname) --- */
                   82445:       {  28,126427,                     /* character number, location */
                   82446:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   82447:           { 13,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82448:             "\x3f\x9c\x83\x62\x08\x0c\x81\x11\x60\x02\x4c\x80\x07"
                   82449:             "\xe0\x00\x0c\x80\x01" }  },
                   82450:       /* --- pixel bitmap for wncyr180 char#29 (noname) --- */
                   82451:       {  29,127571,                     /* character number, location */
                   82452:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   82453:           { 12,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82454:             "\xf0\x80\x19\x08\xc1\x30\xff\xff\xff\x0d\xcb\x30\x08"
                   82455:             "\x81\x19\xf0\x00" }  },
                   82456:       /* --- pixel bitmap for wncyr180 char#30 \dz --- */
                   82457:       {  30,128627,                     /* character number, location */
                   82458:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   82459:           {  8,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82460:             "\xbc\xc2\x83\x03\x1f\x7e\xe0\xc0\xc1\x41\x3f" }  },
                   82461:       /* --- pixel bitmap for wncyr180 char#31 ya --- */
                   82462:       {  31,129913,                     /* character number, location */
                   82463:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   82464:           { 14,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82465:             "\xf0\x3f\x06\xc3\xc0\x30\x30\x18\x0c\xfc\x83\xc1\x60"
                   82466:             "\x30\x18\x4c\x06\xe3\xf0\x03" }  },
                   82467:       /* --- pixel bitmap for wncyr180 char#32 \cyddot --- */
                   82468:       {  32,53401,                      /* character number, location */
                   82469:          18, 3,   15, 3,      /* topleft row,col, and botleft row,col */
                   82470:           {  8,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82471:             "\xc3\xe7\xc3" }  },
                   82472:       /* --- pixel bitmap for wncyr180 char#33 (noname) --- */
                   82473:       {  33,33660,                      /* character number, location */
                   82474:          18, 3,    0, 3,      /* topleft row,col, and botleft row,col */
                   82475:           {  3,   18, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82476:             "\xfa\xff\x5b\x92\x04\x40\x17" }  },
                   82477:       /* --- pixel bitmap for wncyr180 char#34 (noname) --- */
                   82478:       {  34,54278,                      /* character number, location */
                   82479:          17, 1,    9, 1,      /* topleft row,col, and botleft row,col */
                   82480:           {  8,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82481:             "\x42\xe7\xc6\x84\x84\x42\x42\x21" }  },
                   82482:       /* --- pixel bitmap for wncyr180 char#35 (noname) --- */
                   82483:       {  35,80643,                      /* character number, location */
                   82484:          19, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   82485:           { 19,   19, 3,61, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82486:             "\x38\x80\xf1\x62\xbe\x02\x31\x52\x72\x21\x52\x81\x20"
                   82487:             "\xf2\x62\xb0\x6b\x20\xf1\x62\x82\x10\xf3\x62\x92\x62"
                   82488:             "\x82\x72\x72\x5d\x31" }  },
                   82489:       /* --- pixel bitmap for wncyr180 char#36 (noname) --- */
                   82490:       {  36,54996,                      /* character number, location */
                   82491:          16, 0,   13, 0,      /* topleft row,col, and botleft row,col */
                   82492:           { 12,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82493:             "\x07\x7e\xe0\xfe\x07" }  },
                   82494:       /* --- pixel bitmap for wncyr180 char#37 (noname) --- */
                   82495:       {  37,34857,                      /* character number, location */
                   82496:          19, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   82497:           { 20,   20, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82498:             "\x38\x00\x41\x04\x08\xc2\xe1\x30\xe8\x05\x83\x20\x30"
                   82499:             "\x08\x02\x83\x10\x30\x88\x00\x42\x08\x40\x44\x00\x38"
                   82500:             "\x82\x03\x10\x46\x00\x21\x04\x08\x83\x40\x30\x08\x04"
                   82501:             "\x83\x20\x30\x08\x01\x42\x10\x60\x84\x00\x38" }  },
                   82502:       /* --- pixel bitmap for wncyr180 char#38 (noname) --- */
                   82503:       {  38,55569,                      /* character number, location */
                   82504:          17, 6,   13, 6,      /* topleft row,col, and botleft row,col */
                   82505:           {  5,    4, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82506:             "\x98\x9b\x01" }  },
                   82507:       /* --- pixel bitmap for wncyr180 char#39 (noname) --- */
                   82508:       {  39,35535,                      /* character number, location */
                   82509:          17, 3,    9, 3,      /* topleft row,col, and botleft row,col */
                   82510:           {  3,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82511:             "\xba\x49\x29" }  },
                   82512:       /* --- pixel bitmap for wncyr180 char#40 (noname) --- */
                   82513:       {  40,36113,                      /* character number, location */
                   82514:          19, 2,   -6, 2,      /* topleft row,col, and botleft row,col */
                   82515:           {  7,   25, 3,38, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82516:             "\x61\x51\x51\x51\x52\x51\x52\x51\x5f\x82\x50\x11\x62"
                   82517:             "\x61\x62\x61\x71\x71\x71" }  },
                   82518:       /* --- pixel bitmap for wncyr180 char#41 (noname) --- */
                   82519:       {  41,36726,                      /* character number, location */
                   82520:          19, 2,   -6, 2,      /* topleft row,col, and botleft row,col */
                   82521:           {  7,   25, 3,39, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82522:             "\x01\x71\x71\x71\x62\x61\x62\x61\x10\xf8\x52\x51\x52"
                   82523:             "\x51\x52\x51\x51\x51\x51\x62" }  },
                   82524:       /* --- pixel bitmap for wncyr180 char#42 (noname) --- */
                   82525:       {  42,37363,                      /* character number, location */
                   82526:          19, 2,    8, 2,      /* topleft row,col, and botleft row,col */
                   82527:           { 10,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82528:             "\x30\xc0\x30\xf3\xed\xfe\xc1\xe0\xdf\xed\x33\xc3\x00"
                   82529:             "\x03" }  },
                   82530:       /* --- pixel bitmap for wncyr180 char#43 (noname) --- */
                   82531:       {  43,85096,                      /* character number, location */
                   82532:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   82533:           { 15,   20, 3,61, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82534:             "\x21\x41\x92\x22\xa1\x21\xb4\x80\xf1\x42\x90\x18\x60"
                   82535:             "\xf3\x42\x90\x48\x72\x53\x52\x62\x10\xf2\x42\x72\x42"
                   82536:             "\x62\x52\x53\x3a\x31" }  },
                   82537:       /* --- pixel bitmap for wncyr180 char#44 (noname) --- */
                   82538:       {  44,37956,                      /* character number, location */
                   82539:           3, 3,   -5, 3,      /* topleft row,col, and botleft row,col */
                   82540:           {  3,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82541:             "\xba\x49\x29" }  },
                   82542:       /* --- pixel bitmap for wncyr180 char#45 (noname) --- */
                   82543:       {  45,38451,                      /* character number, location */
                   82544:           6, 0,    4, 0,      /* topleft row,col, and botleft row,col */
                   82545:           {  8,    2, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82546:             "\xff\xff" }  },
                   82547:       /* --- pixel bitmap for wncyr180 char#46 (noname) --- */
                   82548:       {  46,38908,                      /* character number, location */
                   82549:           3, 3,    0, 3,      /* topleft row,col, and botleft row,col */
                   82550:           {  3,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82551:             "\xba\x00" }  },
                   82552:       /* --- pixel bitmap for wncyr180 char#47 (noname) --- */
                   82553:       {  47,39416,                      /* character number, location */
                   82554:          19, 2,   -6, 2,      /* topleft row,col, and botleft row,col */
                   82555:           { 10,   25, 3,55, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82556:             "\xf1\x91\xf2\x81\x10\xf1\x71\x20\xf2\x61\x30\xf1\x51"
                   82557:             "\x40\xf2\x41\x50\xf2\x31\x60\xf1\x21\x70\xf2\x11\x8f"
                   82558:             "\x11\x91" }  },
                   82559:       /* --- pixel bitmap for wncyr180 char#48 (noname) --- */
                   82560:       {  48,44243,                      /* character number, location */
                   82561:          17, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   82562:           { 12,   18, 3,39, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82563:             "\x44\x62\x42\x32\x62\x10\xf1\x11\x81\x1f\x82\x82\xf1"
                   82564:             "\x12\x62\x10\x22\x42\x64\x40" }  },
                   82565:       /* --- pixel bitmap for wncyr180 char#49 (noname) --- */
                   82566:       {  49,45033,                      /* character number, location */
                   82567:          17, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   82568:           { 10,   17, 3,18, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82569:             "\x42\x64\x42\x22\x40\xfc\x42\x40\x19" }  },
                   82570:       /* --- pixel bitmap for wncyr180 char#50 (noname) --- */
                   82571:       {  50,46010,                      /* character number, location */
                   82572:          17, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   82573:           { 12,   17, 3,47, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82574:             "\x35\x61\x52\x31\x72\x1f\x11\x92\x02\x82\xf1\xa2\x92"
                   82575:             "\x92\x92\x92\x91\xa1\x61\x22\x71\x1a\x1b\x12" }  },
                   82576:       /* --- pixel bitmap for wncyr180 char#51 (noname) --- */
                   82577:       {  51,47048,                      /* character number, location */
                   82578:          17, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   82579:           { 12,   18, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82580:             "\xf0\xc0\x30\x02\x66\x60\x06\x06\x60\x00\x03\x18\xf0"
                   82581:             "\x01\x30\x00\x06\xc0\x03\x3c\xc0\x01\x2c\x60\x04\x83"
                   82582:             "\x1f" }  },
                   82583:       /* --- pixel bitmap for wncyr180 char#52 (noname) --- */
                   82584:       {  52,47980,                      /* character number, location */
                   82585:          17, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   82586:           { 12,   17, 3,48, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82587:             "\xf1\x72\x30\x63\x84\x81\x12\x71\x22\x61\x32\x52\x32"
                   82588:             "\x51\x42\x41\x52\x32\x52\x3c\xf3\x72\x30\x48" }  },
                   82589:       /* --- pixel bitmap for wncyr180 char#53 (noname) --- */
                   82590:       {  53,49018,                      /* character number, location */
                   82591:          17, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   82592:           { 12,   18, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82593:             "\x04\xc6\x3f\xf4\x40\x00\x04\x40\x00\xe4\xc1\x31\x04"
                   82594:             "\x46\x40\x00\x0c\xc0\x00\x3c\xc0\x01\x24\x60\x04\x83"
                   82595:             "\x0f" }  },
                   82596:       /* --- pixel bitmap for wncyr180 char#54 (noname) --- */
                   82597:       {  54,49920,                      /* character number, location */
                   82598:          17, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   82599:           { 12,   18, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82600:             "\xe0\x01\x61\x08\x46\x60\x06\x20\x00\xf3\xb0\x30\x07"
                   82601:             "\x36\x40\x03\x3c\xc0\x03\x2c\xc0\x06\x44\x60\x08\x03"
                   82602:             "\x0f" }  },
                   82603:       /* --- pixel bitmap for wncyr180 char#55 (noname) --- */
                   82604:       {  55,50834,                      /* character number, location */
                   82605:          17, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   82606:           { 12,   18, 3,43, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82607:             "\x11\xbb\x1a\x1f\x11\x81\x20\x81\xa1\x40\xf1\x61\x50"
                   82608:             "\xf1\x51\x60\x42\xa1\x70\xf4\x32\x71" }  },
                   82609:       /* --- pixel bitmap for wncyr180 char#56 (noname) --- */
                   82610:       {  56,51754,                      /* character number, location */
                   82611:          17, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   82612:           { 12,   18, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82613:             "\xf0\xc0\x30\x00\x24\x40\x02\x64\x40\x1c\x82\x1b\xf0"
                   82614:             "\xc0\x3c\x06\x27\xe0\x03\x3c\xc0\x03\x6c\x60\x0c\x83"
                   82615:             "\x1f" }  },
                   82616:       /* --- pixel bitmap for wncyr180 char#57 (noname) --- */
                   82617:       {  57,52664,                      /* character number, location */
                   82618:          17, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   82619:           { 12,   18, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82620:             "\xf0\xc0\x30\x06\x22\x60\x03\x34\xc0\x03\x3c\xc0\x02"
                   82621:             "\x6c\xe0\x0c\x0d\xcf\x00\x04\x60\x06\x62\x30\x84\x81"
                   82622:             "\x07" }  },
                   82623:       /* --- pixel bitmap for wncyr180 char#58 (noname) --- */
                   82624:       {  58,40012,                      /* character number, location */
                   82625:          11, 3,    0, 3,      /* topleft row,col, and botleft row,col */
                   82626:           {  3,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82627:             "\xba\x00\x00\xba\x00" }  },
                   82628:       /* --- pixel bitmap for wncyr180 char#59 (noname) --- */
                   82629:       {  59,40679,                      /* character number, location */
                   82630:          11, 3,   -5, 3,      /* topleft row,col, and botleft row,col */
                   82631:           {  3,   16, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82632:             "\xba\x00\x00\xba\x49\x29" }  },
                   82633:       /* --- pixel bitmap for wncyr180 char#60 < --- */
                   82634:       {  60,56185,                      /* character number, location */
                   82635:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   82636:           { 14,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82637:             "\x80\x00\x10\x0c\x83\x60\x18\x04\xc1\x30\x40\x10\x60"
                   82638:             "\x18\x30\x08\x10\x0c\x08\x00" }  },
                   82639:       /* --- pixel bitmap for wncyr180 char#61 (noname) --- */
                   82640:       {  61,85829,                      /* character number, location */
                   82641:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   82642:           {  6,   11, 3,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82643:             "\x04\x20\xf8\x22\x26" }  },
                   82644:       /* --- pixel bitmap for wncyr180 char#62 > --- */
                   82645:       {  62,56744,                      /* character number, location */
                   82646:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   82647:           { 14,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82648:             "\x40\xc0\x20\x40\x30\x60\x18\x20\x08\x30\x0c\x82\x60"
                   82649:             "\x18\x04\xc3\x20\x00\x04\x00" }  },
                   82650:       /* --- pixel bitmap for wncyr180 char#63 (noname) --- */
                   82651:       {  63,41570,                      /* character number, location */
                   82652:          17, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   82653:           {  9,   17, 3,37, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82654:             "\x25\x31\x51\x1f\x12\x52\x71\x71\x71\x30\xf3\x41\x40"
                   82655:             "\xf2\x90\x41\x73\x71\x41" }  },
                   82656:       /* --- pixel bitmap for wncyr180 char#64 (noname) --- */
                   82657:       {  64,57394,                      /* character number, location */
                   82658:          17, 3,   14, 3,      /* topleft row,col, and botleft row,col */
                   82659:           {  8,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82660:             "\x81\xc3\x3c" }  },
                   82661:       /* --- pixel bitmap for wncyr180 char#65 A --- */
                   82662:       {  65,24189,                      /* character number, location */
                   82663:          18, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   82664:           { 18,   18, 3,64, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82665:             "\xf2\x82\x80\xf1\x71\x12\x70\x62\x13\x60\xf1\x61\x32"
                   82666:             "\x60\xf2\x51\x52\x50\x4a\x40\xf1\x41\x72\x40\xf1\x31"
                   82667:             "\x92\x30\x22\x93\x26\x57" }  },
                   82668:       /* --- pixel bitmap for wncyr180 char#66 B --- */
                   82669:       {  66,25557,                      /* character number, location */
                   82670:          17, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   82671:           { 16,   17, 3,55, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82672:             "\x0e\x52\x72\x52\x81\x52\x82\x10\xf1\x32\x91\x10\xf1"
                   82673:             "\x32\xb0\x3b\x52\x82\x10\xf3\x32\x92\x32\x82\x42\x73"
                   82674:             "\x1d\x30" }  },
                   82675:       /* --- pixel bitmap for wncyr180 char#67 Ts --- */
                   82676:       {  67, 1087,                      /* character number, location */
                   82677:          17, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   82678:           { 19,   19, 3,24, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82679:             "\x08\x28\x10\xfe\x32\x82\x4e\x04\xe0\x32\xe0\x42" }  },
                   82680:       /* --- pixel bitmap for wncyr180 char#68 D --- */
                   82681:       {  68, 2069,                      /* character number, location */
                   82682:          17,-1,   -2,-1,      /* topleft row,col, and botleft row,col */
                   82683:           { 22,   19, 3,70, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82684:             "\x6e\x01\xa2\x52\x40\xf4\x91\x62\x40\xf1\x82\x62\x40"
                   82685:             "\xf1\x81\x72\x40\x72\x72\xb1\x82\xa2\x82\xa1\x92\x92"
                   82686:             "\x92\x6e\x05\x32\xe0\x12\x21\xe0\x42" }  },
                   82687:       /* --- pixel bitmap for wncyr180 char#69 E --- */
                   82688:       {  69,26960,                      /* character number, location */
                   82689:          17, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   82690:           { 17,   17, 3,71, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82691:             "\x0e\x02\x42\x92\x42\xa1\x42\xa2\x32\xb1\x32\x61\x41"
                   82692:             "\x32\x61\x82\x52\x89\x82\x52\x50\xf1\x32\x61\x41\x32"
                   82693:             "\xb1\xf1\x32\xa1\x10\x32\x83\x1e\x02\x13" }  },
                   82694:       /* --- pixel bitmap for wncyr180 char#70 F --- */
                   82695:       {  70,28037,                      /* character number, location */
                   82696:          17, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   82697:           { 16,   17, 3,57, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82698:             "\x48\x40\xf2\x72\x70\x48\x62\x32\x32\x32\x42\x42\x1f"
                   82699:             "\x22\x52\x52\x12\x42\x42\x32\x32\x32\x68\x40\xf2\x72"
                   82700:             "\x70\x48\x42" }  },
                   82701:       /* --- pixel bitmap for wncyr180 char#71 G --- */
                   82702:       {  71, 3243,                      /* character number, location */
                   82703:          17, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   82704:           { 16,   17, 3,29, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82705:             "\x0e\x01\x42\x82\x42\x91\x42\x92\xf1\x32\xa1\xf9\x32"
                   82706:             "\xb8\x81" }  },
                   82707:       /* --- pixel bitmap for wncyr180 char#72 Kh --- */
                   82708:       {  72, 4329,                      /* character number, location */
                   82709:          17, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   82710:           { 18,   17, 3,68, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82711:             "\x07\x46\x42\x73\x72\x61\x93\x42\xa2\x41\xc2\x21\x70"
                   82712:             "\xf1\x73\x80\x82\xe0\x11\x12\xd2\x22\xc1\x33\xa1\x52"
                   82713:             "\x91\x72\x72\x73\x53\x82\x36\x57" }  },
                   82714:       /* --- pixel bitmap for wncyr180 char#73 I --- */
                   82715:       {  73, 5561,                      /* character number, location */
                   82716:          17, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   82717:           { 20,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82718:             "\xff\xf0\x8f\x01\x18\x18\xc0\x81\x01\x1e\x18\xa0\x81"
                   82719:             "\x01\x19\x18\x88\x81\x41\x18\x18\x86\x81\x21\x18\x18"
                   82720:             "\x81\x81\x09\x18\x58\x80\x81\x07\x18\x38\x80\x81\x01"
                   82721:             "\x18\xff\xf0\x0f" }  },
                   82722:       /* --- pixel bitmap for wncyr180 char#74 J --- */
                   82723:       {  74,28876,                      /* character number, location */
                   82724:          17, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   82725:           { 11,   18, 3,23, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82726:             "\x38\xfb\x72\x2f\x12\x52\x21\x61\x41\x42\x54\x52" }  },
                   82727:       /* --- pixel bitmap for wncyr180 char#75 K --- */
                   82728:       {  75,23113,                      /* character number, location */
                   82729:          17, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   82730:           { 18,   17, 3,63, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82731:             "\x08\x73\x32\x94\xf1\x32\x91\x30\x32\x81\x72\x71\x82"
                   82732:             "\x43\x97\xb2\x44\x82\x63\x40\xf2\x32\x82\x30\xf1\x32"
                   82733:             "\x82\x21\x32\x9c\x72\x12" }  },
                   82734:       /* --- pixel bitmap for wncyr180 char#76 L --- */
                   82735:       {  76, 6451,                      /* character number, location */
                   82736:          17, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   82737:           { 18,   17, 3,52, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82738:             "\x3e\x01\x52\x62\x30\xf2\x61\x62\x30\xf5\x52\x62\x30"
                   82739:             "\xf1\x51\x72\x30\x42\x72\x32\x21\x82\x35\x82\x43\x68" }  },
                   82740:       /* --- pixel bitmap for wncyr180 char#77 M --- */
                   82741:       {  77, 7762,                      /* character number, location */
                   82742:          17, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   82743:           { 23,   17, 3,82, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82744:             "\x06\xb6\x33\xb3\x30\xf2\x31\x12\x91\x12\x30\xf1\x31"
                   82745:             "\x22\x71\x22\x30\xf2\x31\x32\x51\x32\x30\xf1\x31\x42"
                   82746:             "\x31\x42\x30\xf2\x31\x52\x11\x52\x30\x23\x52\x62\x37"
                   82747:             "\x32\x38" }  },
                   82748:       /* --- pixel bitmap for wncyr180 char#78 N --- */
                   82749:       {  78, 9021,                      /* character number, location */
                   82750:          17, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   82751:           { 18,   17, 3,26, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82752:             "\x08\x28\xf6\x32\x82\x30\x3c\x30\xf6\x32\x82\x38\x28" }  },
                   82753:       /* --- pixel bitmap for wncyr180 char#79 O --- */
                   82754:       {  79,29715,                      /* character number, location */
                   82755:          18, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   82756:           { 19,   19, 3,61, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82757:             "\x67\xa3\x53\x72\x92\x52\xb2\x20\xf1\x12\xd2\x10\x11"
                   82758:             "\xe0\x11\x1f\x52\xe0\x12\xf1\x12\xd2\x10\x22\xb2\x52"
                   82759:             "\x92\x73\x53\xa7\x60" }  },
                   82760:       /* --- pixel bitmap for wncyr180 char#80 P --- */
                   82761:       {  80,10129,                      /* character number, location */
                   82762:          17, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   82763:           { 18,   17, 3,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82764:             "\x0e\x04\xfe\x32\x82\x38\x28" }  },
                   82765:       /* --- pixel bitmap for wncyr180 char#81 Ch --- */
                   82766:       {  81,11184,                      /* character number, location */
                   82767:          17, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   82768:           { 20,   17, 3,38, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82769:             "\x08\x48\xf6\x32\xa2\x30\x42\x83\x83\x42\x12\x96\x32"
                   82770:             "\x30\xf4\xe0\x12\x30\xc8" }  },
                   82771:       /* --- pixel bitmap for wncyr180 char#82 R --- */
                   82772:       {  82,30862,                      /* character number, location */
                   82773:          17, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   82774:           { 17,   17, 3,37, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82775:             "\x0d\x72\x82\x52\x92\x10\xf2\x32\xa2\x32\x92\x42\x82"
                   82776:             "\x5a\x40\xf6\x32\xc8\x92" }  },
                   82777:       /* --- pixel bitmap for wncyr180 char#83 S --- */
                   82778:       {  83,31805,                      /* character number, location */
                   82779:          18, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   82780:           { 16,   19, 3,57, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82781:             "\x65\x41\x42\x52\x12\x32\x83\x22\xa2\x12\xb2\x12\xc3"
                   82782:             "\xd1\x0f\x42\xe2\xd1\xf1\x12\xc1\x22\xa1\x42\x81\x62"
                   82783:             "\x61\x96\x43" }  },
                   82784:       /* --- pixel bitmap for wncyr180 char#84 T --- */
                   82785:       {  84,12283,                      /* character number, location */
                   82786:          17, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   82787:           { 18,   17, 3,39, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82788:             "\x1e\x02\x22\x52\x52\x21\x62\x61\x12\x62\x62\x0f\x11"
                   82789:             "\x72\x71\xf9\x82\x80\x4a\x42" }  },
                   82790:       /* --- pixel bitmap for wncyr180 char#85 U --- */
                   82791:       {  85,33027,                      /* character number, location */
                   82792:          17, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   82793:           { 18,   17, 3,65, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82794:             "\x06\x75\x22\xa2\x52\x91\x62\x82\x72\x71\x92\x51\xa2"
                   82795:             "\x42\xb2\x31\xc2\x22\xd2\x11\xe4\xe0\x12\xe0\x21\xa2"
                   82796:             "\x42\xa1\x51\xc1\x31\xe3\xc3" }  },
                   82797:       /* --- pixel bitmap for wncyr180 char#86 V --- */
                   82798:       {  86,13609,                      /* character number, location */
                   82799:          17, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   82800:           { 16,   17, 3,51, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82801:             "\x0d\x62\x72\x52\x82\x10\xf2\x32\x92\x32\x82\x42\x63"
                   82802:             "\x5b\x52\x82\x10\xf3\x32\x92\x32\x82\x42\x73\x1d\x32" }  },
                   82803:       /* --- pixel bitmap for wncyr180 char#87 Shch --- */
                   82804:       {  87,15110,                      /* character number, location */
                   82805:          17, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   82806:           { 28,   19, 3,28, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82807:             "\x08\x27\x28\x10\xfe\x32\x73\x72\x4e\x0d\xe0\xc2\xe0"
                   82808:             "\xd2" }  },
                   82809:       /* --- pixel bitmap for wncyr180 char#88 Sh --- */
                   82810:       {  88,16617,                      /* character number, location */
                   82811:          17, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   82812:           { 27,   17, 3,18, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82813:             "\x08\x27\x28\xfe\x32\x73\x72\x3e\x0d" }  },
                   82814:       /* --- pixel bitmap for wncyr180 char#89 Y --- */
                   82815:       {  89,18231,                      /* character number, location */
                   82816:          17, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   82817:           { 25,   17, 3,52, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82818:             "\x08\x98\xf6\x32\xe0\x12\x30\x3b\x62\x62\x82\x52\x30"
                   82819:             "\xf3\x32\x92\x42\x30\x32\x82\x52\x62\x73\x52\x3d\x48" }  },
                   82820:       /* --- pixel bitmap for wncyr180 char#90 Z --- */
                   82821:       {  90,19289,                      /* character number, location */
                   82822:          18, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   82823:           { 15,   19, 3,61, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82824:             "\x11\x36\x54\x53\x32\x92\x10\xf1\x11\xa2\x10\xc2\xc2"
                   82825:             "\xb3\x77\xe3\xe2\xe1\x10\xf1\xd2\x01\xc3\xc1\x12\xa2"
                   82826:             "\x13\x73\x21\x28\x41" }  },
                   82827:       /* --- pixel bitmap for wncyr180 char#91 (noname) --- */
                   82828:       {  91,42253,                      /* character number, location */
                   82829:          19, 2,   -6, 2,      /* topleft row,col, and botleft row,col */
                   82830:           {  6,   25, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82831:             "\x06\x0f\xe1\x5f\x71\x56" }  },
                   82832:       /* --- pixel bitmap for wncyr180 char#92 (noname) --- */
                   82833:       {  92,58269,                      /* character number, location */
                   82834:          17, 5,    9, 5,      /* topleft row,col, and botleft row,col */
                   82835:           {  8,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82836:             "\x84\x42\x42\x21\x21\x63\xe7\x42" }  },
                   82837:       /* --- pixel bitmap for wncyr180 char#93 (noname) --- */
                   82838:       {  93,42951,                      /* character number, location */
                   82839:          19, 0,   -6, 0,      /* topleft row,col, and botleft row,col */
                   82840:           {  6,   25, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82841:             "\x06\xfe\x51\xf7\x51\x06" }  },
                   82842:       /* --- pixel bitmap for wncyr180 char#94 \Cprime --- */
                   82843:       {  94,20611,                      /* character number, location */
                   82844:          17, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   82845:           { 16,   17, 3,35, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82846:             "\x08\x80\xf6\x32\xb0\x3b\x52\x82\x10\xf3\x32\x92\x32"
                   82847:             "\x82\x42\x73\x1d\x31" }  },
                   82848:       /* --- pixel bitmap for wncyr180 char#95 \Cdprime --- */
                   82849:       {  95,22089,                      /* character number, location */
                   82850:          17, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   82851:           { 22,   17, 3,51, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82852:             "\x1b\xb3\x52\xb0\xf2\x11\x72\xb1\x82\xb0\xf1\x92\xb0"
                   82853:             "\x9b\xb2\x82\x10\xf3\x92\x92\x92\x82\xa2\x73\x7d\x32" }  },
                   82854:       /* --- pixel bitmap for wncyr180 char#96 (noname) --- */
                   82855:       {  96,43569,                      /* character number, location */
                   82856:          17, 3,    9, 3,      /* topleft row,col, and botleft row,col */
                   82857:           {  3,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82858:             "\x94\x92\x5d" }  },
                   82859:       /* --- pixel bitmap for wncyr180 char#97 a --- */
                   82860:       {  97,86951,                      /* character number, location */
                   82861:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   82862:           { 13,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82863:             "\xfc\xc0\x30\x00\x0c\x80\x01\x3f\x38\x86\xc1\x18\x98"
                   82864:             "\x03\xd3\x70\xf2\x3d" }  },
                   82865:       /* --- pixel bitmap for wncyr180 char#98 b --- */
                   82866:       {  98,87699,                      /* character number, location */
                   82867:          16, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   82868:           { 11,   16, 3,41, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82869:             "\x91\x38\x26\x52\x82\x91\x25\x31\x12\x32\x23\x52\x1f"
                   82870:             "\x42\x72\x12\x52\x32\x32\x55\x34" }  },
                   82871:       /* --- pixel bitmap for wncyr180 char#99 ts --- */
                   82872:       {  99,94714,                      /* character number, location */
                   82873:          11, 0,   -4, 0,      /* topleft row,col, and botleft row,col */
                   82874:           { 15,   15, 3,24, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82875:             "\x06\x26\x10\xf8\x22\x62\x3e\xd2\xe1\x10\xf1\xe1" }  },
                   82876:       /* --- pixel bitmap for wncyr180 char#100 d --- */
                   82877:       { 100,95702,                      /* character number, location */
                   82878:          11,-1,   -4,-1,      /* topleft row,col, and botleft row,col */
                   82879:           { 16,   15, 3,48, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82880:             "\x4b\x10\xf3\x62\x32\x30\xf1\x61\x42\x30\x52\x42\x81"
                   82881:             "\x52\x72\x52\x5d\x22\xa2\x21\xc1\x21\xd2\xe1" }  },
                   82882:       /* --- pixel bitmap for wncyr180 char#101 e --- */
                   82883:       { 101,88471,                      /* character number, location */
                   82884:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   82885:           { 10,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82886:             "\xf8\x30\x66\xf0\xc0\xff\x0f\x30\xc0\x00\x06\x32\x84"
                   82887:             "\x0f" }  },
                   82888:       /* --- pixel bitmap for wncyr180 char#102 f --- */
                   82889:       { 102,89050,                      /* character number, location */
                   82890:          16, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   82891:           { 16,   22, 3,69, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82892:             "\x61\x21\x60\xf3\x72\x70\x33\x12\x13\x51\x34\x31\x32"
                   82893:             "\x42\x42\x1f\x42\x52\x52\x12\x42\x42\x31\x34\x31\x53"
                   82894:             "\x12\x13\x30\xf4\x72\x70\x61\x21\x62" }  },
                   82895:       /* --- pixel bitmap for wncyr180 char#103 g --- */
                   82896:       { 103,96860,                      /* character number, location */
                   82897:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   82898:           { 11,   11, 3,19, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82899:             "\x0b\x22\x52\xf1\x22\x61\xf5\x22\x77\x40" }  },
                   82900:       /* --- pixel bitmap for wncyr180 char#104 kh --- */
                   82901:       { 104,97930,                      /* character number, location */
                   82902:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   82903:           { 12,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82904:             "\x9f\xc7\x19\x98\x00\x0f\x70\x00\x06\xf0\x00\x1d\x88"
                   82905:             "\xc1\x30\xdf\x0f" }  },
                   82906:       /* --- pixel bitmap for wncyr180 char#105 i --- */
                   82907:       { 105,99162,                      /* character number, location */
                   82908:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   82909:           { 15,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82910:             "\x3f\x7e\x06\x0e\x83\x87\x41\xc3\x90\x61\xc4\x30\x61"
                   82911:             "\x58\x30\x3c\x18\x0e\xcc\x8f\x1f" }  },
                   82912:       /* --- pixel bitmap for wncyr180 char#106 j --- */
                   82913:       { 106,89893,                      /* character number, location */
                   82914:          18,-1,   -5,-1,      /* topleft row,col, and botleft row,col */
                   82915:           {  7,   23, 3,25, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82916:             "\x51\x53\x51\x10\xf3\x70\x34\xfc\x52\x02\x22\x24\x22" }  },
                   82917:       /* --- pixel bitmap for wncyr180 char#107 k --- */
                   82918:       { 107,116462,                     /* character number, location */
                   82919:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   82920:           { 13,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82921:             "\x3f\x98\x81\x31\x10\x86\xc1\x1f\xf8\x07\x03\x61\x20"
                   82922:             "\x0c\x94\x81\xff\x20" }  },
                   82923:       /* --- pixel bitmap for wncyr180 char#108 l --- */
                   82924:       { 108,99994,                      /* character number, location */
                   82925:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   82926:           { 14,   11, 3,30, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82927:             "\x2c\xf4\x42\x42\x20\xf1\x41\x52\x20\x32\x52\x24\x62"
                   82928:             "\x23\x56" }  },
                   82929:       /* --- pixel bitmap for wncyr180 char#109 m --- */
                   82930:       { 109,101305,                     /* character number, location */
                   82931:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   82932:           { 17,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82933:             "\x1f\xf0\x39\xe0\xd0\xa0\xa1\x41\x43\x46\x86\x8c\x0c"
                   82934:             "\x19\x19\x62\x31\xc4\x62\x08\xc3\x7c\xe6\x07" }  },
                   82935:       /* --- pixel bitmap for wncyr180 char#110 n --- */
                   82936:       { 110,102542,                     /* character number, location */
                   82937:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   82938:           { 14,   11, 3,26, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82939:             "\x06\x26\xf3\x22\x62\x20\x2a\x20\xf3\x22\x62\x26\x26" }  },
                   82940:       /* --- pixel bitmap for wncyr180 char#111 o --- */
                   82941:       { 111,90600,                      /* character number, location */
                   82942:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   82943:           { 12,   11, 3,27, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82944:             "\x44\x62\x42\x32\x62\x1f\x42\x82\x12\x62\x32\x42\x56"
                   82945:             "\x32" }  },
                   82946:       /* --- pixel bitmap for wncyr180 char#112 p --- */
                   82947:       { 112,103652,                     /* character number, location */
                   82948:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   82949:           { 14,   11, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82950:             "\x0e\xf8\x22\x62\x26\x26" }  },
                   82951:       /* --- pixel bitmap for wncyr180 char#113 ch --- */
                   82952:       { 113,104709,                     /* character number, location */
                   82953:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   82954:           { 15,   11, 3,36, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82955:             "\x06\x36\xf3\x22\x72\x20\x22\x63\x53\x22\x12\x74\x22"
                   82956:             "\x20\xf1\xb2\x20\x96" }  },
                   82957:       /* --- pixel bitmap for wncyr180 char#114 r --- */
                   82958:       { 114,91694,                      /* character number, location */
                   82959:          11, 1,   -5, 1,      /* topleft row,col, and botleft row,col */
                   82960:           { 13,   16, 3,41, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82961:             "\x04\x15\x53\x42\x42\x62\x10\xf4\x22\x72\x22\x62\x33"
                   82962:             "\x42\x42\x14\x40\xf3\x22\x96\x72" }  },
                   82963:       /* --- pixel bitmap for wncyr180 char#115 s --- */
                   82964:       { 115,92497,                      /* character number, location */
                   82965:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   82966:           { 10,   11, 3,25, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82967:             "\x36\x32\x42\x12\x7f\x42\x80\x12\x61\x22\x41\x45\x23" }  },
                   82968:       /* --- pixel bitmap for wncyr180 char#116 t --- */
                   82969:       { 116,105790,                     /* character number, location */
                   82970:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   82971:           { 11,   11, 3,23, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82972:             "\x0d\x32\x31\x0f\x11\x42\x31\xf5\x52\x40\x28\x14" }  },
                   82973:       /* --- pixel bitmap for wncyr180 char#117 u --- */
                   82974:       { 117,93577,                      /* character number, location */
                   82975:          11, 1,   -5, 1,      /* topleft row,col, and botleft row,col */
                   82976:           { 12,   16, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82977:             "\x1f\xef\x60\x0c\xc2\x20\x18\x81\x11\xb0\x00\x0b\xf0"
                   82978:             "\x00\x06\x60\x00\x02\x20\x30\x01\x1b\xe0\x00" }  },
                   82979:       /* --- pixel bitmap for wncyr180 char#118 v --- */
                   82980:       { 118,107096,                     /* character number, location */
                   82981:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   82982:           { 12,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82983:             "\xff\xc1\x60\x0c\xc6\x60\x0c\xc3\x7f\x0c\xce\xc0\x0c"
                   82984:             "\xcc\x60\xff\x03" }  },
                   82985:       /* --- pixel bitmap for wncyr180 char#119 shch --- */
                   82986:       { 119,108599,                     /* character number, location */
                   82987:          11, 0,   -4, 0,      /* topleft row,col, and botleft row,col */
                   82988:           { 21,   15, 3,36, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82989:             "\x06\x16\x16\x10\xf8\x22\x52\x52\x3e\x06\xe0\x52\xe0"
                   82990:             "\x61\x10\xf1\xe0\x61" }  },
                   82991:       /* --- pixel bitmap for wncyr180 char#120 sh --- */
                   82992:       { 120,110100,                     /* character number, location */
                   82993:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   82994:           { 20,   11, 3,18, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   82995:             "\x06\x16\x16\xf8\x22\x52\x52\x2e\x06" }  },
                   82996:       /* --- pixel bitmap for wncyr180 char#121 y --- */
                   82997:       { 121,111678,                     /* character number, location */
                   82998:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   82999:           { 18,   11, 3,44, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83000:             "\x06\x66\xf3\x22\xa2\x20\x29\x32\x42\x53\x22\x20\xf1"
                   83001:             "\x22\x62\x22\x20\x22\x52\x32\x2a\x26" }  },
                   83002:       /* --- pixel bitmap for wncyr180 char#122 z --- */
                   83003:       { 122,112706,                     /* character number, location */
                   83004:          11, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   83005:           {  9,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83006:             "\x7f\x02\x05\x06\x0c\x8c\x0f\x30\xc0\x81\x83\xfd\x01" }  },
                   83007:       /* --- pixel bitmap for wncyr180 char#123 (noname) --- */
                   83008:       { 123,58885,                      /* character number, location */
                   83009:           7, 0,    6, 0,      /* topleft row,col, and botleft row,col */
                   83010:           { 14,    1, 3, 2, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83011:             "\x0e" }  },
                   83012:       /* --- pixel bitmap for wncyr180 char#124 (noname) --- */
                   83013:       { 124,59705,                      /* character number, location */
                   83014:           7, 0,    6, 0,      /* topleft row,col, and botleft row,col */
                   83015:           { 28,    1, 3, 4, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83016:             "\x0e\x0e" }  },
                   83017:       /* --- pixel bitmap for wncyr180 char#125 N0 --- */
                   83018:       { 125,60663,                      /* character number, location */
                   83019:          17, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   83020:           { 22,   17, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83021:             "\x1e\x30\x00\x0e\x1a\x80\x83\x00\xa0\x21\x00\x68\x08"
                   83022:             "\x00\x32\xc2\x83\x8c\x10\x21\x26\x44\x88\x09\x11\xc2"
                   83023:             "\xc2\x86\xb0\x40\x20\x28\x00\x08\x8e\x3f\x02\x03\x80"
                   83024:             "\xc0\x00\x2c\x20\x00\x06\x08\x00" }  },
                   83025:       /* --- pixel bitmap for wncyr180 char#126 \cprime --- */
                   83026:       { 126,114000,                     /* character number, location */
                   83027:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   83028:           { 12,   11, 3,29, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83029:             "\x06\x60\xf3\x22\x80\x29\x32\x53\xf1\x22\x62\x22\x52"
                   83030:             "\x1a\x22" }  },
                   83031:       /* --- pixel bitmap for wncyr180 char#127 \cdprime --- */
                   83032:       { 127,115460,                     /* character number, location */
                   83033:          11, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   83034:           { 16,   11, 3,35, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83035:             "\x09\x72\x42\x8f\x11\x52\x80\x62\xe9\x72\x53\xf1\x62"
                   83036:             "\x62\x62\x52\x5a\x22" }  },
                   83037:       /* --- trailer  --- */
                   83038:       { -99, -999,  0,0,0,0, { 0,0,0,0, (pixbyte *)"\0" }  }
                   83039:    } ;
                   83040: 
                   83041: 
                   83042: /* --- size=6 for .210gf ---
                   83043:  * mf '\mode=preview; mag=magstep(-13.80488502080647873125); input wncyr10'
                   83044:  * --------------------------------------------------------------------- */
                   83045: /* --- fontdef for wncyr210 --- */
                   83046: static	chardef  wncyr210[] =
                   83047:    {
                   83048:       /* --- pixel bitmap for wncyr210 char#0 Nj --- */
                   83049:       {   0,63722,                      /* character number, location */
                   83050:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   83051:           { 30,   20, 3,61, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83052:             "\x09\x39\xc3\x84\xc0\xf6\x33\x93\xc0\x3e\x09\x73\x93"
                   83053:             "\x73\x53\x93\x83\x10\xf4\x33\x93\x93\x33\x93\x83\x43"
                   83054:             "\x84\x73\x29\x3e\x42" }  },
                   83055:       /* --- pixel bitmap for wncyr210 char#1 Lj --- */
                   83056:       {   1,64756,                      /* character number, location */
                   83057:          20, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   83058:           { 29,   20, 3,79, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83059:             "\x4e\x03\xe0\x12\x63\xb0\xf6\x71\x73\xb0\x71\x7b\xa1"
                   83060:             "\x73\x63\x82\x73\x73\x10\xf1\x62\x73\x83\xf1\x61\x83"
                   83061:             "\x83\x03\x22\x83\x86\x21\x93\x73\x16\x93\x72\x33\x8e"
                   83062:             "\x32" }  },
                   83063:       /* --- pixel bitmap for wncyr210 char#2 Dzh --- */
                   83064:       {   2,65887,                      /* character number, location */
                   83065:          20, 1,   -5, 1,      /* topleft row,col, and botleft row,col */
                   83066:           { 22,   25, 3,27, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83067:             "\x09\x49\xfe\x33\xa3\x30\xf2\x33\xa3\x3e\x08\xf4\xa3"
                   83068:             "\x93" }  },
                   83069:       /* --- pixel bitmap for wncyr210 char#3 \`E --- */
                   83070:       {   3,66887,                      /* character number, location */
                   83071:          21, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   83072:           { 19,   22, 3,87, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83073:             "\x01\x46\x82\x12\x62\x63\xa2\x42\xc2\x32\xc3\x21\xe2"
                   83074:             "\x21\xe3\xe0\x32\x95\x33\x78\x14\x53\x6b\x93\x24\xa3"
                   83075:             "\xe0\x23\xe0\x22\x11\xe3\x11\xe2\x21\xd3\x31\xc2\x51"
                   83076:             "\xa2\x72\x62\xb6\x81" }  },
                   83077:       /* --- pixel bitmap for wncyr210 char#4 \=I --- */
                   83078:       {   4,76003,                      /* character number, location */
                   83079:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   83080:           { 11,   20, 3,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83081:             "\x0b\xfe\x43\x40\xf2\x43\x4b" }  },
                   83082:       /* --- pixel bitmap for wncyr210 char#5 \=E --- */
                   83083:       {   5,67882,                      /* character number, location */
                   83084:          21, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   83085:           { 19,   22, 3,87, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83086:             "\x86\x41\x62\x62\x12\x42\xa3\x32\xc2\x23\xc2\x22\xe1"
                   83087:             "\x13\xe1\x12\xe0\x23\x35\x83\x18\x74\x63\x54\x9a\xa4"
                   83088:             "\x23\xe0\x32\xe0\x33\xe1\x22\xe1\x23\xd1\x32\xc1\x52"
                   83089:             "\xa1\x82\x62\xb6\x51" }  },
                   83090:       /* --- pixel bitmap for wncyr210 char#6 Dj --- */
                   83091:       {   6,77169,                      /* character number, location */
                   83092:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   83093:           { 24,   20, 3,79, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83094:             "\x0e\x06\x42\x73\x71\x41\x83\x72\x31\x83\x81\x30\xf2"
                   83095:             "\x93\xc0\x93\x35\xd3\x12\x52\xb4\x82\xa3\xa1\x10\xf4"
                   83096:             "\x93\xa2\x93\x41\x51\xa3\x33\x32\xa3\x33\x22\x7a\x14"
                   83097:             "\x43" }  },
                   83098:       /* --- pixel bitmap for wncyr210 char#7 \'C --- */
                   83099:       {   7,78530,                      /* character number, location */
                   83100:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   83101:           { 22,   20, 3,58, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83102:             "\x1e\x03\x51\x53\x71\x51\x53\x72\x31\x63\x81\x30\xf2"
                   83103:             "\x73\xc0\x73\x35\xb3\x12\x42\xa4\x72\x20\xf8\x73\x82"
                   83104:             "\x20\x48\x46" }  },
                   83105:       /* --- pixel bitmap for wncyr210 char#8 nj --- */
                   83106:       {   8,120039,                     /* character number, location */
                   83107:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   83108:           { 21,   13, 3,45, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83109:             "\x06\x26\x70\xf4\x22\x62\x90\x2e\x03\x42\x62\x62\x10"
                   83110:             "\xf2\x22\x62\x72\x22\x62\x62\x16\x2b\x22" }  },
                   83111:       /* --- pixel bitmap for wncyr210 char#9 lj --- */
                   83112:       {   9,121037,                     /* character number, location */
                   83113:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   83114:           { 20,   13, 3,51, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83115:             "\x3c\x50\xf4\x52\x42\x70\x52\x48\x62\x42\x42\x61\x52"
                   83116:             "\x55\x21\x52\x55\x12\x52\x52\x14\x62\x42\x32\x59\x21" }  },
                   83117:       /* --- pixel bitmap for wncyr210 char#10 dzh --- */
                   83118:       {  10,122158,                     /* character number, location */
                   83119:          13, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   83120:           { 14,   17, 3,17, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83121:             "\x06\x26\xfa\x22\x62\x2e\xf3\x62\x62" }  },
                   83122:       /* --- pixel bitmap for wncyr210 char#11 \`e --- */
                   83123:       {  11,123128,                     /* character number, location */
                   83124:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   83125:           { 13,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83126:             "\xf9\xe0\x60\x04\x90\x00\x06\x9c\xe1\x7f\x0e\xf6\xc0"
                   83127:             "\x00\x38\x80\x05\x10\x83\x81\x0f\x00" }  },
                   83128:       /* --- pixel bitmap for wncyr210 char#12 \=\i --- */
                   83129:       {  12,82272,                      /* character number, location */
                   83130:          20, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   83131:           {  6,   20, 3,20, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83132:             "\x21\x43\x41\x30\xf3\x64\x20\xfa\x22\x26" }  },
                   83133:       /* --- pixel bitmap for wncyr210 char#13 \=e --- */
                   83134:       {  13,124087,                     /* character number, location */
                   83135:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   83136:           { 13,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83137:             "\xe0\x13\x83\x13\x40\x03\x38\x07\xfe\xc3\xe0\x1c\x78"
                   83138:             "\x03\xc0\x00\x12\x40\x0c\x06\x3e\x00" }  },
                   83139:       /* --- pixel bitmap for wncyr210 char#14 dj --- */
                   83140:       {  14,83280,                      /* character number, location */
                   83141:          20, 2,   -6, 2,      /* topleft row,col, and botleft row,col */
                   83142:           { 16,   26, 3,71, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83143:             "\x14\xb0\xf1\x32\xbe\x01\x10\xf2\x32\xb0\x32\x25\x72"
                   83144:             "\x11\x51\x63\x71\x52\x91\x10\xf5\x32\x92\x32\x91\x42"
                   83145:             "\x82\x26\x61\xe2\xe1\xe1\xe1\xd2\xb3\x83" }  },
                   83146:       /* --- pixel bitmap for wncyr210 char#15 \'c --- */
                   83147:       {  15,84386,                      /* character number, location */
                   83148:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   83149:           { 18,   20, 3,48, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83150:             "\x14\xd0\xf1\x32\xde\x01\x30\xf2\x32\xd0\x32\x36\x72"
                   83151:             "\x12\x52\x63\x82\x20\xf8\x32\x92\x20\x16\x56" }  },
                   83152:       /* --- pixel bitmap for wncyr210 char#16 Yu --- */
                   83153:       {  16,69102,                      /* character number, location */
                   83154:          21, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   83155:           { 33,   22, 3,125, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   83156:             "\xe0\x57\x79\x83\x53\x83\xa2\x92\x73\x92\xb2\x63\x83"
                   83157:             "\xb3\x20\xf1\x33\x73\xd3\x10\x33\x72\xe0\x12\x10\xf2"
                   83158:             "\x33\x63\xe0\x13\x3c\xe0\x13\xf1\x33\x63\xe0\x13\x33"
                   83159:             "\x72\xe0\x12\x10\xf1\x33\x73\xd3\x10\x33\x83\xb3\x53"
                   83160:             "\x92\xb2\x63\xa2\x92\x49\x83\x53\xe0\xa7\x71" }  },
                   83161:       /* --- pixel bitmap for wncyr210 char#17 Zh --- */
                   83162:       {  17,62298,                      /* character number, location */
                   83163:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   83164:           { 32,   20, 3,117, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   83165:             "\x13\x79\x83\x14\xa3\xa5\x11\x21\x93\xa1\x21\x51\x93"
                   83166:             "\xa1\x91\x83\x91\xa1\x83\x82\xb1\x73\x72\xd2\x53\x52"
                   83167:             "\xe0\x3e\xe0\x3e\x02\xe3\x53\x63\xb2\x73\x82\x50\xf2"
                   83168:             "\x42\x83\x92\x4f\x11\x32\x83\x92\x31\x01\x31\x93\xa1"
                   83169:             "\x36\x93\xa5\x13\x79\x83\x14" }  },
                   83170:       /* --- pixel bitmap for wncyr210 char#18 \u I --- */
                   83171:       {  18,70661,                      /* character number, location */
                   83172:          27, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   83173:           { 23,   27, 3,130, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   83174:             "\x51\xb1\x50\xf1\x43\x93\x40\x51\xb1\xbb\x60\xf1\xe0"
                   83175:             "\x99\x59\x33\xb3\x63\xa4\x30\xf1\x33\x95\x30\x33\x82"
                   83176:             "\x13\x63\x72\x23\x30\xf1\x33\x62\x33\x30\x33\x52\x43"
                   83177:             "\x63\x42\x53\x30\xf1\x33\x32\x63\x30\x33\x22\x73\x63"
                   83178:             "\x12\x83\x30\xf1\x35\x93\x30\x34\xa3\x63\xb3\x39\x59" }  },
                   83179:       /* --- pixel bitmap for wncyr210 char#19 \"E --- */
                   83180:       {  19,79978,                      /* character number, location */
                   83181:          26, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   83182:           { 20,   26, 3,101, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   83183:             "\x62\x42\xb4\x33\xb2\x42\x60\xf2\xe0\x6e\x04\x53\x93"
                   83184:             "\x20\xf1\x33\xb1\x20\xf1\x33\xc1\x10\x33\x61\x51\x43"
                   83185:             "\x61\xa3\x52\xaa\xa3\x52\xa3\x61\xa3\x61\x61\xf1\x33"
                   83186:             "\xd1\x33\xc2\x33\xc1\x43\xb2\x43\xa3\x1e\x05\x13" }  },
                   83187:       /* --- pixel bitmap for wncyr210 char#20 (noname) --- */
                   83188:       {  20,71680,                      /* character number, location */
                   83189:          20, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   83190:           { 23,   21, 3,99, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83191:             "\x08\xa3\x44\xb1\x22\x43\xa2\x23\x33\xa1\x33\x34\x91"
                   83192:             "\x60\xf1\x43\x81\x70\x44\x62\x70\xf1\x53\x61\x80\x54"
                   83193:             "\x41\xe0\x13\x41\xe0\x13\x32\x90\xf1\x73\x21\xa0\x73"
                   83194:             "\x11\xb0\xf1\x84\xb0\x83\xe0\x72\xe0\x71\xd2" }  },
                   83195:       /* --- pixel bitmap for wncyr210 char#21 (noname) --- */
                   83196:       {  21,72866,                      /* character number, location */
                   83197:          21, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   83198:           { 23,   22, 3,87, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83199:             "\x95\xe0\x23\x33\xd2\x72\xb3\x73\xa2\x92\x93\x93\x82"
                   83200:             "\xb2\x40\xf1\x33\xb3\x3f\x2e\x09\x01\x23\xb3\x21\xf1"
                   83201:             "\x33\xb3\x30\x42\xb2\x83\x93\x92\x92\xa3\x73\xb2\x72"
                   83202:             "\xd3\x33\xe0\x25\x90" }  },
                   83203:       /* --- pixel bitmap for wncyr210 char#22 \Dz --- */
                   83204:       {  22,73964,                      /* character number, location */
                   83205:          21, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   83206:           { 14,   22, 3,67, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83207:             "\x45\x31\x32\x51\x12\x22\x73\x21\x92\x1f\x22\xa1\x13"
                   83208:             "\xc4\xa8\x79\x78\xa5\x10\xf1\xb3\x0f\x21\xb2\x02\xa1"
                   83209:             "\x13\x82\x12\x12\x52\x21\x45\x42" }  },
                   83210:       /* --- pixel bitmap for wncyr210 char#23 Ya --- */
                   83211:       {  23,75294,                      /* character number, location */
                   83212:          20, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
                   83213:           { 22,   21, 3,71, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83214:             "\x9d\x63\x73\x83\x83\x30\xf3\x43\x93\x30\x53\x83\x93"
                   83215:             "\x73\xca\xa3\x63\x93\x73\x30\xf3\x53\x83\x3f\x11\x43"
                   83216:             "\x83\x31\x42\x93\x41\x23\x69\x23\xe0\x33" }  },
                   83217:       /* --- pixel bitmap for wncyr210 char#24 yu --- */
                   83218:       {  24,125245,                     /* character number, location */
                   83219:          13, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   83220:           { 23,   13, 3,67, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83221:             "\x07\x65\x72\x72\x52\x52\x61\x91\x42\x52\x92\x10\xf1"
                   83222:             "\x22\x42\xb2\x28\xb2\xf1\x22\x42\xb2\x22\x52\x92\x32"
                   83223:             "\x62\x72\x42\x72\x52\x37\x65\x58" }  },
                   83224:       /* --- pixel bitmap for wncyr210 char#25 zh --- */
                   83225:       {  25,118639,                     /* character number, location */
                   83226:          13, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   83227:           { 22,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83228:             "\x87\x7f\xf8\x01\x03\x8e\xc0\x40\x20\x30\x10\x30\x0c"
                   83229:             "\x03\xf0\x3f\x00\xef\x3d\x60\x30\x18\x0c\x0c\x0c\x03"
                   83230:             "\x03\xd3\xc0\xc0\x3e\x30\xf0\x86\x7f\x18" }  },
                   83231:       /* --- pixel bitmap for wncyr210 char#26 \u\i --- */
                   83232:       {  26,126780,                     /* character number, location */
                   83233:          19, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   83234:           { 15,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83235:             "\x1c\x1c\x0e\x0e\x03\x06\xff\x01\x00\x00\x00\xfc\xf8"
                   83236:             "\x19\x30\x0c\x1c\x06\x0d\xc3\x86\x21\xc3\x88\x61\xc2"
                   83237:             "\xb0\x61\x58\x30\x1c\x18\x06\xcc\x8f\x1f" }  },
                   83238:       /* --- pixel bitmap for wncyr210 char#27 \"e --- */
                   83239:       {  27,85195,                      /* character number, location */
                   83240:          18, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   83241:           { 12,   18, 3,51, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83242:             "\xf1\x23\x33\x10\x91\x20\xf1\xc0\x45\x61\x51\x41\x71"
                   83243:             "\x22\x74\x8e\x0f\x22\xa0\x12\xb1\x81\x32\x51\x56\x22" }  },
                   83244:       /* --- pixel bitmap for wncyr210 char#28 (noname) --- */
                   83245:       {  28,127761,                     /* character number, location */
                   83246:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   83247:           { 14,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83248:             "\x3f\x38\x03\xc9\x40\x32\x18\x18\x02\x86\x80\x11\xc0"
                   83249:             "\x04\xb0\x00\x2c\x00\x0e\x80\x01\x60\x00" }  },
                   83250:       /* --- pixel bitmap for wncyr210 char#29 (noname) --- */
                   83251:       {  29,128917,                     /* character number, location */
                   83252:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   83253:           { 15,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83254:             "\xe0\x03\x18\x03\x06\x03\x01\xc1\x80\xf9\xff\xff\xff"
                   83255:             "\x1b\xb0\x0c\x18\x04\x04\x06\x03\xc6\x00\x3e\x00" }  },
                   83256:       /* --- pixel bitmap for wncyr210 char#30 \dz --- */
                   83257:       {  30,129981,                     /* character number, location */
                   83258:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   83259:           { 10,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83260:             "\x7c\x19\x36\xd0\x00\x07\xf8\xc1\x1f\x70\x00\x03\x1c"
                   83261:             "\x70\x60\xff\x00" }  },
                   83262:       /* --- pixel bitmap for wncyr210 char#31 ya --- */
                   83263:       {  31,131271,                     /* character number, location */
                   83264:          13, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   83265:           { 15,   13, 3,48, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83266:             "\x69\x42\x52\x20\xf2\x32\x62\x20\x42\x52\x87\x72\x42"
                   83267:             "\x20\xf1\x42\x52\x2f\x11\x32\x52\x20\x14\x46" }  },
                   83268:       /* --- pixel bitmap for wncyr210 char#32 \cyddot --- */
                   83269:       {  32,53955,                      /* character number, location */
                   83270:          20, 3,   17, 3,      /* topleft row,col, and botleft row,col */
                   83271:           { 10,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83272:             "\x86\x1d\x6e\x18" }  },
                   83273:       /* --- pixel bitmap for wncyr210 char#33 (noname) --- */
                   83274:       {  33,34032,                      /* character number, location */
                   83275:          21, 3,    0, 3,      /* topleft row,col, and botleft row,col */
                   83276:           {  3,   21, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83277:             "\xfa\xff\xff\x92\x24\x01\x80\x2e" }  },
                   83278:       /* --- pixel bitmap for wncyr210 char#34 (noname) --- */
                   83279:       {  34,54832,                      /* character number, location */
                   83280:          20, 1,   11, 1,      /* topleft row,col, and botleft row,col */
                   83281:           {  9,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83282:             "\x82\x8e\x1b\x26\x48\x90\xa0\x20\x41\x41\x00" }  },
                   83283:       /* --- pixel bitmap for wncyr210 char#35 (noname) --- */
                   83284:       {  35,81521,                      /* character number, location */
                   83285:          22, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   83286:           { 22,   22, 3,79, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83287:             "\x39\xa0\xf1\x63\xd0\x1e\x03\x52\x33\x72\x42\x43\x82"
                   83288:             "\x31\x53\x91\x30\xf2\x63\xd0\x6c\xa3\x83\x83\x93\x73"
                   83289:             "\xa2\x10\xf3\x63\xa3\xf1\x63\x93\x10\x63\x74\x5e\x01"
                   83290:             "\x41" }  },
                   83291:       /* --- pixel bitmap for wncyr210 char#36 (noname) --- */
                   83292:       {  36,55554,                      /* character number, location */
                   83293:          19, 0,   15, 0,      /* topleft row,col, and botleft row,col */
                   83294:           { 14,    4, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83295:             "\x07\xf8\x01\x3e\x00\xf3\x3f" }  },
                   83296:       /* --- pixel bitmap for wncyr210 char#37 (noname) --- */
                   83297:       {  37,35233,                      /* character number, location */
                   83298:          22, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
                   83299:           { 22,   24, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83300:             "\x38\x00\x0c\x11\x80\x63\x0c\x70\x0c\xfe\x1f\x83\x80"
                   83301:             "\xc3\x20\x70\x30\x08\x0c\x0c\x82\x03\x83\x70\x80\x11"
                   83302:             "\x0e\x40\x84\x01\xe0\x70\x00\x00\x0e\x0e\x80\x41\x04"
                   83303:             "\x70\x18\x01\x0e\x83\xc0\xc1\x20\x30\x30\x08\x0e\x0c"
                   83304:             "\xc2\x01\x83\x38\xc0\x20\x06\x60\xc4\x01\x10\x31\x00"
                   83305:             "\x38" }  },
                   83306:       /* --- pixel bitmap for wncyr210 char#38 (noname) --- */
                   83307:       {  38,56131,                      /* character number, location */
                   83308:          20, 7,   15, 7,      /* topleft row,col, and botleft row,col */
                   83309:           {  5,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83310:             "\x98\xbb\x11\x00" }  },
                   83311:       /* --- pixel bitmap for wncyr210 char#39 (noname) --- */
                   83312:       {  39,35927,                      /* character number, location */
                   83313:          20, 3,   11, 3,      /* topleft row,col, and botleft row,col */
                   83314:           {  3,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83315:             "\xba\x49\x4a\x01" }  },
                   83316:       /* --- pixel bitmap for wncyr210 char#40 (noname) --- */
                   83317:       {  40,36507,                      /* character number, location */
                   83318:          22, 3,   -8, 3,      /* topleft row,col, and botleft row,col */
                   83319:           {  8,   30, 3,54, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83320:             "\x71\x61\x61\x61\x61\x62\x61\x50\xf1\x12\x50\x11\x6f"
                   83321:             "\x92\x60\x11\x60\xf1\x12\x50\x21\x72\x71\x81\x81\x81"
                   83322:             "\x81" }  },
                   83323:       /* --- pixel bitmap for wncyr210 char#41 (noname) --- */
                   83324:       {  41,37130,                      /* character number, location */
                   83325:          22, 2,   -8, 2,      /* topleft row,col, and botleft row,col */
                   83326:           {  8,   30, 3,55, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83327:             "\x01\x81\x81\x81\x81\x72\x71\x20\xf1\x52\x10\x61\x10"
                   83328:             "\xf9\x62\x61\x10\xf1\x52\x10\x51\x62\x61\x61\x61\x61"
                   83329:             "\x61\x73" }  },
                   83330:       /* --- pixel bitmap for wncyr210 char#42 (noname) --- */
                   83331:       {  42,37777,                      /* character number, location */
                   83332:          22, 2,    9, 2,      /* topleft row,col, and botleft row,col */
                   83333:           { 12,   13, 3,35, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83334:             "\xf2\x52\x53\x22\x27\x12\x14\x36\x82\x86\x34\x12\x17"
                   83335:             "\x22\x23\xf2\x52\x51" }  },
                   83336:       /* --- pixel bitmap for wncyr210 char#43 (noname) --- */
                   83337:       {  43,86052,                      /* character number, location */
                   83338:          23, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   83339:           { 17,   23, 3,63, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83340:             "\x21\x41\xb2\x22\xc1\x21\xd4\xa0\xf2\x42\xba\x70\xf3"
                   83341:             "\x42\xb0\x47\xa2\x44\x72\x73\x52\x82\x10\xf3\x42\x92"
                   83342:             "\x42\x82\x52\x63\x4b\x41" }  },
                   83343:       /* --- pixel bitmap for wncyr210 char#44 (noname) --- */
                   83344:       {  44,38374,                      /* character number, location */
                   83345:           3, 3,   -6, 3,      /* topleft row,col, and botleft row,col */
                   83346:           {  3,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83347:             "\xba\x49\x4a\x01" }  },
                   83348:       /* --- pixel bitmap for wncyr210 char#45 (noname) --- */
                   83349:       {  45,38871,                      /* character number, location */
                   83350:           7, 0,    5, 0,      /* topleft row,col, and botleft row,col */
                   83351:           {  9,    2, 3, 4, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83352:             "\xf1\x09" }  },
                   83353:       /* --- pixel bitmap for wncyr210 char#46 (noname) --- */
                   83354:       {  46,39328,                      /* character number, location */
                   83355:           3, 3,    0, 3,      /* topleft row,col, and botleft row,col */
                   83356:           {  3,    3, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83357:             "\xba\x00" }  },
                   83358:       /* --- pixel bitmap for wncyr210 char#47 (noname) --- */
                   83359:       {  47,39836,                      /* character number, location */
                   83360:          22, 2,   -7, 2,      /* topleft row,col, and botleft row,col */
                   83361:           { 12,   29, 3,79, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83362:             "\xf1\xa2\x93\xf1\x92\x10\x83\x92\x93\x20\xf1\x72\x30"
                   83363:             "\x63\x30\xf1\x62\x40\x53\x92\x93\x50\xf1\x42\x60\x33"
                   83364:             "\x60\xf1\x32\x70\x23\x92\x93\x80\xf1\x12\x93\x9f\x12"
                   83365:             "\xa3" }  },
                   83366:       /* --- pixel bitmap for wncyr210 char#48 (noname) --- */
                   83367:       {  48,44697,                      /* character number, location */
                   83368:          20, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   83369:           { 12,   21, 3,43, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83370:             "\x44\x62\x42\x41\x61\x32\x62\x21\x81\x1f\xa2\x82\x11"
                   83371:             "\x81\x22\x62\x31\x61\x42\x42\x64\x40" }  },
                   83372:       /* --- pixel bitmap for wncyr210 char#49 (noname) --- */
                   83373:       {  49,45499,                      /* character number, location */
                   83374:          20, 3,    0, 3,      /* topleft row,col, and botleft row,col */
                   83375:           { 10,   20, 3,20, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83376:             "\x42\x73\x43\x12\x40\xfe\x42\x40\x42\x4a" }  },
                   83377:       /* --- pixel bitmap for wncyr210 char#50 (noname) --- */
                   83378:       {  50,46482,                      /* character number, location */
                   83379:          20, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   83380:           { 12,   20, 3,57, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83381:             "\x35\x61\x52\x31\x72\x13\x62\x14\x57\x62\x12\x72\xf1"
                   83382:             "\x93\x92\x92\x93\x92\x91\xa1\xa1\x61\x31\x71\x21\x71"
                   83383:             "\x2a\x1b\x12" }  },
                   83384:       /* --- pixel bitmap for wncyr210 char#51 (noname) --- */
                   83385:       {  51,47530,                      /* character number, location */
                   83386:          20, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   83387:           { 14,   21, 3,61, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83388:             "\x46\x71\x52\x51\x72\x20\xf2\x13\x63\x10\xa2\xb3\xa2"
                   83389:             "\x86\xd2\xd3\xc2\xc3\x12\x83\x0f\x14\x73\x03\x82\x21"
                   83390:             "\x83\x32\x52\x76\x43" }  },
                   83391:       /* --- pixel bitmap for wncyr210 char#52 (noname) --- */
                   83392:       {  52,48472,                      /* character number, location */
                   83393:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   83394:           { 14,   20, 3,58, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83395:             "\xf1\x92\x30\x83\xa1\x12\x92\x12\x91\x22\x81\x32\x71"
                   83396:             "\x42\x62\x42\x61\x52\x51\x62\x41\x72\x32\x72\x3e\xf4"
                   83397:             "\x92\x30\x68" }  },
                   83398:       /* --- pixel bitmap for wncyr210 char#53 (noname) --- */
                   83399:       {  53,49522,                      /* character number, location */
                   83400:          20, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   83401:           { 12,   21, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83402:             "\x06\xe6\x3f\xfe\x21\x02\x02\x20\x00\x02\x20\x0f\x0a"
                   83403:             "\x63\x70\x02\x06\xe0\x00\x0e\xe0\x07\x7e\xe0\x07\x1e"
                   83404:             "\x60\x02\x43\x18\xf8\x00" }  },
                   83405:       /* --- pixel bitmap for wncyr210 char#54 (noname) --- */
                   83406:       {  54,50436,                      /* character number, location */
                   83407:          20, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   83408:           { 12,   21, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83409:             "\xc0\x03\x43\x08\xce\xe0\x06\x60\x00\x02\x30\x0f\x0b"
                   83410:             "\x73\x60\x07\x36\xc0\x03\x3c\xc0\x03\x2c\xc0\x06\x6c"
                   83411:             "\x60\x04\x82\x30\xf0\x00" }  },
                   83412:       /* --- pixel bitmap for wncyr210 char#55 (noname) --- */
                   83413:       {  55,51360,                      /* character number, location */
                   83414:          20, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   83415:           { 14,   21, 3,53, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83416:             "\x11\xdd\x1c\x21\x91\x21\xa1\x21\x91\xc1\x40\xf1\x81"
                   83417:             "\x50\x71\x60\xf1\x62\x60\xf2\x52\x70\xf4\x43\x70\x51"
                   83418:             "\x82" }  },
                   83419:       /* --- pixel bitmap for wncyr210 char#56 (noname) --- */
                   83420:       {  56,52288,                      /* character number, location */
                   83421:          20, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   83422:           { 14,   21, 3,71, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83423:             "\x55\x71\x61\xe1\x20\xf1\x11\xa1\x10\x12\x91\x23\x71"
                   83424:             "\x44\x42\x55\x11\x85\x97\x52\x35\x32\x64\x22\x83\x0f"
                   83425:             "\x22\xa2\x02\xa1\x22\x82\x33\x52\x66\x42" }  },
                   83426:       /* --- pixel bitmap for wncyr210 char#57 (noname) --- */
                   83427:       {  57,53208,                      /* character number, location */
                   83428:          20, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   83429:           { 12,   21, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83430:             "\xf0\x80\x10\x04\x62\x60\x03\x34\xc0\x03\x3c\xc0\x03"
                   83431:             "\x3c\xc0\x06\x6e\xe0\x0c\x0d\xcf\x00\x04\x60\x00\x76"
                   83432:             "\x20\x07\x21\x08\x7c\x00" }  },
                   83433:       /* --- pixel bitmap for wncyr210 char#58 (noname) --- */
                   83434:       {  58,40440,                      /* character number, location */
                   83435:          13, 3,    0, 3,      /* topleft row,col, and botleft row,col */
                   83436:           {  3,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83437:             "\xba\x00\x00\x80\x2e" }  },
                   83438:       /* --- pixel bitmap for wncyr210 char#59 (noname) --- */
                   83439:       {  59,41107,                      /* character number, location */
                   83440:          13, 3,   -6, 3,      /* topleft row,col, and botleft row,col */
                   83441:           {  3,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83442:             "\xba\x00\x00\x80\x6e\x92\x52\x00" }  },
                   83443:       /* --- pixel bitmap for wncyr210 char#60 < --- */
                   83444:       {  60,56749,                      /* character number, location */
                   83445:          14, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   83446:           { 15,   15, 3,53, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83447:             "\x82\xc3\xa4\x33\x44\x33\x44\x24\x44\x24\x35\x24\x44"
                   83448:             "\x24\x55\x24\x64\x24\x64\x24\x64\x33\x64\x33\x73\xd2"
                   83449:             "\x53" }  },
                   83450:       /* --- pixel bitmap for wncyr210 char#61 (noname) --- */
                   83451:       {  61,86795,                      /* character number, location */
                   83452:          13, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   83453:           {  6,   13, 3,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83454:             "\x04\x20\xfa\x22\x26" }  },
                   83455:       /* --- pixel bitmap for wncyr210 char#62 > --- */
                   83456:       {  62,57320,                      /* character number, location */
                   83457:          14, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   83458:           { 15,   15, 3,53, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83459:             "\x52\xd3\x73\x34\x63\x34\x64\x24\x64\x24\x64\x25\x54"
                   83460:             "\x24\x44\x25\x34\x24\x44\x24\x43\x34\x43\x34\xa3\xc2"
                   83461:             "\x83" }  },
                   83462:       /* --- pixel bitmap for wncyr210 char#63 (noname) --- */
                   83463:       {  63,42000,                      /* character number, location */
                   83464:          20, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   83465:           { 11,   20, 3,43, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83466:             "\x36\x32\x52\x12\x72\x0f\x13\x62\x82\x82\x82\x91\x40"
                   83467:             "\xf3\x51\x50\xf3\xb0\x51\x93\x91\x50" }  },
                   83468:       /* --- pixel bitmap for wncyr210 char#64 (noname) --- */
                   83469:       {  64,57982,                      /* character number, location */
                   83470:          20, 3,   16, 3,      /* topleft row,col, and botleft row,col */
                   83471:           { 10,    4, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83472:             "\x01\x06\x68\x18\x1e" }  },
                   83473:       /* --- pixel bitmap for wncyr210 char#65 A --- */
                   83474:       {  65,24459,                      /* character number, location */
                   83475:          21, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   83476:           { 22,   21, 3,80, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83477:             "\xf2\xa2\xa0\xf1\x94\x90\x81\x14\x80\xf1\x81\x23\x80"
                   83478:             "\xf1\x71\x43\x70\x62\x44\x60\xf1\x61\x63\x60\x5c\x50"
                   83479:             "\xf1\x51\x83\x50\xf1\x41\xa3\x40\x32\xa4\x53\xa4\x37"
                   83480:             "\x69" }  },
                   83481:       /* --- pixel bitmap for wncyr210 char#66 B --- */
                   83482:       {  66,25835,                      /* character number, location */
                   83483:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   83484:           { 19,   20, 3,63, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83485:             "\x0e\x02\x63\x73\x30\xf1\x33\x91\x30\xf2\x33\xa1\x20"
                   83486:             "\xf1\x33\xd0\x3c\x73\x83\x53\x93\x10\xf4\x33\xa3\x33"
                   83487:             "\x93\x43\x83\x2e\x01\x41" }  },
                   83488:       /* --- pixel bitmap for wncyr210 char#67 Ts --- */
                   83489:       {  67, 1087,                      /* character number, location */
                   83490:          20, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   83491:           { 23,   22, 3,32, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83492:             "\x09\x49\x10\xfe\x33\xa3\x40\xf2\x33\xa3\x4e\x08\xe0"
                   83493:             "\x72\xe0\x91" }  },
                   83494:       /* --- pixel bitmap for wncyr210 char#68 D --- */
                   83495:       {  68, 2081,                      /* character number, location */
                   83496:          20,-1,   -2,-1,      /* topleft row,col, and botleft row,col */
                   83497:           { 26,   22, 3,82, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83498:             "\x8e\x03\xc2\x63\x40\xf4\xb1\x73\x40\xf1\xa2\x73\x40"
                   83499:             "\xf1\xa1\x83\x40\xf1\x92\x83\x40\x91\x93\xc2\x93\xc1"
                   83500:             "\xa3\xb2\xa3\xb1\xb3\xa2\xb3\x6e\x09\x32\xe0\x52\x21"
                   83501:             "\xe0\x91" }  },
                   83502:       /* --- pixel bitmap for wncyr210 char#69 E --- */
                   83503:       {  69,27250,                      /* character number, location */
                   83504:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   83505:           { 20,   20, 3,83, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83506:             "\x0e\x04\x53\x93\x20\xf1\x33\xb1\x20\xf1\x33\xc1\x10"
                   83507:             "\x33\x61\x51\x43\x61\xa3\x52\xaa\xa3\x52\xa3\x61\xa3"
                   83508:             "\x61\x61\xf1\x33\xd1\x33\xc2\x33\xc1\x43\xb2\x43\xa3"
                   83509:             "\x1e\x05\x11" }  },
                   83510:       /* --- pixel bitmap for wncyr210 char#70 F --- */
                   83511:       {  70,28337,                      /* character number, location */
                   83512:          20, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   83513:           { 19,   20, 3,69, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83514:             "\x4b\x40\xf2\x83\x80\x67\x93\x23\x23\x52\x43\x42\x33"
                   83515:             "\x43\x43\x1f\x33\x53\x53\x13\x43\x43\x32\x43\x42\x53"
                   83516:             "\x23\x23\x97\x60\xf2\x83\x80\x4b\x41" }  },
                   83517:       /* --- pixel bitmap for wncyr210 char#71 G --- */
                   83518:       {  71, 3267,                      /* character number, location */
                   83519:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   83520:           { 19,   20, 3,31, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83521:             "\x0e\x04\x43\x93\x10\xf1\x33\xb1\x10\xf2\x33\xc1\xfb"
                   83522:             "\x33\xda\x93" }  },
                   83523:       /* --- pixel bitmap for wncyr210 char#72 Kh --- */
                   83524:       {  72, 4361,                      /* character number, location */
                   83525:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   83526:           { 22,   20, 3,86, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83527:             "\x09\x48\x44\x83\x84\x71\xb3\x62\xc3\x51\xd4\x31\xe0"
                   83528:             "\x13\x21\xe0\x33\x11\xe0\x34\xa0\xf1\x94\x90\x91\x13"
                   83529:             "\xe0\x21\x24\xe1\x43\xd2\x53\xc1\x64\xa1\x84\x81\xa3"
                   83530:             "\x73\x94\x38\x59" }  },
                   83531:       /* --- pixel bitmap for wncyr210 char#73 I --- */
                   83532:       {  73, 5605,                      /* character number, location */
                   83533:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   83534:           { 23,   20, 3,104, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   83535:             "\x09\x59\x33\xb3\x63\xa4\x30\xf1\x33\x95\x30\x33\x82"
                   83536:             "\x13\x63\x72\x23\x30\xf1\x33\x62\x33\x30\x33\x52\x43"
                   83537:             "\x63\x42\x53\x30\xf1\x33\x32\x63\x30\x33\x22\x73\x63"
                   83538:             "\x12\x83\x30\xf1\x35\x93\x30\x34\xa3\x63\xb3\x39\x59" }  },
                   83539:       /* --- pixel bitmap for wncyr210 char#74 J --- */
                   83540:       {  74,29194,                      /* character number, location */
                   83541:          20, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   83542:           { 13,   21, 3,31, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83543:             "\x49\xfd\x83\x20\x12\x53\x2f\x14\x43\x20\x12\x43\x42"
                   83544:             "\x42\x74\x6f" }  },
                   83545:       /* --- pixel bitmap for wncyr210 char#75 K --- */
                   83546:       {  75,23369,                      /* character number, location */
                   83547:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   83548:           { 21,   20, 3,77, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83549:             "\x09\x83\x43\xa5\x33\xa1\x21\x43\xa1\x73\x91\x83\x82"
                   83550:             "\x83\x72\x93\x52\xb9\xca\xb3\x63\x93\x82\x50\xf2\x33"
                   83551:             "\x92\x40\xf1\x33\x92\x31\x33\xa1\x31\x33\xae\x83\x11" }  },
                   83552:       /* --- pixel bitmap for wncyr210 char#76 L --- */
                   83553:       {  76, 6535,                      /* character number, location */
                   83554:          20, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   83555:           { 21,   20, 3,48, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83556:             "\x4e\x03\xf1\x72\x63\x30\xf9\x71\x73\x30\xf1\x62\x73"
                   83557:             "\x3f\x13\x31\x83\x33\x22\x83\x36\x93\x44\x79" }  },
                   83558:       /* --- pixel bitmap for wncyr210 char#77 M --- */
                   83559:       {  77, 7862,                      /* character number, location */
                   83560:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   83561:           { 27,   20, 3,104, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   83562:             "\x07\xd7\x34\xd4\x30\xf2\x31\x13\xb1\x13\x30\xf1\x31"
                   83563:             "\x23\x91\x23\x30\xf1\x31\x33\x71\x33\x30\xf2\x31\x43"
                   83564:             "\x51\x43\x30\xf1\x31\x53\x31\x53\x30\xf1\x31\x63\x11"
                   83565:             "\x63\x30\xf1\x31\x73\x73\x30\x23\x63\x73\x37\x51\x59" }  },
                   83566:       /* --- pixel bitmap for wncyr210 char#78 N --- */
                   83567:       {  78, 9141,                      /* character number, location */
                   83568:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   83569:           { 22,   20, 3,28, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83570:             "\x09\x49\xf7\x33\xa3\x30\x3e\x02\x30\xf8\x33\xa3\x39"
                   83571:             "\x49" }  },
                   83572:       /* --- pixel bitmap for wncyr210 char#79 O --- */
                   83573:       {  79,30041,                      /* character number, location */
                   83574:          21, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   83575:           { 21,   22, 3,77, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83576:             "\x77\xc3\x53\x92\x92\x72\xb2\x53\xb3\x20\xf1\x13\xd3"
                   83577:             "\x10\x12\xe0\x12\x1f\x53\xe0\x13\x12\xe0\x12\x10\xf1"
                   83578:             "\x13\xd3\x10\x23\xb3\x52\xb2\x72\x92\x93\x53\xc7\x73" }  },
                   83579:       /* --- pixel bitmap for wncyr210 char#80 P --- */
                   83580:       {  80,10261,                      /* character number, location */
                   83581:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   83582:           { 22,   20, 3,22, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83583:             "\x0e\x08\xfe\x33\xa3\x30\xf2\x33\xa3\x39\x49" }  },
                   83584:       /* --- pixel bitmap for wncyr210 char#81 Ch --- */
                   83585:       {  81,11328,                      /* character number, location */
                   83586:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   83587:           { 23,   20, 3,42, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83588:             "\x09\x59\xf7\x33\xb3\x30\x43\x94\x74\x71\x13\x8a\x23"
                   83589:             "\xa6\x43\x30\xf5\xe0\x33\x30\xe9" }  },
                   83590:       /* --- pixel bitmap for wncyr210 char#82 R --- */
                   83591:       {  82,31200,                      /* character number, location */
                   83592:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   83593:           { 19,   20, 3,47, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83594:             "\x0e\x01\x73\x83\x53\x93\x43\xa2\x10\xf2\x33\xa3\x33"
                   83595:             "\xa2\x43\x93\x43\x83\x5c\x40\xf7\x33\xd9\xa2" }  },
                   83596:       /* --- pixel bitmap for wncyr210 char#83 S --- */
                   83597:       {  83,32153,                      /* character number, location */
                   83598:          21, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   83599:           { 19,   22, 3,79, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83600:             "\x86\x41\x62\x61\x22\x42\x91\x12\x32\xb3\x23\xc2\x22"
                   83601:             "\xe1\x13\xe1\x12\xe0\x11\x0f\x53\xe0\x20\x12\xe0\x11"
                   83602:             "\x13\xe1\x22\xe1\x23\xc1\x42\xc1\x52\xa1\x82\x62\xb6"
                   83603:             "\x5e" }  },
                   83604:       /* --- pixel bitmap for wncyr210 char#84 T --- */
                   83605:       {  84,12437,                      /* character number, location */
                   83606:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   83607:           { 21,   20, 3,37, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83608:             "\x1e\x05\x22\x63\x62\x10\xf1\x11\x73\x71\x1f\x21\x83"
                   83609:             "\x81\xfb\x93\x90\x5b\x53" }  },
                   83610:       /* --- pixel bitmap for wncyr210 char#85 U --- */
                   83611:       {  85,33387,                      /* character number, location */
                   83612:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   83613:           { 22,   20, 3,85, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83614:             "\x08\x86\x33\xb3\x53\xb2\x73\xa1\x93\x81\xa3\x72\xb3"
                   83615:             "\x61\xc4\x42\xd3\x41\xe0\x13\x21\xe0\x23\x12\x80\xf1"
                   83616:             "\x94\x90\xa2\xb3\x61\xc3\x52\xc3\x51\xd2\x52\xe2\x32"
                   83617:             "\xe0\x24\xe0\x11" }  },
                   83618:       /* --- pixel bitmap for wncyr210 char#86 V --- */
                   83619:       {  86,13773,                      /* character number, location */
                   83620:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   83621:           { 19,   20, 3,59, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83622:             "\x0e\x83\x73\x63\x83\x20\xf3\x33\x93\x10\x33\x83\x53"
                   83623:             "\x73\x6c\x73\x83\x53\x93\x10\xf4\x33\xa3\x33\x93\x43"
                   83624:             "\x83\x2e\x01\x41" }  },
                   83625:       /* --- pixel bitmap for wncyr210 char#87 Shch --- */
                   83626:       {  87,15286,                      /* character number, location */
                   83627:          20, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   83628:           { 33,   22, 3,44, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83629:             "\x09\x2a\x29\x10\xfe\x33\x84\x83\x40\xf2\x33\x84\x83"
                   83630:             "\x4e\x0e\x04\xe0\xe0\x32\xe0\xe0\x51" }  },
                   83631:       /* --- pixel bitmap for wncyr210 char#88 Sh --- */
                   83632:       {  88,16811,                      /* character number, location */
                   83633:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   83634:           { 32,   20, 3,30, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83635:             "\x09\x2a\x29\xfe\x33\x84\x83\x30\xf2\x33\x84\x83\x3e"
                   83636:             "\x0e\x04" }  },
                   83637:       /* --- pixel bitmap for wncyr210 char#89 Y --- */
                   83638:       {  89,18443,                      /* character number, location */
                   83639:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   83640:           { 30,   20, 3,66, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83641:             "\x09\xc9\xf7\x33\xe0\x43\x30\x3d\x83\x63\x84\x63\x63"
                   83642:             "\xa3\x53\x63\xb2\x53\x30\xf3\x33\xb3\x43\x30\x33\xa3"
                   83643:             "\x53\x63\x84\x63\x3e\x02\x59" }  },
                   83644:       /* --- pixel bitmap for wncyr210 char#90 Z --- */
                   83645:       {  90,19517,                      /* character number, location */
                   83646:          21, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   83647:           { 17,   22, 3,73, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83648:             "\x11\x37\x64\x63\x42\xa2\x32\xa3\x21\xb3\x10\xf1\xd3"
                   83649:             "\x10\xc3\xd3\xc3\x98\xe0\x23\xe0\x22\xe0\x13\x10\xf2"
                   83650:             "\xe3\x01\xd4\xc3\x12\xb2\x24\x73\x31\x38\x51" }  },
                   83651:       /* --- pixel bitmap for wncyr210 char#91 (noname) --- */
                   83652:       {  91,42689,                      /* character number, location */
                   83653:          22, 3,   -7, 3,      /* topleft row,col, and botleft row,col */
                   83654:           {  6,   29, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83655:             "\xf1\x06\x0f\xe2\x4f\x92\x4f\x16" }  },
                   83656:       /* --- pixel bitmap for wncyr210 char#92 (noname) --- */
                   83657:       {  92,58861,                      /* character number, location */
                   83658:          20, 6,   11, 6,      /* topleft row,col, and botleft row,col */
                   83659:           {  9,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83660:             "\x04\x05\x09\x0a\x12\x24\xc8\xb0\xe3\x82\x00" }  },
                   83661:       /* --- pixel bitmap for wncyr210 char#93 (noname) --- */
                   83662:       {  93,43395,                      /* character number, location */
                   83663:          22, 0,   -7, 0,      /* topleft row,col, and botleft row,col */
                   83664:           {  6,   29, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83665:             "\xf1\x06\xfe\x42\xf9\x42\x0f\x16" }  },
                   83666:       /* --- pixel bitmap for wncyr210 char#94 \Cprime --- */
                   83667:       {  94,20845,                      /* character number, location */
                   83668:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   83669:           { 19,   20, 3,41, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83670:             "\x09\xa0\xf7\x33\xd0\x3c\x73\x83\x53\x93\x10\xf4\x33"
                   83671:             "\xa3\x33\x93\x43\x83\x2e\x01\x40" }  },
                   83672:       /* --- pixel bitmap for wncyr210 char#95 \Cdprime --- */
                   83673:       {  95,22333,                      /* character number, location */
                   83674:          20, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   83675:           { 26,   20, 3,61, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83676:             "\x1e\xc3\x63\xe2\x73\xd0\xf2\x11\x83\xd1\x93\xd0\xf1"
                   83677:             "\xa3\xd0\xac\xe3\x83\xc3\x93\x10\xf4\xa3\xa3\xa3\x93"
                   83678:             "\xb3\x83\x9e\x01\x42" }  },
                   83679:       /* --- pixel bitmap for wncyr210 char#96 (noname) --- */
                   83680:       {  96,44021,                      /* character number, location */
                   83681:          20, 3,   11, 3,      /* topleft row,col, and botleft row,col */
                   83682:           {  3,    9, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83683:             "\x94\x92\xec\x02" }  },
                   83684:       /* --- pixel bitmap for wncyr210 char#97 a --- */
                   83685:       {  97,87921,                      /* character number, location */
                   83686:          13, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   83687:           { 14,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83688:             "\xfe\xc0\xe1\x70\x20\x08\x18\x00\x06\xf8\xc1\x61\x18"
                   83689:             "\x18\x03\xc6\x80\x39\x60\x1a\x9e\x7c\x1c" }  },
                   83690:       /* --- pixel bitmap for wncyr210 char#98 b --- */
                   83691:       {  98,88679,                      /* character number, location */
                   83692:          19, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   83693:           { 14,   19, 3,53, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83694:             "\xc1\x59\x39\x43\xb2\xc1\xc2\x26\x41\x22\x42\x31\x11"
                   83695:             "\x81\x23\x82\x1f\x42\xa2\xf1\x12\x82\x10\x32\x42\x76"
                   83696:             "\x42" }  },
                   83697:       /* --- pixel bitmap for wncyr210 char#99 ts --- */
                   83698:       {  99,95778,                      /* character number, location */
                   83699:          13, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   83700:           { 16,   17, 3,28, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83701:             "\x06\x26\x20\xfa\x22\x62\x4e\xe2\xe0\x12\xe0\x11\xe0"
                   83702:             "\x21" }  },
                   83703:       /* --- pixel bitmap for wncyr210 char#100 d --- */
                   83704:       { 100,96748,                      /* character number, location */
                   83705:          13,-1,   -4,-1,      /* topleft row,col, and botleft row,col */
                   83706:           { 19,   17, 3,62, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83707:             "\x5c\x20\xf4\x72\x42\x40\xf1\x71\x52\x40\x62\x52\xa1"
                   83708:             "\x62\x40\xf1\x52\x62\x40\x2e\x01\x42\xb2\x32\xd2\x21"
                   83709:             "\xe0\x11\x11\xe0\x31" }  },
                   83710:       /* --- pixel bitmap for wncyr210 char#101 e --- */
                   83711:       { 101,89463,                      /* character number, location */
                   83712:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   83713:           { 12,   13, 3,35, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83714:             "\x45\x61\x51\x41\x71\x22\x74\x8e\x0f\x22\xa0\x12\xb1"
                   83715:             "\x81\x32\x51\x56\x22" }  },
                   83716:       /* --- pixel bitmap for wncyr210 char#102 f --- */
                   83717:       { 102,90048,                      /* character number, location */
                   83718:          19, 1,   -7, 1,      /* topleft row,col, and botleft row,col */
                   83719:           { 18,   26, 3,81, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83720:             "\xf1\x71\x21\x70\xf3\x82\x80\x34\x12\x14\x52\x34\x32"
                   83721:             "\x20\xf1\x12\x52\x52\x1f\x42\x62\x62\xf1\x12\x52\x52"
                   83722:             "\x10\x22\x34\x32\x54\x12\x14\x30\xf4\x82\x80\xf1\x71"
                   83723:             "\x21\x73" }  },
                   83724:       /* --- pixel bitmap for wncyr210 char#103 g --- */
                   83725:       { 103,97914,                      /* character number, location */
                   83726:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   83727:           { 12,   13, 3,25, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83728:             "\x0b\x32\x52\x32\x61\x10\xf1\x22\x71\xf6\x22\x87\x51" }  },
                   83729:       /* --- pixel bitmap for wncyr210 char#104 kh --- */
                   83730:       { 104,98990,                      /* character number, location */
                   83731:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   83732:           { 14,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83733:             "\x3f\x1f\x86\x81\x21\xc0\x04\xe0\x01\x38\x00\x0c\x80"
                   83734:             "\x06\xa0\x03\xc4\x80\x60\x30\x38\x1f\x3f" }  },
                   83735:       /* --- pixel bitmap for wncyr210 char#105 i --- */
                   83736:       { 105,100232,                     /* character number, location */
                   83737:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   83738:           { 15,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83739:             "\x3f\x7e\x06\x0c\x03\x87\x41\xc3\xb0\x61\xc8\x30\x62"
                   83740:             "\x98\x30\x6c\x18\x16\x0c\x07\x86\x01\xf3\xe3\x07" }  },
                   83741:       /* --- pixel bitmap for wncyr210 char#106 j --- */
                   83742:       { 106,90911,                      /* character number, location */
                   83743:          20,-2,   -6,-2,      /* topleft row,col, and botleft row,col */
                   83744:           {  8,   26, 3,31, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83745:             "\x61\x63\x61\x10\xf3\x80\x35\xfd\x62\x11\x45\x31\x13"
                   83746:             "\x22\x25\x22" }  },
                   83747:       /* --- pixel bitmap for wncyr210 char#107 k --- */
                   83748:       { 107,117706,                     /* character number, location */
                   83749:          13, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   83750:           { 15,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83751:             "\xff\x70\x0c\x38\x06\x02\x03\x81\x61\xc0\x0f\xe0\x1e"
                   83752:             "\x30\x18\x18\x18\x0c\x0c\x06\x16\x03\xff\x0f\x03" }  },
                   83753:       /* --- pixel bitmap for wncyr210 char#108 l --- */
                   83754:       { 108,101102,                     /* character number, location */
                   83755:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   83756:           { 15,   13, 3,36, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83757:             "\x3c\xf2\x52\x42\x20\xf4\x51\x52\x20\x42\x52\x22\x22"
                   83758:             "\x52\x25\x62\x33\x56" }  },
                   83759:       /* --- pixel bitmap for wncyr210 char#109 m --- */
                   83760:       { 109,102423,                     /* character number, location */
                   83761:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   83762:           { 17,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83763:             "\x1f\xf0\x39\xe0\x70\xc0\xa1\x41\x43\x83\x86\x8c\x0c"
                   83764:             "\x19\x19\x32\x32\xc4\x62\x88\xc5\x10\x86\x71\x0c\xf3"
                   83765:             "\x99\x1f" }  },
                   83766:       /* --- pixel bitmap for wncyr210 char#110 n --- */
                   83767:       { 110,103670,                     /* character number, location */
                   83768:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   83769:           { 14,   13, 3,26, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83770:             "\x06\x26\xf4\x22\x62\x20\x2a\x20\xf4\x22\x62\x26\x26" }  },
                   83771:       /* --- pixel bitmap for wncyr210 char#111 o --- */
                   83772:       { 111,91628,                      /* character number, location */
                   83773:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   83774:           { 14,   13, 3,35, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83775:             "\x46\x72\x42\x51\x81\x32\x82\x1f\x42\xa2\xf1\x12\x82"
                   83776:             "\x10\x32\x42\x76\x42" }  },
                   83777:       /* --- pixel bitmap for wncyr210 char#112 p --- */
                   83778:       { 112,104788,                     /* character number, location */
                   83779:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   83780:           { 14,   13, 3,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83781:             "\x0e\xfa\x22\x62\x26\x26" }  },
                   83782:       /* --- pixel bitmap for wncyr210 char#113 ch --- */
                   83783:       { 113,105853,                     /* character number, location */
                   83784:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   83785:           { 15,   13, 3,34, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83786:             "\x06\x36\xf4\x22\x72\x20\x32\x53\x66\x12\x73\x32\x20"
                   83787:             "\xf2\xb2\x20\x96" }  },
                   83788:       /* --- pixel bitmap for wncyr210 char#114 r --- */
                   83789:       { 114,92730,                      /* character number, location */
                   83790:          13, 2,   -6, 2,      /* topleft row,col, and botleft row,col */
                   83791:           { 15,   19, 3,49, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83792:             "\x04\x25\x64\x42\x53\x71\x42\x82\x10\xf4\x22\x92\x22"
                   83793:             "\x82\x33\x62\x44\x42\x52\x24\x50\xf4\x22\xb6\x92" }  },
                   83794:       /* --- pixel bitmap for wncyr210 char#115 s --- */
                   83795:       { 115,93543,                      /* character number, location */
                   83796:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   83797:           { 12,   13, 3,33, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83798:             "\x47\x42\x43\x21\x63\x12\x71\x1f\x42\xa0\x12\xb1\x81"
                   83799:             "\x32\x51\x56\x24" }  },
                   83800:       /* --- pixel bitmap for wncyr210 char#116 t --- */
                   83801:       { 116,106938,                     /* character number, location */
                   83802:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   83803:           { 13,   13, 3,25, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83804:             "\x0e\x01\x42\x32\x0f\x21\x52\x41\xf6\x62\x50\x38\x20" }  },
                   83805:       /* --- pixel bitmap for wncyr210 char#117 u --- */
                   83806:       { 117,94631,                      /* character number, location */
                   83807:          13, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
                   83808:           { 15,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83809:             "\x3f\x7c\x06\x1c\x03\x04\x03\x81\x81\x80\x21\xc0\x10"
                   83810:             "\xc0\x04\x60\x02\xf0\x01\x70\x00\x38\x00\x08\x00\x04"
                   83811:             "\x00\x01\x8e\x00\x27\x80\x1b\x80\x03\x00" }  },
                   83812:       /* --- pixel bitmap for wncyr210 char#118 v --- */
                   83813:       { 118,108252,                     /* character number, location */
                   83814:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   83815:           { 13,   13, 3,41, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83816:             "\x0a\x52\x52\x20\xf2\x22\x62\x10\x22\x43\x49\x42\x62"
                   83817:             "\x10\xf2\x22\x72\x22\x62\x1b\x22" }  },
                   83818:       /* --- pixel bitmap for wncyr210 char#119 shch --- */
                   83819:       { 119,109763,                     /* character number, location */
                   83820:          13, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
                   83821:           { 23,   17, 3,36, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83822:             "\x06\x25\x26\x20\xfa\x22\x53\x52\x4e\x07\xe0\x72\xe0"
                   83823:             "\x82\xe0\x81\xe0\x91" }  },
                   83824:       /* --- pixel bitmap for wncyr210 char#120 sh --- */
                   83825:       { 120,111276,                     /* character number, location */
                   83826:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   83827:           { 21,   13, 3,18, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83828:             "\x06\x25\x26\xfa\x22\x53\x52\x2e\x07" }  },
                   83829:       /* --- pixel bitmap for wncyr210 char#121 y --- */
                   83830:       { 121,112866,                     /* character number, location */
                   83831:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   83832:           { 20,   13, 3,50, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83833:             "\x06\x77\x22\xb3\x20\xf3\x22\xb2\x30\x29\x42\x52\x62"
                   83834:             "\x32\x30\xf2\x22\x72\x22\x30\x22\x62\x33\x2b\x27" }  },
                   83835:       /* --- pixel bitmap for wncyr210 char#122 z --- */
                   83836:       { 122,113904,                     /* character number, location */
                   83837:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   83838:           { 11,   13, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83839:             "\xfd\x19\x58\x80\x01\x0c\x38\x7c\x00\x0c\xc0\x00\x06"
                   83840:             "\x70\x80\x03\xf6\x0f" }  },
                   83841:       /* --- pixel bitmap for wncyr210 char#123 (noname) --- */
                   83842:       { 123,59481,                      /* character number, location */
                   83843:           9, 0,    8, 0,      /* topleft row,col, and botleft row,col */
                   83844:           { 16,    1, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83845:             "\xff\xff" }  },
                   83846:       /* --- pixel bitmap for wncyr210 char#124 (noname) --- */
                   83847:       { 124,60301,                      /* character number, location */
                   83848:           9, 0,    8, 0,      /* topleft row,col, and botleft row,col */
                   83849:           { 32,    1, 2, 2, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83850:             "\x00\x20" }  },
                   83851:       /* --- pixel bitmap for wncyr210 char#125 N0 --- */
                   83852:       { 125,61259,                      /* character number, location */
                   83853:          20, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   83854:           { 26,   20, 3,125, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   83855:             "\x16\x82\xd3\x74\x80\xf1\x44\x51\x13\x80\x41\x13\x41"
                   83856:             "\xe0\x21\x13\x41\x71\x81\x23\x31\x52\x12\x61\x23\x31"
                   83857:             "\x42\x32\x10\xf1\x41\x33\x21\x42\x32\x10\x41\x43\x11"
                   83858:             "\x42\x32\x51\x43\x11\x55\x20\xf1\x41\x54\xc0\xf1\x41"
                   83859:             "\x63\x48\x0f\x13\x11\x72\xc4\x91\xd2\xa1\xc1" }  },
                   83860:       /* --- pixel bitmap for wncyr210 char#126 \cprime --- */
                   83861:       { 126,115204,                     /* character number, location */
                   83862:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   83863:           { 13,   13, 3,31, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83864:             "\x06\x70\xf4\x22\x90\x29\x42\x62\x10\xf2\x22\x72\x22"
                   83865:             "\x62\x1b\x22" }  },
                   83866:       /* --- pixel bitmap for wncyr210 char#127 \cdprime --- */
                   83867:       { 127,116696,                     /* character number, location */
                   83868:          13, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   83869:           { 18,   13, 3,45, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83870:             "\x19\x92\x42\x90\xf1\x11\x52\x91\x62\xe0\x22\xe0\x29"
                   83871:             "\x92\x62\x10\xf2\x72\x72\x72\x62\x6b\x23" }  },
                   83872:       /* --- trailer  --- */
                   83873:       { -99, -999,  0,0,0,0, { 0,0,0,0, (pixbyte *)"\0" }  }
                   83874:    } ;
                   83875: 
                   83876: 
                   83877: /* --- size=7 for .250gf ---
                   83878:  * mf '\mode=preview; mag=magstep(-12.84858895680446863032); input wncyr10'
                   83879:  * --------------------------------------------------------------------- */
                   83880: /* --- fontdef for wncyr250 --- */
                   83881: static	chardef  wncyr250[] =
                   83882:    {
                   83883:       /* --- pixel bitmap for wncyr250 char#0 Nj --- */
                   83884:       {   0,64786,                      /* character number, location */
                   83885:          24, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   83886:           { 37,   24, 3,81, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83887:             "\x0b\x4a\xe0\x23\xb4\xe0\x10\xf8\x43\xb3\xe0\x20\x4e"
                   83888:             "\x0e\x93\xb3\x94\x73\xb3\xb3\x63\xb3\xb4\x10\xf4\x43"
                   83889:             "\xb3\xc4\x43\xb3\xb4\x53\xb3\xb3\x63\xb4\x93\x3b\x4e"
                   83890:             "\x03\x55" }  },
                   83891:       /* --- pixel bitmap for wncyr250 char#1 Lj --- */
                   83892:       {   1,65840,                      /* character number, location */
                   83893:          24, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   83894:           { 35,   24, 3,101, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   83895:             "\x5e\x07\x90\xf5\x92\x83\xd0\xf3\x91\x93\xd0\x91\x9c"
                   83896:             "\xd1\x93\x74\xb1\x93\x84\xa1\x93\x93\x10\xf1\x82\x93"
                   83897:             "\x94\x81\xa3\x94\x12\x51\xa3\x98\x32\xa3\x98\x31\xb3"
                   83898:             "\x93\x13\x32\xb3\x84\x26\xc3\x74\x44\x9e\x02\x43" }  },
                   83899:       /* --- pixel bitmap for wncyr250 char#2 Dzh --- */
                   83900:       {   2,66995,                      /* character number, location */
                   83901:          24, 1,   -5, 1,      /* topleft row,col, and botleft row,col */
                   83902:           { 26,   29, 3,27, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83903:             "\x0b\x4b\xfe\x43\xc3\x40\xf6\x43\xc3\x4e\x0c\xf4\xc3"
                   83904:             "\xb1" }  },
                   83905:       /* --- pixel bitmap for wncyr250 char#3 \`E --- */
                   83906:       {   3,68011,                      /* character number, location */
                   83907:          25, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   83908:           { 23,   26, 3,125, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   83909:             "\x01\x66\xa2\x32\x63\x75\xa2\x63\xd3\x43\xe3\x32\xe0"
                   83910:             "\x13\x31\xe0\x33\x21\xe0\x34\x11\xe0\x43\xe0\x63\xa8"
                   83911:             "\x24\x85\x32\x15\x63\x87\x33\xb4\x25\xc4\xe0\x54\xe0"
                   83912:             "\x53\x11\xe0\x43\x11\xe0\x34\x11\xe0\x33\x20\xf1\x11"
                   83913:             "\xe0\x13\x30\x21\xd3\x71\xb2\xa3\x63\xe6\xa1" }  },
                   83914:       /* --- pixel bitmap for wncyr250 char#4 \=I --- */
                   83915:       {   4,77289,                      /* character number, location */
                   83916:          24, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   83917:           { 11,   24, 3,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83918:             "\x0b\xfe\x43\x40\xf6\x43\x4b" }  },
                   83919:       /* --- pixel bitmap for wncyr250 char#5 \=E --- */
                   83920:       {   5,69026,                      /* character number, location */
                   83921:          25, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   83922:           { 23,   26, 3,123, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   83923:             "\xa6\x61\x73\x62\x32\x62\xa5\x43\xd3\x33\xe3\x33\xe0"
                   83924:             "\x12\x23\xe0\x31\x14\xe0\x31\x13\xe0\x41\x13\xe0\x54"
                   83925:             "\x28\x94\x12\x35\x85\x83\x65\xb3\x36\xc5\x24\xe0\x63"
                   83926:             "\xe0\x63\xe0\x41\x14\xe0\x31\x23\xe0\x31\xf1\x33\xe0"
                   83927:             "\x11\x10\x43\xd1\x82\xb1\xa3\x63\xe6\x76" }  },
                   83928:       /* --- pixel bitmap for wncyr250 char#6 Dj --- */
                   83929:       {   6,78489,                      /* character number, location */
                   83930:          24, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   83931:           { 27,   24, 3,81, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83932:             "\x1e\x07\x62\x73\x72\x52\x83\x82\x41\x93\x91\x40\xf4"
                   83933:             "\xa3\xe0\xa3\x55\xe3\x23\x52\xc3\x11\x91\xc4\xa2\x10"
                   83934:             "\xf6\xa3\xc2\xa3\x51\x52\xb3\x43\x41\xc3\x43\x32\x7c"
                   83935:             "\x15\x43" }  },
                   83936:       /* --- pixel bitmap for wncyr250 char#7 \'C --- */
                   83937:       {   7,79890,                      /* character number, location */
                   83938:          24, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   83939:           { 26,   24, 3,62, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83940:             "\x1e\x07\x51\x73\x82\x42\x73\x92\x31\x83\xa1\x30\xf4"
                   83941:             "\x93\xe0\x93\x36\xe3\x12\x52\x40\xf1\x94\x82\x30\xf9"
                   83942:             "\x93\x92\x30\x5a\x38" }  },
                   83943:       /* --- pixel bitmap for wncyr250 char#8 nj --- */
                   83944:       {   8,121921,                     /* character number, location */
                   83945:          15, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   83946:           { 26,   15, 3,49, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83947:             "\x08\x37\xb2\x83\xa0\xf4\x32\x82\xb0\x3e\x07\x52\x82"
                   83948:             "\x82\x10\xf3\x32\x82\x92\x32\x83\x63\x18\x3c\x30" }  },
                   83949:       /* --- pixel bitmap for wncyr250 char#9 lj --- */
                   83950:       {   9,122929,                     /* character number, location */
                   83951:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   83952:           { 25,   15, 3,73, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83953:             "\x4e\xd2\x52\xa0\xf2\x71\x52\xa0\xf1\x62\x52\xa0\x62"
                   83954:             "\x5a\x82\x52\x72\x23\x22\x52\x86\x22\x52\x86\x21\x62"
                   83955:             "\x82\x13\x21\x62\x82\x16\x62\x72\x43\x4c\x33" }  },
                   83956:       /* --- pixel bitmap for wncyr250 char#10 dzh --- */
                   83957:       {  10,124064,                     /* character number, location */
                   83958:          15, 0,   -4, 0,      /* topleft row,col, and botleft row,col */
                   83959:           { 19,   19, 3,19, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83960:             "\x08\x38\xfc\x32\x92\x3e\x05\xf3\x92\x82" }  },
                   83961:       /* --- pixel bitmap for wncyr250 char#11 \`e --- */
                   83962:       {  11,125042,                     /* character number, location */
                   83963:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   83964:           { 16,   15, 3,55, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83965:             "\x01\x36\x64\x62\x42\xa2\x21\xc1\x21\xc2\x85\x22\x5c"
                   83966:             "\x33\x72\x15\x82\x31\xa3\xc2\x11\xc1\x31\xa2\x42\x62"
                   83967:             "\x86\x63" }  },
                   83968:       /* --- pixel bitmap for wncyr250 char#12 \=\i --- */
                   83969:       {  12,83728,                      /* character number, location */
                   83970:          24, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   83971:           {  8,   24, 3,26, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83972:             "\x23\x30\xf1\x14\x30\x23\x30\xf4\x85\x30\xfc\x32\x38" }  },
                   83973:       /* --- pixel bitmap for wncyr250 char#13 \=e --- */
                   83974:       {  13,126011,                     /* character number, location */
                   83975:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   83976:           { 16,   15, 3,55, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83977:             "\x66\x31\x42\x64\x22\xa2\x21\xc1\x12\xc3\x25\x7b\x52"
                   83978:             "\x73\x33\x85\x12\xa1\x42\xc1\x21\xc1\x22\xa1\x52\x62"
                   83979:             "\x86\x43" }  },
                   83980:       /* --- pixel bitmap for wncyr250 char#14 dj --- */
                   83981:       {  14,84742,                      /* character number, location */
                   83982:          24, 2,   -7, 2,      /* topleft row,col, and botleft row,col */
                   83983:           { 19,   31, 3,95, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83984:             "\x15\xd0\xf2\x42\xde\x04\x10\xf3\x42\xd0\x42\x35\x92"
                   83985:             "\x12\x52\x73\x82\x63\x92\x52\xb1\x10\xf5\x42\xb2\x42"
                   83986:             "\xb1\x10\xf1\x42\xa2\x10\x18\x71\xe0\x32\xe0\x22\xe0"
                   83987:             "\x31\xe0\x31\xe0\x22\xe0\x13\xd4\x91" }  },
                   83988:       /* --- pixel bitmap for wncyr250 char#15 \'c --- */
                   83989:       {  15,85862,                      /* character number, location */
                   83990:          24, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   83991:           { 22,   24, 3,58, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   83992:             "\x15\xe0\x20\xf2\x42\xe0\x2e\x04\x40\xf3\x42\xe0\x20"
                   83993:             "\x42\x37\xa2\x21\x72\x84\x92\x73\xa2\x30\xf9\x42\xb2"
                   83994:             "\x30\x18\x58" }  },
                   83995:       /* --- pixel bitmap for wncyr250 char#16 Yu --- */
                   83996:       {  16,70266,                      /* character number, location */
                   83997:          25, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   83998:           { 38,   26, 3,143, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   83999:             "\xe0\x87\x9a\xa3\x53\xa4\xb3\x93\x83\xb3\xb3\x73\xa3"
                   84000:             "\xd3\x63\x94\xd4\x53\x93\xe0\x13\x53\x84\xe0\x14\x43"
                   84001:             "\x83\xe0\x33\x10\xf3\x33\x74\xe0\x34\x3e\xe0\x34\xf2"
                   84002:             "\x33\x74\xe0\x34\xf1\x33\x84\xe0\x14\x10\x33\x93\xe0"
                   84003:             "\x13\x53\x94\xd4\x53\xa3\xd3\x63\xb3\xb3\x74\xb3\x93"
                   84004:             "\x5a\xa3\x53\xe0\xe0\x17\x9b" }  },
                   84005:       /* --- pixel bitmap for wncyr250 char#17 Zh --- */
                   84006:       {  17,63330,                      /* character number, location */
                   84007:          24, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   84008:           { 37,   24, 3,147, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   84009:             "\x13\x9b\x93\x15\xc3\xc5\x11\x21\xc3\xc1\x21\x52\xb3"
                   84010:             "\xb2\x40\xf1\x51\xb3\xb1\x50\x61\xa3\xa1\xd1\x93\x91"
                   84011:             "\xe0\x12\x73\x72\xe0\x33\x53\x53\xe0\x6e\x01\xe0\x75"
                   84012:             "\x23\x25\xe0\x43\x63\x63\xe0\x12\x83\x82\xd2\x93\x92"
                   84013:             "\x60\xf2\x52\xa3\xa2\x5f\x21\x42\xa3\xa2\x41\x01\x32"
                   84014:             "\xb3\xb2\x36\xc3\xc5\x13\x9b\x93\x11" }  },
                   84015:       /* --- pixel bitmap for wncyr250 char#18 \u I --- */
                   84016:       {  18,71849,                      /* character number, location */
                   84017:          33, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   84018:           { 28,   33, 3,164, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   84019:             "\x62\xc2\x60\xf1\x54\xa4\x50\x53\xc3\xb1\xe1\xd2\xa2"
                   84020:             "\xe0\x38\xa0\xf1\xe0\xeb\x6b\x43\xe3\x40\xf1\x43\xd4"
                   84021:             "\x40\x43\xc5\x83\xb2\x13\x40\xf1\x43\xa2\x23\x40\x43"
                   84022:             "\x92\x33\x83\x82\x43\x83\x72\x53\x40\xf1\x43\x62\x63"
                   84023:             "\x40\x43\x52\x73\x83\x42\x83\x83\x32\x93\x40\xf1\x43"
                   84024:             "\x22\xa3\x40\x43\x12\xb3\x85\xc3\x40\xf1\x44\xd3\x40"
                   84025:             "\x43\xe3\x4b\x6b" }  },
                   84026:       /* --- pixel bitmap for wncyr250 char#19 \"E --- */
                   84027:       {  19,81350,                      /* character number, location */
                   84028:          32, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   84029:           { 24,   32, 3,131, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   84030:             "\x72\x62\x70\xf1\x64\x44\x60\x72\x62\x70\xf3\xe0\xae"
                   84031:             "\x08\x63\xb4\x63\xd2\x63\xe1\x63\xe2\x10\xf1\x43\xe0"
                   84032:             "\x11\x10\x43\x81\x61\x10\xf1\x43\x81\x80\x43\x72\xcc"
                   84033:             "\xc3\x72\x80\xf1\x43\x81\x80\x43\x81\x71\x43\xe0\x21"
                   84034:             "\xf2\x43\xe0\x11\x10\x43\xe2\x53\xd3\x53\xb4\x2e\x08"
                   84035:             "\x22" }  },
                   84036:       /* --- pixel bitmap for wncyr250 char#20 (noname) --- */
                   84037:       {  20,72900,                      /* character number, location */
                   84038:          24, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   84039:           { 26,   25, 3,103, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   84040:             "\x09\xc4\x44\xd2\x12\x43\xe1\x23\x43\xc1\x33\xf1\x43"
                   84041:             "\xc1\x60\xf1\x53\xa1\x70\x53\x91\x80\xf1\x63\x81\x80"
                   84042:             "\x63\x71\xe0\x23\x61\x90\xf1\x73\x51\xa0\x83\x41\xa0"
                   84043:             "\xf1\x83\x31\xb0\xf2\x93\x11\xc0\xf2\xa3\xd0\xb1\xe3" }  },
                   84044:       /* --- pixel bitmap for wncyr250 char#21 (noname) --- */
                   84045:       {  21,74104,                      /* character number, location */
                   84046:          25, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   84047:           { 27,   26, 3,115, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   84048:             "\xb5\xe0\x63\x33\xe0\x33\x53\xe0\x13\x73\x70\xf1\x63"
                   84049:             "\x93\x60\x54\x94\x50\xf1\x53\xb3\x50\xf1\x44\xb4\x4f"
                   84050:             "\x2e\x0d\x0f\x11\x34\xb4\x31\x44\xb4\x40\xf1\x53\xb3"
                   84051:             "\x50\x54\x94\x50\xf1\x63\x93\x60\x73\x73\xe0\x13\x53"
                   84052:             "\xe0\x33\x33\xe0\x65\xb2" }  },
                   84053:       /* --- pixel bitmap for wncyr250 char#22 \Dz --- */
                   84054:       {  22,75222,                      /* character number, location */
                   84055:          25, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   84056:           { 17,   26, 3,81, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   84057:             "\x56\x41\x42\x62\x12\x31\xa3\x22\xb2\x21\xc2\x1f\x22"
                   84058:             "\xd1\x13\xe0\x13\xe6\xc9\x9b\x99\xc6\xe3\x10\xf1\xe3"
                   84059:             "\x0f\x21\xe2\x02\xd1\x12\xc2\x13\xb1\x22\x13\x62\x31"
                   84060:             "\x56\x54" }  },
                   84061:       /* --- pixel bitmap for wncyr250 char#23 Ya --- */
                   84062:       {  23,76564,                      /* character number, location */
                   84063:          24, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
                   84064:           { 27,   25, 3,99, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   84065:             "\xbe\x02\x84\x83\xb3\xa3\xa3\xb3\x40\xf3\x54\xb3\x40"
                   84066:             "\x63\xb3\xb3\xa3\xc4\x83\xe0\x1c\xe3\x73\xd2\x93\xc2"
                   84067:             "\xa3\x40\xf2\x73\xa3\x40\xf1\x64\xa3\x41\x54\xa3\x41"
                   84068:             "\x45\xa3\x41\x44\xb3\x51\x24\x8b\x24\xe0\x70" }  },
                   84069:       /* --- pixel bitmap for wncyr250 char#24 yu --- */
                   84070:       {  24,127205,                     /* character number, location */
                   84071:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   84072:           { 27,   15, 3,75, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   84073:             "\x08\x76\x92\x82\x62\x72\x62\xa2\x20\xf1\x32\x52\xc2"
                   84074:             "\x10\xf1\x32\x42\xe2\x38\xe2\xf1\x32\x42\xe2\xf1\x32"
                   84075:             "\x52\xc2\x10\x32\x62\xa2\x52\x82\x62\x48\x76\x64" }  },
                   84076:       /* --- pixel bitmap for wncyr250 char#25 zh --- */
                   84077:       {  25,120505,                     /* character number, location */
                   84078:          15, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   84079:           { 25,   15, 3,83, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   84080:             "\x03\x59\x57\x73\x74\x31\x73\x71\x71\x63\x62\x72\x53"
                   84081:             "\x61\x93\x33\x33\xcb\xc4\x23\x24\x92\x53\x52\x40\xf1"
                   84082:             "\x32\x63\x62\x3f\x11\x22\x63\x62\x21\x04\x73\x74\x12"
                   84083:             "\x59\x52\x14" }  },
                   84084:       /* --- pixel bitmap for wncyr250 char#26 \u\i --- */
                   84085:       {  26,128752,                     /* character number, location */
                   84086:          23, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   84087:           { 20,   23, 3,102, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   84088:             "\xf2\x44\x44\x40\x51\x81\xa2\x62\xc6\x70\xf1\xe0\x68"
                   84089:             "\x48\x32\xa2\x62\x93\x62\x81\x12\x62\x72\x12\x62\x62"
                   84090:             "\x22\x62\x52\x32\x62\x42\x42\x62\x32\x52\x62\x22\x62"
                   84091:             "\x62\x12\x72\x62\x11\x82\x63\x92\x62\xa2\x38\x48" }  },
                   84092:       /* --- pixel bitmap for wncyr250 char#27 \"e --- */
                   84093:       {  27,86683,                      /* character number, location */
                   84094:          22, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   84095:           { 14,   22, 3,63, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   84096:             "\x14\x43\x34\x44\x24\x43\x20\xf3\xe0\x55\x72\x52\x42"
                   84097:             "\x72\x22\x91\x21\xa4\xbe\x01\x0f\x22\xc0\x12\xc2\xa1"
                   84098:             "\x22\x81\x42\x61\x76\x30" }  },
                   84099:       /* --- pixel bitmap for wncyr250 char#28 (noname) --- */
                   84100:       {  28,129753,                     /* character number, location */
                   84101:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   84102:           { 17,   15, 3,59, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   84103:             "\x07\x73\x23\x81\x21\x22\x81\x31\x32\x71\x72\x61\x92"
                   84104:             "\x51\x92\x42\x92\x41\xb2\x31\x60\xf1\x52\x21\x70\xf2"
                   84105:             "\x63\x80\x71\x92" }  },
                   84106:       /* --- pixel bitmap for wncyr250 char#29 (noname) --- */
                   84107:       {  29,130915,                     /* character number, location */
                   84108:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   84109:           { 18,   15, 3,59, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   84110:             "\x74\xc2\x42\xa1\x61\x92\x62\x81\x81\x72\x82\x3f\x1e"
                   84111:             "\x04\x01\x22\x82\x21\xf1\x32\x82\x30\x42\x62\x91\x61"
                   84112:             "\xa2\x42\xc4\x72" }  },
                   84113:       /* --- pixel bitmap for wncyr250 char#30 \dz --- */
                   84114:       {  30,131987,                     /* character number, location */
                   84115:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   84116:           { 12,   15, 3,41, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   84117:             "\x36\x11\x22\x62\x1f\x12\x81\x12\xa4\x97\x77\x94\xa3"
                   84118:             "\xa3\x93\x91\x12\x72\x11\x17\x32" }  },
                   84119:       /* --- pixel bitmap for wncyr250 char#31 ya --- */
                   84120:       {  31,133287,                     /* character number, location */
                   84121:          15, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   84122:           { 19,   15, 3,56, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   84123:             "\x7c\x52\x72\x72\x82\x30\xf1\x32\x92\x30\x42\x82\x82"
                   84124:             "\x72\x9a\x82\x72\x30\xf2\x42\x82\x3f\x11\x32\x82\x30"
                   84125:             "\x14\x68" }  },
                   84126:       /* --- pixel bitmap for wncyr250 char#32 \cyddot --- */
                   84127:       {  32,54899,                      /* character number, location */
                   84128:          24, 4,   20, 4,      /* topleft row,col, and botleft row,col */
                   84129:           { 11,    4, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   84130:             "\x06\x7b\xfc\xe3\x0d\x06" }  },
                   84131:       /* --- pixel bitmap for wncyr250 char#33 (noname) --- */
                   84132:       {  33,34716,                      /* character number, location */
                   84133:          25, 4,    0, 4,      /* topleft row,col, and botleft row,col */
                   84134:           {  4,   25, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   84135:             "\xf6\xff\xff\x6f\x66\x66\x66\x66\x06\x00\x60\xff\x06" }  },
                   84136:       /* --- pixel bitmap for wncyr250 char#34 (noname) --- */
                   84137:       {  34,55780,                      /* character number, location */
                   84138:          24, 1,   13, 1,      /* topleft row,col, and botleft row,col */
                   84139:           { 12,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   84140:             "\x06\xf3\x78\x9f\x6f\xb1\x10\x08\x81\x10\x88\x40\x08"
                   84141:             "\x44\x20\x83\x01" }  },
                   84142:       /* --- pixel bitmap for wncyr250 char#35 (noname) --- */
                   84143:       {  35,82939,                      /* character number, location */
                   84144:          26, 3,    0, 3,      /* topleft row,col, and botleft row,col */
                   84145:           { 26,   26, 3,89, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   84146:             "\x3b\xc0\xf2\x73\xe0\x2e\x07\x52\x53\x92\x51\x63\xa2"
                   84147:             "\x41\x63\xb1\x40\xf3\x73\xe0\x20\x7e\xc3\x94\xa3\xa4"
                   84148:             "\x93\xb4\x83\xc3\x10\xf3\x73\xc4\x73\xc3\x83\xb4\x83"
                   84149:             "\xa4\x93\x94\x6e\x04\x51" }  },
                   84150:       /* --- pixel bitmap for wncyr250 char#36 (noname) --- */
                   84151:       {  36,56514,                      /* character number, location */
                   84152:          23, 1,   17, 1,      /* topleft row,col, and botleft row,col */
                   84153:           { 15,    6, 3,21, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   84154:             "\x12\x92\x1f\x14\x74\x03\x93\x12\x92\x49\x32" }  },
                   84155:       /* --- pixel bitmap for wncyr250 char#37 (noname) --- */
                   84156:       {  37,35925,                      /* character number, location */
                   84157:          26, 2,   -2, 2,      /* topleft row,col, and botleft row,col */
                   84158:           { 27,   28, 3,171, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   84159:             "\x34\xe0\x12\x52\x31\xd3\x42\x52\xa3\x51\x61\x12\x65"
                   84160:             "\x42\x71\x26\x13\x52\x71\x83\x62\x71\x82\x72\x71\x73"
                   84161:             "\x72\x71\x63\x82\x71\x53\xa1\x61\x62\xb2\x51\x53\xc2"
                   84162:             "\x31\x53\xe4\x53\xe0\xa2\x64\xe3\x52\x31\xc3\x52\x51"
                   84163:             "\xb2\x61\x61\xa3\x52\x71\x83\x62\x71\x73\x72\x71\x72"
                   84164:             "\x82\x71\x63\x82\x71\x53\x92\x71\x43\xb1\x61\x52\xc2"
                   84165:             "\x51\x43\xd2\x31\x52\xe0\x14\x30" }  },
                   84166:       /* --- pixel bitmap for wncyr250 char#38 (noname) --- */
                   84167:       {  38,57099,                      /* character number, location */
                   84168:          24, 8,   18, 8,      /* topleft row,col, and botleft row,col */
                   84169:           {  7,    6, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   84170:             "\x60\x38\x8e\x61\x18\x00" }  },
                   84171:       /* --- pixel bitmap for wncyr250 char#39 (noname) --- */
                   84172:       {  39,36649,                      /* character number, location */
                   84173:          24, 4,   13, 4,      /* topleft row,col, and botleft row,col */
                   84174:           {  5,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   84175:             "\xe6\x7d\x0b\x21\x44\x84\x0c" }  },
                   84176:       /* --- pixel bitmap for wncyr250 char#40 (noname) --- */
                   84177:       {  40,37235,                      /* character number, location */
                   84178:          26, 4,   -8, 4,      /* topleft row,col, and botleft row,col */
                   84179:           {  9,   34, 3,62, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   84180:             "\x81\x71\x71\x71\x71\x72\x71\x72\x71\x60\xf1\x12\x60"
                   84181:             "\x11\x7f\x92\x70\x11\x70\xf1\x12\x60\x21\x82\x81\x82"
                   84182:             "\x81\x91\x91\x91\x91" }  },
                   84183:       /* --- pixel bitmap for wncyr250 char#41 (noname) --- */
                   84184:       {  41,37866,                      /* character number, location */
                   84185:          26, 2,   -8, 2,      /* topleft row,col, and botleft row,col */
                   84186:           {  9,   34, 3,63, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   84187:             "\x01\x91\x91\x91\x91\x82\x81\x82\x81\x20\xf1\x62\x10"
                   84188:             "\x71\x10\xf9\x72\x71\x10\xf1\x62\x10\x61\x72\x71\x72"
                   84189:             "\x71\x71\x71\x71\x71\x83" }  },
                   84190:       /* --- pixel bitmap for wncyr250 char#42 (noname) --- */
                   84191:       {  42,38521,                      /* character number, location */
                   84192:          26, 3,   11, 3,      /* topleft row,col, and botleft row,col */
                   84193:           { 13,   15, 3,47, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   84194:             "\xf2\x61\x61\x51\x54\x31\x33\x13\x21\x23\x47\x83\x87"
                   84195:             "\x43\x21\x23\x13\x31\x34\x51\x51\xf2\x61\x62" }  },
                   84196:       /* --- pixel bitmap for wncyr250 char#43 (noname) --- */
                   84197:       {  43,87524,                      /* character number, location */
                   84198:          27, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   84199:           { 21,   27, 3,73, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   84200:             "\x21\x61\xe1\x41\xe0\x12\x22\xc0\xf1\x44\xd0\xf2\x52"
                   84201:             "\xec\x90\xf5\x52\xe0\x5c\x92\x83\x82\xa3\x62\xb2\x10"
                   84202:             "\xf3\x52\xc2\x52\xb2\x62\xa2\x72\x83\x5e\x50" }  },
                   84203:       /* --- pixel bitmap for wncyr250 char#44 (noname) --- */
                   84204:       {  44,39130,                      /* character number, location */
                   84205:           4, 4,   -7, 4,      /* topleft row,col, and botleft row,col */
                   84206:           {  4,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   84207:             "\xf6\xef\x88\x48\x24\x01" }  },
                   84208:       /* --- pixel bitmap for wncyr250 char#45 (noname) --- */
                   84209:       {  45,39631,                      /* character number, location */
                   84210:           8, 0,    6, 0,      /* topleft row,col, and botleft row,col */
                   84211:           { 11,    2, 3, 4, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   84212:             "\xf1\x0b" }  },
                   84213:       /* --- pixel bitmap for wncyr250 char#46 (noname) --- */
                   84214:       {  46,40088,                      /* character number, location */
                   84215:           4, 4,    0, 4,      /* topleft row,col, and botleft row,col */
                   84216:           {  4,    4, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   84217:             "\xf6\x6f" }  },
                   84218:       /* --- pixel bitmap for wncyr250 char#47 (noname) --- */
                   84219:       {  47,40598,                      /* character number, location */
                   84220:          26, 2,   -9, 2,      /* topleft row,col, and botleft row,col */
                   84221:           { 15,   35, 3,95, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   84222:             "\xf1\xd2\xc3\xc2\xc3\x10\xf1\xb2\x20\xa3\xc2\xc3\x30"
                   84223:             "\xf1\x92\x40\x83\xc2\xc3\x50\xf1\x72\x60\x63\x60\xf1"
                   84224:             "\x62\x70\x53\xc2\xc3\x80\xf1\x42\x90\x33\xc2\xc3\xa0"
                   84225:             "\xf1\x22\xb0\x13\xc2\xc3\xcf\x12\xd2" }  },
                   84226:       /* --- pixel bitmap for wncyr250 char#48 (noname) --- */
                   84227:       {  48,45547,                      /* character number, location */
                   84228:          23, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   84229:           { 15,   24, 3,55, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   84230:             "\x55\x82\x52\x52\x72\x41\x91\x32\x92\x10\xf1\x11\xb1"
                   84231:             "\x1f\xa2\xb2\xf1\x12\x92\x10\x21\x91\x42\x72\x52\x52"
                   84232:             "\x85\x50" }  },
                   84233:       /* --- pixel bitmap for wncyr250 char#49 (noname) --- */
                   84234:       {  49,46361,                      /* character number, location */
                   84235:          23, 4,    0, 4,      /* topleft row,col, and botleft row,col */
                   84236:           { 12,   23, 3,22, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   84237:             "\x52\x93\x54\x12\x50\xfe\x52\x50\xf3\x52\x5c" }  },
                   84238:       /* --- pixel bitmap for wncyr250 char#50 (noname) --- */
                   84239:       {  50,47350,                      /* character number, location */
                   84240:          23, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   84241:           { 15,   23, 3,65, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   84242:             "\x46\x81\x53\x51\x82\x31\x93\x13\x92\x1f\x14\x83\x12"
                   84243:             "\x93\xc3\xc2\xc3\xc2\xc2\xc2\xc2\xc2\xc2\xc2\xc2\x81"
                   84244:             "\x31\xa1\x21\xa1\x2d\x1e\x11" }  },
                   84245:       /* --- pixel bitmap for wncyr250 char#51 (noname) --- */
                   84246:       {  51,48406,                      /* character number, location */
                   84247:          23, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   84248:           { 15,   24, 3,67, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   84249:             "\x46\x81\x53\x51\x73\x20\xf2\x13\x73\x10\x21\x83\xc2"
                   84250:             "\xc3\xc2\xb3\x86\xe3\xd3\xd3\xc4\x12\x84\x0f\x24\x74"
                   84251:             "\x11\x93\x21\x83\x42\x53\x76\x52" }  },
                   84252:       /* --- pixel bitmap for wncyr250 char#52 (noname) --- */
                   84253:       {  52,49358,                      /* character number, location */
                   84254:          23, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   84255:           { 17,   23, 3,68, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   84256:             "\xf1\xb2\x40\xa3\xd1\x12\xc1\x22\xb2\x22\xb1\x32\xa1"
                   84257:             "\x42\x91\x52\x82\x52\x81\x62\x71\x72\x61\x82\x51\x92"
                   84258:             "\x42\x92\x4e\x03\xf5\xb2\x40\x7a" }  },
                   84259:       /* --- pixel bitmap for wncyr250 char#53 (noname) --- */
                   84260:       {  53,50418,                      /* character number, location */
                   84261:          23, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   84262:           { 15,   24, 3,69, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   84263:             "\x22\x82\x3b\x4a\x58\x50\xf3\x21\xc0\x21\x25\x71\x11"
                   84264:             "\x52\x52\x72\x41\x83\xd2\x10\xf2\xc3\x0f\x23\x93\x01"
                   84265:             "\xb2\x21\x92\x41\x73\x51\x52\x86\x50" }  },
                   84266:       /* --- pixel bitmap for wncyr250 char#54 (noname) --- */
                   84267:       {  54,51338,                      /* character number, location */
                   84268:          23, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   84269:           { 15,   24, 3,77, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   84270:             "\x75\x82\x51\x62\x62\x42\x63\x32\x73\x32\xc3\xc2\xc3"
                   84271:             "\x34\x53\x12\x42\x34\x72\x24\x73\x13\x92\x1f\x33\x93"
                   84272:             "\xf1\x12\x93\x13\x82\x32\x73\x42\x62\x62\x42\x85\x50" }  },
                   84273:       /* --- pixel bitmap for wncyr250 char#55 (noname) --- */
                   84274:       {  55,52274,                      /* character number, location */
                   84275:          23, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   84276:           { 16,   24, 3,61, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   84277:             "\x11\xe0\x1e\x01\x1e\x21\xb1\x21\xc1\x21\xb1\xe1\x40"
                   84278:             "\xf1\xa1\x50\x91\xe2\xe1\x70\xf1\x72\x70\xf3\x62\x80"
                   84279:             "\xf4\x53\x80\x61\x92" }  },
                   84280:       /* --- pixel bitmap for wncyr250 char#56 (noname) --- */
                   84281:       {  56,53208,                      /* character number, location */
                   84282:          23, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   84283:           { 15,   24, 3,81, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   84284:             "\x55\x82\x52\x51\x91\xe0\x11\x10\xf1\x11\xb1\x10\x12"
                   84285:             "\xa1\x23\x81\x44\x61\x55\x22\x76\xa6\x72\x25\x52\x54"
                   84286:             "\x32\x74\x22\x93\x0f\x32\xb2\x12\x92\x31\x91\x52\x52"
                   84287:             "\x85\x52" }  },
                   84288:       /* --- pixel bitmap for wncyr250 char#57 (noname) --- */
                   84289:       {  57,54140,                      /* character number, location */
                   84290:          23, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   84291:           { 15,   24, 3,81, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   84292:             "\x55\x82\x51\x62\x71\x43\x72\x32\x83\x1f\x13\x92\x1f"
                   84293:             "\x33\x93\x12\x93\x13\x74\x22\x74\x32\x42\x13\x54\x33"
                   84294:             "\xc2\x10\xf1\xb3\x10\x13\x72\x33\x62\x42\x62\x61\x52"
                   84295:             "\x85\x72" }  },
                   84296:       /* --- pixel bitmap for wncyr250 char#58 (noname) --- */
                   84297:       {  58,41214,                      /* character number, location */
                   84298:          15, 4,    0, 4,      /* topleft row,col, and botleft row,col */
                   84299:           {  4,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   84300:             "\xf6\x6f\x00\x00\x00\x60\xff\x06" }  },
                   84301:       /* --- pixel bitmap for wncyr250 char#59 (noname) --- */
                   84302:       {  59,41885,                      /* character number, location */
                   84303:          15, 4,   -7, 4,      /* topleft row,col, and botleft row,col */
                   84304:           {  4,   22, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   84305:             "\xf6\x6f\x00\x00\x00\x60\xff\x8e\x88\x44\x12" }  },
                   84306:       /* --- pixel bitmap for wncyr250 char#60 < --- */
                   84307:       {  60,57719,                      /* character number, location */
                   84308:          16, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
                   84309:           { 18,   17, 3,63, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   84310:             "\xa2\xe4\xd3\x53\x63\x53\x54\x44\x54\x44\x54\x44\x45"
                   84311:             "\x35\x54\x34\x75\x35\x74\x44\x74\x44\x74\x44\x83\x53"
                   84312:             "\x83\x53\x84\xe0\x22\x63" }  },
                   84313:       /* --- pixel bitmap for wncyr250 char#61 (noname) --- */
                   84314:       {  61,88303,                      /* character number, location */
                   84315:          15, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   84316:           {  8,   15, 3,10, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   84317:             "\x05\x30\xfc\x32\x38" }  },
                   84318:       /* --- pixel bitmap for wncyr250 char#62 > --- */
                   84319:       {  62,58298,                      /* character number, location */
                   84320:          16, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   84321:           { 18,   17, 3,63, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   84322:             "\x62\xe0\x24\x83\x53\x83\x53\x84\x44\x74\x44\x74\x44"
                   84323:             "\x75\x35\x74\x34\x55\x35\x44\x44\x54\x44\x54\x44\x53"
                   84324:             "\x53\x63\x53\xd4\xe2\xa3" }  },
                   84325:       /* --- pixel bitmap for wncyr250 char#63 (noname) --- */
                   84326:       {  63,42810,                      /* character number, location */
                   84327:          24, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   84328:           { 14,   24, 3,55, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   84329:             "\x37\x61\x72\x31\x92\x1f\x13\x92\x11\xa2\xb2\xa3\xa2"
                   84330:             "\xb2\xc1\x60\xf4\x61\x70\xf3\xe0\x52\x70\xf1\x44\x60"
                   84331:             "\x52\x70" }  },
                   84332:       /* --- pixel bitmap for wncyr250 char#64 (noname) --- */
                   84333:       {  64,58968,                      /* character number, location */
                   84334:          24, 4,   19, 4,      /* topleft row,col, and botleft row,col */
                   84335:           { 11,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   84336:             "\x01\x0c\xa0\x80\x08\x82\x0f" }  },
                   84337:       /* --- pixel bitmap for wncyr250 char#65 A --- */
                   84338:       {  65,24959,                      /* character number, location */
                   84339:          25, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   84340:           { 26,   25, 3,92, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   84341:             "\xf2\xc2\xc0\xf1\xb4\xb0\xa1\x14\xa0\xf1\xa1\x23\xa0"
                   84342:             "\xf2\x91\x43\x90\xf1\x81\x63\x80\x71\x74\x70\xf1\x71"
                   84343:             "\x83\x70\x6e\x60\xf1\x61\xa3\x60\xf1\x51\xc3\x50\x41"
                   84344:             "\xd4\x81\xe3\x73\xd4\x38\x8a" }  },
                   84345:       /* --- pixel bitmap for wncyr250 char#66 B --- */
                   84346:       {  66,26377,                      /* character number, location */
                   84347:          24, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   84348:           { 24,   24, 3,79, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   84349:             "\x0e\x07\x73\xb3\x73\xc2\x73\xd1\x73\xd2\x20\xf2\x43"
                   84350:             "\xe1\x20\xf2\x43\xe0\x30\x4e\x01\x93\xa4\x73\xb4\x63"
                   84351:             "\xc4\x10\xf4\x43\xd4\x43\xc4\x53\xb4\x63\xa4\x3e\x05"
                   84352:             "\x54" }  },
                   84353:       /* --- pixel bitmap for wncyr250 char#67 Ts --- */
                   84354:       {  67, 1087,                      /* character number, location */
                   84355:          24, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   84356:           { 27,   26, 3,32, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   84357:             "\x0b\x4b\x10\xfe\x43\xc3\x50\xf6\x43\xc3\x5e\x0c\xe0"
                   84358:             "\xa3\xe0\xc2" }  },
                   84359:       /* --- pixel bitmap for wncyr250 char#68 D --- */
                   84360:       {  68, 2163,                      /* character number, location */
                   84361:          24, 0,   -2, 0,      /* topleft row,col, and botleft row,col */
                   84362:           { 28,   26, 3,92, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   84363:             "\x8e\x06\xc2\x73\x40\xf5\xc1\x83\x40\xf2\xb2\x83\x40"
                   84364:             "\xf1\xb1\x93\x40\xf1\xa2\x93\x40\xa1\xa3\x40\xf1\x92"
                   84365:             "\xa3\x40\x91\xb3\xc2\xb3\xc1\xc3\xb1\xd3\xa3\xb4\x6e"
                   84366:             "\x0c\x23\xe0\x63\x12\xe0\xa1" }  },
                   84367:       /* --- pixel bitmap for wncyr250 char#69 E --- */
                   84368:       {  69,27806,                      /* character number, location */
                   84369:          24, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   84370:           { 24,   24, 3,107, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   84371:             "\x0e\x08\x63\xb4\x63\xd2\x63\xe1\x63\xe2\x10\xf1\x43"
                   84372:             "\xe0\x11\x10\x43\x81\x61\x10\xf1\x43\x81\x80\x43\x72"
                   84373:             "\xcc\xc3\x72\x80\xf1\x43\x81\x80\x43\x81\x71\x43\xe0"
                   84374:             "\x21\xf2\x43\xe0\x11\x10\x43\xe2\x53\xd3\x53\xb4\x2e"
                   84375:             "\x08\x20" }  },
                   84376:       /* --- pixel bitmap for wncyr250 char#70 F --- */
                   84377:       {  70,28909,                      /* character number, location */
                   84378:          24, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   84379:           { 23,   24, 3,81, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   84380:             "\x5d\x50\xf3\xa3\xa0\x79\xb4\x23\x24\x73\x43\x43\x53"
                   84381:             "\x53\x53\x33\x63\x63\x1f\x34\x63\x64\x13\x63\x63\x33"
                   84382:             "\x53\x53\x53\x43\x43\x74\x23\x24\xb9\x70\xf3\xa3\xa0"
                   84383:             "\x5d\x52" }  },
                   84384:       /* --- pixel bitmap for wncyr250 char#71 G --- */
                   84385:       {  71, 3391,                      /* character number, location */
                   84386:          24, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   84387:           { 22,   24, 3,35, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   84388:             "\x0e\x07\x53\xb3\x53\xc2\x53\xd1\x53\xd2\xf2\x43\xe1"
                   84389:             "\xfe\x43\xe0\x1c\xa1" }  },
                   84390:       /* --- pixel bitmap for wncyr250 char#72 Kh --- */
                   84391:       {  72, 4495,                      /* character number, location */
                   84392:          24, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   84393:           { 26,   24, 3,112, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   84394:             "\x19\x68\x64\xa3\xa3\xa2\xb4\x91\xd4\x71\xe0\x13\x62"
                   84395:             "\xe0\x23\x51\xe0\x34\x31\xe0\x53\x21\xe0\x75\xe0\x74"
                   84396:             "\xc0\xf1\xb4\xb0\xa2\x13\xe0\x61\x24\xe0\x41\x44\xe0"
                   84397:             "\x22\x53\xe0\x21\x64\xe1\x84\xc1\xa3\xb2\xb3\xa1\xc4"
                   84398:             "\x74\xb5\x39\x7a" }  },
                   84399:       /* --- pixel bitmap for wncyr250 char#73 I --- */
                   84400:       {  73, 5753,                      /* character number, location */
                   84401:          24, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   84402:           { 28,   24, 3,128, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   84403:             "\x0b\x6b\x43\xe3\x40\xf1\x43\xd4\x40\x43\xc5\x83\xb2"
                   84404:             "\x13\x40\xf1\x43\xa2\x23\x40\x43\x92\x33\x83\x82\x43"
                   84405:             "\x83\x72\x53\x40\xf1\x43\x62\x63\x40\x43\x52\x73\x83"
                   84406:             "\x42\x83\x83\x32\x93\x40\xf1\x43\x22\xa3\x40\x43\x12"
                   84407:             "\xb3\x85\xc3\x40\xf1\x44\xd3\x40\x43\xe3\x4b\x6b" }  },
                   84408:       /* --- pixel bitmap for wncyr250 char#74 J --- */
                   84409:       {  74,29782,                      /* character number, location */
                   84410:          24, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   84411:           { 17,   25, 3,39, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   84412:             "\x6b\xfe\xb3\x30\xf1\xb3\x30\x12\x83\x3f\x14\x73\x33"
                   84413:             "\x73\x51\x82\x72\x52\xa5\x84" }  },
                   84414:       /* --- pixel bitmap for wncyr250 char#75 K --- */
                   84415:       {  75,23849,                      /* character number, location */
                   84416:          24, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   84417:           { 24,   24, 3,97, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   84418:             "\x0b\x93\x53\xc5\x43\xc1\x21\x53\xb2\x40\xf1\x43\xb1"
                   84419:             "\x50\x43\xa1\xa3\x91\xb3\x72\xc3\x53\xd9\xe0\x13\x25"
                   84420:             "\xe3\x63\xc3\x82\xb3\x92\x60\xf2\x43\xa2\x50\xf2\x43"
                   84421:             "\xa2\x41\x43\xb2\x31\x43\xce\x02\x93\x18" }  },
                   84422:       /* --- pixel bitmap for wncyr250 char#76 L --- */
                   84423:       {  76, 6681,                      /* character number, location */
                   84424:          24, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   84425:           { 26,   24, 3,64, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   84426:             "\x5e\x07\x92\x83\x40\xfa\x91\x93\x40\xf2\x82\x93\x40"
                   84427:             "\xf1\x81\xa3\x40\x72\xa3\x52\x42\xa3\x44\x31\xb3\x43"
                   84428:             "\x32\xb3\x56\xc3\x64\x9b" }  },
                   84429:       /* --- pixel bitmap for wncyr250 char#77 M --- */
                   84430:       {  77, 8024,                      /* character number, location */
                   84431:          24, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   84432:           { 32,   24, 3,120, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   84433:             "\x08\xe0\x28\x44\xe0\x24\x40\xf2\x41\x13\xe1\x13\x40"
                   84434:             "\xf1\x41\x23\xc1\x23\x40\xf2\x41\x33\xa1\x33\x40\xf1"
                   84435:             "\x41\x43\x81\x43\x40\xf1\x41\x53\x61\x53\x40\xf2\x41"
                   84436:             "\x63\x41\x63\x40\xf1\x41\x73\x21\x73\x40\xf2\x41\x84"
                   84437:             "\x83\x40\x33\x82\x93\x49\x52\x5b" }  },
                   84438:       /* --- pixel bitmap for wncyr250 char#78 N --- */
                   84439:       {  78, 9333,                      /* character number, location */
                   84440:          24, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   84441:           { 26,   24, 3,28, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   84442:             "\x0b\x4b\xf9\x43\xc3\x40\x4e\x04\x40\xfa\x43\xc3\x4b"
                   84443:             "\x4b" }  },
                   84444:       /* --- pixel bitmap for wncyr250 char#79 O --- */
                   84445:       {  79,30639,                      /* character number, location */
                   84446:          25, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   84447:           { 25,   26, 3,91, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   84448:             "\x97\xe0\x23\x53\xc3\x93\x93\xb3\x73\xd3\x54\xd4\x43"
                   84449:             "\xe0\x13\x34\xe0\x14\x23\xe0\x33\x1f\x74\xe0\x34\xf1"
                   84450:             "\x14\xe0\x14\x10\x23\xe0\x13\x44\xd4\x53\xd3\x73\xb3"
                   84451:             "\x93\x93\xc3\x53\xe0\x27\x93" }  },
                   84452:       /* --- pixel bitmap for wncyr250 char#80 P --- */
                   84453:       {  80,10469,                      /* character number, location */
                   84454:          24, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   84455:           { 26,   24, 3,22, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   84456:             "\x0e\x0c\xfe\x43\xc3\x40\xf6\x43\xc3\x4b\x4b" }  },
                   84457:       /* --- pixel bitmap for wncyr250 char#81 Ch --- */
                   84458:       {  81,11552,                      /* character number, location */
                   84459:          24, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   84460:           { 28,   24, 3,50, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   84461:             "\x0b\x6b\xf9\x43\xe3\x40\x53\xc4\x94\xa1\x13\xa5\x53"
                   84462:             "\x23\xc9\x43\xe5\x63\x40\xf6\xe0\x73\x40\xe0\x3b" }  },
                   84463:       /* --- pixel bitmap for wncyr250 char#82 R --- */
                   84464:       {  82,31814,                      /* character number, location */
                   84465:          24, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   84466:           { 23,   24, 3,49, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   84467:             "\x0e\x03\xa3\x94\x73\xb3\x63\xb4\x10\xf4\x43\xc4\x43"
                   84468:             "\xb4\x53\xb3\x63\x94\x7d\x60\xf9\x43\xe0\x2b\xc4" }  },
                   84469:       /* --- pixel bitmap for wncyr250 char#83 S --- */
                   84470:       {  83,32779,                      /* character number, location */
                   84471:          25, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   84472:           { 23,   26, 3,105, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   84473:             "\xa6\x61\x73\x62\x32\x62\xa1\x13\x43\xc4\x33\xe3\x33"
                   84474:             "\xe0\x12\x23\xe0\x22\x14\xe0\x31\xf1\x13\xe0\x41\x0f"
                   84475:             "\x54\xe0\x50\xf1\x13\xe0\x41\x14\xe0\x31\x23\xe0\x21"
                   84476:             "\x43\xe0\x11\x43\xe1\x63\xd1\x82\xa2\xa3\x62\xe0\x16"
                   84477:             "\x78" }  },
                   84478:       /* --- pixel bitmap for wncyr250 char#84 T --- */
                   84479:       {  84,12677,                      /* character number, location */
                   84480:          24, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   84481:           { 25,   24, 3,43, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   84482:             "\x1e\x09\x23\x73\x73\x10\xf1\x11\x93\x91\x12\x93\x92"
                   84483:             "\x0f\x21\xa3\xa1\xfe\xb3\xb0\x6d\x63" }  },
                   84484:       /* --- pixel bitmap for wncyr250 char#85 U --- */
                   84485:       {  85,34055,                      /* character number, location */
                   84486:          24, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   84487:           { 26,   24, 3,119, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   84488:             "\x08\xb7\x34\xd4\x63\xe1\x83\xd2\x93\xc1\xb3\xa1\xc3"
                   84489:             "\x92\xd3\x81\xe3\x72\xe0\x13\x61\xe0\x33\x41\xe0\x43"
                   84490:             "\x32\xe0\x53\x21\xe0\x63\x12\xa0\xf1\xb4\xb0\xc2\xe0"
                   84491:             "\x11\x81\xe0\x13\x62\xe0\x13\x61\xe0\x21\x72\xe0\x31"
                   84492:             "\x52\xe0\x42\x32\xe0\x74\xe0\x3b" }  },
                   84493:       /* --- pixel bitmap for wncyr250 char#86 V --- */
                   84494:       {  86,14051,                      /* character number, location */
                   84495:          24, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   84496:           { 24,   24, 3,79, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   84497:             "\x0e\x04\xa3\x94\x83\xb3\x73\xc3\x20\xf3\x43\xc4\x10"
                   84498:             "\x43\xb4\x63\xa4\x73\x94\x8e\x01\x93\xa4\x73\xb4\x63"
                   84499:             "\xc4\x10\xf4\x43\xd4\x43\xc4\x53\xb4\x63\xa4\x3e\x05"
                   84500:             "\x53" }  },
                   84501:       /* --- pixel bitmap for wncyr250 char#87 Shch --- */
                   84502:       {  87,15580,                      /* character number, location */
                   84503:          24, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
                   84504:           { 39,   26, 3,44, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   84505:             "\x0b\x3a\x3b\x10\xfe\x43\xa4\xa3\x50\xf6\x43\xa4\xa3"
                   84506:             "\x5e\x0e\x0a\xe0\xe0\x83\xe0\xe0\xa2" }  },
                   84507:       /* --- pixel bitmap for wncyr250 char#88 Sh --- */
                   84508:       {  88,17129,                      /* character number, location */
                   84509:          24, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   84510:           { 38,   24, 3,30, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   84511:             "\x0b\x3a\x3b\xfe\x43\xa4\xa3\x40\xf6\x43\xa4\xa3\x4e"
                   84512:             "\x0e\x0a" }  },
                   84513:       /* --- pixel bitmap for wncyr250 char#89 Y --- */
                   84514:       {  89,18785,                      /* character number, location */
                   84515:          24, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   84516:           { 36,   24, 3,74, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   84517:             "\x0b\xeb\xf9\x43\xe0\x83\x40\x4e\x01\xa3\x83\xa4\x83"
                   84518:             "\x83\xb4\x73\x83\xc4\x63\x40\xf4\x43\xd4\x53\x40\x43"
                   84519:             "\xc4\x63\x83\xb4\x73\x83\xa4\x83\x4e\x05\x6b" }  },
                   84520:       /* --- pixel bitmap for wncyr250 char#90 Z --- */
                   84521:       {  90,19879,                      /* character number, location */
                   84522:          25, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
                   84523:           { 19,   26, 3,99, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   84524:             "\x11\x47\x72\x12\x63\x53\xa2\x42\xb3\x20\xf1\x11\xd3"
                   84525:             "\x10\xe0\x13\xe0\x14\xe0\x13\xe0\x13\xe0\x13\xe3\xa9"
                   84526:             "\xe0\x43\xe0\x33\xe0\x34\xe0\x23\x10\xf2\xe0\x14\x01"
                   84527:             "\xe5\xe3\x12\xc4\x12\xb4\x25\x73\x41\x48\x62" }  },
                   84528:       /* --- pixel bitmap for wncyr250 char#91 (noname) --- */
                   84529:       {  91,43509,                      /* character number, location */
                   84530:          26, 3,   -9, 3,      /* topleft row,col, and botleft row,col */
                   84531:           {  8,   35, 3,18, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   84532:             "\xf1\x08\x0f\xe2\x6f\xe2\x62\x6f\x18" }  },
                   84533:       /* --- pixel bitmap for wncyr250 char#92 (noname) --- */
                   84534:       {  92,59851,                      /* character number, location */
                   84535:          24, 6,   13, 6,      /* topleft row,col, and botleft row,col */
                   84536:           { 12,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   84537:             "\x18\x4c\x20\x02\x21\x10\x81\x10\x08\x81\xd0\x68\x9f"
                   84538:             "\xef\xf1\x0c\x06" }  },
                   84539:       /* --- pixel bitmap for wncyr250 char#93 (noname) --- */
                   84540:       {  93,44227,                      /* character number, location */
                   84541:          26, 0,   -9, 0,      /* topleft row,col, and botleft row,col */
                   84542:           {  8,   35, 3,18, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   84543:             "\xf1\x08\xfe\x62\xfe\x62\x62\x0f\x18" }  },
                   84544:       /* --- pixel bitmap for wncyr250 char#94 \Cprime --- */
                   84545:       {  94,21247,                      /* character number, location */
                   84546:          24, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   84547:           { 24,   24, 3,53, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   84548:             "\x0b\xd0\xf9\x43\xe0\x30\x4e\x01\x93\xa4\x73\xb4\x63"
                   84549:             "\xc4\x10\xf4\x43\xd4\x43\xc4\x53\xb4\x63\xa4\x3e\x05"
                   84550:             "\x50" }  },
                   84551:       /* --- pixel bitmap for wncyr250 char#95 \Cdprime --- */
                   84552:       {  95,22799,                      /* character number, location */
                   84553:          24, 3,    0, 3,      /* topleft row,col, and botleft row,col */
                   84554:           { 30,   24, 3,75, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   84555:             "\x0e\x02\xe4\x73\xe0\x22\x93\xe0\x2f\x41\xa3\xe0\x20"
                   84556:             "\xf2\xb3\xe0\x20\xbe\xe0\x23\x94\xe3\xb3\xd3\xb4\x10"
                   84557:             "\xf4\xb3\xc4\xb3\xb4\xc3\xa4\xd3\x94\xae\x04\x54" }  },
                   84558:       /* --- pixel bitmap for wncyr250 char#96 (noname) --- */
                   84559:       {  96,44865,                      /* character number, location */
                   84560:          24, 3,   13, 3,      /* topleft row,col, and botleft row,col */
                   84561:           {  5,   11, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   84562:             "\x98\x10\x11\x42\x68\xdf\x33" }  },
                   84563:       /* --- pixel bitmap for wncyr250 char#97 a --- */
                   84564:       {  97,89433,                      /* character number, location */
                   84565:          15, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   84566:           { 17,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   84567:             "\xfc\x01\x1c\x0c\x38\x30\x20\xc0\x00\x80\x01\x00\x03"
                   84568:             "\xf8\x07\x0c\x0c\x06\x18\x04\x30\x0c\x60\x1c\xc0\x38"
                   84569:             "\xc0\xd1\x41\x37\x7e\x1c" }  },
                   84570:       /* --- pixel bitmap for wncyr250 char#98 b --- */
                   84571:       {  98,90201,                      /* character number, location */
                   84572:          24, 3,    0, 3,      /* topleft row,col, and botleft row,col */
                   84573:           { 15,   24, 3,69, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   84574:             "\xf1\xe1\xc2\x5a\x39\x62\xc2\xc0\xf1\x11\xd2\x35\x51"
                   84575:             "\x22\x52\x31\x12\x72\x23\x92\x12\xb1\x1f\x42\xb2\x11"
                   84576:             "\xb1\x22\x92\x32\x72\x52\x52\x85\x53" }  },
                   84577:       /* --- pixel bitmap for wncyr250 char#99 ts --- */
                   84578:       {  99,97450,                      /* character number, location */
                   84579:          15, 0,   -4, 0,      /* topleft row,col, and botleft row,col */
                   84580:           { 20,   19, 3,32, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   84581:             "\x08\x38\x10\xfc\x32\x92\x4e\x05\xe0\x33\xe0\x42\xe0"
                   84582:             "\x51\xe0\x61" }  },
                   84583:       /* --- pixel bitmap for wncyr250 char#100 d --- */
                   84584:       { 100,98454,                      /* character number, location */
                   84585:          15,-1,   -4,-1,      /* topleft row,col, and botleft row,col */
                   84586:           { 22,   19, 3,80, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   84587:             "\x6e\x01\x10\xf1\x92\x52\x40\xf2\x91\x62\x40\xf1\x82"
                   84588:             "\x62\x40\xf1\x81\x72\x40\x72\x72\xb1\x82\xa2\x82\x92"
                   84589:             "\x92\x6e\x05\x32\xe3\x31\xe0\x22\x22\xe0\x31\x21\xe0"
                   84590:             "\x51" }  },
                   84591:       /* --- pixel bitmap for wncyr250 char#101 e --- */
                   84592:       { 101,90999,                      /* character number, location */
                   84593:          15, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   84594:           { 14,   15, 3,45, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   84595:             "\x55\x72\x52\x42\x72\x22\x91\x21\xa4\xbe\x01\x0f\x22"
                   84596:             "\xc0\x12\xc2\xa1\x22\x81\x42\x61\x76\x3f" }  },
                   84597:       /* --- pixel bitmap for wncyr250 char#102 f --- */
                   84598:       { 102,91592,                      /* character number, location */
                   84599:          24, 2,   -9, 2,      /* topleft row,col, and botleft row,col */
                   84600:           { 20,   33, 3,101, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   84601:             "\x71\x41\xe0\xd0\xf1\x81\x21\x80\xf4\x92\x90\x34\x22"
                   84602:             "\x24\x52\x36\x32\x32\x54\x52\x21\x72\x71\x1f\x62\x72"
                   84603:             "\x72\x11\x72\x71\x22\x54\x52\x32\x36\x32\x54\x22\x24"
                   84604:             "\x30\xf4\x92\x90\xf1\x81\x21\x80\xe0\xd1\x41\x70" }  },
                   84605:       /* --- pixel bitmap for wncyr250 char#103 g --- */
                   84606:       { 103,99628,                      /* character number, location */
                   84607:          15, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   84608:           { 16,   15, 3,27, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   84609:             "\x0e\x01\x42\x82\x42\x91\x10\xf1\x32\xa1\xf8\x32\xb9"
                   84610:             "\x72" }  },
                   84611:       /* --- pixel bitmap for wncyr250 char#104 kh --- */
                   84612:       { 104,100708,                     /* character number, location */
                   84613:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   84614:           { 17,   15, 3,56, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   84615:             "\x07\x36\x43\x53\x72\x51\xa2\x32\xa3\x21\xc2\x11\xe2"
                   84616:             "\xe0\x13\xe4\xc1\x22\xb1\x42\x92\x52\x81\x63\x53\x63"
                   84617:             "\x36\x47" }  },
                   84618:       /* --- pixel bitmap for wncyr250 char#105 i --- */
                   84619:       { 105,101958,                     /* character number, location */
                   84620:          15, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   84621:           { 20,   15, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   84622:             "\xff\xf0\x8f\x01\x18\x18\xc0\x81\x01\x1a\x18\xb0\x81"
                   84623:             "\x81\x19\x18\x8c\x81\x61\x18\x18\x83\x81\x19\x18\xd8"
                   84624:             "\x80\x81\x05\x18\x38\x80\x81\x01\x18\xff\xf0\x0f" }  },
                   84625:       /* --- pixel bitmap for wncyr250 char#106 j --- */
                   84626:       { 106,92507,                      /* character number, location */
                   84627:          24,-2,   -7,-2,      /* topleft row,col, and botleft row,col */
                   84628:           { 10,   31, 3,39, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   84629:             "\x72\x10\xf1\x64\x72\x10\xf4\xa0\x55\xfe\x82\xf1\x82"
                   84630:             "\x11\x65\x42\x13\x32\x36\x32" }  },
                   84631:       /* --- pixel bitmap for wncyr250 char#107 k --- */
                   84632:       { 107,119562,                     /* character number, location */
                   84633:          15, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   84634:           { 17,   15, 3,59, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   84635:             "\x08\x63\x32\x84\x32\x81\x62\x72\x62\x71\x72\x43\x87"
                   84636:             "\xa2\x34\x82\x62\x40\xf1\x32\x72\x30\xf1\x32\x72\x21"
                   84637:             "\x32\x8c\x62\x11" }  },
                   84638:       /* --- pixel bitmap for wncyr250 char#108 l --- */
                   84639:       { 108,102840,                     /* character number, location */
                   84640:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   84641:           { 18,   15, 3,40, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   84642:             "\x3e\x01\xf2\x62\x52\x30\xf5\x61\x62\x30\xf1\x52\x62"
                   84643:             "\x33\x21\x72\x44\x82\x43\x68" }  },
                   84644:       /* --- pixel bitmap for wncyr250 char#109 m --- */
                   84645:       { 109,104169,                     /* character number, location */
                   84646:          15, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   84647:           { 23,   15, 3,82, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   84648:             "\x06\xb6\x33\xb3\x30\xf1\x31\x12\x91\x12\x30\xf1\x31"
                   84649:             "\x22\x71\x22\x30\xf2\x31\x32\x51\x32\x30\xf1\x31\x42"
                   84650:             "\x31\x42\x30\xf1\x31\x52\x11\x52\x30\x23\x52\x62\x37"
                   84651:             "\x32\x38" }  },
                   84652:       /* --- pixel bitmap for wncyr250 char#110 n --- */
                   84653:       { 110,105438,                     /* character number, location */
                   84654:          15, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   84655:           { 19,   15, 3,26, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   84656:             "\x08\x38\xf5\x32\x92\x30\x3d\x30\xf5\x32\x92\x38\x38" }  },
                   84657:       /* --- pixel bitmap for wncyr250 char#111 o --- */
                   84658:       { 111,93232,                      /* character number, location */
                   84659:          15, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   84660:           { 15,   15, 3,43, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   84661:             "\x55\x82\x52\x52\x72\x32\x92\x21\xb1\x1f\x42\xb2\x11"
                   84662:             "\xb1\x22\x92\x32\x72\x52\x52\x85\x52" }  },
                   84663:       /* --- pixel bitmap for wncyr250 char#112 p --- */
                   84664:       { 112,106564,                     /* character number, location */
                   84665:          15, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   84666:           { 19,   15, 3,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   84667:             "\x0e\x05\xfc\x32\x92\x38\x38" }  },
                   84668:       /* --- pixel bitmap for wncyr250 char#113 ch --- */
                   84669:       { 113,107637,                     /* character number, location */
                   84670:          15, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   84671:           { 20,   15, 3,38, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   84672:             "\x08\x48\xf5\x32\xa2\x30\x42\x83\x73\x52\x12\x97\x22"
                   84673:             "\x30\xf3\xe0\x12\x30\xc8" }  },
                   84674:       /* --- pixel bitmap for wncyr250 char#114 r --- */
                   84675:       { 114,94342,                      /* character number, location */
                   84676:          15, 1,   -7, 1,      /* topleft row,col, and botleft row,col */
                   84677:           { 18,   22, 3,61, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   84678:             "\x05\x35\x82\x12\x52\x63\x82\x20\xf1\x32\xa2\x10\xf4"
                   84679:             "\x32\xb2\xf1\x32\xa2\x10\x33\x82\x52\x12\x43\x62\x35"
                   84680:             "\x50\xf5\x32\xd8\xa2" }  },
                   84681:       /* --- pixel bitmap for wncyr250 char#115 s --- */
                   84682:       { 115,95169,                      /* character number, location */
                   84683:          15, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   84684:           { 14,   15, 3,39, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   84685:             "\x58\x42\x63\x22\x73\x12\x91\x22\xbf\x42\xc0\x12\xc2"
                   84686:             "\xa1\x22\x81\x42\x61\x76\x33" }  },
                   84687:       /* --- pixel bitmap for wncyr250 char#116 t --- */
                   84688:       { 116,108730,                     /* character number, location */
                   84689:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   84690:           { 16,   15, 3,25, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   84691:             "\x0e\x04\x52\x52\x0f\x21\x62\x61\xf8\x72\x70\x3a\x32" }  },
                   84692:       /* --- pixel bitmap for wncyr250 char#117 u --- */
                   84693:       { 117,96289,                      /* character number, location */
                   84694:          15, 1,   -7, 1,      /* topleft row,col, and botleft row,col */
                   84695:           { 18,   22, 3,85, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   84696:             "\x07\x56\x23\x92\x20\xf1\x32\x91\x30\xf1\x42\x71\x40"
                   84697:             "\xf1\x52\x51\x50\x53\x32\xb2\x31\xc2\x22\x60\xf1\x72"
                   84698:             "\x11\x70\xf1\x82\x80\xf1\x81\x90\x71\xa3\x41\xa3\x31"
                   84699:             "\xb3\x22\xc4\xd0" }  },
                   84700:       /* --- pixel bitmap for wncyr250 char#118 v --- */
                   84701:       { 118,110048,                     /* character number, location */
                   84702:          15, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   84703:           { 17,   15, 3,49, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   84704:             "\x0d\x72\x73\x20\xf2\x32\x92\x10\x32\x82\x52\x63\x6c"
                   84705:             "\x52\x83\x10\xf2\x32\xa2\x32\x92\x42\x83\x1e\x31" }  },
                   84706:       /* --- pixel bitmap for wncyr250 char#119 shch --- */
                   84707:       { 119,111567,                     /* character number, location */
                   84708:          15, 0,   -4, 0,      /* topleft row,col, and botleft row,col */
                   84709:           { 28,   19, 3,36, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   84710:             "\x08\x27\x28\x10\xfc\x32\x73\x72\x4e\x0d\xe0\xb3\xe0"
                   84711:             "\xc2\xe0\xd1\xe0\xe1" }  },
                   84712:       /* --- pixel bitmap for wncyr250 char#120 sh --- */
                   84713:       { 120,113092,                     /* character number, location */
                   84714:          15, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   84715:           { 27,   15, 3,18, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   84716:             "\x08\x27\x28\xfc\x32\x73\x72\x3e\x0d" }  },
                   84717:       /* --- pixel bitmap for wncyr250 char#121 y --- */
                   84718:       { 121,114694,                     /* character number, location */
                   84719:          15, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   84720:           { 25,   15, 3,52, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   84721:             "\x08\x98\xf5\x32\xe0\x12\x30\x3c\x52\x62\x83\x42\x30"
                   84722:             "\xf2\x32\xa2\x32\x30\x32\x92\x42\x62\x83\x42\x3e\x38" }  },
                   84723:       /* --- pixel bitmap for wncyr250 char#122 z --- */
                   84724:       { 122,115742,                     /* character number, location */
                   84725:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   84726:           { 14,   15, 3,43, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   84727:             "\x11\x17\x52\x72\x31\x92\xc2\xb2\xa3\x67\xe2\xd2\x10"
                   84728:             "\xf2\xc2\x01\xa2\x12\x82\x21\x18\x42" }  },
                   84729:       /* --- pixel bitmap for wncyr250 char#123 (noname) --- */
                   84730:       { 123,60483,                      /* character number, location */
                   84731:          10, 0,    9, 0,      /* topleft row,col, and botleft row,col */
                   84732:           { 19,    1, 3, 4, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   84733:             "\x0e\x05" }  },
                   84734:       /* --- pixel bitmap for wncyr250 char#124 (noname) --- */
                   84735:       { 124,61303,                      /* character number, location */
                   84736:          10, 0,    9, 0,      /* topleft row,col, and botleft row,col */
                   84737:           { 38,    1, 2, 2, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   84738:             "\x00\x26" }  },
                   84739:       /* --- pixel bitmap for wncyr250 char#125 N0 --- */
                   84740:       { 125,62261,                      /* character number, location */
                   84741:          24, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   84742:           { 29,   24, 3,165, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   84743:             "\x16\x92\xe0\x14\x74\xe4\x61\x13\xe1\x12\x61\x13\xa0"
                   84744:             "\xf1\x41\x13\x51\xe0\x41\x23\x41\x91\x81\x23\x41\x72"
                   84745:             "\x12\x61\x33\x31\x71\x31\x61\x33\x31\x62\x32\x51\x42"
                   84746:             "\x31\x62\x32\x10\xf1\x41\x43\x21\x62\x32\x10\x41\x53"
                   84747:             "\x11\x71\x31\x61\x53\x11\x84\x61\x62\x11\xe0\xf1\x41"
                   84748:             "\x64\xe0\x41\x73\x59\x41\x73\xe3\x11\x82\xe5\x82\xe4"
                   84749:             "\xa1\xe0\x13\xa1\xe2" }  },
                   84750:       /* --- pixel bitmap for wncyr250 char#126 \cprime --- */
                   84751:       { 126,117048,                     /* character number, location */
                   84752:          15, 0,    0, 0,      /* topleft row,col, and botleft row,col */
                   84753:           { 17,   15, 3,35, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   84754:             "\x08\x90\xf5\x32\xc0\x3c\x52\x83\x10\xf2\x32\xa2\x32"
                   84755:             "\x92\x42\x83\x1e\x32" }  },
                   84756:       /* --- pixel bitmap for wncyr250 char#127 \cdprime --- */
                   84757:       { 127,118546,                     /* character number, location */
                   84758:          15, 1,    0, 1,      /* topleft row,col, and botleft row,col */
                   84759:           { 21,   15, 3,51, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   84760:             "\x1a\xb2\x52\xb0\xf1\x11\x62\xb1\x72\xb0\xf1\x82\xb0"
                   84761:             "\x8b\xa2\x82\x10\xf2\x82\x92\x82\x83\x82\x73\x6d\x38" }  },
                   84762:       /* --- trailer  --- */
                   84763:       { -99, -999,  0,0,0,0, { 0,0,0,0, (pixbyte *)"\0" }  }
                   84764:    } ;
                   84765: 
                   84766: 
1.5     ! raeburn  84767: /* --- size=8 for .325gf ---
        !          84768:  * mf '\mode=preview; mag=magstep(-11.40956951729850636869); input wncyr10'
        !          84769:  * --------------------------------------------------------------------- */
        !          84770: /* --- fontdef for wncyr325 --- */
        !          84771: static	chardef  wncyr325[] =
        !          84772:    {
        !          84773:       /* --- pixel bitmap for wncyr325 char#0 Nj --- */
        !          84774:       {   0,69698,                      /* character number, location */
        !          84775:          31, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          84776:           { 45,   31, 3,109, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          84777:             "\x0e\x4d\xe0\xf1\x54\xd5\xe0\x40\xfa\x54\xe4\xe0\x40"
        !          84778:             "\x5e\x0e\x05\xc4\xe4\x94\xa4\xe4\xb4\x84\xe4\xc4\x74"
        !          84779:             "\xe4\xc5\x64\xe4\xd4\x10\xf4\x54\xe4\xd5\x54\xe4\xd4"
        !          84780:             "\x64\xe4\xc5\x64\xe4\xc4\x74\xd5\xb4\x84\xd5\xa4\x4e"
        !          84781:             "\x4e\x07\x64" }  },
        !          84782:       /* --- pixel bitmap for wncyr325 char#1 Lj --- */
        !          84783:       {   1,70828,                      /* character number, location */
        !          84784:          31, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          84785:           { 43,   31, 3,137, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          84786:             "\x6e\x0c\xe0\x73\x95\xe0\xd2\xa4\xe0\x20\xfa\xb1\xb4"
        !          84787:             "\xe0\x20\xb1\xbd\xe0\x41\xb4\x84\xe0\x11\xb4\x94\xd2"
        !          84788:             "\xb4\xa4\xc2\xb4\xa5\xb2\xb4\xb4\xb2\xb4\xb5\xf1\xa1"
        !          84789:             "\xc4\xb5\x92\xc4\xb9\x52\xc4\xba\x41\xd4\xba\x32\xd4"
        !          84790:             "\xb4\x14\x41\xe4\xa4\x22\x52\xe4\xa4\x37\xe0\x14\x94"
        !          84791:             "\x64\xbe\x06\x54" }  },
        !          84792:       /* --- pixel bitmap for wncyr325 char#2 Dzh --- */
        !          84793:       {   2,72087,                      /* character number, location */
        !          84794:          31, 4,   -7, 4,      /* topleft row,col, and botleft row,col */
        !          84795:           { 29,   38, 3,35, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          84796:             "\x0c\x5c\xfe\x44\xd4\x40\xfc\x44\xd4\x40\x45\xb5\x4e"
        !          84797:             "\x0e\x01\xf6\xd4\xc0" }  },
        !          84798:       /* --- pixel bitmap for wncyr325 char#3 \`E --- */
        !          84799:       {   3,73175,                      /* character number, location */
        !          84800:          32, 4,   -1, 4,      /* topleft row,col, and botleft row,col */
        !          84801:           { 27,   33, 3,151, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          84802:             "\x01\x77\xc2\x42\x64\x93\x12\xa3\x84\xe3\x63\xe0\x23"
        !          84803:             "\x53\xe0\x24\x4f\x12\xe0\x44\x3f\x11\xe0\x64\x21\xe0"
        !          84804:             "\x65\xe0\x94\xe0\x95\xb8\x35\xab\x15\x84\x88\x63\xc5"
        !          84805:             "\x18\xd5\x35\xe5\xf1\xe0\x85\xe0\x84\x11\xe0\x65\x1f"
        !          84806:             "\x11\xe0\x64\x21\xe0\x54\x41\xe0\x44\x41\xe0\x34\x61"
        !          84807:             "\xe0\x23\x81\xe3\xa2\xa3\xe2\x64\xe0\x37\xcf" }  },
        !          84808:       /* --- pixel bitmap for wncyr325 char#4 \=I --- */
        !          84809:       {   4,83173,                      /* character number, location */
        !          84810:          31, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          84811:           { 12,   31, 3,14, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          84812:             "\x0c\xfe\x44\x40\xfd\x44\x4c" }  },
        !          84813:       /* --- pixel bitmap for wncyr325 char#5 \=E --- */
        !          84814:       {   5,74252,                      /* character number, location */
        !          84815:          32, 4,   -1, 4,      /* topleft row,col, and botleft row,col */
        !          84816:           { 27,   33, 3,153, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          84817:             "\xc7\x71\x94\x62\x42\x83\xa2\x13\x63\xe4\x53\xe0\x23"
        !          84818:             "\x44\xe0\x23\xf1\x34\xe0\x42\xf1\x24\xe0\x61\x15\xe0"
        !          84819:             "\x61\x14\xe0\x85\xe0\x85\x38\xb5\x1b\xa7\x84\x85\xc3"
        !          84820:             "\x66\xd8\x15\xe5\x3f\x15\xe0\x80\x14\xe0\x95\xe0\x61"
        !          84821:             "\xf1\x24\xe0\x61\x34\xe0\x51\x34\xe0\x41\x54\xe0\x31"
        !          84822:             "\x63\xe0\x21\x83\xe1\xb3\xa2\xd4\x62\xe0\x47\x81" }  },
        !          84823:       /* --- pixel bitmap for wncyr325 char#6 Dj --- */
        !          84824:       {   6,84427,                      /* character number, location */
        !          84825:          31, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          84826:           { 35,   31, 3,121, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          84827:             "\x0e\x0e\x01\x63\xa4\xa2\x61\xc4\xb1\x6f\x11\xc4\xc1"
        !          84828:             "\x50\xf6\xd4\xe0\x40\xd4\x67\xe0\x44\x42\x62\xe0\x34"
        !          84829:             "\x22\x92\xe0\x24\x11\xb3\xe0\x15\xc4\xe4\xe3\x10\xf6"
        !          84830:             "\xd4\xe4\xd4\xe3\xe4\x62\x63\xe4\x54\x43\xe0\x14\x54"
        !          84831:             "\x42\xe0\x15\x62\x42\xbe\x01\x26\x51" }  },
        !          84832:       /* --- pixel bitmap for wncyr325 char#7 \'C --- */
        !          84833:       {   7,85898,                      /* character number, location */
        !          84834:          31, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          84835:           { 31,   31, 3,76, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          84836:             "\x0e\x0c\x52\x84\xa2\x51\x94\xb1\x5f\x11\x94\xc1\x40"
        !          84837:             "\xf6\xa4\xe0\x30\xa4\x46\xe0\x34\x22\x53\xe0\x14\x11"
        !          84838:             "\x83\x40\xf1\xa5\x93\x40\xfc\xa4\xa4\x30\x6b\x4a" }  },
        !          84839:       /* --- pixel bitmap for wncyr325 char#8 nj --- */
        !          84840:       {   8,130685,                     /* character number, location */
        !          84841:          19, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          84842:           { 30,   19, 3,63, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          84843:             "\x09\x2a\xc3\x84\xc0\xf6\x33\x93\xc0\x3e\x0a\x63\x93"
        !          84844:             "\x74\x43\x93\x83\x10\xf3\x33\x93\x84\x33\x93\x83\x43"
        !          84845:             "\x84\x73\x29\x2e\x01\x45" }  },
        !          84846:       /* --- pixel bitmap for wncyr325 char#9 lj --- */
        !          84847:       {   9,131779,                     /* character number, location */
        !          84848:          19, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          84849:           { 28,   19, 3,73, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          84850:             "\x4e\x03\x70\xf7\x72\x63\xa0\x72\x6b\x92\x63\x54\x82"
        !          84851:             "\x63\x63\x14\x31\x73\x64\x0f\x15\x21\x73\x64\x04\x22"
        !          84852:             "\x73\x66\x41\x83\x63\x26\x83\x53\x53\x6d\x34" }  },
        !          84853:       /* --- pixel bitmap for wncyr325 char#10 dzh --- */
        !          84854:       {  10,133002,                     /* character number, location */
        !          84855:          19, 1,   -5, 1,      /* topleft row,col, and botleft row,col */
        !          84856:           { 23,   24, 3,29, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          84857:             "\x0b\x1b\xfe\x43\x93\x40\x43\x93\x84\x74\x4e\x09\xf4"
        !          84858:             "\xa3\xa3" }  },
        !          84859:       /* --- pixel bitmap for wncyr325 char#11 \`e --- */
        !          84860:       {  11,134064,                     /* character number, location */
        !          84861:          20, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          84862:           { 18,   21, 3,79, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          84863:             "\x01\x46\x72\x12\x53\x53\x83\x42\xa3\x32\xb3\x21\xc4"
        !          84864:             "\x11\xd3\xe0\x14\x75\x24\x5e\x33\x74\x15\x84\x31\xa4"
        !          84865:             "\xe5\xd3\x11\xc4\x11\xc3\x31\xa3\x51\x83\x72\x53\xa6"
        !          84866:             "\x71" }  },
        !          84867:       /* --- pixel bitmap for wncyr325 char#12 \=\i --- */
        !          84868:       {  12,89928,                      /* character number, location */
        !          84869:          31, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          84870:           {  9,   31, 3,30, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          84871:             "\x32\x64\x45\x54\x62\x40\xf6\x96\x30\xfe\x33\x30\xf1"
        !          84872:             "\x33\x39" }  },
        !          84873:       /* --- pixel bitmap for wncyr325 char#13 \=e --- */
        !          84874:       {  13,135121,                     /* character number, location */
        !          84875:          20, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          84876:           { 18,   21, 3,79, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          84877:             "\x76\x41\x53\x52\x12\x43\x83\x33\xa2\x23\xb2\x14\xc1"
        !          84878:             "\x13\xd5\xe4\x25\x7d\x54\x73\x35\x85\x14\xa1\x34\xe0"
        !          84879:             "\x13\xd1\x14\xc1\x23\xc1\x33\xa1\x53\x81\x73\x52\xa6"
        !          84880:             "\x51" }  },
        !          84881:       /* --- pixel bitmap for wncyr325 char#14 dj --- */
        !          84882:       {  14,90978,                      /* character number, location */
        !          84883:          31, 4,   -9, 4,      /* topleft row,col, and botleft row,col */
        !          84884:           { 22,   40, 3,115, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          84885:             "\x26\xe0\xf3\x53\xee\x07\x10\xf5\x53\xe0\x53\x36\xa3"
        !          84886:             "\x21\x53\x83\x11\x82\x74\x93\x63\xb2\x63\xb3\xf5\x53"
        !          84887:             "\xc2\xf2\x53\xb3\xf1\x53\xb2\x10\x53\xa3\x39\x72\xe0"
        !          84888:             "\x62\x20\xf1\xe0\x32\x30\xe0\x22\xe0\x52\xe0\x52\xe0"
        !          84889:             "\x52\xe0\x43\xe0\x24\xa4" }  },
        !          84890:       /* --- pixel bitmap for wncyr325 char#15 \'c --- */
        !          84891:       {  15,92178,                      /* character number, location */
        !          84892:          31, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          84893:           { 25,   31, 3,64, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          84894:             "\x26\xe0\x30\xf3\x53\xe0\x3e\x06\x50\xf5\x53\xe0\x30"
        !          84895:             "\x53\x47\xb3\x22\x53\xa3\x11\x83\x40\xf1\x54\xa3\x30"
        !          84896:             "\xfc\x53\xb3\x30\x29\x59" }  },
        !          84897:       /* --- pixel bitmap for wncyr325 char#16 Yu --- */
        !          84898:       {  16,75566,                      /* character number, location */
        !          84899:          32, 4,   -1, 4,      /* topleft row,col, and botleft row,col */
        !          84900:           { 47,   33, 3,197, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          84901:             "\xe0\xe8\xbd\xd3\x63\xd5\xe0\x13\xa3\xb4\xe0\x13\xc3"
        !          84902:             "\xa4\xe3\xe3\x94\xd4\xe4\x84\xc4\xe0\x24\x30\xf1\x44"
        !          84903:             "\xb4\xe0\x44\x20\xf1\x44\xa5\xe0\x45\x10\x44\xa4\xe0"
        !          84904:             "\x64\x10\xf3\x44\x95\xe0\x65\x4e\x04\xe0\x65\xf3\x44"
        !          84905:             "\x95\xe0\x65\x44\xa4\xe0\x64\x10\xf1\x44\xa5\xe0\x45"
        !          84906:             "\x10\x44\xb4\xe0\x44\x64\xb5\xe0\x25\x64\xc4\xe0\x24"
        !          84907:             "\x74\xd4\xe4\x84\xe3\xe3\x94\xe0\x13\xc3\xa5\xe0\x14"
        !          84908:             "\x84\x7d\xd3\x63\xe0\xe0\x98\xb3" }  },
        !          84909:       /* --- pixel bitmap for wncyr325 char#17 Zh --- */
        !          84910:       {  17,68156,                      /* character number, location */
        !          84911:          31, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          84912:           { 45,   31, 3,203, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          84913:             "\x14\xbe\xa4\x16\xe0\x14\xea\x11\xe0\x14\xe1\x14\x12"
        !          84914:             "\x31\xe4\xd2\x22\x10\xf1\x61\xe4\xd1\x60\xf1\x71\xd4"
        !          84915:             "\xc1\x70\x81\xc4\xb1\xe0\x31\xb4\xa2\xe0\x41\xa4\x92"
        !          84916:             "\xe0\x62\x84\x82\xe0\x84\x54\x53\xe0\xde\x02\xe0\xee"
        !          84917:             "\x04\xe0\xa4\x64\x64\xe0\x54\x84\x84\xe0\x23\xa4\xa3"
        !          84918:             "\x70\xf1\x73\xb4\xb3\x60\xf3\x63\xc4\xc3\x5f\x11\x53"
        !          84919:             "\xc4\xc3\x41\x01\x52\xd4\xc3\x42\x43\xd4\xd2\x43\x32"
        !          84920:             "\xe4\xd3\x22\x15\xe0\x14\xe5\x33\xbe\xa3\x20" }  },
        !          84921:       /* --- pixel bitmap for wncyr325 char#18 \u I --- */
        !          84922:       {  18,77257,                      /* character number, location */
        !          84923:          42, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          84924:           { 31,   42, 3,206, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          84925:             "\x63\xd3\x60\xf2\x55\xb5\x50\x63\xd3\xc2\xe0\x12\xde"
        !          84926:             "\x03\xe0\x2d\x90\xf2\xe0\xe0\x3c\x7c\xf1\x44\xe0\x14"
        !          84927:             "\x40\x44\xe5\x40\xf1\x44\xd6\x40\xf1\x44\xc2\x14\x40"
        !          84928:             "\x44\xb2\x24\x40\xf1\x44\xa2\x34\x40\x44\x92\x44\x84"
        !          84929:             "\x83\x44\x84\x82\x54\x84\x72\x64\x84\x63\x64\x84\x62"
        !          84930:             "\x74\x84\x52\x84\x84\x43\x84\x84\x42\x94\x40\xf1\x44"
        !          84931:             "\x32\xa4\x40\x44\x22\xb4\x40\xf1\x44\x12\xc4\x40\xf1"
        !          84932:             "\x46\xd4\x40\x45\xe4\x40\xf1\x44\xe0\x14\x4c\x7c" }  },
        !          84933:       /* --- pixel bitmap for wncyr325 char#19 \"E --- */
        !          84934:       {  19,87452,                      /* character number, location */
        !          84935:          41, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          84936:           { 27,   41, 3,155, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          84937:             "\x72\x73\xe4\x55\xc6\x45\xd4\x55\xe2\x73\x80\xf4\xe0"
        !          84938:             "\xde\x0b\x64\xc5\x64\xe3\x64\xe0\x12\x64\xe0\x21\x64"
        !          84939:             "\xe0\x22\x10\xf2\x44\xe0\x31\x10\x44\x91\x71\x10\xf1"
        !          84940:             "\x44\x91\x90\x44\x82\xd4\x73\xde\xd4\x73\xd4\x82\x90"
        !          84941:             "\xf2\x44\x91\x90\xf2\x44\xe0\x41\xf2\x44\xe0\x31\x10"
        !          84942:             "\x44\xe0\x22\x54\xe0\x13\x54\xe3\x64\xc5\x2e\x0b\x20" }  },
        !          84943:       /* --- pixel bitmap for wncyr325 char#20 (noname) --- */
        !          84944:       {  20,78414,                      /* character number, location */
        !          84945:          31, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          84946:           { 32,   32, 3,169, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          84947:             "\x0c\xe0\x23\x46\xe0\x41\x13\x44\xe0\x41\x14\x44\xe0"
        !          84948:             "\x31\x24\x54\xe0\x21\x24\x54\xe0\x21\xb4\xe0\x11\xd4"
        !          84949:             "\xe1\x70\xf1\x64\xd1\x80\x74\xc1\x80\xf1\x74\xb1\x90"
        !          84950:             "\xf2\x84\x91\xa0\xf1\x94\x71\xb0\x94\x61\xc0\xf1\xa4"
        !          84951:             "\x51\xc0\xa5\x31\xe0\xa4\x31\xe0\xa4\x22\xe0\xa5\x11"
        !          84952:             "\xe0\xc4\x11\xe0\xc5\xe0\x10\xf1\xd4\xe0\x10\xd3\xe0"
        !          84953:             "\xe0\x22\xe0\xe0\x21\xe0\x30" }  },
        !          84954:       /* --- pixel bitmap for wncyr325 char#21 (noname) --- */
        !          84955:       {  21,79710,                      /* character number, location */
        !          84956:          32, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          84957:           { 34,   33, 3,143, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          84958:             "\xe6\xe0\xc3\x43\xe0\x93\x63\xe0\x73\x83\xe0\x53\xa3"
        !          84959:             "\xe0\x34\xa4\x80\xf2\x74\xc4\x70\x65\xc5\x60\xf1\x64"
        !          84960:             "\xe4\x60\xf2\x55\xe5\x5f\x2e\x0e\x06\x0f\x11\x45\xe5"
        !          84961:             "\x41\x55\xe5\x50\xf1\x64\xe4\x60\xf1\x65\xc5\x60\xf1"
        !          84962:             "\x74\xc4\x70\x84\xa4\xe0\x33\xa3\xe0\x53\x83\xe0\x73"
        !          84963:             "\x63\xe0\x93\x43\xe0\xc6\xe0" }  },
        !          84964:       /* --- pixel bitmap for wncyr325 char#22 \Dz --- */
        !          84965:       {  22,80922,                      /* character number, location */
        !          84966:          32, 4,   -1, 4,      /* topleft row,col, and botleft row,col */
        !          84967:           { 20,   33, 3,113, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          84968:             "\x66\x51\x62\x62\x22\x52\x94\x42\xb3\x32\xc3\x32\xd2"
        !          84969:             "\x23\xd2\x2f\x23\xe1\x2f\x14\xe0\x20\x15\xe0\x18\xdb"
        !          84970:             "\xac\x9d\xab\xd7\xe0\x25\xe0\x24\x10\xf1\xe0\x24\x0f"
        !          84971:             "\x31\xe0\x23\x02\xe0\x12\x12\xe3\x13\xd2\x25\xa2\x32"
        !          84972:             "\x32\x63\x41\x67\x64" }  },
        !          84973:       /* --- pixel bitmap for wncyr325 char#23 Ya --- */
        !          84974:       {  23,82352,                      /* character number, location */
        !          84975:          31, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
        !          84976:           { 31,   32, 3,131, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          84977:             "\xee\x03\xb4\x84\xd4\xa4\xc4\xb4\xb5\xb4\xb4\xc4\x40"
        !          84978:             "\xf3\x65\xc4\x40\x74\xc4\xb5\xb4\xc4\xb4\xd4\xa4\xe0"
        !          84979:             "\x14\x84\xe0\x4d\xe0\x33\x74\x40\xf1\xb3\x94\x40\xa3"
        !          84980:             "\xa4\x40\xf2\x94\xa4\x40\xf2\x85\xa4\x41\x75\xa4\x41"
        !          84981:             "\x66\xa4\x41\x65\xb4\x51\x54\xc4\x61\x34\x9c\x35\xe0"
        !          84982:             "\x93" }  },
        !          84983:       /* --- pixel bitmap for wncyr325 char#24 yu --- */
        !          84984:       {  24,136389,                     /* character number, location */
        !          84985:          20, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          84986:           { 32,   21, 3,103, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          84987:             "\xe0\x56\x7a\x73\x43\x84\x92\x82\x73\x93\x83\x63\x83"
        !          84988:             "\xa3\x53\x74\xa4\x43\x73\xc3\x10\xf2\x33\x64\xc4\x3d"
        !          84989:             "\xc4\xf2\x33\x64\xc4\x33\x73\xc3\x43\x74\xa4\x43\x83"
        !          84990:             "\xa3\x53\x93\x83\x64\x84\x64\x3a\x73\x43\xe0\xa6\x74" }  },
        !          84991:       /* --- pixel bitmap for wncyr325 char#25 zh --- */
        !          84992:       {  25,129171,                     /* character number, location */
        !          84993:          19, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          84994:           { 32,   19, 3,119, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          84995:             "\x13\x7b\x63\x14\xa4\xa4\x11\x21\x94\x91\x21\x51\x94"
        !          84996:             "\x91\x91\x84\x81\xa2\x74\x72\xb2\x64\x62\xe3\x34\x33"
        !          84997:             "\xe0\x3e\xe0\x15\x34\x35\xa4\x64\x64\x83\x74\x73\x40"
        !          84998:             "\xf1\x33\x84\x83\x3f\x11\x23\x84\x83\x21\x01\x22\x94"
        !          84999:             "\x92\x26\x94\x95\x13\x7b\x63\x11" }  },
        !          85000:       /* --- pixel bitmap for wncyr325 char#26 \u\i --- */
        !          85001:       {  26,138034,                     /* character number, location */
        !          85002:          30, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          85003:           { 22,   30, 3,130, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          85004:             "\x61\x81\x60\xf2\x45\x45\x40\x44\x64\x92\x82\xba\xd8"
        !          85005:             "\x70\xf2\xe0\x89\x49\x33\xa3\x63\x94\x30\xf1\x33\x85"
        !          85006:             "\x30\x33\x72\x13\x63\x62\x23\x63\x61\x33\x63\x52\x33"
        !          85007:             "\x63\x42\x43\x63\x32\x53\x63\x31\x63\x63\x22\x63\x63"
        !          85008:             "\x12\x73\x30\xf1\x35\x83\x30\x34\x93\x63\xa3\x39\x49" }  },
        !          85009:       /* --- pixel bitmap for wncyr325 char#27 \"e --- */
        !          85010:       {  27,93089,                      /* character number, location */
        !          85011:          28, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          85012:           { 18,   28, 3,87, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          85013:             "\x33\x64\x20\xf1\x25\x54\x20\x33\x64\x20\xf4\xe0\x40"
        !          85014:             "\x76\xa2\x53\x63\x73\x20\xf1\x23\x93\x10\x13\xa4\x13"
        !          85015:             "\xb7\xbe\x07\x0f\x24\xe0\xf1\x13\xe0\xf1\x23\xc1\x42"
        !          85016:             "\xa1\x63\x62\x97\x42" }  },
        !          85017:       /* --- pixel bitmap for wncyr325 char#28 (noname) --- */
        !          85018:       {  28,139123,                     /* character number, location */
        !          85019:          19, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          85020:           { 22,   19, 3,79, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          85021:             "\x09\x83\x44\xa1\x22\x10\xf1\x33\x91\x33\x43\x81\x60"
        !          85022:             "\xf1\x43\x71\x70\xf2\x53\x51\x80\xf1\x63\x31\x90\x63"
        !          85023:             "\x21\xe0\x33\x11\xe0\x35\xe0\x34\xe0\x53\xb0\xf1\x82"
        !          85024:             "\xc3" }  },
        !          85025:       /* --- pixel bitmap for wncyr325 char#29 (noname) --- */
        !          85026:       {  29,140367,                     /* character number, location */
        !          85027:          20, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          85028:           { 22,   21, 3,85, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          85029:             "\x94\xe0\x23\x23\xd3\x43\xb3\x63\x94\x64\x40\xf1\x43"
        !          85030:             "\x83\x40\xf1\x34\x84\x3f\x2e\x08\x01\x24\x84\x21\x34"
        !          85031:             "\x84\x30\xf1\x43\x83\x40\x44\x64\x93\x63\xb3\x43\xd3"
        !          85032:             "\x23\xe0\x24\x93" }  },
        !          85033:       /* --- pixel bitmap for wncyr325 char#30 \dz --- */
        !          85034:       {  30,141527,                     /* character number, location */
        !          85035:          20, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          85036:           { 13,   21, 3,63, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          85037:             "\x35\x31\x32\x44\x22\x72\x12\x82\x1f\x12\x91\x12\xb3"
        !          85038:             "\xb6\x88\x68\x77\xa4\xa3\xb2\x0f\x11\xa2\x01\xa1\x12"
        !          85039:             "\x82\x14\x52\x21\x35\x40" }  },
        !          85040:       /* --- pixel bitmap for wncyr325 char#31 ya --- */
        !          85041:       {  31,142913,                     /* character number, location */
        !          85042:          19, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
        !          85043:           { 21,   20, 3,77, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          85044:             "\x8d\x64\x53\x83\x73\x30\xf3\x44\x73\x30\x53\x73\x94"
        !          85045:             "\x53\xba\xb2\x53\xa2\x63\x30\xf1\x63\x63\x30\xf1\x54"
        !          85046:             "\x63\x31\x44\x63\x31\x34\x73\x41\x24\x49\x24\xe0\x13" }  },
        !          85047:       /* --- pixel bitmap for wncyr325 char#32 \cyddot --- */
        !          85048:       {  32,59033,                      /* character number, location */
        !          85049:          31, 6,   26, 6,      /* topleft row,col, and botleft row,col */
        !          85050:           { 13,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          85051:             "\x06\xec\xc1\x7f\xfc\x07\x6f\xc0\x00" }  },
        !          85052:       /* --- pixel bitmap for wncyr325 char#33 (noname) --- */
        !          85053:       {  33,37062,                      /* character number, location */
        !          85054:          32, 5,    0, 5,      /* topleft row,col, and botleft row,col */
        !          85055:           {  5,   32, 3,31, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          85056:             "\x13\x1f\x55\xf9\x13\x10\xf4\x21\x20\xf4\x50\x13\x1f"
        !          85057:             "\x25\x13\x10" }  },
        !          85058:       /* --- pixel bitmap for wncyr325 char#34 (noname) --- */
        !          85059:       {  34,59958,                      /* character number, location */
        !          85060:          31, 3,   17, 3,      /* topleft row,col, and botleft row,col */
        !          85061:           { 15,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          85062:             "\x0e\x9c\x0f\xdf\x8f\xff\xc7\xef\xc2\x05\x01\x82\x00"
        !          85063:             "\x41\x80\x10\x20\x08\x10\x02\x04\x01\x42\x80\x10\x20"
        !          85064:             "\x00" }  },
        !          85065:       /* --- pixel bitmap for wncyr325 char#35 (noname) --- */
        !          85066:       {  35,89071,                      /* character number, location */
        !          85067:          34, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          85068:           { 32,   34, 3,109, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          85069:             "\x4e\xe0\xf3\x94\xe0\x50\x1e\x0c\x62\x64\xb3\x52\x74"
        !          85070:             "\xd1\x51\x84\xd2\x41\x84\xe1\x40\xf5\x94\xe0\x50\x9e"
        !          85071:             "\x03\xe0\x14\xb4\xd4\xc4\xc4\xd4\xb4\xd5\xa4\xe4\x10"
        !          85072:             "\xf5\x94\xe5\x94\xe4\xa4\xd5\xa4\xc5\xb4\xc4\xc4\xa5"
        !          85073:             "\x8e\x08\x61" }  },
        !          85074:       /* --- pixel bitmap for wncyr325 char#36 (noname) --- */
        !          85075:       {  36,60770,                      /* character number, location */
        !          85076:          30, 2,   22, 2,      /* topleft row,col, and botleft row,col */
        !          85077:           { 18,    8, 3,19, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          85078:             "\xf3\x05\x85\x11\xe1\x23\xa3\x4c\x88\x53" }  },
        !          85079:       /* --- pixel bitmap for wncyr325 char#37 (noname) --- */
        !          85080:       {  37,38323,                      /* character number, location */
        !          85081:          34, 4,   -2, 4,      /* topleft row,col, and botleft row,col */
        !          85082:           { 33,   36, 3,243, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          85083:             "\x54\xe0\x42\x72\x41\xe0\x23\x62\x61\xe0\x12\x72\x72"
        !          85084:             "\xb4\x63\x71\x12\x75\x72\x81\x37\x22\x73\x91\xa3\x73"
        !          85085:             "\x91\x93\x83\x91\x92\x93\x91\x83\x93\x91\x73\xa3\x91"
        !          85086:             "\x72\xb3\x91\x63\xc2\x81\x63\xd3\x71\x62\xe0\x12\x71"
        !          85087:             "\x53\xe0\x12\x61\x53\xe0\x32\x41\x53\xe0\x64\x62\x84"
        !          85088:             "\xe0\x43\x62\x41\xe0\x23\x62\x61\xe0\x12\x72\x71\xd3"
        !          85089:             "\x62\x81\xc3\x72\x91\xb2\x73\x91\xa3\x73\x91\x93\x83"
        !          85090:             "\x91\x92\x93\x91\x83\x93\x91\x73\xa3\x91\x72\xc2\x91"
        !          85091:             "\x63\xc2\x81\x63\xe2\x71\x62\xe0\x12\x61\x63\xe0\x22"
        !          85092:             "\x41\x72\xe0\x54\x40" }  },
        !          85093:       /* --- pixel bitmap for wncyr325 char#38 (noname) --- */
        !          85094:       {  38,61401,                      /* character number, location */
        !          85095:          31,10,   23,10,      /* topleft row,col, and botleft row,col */
        !          85096:           {  9,    8, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          85097:             "\xc0\x81\x83\x87\x83\x83\x83\x03\x01" }  },
        !          85098:       /* --- pixel bitmap for wncyr325 char#39 (noname) --- */
        !          85099:       {  39,39165,                      /* character number, location */
        !          85100:          31, 5,   17, 5,      /* topleft row,col, and botleft row,col */
        !          85101:           {  6,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          85102:             "\xce\xf7\xff\x2e\x08\x82\x10\x84\x20\x84\x00" }  },
        !          85103:       /* --- pixel bitmap for wncyr325 char#40 (noname) --- */
        !          85104:       {  40,39823,                      /* character number, location */
        !          85105:          34, 5,  -12, 5,      /* topleft row,col, and botleft row,col */
        !          85106:           { 11,   46, 3,86, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          85107:             "\xa1\x91\x91\x91\x91\x92\x40\xf1\x42\x50\xf1\x32\x60"
        !          85108:             "\xf2\x22\x70\x13\x70\xf2\x12\x8f\xb3\x80\xf2\x12\x80"
        !          85109:             "\x13\x70\xf2\x22\x70\xf1\x32\x60\xf1\x42\x50\x52\xa1"
        !          85110:             "\xb1\xb1\xb1\xb1" }  },
        !          85111:       /* --- pixel bitmap for wncyr325 char#41 (noname) --- */
        !          85112:       {  41,40544,                      /* character number, location */
        !          85113:          34, 4,  -12, 4,      /* topleft row,col, and botleft row,col */
        !          85114:           { 11,   46, 3,87, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          85115:             "\x01\xb1\xb1\xb1\xb1\xa2\x50\xf1\x52\x40\xf1\x62\x30"
        !          85116:             "\xf2\x72\x20\x73\x10\xf2\x82\x10\xfb\x83\xf2\x82\x10"
        !          85117:             "\x73\x10\xf2\x72\x20\xf1\x62\x30\xf1\x52\x40\x42\x91"
        !          85118:             "\x91\x91\x91\x91\xa2" }  },
        !          85119:       /* --- pixel bitmap for wncyr325 char#42 (noname) --- */
        !          85120:       {  42,41263,                      /* character number, location */
        !          85121:          34, 4,   15, 4,      /* topleft row,col, and botleft row,col */
        !          85122:           { 17,   19, 3,59, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          85123:             "\xf3\x81\x82\x61\x65\x51\x53\x14\x31\x34\x43\x21\x23"
        !          85124:             "\x87\xc3\xc7\x83\x21\x23\x44\x31\x34\x13\x51\x55\x61"
        !          85125:             "\x62\xf3\x81\x82" }  },
        !          85126:       /* --- pixel bitmap for wncyr325 char#43 (noname) --- */
        !          85127:       {  43,93974,                      /* character number, location */
        !          85128:          35, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          85129:           { 25,   35, 3,103, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          85130:             "\x31\x71\xe0\x22\x52\xe0\x32\x32\xe0\x43\x13\xe0\x52"
        !          85131:             "\x12\xe0\x65\xe0\x10\xf3\x63\xe0\x2e\x01\xa0\xf8\x63"
        !          85132:             "\xe0\x20\x6e\xb3\x94\x93\xa4\x20\xf1\x63\xb4\x10\xf4"
        !          85133:             "\x63\xc4\xf1\x63\xb4\x10\x63\xa4\x83\x84\x7e\x02\x60" }  },
        !          85134:       /* --- pixel bitmap for wncyr325 char#44 (noname) --- */
        !          85135:       {  44,41954,                      /* character number, location */
        !          85136:           5, 5,   -9, 5,      /* topleft row,col, and botleft row,col */
        !          85137:           {  5,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          85138:             "\xee\xfd\xef\x21\x84\x08\x21\x42\x04" }  },
        !          85139:       /* --- pixel bitmap for wncyr325 char#45 (noname) --- */
        !          85140:       {  45,42527,                      /* character number, location */
        !          85141:          11, 2,    9, 2,      /* topleft row,col, and botleft row,col */
        !          85142:           { 12,    2, 3, 4, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          85143:             "\xf1\x0c" }  },
        !          85144:       /* --- pixel bitmap for wncyr325 char#46 (noname) --- */
        !          85145:       {  46,43050,                      /* character number, location */
        !          85146:           5, 5,    0, 5,      /* topleft row,col, and botleft row,col */
        !          85147:           {  5,    5, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          85148:             "\xee\xff\xef\x00" }  },
        !          85149:       /* --- pixel bitmap for wncyr325 char#47 (noname) --- */
        !          85150:       {  47,43602,                      /* character number, location */
        !          85151:          34, 4,  -11, 4,      /* topleft row,col, and botleft row,col */
        !          85152:           { 17,   45, 3,139, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          85153:             "\xf1\xe0\x12\xe3\xf1\xe2\x10\xd3\x10\xf1\xd2\x20\xc3"
        !          85154:             "\x20\xf1\xc2\x30\xb3\xe2\xe3\x40\xf1\xa2\x50\x93\x50"
        !          85155:             "\xf1\x92\x60\x83\x60\xf1\x82\x70\x73\x70\xf1\x72\x80"
        !          85156:             "\x63\x80\xf1\x62\x90\x53\x90\xf1\x52\xa0\x43\xe2\xe3"
        !          85157:             "\xb0\xf1\x32\xc0\x23\xc0\xf1\x22\xd0\x13\xd0\xf1\x12"
        !          85158:             "\xe3\xef\x12\xe0\x10" }  },
        !          85159:       /* --- pixel bitmap for wncyr325 char#48 (noname) --- */
        !          85160:       {  48,49055,                      /* character number, location */
        !          85161:          30, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          85162:           { 19,   31, 3,67, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          85163:             "\x75\xc2\x52\x92\x72\x72\x92\x30\xf1\x23\x93\x20\xf2"
        !          85164:             "\x13\xb3\x1f\xc4\xb4\xf2\x13\xb3\x10\xf1\x23\x93\x20"
        !          85165:             "\x32\x92\x63\x73\x83\x33\xc5\x70" }  },
        !          85166:       /* --- pixel bitmap for wncyr325 char#49 (noname) --- */
        !          85167:       {  49,49937,                      /* character number, location */
        !          85168:          30, 5,    0, 5,      /* topleft row,col, and botleft row,col */
        !          85169:           { 15,   30, 3,30, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          85170:             "\x72\xc3\xa5\x64\x23\x60\xfe\x63\x60\xf8\x63\x60\x55"
        !          85171:             "\x5e\x01" }  },
        !          85172:       /* --- pixel bitmap for wncyr325 char#50 (noname) --- */
        !          85173:       {  50,50980,                      /* character number, location */
        !          85174:          30, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          85175:           { 19,   30, 3,105, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          85176:             "\x66\xb2\x54\x71\x93\x51\xa4\x20\xf1\x11\xc4\x14\xa5"
        !          85177:             "\x0f\x25\xa4\x21\xb5\xe5\xe4\xe5\xe4\xe4\xe0\x13\xe0"
        !          85178:             "\x13\xe0\x13\xe0\x13\xe0\x12\xe0\x22\xe0\x22\xe0\x31"
        !          85179:             "\xb1\x51\xc1\x41\xd1\x31\xd1\x3e\x02\x2e\x03\x1e\x04"
        !          85180:             "\x10" }  },
        !          85181:       /* --- pixel bitmap for wncyr325 char#51 (noname) --- */
        !          85182:       {  51,52098,                      /* character number, location */
        !          85183:          30, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          85184:           { 19,   31, 3,109, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          85185:             "\x67\xa2\x54\x71\x93\x51\xa4\x34\x85\x10\xf1\x14\x94"
        !          85186:             "\x10\x23\x85\xe5\x10\xf1\xd4\x20\xc4\xe0\x13\xe3\xc6"
        !          85187:             "\xe0\x44\xe0\x24\xe0\x24\xe0\x15\xe0\x14\xe0\x15\x21"
        !          85188:             "\xb5\x0f\x25\x95\x04\xa4\x21\xb5\x21\xb4\x42\x84\x72"
        !          85189:             "\x54\xa6\x72" }  },
        !          85190:       /* --- pixel bitmap for wncyr325 char#52 (noname) --- */
        !          85191:       {  52,53110,                      /* character number, location */
        !          85192:          30, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          85193:           { 21,   30, 3,95, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          85194:             "\xf1\xe2\x50\xd3\x50\xf1\xc4\x50\xb1\x13\xe0\x11\x23"
        !          85195:             "\xe2\x23\xe1\x33\xd1\x43\xc2\x43\xc1\x53\xb1\x63\xa2"
        !          85196:             "\x63\xa1\x73\x91\x83\x81\x93\x72\x93\x71\xa3\x61\xb3"
        !          85197:             "\x52\xb3\x5e\x07\xf6\xd3\x50\x9b\x11" }  },
        !          85198:       /* --- pixel bitmap for wncyr325 char#53 (noname) --- */
        !          85199:       {  53,54232,                      /* character number, location */
        !          85200:          30, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          85201:           { 19,   31, 3,97, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          85202:             "\x32\xa2\x5d\x6c\x7b\x88\x80\xf5\x31\xe0\x10\x31\x36"
        !          85203:             "\x91\x21\x53\x73\x73\x62\x93\x51\xa3\x20\xf1\xe0\x13"
        !          85204:             "\x10\xf2\xe0\x14\x13\xb4\x0f\x14\xb4\x03\xc3\x21\xc4"
        !          85205:             "\x21\xc3\x41\xb2\x61\x92\x82\x53\xb6\x74" }  },
        !          85206:       /* --- pixel bitmap for wncyr325 char#54 (noname) --- */
        !          85207:       {  54,55212,                      /* character number, location */
        !          85208:          30, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          85209:           { 19,   31, 3,109, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          85210:             "\x96\xb3\x51\x92\x81\x72\x83\x52\x84\x43\x84\x33\xa2"
        !          85211:             "\x43\xe0\x14\xe0\xf1\x13\xe0\x14\x45\x64\x22\x43\x44"
        !          85212:             "\x11\x73\x3f\x15\x93\x25\xa3\x14\xb3\x1f\x34\xb4\xf1"
        !          85213:             "\x13\xb4\x13\xb3\x33\xa3\x33\x93\x52\x93\x62\x73\x82"
        !          85214:             "\x52\xc6\x62" }  },
        !          85215:       /* --- pixel bitmap for wncyr325 char#55 (noname) --- */
        !          85216:       {  55,56216,                      /* character number, location */
        !          85217:          30, 4,   -1, 4,      /* topleft row,col, and botleft row,col */
        !          85218:           { 19,   31, 3,89, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          85219:             "\x11\xe0\x4e\x04\xf1\x1e\x03\x10\x11\xe1\x21\xe1\x3f"
        !          85220:             "\x11\xd1\x40\xd1\x50\xf1\xc1\x60\xb1\x70\xf1\xa1\x80"
        !          85221:             "\x92\xe0\x31\x90\xf1\x82\x90\x73\xe0\x22\xa0\xf3\x63"
        !          85222:             "\xa0\xf5\x54\xa0\x62\xb3" }  },
        !          85223:       /* --- pixel bitmap for wncyr325 char#56 (noname) --- */
        !          85224:       {  56,57206,                      /* character number, location */
        !          85225:          30, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          85226:           { 19,   31, 3,109, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          85227:             "\x76\xb1\x63\x72\x92\x52\xb2\x41\xd2\x10\xf2\x12\xd2"
        !          85228:             "\x10\x13\xc2\x24\xa2\x45\x81\x57\x51\x77\x22\xa8\xc7"
        !          85229:             "\xc9\x82\x37\x62\x66\x42\x86\x22\xb4\x22\xc6\xe3\x0f"
        !          85230:             "\x22\xe0\x12\x02\xe0\x11\x22\xd2\x31\xd1\x52\xa1\x73"
        !          85231:             "\x62\xa7\x62" }  },
        !          85232:       /* --- pixel bitmap for wncyr325 char#57 (noname) --- */
        !          85233:       {  57,58206,                      /* character number, location */
        !          85234:          30, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          85235:           { 19,   31, 3,109, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          85236:             "\x75\xc2\x52\x83\x72\x72\x92\x53\x93\x33\xa3\x33\xb3"
        !          85237:             "\x1f\x14\xb3\x1f\x34\xb4\x13\xb4\x13\xa5\xf1\x23\x95"
        !          85238:             "\x33\x71\x14\x43\x42\x24\x65\x44\xf1\xe0\x13\x10\xe4"
        !          85239:             "\xe0\x13\x42\xa3\x34\x92\x44\x83\x43\x83\x61\x83\x81"
        !          85240:             "\x62\xb6\x92" }  },
        !          85241:       /* --- pixel bitmap for wncyr325 char#58 (noname) --- */
        !          85242:       {  58,44304,                      /* character number, location */
        !          85243:          19, 5,    0, 5,      /* topleft row,col, and botleft row,col */
        !          85244:           {  5,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          85245:             "\xee\xff\xef\x00\x00\x00\x00\x00\x80\xfb\xff\x3b" }  },
        !          85246:       /* --- pixel bitmap for wncyr325 char#59 (noname) --- */
        !          85247:       {  59,45045,                      /* character number, location */
        !          85248:          19, 5,   -9, 5,      /* topleft row,col, and botleft row,col */
        !          85249:           {  5,   28, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          85250:             "\xee\xff\xef\x00\x00\x00\x00\x00\x80\x7b\xff\x7b\x08"
        !          85251:             "\x21\x42\x88\x10\x01" }  },
        !          85252:       /* --- pixel bitmap for wncyr325 char#60 < --- */
        !          85253:       {  60,62091,                      /* character number, location */
        !          85254:          20, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          85255:           { 20,   21, 3,83, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          85256:             "\xb2\xe0\x33\xe0\x14\x62\x74\x63\x64\x54\x64\x54\x64"
        !          85257:             "\x54\x64\x44\x65\x44\x65\x44\x74\x44\x85\x44\x85\x44"
        !          85258:             "\x94\x44\x94\x54\x84\x54\x84\x54\x84\x63\x84\x62\xa3"
        !          85259:             "\xe0\x42\x72" }  },
        !          85260:       /* --- pixel bitmap for wncyr325 char#61 (noname) --- */
        !          85261:       {  61,94819,                      /* character number, location */
        !          85262:          19, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          85263:           {  9,   19, 3,16, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          85264:             "\x06\x30\xfe\x33\x30\xf1\x33\x39" }  },
        !          85265:       /* --- pixel bitmap for wncyr325 char#62 > --- */
        !          85266:       {  62,62752,                      /* character number, location */
        !          85267:          20, 4,   -1, 4,      /* topleft row,col, and botleft row,col */
        !          85268:           { 20,   21, 3,83, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          85269:             "\x72\xe0\x43\xa2\x64\x83\x64\x84\x54\x84\x54\x84\x54"
        !          85270:             "\x94\x44\x94\x45\x84\x45\x84\x44\x74\x45\x64\x45\x64"
        !          85271:             "\x44\x64\x54\x64\x54\x64\x54\x63\x64\x72\x64\xe0\x13"
        !          85272:             "\xe0\x32\xb2" }  },
        !          85273:       /* --- pixel bitmap for wncyr325 char#63 (noname) --- */
        !          85274:       {  63,46018,                      /* character number, location */
        !          85275:          31, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          85276:           { 16,   31, 3,71, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          85277:             "\x48\x62\x64\x20\xf1\x11\xa3\x1f\x24\x84\x12\x94\xb4"
        !          85278:             "\xc3\xc3\xc2\x50\xf1\x82\x60\x81\xe2\x70\xf4\x71\x80"
        !          85279:             "\xf4\xe0\x20\x63\x70\xf2\x55\x60\x63\x70" }  },
        !          85280:       /* --- pixel bitmap for wncyr325 char#64 (noname) --- */
        !          85281:       {  64,63478,                      /* character number, location */
        !          85282:          31, 6,   23, 6,      /* topleft row,col, and botleft row,col */
        !          85283:           { 13,    8, 3,23, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          85284:             "\xf2\x01\xb1\x11\x91\x22\x72\x32\x52\x57\x75\x44" }  },
        !          85285:       /* --- pixel bitmap for wncyr325 char#65 A --- */
        !          85286:       {  65,26589,                      /* character number, location */
        !          85287:          32, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          85288:           { 33,   32, 3,134, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          85289:             "\xe0\x21\xe0\x20\xf2\xe0\x13\xe0\x10\xf2\xe5\xe0\xf1"
        !          85290:             "\xd1\x24\xd0\xc1\x35\xc0\xf1\xc1\x44\xc0\xf1\xb1\x64"
        !          85291:             "\xb0\xa2\x65\xa0\xf1\xa1\x84\xa0\xf2\x91\xa4\x90\x8e"
        !          85292:             "\x03\xe0\x21\xc4\xe0\x12\xc5\x70\xf1\x71\xe4\x70\xf2"
        !          85293:             "\x61\xe0\x24\x60\x51\xe0\x44\x93\xe0\x34\x85\xe0\x16"
        !          85294:             "\x4a\xad" }  },
        !          85295:       /* --- pixel bitmap for wncyr325 char#66 B --- */
        !          85296:       {  66,28071,                      /* character number, location */
        !          85297:          31, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          85298:           { 28,   31, 3,107, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          85299:             "\x0e\x0b\x84\xc4\x30\xf1\x54\xe2\x30\x54\xe0\x11\x84"
        !          85300:             "\xe0\x12\x20\xf3\x54\xe0\x21\x20\xf3\x54\xe0\x50\x5e"
        !          85301:             "\x02\xc4\xa4\xa4\xc4\x84\xd4\x74\xd5\x64\xe4\x10\xf4"
        !          85302:             "\x54\xe5\x54\xe4\x64\xd5\x64\xd4\x74\xc4\x84\xa5\x4e"
        !          85303:             "\x08\x60" }  },
        !          85304:       /* --- pixel bitmap for wncyr325 char#67 Ts --- */
        !          85305:       {  67, 1153,                      /* character number, location */
        !          85306:          31, 4,   -2, 4,      /* topleft row,col, and botleft row,col */
        !          85307:           { 30,   33, 3,40, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          85308:             "\x0c\x5c\x10\xfe\x44\xd4\x50\xfc\x44\xd4\x50\x45\xb5"
        !          85309:             "\x5e\x0e\x01\xe0\xd4\xe0\xe2" }  },
        !          85310:       /* --- pixel bitmap for wncyr325 char#68 D --- */
        !          85311:       {  68, 2257,                      /* character number, location */
        !          85312:          31, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
        !          85313:           { 35,   33, 3,142, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          85314:             "\xbe\x09\xe0\x22\x85\xe0\x62\x94\x50\xf5\xe0\x11\xa4"
        !          85315:             "\x50\xf3\xe2\xa4\x50\xf1\xe1\xb4\x50\xf1\xd2\xb4\x50"
        !          85316:             "\xf1\xd1\xc4\x50\xc2\xc4\x50\xf1\xc1\xd4\x50\xb2\xd4"
        !          85317:             "\xe0\x21\xe4\xe0\x12\xe4\xe0\x11\xe0\x14\xe2\xe0\x14"
        !          85318:             "\xe1\xe0\x24\xd2\xe0\x24\xc3\xe0\x15\x7e\x0e\x04\x34"
        !          85319:             "\xe0\xb4\x21\xe0\xe0\x22" }  },
        !          85320:       /* --- pixel bitmap for wncyr325 char#69 E --- */
        !          85321:       {  69,29592,                      /* character number, location */
        !          85322:          31, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          85323:           { 27,   31, 3,129, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          85324:             "\x0e\x0b\x64\xc5\x64\xe3\x64\xe0\x12\x64\xe0\x21\x64"
        !          85325:             "\xe0\x22\x10\xf2\x44\xe0\x31\x10\x44\x91\x71\x10\xf1"
        !          85326:             "\x44\x91\x90\x44\x82\xd4\x73\xde\xd4\x73\xd4\x82\x90"
        !          85327:             "\xf2\x44\x91\x90\xf2\x44\xe0\x41\xf2\x44\xe0\x31\x10"
        !          85328:             "\x44\xe0\x22\x54\xe0\x13\x54\xe3\x64\xc5\x2e\x0b\x26" }  },
        !          85329:       /* --- pixel bitmap for wncyr325 char#70 F --- */
        !          85330:       {  70,30761,                      /* character number, location */
        !          85331:          31, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          85332:           { 27,   31, 3,113, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          85333:             "\x6e\x01\x60\xf4\xb5\xb0\x99\xe0\x14\x15\x14\xa4\x35"
        !          85334:             "\x34\x74\x45\x44\x54\x55\x54\x35\x55\x55\x24\x65\x64"
        !          85335:             "\x1f\x45\x65\x65\x14\x65\x64\x25\x55\x55\x34\x55\x54"
        !          85336:             "\x54\x45\x44\x74\x35\x34\xa4\x15\x14\xe0\x19\x90\xf4"
        !          85337:             "\xb5\xb0\x6e\x01\x60" }  },
        !          85338:       /* --- pixel bitmap for wncyr325 char#71 G --- */
        !          85339:       {  71, 3553,                      /* character number, location */
        !          85340:          31, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          85341:           { 25,   31, 3,61, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          85342:             "\x0e\x0a\x54\xc4\x10\xf1\x44\xe2\x10\x44\xe0\x11\x54"
        !          85343:             "\xe0\x12\xf3\x44\xe0\x21\xfe\x44\xe0\x30\xf3\x44\xe0"
        !          85344:             "\x30\x45\xe0\x2e\xb2" }  },
        !          85345:       /* --- pixel bitmap for wncyr325 char#72 Kh --- */
        !          85346:       {  72, 4741,                      /* character number, location */
        !          85347:          31, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          85348:           { 33,   31, 3,166, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          85349:             "\x1c\x8a\x67\xc5\xa5\xd3\xd5\xd1\xe0\x14\xc1\xe0\x25"
        !          85350:             "\xa1\xe0\x45\x82\xe0\x54\x81\xe0\x74\x61\xe0\x85\x42"
        !          85351:             "\xe0\x95\x31\xe0\xb4\x21\xe0\xc6\xe0\xe5\xe0\xe0\x14"
        !          85352:             "\xe0\xe0\x24\xe0\xe6\xe0\xc2\x15\xe0\xb1\x34\xe0\xa1"
        !          85353:             "\x45\xe0\x82\x55\xe0\x71\x74\xe0\x61\x85\xe0\x41\xa5"
        !          85354:             "\xe0\x22\xb4\xe0\x21\xd4\xe1\xe5\xc2\xe0\x15\xa3\xe0"
        !          85355:             "\x24\x86\xe6\x4a\xbc" }  },
        !          85356:       /* --- pixel bitmap for wncyr325 char#73 I --- */
        !          85357:       {  73, 6091,                      /* character number, location */
        !          85358:          31, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          85359:           { 31,   31, 3,166, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          85360:             "\x0c\x7c\xf1\x44\xe0\x14\x40\x44\xe5\x40\xf1\x44\xd6"
        !          85361:             "\x40\xf1\x44\xc2\x14\x40\x44\xb2\x24\x40\xf1\x44\xa2"
        !          85362:             "\x34\x40\x44\x92\x44\x84\x83\x44\x84\x82\x54\x84\x72"
        !          85363:             "\x64\x84\x63\x64\x84\x62\x74\x84\x52\x84\x84\x43\x84"
        !          85364:             "\x84\x42\x94\x40\xf1\x44\x32\xa4\x40\x44\x22\xb4\x40"
        !          85365:             "\xf1\x44\x12\xc4\x40\xf1\x46\xd4\x40\x45\xe4\x40\xf1"
        !          85366:             "\x44\xe0\x14\x4c\x7c" }  },
        !          85367:       /* --- pixel bitmap for wncyr325 char#74 J --- */
        !          85368:       {  74,31734,                      /* character number, location */
        !          85369:          31, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          85370:           { 18,   32, 3,47, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          85371:             "\x5d\xa5\x30\xfe\xb4\x30\xf5\xb4\x30\x21\x84\x3f\x25"
        !          85372:             "\x64\x34\x73\x51\x84\x52\x73\x81\x53\xa6\x84" }  },
        !          85373:       /* --- pixel bitmap for wncyr325 char#75 K --- */
        !          85374:       {  75,25383,                      /* character number, location */
        !          85375:          31, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          85376:           { 28,   31, 3,127, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          85377:             "\x0c\xb4\x54\xe6\x44\xe1\x14\x44\xd2\x22\x10\xf1\x44"
        !          85378:             "\xd1\x60\xf1\x44\xc1\x70\x44\xb1\xc4\xa2\xc4\x92\xd4"
        !          85379:             "\x82\xe4\x53\xe0\x2a\xe0\x4b\xe0\x34\x64\xe4\x84\xc4"
        !          85380:             "\xa3\x70\xf1\x44\xb3\x60\xf3\x44\xc3\x50\xf2\x44\xc3"
        !          85381:             "\x41\x44\xd2\x41\x44\xd3\x22\x44\xe5\x1c\xb3\x25" }  },
        !          85382:       /* --- pixel bitmap for wncyr325 char#76 L --- */
        !          85383:       {  76, 7123,                      /* character number, location */
        !          85384:          31, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          85385:           { 30,   31, 3,78, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          85386:             "\x6e\x0a\xa3\x85\x40\xfd\xa2\xa4\x40\xf3\xa1\xb4\x40"
        !          85387:             "\xf2\x92\xb4\x40\x91\xc4\x52\x61\xc4\x44\x42\xc4\x44"
        !          85388:             "\x41\xd4\x44\x32\xd4\x43\x41\xe4\x56\xe0\x14\x64\xcc" }  },
        !          85389:       /* --- pixel bitmap for wncyr325 char#77 M --- */
        !          85390:       {  77, 8564,                      /* character number, location */
        !          85391:          31, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          85392:           { 38,   31, 3,158, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          85393:             "\x09\xe0\x69\x45\xe0\x65\x40\xf2\x41\x14\xe0\x41\x14"
        !          85394:             "\x40\xf1\x41\x24\xe0\x21\x24\x40\xf2\x41\x34\xe1\x34"
        !          85395:             "\x40\xf1\x41\x44\xc1\x44\x40\xf2\x41\x54\xa1\x54\x40"
        !          85396:             "\xf1\x41\x64\x81\x64\x40\xf2\x41\x74\x61\x74\x40\xf1"
        !          85397:             "\x41\x84\x41\x84\x40\xf2\x41\x94\x21\x94\x40\xf1\x41"
        !          85398:             "\xa5\xa4\x40\xf1\x41\xb3\xb4\x40\x25\x93\xb4\x49\x81"
        !          85399:             "\x8c" }  },
        !          85400:       /* --- pixel bitmap for wncyr325 char#78 N --- */
        !          85401:       {  78, 9993,                      /* character number, location */
        !          85402:          31, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          85403:           { 29,   31, 3,28, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          85404:             "\x0c\x5c\xfc\x44\xd4\x40\x4e\x07\x40\xfe\x44\xd4\x4c"
        !          85405:             "\x5c" }  },
        !          85406:       /* --- pixel bitmap for wncyr325 char#79 O --- */
        !          85407:       {  79,32675,                      /* character number, location */
        !          85408:          32, 4,   -1, 4,      /* topleft row,col, and botleft row,col */
        !          85409:           { 30,   33, 3,131, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          85410:             "\xb8\xe0\x63\x63\xe0\x23\xa3\xd3\xc3\xb3\xe3\x94\xe4"
        !          85411:             "\x74\xe0\x24\x30\xf1\x24\xe0\x44\x20\xf1\x15\xe0\x45"
        !          85412:             "\x10\x14\xe0\x64\x1f\x85\xe0\x65\x14\xe0\x64\x10\xf1"
        !          85413:             "\x15\xe0\x45\x10\x24\xe0\x44\x45\xe0\x25\x54\xe0\x24"
        !          85414:             "\x74\xe4\x93\xe3\xb3\xc3\xd4\x84\xe0\x23\x63\xe0\x68"
        !          85415:             "\xba" }  },
        !          85416:       /* --- pixel bitmap for wncyr325 char#80 P --- */
        !          85417:       {  80,11223,                      /* character number, location */
        !          85418:          31, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          85419:           { 29,   31, 3,30, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          85420:             "\x0e\x0e\x01\x45\xb5\x40\xfe\x44\xd4\x40\xfc\x44\xd4"
        !          85421:             "\x4c\x5c" }  },
        !          85422:       /* --- pixel bitmap for wncyr325 char#81 Ch --- */
        !          85423:       {  81,12400,                      /* character number, location */
        !          85424:          31, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          85425:           { 31,   31, 3,56, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          85426:             "\x0c\x7c\xfb\x44\xe0\x14\x40\x45\xe4\x94\xd5\xa4\xa2"
        !          85427:             "\x14\xb5\x63\x24\xcb\x44\xe7\x64\x40\xfa\xe0\x94\x40"
        !          85428:             "\xe0\x5c" }  },
        !          85429:       /* --- pixel bitmap for wncyr325 char#82 R --- */
        !          85430:       {  82,33944,                      /* character number, location */
        !          85431:          31, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          85432:           { 26,   31, 3,67, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          85433:             "\x0e\x05\xb4\x94\x94\xb4\x74\xc4\x20\xf1\x44\xd4\x10"
        !          85434:             "\xf3\x44\xd5\xf1\x44\xd4\x10\x44\xc4\x64\xb4\x74\x94"
        !          85435:             "\x9e\x01\x70\xfd\x44\xe0\x4c\xe5" }  },
        !          85436:       /* --- pixel bitmap for wncyr325 char#83 S --- */
        !          85437:       {  83,34969,                      /* character number, location */
        !          85438:          32, 4,   -1, 4,      /* topleft row,col, and botleft row,col */
        !          85439:           { 27,   33, 3,137, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          85440:             "\xc7\x71\x94\x62\x42\x83\xa1\x23\x63\xd1\x13\x53\xe0"
        !          85441:             "\x14\x44\xe0\x23\x34\xe0\x33\x34\xe0\x42\xf1\x24\xe0"
        !          85442:             "\x52\x15\xe0\x61\x14\xe0\x76\xe0\x71\x0f\x75\xe0\x80"
        !          85443:             "\x14\xe0\x71\x15\xe0\x61\xf1\x24\xe0\x61\xf1\x34\xe0"
        !          85444:             "\x41\x10\x44\xe0\x21\x73\xe0\x21\x83\xe1\xb3\xa2\xd4"
        !          85445:             "\x62\xe0\x47\x82" }  },
        !          85446:       /* --- pixel bitmap for wncyr325 char#84 T --- */
        !          85447:       {  84,13585,                      /* character number, location */
        !          85448:          31, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          85449:           { 29,   31, 3,61, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          85450:             "\x1e\x0d\x24\x84\x74\x22\xa4\x92\x10\xf1\x11\xb4\xa1"
        !          85451:             "\x12\xb4\xa2\x0f\x31\xc4\xb1\xfe\xd4\xc0\xf3\xd4\xc0"
        !          85452:             "\xc6\xe0\x4e\x02\x61" }  },
        !          85453:       /* --- pixel bitmap for wncyr325 char#85 U --- */
        !          85454:       {  85,36311,                      /* character number, location */
        !          85455:          31, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          85456:           { 33,   31, 3,173, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          85457:             "\x0b\xe8\x45\xe0\x34\x84\xe0\x42\x94\xe0\x32\xb4\xe0"
        !          85458:             "\x21\xc4\xe0\x12\xd4\xe1\xe5\xc2\xe0\x14\xc1\xe0\x34"
        !          85459:             "\xa1\xe0\x44\x92\xe0\x54\x81\xe0\x65\x62\xe0\x74\x61"
        !          85460:             "\xe0\x94\x41\xe0\xa4\x32\xe0\xb4\x21\xe0\xc7\xd0\xf1"
        !          85461:             "\xe5\xe0\xe0\x13\xe0\xe0\x31\xe0\x62\x92\xe0\x54\x81"
        !          85462:             "\xe0\x64\x72\xe0\x64\x71\xe0\x71\x91\xe0\x91\x72\xe0"
        !          85463:             "\x91\x71\xe0\xb2\x32\xe0\xe4\xe0\x80" }  },
        !          85464:       /* --- pixel bitmap for wncyr325 char#86 V --- */
        !          85465:       {  86,15021,                      /* character number, location */
        !          85466:          31, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          85467:           { 28,   31, 3,103, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          85468:             "\x0e\x07\xc4\xa4\xa4\xb4\x94\xc4\x84\xd4\x20\xf4\x54"
        !          85469:             "\xd5\x10\x54\xd4\x74\xc5\x74\xb5\x84\xa5\x9e\x03\xb4"
        !          85470:             "\xa4\xa4\xc4\x84\xd4\x74\xd5\x64\xe4\x10\xf4\x54\xe5"
        !          85471:             "\x54\xe4\x64\xd5\x64\xd4\x74\xc4\x84\xa5\x4e\x08\x61" }  },
        !          85472:       /* --- pixel bitmap for wncyr325 char#87 Shch --- */
        !          85473:       {  87,16644,                      /* character number, location */
        !          85474:          31, 4,   -2, 4,      /* topleft row,col, and botleft row,col */
        !          85475:           { 45,   33, 3,56, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          85476:             "\x0c\x4c\x4c\x10\xfe\x44\xc4\xc4\x50\xfc\x44\xc4\xc4"
        !          85477:             "\x50\x45\xa6\xa5\x5e\x0e\x0e\x02\xe0\xe0\xe4\xe0\xe0"
        !          85478:             "\xe0\x12" }  },
        !          85479:       /* --- pixel bitmap for wncyr325 char#88 Sh --- */
        !          85480:       {  88,18301,                      /* character number, location */
        !          85481:          31, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          85482:           { 44,   31, 3,40, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          85483:             "\x0c\x4c\x4c\xfe\x44\xc4\xc4\x40\xfc\x44\xc4\xc4\x40"
        !          85484:             "\x45\xa6\xa5\x4e\x0e\x0e\x02" }  },
        !          85485:       /* --- pixel bitmap for wncyr325 char#89 Y --- */
        !          85486:       {  89,20065,                      /* character number, location */
        !          85487:          31, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          85488:           { 43,   31, 3,108, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          85489:             "\x0e\xe0\x2d\x54\xe0\xb5\x40\xfb\x54\xe0\xb4\x50\x5e"
        !          85490:             "\x02\xd4\xa4\xa4\xb4\xa4\xc4\x94\xa4\xd4\x84\xa4\xd5"
        !          85491:             "\x74\xa4\xe4\x74\x50\xf4\x54\xe5\x64\x50\x54\xe4\x74"
        !          85492:             "\xa4\xd5\x74\xa4\xd4\x84\xa4\xc4\x94\xa4\xa5\xa5\x4e"
        !          85493:             "\x08\x8d" }  },
        !          85494:       /* --- pixel bitmap for wncyr325 char#90 Z --- */
        !          85495:       {  90,21235,                      /* character number, location */
        !          85496:          32, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          85497:           { 24,   33, 3,147, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          85498:             "\x11\x68\x92\x23\x74\x64\xc3\x53\xe4\x32\xe0\x14\x31"
        !          85499:             "\xe0\x25\x21\xe0\x34\x21\xe0\x25\xe0\x55\xe0\x54\xe0"
        !          85500:             "\x55\xe0\x54\xe0\x54\xe0\x53\xe0\x44\xea\xe0\x84\xe0"
        !          85501:             "\x84\xe0\x74\xe0\x74\xe0\x65\xe0\x64\x10\xf2\xe0\x55"
        !          85502:             "\x01\xe0\x46\xe0\x44\x11\xe0\x35\x12\xe0\x24\x22\xe0"
        !          85503:             "\x14\x34\xc4\x42\x22\x84\x61\x5a\x85" }  },
        !          85504:       /* --- pixel bitmap for wncyr325 char#91 (noname) --- */
        !          85505:       {  91,46799,                      /* character number, location */
        !          85506:          34, 5,  -11, 5,      /* topleft row,col, and botleft row,col */
        !          85507:           {  8,   45, 3,20, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          85508:             "\xf1\x08\x0f\xe2\x6f\xe2\x6f\xa2\x6f\x18" }  },
        !          85509:       /* --- pixel bitmap for wncyr325 char#92 (noname) --- */
        !          85510:       {  92,64411,                      /* character number, location */
        !          85511:          31, 7,   17, 7,      /* topleft row,col, and botleft row,col */
        !          85512:           { 15,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          85513:             "\x10\x20\x04\x08\x01\x82\x00\x21\x40\x10\x20\x04\x08"
        !          85514:             "\x02\x04\x01\x82\x0e\xdd\x8f\xff\xc7\xef\xc3\xe7\xc0"
        !          85515:             "\x01" }  },
        !          85516:       /* --- pixel bitmap for wncyr325 char#93 (noname) --- */
        !          85517:       {  93,47603,                      /* character number, location */
        !          85518:          34, 1,  -11, 1,      /* topleft row,col, and botleft row,col */
        !          85519:           {  8,   45, 3,20, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          85520:             "\xf1\x08\xfe\x62\xfe\x62\xfa\x62\x0f\x18" }  },
        !          85521:       /* --- pixel bitmap for wncyr325 char#94 \Cprime --- */
        !          85522:       {  94,22667,                      /* character number, location */
        !          85523:          31, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          85524:           { 28,   31, 3,69, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          85525:             "\x0e\xe0\xfc\x54\xe0\x50\x5e\x02\xc4\xa4\xa4\xc4\x84"
        !          85526:             "\xd4\x74\xd5\x64\xe4\x10\xf4\x54\xe5\x54\xe4\x64\xd5"
        !          85527:             "\x64\xd4\x74\xc4\x84\xa5\x4e\x08\x64" }  },
        !          85528:       /* --- pixel bitmap for wncyr325 char#95 \Cdprime --- */
        !          85529:       {  95,24241,                      /* character number, location */
        !          85530:          31, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          85531:           { 37,   31, 3,133, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          85532:             "\x1e\x05\xe0\x45\x84\xe0\x63\xa4\xe0\x62\xb4\xe0\x50"
        !          85533:             "\xf1\x11\xc4\xe0\x52\xc4\xe0\x5f\x21\xd4\xe0\x50\xf3"
        !          85534:             "\xe4\xe0\x50\xee\x02\xe0\x74\xa4\xe0\x54\xc4\xe0\x34"
        !          85535:             "\xd4\xe0\x24\xd5\xe0\x14\xe4\x10\xf4\xe4\xe5\xe4\xe4"
        !          85536:             "\xe0\x14\xd5\xe0\x14\xd4\xe0\x24\xc4\xe0\x34\xa5\xde"
        !          85537:             "\x08\x64" }  },
        !          85538:       /* --- pixel bitmap for wncyr325 char#96 (noname) --- */
        !          85539:       {  96,48327,                      /* character number, location */
        !          85540:          31, 4,   17, 4,      /* topleft row,col, and botleft row,col */
        !          85541:           {  6,   14, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          85542:             "\x10\x42\x10\x82\x10\x04\x41\xf7\xff\x3e\x07" }  },
        !          85543:       /* --- pixel bitmap for wncyr325 char#97 a --- */
        !          85544:       {  97,95997,                      /* character number, location */
        !          85545:          19, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          85546:           { 21,   19, 3,77, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          85547:             "\x38\xc2\x72\x94\x73\x74\x82\x82\x93\x50\xf1\xd3\x50"
        !          85548:             "\x97\xa5\x33\x84\x63\x74\x73\x64\x83\x5f\x24\x93\x41"
        !          85549:             "\x04\x84\x41\x14\x74\x41\x24\x42\x23\x21\x56\x54\x24" }  },
        !          85550:       /* --- pixel bitmap for wncyr325 char#98 b --- */
        !          85551:       {  98,96785,                      /* character number, location */
        !          85552:          29, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          85553:           { 21,   29, 3,99, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          85554:             "\xe0\x41\xe0\x34\x7d\x6e\x66\xe0\x13\xe0\x33\xe0\x42"
        !          85555:             "\xe0\x40\xf1\x11\xe0\x52\x57\x71\x43\x53\x51\x23\x93"
        !          85556:             "\x3f\x11\x13\xb3\x2f\x14\xd3\x1f\x44\xd4\xf1\x13\xd3"
        !          85557:             "\x10\xf1\x23\xb3\x20\x33\x93\x83\x53\xc7\x7e" }  },
        !          85558:       /* --- pixel bitmap for wncyr325 char#99 ts --- */
        !          85559:       {  99,104618,                     /* character number, location */
        !          85560:          19, 1,   -4, 1,      /* topleft row,col, and botleft row,col */
        !          85561:           { 24,   23, 3,42, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          85562:             "\x0b\x1b\x10\xfe\x43\x93\x50\x43\x93\x94\x74\x5e\x09"
        !          85563:             "\xe0\x64\xe0\x73\xe0\x82\xe0\x92" }  },
        !          85564:       /* --- pixel bitmap for wncyr325 char#100 d --- */
        !          85565:       { 100,105678,                     /* character number, location */
        !          85566:          19, 0,   -4, 0,      /* topleft row,col, and botleft row,col */
        !          85567:           { 27,   23, 3,96, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          85568:             "\x7e\x05\x10\xf1\xb2\x63\x50\xf3\xb1\x73\x50\xf1\xa2"
        !          85569:             "\x73\x50\xf1\xa1\x83\x50\x92\x83\x50\xf1\x91\x93\x50"
        !          85570:             "\x82\x93\xd1\xa3\xc2\xa3\xb3\x94\x7e\x0a\x33\xe0\x34"
        !          85571:             "\x32\xe0\x53\x22\xe0\x72\x21\xe0\x92" }  },
        !          85572:       /* --- pixel bitmap for wncyr325 char#101 e --- */
        !          85573:       { 101,97671,                      /* character number, location */
        !          85574:          19, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          85575:           { 18,   19, 3,61, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          85576:             "\x76\xa2\x53\x63\x73\x20\xf1\x23\x93\x10\x13\xa4\x13"
        !          85577:             "\xb7\xbe\x07\x0f\x24\xe0\xf1\x13\xe0\xf1\x23\xc1\x42"
        !          85578:             "\xa1\x63\x62\x97\x4f" }  },
        !          85579:       /* --- pixel bitmap for wncyr325 char#102 f --- */
        !          85580:       { 102,98318,                      /* character number, location */
        !          85581:          30, 3,  -11, 3,      /* topleft row,col, and botleft row,col */
        !          85582:           { 24,   41, 3,133, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          85583:             "\xf1\x91\x41\x90\xf1\xa1\x21\xa0\xa4\xa0\xf5\xb2\xb0"
        !          85584:             "\x54\x22\x24\x83\x31\x12\x11\x33\x30\xf1\x23\x54\x53"
        !          85585:             "\x20\xf1\x13\x72\x73\x1f\x64\x72\x74\xf1\x13\x72\x73"
        !          85586:             "\x10\xf1\x23\x54\x53\x20\x33\x31\x12\x11\x33\x84\x22"
        !          85587:             "\x24\x50\xf5\xb2\xb0\xa4\xa0\xf1\xa1\x21\xa0\xf1\x91"
        !          85588:             "\x41\x90" }  },
        !          85589:       /* --- pixel bitmap for wncyr325 char#103 g --- */
        !          85590:       { 103,106934,                     /* character number, location */
        !          85591:          19, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          85592:           { 18,   19, 3,29, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          85593:             "\x0e\x03\x43\x92\x43\xa1\x43\xa2\xf1\x33\xb1\xfb\x33"
        !          85594:             "\xca\x80" }  },
        !          85595:       /* --- pixel bitmap for wncyr325 char#104 kh --- */
        !          85596:       { 104,108090,                     /* character number, location */
        !          85597:          19, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          85598:           { 21,   19, 3,78, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          85599:             "\x0a\x28\x45\x54\x84\x53\xa3\x52\xc3\x41\xd4\x21\xe0"
        !          85600:             "\x13\x12\x80\xf1\x84\x90\x93\xe0\x44\xe0\x21\x14\xe1"
        !          85601:             "\x33\xd2\x43\xc1\x54\xa1\x74\x82\x83\x65\x65\x38\x49" }  },
        !          85602:       /* --- pixel bitmap for wncyr325 char#105 i --- */
        !          85603:       { 105,109420,                     /* character number, location */
        !          85604:          19, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          85605:           { 22,   19, 3,98, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          85606:             "\x09\x49\x33\xa3\x63\x94\x30\xf1\x33\x85\x30\x33\x72"
        !          85607:             "\x13\x63\x62\x23\x63\x61\x33\x63\x52\x33\x63\x42\x43"
        !          85608:             "\x63\x32\x53\x63\x31\x63\x63\x22\x63\x63\x12\x73\x30"
        !          85609:             "\xf1\x35\x83\x30\x34\x93\x63\xa3\x39\x49" }  },
        !          85610:       /* --- pixel bitmap for wncyr325 char#106 j --- */
        !          85611:       { 106,99317,                      /* character number, location */
        !          85612:          31,-2,   -9,-2,      /* topleft row,col, and botleft row,col */
        !          85613:           { 12,   40, 3,45, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          85614:             "\x83\x10\xf2\x75\x83\x10\xf6\xc0\x57\x84\xfe\x93\xf5"
        !          85615:             "\x93\x12\x67\x52\x14\x42\x32\x42\x56\x41" }  },
        !          85616:       /* --- pixel bitmap for wncyr325 char#107 k --- */
        !          85617:       { 107,128130,                     /* character number, location */
        !          85618:          19, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          85619:           { 20,   19, 3,81, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          85620:             "\x0a\x63\x43\xa4\x33\x91\x21\x43\x91\x73\x81\x83\x72"
        !          85621:             "\x83\x62\x93\x33\xb8\xc3\x35\x93\x64\x73\x73\x40\xf1"
        !          85622:             "\x33\x83\x30\xf1\x33\x83\x21\x33\x92\x21\x33\x9e\x01"
        !          85623:             "\x63\x13" }  },
        !          85624:       /* --- pixel bitmap for wncyr325 char#108 l --- */
        !          85625:       { 108,110384,                     /* character number, location */
        !          85626:          19, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          85627:           { 21,   19, 3,48, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          85628:             "\x4e\x03\xf1\x72\x63\x30\xf8\x71\x73\x30\xf1\x62\x73"
        !          85629:             "\x3f\x13\x31\x83\x33\x22\x83\x36\x93\x44\x79" }  },
        !          85630:       /* --- pixel bitmap for wncyr325 char#109 m --- */
        !          85631:       { 109,111799,                     /* character number, location */
        !          85632:          19, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          85633:           { 27,   19, 3,92, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          85634:             "\x07\xc8\x34\xc4\x40\xf2\x31\x13\xa1\x13\x40\xf1\x31"
        !          85635:             "\x23\x81\x23\x40\xf1\x31\x33\x61\x33\x40\xf2\x31\x43"
        !          85636:             "\x41\x43\x40\xf1\x31\x53\x21\x53\x40\xf2\x31\x64\x63"
        !          85637:             "\x40\x23\x62\x73\x48\x32\x3b" }  },
        !          85638:       /* --- pixel bitmap for wncyr325 char#110 n --- */
        !          85639:       { 110,113160,                     /* character number, location */
        !          85640:          19, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          85641:           { 23,   19, 3,28, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          85642:             "\x0b\x1b\xf7\x43\x93\x40\x4e\x01\x40\xf7\x43\x93\x4b"
        !          85643:             "\x1b" }  },
        !          85644:       /* --- pixel bitmap for wncyr325 char#111 o --- */
        !          85645:       { 111,100098,                     /* character number, location */
        !          85646:          19, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          85647:           { 21,   19, 3,59, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          85648:             "\x77\xc3\x53\x83\x93\x30\xf1\x23\xb3\x20\xf1\x13\xd3"
        !          85649:             "\x1f\x44\xd4\xf1\x13\xd3\x10\xf1\x23\xb3\x20\x33\x93"
        !          85650:             "\x83\x53\xc7\x72" }  },
        !          85651:       /* --- pixel bitmap for wncyr325 char#112 p --- */
        !          85652:       { 112,114368,                     /* character number, location */
        !          85653:          19, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          85654:           { 23,   19, 3,26, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          85655:             "\x0e\x09\x44\x74\x40\xfe\x43\x93\x40\x43\x93\x4b\x1b" }  },
        !          85656:       /* --- pixel bitmap for wncyr325 char#113 ch --- */
        !          85657:       { 113,115523,                     /* character number, location */
        !          85658:          19, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          85659:           { 22,   19, 3,38, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          85660:             "\x09\x49\xf7\x33\xa3\x30\x43\x84\x84\x33\x13\x97\x33"
        !          85661:             "\x30\xf5\xe0\x23\x30\xd9" }  },
        !          85662:       /* --- pixel bitmap for wncyr325 char#114 r --- */
        !          85663:       { 114,101290,                     /* character number, location */
        !          85664:          19, 3,   -9, 3,      /* topleft row,col, and botleft row,col */
        !          85665:           { 21,   28, 3,75, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          85666:             "\x06\x36\x93\x12\x53\x74\x83\x63\xa3\x20\xf1\x33\xa4"
        !          85667:             "\x10\xf5\x33\xb4\x33\xb3\x43\xa4\x43\xa3\x54\x84\x54"
        !          85668:             "\x83\x63\x12\x43\x83\x35\x70\xf7\x33\xe0\x19\xc2" }  },
        !          85669:       /* --- pixel bitmap for wncyr325 char#115 s --- */
        !          85670:       { 115,102203,                     /* character number, location */
        !          85671:          19, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          85672:           { 17,   19, 3,47, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          85673:             "\x68\x73\x62\x53\x64\x33\x74\x24\x82\x33\xdf\x64\xd0"
        !          85674:             "\x13\xe4\xb1\x23\xb1\x33\x91\x53\x62\x87\x44" }  },
        !          85675:       /* --- pixel bitmap for wncyr325 char#116 t --- */
        !          85676:       { 116,116694,                     /* character number, location */
        !          85677:          19, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          85678:           { 20,   19, 3,41, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          85679:             "\x1e\x04\x22\x63\x52\x21\x73\x61\x12\x73\x62\x0f\x11"
        !          85680:             "\x83\x71\xfa\x93\x80\x85\xbd\x31" }  },
        !          85681:       /* --- pixel bitmap for wncyr325 char#117 u --- */
        !          85682:       { 117,103375,                     /* character number, location */
        !          85683:          19, 2,   -9, 2,      /* topleft row,col, and botleft row,col */
        !          85684:           { 22,   28, 3,111, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          85685:             "\x09\x67\x34\xa3\x53\xb2\x30\xf1\x43\xa1\x40\xf1\x53"
        !          85686:             "\x81\x50\x54\x62\x50\xf1\x63\x61\x60\xf1\x73\x41\x70"
        !          85687:             "\xf1\x83\x21\x80\x86\x80\xf1\x94\x90\xf1\xa2\xa0\xf1"
        !          85688:             "\xa1\xb0\xf1\x91\xc4\x42\xc4\x41\xd4\x31\xe0\x12\x31"
        !          85689:             "\xe0\x34\xe0\x22" }  },
        !          85690:       /* --- pixel bitmap for wncyr325 char#118 v --- */
        !          85691:       { 118,118090,                     /* character number, location */
        !          85692:          19, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          85693:           { 18,   19, 3,57, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          85694:             "\x0e\x73\x63\x63\x73\x20\xf3\x33\x74\x10\x33\x64\x53"
        !          85695:             "\x54\x6c\x63\x74\x43\x83\x10\xf3\x33\x84\x33\x74\x43"
        !          85696:             "\x64\x2e\x40" }  },
        !          85697:       /* --- pixel bitmap for wncyr325 char#119 shch --- */
        !          85698:       { 119,119691,                     /* character number, location */
        !          85699:          19, 2,   -4, 2,      /* topleft row,col, and botleft row,col */
        !          85700:           { 33,   23, 2,26, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          85701:             "\x00\x09\x02\x09\x02\x09\x02\x00\xff\x10\x03\x03\x08"
        !          85702:             "\x03\x08\x03\x05\x1f\x1e\x03\x1f\x03\x1f\x02\x20\x02" }  },
        !          85703:       /* --- pixel bitmap for wncyr325 char#120 sh --- */
        !          85704:       { 120,121306,                     /* character number, location */
        !          85705:          19, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          85706:           { 31,   19, 3,30, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          85707:             "\x09\x29\x29\xfe\x33\x83\x83\x30\xf1\x33\x83\x83\x3e"
        !          85708:             "\x0e\x03" }  },
        !          85709:       /* --- pixel bitmap for wncyr325 char#121 y --- */
        !          85710:       { 121,122998,                     /* character number, location */
        !          85711:          19, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          85712:           { 28,   19, 3,58, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          85713:             "\x09\x9a\xf7\x33\xe0\x23\x30\x3c\x73\x63\x74\x53\x63"
        !          85714:             "\x83\x53\x30\xf3\x33\x84\x43\x30\x33\x74\x53\x63\x64"
        !          85715:             "\x63\x3e\x4a" }  },
        !          85716:       /* --- pixel bitmap for wncyr325 char#122 z --- */
        !          85717:       { 122,124106,                     /* character number, location */
        !          85718:          20, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          85719:           { 16,   21, 3,65, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          85720:             "\x11\x36\x64\x53\x42\x83\x20\xf1\x11\x94\x10\xb4\xc3"
        !          85721:             "\xc3\xb4\x87\xe0\x13\xe3\xe3\x10\xf2\xc4\x01\xb5\xb3"
        !          85722:             "\x12\x93\x24\x63\x31\x37\x51" }  },
        !          85723:       /* --- pixel bitmap for wncyr325 char#123 (noname) --- */
        !          85724:       { 123,65095,                      /* character number, location */
        !          85725:          12, 1,   11, 1,      /* topleft row,col, and botleft row,col */
        !          85726:           { 23,    1, 3, 4, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          85727:             "\x0e\x09" }  },
        !          85728:       /* --- pixel bitmap for wncyr325 char#124 (noname) --- */
        !          85729:       { 124,65981,                      /* character number, location */
        !          85730:          12, 2,   11, 2,      /* topleft row,col, and botleft row,col */
        !          85731:           { 46,    1, 2, 2, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          85732:             "\x00\x2e" }  },
        !          85733:       /* --- pixel bitmap for wncyr325 char#125 N0 --- */
        !          85734:       { 125,67005,                      /* character number, location */
        !          85735:          31, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          85736:           { 37,   31, 3,241, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          85737:             "\x28\xc3\xe0\x45\xa1\x13\xe0\x35\xa6\xe0\x21\x14\x81"
        !          85738:             "\x15\xe0\x21\x14\x81\x23\xe0\x31\x23\x81\x31\xe0\x41"
        !          85739:             "\x24\x71\xe0\x81\x33\x71\xe0\x81\x34\x61\x85\x91\x34"
        !          85740:             "\x61\x72\x23\x81\x44\x51\x72\x32\x81\x44\x51\x63\x32"
        !          85741:             "\x20\xf1\x61\x54\x41\x63\x33\x10\xf1\x61\x64\x31\x63"
        !          85742:             "\x33\x10\xf1\x61\x74\x21\x72\x32\x20\x61\x83\x21\x82"
        !          85743:             "\x12\x91\x84\x11\xa1\xb1\x84\x11\xe0\x20\xf1\x61\x95"
        !          85744:             "\xe0\x20\x61\xa4\x5b\x61\xa4\xe0\x81\xb3\xe0\x34\x11"
        !          85745:             "\xb3\xe0\x25\x11\xc2\xe0\x26\xd2\xe0\x35\xe1\xe0\x43"
        !          85746:             "\xe0\x11\xe0\x24" }  },
        !          85747:       /* --- pixel bitmap for wncyr325 char#126 \cprime --- */
        !          85748:       { 126,125498,                     /* character number, location */
        !          85749:          19, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          85750:           { 18,   19, 3,39, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          85751:             "\x09\x90\xf7\x33\xc0\x3c\x63\x74\x43\x83\x10\xf3\x33"
        !          85752:             "\x84\x33\x74\x43\x64\x2e\x43" }  },
        !          85753:       /* --- pixel bitmap for wncyr325 char#127 \cdprime --- */
        !          85754:       { 127,127034,                     /* character number, location */
        !          85755:          19, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          85756:           { 24,   19, 3,53, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          85757:             "\x0e\xa3\x63\xc2\x73\xcf\x21\x83\xc0\xf2\x93\xc0\x9c"
        !          85758:             "\xc3\x74\xa3\x83\x10\xf3\x93\x84\x93\x74\xa3\x64\x8e"
        !          85759:             "\x42" }  },
        !          85760:       /* --- trailer  --- */
        !          85761:       { -99, -999,  0,0,0,0, { 0,0,0,0, (pixbyte *)"\0" }  }
        !          85762:    } ;
        !          85763: 
        !          85764: 
        !          85765: /* --- size=9 for .450gf ---
        !          85766:  * mf '\mode=preview; mag=magstep(-9.62468787106292402266); input wncyr10'
        !          85767:  * --------------------------------------------------------------------- */
        !          85768: /* --- fontdef for wncyr450 --- */
        !          85769: static	chardef  wncyr450[] =
        !          85770:    {
        !          85771:       /* --- pixel bitmap for wncyr450 char#0 Nj --- */
        !          85772:       {   0,71901,                      /* character number, location */
        !          85773:          43, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          85774:           { 63,   43, 3,225, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          85775:             "\xf1\x0e\x04\x7e\x05\xe0\x50\x58\xe0\x47\xe0\xb0\xfe"
        !          85776:             "\x66\xe0\x56\xe0\xc0\xf1\x66\xe0\x56\xe0\xc0\x6e\x0e"
        !          85777:             "\x0e\x05\xe0\x2e\x0e\x03\xe5\xd6\xe0\x56\xe0\x25\xb6"
        !          85778:             "\xe0\x56\xe0\x35\xa6\xe0\x56\xe0\x45\x96\xe0\x56\xe0"
        !          85779:             "\x55\x86\xe0\x56\xe0\x56\x76\xe0\x56\xe0\x65\x10\xf5"
        !          85780:             "\x66\xe0\x56\xe0\x66\x66\xe0\x56\xe0\x65\x10\xf1\x66"
        !          85781:             "\xe0\x56\xe0\x56\x10\x66\xe0\x56\xe0\x46\x86\xe0\x56"
        !          85782:             "\xe0\x45\x96\xe0\x56\xe0\x35\x98\xe0\x47\xe6\x5e\x04"
        !          85783:             "\x7e\x0e\x03\x7e\x04\x7e\x0e\x01\x90" }  },
        !          85784:       /* --- pixel bitmap for wncyr450 char#1 Lj --- */
        !          85785:       {   1,73113,                      /* character number, location */
        !          85786:          43, 5,    0, 5,      /* topleft row,col, and botleft row,col */
        !          85787:           { 61,   43, 3,271, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          85788:             "\xf1\x9e\x0e\x07\xe0\x30\xe5\xc8\xe0\x80\xfe\xe0\x13"
        !          85789:             "\xe6\xe0\x90\xf1\xe0\x13\xe6\xe0\x90\xe0\x13\xee\x06"
        !          85790:             "\xe0\x93\xe0\x16\xc5\xe0\x63\xe0\x16\xe4\xe0\x53\xe0"
        !          85791:             "\x16\xe0\x15\xe0\x33\xe0\x16\xe0\x16\xe0\x23\xe0\x16"
        !          85792:             "\xe0\x25\xe0\x23\xe0\x16\xe0\x26\xe0\x13\xe0\x16\xe0"
        !          85793:             "\x35\xe0\x13\xe0\x16\xe0\x36\xe2\xe0\x26\xe0\x36\xf2"
        !          85794:             "\xd3\xe0\x26\xe0\x36\x14\x83\xe0\x26\xe0\x3c\x63\xe0"
        !          85795:             "\x36\xe0\x3d\x53\xe0\x36\xe0\x35\x17\x43\xe0\x46\xe0"
        !          85796:             "\x26\x16\x53\xe0\x46\xe0\x25\x25\x53\xe0\x56\xe0\x15"
        !          85797:             "\x43\x54\xe0\x56\xe6\x4b\xe0\x58\xc5\x79\xe0\x1e\x0e"
        !          85798:             "\x01\xa5\xe0\x3e\x0d\x80" }  },
        !          85799:       /* --- pixel bitmap for wncyr450 char#2 Dzh --- */
        !          85800:       {   2,74432,                      /* character number, location */
        !          85801:          43, 4,  -10, 4,      /* topleft row,col, and botleft row,col */
        !          85802:           { 43,   53, 2,33, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          85803:             "\xff\x01\x00\x12\x07\x12\x05\x08\x11\x08\x05\x00\xff"
        !          85804:             "\x24\x06\x06\x13\x06\x06\x00\x05\x08\x11\x08\x05\xff"
        !          85805:             "\x01\x2b\xff\x09\x13\x06\x12" }  },
        !          85806:       /* --- pixel bitmap for wncyr450 char#3 \`E --- */
        !          85807:       {   3,75598,                      /* character number, location */
        !          85808:          44, 5,   -1, 5,      /* topleft row,col, and botleft row,col */
        !          85809:           { 39,   45, 3,275, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          85810:             "\x01\xc8\xe0\x42\x8e\x01\xe3\x54\x87\xc4\x23\xe6\xa4"
        !          85811:             "\x13\xe0\x35\x96\xe0\x65\x85\xe0\x85\x75\xe0\x95\x64"
        !          85812:             "\xe0\xb5\x5f\x13\xe0\xd5\x43\xe0\xe5\x32\xe0\xe0\x16"
        !          85813:             "\x22\xe0\xe0\x25\x22\xe0\xe0\x26\xe0\xe0\x56\xe0\x82"
        !          85814:             "\x96\xe0\x4a\x65\xe0\x2e\x01\x36\xee\x03\x26\xd8\x74"
        !          85815:             "\x16\xb7\xd8\x11\x86\xe0\x27\x1e\xe0\x46\x2c\xe0\x56"
        !          85816:             "\x49\xe0\x66\x65\xe0\x86\xe0\xe0\x55\x10\xf2\xe0\xe0"
        !          85817:             "\x46\x12\xe0\xe0\x25\x22\xe0\xe0\x16\x22\xe0\xe0\x15"
        !          85818:             "\x32\xe0\xe5\x52\xe0\xd5\x52\xe0\xc5\x72\xe0\xa5\x83"
        !          85819:             "\xe0\x85\xa3\xe0\x65\xc3\xe0\x45\xe0\x13\xe6\xe0\x35"
        !          85820:             "\x87\xe0\x7e\x02\xe0\xc9\xe0\x40" }  },
        !          85821:       /* --- pixel bitmap for wncyr450 char#4 \=I --- */
        !          85822:       {   4,85956,                      /* character number, location */
        !          85823:          43, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          85824:           { 18,   43, 3,36, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          85825:             "\xf1\x0e\x04\x58\x50\xfe\x66\x60\xfe\x66\x60\xf6\x66"
        !          85826:             "\x60\x58\x5f\x1e\x04" }  },
        !          85827:       /* --- pixel bitmap for wncyr450 char#5 \=E --- */
        !          85828:       {   5,76751,                      /* character number, location */
        !          85829:          44, 5,   -1, 5,      /* topleft row,col, and botleft row,col */
        !          85830:           { 39,   45, 3,273, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          85831:             "\xe0\x48\xc1\xee\x01\x82\xc7\x84\x53\xa6\xe3\x24\x95"
        !          85832:             "\xe0\x33\x14\x85\xe0\x66\x75\xe0\x85\x65\xe0\x95\x55"
        !          85833:             "\xe0\xb4\xf1\x45\xe0\xd3\x35\xe0\xe3\x26\xe0\xe0\x12"
        !          85834:             "\x25\xe0\xe0\x22\x16\xe0\xe0\x22\x16\xe0\xe0\x56\x92"
        !          85835:             "\xe0\x85\x6a\xe0\x36\x3e\x01\xe0\x16\x2e\x03\xe6\x14"
        !          85836:             "\x78\xd8\xd7\xb7\xe0\x26\x81\x16\xe0\x4e\x16\xe0\x5c"
        !          85837:             "\x26\xe0\x69\x46\xe0\x85\x75\xe0\xe0\x50\xf2\x16\xe0"
        !          85838:             "\xe0\x40\x25\xe0\xe0\x22\x26\xe0\xe0\x12\x35\xe0\xe0"
        !          85839:             "\x12\x45\xe0\xe2\x45\xe0\xd2\x65\xe0\xc2\x75\xe0\xa2"
        !          85840:             "\x95\xe0\x83\xa5\xe0\x63\xc5\xe0\x43\xe6\xe3\xe0\x47"
        !          85841:             "\x85\xe0\x7e\x02\xe0\xd9\xc0" }  },
        !          85842:       /* --- pixel bitmap for wncyr450 char#6 Dj --- */
        !          85843:       {   6,87234,                      /* character number, location */
        !          85844:          43, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          85845:           { 50,   43, 3,225, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          85846:             "\xf1\x1e\x0e\x0d\x80\x15\xc6\xd5\x93\xe6\xe0\x13\x8f"
        !          85847:             "\x13\xe0\x16\xe0\x23\x7f\x12\xe0\x26\xe0\x32\x70\xf7"
        !          85848:             "\xe0\x46\xe0\xc0\xe0\x46\x98\xe0\xd6\x64\x73\xe0\xa6"
        !          85849:             "\x42\xc3\xe0\x96\x22\xe0\x13\xe0\x86\x12\xe0\x24\xe0"
        !          85850:             "\x78\xe0\x44\xe0\x67\xe0\x54\xe0\x66\xe0\x65\x10\xf1"
        !          85851:             "\xe0\x46\xe0\x74\x10\xf6\xe0\x46\xe0\x75\xf1\xe0\x46"
        !          85852:             "\xe0\x74\x10\xe0\x46\x84\x85\x10\xf1\xe0\x46\x76\x74"
        !          85853:             "\x20\xe0\x46\x76\x64\xe0\x76\x76\x63\xe0\x78\x74\x63"
        !          85854:             "\xee\x07\x33\x53\xe0\x1e\x07\x56\x94" }  },
        !          85855:       /* --- pixel bitmap for wncyr450 char#7 \'C --- */
        !          85856:       {   7,88761,                      /* character number, location */
        !          85857:          43, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          85858:           { 45,   43, 3,162, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          85859:             "\xf1\x2e\x0e\x08\x70\x15\x96\xc5\x83\xb6\xe3\x83\xb6"
        !          85860:             "\xe0\x13\x72\xc6\xe0\x13\x72\xc6\xe0\x22\x62\xd6\xe0"
        !          85861:             "\x22\x60\xf6\xe0\x16\xe0\xa0\xe0\x16\x68\xe0\xb6\x42"
        !          85862:             "\x64\xe0\x96\x31\xa3\xe0\x86\x21\xb4\xe0\x76\x11\xc4"
        !          85863:             "\xe0\x76\x11\xd4\x50\xf1\xe0\x17\xe4\x50\xfe\xe0\x16"
        !          85864:             "\xe0\x14\x50\xf1\xe0\x16\xe0\x14\x50\xe8\xd6\x40\xf1"
        !          85865:             "\x9e\x03\x5e" }  },
        !          85866:       /* --- pixel bitmap for wncyr450 char#8 nj --- */
        !          85867:       {   8,134898,                     /* character number, location */
        !          85868:          27, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          85869:           { 43,   27, 3,95, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          85870:             "\xf1\x0e\x3e\xc0\x46\xb5\xe0\x30\xf8\x54\xd4\xe0\x30"
        !          85871:             "\x5e\x0e\x02\xde\x0e\x06\x94\xd4\xa4\x84\xd4\xb4\x74"
        !          85872:             "\xd4\xc4\x10\xf4\x54\xd4\xc5\xf1\x54\xd4\xb5\x10\x46"
        !          85873:             "\xb5\xa5\x2e\x3e\x08\x4e\x3e\x06\x60" }  },
        !          85874:       /* --- pixel bitmap for wncyr450 char#9 lj --- */
        !          85875:       {   9,136028,                     /* character number, location */
        !          85876:          27, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          85877:           { 42,   27, 3,127, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          85878:             "\xf1\x6e\x0b\xb0\xa4\x76\xe0\x10\xf8\xb3\x84\xe0\x20"
        !          85879:             "\xb3\x8d\xe0\x43\x8e\x02\xe0\x12\x94\x95\xc3\x94\xa5"
        !          85880:             "\xb3\x94\xb4\x34\x43\x94\xb5\x16\x33\x94\xb5\x0f\x17"
        !          85881:             "\x33\x94\xb5\x16\x23\xa4\xb5\x15\x33\xa4\xb4\x24\x43"
        !          85882:             "\xa4\xa5\x39\xa6\x85\x57\x7e\x08\x84\x8e\x05\x63" }  },
        !          85883:       /* --- pixel bitmap for wncyr450 char#10 dzh --- */
        !          85884:       {  10,137291,                     /* character number, location */
        !          85885:          27, 2,   -8, 2,      /* topleft row,col, and botleft row,col */
        !          85886:           { 30,   35, 3,39, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          85887:             "\xf1\x0e\x2e\xfe\x54\xc4\x50\xf6\x54\xc4\x50\x55\xa5"
        !          85888:             "\x5f\x1e\x0e\x02\xf7\xd4\xd0" }  },
        !          85889:       /* --- pixel bitmap for wncyr450 char#11 \`e --- */
        !          85890:       {  11,138389,                     /* character number, location */
        !          85891:          28, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          85892:           { 27,   29, 3,133, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          85893:             "\x01\x78\xb2\x4c\x93\x14\x66\x76\xb4\x64\xe5\x43\xe0"
        !          85894:             "\x25\x33\xe0\x34\x32\xe0\x54\x2f\x12\xe0\x55\x10\xb7"
        !          85895:             "\x44\xba\x25\x9c\x15\x79\x38\x12\x28\x86\x1a\xb5\x28"
        !          85896:             "\xc5\x44\xe5\xe0\x84\x1f\x12\xe0\x55\x12\xe0\x54\x32"
        !          85897:             "\xe0\x34\x42\xe0\x25\x52\xe5\x72\xc4\xa3\x76\xcd\xe0"
        !          85898:             "\x38\xb4" }  },
        !          85899:       /* --- pixel bitmap for wncyr450 char#12 \=\i --- */
        !          85900:       {  12,92921,                      /* character number, location */
        !          85901:          43, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          85902:           { 13,   43, 3,58, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          85903:             "\x44\x50\xf1\x36\x40\x37\x30\xf1\x36\x40\x44\x50\xf7"
        !          85904:             "\xd0\x54\x4f\x19\x40\x45\x40\xfe\x54\x40\xf5\x54\x40"
        !          85905:             "\x45\x4f\x1d" }  },
        !          85906:       /* --- pixel bitmap for wncyr450 char#13 \=e --- */
        !          85907:       {  13,139480,                     /* character number, location */
        !          85908:          28, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          85909:           { 27,   29, 3,133, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          85910:             "\xb8\x71\x9c\x42\x76\x64\x13\x64\xb6\x45\xe4\x35\xe0"
        !          85911:             "\x23\x34\xe0\x33\x24\xe0\x52\xf1\x15\xe0\x52\x14\x47"
        !          85912:             "\xb5\x2a\xa5\x1c\x98\x39\x76\x88\x22\x15\xba\x15\xc8"
        !          85913:             "\x25\xe4\x54\xe0\x80\xf1\x15\xe0\x52\x24\xe0\x52\x34"
        !          85914:             "\xe0\x32\x45\xe0\x22\x55\xe2\x84\xc2\xa6\x73\xdd\xe0"
        !          85915:             "\x28\x84" }  },
        !          85916:       /* --- pixel bitmap for wncyr450 char#14 dj --- */
        !          85917:       {  14,93993,                      /* character number, location */
        !          85918:          43, 5,  -12, 5,      /* topleft row,col, and botleft row,col */
        !          85919:           { 32,   55, 3,203, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          85920:             "\x74\xe0\x70\xf1\x29\xe0\x70\x65\xe0\x70\xf2\x74\xe0"
        !          85921:             "\x7f\x1e\x0e\x02\x20\xf5\x74\xe0\x70\x74\x56\xe0\x34"
        !          85922:             "\x3b\xe4\x23\x64\xd4\x12\xa4\xb6\xc4\xa5\xe3\xa5\xe0"
        !          85923:             "\x13\x94\xe0\x24\x10\xf1\x74\xe0\x33\x10\xf7\x74\xe0"
        !          85924:             "\x34\xf2\x74\xe0\x33\x10\xf1\x74\xe0\x24\x10\xf1\x74"
        !          85925:             "\xe0\x23\x20\x66\xe3\x5e\xa3\x5e\x94\xe0\xe3\x40\xf1"
        !          85926:             "\xe0\xa3\x50\xe0\x93\x60\xf1\xe0\x83\x70\xe0\x73\xe0"
        !          85927:             "\xd4\xe0\xd3\xe0\xc5\xe0\x97\xe0\xb4\xe0\x34" }  },
        !          85928:       /* --- pixel bitmap for wncyr450 char#15 \'c --- */
        !          85929:       {  15,95215,                      /* character number, location */
        !          85930:          43, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          85931:           { 37,   43, 3,130, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          85932:             "\x74\xe0\xc0\xf1\x29\xe0\xc0\x65\xe0\xc0\xf2\x74\xe0"
        !          85933:             "\xcf\x1e\x0e\x02\x70\xf5\x74\xe0\xc0\x74\x78\xe0\x44"
        !          85934:             "\x52\x73\xe0\x24\x41\xa4\xe4\x22\xc3\xe4\x21\xd4\xd4"
        !          85935:             "\x11\xe0\x13\x60\xf1\x75\xe0\x24\x50\xfe\x74\xe0\x34"
        !          85936:             "\x50\xf1\x74\xe0\x34\x50\x66\xe0\x16\x40\xf1\x2e\x7e" }  },
        !          85937:       /* --- pixel bitmap for wncyr450 char#16 Yu --- */
        !          85938:       {  16,78063,                      /* character number, location */
        !          85939:          44, 5,   -1, 5,      /* topleft row,col, and botleft row,col */
        !          85940:           { 66,   45, 3,333, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          85941:             "\xe0\xe0\xd8\xe0\x3e\x05\xe0\x54\x64\xee\x05\xe0\x24"
        !          85942:             "\xc4\xe0\x37\xe0\x74\xe4\xe0\x26\xe0\x64\xe0\x44\xe6"
        !          85943:             "\xe0\x54\xe0\x64\xd6\xe0\x44\xe0\x84\xc6\xe0\x35\xe0"
        !          85944:             "\x85\xb6\xe0\x34\xe0\xa4\xb6\xe0\x25\xe0\xa5\x40\xf1"
        !          85945:             "\x66\xe0\x15\xe0\xc5\x30\xf1\x66\xe5\xe0\xe5\x20\xf1"
        !          85946:             "\x66\xd6\xe0\xe6\x10\xf1\x66\xd5\xe0\xe0\x25\x10\xf3"
        !          85947:             "\x66\xc6\xe0\xe0\x26\xf1\x6e\x0a\xe0\xe0\x26\xf3\x66"
        !          85948:             "\xc6\xe0\xe0\x26\xf2\x66\xd6\xe0\xe6\x10\x66\xe5\xe0"
        !          85949:             "\xe5\x86\xe6\xe0\xc6\x20\xf1\x66\xe0\x15\xe0\xc5\x30"
        !          85950:             "\x66\xe0\x25\xe0\xa5\xa6\xe0\x34\xe0\xa4\xb6\xe0\x35"
        !          85951:             "\xe0\x85\xb6\xe0\x45\xe0\x65\xc6\xe0\x55\xe0\x45\xd6"
        !          85952:             "\xe0\x65\xe0\x25\xe7\xe0\x74\xe4\xae\x05\xe0\x24\xc4"
        !          85953:             "\xbe\x05\xe0\x45\x65\xe0\xe0\xe0\xc8\xe0\x30" }  },
        !          85954:       /* --- pixel bitmap for wncyr450 char#17 Zh --- */
        !          85955:       {  17,70233,                      /* character number, location */
        !          85956:          44, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          85957:           { 66,   45, 3,415, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          85958:             "\x43\xe0\xe0\xe0\xa3\x66\xe0\x2e\x04\xe0\x26\x38\xe0"
        !          85959:             "\x1e\x04\xe0\x18\x26\x12\xe0\x58\xe0\x52\x16\x10\xf1"
        !          85960:             "\x16\x21\xe0\x66\xe0\x61\x26\x10\x24\x41\xe0\x56\xe0"
        !          85961:             "\x51\x44\xc1\xe0\x56\xe0\x51\xe0\x62\xe0\x46\xe0\x42"
        !          85962:             "\xa0\xf1\xb1\xe0\x46\xe0\x41\xb0\xc1\xe0\x36\xe0\x31"
        !          85963:             "\xe0\xa2\xe0\x26\xe0\x22\xe0\xb1\xe0\x26\xe0\x21\xe0"
        !          85964:             "\xd1\xe0\x16\xe0\x11\xe0\xe0\x12\xd6\xd2\xe0\xe0\x32"
        !          85965:             "\xc6\xc2\xe0\xe0\x54\x96\x94\xe0\xe0\x86\x56\x56\xe0"
        !          85966:             "\xe0\xce\x0a\xe0\xe0\xe0\x2e\x06\xe0\xe0\xe6\x48\x46"
        !          85967:             "\xe0\xe0\x75\x96\x95\xe0\xe0\x25\xb6\xb5\xe0\xd4\xd6"
        !          85968:             "\xd4\xe0\xb4\xe6\xe4\xe0\x94\xe0\x16\xe0\x14\xb0\xf1"
        !          85969:             "\xa4\xe0\x26\xe0\x24\xa0\xf4\x94\xe0\x36\xe0\x34\x9f"
        !          85970:             "\x22\x74\xe0\x36\xe0\x34\x72\x0f\x12\x73\xe0\x46\xe0"
        !          85971:             "\x43\x72\x03\x54\xe0\x46\xe0\x44\x53\x12\x53\xe0\x56"
        !          85972:             "\xe0\x53\x52\x23\x34\xe0\x48\xe0\x44\x33\x29\xee\x04"
        !          85973:             "\xe9\x37\xe0\x1e\x04\xe0\x17\x55\xe0\xe0\xe0\x85\x30" }  },
        !          85974:       /* --- pixel bitmap for wncyr450 char#18 \u I --- */
        !          85975:       {  18,79824,                      /* character number, location */
        !          85976:          59, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          85977:           { 46,   59, 3,358, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          85978:             "\xa3\xe0\x63\xe0\x55\xe0\x45\x90\xf3\x87\xe0\x27\x80"
        !          85979:             "\x95\xe0\x45\xe0\x42\xe0\xa2\xe0\x52\xe0\x82\xe0\x73"
        !          85980:             "\xe0\x43\xe0\xae\x06\xe0\xee\x02\xe0\x10\xf3\xe0\xe0"
        !          85981:             "\xe0\x4f\x1e\x04\xae\x04\x58\xe0\x68\x50\xf1\x66\xe0"
        !          85982:             "\x77\x60\x66\xe0\x68\x60\xf1\x66\xe0\x59\x60\x66\xe0"
        !          85983:             "\x43\x16\xc6\xe0\x34\x16\xc6\xe0\x33\x26\xc6\xe0\x23"
        !          85984:             "\x36\xc6\xe0\x14\x36\xc6\xe0\x13\x46\xc6\xe3\x56\xc6"
        !          85985:             "\xd4\x56\xc6\xd3\x66\xc6\xc3\x76\xc6\xb4\x76\xc6\xb3"
        !          85986:             "\x86\xc6\xa3\x96\xc6\x94\x96\xc6\x93\xa6\xc6\x83\xb6"
        !          85987:             "\xc6\x74\xb6\xc6\x73\xc6\xc6\x63\xd6\xc6\x54\xd6\xc6"
        !          85988:             "\x53\xe6\xc6\x43\xe0\x16\xc6\x34\xe0\x16\xc6\x33\xe0"
        !          85989:             "\x26\xc6\x23\xe0\x36\xc6\x14\xe0\x36\xc6\x13\xe0\x46"
        !          85990:             "\x60\xf1\x69\xe0\x56\x60\x68\xe0\x66\x60\xf1\x67\xe0"
        !          85991:             "\x76\x60\x58\xe0\x68\x5f\x1e\x04\xae\x04" }  },
        !          85992:       /* --- pixel bitmap for wncyr450 char#19 \"E --- */
        !          85993:       {  19,90371,                      /* character number, location */
        !          85994:          57, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          85995:           { 39,   57, 3,237, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          85996:             "\xb3\xa3\xe0\x85\x86\xa0\xf2\x97\x67\xa0\xa5\x86\xe0"
        !          85997:             "\x73\xa3\xc0\xf6\xe0\xe0\xbf\x1e\x0e\x07\x40\x57\xe0"
        !          85998:             "\x27\xa6\xe0\x45\xa6\xe0\x64\x30\xf1\x66\xe0\x73\x30"
        !          85999:             "\xf3\x66\xe0\x82\x30\xf1\x66\xe0\x92\x20\x66\xc2\x92"
        !          86000:             "\x20\xf2\x66\xc2\xd0\xf1\x66\xb3\xd0\x66\x95\xd0\xf1"
        !          86001:             "\x6e\x06\xd0\x66\x95\xd0\xf1\x66\xb3\xd0\xf1\x66\xc2"
        !          86002:             "\xd0\xf1\x66\xc2\xb2\x66\xe0\xb2\xf2\x66\xe0\xa2\x10"
        !          86003:             "\xf1\x66\xe0\x93\x10\x66\xe0\x92\x86\xe0\x83\x86\xe0"
        !          86004:             "\x74\x86\xe0\x65\x86\xe0\x56\x77\xe0\x28\x3f\x1e\x0e"
        !          86005:             "\x08\x33" }  },
        !          86006:       /* --- pixel bitmap for wncyr450 char#20 (noname) --- */
        !          86007:       {  20,81061,                      /* character number, location */
        !          86008:          44, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          86009:           { 46,   45, 3,279, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          86010:             "\xe0\xe0\xb4\x3e\x03\xe0\x77\x1e\x03\xe0\x63\x24\x58"
        !          86011:             "\xe0\x93\x25\xf1\x66\xe0\xa2\x35\xf1\x76\xe0\x82\x45"
        !          86012:             "\x76\xe0\x72\xa0\xf1\x86\xe0\x62\xa0\x86\xe0\x52\xe0"
        !          86013:             "\x66\xe0\x42\xb0\xf1\x96\xe0\x32\xc0\xa6\xe0\x22\xc0"
        !          86014:             "\xf1\xa6\xe0\x12\xd0\xf1\xb6\xd2\xe0\xb7\xc2\xe0\xf1"
        !          86015:             "\xc6\xb2\xe0\x10\xc7\x92\xe0\x20\xf1\xd6\x92\xe0\x20"
        !          86016:             "\xd7\x72\xe0\xe0\x36\x72\xe0\xe0\x36\x62\xe0\xe0\x47"
        !          86017:             "\x52\xe0\xe0\x56\x52\xe0\xe0\x56\x42\xe0\xe0\x67\x32"
        !          86018:             "\xe0\x50\xf1\xe0\x26\x22\xe0\x60\xe0\x27\x12\xe0\x60"
        !          86019:             "\xf1\xe0\x38\xe0\x70\xf2\xe0\x46\xe0\x80\xf1\xe0\x54"
        !          86020:             "\xe0\x90\xe0\x53\xe0\xe0\xe0\x22\xe0\xa6" }  },
        !          86021:       /* --- pixel bitmap for wncyr450 char#21 (noname) --- */
        !          86022:       {  21,82379,                      /* character number, location */
        !          86023:          44, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          86024:           { 47,   45, 3,249, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          86025:             "\xe0\x67\xe0\xe0\xa3\x53\xe0\xe0\x63\x93\xe0\xe0\x33"
        !          86026:             "\xb3\xe0\xe0\x13\xd3\xe0\xd4\xd4\xe0\xb4\xe0\x14\xe0"
        !          86027:             "\x95\xe0\x15\xe0\x84\xe0\x34\xe0\x75\xe0\x35\xe0\x64"
        !          86028:             "\xe0\x54\xa0\xf1\x95\xe0\x55\x90\xf1\x86\xe0\x56\x80"
        !          86029:             "\xf1\x85\xe0\x75\x80\xf2\x76\xe0\x76\x7f\x4e\x0e\x0e"
        !          86030:             "\x05\x0f\x22\x56\xe0\x76\x52\xf1\x85\xe0\x75\x80\xf1"
        !          86031:             "\x86\xe0\x56\x80\xf2\x95\xe0\x55\x90\xa5\xe0\x35\xe0"
        !          86032:             "\x74\xe0\x34\xe0\x85\xe0\x15\xe0\x94\xe0\x14\xe0\xb4"
        !          86033:             "\xd4\xe0\xd3\xd3\xe0\xe0\x13\xb3\xe0\xe0\x33\x93\xe0"
        !          86034:             "\xe0\x63\x53\xe0\xe0\xa7\xe0\x66" }  },
        !          86035:       /* --- pixel bitmap for wncyr450 char#22 \Dz --- */
        !          86036:       {  22,83613,                      /* character number, location */
        !          86037:          44, 5,   -1, 5,      /* topleft row,col, and botleft row,col */
        !          86038:           { 28,   45, 3,201, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          86039:             "\x97\xa1\x7d\x62\x64\x75\x33\x53\xc3\x23\x43\xe0\x16"
        !          86040:             "\x33\xe0\x35\x24\xe0\x44\x23\xe0\x54\x23\xe0\x63\x1f"
        !          86041:             "\x14\xe0\x63\x1f\x14\xe0\x72\x15\xe0\x62\x16\xe0\x95"
        !          86042:             "\xe0\x97\xe0\x7a\xe0\x5d\xe0\x2e\x02\xde\x03\xce\x04"
        !          86043:             "\xbe\x04\xce\x03\xe0\x1e\xe0\x4a\xe0\x78\xe0\x86\xe0"
        !          86044:             "\x96\xf1\xe0\x95\x0f\x32\xe0\x84\x03\xe0\x77\xe0\x73"
        !          86045:             "\x13\xe0\x64\x14\xe0\x53\x25\xe0\x34\x26\xe0\x23\x33"
        !          86046:             "\x23\xd3\x43\x35\x84\x52\x6d\x71\xa8\x90" }  },
        !          86047:       /* --- pixel bitmap for wncyr450 char#23 Ya --- */
        !          86048:       {  23,85087,                      /* character number, location */
        !          86049:          43, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
        !          86050:           { 45,   44, 3,233, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          86051:             "\xe0\x6e\x0b\xe0\x3e\x0e\xe0\x16\xc7\xe0\x45\xe0\x16"
        !          86052:             "\xe0\x45\xe0\x26\xe0\x35\xe0\x36\xe0\x25\xe0\x46\xe0"
        !          86053:             "\x16\xe0\x46\xe0\x15\xe0\x56\x60\xf4\x86\xe0\x56\x60"
        !          86054:             "\x95\xe0\x56\xe0\x16\xe0\x46\xe0\x25\xe0\x46\xe0\x35"
        !          86055:             "\xe0\x36\xe0\x45\xe0\x26\xe0\x65\xe6\xe0\x85\xc6\xe0"
        !          86056:             "\xce\x05\xe0\x86\xb6\xe0\x66\xd6\xe0\x55\xe0\x16\xe0"
        !          86057:             "\x45\xe0\x26\xe0\x36\xe0\x26\x60\xf9\xa6\xe0\x36\x62"
        !          86058:             "\x86\xe0\x36\x6f\x12\x85\xe0\x46\x60\x12\x65\xe0\x48"
        !          86059:             "\x62\x64\xee\x04\x22\x44\xe0\x1e\x04\x37\xe0\xe0\x70" }  },
        !          86060:       /* --- pixel bitmap for wncyr450 char#24 yu --- */
        !          86061:       {  24,140756,                     /* character number, location */
        !          86062:          28, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          86063:           { 45,   29, 3,179, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          86064:             "\xe0\xd7\xbe\xa4\x54\x8e\x84\x94\xa5\xc4\xb4\xa4\xb4"
        !          86065:             "\xd4\x94\xa4\xe0\x14\x30\xf1\x54\x94\xe0\x34\x20\x54"
        !          86066:             "\x85\xe0\x35\x10\xf1\x54\x84\xe0\x54\x10\xf2\x54\x75"
        !          86067:             "\xe0\x55\xf1\x5e\x02\xe0\x55\xf1\x54\x75\xe0\x55\x54"
        !          86068:             "\x84\xe0\x54\x10\xf1\x54\x85\xe0\x35\x10\x54\x94\xe0"
        !          86069:             "\x34\x74\x95\xe0\x15\x74\xa4\xe0\x14\x84\xb4\xd4\x85"
        !          86070:             "\xc4\xb4\x5e\x84\x94\x6e\xa4\x54\xe0\xe0\x77\xb1" }  },
        !          86071:       /* --- pixel bitmap for wncyr450 char#25 zh --- */
        !          86072:       {  25,133362,                     /* character number, location */
        !          86073:          27, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          86074:           { 44,   27, 3,175, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          86075:             "\x32\xae\xa2\x54\x9e\x94\x36\xd4\xd6\x24\x11\xd4\xd1"
        !          86076:             "\x14\x32\x22\xc4\xc2\x22\x91\xc4\xc1\xe2\xb4\xb2\xe0"
        !          86077:             "\x11\xb4\xb1\xe0\x31\xa4\xa1\xe0\x52\x84\x82\xe0\x75"
        !          86078:             "\x44\x45\xe0\xae\x04\xe0\xbe\x06\xe0\x76\x54\x56\xe0"
        !          86079:             "\x34\x84\x84\xe0\x14\x94\x94\xd4\xa4\xa4\x60\xf3\x54"
        !          86080:             "\xb4\xb4\x5f\x12\x34\xb4\xb4\x32\x03\x23\xc4\xc3\x23"
        !          86081:             "\x17\xc4\xc7\x26\x8e\x86\x34\x9e\x94\x20" }  },
        !          86082:       /* --- pixel bitmap for wncyr450 char#26 \u\i --- */
        !          86083:       {  26,142447,                     /* character number, location */
        !          86084:          42, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          86085:           { 33,   42, 3,192, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          86086:             "\x93\x93\xe0\x35\x75\x80\xf2\x77\x57\x70\x76\x76\xe0"
        !          86087:             "\x14\x94\xe0\x22\xd2\xe0\x33\x93\xe0\x5d\xe0\x89\xc0"
        !          86088:             "\xf3\xe0\xe0\x5f\x1e\x5e\x46\xd6\x94\xe5\xa4\xd6\xa4"
        !          86089:             "\xc7\xa4\xb3\x14\xa4\xb2\x24\xa4\xa2\x34\xa4\x93\x34"
        !          86090:             "\xa4\x83\x44\xa4\x82\x54\xa4\x72\x64\xa4\x63\x64\xa4"
        !          86091:             "\x62\x74\xa4\x52\x84\xa4\x43\x84\xa4\x33\x94\xa4\x32"
        !          86092:             "\xa4\xa4\x22\xb4\xa4\x13\xb4\xa7\xc4\xa6\xd4\xa5\xe4"
        !          86093:             "\x96\xd6\x4f\x1e\x5e" }  },
        !          86094:       /* --- pixel bitmap for wncyr450 char#27 \"e --- */
        !          86095:       {  27,96148,                      /* character number, location */
        !          86096:          42, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          86097:           { 25,   43, 3,155, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          86098:             "\x45\x94\x67\x76\x20\xf1\x37\x67\x20\x37\x76\x65\x94"
        !          86099:             "\x30\xf6\xe0\xb0\xa7\xe0\x23\x53\xc3\x93\x93\xb3\x73"
        !          86100:             "\xc4\x54\xd3\x20\xf1\x24\xe4\x10\x15\xe0\x13\x10\xf1"
        !          86101:             "\x14\xe0\x24\x0f\x15\xe0\x24\x0e\x0b\x0f\x45\xe0\x60"
        !          86102:             "\xf1\x14\xe0\x60\x15\xe0\x74\xe0\x32\x33\xe0\x32\x34"
        !          86103:             "\xe0\x12\x54\xe2\x63\xd2\x93\x93\xb4\x53\xe0\x27\x71" }  },
        !          86104:       /* --- pixel bitmap for wncyr450 char#28 (noname) --- */
        !          86105:       {  28,143592,                     /* character number, location */
        !          86106:          27, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          86107:           { 29,   28, 3,119, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          86108:             "\x0c\xc3\x2c\xb5\x46\xd3\x13\x44\xe2\x14\x54\xc3\x14"
        !          86109:             "\x54\xc2\x24\x54\xc2\xb5\xa2\x70\xf1\x64\xa2\x70\x65"
        !          86110:             "\x82\xe0\x14\x82\x80\xf1\x74\x72\x90\x84\x62\x90\xf1"
        !          86111:             "\x84\x52\xa0\xf2\x94\x32\xb0\xf1\xa4\x12\xc0\xa6\xd0"
        !          86112:             "\xf1\xb5\xd0\xb4\xe0\xf1\xc3\xe2" }  },
        !          86113:       /* --- pixel bitmap for wncyr450 char#29 (noname) --- */
        !          86114:       {  29,144846,                     /* character number, location */
        !          86115:          28, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          86116:           { 32,   29, 3,129, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          86117:             "\xd6\xe0\xa3\x43\xe0\x73\x63\xe0\x53\x83\xe0\x34\x84"
        !          86118:             "\x80\xf1\x74\xa4\x70\x65\xa5\x60\xf1\x64\xc4\x60\xf2"
        !          86119:             "\x55\xc5\x5f\x2e\x0e\x04\x0f\x12\x35\xc5\x32\x55\xc5"
        !          86120:             "\x50\xf1\x64\xc4\x60\x65\xa5\x60\xf1\x74\xa4\x70\x84"
        !          86121:             "\x84\xe0\x33\x83\xe0\x53\x63\xe0\x73\x43\xe0\xa6\xd4" }  },
        !          86122:       /* --- pixel bitmap for wncyr450 char#30 \dz --- */
        !          86123:       {  30,146042,                     /* character number, location */
        !          86124:          28, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          86125:           { 20,   29, 3,95, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          86126:             "\x66\x51\x6a\x22\x53\x66\x42\xa4\x33\xb3\x23\xc3\x2f"
        !          86127:             "\x23\xd2\x24\xe0\x34\xe0\x28\xdb\xad\x8d\xab\xe7\xe0"
        !          86128:             "\x24\x10\xf1\xe0\x24\x0f\x22\xe0\x13\x03\xe2\x13\xd3"
        !          86129:             "\x15\xa3\x27\x73\x32\x2c\x41\x67\x61" }  },
        !          86130:       /* --- pixel bitmap for wncyr450 char#31 ya --- */
        !          86131:       {  31,147456,                     /* character number, location */
        !          86132:          27, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
        !          86133:           { 31,   28, 3,111, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          86134:             "\xce\x05\xae\x07\x85\x95\xb4\xb4\xb5\xb4\x50\xf3\x55"
        !          86135:             "\xc4\x50\x64\xc4\xb5\xb4\xc5\xa4\xe4\x94\xe0\x3e\xe0"
        !          86136:             "\x23\x84\xe0\x13\x94\xe3\xa4\x50\xf2\x84\xa4\x50\xf2"
        !          86137:             "\x75\xa4\x52\x55\xa4\x52\x45\xa6\x51\x45\x6e\x12\x25"
        !          86138:             "\x7e\x26\xe0\x93" }  },
        !          86139:       /* --- pixel bitmap for wncyr450 char#32 \cyddot --- */
        !          86140:       {  32,60943,                      /* character number, location */
        !          86141:          43, 7,   36, 7,      /* topleft row,col, and botleft row,col */
        !          86142:           { 20,    7, 3,23, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          86143:             "\x23\xa3\x36\x66\x1f\x27\x67\x16\x66\x33\xa3\x24" }  },
        !          86144:       /* --- pixel bitmap for wncyr450 char#33 (noname) --- */
        !          86145:       {  33,38456,                      /* character number, location */
        !          86146:          44, 7,    0, 7,      /* topleft row,col, and botleft row,col */
        !          86147:           {  7,   44, 3,41, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          86148:             "\x23\x35\x1f\x67\xfa\x15\x10\xf9\x23\x20\x32\x20\xf5"
        !          86149:             "\x70\x23\x35\x1f\x27\x15\x33\x20" }  },
        !          86150:       /* --- pixel bitmap for wncyr450 char#34 (noname) --- */
        !          86151:       {  34,61876,                      /* character number, location */
        !          86152:          43, 3,   24, 3,      /* topleft row,col, and botleft row,col */
        !          86153:           { 20,   19, 3,73, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          86154:             "\x23\x93\x45\x75\x27\x57\x1f\x18\x48\x15\x11\x55\x11"
        !          86155:             "\x23\x21\x63\x21\xf2\x71\xb1\xf2\x61\xb1\x10\xf1\x51"
        !          86156:             "\xb1\x20\x41\xb1\x61\xb1\x61\xb1\x61\xb1\x65" }  },
        !          86157:       /* --- pixel bitmap for wncyr450 char#35 (noname) --- */
        !          86158:       {  35,92044,                      /* character number, location */
        !          86159:          47, 5,    0, 5,      /* topleft row,col, and botleft row,col */
        !          86160:           { 45,   47, 3,211, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          86161:             "\xf1\x6e\x04\xe0\x70\xb8\xe0\xc0\xf3\xc6\xe0\xd0\xf1"
        !          86162:             "\x1e\x0e\x09\x70\x14\x76\xe0\x15\x73\x96\xe0\x33\x73"
        !          86163:             "\x96\xe0\x43\x62\xa6\xe0\x43\x6f\x12\xa6\xe0\x52\x60"
        !          86164:             "\xf6\xc6\xe0\xd0\xce\x09\xe0\x86\xe0\x15\xe0\x56\xe0"
        !          86165:             "\x35\xe0\x36\xe0\x45\xe0\x26\xe0\x55\xe0\x16\xe0\x56"
        !          86166:             "\xe6\xe0\x65\xe6\xe0\x66\xd6\xe0\x75\x10\xf6\xc6\xe0"
        !          86167:             "\x76\xf1\xc6\xe0\x66\x10\xf1\xc6\xe0\x56\x20\xc6\xe0"
        !          86168:             "\x46\xe0\x16\xe0\x27\xe0\x17\xe7\xce\x0e\x04\xde\x0e"
        !          86169:             "\x01\xa6" }  },
        !          86170:       /* --- pixel bitmap for wncyr450 char#36 (noname) --- */
        !          86171:       {  36,62686,                      /* character number, location */
        !          86172:          41, 2,   31, 2,      /* topleft row,col, and botleft row,col */
        !          86173:           { 27,   10, 3,37, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          86174:             "\x15\xe0\x15\x1f\x37\xd7\x15\xe0\x15\x22\xe0\x72\x34"
        !          86175:             "\xe0\x14\x6e\x05\xbd\x71" }  },
        !          86176:       /* --- pixel bitmap for wncyr450 char#37 (noname) --- */
        !          86177:       {  37,39739,                      /* character number, location */
        !          86178:          47, 5,   -3, 5,      /* topleft row,col, and botleft row,col */
        !          86179:           { 46,   50, 3,371, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          86180:             "\x75\xe0\xd2\xa3\x32\xe0\xb3\x92\x71\xe0\x94\x83\x82"
        !          86181:             "\xe0\x64\x83\x93\xe0\x35\x93\xa1\x12\xe1\x14\x84\xa2"
        !          86182:             "\x24\x64\x14\x93\xb2\x66\x44\xa3\xc1\xe0\x23\xa4\xc2"
        !          86183:             "\xe4\xa4\xc2\xd4\xb4\xc2\xd3\xc4\xc2\xc4\xc4\xc2\xb4"
        !          86184:             "\xd4\xc2\xb3\xe4\xc2\xa4\xe4\xc2\x94\xe0\x23\xc1\x94"
        !          86185:             "\xe0\x33\xb2\x93\xe0\x44\xa2\x84\xe0\x53\xa1\x84\xe0"
        !          86186:             "\x63\x92\x83\xe0\x83\x81\x84\xe0\x92\x71\x84\xe0\xb3"
        !          86187:             "\x32\x84\xe0\xe5\x93\xb5\xe0\xc4\x93\x41\xe0\xa4\x92"
        !          86188:             "\x71\xe0\x93\x93\x81\xe0\x74\x83\x92\xe0\x54\x93\xa2"
        !          86189:             "\xe0\x43\x94\xa2\xe0\x34\x93\xb2\xe0\x24\xa3\xc2\xe4"
        !          86190:             "\xa4\xc2\xe3\xb4\xc2\xd4\xb4\xc2\xc4\xc4\xc2\xc3\xd4"
        !          86191:             "\xc2\xb4\xd4\xc2\xa4\xe4\xc2\xa3\xe0\x23\xc2\x94\xe0"
        !          86192:             "\x23\xb2\x94\xe0\x34\xa2\x84\xe0\x53\xa2\x83\xe0\x63"
        !          86193:             "\x92\x84\xe0\x73\x81\x84\xe0\x92\x71\x93\xe0\xb3\x41"
        !          86194:             "\xb2\xe0\xd5\x60" }  },
        !          86195:       /* --- pixel bitmap for wncyr450 char#38 (noname) --- */
        !          86196:       {  38,63325,                      /* character number, location */
        !          86197:          43,14,   32,14,      /* topleft row,col, and botleft row,col */
        !          86198:           { 12,   11, 3,23, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          86199:             "\x93\x84\x75\x65\x65\x65\x65\x64\x74\x74\x91\xa2" }  },
        !          86200:       /* --- pixel bitmap for wncyr450 char#39 (noname) --- */
        !          86201:       {  39,40645,                      /* character number, location */
        !          86202:          43, 7,   24, 7,      /* topleft row,col, and botleft row,col */
        !          86203:           {  8,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          86204:             "\x1c\x3e\x7f\xff\xff\xbe\x9c\x80\x80\x80\x40\x40\x40"
        !          86205:             "\x20\x20\x10\x08\x04\x02" }  },
        !          86206:       /* --- pixel bitmap for wncyr450 char#40 (noname) --- */
        !          86207:       {  40,41289,                      /* character number, location */
        !          86208:          47, 7,  -16, 7,      /* topleft row,col, and botleft row,col */
        !          86209:           { 15,   63, 3,106, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          86210:             "\xe1\xd1\xd1\xd1\xd1\xd2\xc2\xc2\xc3\xc2\xc3\xc2\xc3"
        !          86211:             "\xc2\x90\xf1\x33\x90\xf3\x23\xa0\xf4\x13\xbf\xc4\xb0"
        !          86212:             "\xf4\x13\xb0\xf3\x23\xa0\xf1\x33\x90\x42\xd3\xd2\xd3"
        !          86213:             "\xd2\xd3\xd2\xe2\xe2\xe1\xe0\x11\xe0\x11\xe0\x11\xe0"
        !          86214:             "\x11" }  },
        !          86215:       /* --- pixel bitmap for wncyr450 char#41 (noname) --- */
        !          86216:       {  41,42018,                      /* character number, location */
        !          86217:          47, 5,  -16, 5,      /* topleft row,col, and botleft row,col */
        !          86218:           { 15,   63, 3,107, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          86219:             "\x01\xe0\x11\xe0\x11\xe0\x11\xe0\x11\xe2\xe2\xe2\xd3"
        !          86220:             "\xd2\xd3\xd2\xd3\xd2\x40\xf1\x93\x30\xf3\xa3\x20\xf4"
        !          86221:             "\xb3\x10\xfc\xb4\xf4\xb3\x10\xf3\xa3\x20\xf1\x93\x30"
        !          86222:             "\x92\xc3\xc2\xc3\xc2\xc3\xc2\xc2\xc2\xd1\xd1\xd1\xd1"
        !          86223:             "\xd1\xe2" }  },
        !          86224:       /* --- pixel bitmap for wncyr450 char#42 (noname) --- */
        !          86225:       {  42,42771,                      /* character number, location */
        !          86226:          47, 5,   20, 5,      /* topleft row,col, and botleft row,col */
        !          86227:           { 24,   27, 3,115, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          86228:             "\xb2\xe0\x83\xa0\xf3\xb2\xb0\x12\x82\x82\x14\x72\x74"
        !          86229:             "\x15\x52\x55\x35\x42\x45\x74\x22\x24\xc3\x12\x13\xe0"
        !          86230:             "\x26\xe0\x62\xe0\x66\xe0\x23\x12\x13\xc4\x22\x24\x75"
        !          86231:             "\x42\x45\x35\x52\x55\x14\x72\x74\x12\x82\x82\x10\xf3"
        !          86232:             "\xb2\xb0\xb3\xe0\x72\xb4" }  },
        !          86233:       /* --- pixel bitmap for wncyr450 char#43 (noname) --- */
        !          86234:       {  43,97105,                      /* character number, location */
        !          86235:          49, 5,    0, 5,      /* topleft row,col, and botleft row,col */
        !          86236:           { 35,   49, 3,163, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          86237:             "\x42\xa2\xe0\x81\xa1\xe0\x92\x82\xe0\xa2\x62\xe0\xb3"
        !          86238:             "\x43\xe0\x50\xf1\x73\x23\xe0\x60\xf1\x86\xe0\x70\xf4"
        !          86239:             "\x94\xe0\x80\x1e\x06\xee\x08\xd0\xfa\x94\xe0\x80\x9e"
        !          86240:             "\x02\xe0\x5e\x05\xe0\x24\xb6\xe4\xd5\xd4\xe5\xc4\xe0"
        !          86241:             "\x15\x20\xf1\x94\xe0\x25\x10\xf5\x94\xe0\x35\xf1\x94"
        !          86242:             "\xe0\x25\x10\x94\xe0\x15\xb4\xe6\xb4\xd6\xb5\xb6\x9e"
        !          86243:             "\x0b\xae\x08\x90" }  },
        !          86244:       /* --- pixel bitmap for wncyr450 char#44 (noname) --- */
        !          86245:       {  44,43468,                      /* character number, location */
        !          86246:           7, 7,  -12, 7,      /* topleft row,col, and botleft row,col */
        !          86247:           {  8,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          86248:             "\x1c\x3e\x7f\xff\xff\xbe\x9c\x80\x80\x80\x40\x40\x40"
        !          86249:             "\x20\x20\x10\x08\x04\x02" }  },
        !          86250:       /* --- pixel bitmap for wncyr450 char#45 (noname) --- */
        !          86251:       {  45,44055,                      /* character number, location */
        !          86252:          15, 2,   12, 2,      /* topleft row,col, and botleft row,col */
        !          86253:           { 17,    3, 3, 6, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          86254:             "\xf2\x0e\x03" }  },
        !          86255:       /* --- pixel bitmap for wncyr450 char#46 (noname) --- */
        !          86256:       {  46,44554,                      /* character number, location */
        !          86257:           7, 7,    0, 7,      /* topleft row,col, and botleft row,col */
        !          86258:           {  7,    7, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          86259:             "\x1c\xdf\xff\xff\xf7\x71\x00" }  },
        !          86260:       /* --- pixel bitmap for wncyr450 char#47 (noname) --- */
        !          86261:       {  47,45110,                      /* character number, location */
        !          86262:          47, 5,  -16, 5,      /* topleft row,col, and botleft row,col */
        !          86263:           { 24,   63, 3,257, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          86264:             "\xe0\x82\xe0\x73\xe0\x64\xf1\xe0\x63\x10\xe0\x54\x10"
        !          86265:             "\xf1\xe0\x53\x20\xe0\x44\x20\xf1\xe0\x43\x30\xe0\x34"
        !          86266:             "\x30\xf1\xe0\x33\x40\xe0\x24\x40\xf1\xe0\x23\x50\xe0"
        !          86267:             "\x14\x50\xf1\xe0\x13\x60\xe4\xe0\x63\xe0\x64\x70\xf1"
        !          86268:             "\xd3\x80\xc4\x80\xf1\xc3\x90\xb4\x90\xf1\xb3\xa0\xa4"
        !          86269:             "\xa0\xf1\xa3\xb0\x94\xb0\xf1\x93\xc0\x84\xc0\xf1\x83"
        !          86270:             "\xd0\x74\xe0\x63\xe0\x64\xe0\xf1\x63\xe0\x10\x54\xe0"
        !          86271:             "\x10\xf1\x53\xe0\x20\x44\xe0\x20\xf1\x43\xe0\x30\x34"
        !          86272:             "\xe0\x30\xf1\x33\xe0\x40\x24\xe0\x40\xf1\x23\xe0\x50"
        !          86273:             "\x14\xe0\x50\xf1\x13\xe0\x64\xe0\x6f\x13\xe0\x72" }  },
        !          86274:       /* --- pixel bitmap for wncyr450 char#48 (noname) --- */
        !          86275:       {  48,50607,                      /* character number, location */
        !          86276:          41, 4,   -1, 4,      /* topleft row,col, and botleft row,col */
        !          86277:           { 26,   42, 3,113, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          86278:             "\xa6\xe0\x34\x44\xd3\x83\xb3\xa3\x93\xc3\x74\xc4\x63"
        !          86279:             "\xe3\x30\xf1\x24\xe4\x20\xf3\x14\xe0\x24\x1f\xe5\xe0"
        !          86280:             "\x25\x05\xe0\x25\xf2\x14\xe0\x24\x10\x15\xe5\x10\xf1"
        !          86281:             "\x24\xe4\x20\x33\xe3\x64\xc4\x73\xc3\x93\xa3\xb3\x83"
        !          86282:             "\xd4\x44\xe0\x36\xa1" }  },
        !          86283:       /* --- pixel bitmap for wncyr450 char#49 (noname) --- */
        !          86284:       {  49,51533,                      /* character number, location */
        !          86285:          41, 7,    0, 7,      /* topleft row,col, and botleft row,col */
        !          86286:           { 21,   41, 3,46, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          86287:             "\xb2\xe0\x43\xe0\x25\xd8\x8d\x85\x35\x80\xfe\x85\x80"
        !          86288:             "\xfe\x85\x80\xf1\x85\x80\x77\x7f\x1e\x07" }  },
        !          86289:       /* --- pixel bitmap for wncyr450 char#50 (noname) --- */
        !          86290:       {  50,52598,                      /* character number, location */
        !          86291:          41, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          86292:           { 26,   41, 3,169, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          86293:             "\x97\xe0\x2d\xc3\x67\x83\xb5\x63\xd5\x52\xe0\x15\x32"
        !          86294:             "\xe0\x26\x24\xe0\x15\x16\xed\xd6\x0f\x27\xe5\x15\xe6"
        !          86295:             "\xe0\x66\xf1\xe0\x65\x10\xf1\xe0\x55\x20\xe0\x45\xe0"
        !          86296:             "\x74\xe0\x74\xe0\x74\xe0\x74\xe0\x74\xe0\x83\xe0\x83"
        !          86297:             "\xe0\x82\xe0\x92\xe0\x92\xe0\x92\xd2\x82\xe2\x72\xe0"
        !          86298:             "\x12\x62\xe0\x12\x61\xe0\x32\x51\xe0\x33\x4e\x08\x3e"
        !          86299:             "\x09\x2e\x09\x2f\x1e\x0a\x20" }  },
        !          86300:       /* --- pixel bitmap for wncyr450 char#51 (noname) --- */
        !          86301:       {  51,53746,                      /* character number, location */
        !          86302:          41, 4,   -1, 4,      /* topleft row,col, and botleft row,col */
        !          86303:           { 26,   42, 3,167, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          86304:             "\x98\xe0\x1e\xa5\x75\x83\xc4\x63\xd5\x54\xd5\x36\xc6"
        !          86305:             "\x27\xb6\x10\xf1\x17\xc5\x10\x25\xc6\x43\xd6\x10\xf1"
        !          86306:             "\xe0\x55\x20\xe0\x45\xe0\x74\xe0\x74\xe0\x73\xe0\x73"
        !          86307:             "\xe0\x39\xe0\xa4\xe0\xa4\xe0\x94\xe0\x94\xe0\x85\xe0"
        !          86308:             "\x76\xe0\x75\x10\xf1\xe0\x66\x24\xe6\x16\xd6\x0f\x18"
        !          86309:             "\xc6\x08\xc5\x18\xb6\x17\xc5\x35\xd5\x42\xe5\x63\xb5"
        !          86310:             "\x84\x76\xbd\xe0\x18\xaa" }  },
        !          86311:       /* --- pixel bitmap for wncyr450 char#52 (noname) --- */
        !          86312:       {  52,54790,                      /* character number, location */
        !          86313:          42, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          86314:           { 28,   42, 3,166, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          86315:             "\xe0\x62\x60\xf1\xe0\x53\x60\xe0\x44\xe0\x95\x60\xf1"
        !          86316:             "\xe0\x26\x60\xe0\x17\xe0\x62\x15\xe0\x61\x25\xe0\x52"
        !          86317:             "\x25\xe0\x42\x35\xe0\x41\x45\xe0\x32\x45\xe0\x22\x55"
        !          86318:             "\xe0\x12\x65\xe0\x11\x75\xe2\x75\xd2\x85\xd1\x95\xc2"
        !          86319:             "\x95\xb2\xa5\xb1\xb5\xa2\xb5\x92\xc5\x82\xd5\x81\xe5"
        !          86320:             "\x72\xe5\x62\xe0\x15\x6f\x1e\x0e\xf7\xe0\x35\x60\xe0"
        !          86321:             "\x27\x50\xf1\xbe\x03" }  },
        !          86322:       /* --- pixel bitmap for wncyr450 char#53 (noname) --- */
        !          86323:       {  53,55946,                      /* character number, location */
        !          86324:          41, 4,   -1, 4,      /* topleft row,col, and botleft row,col */
        !          86325:           { 26,   42, 3,151, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          86326:             "\x32\xe0\x22\x66\x94\x7e\x04\x8e\x03\x9e\x02\xae\xc2"
        !          86327:             "\x36\xc0\xf7\x32\xe0\x70\x32\x57\xc2\x32\x63\xa2\x21"
        !          86328:             "\x94\x82\x11\xb4\x73\xd4\x62\xe5\xe0\x75\x20\xf2\xe0"
        !          86329:             "\x65\x10\xf1\xe0\x66\x31\xe0\x26\x15\xec\xe6\x0f\x17"
        !          86330:             "\xd6\x06\xe5\x15\xe0\x15\x10\xf1\x12\xe0\x25\x20\x22"
        !          86331:             "\xe5\x53\xd4\x73\xb4\xa4\x65\xcc\xe0\x28\xa5" }  },
        !          86332:       /* --- pixel bitmap for wncyr450 char#54 (noname) --- */
        !          86333:       {  54,56966,                      /* character number, location */
        !          86334:          41, 4,   -1, 4,      /* topleft row,col, and botleft row,col */
        !          86335:           { 26,   42, 3,165, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          86336:             "\xd7\xe0\x3b\xd4\x73\xb3\xb2\x93\xa5\x73\xa6\x63\xb6"
        !          86337:             "\x54\xb6\x44\xc6\x44\xd4\x20\xf1\x24\xe0\x60\x15\xe0"
        !          86338:             "\x60\xf1\x14\xe0\x70\x14\x66\x95\x42\x53\x75\x31\x93"
        !          86339:             "\x55\x21\xb3\x45\x11\xc4\x35\x11\xd4\x26\xe4\x2f\x16"
        !          86340:             "\xe0\x14\x1f\x35\xe0\x25\xf3\x14\xe0\x25\xf1\x24\xe0"
        !          86341:             "\x14\x10\x24\xe5\x43\xe4\x63\xd3\x74\xb3\x94\x93\xb4"
        !          86342:             "\x64\xeb\xe0\x37\x93" }  },
        !          86343:       /* --- pixel bitmap for wncyr450 char#55 (noname) --- */
        !          86344:       {  55,58014,                      /* character number, location */
        !          86345:          42, 5,   -1, 5,      /* topleft row,col, and botleft row,col */
        !          86346:           { 27,   43, 3,141, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          86347:             "\x22\xe0\xb4\xe0\x70\xf1\x2e\x0b\x2e\x0a\x2e\x0b\x2e"
        !          86348:             "\x0a\x33\xe0\x42\x30\xf1\x12\xe0\x42\x42\xe0\x42\x52"
        !          86349:             "\xe0\x32\x62\xe0\x22\xe0\xb2\xe0\xa2\xe0\xa2\x90\xf1"
        !          86350:             "\xe0\x12\xa0\xe2\xe0\xa3\xe0\xa2\xc0\xf1\xc3\xc0\xf1"
        !          86351:             "\xb3\xd0\xf1\xa4\xd0\x95\xd0\xf1\x94\xe0\xf3\x85\xe0"
        !          86352:             "\xf7\x76\xe0\x84\xe0\x14" }  },
        !          86353:       /* --- pixel bitmap for wncyr450 char#56 (noname) --- */
        !          86354:       {  56,59032,                      /* character number, location */
        !          86355:          41, 4,   -1, 4,      /* topleft row,col, and botleft row,col */
        !          86356:           { 26,   42, 3,183, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          86357:             "\x98\xe0\x2d\xb4\x75\x93\xc3\x72\xe0\x13\x53\xe0\x23"
        !          86358:             "\x42\xe0\x34\x10\xf2\x13\xe0\x43\x10\x14\xe0\x33\x25"
        !          86359:             "\xe0\x23\x26\xe3\x47\xc2\x59\x93\x69\x72\x9a\x42\xba"
        !          86360:             "\x12\xeb\xe0\x3b\xe0\x2b\xd2\x2b\x93\x4b\x73\x7a\x53"
        !          86361:             "\xa8\x43\xc8\x23\xe0\x16\x23\xe0\x29\xe0\x48\xe0\x54"
        !          86362:             "\x0f\x23\xe0\x63\x03\xe0\x62\x23\xe0\x52\x23\xe0\x43"
        !          86363:             "\x33\xe0\x32\x44\xe0\x12\x64\xc3\x95\x74\xbd\xe0\x28"
        !          86364:             "\x90" }  },
        !          86365:       /* --- pixel bitmap for wncyr450 char#57 (noname) --- */
        !          86366:       {  57,60072,                      /* character number, location */
        !          86367:          41, 4,   -1, 4,      /* topleft row,col, and botleft row,col */
        !          86368:           { 26,   42, 3,165, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          86369:             "\xa6\xe0\x3c\xd4\x64\xb3\xa3\x93\xc3\x73\xd4\x54\xe3"
        !          86370:             "\x45\xe4\x20\xf1\x14\xe0\x14\x2f\x35\xe0\x24\x1f\x35"
        !          86371:             "\xe0\x25\xf1\x14\xe0\x16\x24\xe6\x24\xd1\x15\x34\xc1"
        !          86372:             "\x15\x43\xb1\x25\x53\x91\x35\x73\x52\x45\x96\x64\x10"
        !          86373:             "\xf1\xe0\x74\x10\xe0\x65\x10\xf1\xe0\x64\x20\x24\xe3"
        !          86374:             "\x46\xc4\x46\xc3\x56\xb4\x56\xa4\x65\xb3\x82\xb4\xa3"
        !          86375:             "\x75\xcc\xe0\x28\xc0" }  },
        !          86376:       /* --- pixel bitmap for wncyr450 char#58 (noname) --- */
        !          86377:       {  58,45822,                      /* character number, location */
        !          86378:          27, 7,    0, 7,      /* topleft row,col, and botleft row,col */
        !          86379:           {  7,   27, 3,31, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          86380:             "\x23\x35\x1f\x27\x15\x33\x20\xfc\x70\x23\x35\x1f\x27"
        !          86381:             "\x15\x33\x23" }  },
        !          86382:       /* --- pixel bitmap for wncyr450 char#59 (noname) --- */
        !          86383:       {  59,46545,                      /* character number, location */
        !          86384:          27, 7,  -12, 7,      /* topleft row,col, and botleft row,col */
        !          86385:           {  7,   39, 3,59, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          86386:             "\x23\x35\x1f\x27\x15\x33\x20\xfc\x70\x23\x35\x16\x1f"
        !          86387:             "\x17\x16\x23\x11\xf3\x61\xf2\x51\x10\x41\x20\xf1\x31"
        !          86388:             "\x30\x21\x51\x53" }  },
        !          86389:       /* --- pixel bitmap for wncyr450 char#60 < --- */
        !          86390:       {  60,63995,                      /* character number, location */
        !          86391:          29, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          86392:           { 30,   30, 3,123, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          86393:             "\xe0\x31\xe0\xe3\xe0\xc4\xe0\xb4\xa1\xe4\x94\xb5\x95"
        !          86394:             "\xa5\x95\xa5\x86\xa5\x85\xb5\x85\xa6\x76\xa6\x76\xa6"
        !          86395:             "\x76\xa6\x67\xa6\x66\xb6\x75\xd6\x66\xd6\x67\xc6\x76"
        !          86396:             "\xc6\x76\xc6\x76\xd5\x85\xd5\x85\xd5\x86\xc5\x95\xc5"
        !          86397:             "\x95\xd4\x94\xe4\xa1\xe0\x24\xe0\xd3\xb4" }  },
        !          86398:       /* --- pixel bitmap for wncyr450 char#61 (noname) --- */
        !          86399:       {  61,97966,                      /* character number, location */
        !          86400:          28, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          86401:           { 13,   28, 3,30, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          86402:             "\x54\x4f\x19\x40\x45\x40\xfe\x54\x40\xf5\x54\x40\x45"
        !          86403:             "\x4f\x1d" }  },
        !          86404:       /* --- pixel bitmap for wncyr450 char#62 > --- */
        !          86405:       {  62,64664,                      /* character number, location */
        !          86406:          29, 5,   -1, 5,      /* topleft row,col, and botleft row,col */
        !          86407:           { 30,   30, 3,123, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          86408:             "\xc1\xe0\xe3\xe0\xd4\xe0\x21\xa4\xe4\x94\xd5\x95\xc5"
        !          86409:             "\x95\xc6\x85\xd5\x85\xd5\x85\xd6\x76\xc6\x76\xc6\x76"
        !          86410:             "\xc7\x66\xd6\x66\xd5\x76\xb6\x66\xa7\x66\xa6\x76\xa6"
        !          86411:             "\x76\xa6\x76\xa5\x85\xb5\x85\xa6\x85\xa5\x95\xa5\x95"
        !          86412:             "\xb4\x94\xe1\xa4\xe0\xb4\xe0\xc3\xe0\x24" }  },
        !          86413:       /* --- pixel bitmap for wncyr450 char#63 (noname) --- */
        !          86414:       {  63,47534,                      /* character number, location */
        !          86415:          44, 5,    0, 5,      /* topleft row,col, and botleft row,col */
        !          86416:           { 23,   44, 3,111, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          86417:             "\x79\xb3\x75\x72\xb4\x52\xd4\x32\xe0\x14\x24\xd4\x1f"
        !          86418:             "\x36\xc5\x14\xd4\xe0\x45\xe0\x44\xe0\x44\xe0\x44\xe0"
        !          86419:             "\x43\xe0\x53\xe0\x62\xe0\x63\xe0\x53\x90\xf1\xb2\xa0"
        !          86420:             "\xf8\xa2\xb0\xf5\xe0\x90\x93\xe0\x55\xa0\xf2\x77\x90"
        !          86421:             "\x85\xe0\x53\xb0" }  },
        !          86422:       /* --- pixel bitmap for wncyr450 char#64 (noname) --- */
        !          86423:       {  64,65424,                      /* character number, location */
        !          86424:          43, 8,   32, 8,      /* topleft row,col, and botleft row,col */
        !          86425:           { 18,   11, 3,37, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          86426:             "\xf2\x01\xe0\x21\x02\xe2\x11\xe1\x22\xc2\x31\xc1\x43"
        !          86427:             "\x83\x53\x63\x7a\xa6\x65" }  },
        !          86428:       /* --- pixel bitmap for wncyr450 char#65 A --- */
        !          86429:       {  65,27597,                      /* character number, location */
        !          86430:          45, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          86431:           { 45,   45, 3,242, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          86432:             "\xf2\xe0\x73\xe0\x70\xf1\xe0\x65\xe0\x60\xf2\xe0\x57"
        !          86433:             "\xe0\x50\xe0\x49\xe0\x40\xf1\xe0\x42\x16\xe0\x40\xf1"
        !          86434:             "\xe0\x32\x36\xe0\x30\xe0\x23\x37\xe0\x20\xf1\xe0\x22"
        !          86435:             "\x56\xe0\x20\xe0\x13\x57\xe0\x10\xf1\xe0\x12\x76\xe0"
        !          86436:             "\x10\xf2\xe2\x96\xe0\xf1\xd2\xb6\xd0\xc3\xb7\xc0\xf1"
        !          86437:             "\xc2\xd6\xc0\xb2\xe7\xe0\x82\xe0\x16\xe0\x8e\x09\xe0"
        !          86438:             "\x7e\x0b\xe0\x62\xe0\x36\xe0\x53\xe0\x37\x90\xf1\x92"
        !          86439:             "\xe0\x56\x90\x83\xe0\x57\x80\xf1\x82\xe0\x76\x80\xf1"
        !          86440:             "\x72\xe0\x96\x70\x63\xe0\x96\xc5\xe0\x96\xa7\xe0\x78"
        !          86441:             "\x5f\x1e\xde\x04" }  },
        !          86442:       /* --- pixel bitmap for wncyr450 char#66 B --- */
        !          86443:       {  66,29125,                      /* character number, location */
        !          86444:          43, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          86445:           { 39,   43, 3,179, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          86446:             "\xf1\x0e\x0e\x06\x50\x57\xe0\x17\xb6\xe0\x44\xb6\xe0"
        !          86447:             "\x54\x40\xf1\x66\xe0\x63\x40\xf3\x66\xe0\x72\x40\xf2"
        !          86448:             "\x66\xe0\x82\x30\xf5\x66\xe0\xd0\x6e\x09\xe0\x26\xe0"
        !          86449:             "\x15\xd6\xe0\x35\xb6\xe0\x45\xa6\xe0\x55\x96\xe0\x65"
        !          86450:             "\x86\xe0\x66\x76\xe0\x75\x10\xf5\x66\xe0\x76\x66\xe0"
        !          86451:             "\x75\x10\xf1\x66\xe0\x66\x10\x66\xe0\x56\x86\xe0\x46"
        !          86452:             "\x96\xe0\x36\x97\xe8\x5e\x0e\x04\x7e\x0e\x01\xa1" }  },
        !          86453:       /* --- pixel bitmap for wncyr450 char#67 Ts --- */
        !          86454:       {  67, 1153,                      /* character number, location */
        !          86455:          43, 4,   -4, 4,      /* topleft row,col, and botleft row,col */
        !          86456:           { 46,   47, 2,40, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          86457:             "\xff\x01\x00\x12\x07\x12\x03\x00\x05\x08\x11\x08\x08"
        !          86458:             "\x00\xff\x24\x06\x06\x13\x06\x09\x00\x05\x08\x11\x08"
        !          86459:             "\x08\xff\x01\x2b\x03\x00\x25\x06\x2a\x05\x2b\x03\x2e"
        !          86460:             "\x02" }  },
        !          86461:       /* --- pixel bitmap for wncyr450 char#68 D --- */
        !          86462:       {  68, 2307,                      /* character number, location */
        !          86463:          43, 0,   -4, 0,      /* topleft row,col, and botleft row,col */
        !          86464:           { 53,   47, 3,192, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          86465:             "\xf1\xe0\x1e\x0e\x07\x30\xe0\x75\xb8\x80\xf4\xe0\x83"
        !          86466:             "\xd6\x90\xf8\xe0\x73\xe6\x90\xf4\xe0\x63\xe0\x16\x90"
        !          86467:             "\xf3\xe0\x53\xe0\x26\x90\xf2\xe0\x43\xe0\x36\x90\xf2"
        !          86468:             "\xe0\x33\xe0\x46\x90\xf1\xe0\x23\xe0\x56\x90\xf1\xe0"
        !          86469:             "\x13\xe0\x66\x90\xf1\xe3\xe0\x76\x90\xd3\xe0\x86\xe0"
        !          86470:             "\x74\xe0\x86\xe0\x65\xe0\x69\x80\xf1\x4e\x0e\x0e\x04"
        !          86471:             "\x30\x45\xe0\xe0\x76\x73\xe0\xe0\xb5\x53\xe0\xe0\xe3"
        !          86472:             "\x42\xe0\xe0\xe0\x52" }  },
        !          86473:       /* --- pixel bitmap for wncyr450 char#69 E --- */
        !          86474:       {  69,30686,                      /* character number, location */
        !          86475:          43, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          86476:           { 39,   43, 3,199, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          86477:             "\xf1\x0e\x0e\x07\x40\x57\xe0\x27\xa6\xe0\x45\xa6\xe0"
        !          86478:             "\x64\x30\xf1\x66\xe0\x73\x30\xf3\x66\xe0\x82\x30\xf1"
        !          86479:             "\x66\xe0\x92\x20\x66\xc2\x92\x20\xf2\x66\xc2\xd0\xf1"
        !          86480:             "\x66\xb3\xd0\x66\x95\xd0\xf1\x6e\x06\xd0\x66\x95\xd0"
        !          86481:             "\xf1\x66\xb3\xd0\xf1\x66\xc2\xd0\xf1\x66\xc2\xb2\x66"
        !          86482:             "\xe0\xb2\xf2\x66\xe0\xa2\x10\xf1\x66\xe0\x93\x10\x66"
        !          86483:             "\xe0\x92\x86\xe0\x83\x86\xe0\x74\x86\xe0\x65\x86\xe0"
        !          86484:             "\x56\x77\xe0\x28\x3f\x1e\x0e\x08\x32" }  },
        !          86485:       /* --- pixel bitmap for wncyr450 char#70 F --- */
        !          86486:       {  70,31927,                      /* character number, location */
        !          86487:          43, 5,    0, 5,      /* topleft row,col, and botleft row,col */
        !          86488:           { 39,   43, 3,165, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          86489:             "\xf1\x9e\x07\x90\xf5\xe0\x27\xe0\x20\xeb\xe0\xa5\x17"
        !          86490:             "\x15\xe0\x44\x47\x44\xe5\x57\x55\xb4\x77\x74\x94\x87"
        !          86491:             "\x84\x75\x87\x85\x55\x97\x95\x36\x97\x96\x25\xa7\xa5"
        !          86492:             "\x1f\x66\xa7\xa6\x15\xa7\xa5\x26\x97\x96\x35\x97\x95"
        !          86493:             "\x55\x87\x85\x74\x87\x84\x94\x77\x74\xb5\x57\x55\xe4"
        !          86494:             "\x47\x44\xe0\x45\x17\x15\xe0\xab\xe0\xf5\xe0\x27\xe0"
        !          86495:             "\x20\xf1\x9e\x07\x93" }  },
        !          86496:       /* --- pixel bitmap for wncyr450 char#71 G --- */
        !          86497:       {  71, 3655,                      /* character number, location */
        !          86498:          43, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          86499:           { 36,   43, 3,87, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          86500:             "\xf1\x0e\x0e\x06\x20\x57\xe0\x17\x86\xe0\x44\x86\xe0"
        !          86501:             "\x54\x10\xf1\x66\xe0\x63\x10\xf3\x66\xe0\x72\x10\xf2"
        !          86502:             "\x66\xe0\x82\xfe\x66\xe0\xa0\xfa\x66\xe0\xa0\x58\xe0"
        !          86503:             "\x9f\x1e\x06\xe0\x20" }  },
        !          86504:       /* --- pixel bitmap for wncyr450 char#72 Kh --- */
        !          86505:       {  72, 4873,                      /* character number, location */
        !          86506:          43, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          86507:           { 47,   43, 3,300, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          86508:             "\xf1\x1e\x04\xae\x01\x30\x79\xe0\x18\xe0\x27\xe0\x35"
        !          86509:             "\xe0\x57\xe0\x33\xe0\x67\xe0\x23\xe0\x87\xe0\x12\xe0"
        !          86510:             "\xa7\xd2\xe0\xb7\xc3\xe0\xc7\xa3\xe0\xe7\x92\xe0\xe0"
        !          86511:             "\x26\x82\xe0\xe0\x37\x63\xe0\xe0\x47\x52\xe0\xe0\x67"
        !          86512:             "\x32\xe0\xe0\x77\x23\xe0\xe0\x8a\xe0\x60\xf1\xe0\x48"
        !          86513:             "\xe0\x70\xe0\x57\xe0\xe0\xd7\xe0\xe0\xd6\xe0\xe0\xc8"
        !          86514:             "\xe0\xe0\xaa\xe0\xe0\x92\x26\xe0\xe0\x83\x27\xe0\xe0"
        !          86515:             "\x63\x47\xe0\xe0\x52\x67\xe0\xe0\x32\x77\xe0\xe0\x23"
        !          86516:             "\x87\xe0\xe0\x12\xa7\xe0\xd2\xb7\xe0\xc3\xc7\xe0\xa3"
        !          86517:             "\xe7\xe0\x92\xe0\x26\xe0\x82\xe0\x37\xe0\x63\xe0\x47"
        !          86518:             "\xe0\x52\xe0\x67\xe0\x33\xe0\x67\xe0\x15\xe0\x77\xc8"
        !          86519:             "\xe0\x59\x6f\x1e\x02\xde\x04" }  },
        !          86520:       /* --- pixel bitmap for wncyr450 char#73 I --- */
        !          86521:       {  73, 6265,                      /* character number, location */
        !          86522:          43, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          86523:           { 46,   43, 3,278, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          86524:             "\xf1\x0e\x04\xae\x04\x58\xe0\x68\x50\xf1\x66\xe0\x77"
        !          86525:             "\x60\x66\xe0\x68\x60\xf1\x66\xe0\x59\x60\x66\xe0\x43"
        !          86526:             "\x16\xc6\xe0\x34\x16\xc6\xe0\x33\x26\xc6\xe0\x23\x36"
        !          86527:             "\xc6\xe0\x14\x36\xc6\xe0\x13\x46\xc6\xe3\x56\xc6\xd4"
        !          86528:             "\x56\xc6\xd3\x66\xc6\xc3\x76\xc6\xb4\x76\xc6\xb3\x86"
        !          86529:             "\xc6\xa3\x96\xc6\x94\x96\xc6\x93\xa6\xc6\x83\xb6\xc6"
        !          86530:             "\x74\xb6\xc6\x73\xc6\xc6\x63\xd6\xc6\x54\xd6\xc6\x53"
        !          86531:             "\xe6\xc6\x43\xe0\x16\xc6\x34\xe0\x16\xc6\x33\xe0\x26"
        !          86532:             "\xc6\x23\xe0\x36\xc6\x14\xe0\x36\xc6\x13\xe0\x46\x60"
        !          86533:             "\xf1\x69\xe0\x56\x60\x68\xe0\x66\x60\xf1\x67\xe0\x76"
        !          86534:             "\x60\x58\xe0\x68\x5f\x1e\x04\xae\x04" }  },
        !          86535:       /* --- pixel bitmap for wncyr450 char#74 J --- */
        !          86536:       {  74,32956,                      /* character number, location */
        !          86537:          43, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          86538:           { 28,   44, 3,71, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          86539:             "\xf1\x9e\x05\xe0\x28\x40\xfe\xe0\x36\x50\xfd\xe0\x36"
        !          86540:             "\x50\x24\xb6\x66\xa6\x5f\x28\x96\x58\x95\x76\x96\x75"
        !          86541:             "\xa5\x92\xb5\xb2\x95\xd3\x64\xe0\x47\xe6" }  },
        !          86542:       /* --- pixel bitmap for wncyr450 char#75 K --- */
        !          86543:       {  75,26329,                      /* character number, location */
        !          86544:          44, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          86545:           { 42,   45, 3,269, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          86546:             "\xe0\xe0\x73\x4e\x04\xe0\x26\x2e\x04\xe0\x18\x68\xe0"
        !          86547:             "\x52\x16\x10\xf1\x66\xe0\x61\x26\x10\x66\xe0\x51\x44"
        !          86548:             "\x86\xe0\x51\xe0\x26\xe0\x42\xa0\xf1\x66\xe0\x41\xb0"
        !          86549:             "\x66\xe0\x31\xe0\x46\xe0\x22\xe0\x46\xe0\x21\xe0\x56"
        !          86550:             "\xe0\x11\xe0\x66\xd2\xe0\x76\xc2\xe0\x86\x94\xe0\x96"
        !          86551:             "\x56\xe0\xbe\x01\xe0\xdd\xe0\xe0\x17\x46\xe0\xb6\x95"
        !          86552:             "\xe0\x86\xb5\xe0\x66\xd4\xe0\x56\xe4\xe0\x46\xe0\x14"
        !          86553:             "\xb0\xf1\x66\xe0\x24\xa0\xf4\x66\xe0\x34\x90\xf2\x66"
        !          86554:             "\xe0\x34\x72\xf1\x66\xe0\x43\x72\x66\xe0\x44\x53\x66"
        !          86555:             "\xe0\x53\x52\x68\xe0\x44\x33\x1e\x04\xe9\x1e\x04\xe0"
        !          86556:             "\x17\xe0\xe0\x85\x3f" }  },
        !          86557:       /* --- pixel bitmap for wncyr450 char#76 L --- */
        !          86558:       {  76, 7361,                      /* character number, location */
        !          86559:          43, 5,    0, 5,      /* topleft row,col, and botleft row,col */
        !          86560:           { 44,   43, 3,120, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          86561:             "\xf1\x9e\x0e\x07\xe5\xc8\x50\xfe\xe0\x13\xe6\x60\xf2"
        !          86562:             "\xe0\x13\xe6\x60\xf7\xe3\xe0\x16\x60\xf3\xd3\xe0\x26"
        !          86563:             "\x60\x14\x73\xe0\x36\x6f\x16\x63\xe0\x36\x6f\x16\x53"
        !          86564:             "\xe0\x46\x65\x53\xe0\x56\x73\x54\xe0\x56\x7b\xe0\x58"
        !          86565:             "\x79\xe0\x1e\x04\x45\xe0\x3e\x04" }  },
        !          86566:       /* --- pixel bitmap for wncyr450 char#77 M --- */
        !          86567:       {  77, 8852,                      /* character number, location */
        !          86568:          43, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          86569:           { 54,   43, 3,240, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          86570:             "\x0c\xe0\xe0\x2e\x0b\xe0\xed\x58\xe0\xe8\xb7\xe0\xe7"
        !          86571:             "\x60\xf1\x62\x15\xe0\xc2\x15\x60\xf2\x62\x25\xe0\xa2"
        !          86572:             "\x25\x60\xf1\x62\x35\xe0\x82\x35\x60\xf2\x62\x45\xe0"
        !          86573:             "\x62\x45\x60\xf1\x62\x55\xe0\x42\x55\x60\xf1\x62\x65"
        !          86574:             "\xe0\x22\x65\x60\xf2\x62\x75\xe2\x75\x60\xf1\x62\x85"
        !          86575:             "\xc2\x85\x60\xf2\x62\x95\xa2\x95\x60\xf1\x62\xa5\x82"
        !          86576:             "\xa5\x60\xf2\x62\xb5\x62\xb5\x60\xf1\x62\xc5\x42\xc5"
        !          86577:             "\x60\xf2\x62\xd5\x22\xd5\x60\xf1\x62\xe7\xe5\x60\x62"
        !          86578:             "\xe0\x15\xe0\x15\xb4\xe5\xe0\x15\x98\xc5\xe7\x5f\x1e"
        !          86579:             "\xa3\xae\x03" }  },
        !          86580:       /* --- pixel bitmap for wncyr450 char#78 N --- */
        !          86581:       {  78,10367,                      /* character number, location */
        !          86582:          43, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          86583:           { 43,   43, 3,84, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          86584:             "\xf1\x0e\x04\x7e\x04\x58\xe0\x38\x50\xfe\x66\xe0\x56"
        !          86585:             "\x60\xf1\x66\xe0\x56\x60\xf1\x6e\x0e\x03\x60\xfe\x66"
        !          86586:             "\xe0\x56\x60\xf2\x66\xe0\x56\x60\x58\xe0\x38\x5f\x1e"
        !          86587:             "\x04\x7e\x04" }  },
        !          86588:       /* --- pixel bitmap for wncyr450 char#79 O --- */
        !          86589:       {  79,33901,                      /* character number, location */
        !          86590:          44, 5,   -1, 5,      /* topleft row,col, and botleft row,col */
        !          86591:           { 43,   45, 3,237, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          86592:             "\xe0\x39\xe0\xe0\x34\x74\xe0\xc3\xd3\xe0\x84\xe0\x14"
        !          86593:             "\xe0\x54\xe0\x34\xe0\x24\xe0\x74\xd5\xe0\x75\xc4\xe0"
        !          86594:             "\x94\xb4\xe0\xb4\x95\xe0\xb5\x40\xf1\x35\xe0\xd5\x30"
        !          86595:             "\xf1\x25\xe0\xe0\x15\x20\xf1\x16\xe0\xe0\x16\x10\xf1"
        !          86596:             "\x15\xe0\xe0\x35\x1f\x86\xe0\xe0\x36\x15\xe0\xe0\x35"
        !          86597:             "\x10\xf2\x16\xe0\xe0\x16\x10\x25\xe0\xe0\x15\x46\xe0"
        !          86598:             "\xd6\x20\xf1\x35\xe0\xd5\x30\x45\xe0\xb5\x40\xf1\x55"
        !          86599:             "\xe0\x95\x50\x65\xe0\x75\xd5\xe0\x55\xe0\x24\xe0\x34"
        !          86600:             "\xe0\x54\xe0\x14\xe0\x84\xb4\xe0\xc4\x74\xe0\xe0\x39"
        !          86601:             "\xe0\x3e" }  },
        !          86602:       /* --- pixel bitmap for wncyr450 char#80 P --- */
        !          86603:       {  80,11643,                      /* character number, location */
        !          86604:          43, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          86605:           { 43,   43, 2,28, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          86606:             "\xff\x01\x00\x2b\x05\x08\x11\x08\x05\x00\xff\x24\x06"
        !          86607:             "\x06\x13\x06\x06\x00\x05\x08\x11\x08\x05\xff\x01\x12"
        !          86608:             "\x07\x12" }  },
        !          86609:       /* --- pixel bitmap for wncyr450 char#81 Ch --- */
        !          86610:       {  81,12866,                      /* character number, location */
        !          86611:          43, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          86612:           { 46,   43, 3,120, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          86613:             "\xf1\x0e\x04\xae\x04\x58\xe0\x68\x50\xfe\x66\xe0\x86"
        !          86614:             "\x60\x76\xe0\x76\xd6\xe0\x67\xd7\xe0\x48\xe7\xe0\x22"
        !          86615:             "\x16\xe0\x17\xd3\x26\xe0\x29\x75\x36\xe0\x3e\x05\x46"
        !          86616:             "\xe0\x4e\x02\x66\xe0\x7b\x86\x60\xfc\xe0\xe0\x66\x60"
        !          86617:             "\xe0\xe0\x58\x50\xf1\xe0\xee\x04" }  },
        !          86618:       /* --- pixel bitmap for wncyr450 char#82 R --- */
        !          86619:       {  82,35218,                      /* character number, location */
        !          86620:          43, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          86621:           { 37,   43, 3,129, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          86622:             "\x0e\x0d\xae\x0e\x02\xc7\xd6\xc6\xe0\x16\xa6\xe0\x35"
        !          86623:             "\x96\xe0\x45\x86\xe0\x46\x10\xf1\x66\xe0\x55\x10\xf4"
        !          86624:             "\x66\xe0\x56\xf1\x66\xe0\x55\x10\xf1\x66\xe0\x45\x20"
        !          86625:             "\x66\xe0\x35\x96\xe0\x15\xb6\xd6\xce\x08\x90\xfe\x66"
        !          86626:             "\xe0\xb0\xf2\x66\xe0\xb0\x58\xe0\xaf\x1e\x04\xe0\x55" }  },
        !          86627:       /* --- pixel bitmap for wncyr450 char#83 S --- */
        !          86628:       {  83,36303,                      /* character number, location */
        !          86629:          44, 5,   -1, 5,      /* topleft row,col, and botleft row,col */
        !          86630:           { 39,   45, 3,221, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          86631:             "\xe0\x48\xc1\xee\x01\x82\xc7\x84\x53\xa6\xd3\x43\x95"
        !          86632:             "\xe0\x32\x24\x85\xe0\x57\x75\xe0\x76\x65\xe0\x95\x55"
        !          86633:             "\xe0\xa5\xf1\x45\xe0\xc4\x35\xe0\xe3\x26\xe0\xe3\x25"
        !          86634:             "\xe0\xe0\x13\xf2\x16\xe0\xe0\x22\x15\xe0\xe0\x5f\x86"
        !          86635:             "\xe0\xe0\x50\x15\xe0\xe0\x66\xe0\xe0\x40\xf1\x16\xe0"
        !          86636:             "\xe0\x22\x25\xe0\xe0\x22\x26\xe0\xe0\x12\x35\xe0\xe2"
        !          86637:             "\x10\xf1\x45\xe0\xd2\x10\x55\xe0\xb2\x85\xe0\x93\x95"
        !          86638:             "\xe0\x82\xb5\xe0\x62\xd5\xe0\x33\xe0\x16\xe3\xe0\x47"
        !          86639:             "\x84\xe0\x8e\x01\xe0\xe8\xd4" }  },
        !          86640:       /* --- pixel bitmap for wncyr450 char#84 T --- */
        !          86641:       {  84,14119,                      /* character number, location */
        !          86642:          43, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          86643:           { 43,   43, 3,109, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          86644:             "\xf1\x1e\x0e\x0d\x10\x16\xc6\xb6\x24\xe6\xd4\x23\xe0"
        !          86645:             "\x16\xe3\x23\xe0\x16\xe0\x12\x22\xe0\x26\xe0\x12\x1f"
        !          86646:             "\x13\xe0\x26\xe0\x13\x0f\x42\xe0\x36\xe0\x22\xfe\xe0"
        !          86647:             "\x56\xe0\x40\xfa\xe0\x56\xe0\x40\xe0\x48\xe0\x30\xf1"
        !          86648:             "\xae\x0a\x98" }  },
        !          86649:       /* --- pixel bitmap for wncyr450 char#85 U --- */
        !          86650:       {  85,37683,                      /* character number, location */
        !          86651:          43, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          86652:           { 47,   44, 3,309, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          86653:             "\xf1\x0e\x02\xe0\x4d\x67\xe0\x97\xb6\xe0\xa4\xd7\xe0"
        !          86654:             "\x93\xe0\x16\xe0\x83\xe0\x27\xe0\x73\xe0\x36\xe0\x63"
        !          86655:             "\xe0\x56\xe0\x52\xe0\x66\xe0\x43\xe0\x76\xe0\x23\xe0"
        !          86656:             "\x87\xe0\x13\xe0\x96\xe3\xe0\xa7\xd3\xe0\xb6\xc3\xe0"
        !          86657:             "\xd6\xa3\xe0\xe7\x93\xe0\xe0\x16\x83\xe0\xe0\x27\x73"
        !          86658:             "\xe0\xe0\x36\x63\xe0\xe0\x56\x52\xe0\xe0\x66\x43\xe0"
        !          86659:             "\xe0\x76\x23\xe0\xe0\x87\x13\xe0\x40\xf1\xe0\x59\xe0"
        !          86660:             "\x50\xe0\x67\xe0\x60\xf1\xe0\x75\xe0\x70\xf1\xe0\x83"
        !          86661:             "\xe0\x80\x54\xc3\xe0\xd6\xb3\xe0\xd6\xa3\xe0\xe6\xa2"
        !          86662:             "\xe0\xe0\x15\xa3\xe0\xe0\x14\xa3\xe0\xe0\x32\xb3\xe0"
        !          86663:             "\xe0\x32\xa3\xe0\xe0\x42\x93\xe0\xe0\x62\x83\xe0\xe0"
        !          86664:             "\x72\x63\xe0\xe0\x92\x43\xe0\xe0\xc5\xe0\xe0\x40" }  },
        !          86665:       /* --- pixel bitmap for wncyr450 char#86 V --- */
        !          86666:       {  86,15591,                      /* character number, location */
        !          86667:          43, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          86668:           { 39,   43, 3,201, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          86669:             "\x0e\x0e\xbe\x0e\x03\xd7\xe7\xc6\xe0\x26\xb6\xe0\x45"
        !          86670:             "\xa6\xe0\x55\x96\xe0\x56\x86\xe0\x65\x20\xf5\x66\xe0"
        !          86671:             "\x66\x10\x66\xe0\x56\x86\xe0\x55\x96\xe0\x46\x96\xe0"
        !          86672:             "\x36\xa6\xe0\x25\xc6\xd6\xee\x09\xe0\x26\xe0\x15\xd6"
        !          86673:             "\xe0\x35\xb6\xe0\x45\xa6\xe0\x55\x96\xe0\x65\x86\xe0"
        !          86674:             "\x66\x76\xe0\x75\x10\xf5\x66\xe0\x76\x66\xe0\x75\x10"
        !          86675:             "\xf1\x66\xe0\x66\x10\x66\xe0\x56\x86\xe0\x46\x96\xe0"
        !          86676:             "\x36\x97\xe8\x5e\x0e\x04\x7e\x0e\x01\xa7" }  },
        !          86677:       /* --- pixel bitmap for wncyr450 char#87 Shch --- */
        !          86678:       {  87,17258,                      /* character number, location */
        !          86679:          43, 4,   -4, 4,      /* topleft row,col, and botleft row,col */
        !          86680:           { 67,   47, 2,48, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          86681:             "\xff\x01\x00\x12\x05\x12\x05\x12\x03\x00\x05\x08\x0f"
        !          86682:             "\x08\x0f\x08\x08\x00\xff\x24\x06\x06\x11\x06\x11\x06"
        !          86683:             "\x09\x00\x05\x08\x0f\x08\x0f\x08\x08\xff\x01\x40\x03"
        !          86684:             "\x00\x3a\x06\x3f\x05\x40\x03\x42\x03" }  },
        !          86685:       /* --- pixel bitmap for wncyr450 char#88 Sh --- */
        !          86686:       {  88,18989,                      /* character number, location */
        !          86687:          43, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          86688:           { 64,   43, 2,36, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          86689:             "\xff\x01\x00\x12\x05\x12\x05\x12\x05\x08\x0f\x08\x0f"
        !          86690:             "\x08\x05\x00\xff\x24\x06\x06\x11\x06\x11\x06\x06\x00"
        !          86691:             "\x05\x08\x0f\x08\x0f\x08\x05\xff\x01\x40" }  },
        !          86692:       /* --- pixel bitmap for wncyr450 char#89 Y --- */
        !          86693:       {  89,20823,                      /* character number, location */
        !          86694:          43, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          86695:           { 60,   43, 3,196, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          86696:             "\xf1\x0e\x04\xe0\x9e\x05\x58\xe0\xe0\x67\x60\xfe\x66"
        !          86697:             "\xe0\xe0\x76\x70\xf1\x66\xe0\xe0\x76\x70\x6e\x09\xe0"
        !          86698:             "\x46\xd6\xe0\x15\xe0\x16\xd6\xe0\x35\xd6\xd6\xe0\x45"
        !          86699:             "\xc6\xd6\xe0\x55\xb6\xd6\xe0\x65\xa6\xd6\xe0\x66\x96"
        !          86700:             "\xd6\xe0\x75\x96\x70\xf5\x66\xe0\x76\x86\x70\x66\xe0"
        !          86701:             "\x75\x96\x70\xf1\x66\xe0\x66\x96\x70\x66\xe0\x56\xa6"
        !          86702:             "\xd6\xe0\x46\xb6\xd6\xe0\x36\xc6\xc7\xe8\xd7\x6e\x0e"
        !          86703:             "\x04\x9e\x0e\x0e\x06\xce\x05" }  },
        !          86704:       /* --- pixel bitmap for wncyr450 char#90 Z --- */
        !          86705:       {  90,22077,                      /* character number, location */
        !          86706:          44, 4,   -1, 4,      /* topleft row,col, and botleft row,col */
        !          86707:           { 34,   45, 3,213, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          86708:             "\x22\x8a\xe3\x4e\x02\xb4\x15\x96\x97\xe6\x75\xe0\x45"
        !          86709:             "\x64\xe0\x65\x53\xe0\x75\x53\xe0\x76\x20\xf1\x22\xe0"
        !          86710:             "\x95\x20\xf1\xe0\xc6\x20\xe0\xc5\xe0\xe6\xe0\xe5\xe0"
        !          86711:             "\xe5\xe0\xe5\xe0\xd5\xe0\xd5\xe0\xb6\xe0\x7e\xe0\xe0"
        !          86712:             "\x45\xe0\xe0\x44\xe0\xe0\x35\xe0\xe0\x25\xe0\xe0\x25"
        !          86713:             "\xe0\xe0\x25\xe0\xe0\x16\xe0\xe0\x15\x10\xf5\xe0\xe6"
        !          86714:             "\x02\xe0\xc5\x12\xe0\xb6\x12\xe0\xb5\x23\xe0\x96\x23"
        !          86715:             "\xe0\x86\x34\xe0\x66\x46\xe0\x35\x69\xb7\x73\x3e\x05"
        !          86716:             "\x92\x8b\xd0" }  },
        !          86717:       /* --- pixel bitmap for wncyr450 char#91 (noname) --- */
        !          86718:       {  91,48319,                      /* character number, location */
        !          86719:          47, 8,  -16, 8,      /* topleft row,col, and botleft row,col */
        !          86720:           { 10,   63, 3,24, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          86721:             "\xf2\x0a\x0f\xe3\x7f\xe3\x7f\xe3\x7f\xb3\x7f\x2a" }  },
        !          86722:       /* --- pixel bitmap for wncyr450 char#92 (noname) --- */
        !          86723:       {  92,66369,                      /* character number, location */
        !          86724:          43,11,   24,11,      /* topleft row,col, and botleft row,col */
        !          86725:           { 20,   19, 3,73, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          86726:             "\x61\xb1\x61\xb1\x61\xb1\x61\xb1\x40\xf1\x21\xb1\x50"
        !          86727:             "\xf2\x11\xb1\x6f\x21\xb1\x71\x23\x61\x23\x21\x15\x51"
        !          86728:             "\x15\x1f\x18\x48\x17\x57\x25\x75\x43\x93\x26" }  },
        !          86729:       /* --- pixel bitmap for wncyr450 char#93 (noname) --- */
        !          86730:       {  93,49133,                      /* character number, location */
        !          86731:          47, 2,  -16, 2,      /* topleft row,col, and botleft row,col */
        !          86732:           { 10,   63, 3,24, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          86733:             "\xf2\x0a\xfe\x73\xfe\x73\xfe\x73\xfb\x73\x0f\x2a" }  },
        !          86734:       /* --- pixel bitmap for wncyr450 char#94 \Cprime --- */
        !          86735:       {  94,23539,                      /* character number, location */
        !          86736:          43, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          86737:           { 39,   43, 3,143, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          86738:             "\xf1\x0e\x04\xe0\x70\x58\xe0\xc0\xfe\x66\xe0\xd0\xf1"
        !          86739:             "\x66\xe0\xd0\x6e\x09\xe0\x26\xe0\x15\xd6\xe0\x35\xb6"
        !          86740:             "\xe0\x45\xa6\xe0\x55\x96\xe0\x65\x86\xe0\x66\x76\xe0"
        !          86741:             "\x75\x10\xf5\x66\xe0\x76\x66\xe0\x75\x10\xf1\x66\xe0"
        !          86742:             "\x66\x10\x66\xe0\x56\x86\xe0\x46\x96\xe0\x36\x97\xe8"
        !          86743:             "\x5e\x0e\x04\x7e\x0e\x01\xa0" }  },
        !          86744:       /* --- pixel bitmap for wncyr450 char#95 \Cdprime --- */
        !          86745:       {  95,25147,                      /* character number, location */
        !          86746:          43, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          86747:           { 54,   43, 3,229, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          86748:             "\xf1\x1e\x0e\xe0\xb0\x18\xb6\xe0\xe0\x15\xe6\xe0\xe0"
        !          86749:             "\x14\xe0\x16\xe0\xe0\x13\xe0\x26\xe0\xe4\xe0\x26\xe0"
        !          86750:             "\xef\x13\xe0\x36\xe0\xef\x42\xe0\x46\xe0\xe0\xf5\xe0"
        !          86751:             "\x66\xe0\xe0\xe0\x6e\x0a\xe0\xe0\x26\xe0\x16\xe0\xd6"
        !          86752:             "\xe0\x36\xe0\xb6\xe0\x55\xe0\xa6\xe0\x65\xe0\x96\xe0"
        !          86753:             "\x66\x20\xf1\xe0\x66\xe0\x76\x10\xf5\xe0\x66\xe0\x86"
        !          86754:             "\xe0\x66\xe0\x85\xe0\x76\xe0\x76\xe0\x76\xe0\x75\xe0"
        !          86755:             "\x86\xe0\x66\xe0\x86\xe0\x56\xe0\x96\xe0\x37\xe0\x97"
        !          86756:             "\xe0\x17\xe0\x6e\x0e\x05\xe0\x7e\x0e\x02\xa7" }  },
        !          86757:       /* --- pixel bitmap for wncyr450 char#96 (noname) --- */
        !          86758:       {  96,49867,                      /* character number, location */
        !          86759:          43, 6,   24, 6,      /* topleft row,col, and botleft row,col */
        !          86760:           {  8,   19, 1, 1, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          86761:             "\x40\x20\x10\x08\x04\x04\x02\x02\x02\x01\x01\x01\x39"
        !          86762:             "\x7d\xff\xff\xfe\x7c\x38" }  },
        !          86763:       /* --- pixel bitmap for wncyr450 char#97 a --- */
        !          86764:       {  97,99162,                      /* character number, location */
        !          86765:          29, 4,   -1, 4,      /* topleft row,col, and botleft row,col */
        !          86766:           { 29,   30, 3,133, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          86767:             "\x78\xe0\x53\x63\xe0\x13\x93\xd2\xc3\xc4\xb3\xa6\xa4"
        !          86768:             "\x96\xb3\x80\xf1\x16\xb4\x70\x24\xc4\x70\xf2\xe0\x44"
        !          86769:             "\x70\xca\xe0\x16\x44\xd5\x74\xb5\x94\xa4\xb4\x95\xb4"
        !          86770:             "\x85\xc4\x85\xc4\x52\x0f\x25\xd4\x52\x0f\x15\xc1\x13"
        !          86771:             "\x52\x15\xa1\x23\x52\x24\x91\x43\x32\x45\x52\x66\x87"
        !          86772:             "\x94\x35" }  },
        !          86773:       /* --- pixel bitmap for wncyr450 char#98 b --- */
        !          86774:       {  98,100004,                     /* character number, location */
        !          86775:          43, 5,   -1, 5,      /* topleft row,col, and botleft row,col */
        !          86776:           { 28,   44, 3,179, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          86777:             "\xe0\xb1\xe0\xc2\xe0\xa4\xed\x9e\x04\x8e\x05\x9e\x02"
        !          86778:             "\xb6\xe0\x75\xe0\x70\xf1\x23\xe0\x90\x13\xe0\xa0\xf1"
        !          86779:             "\x12\xe0\xb0\x11\x96\xc1\x63\x63\x82\x43\xa3\x62\x33"
        !          86780:             "\xc3\x52\x23\xe3\x41\x24\xe4\x31\x23\xe0\x23\x3f\x11"
        !          86781:             "\x14\xe0\x24\x2f\x15\xe0\x44\x1f\x75\xe0\x45\xf1\x14"
        !          86782:             "\xe0\x44\x10\x15\xe0\x25\x10\xf1\x24\xe0\x24\x20\x34"
        !          86783:             "\xe4\x73\xe3\x93\xc3\xb3\xa3\xe3\x63\xe0\x48\xa3" }  },
        !          86784:       /* --- pixel bitmap for wncyr450 char#99 ts --- */
        !          86785:       {  99,108161,                     /* character number, location */
        !          86786:          27, 2,   -8, 2,      /* topleft row,col, and botleft row,col */
        !          86787:           { 32,   35, 3,80, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          86788:             "\xf1\x0e\x2e\x20\xfe\x54\xc4\x70\xf6\x54\xc4\x70\x55"
        !          86789:             "\xa5\x7f\x1e\x0e\x02\x20\xe0\xb5\xe0\xe4\xe0\xe0\x13"
        !          86790:             "\x20\xf1\xe0\xe2\x20\xe0\xe0\x12\xe0\xe0\x31\xe0\xe0"
        !          86791:             "\x41" }  },
        !          86792:       /* --- pixel bitmap for wncyr450 char#100 d --- */
        !          86793:       { 100,109259,                     /* character number, location */
        !          86794:          27,-1,   -8,-1,      /* topleft row,col, and botleft row,col */
        !          86795:           { 38,   35, 3,136, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          86796:             "\xf1\xbe\x0b\x20\xe0\x15\x66\x60\xf4\xe0\x23\x84\x70"
        !          86797:             "\xf5\xe0\x13\x94\x70\xf3\xe3\xa4\x70\xf2\xd3\xb4\x70"
        !          86798:             "\xf1\xc3\xc4\x70\xb3\xd4\xe0\x34\xc6\x60\xf1\x4e\x0e"
        !          86799:             "\x04\x20\x45\xe0\x85\x64\xe0\xa4\x63\xe0\xc3\x20\xf1"
        !          86800:             "\x42\xe0\xe2\x20\x32\xe0\xe0\x22\x41\xe0\xe0\x41\x22"
        !          86801:             "\xe0\xe0\x61" }  },
        !          86802:       /* --- pixel bitmap for wncyr450 char#101 e --- */
        !          86803:       { 101,100924,                     /* character number, location */
        !          86804:          29, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          86805:           { 25,   30, 3,121, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          86806:             "\xa7\xe0\x23\x53\xc3\x93\x93\xb3\x73\xc4\x54\xd3\x20"
        !          86807:             "\xf1\x24\xe4\x10\x15\xe0\x13\x10\xf1\x14\xe0\x24\x0f"
        !          86808:             "\x15\xe0\x24\x0e\x0b\x0f\x45\xe0\x60\xf1\x14\xe0\x60"
        !          86809:             "\x15\xe0\x74\xe0\x32\x33\xe0\x32\x34\xe0\x12\x54\xe2"
        !          86810:             "\x63\xd2\x93\x93\xb4\x53\xe0\x27\x75" }  },
        !          86811:       /* --- pixel bitmap for wncyr450 char#102 f --- */
        !          86812:       { 102,101635,                     /* character number, location */
        !          86813:          41, 4,  -14, 4,      /* topleft row,col, and botleft row,col */
        !          86814:           { 34,   55, 3,189, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          86815:             "\xf1\xd1\x61\xd0\xe1\x41\xe0\xf1\xe2\x22\xe0\xf7\xe0"
        !          86816:             "\x14\xe0\x10\x75\x34\x35\xd8\x14\x18\xb3\x4a\x43\x93"
        !          86817:             "\x68\x63\x73\x86\x83\x54\x86\x84\x44\x94\x94\x35\x94"
        !          86818:             "\x95\x10\xf2\x14\xa4\xa4\x1f\x65\xa4\xa5\xf2\x14\xa4"
        !          86819:             "\xa4\x10\x15\x94\x95\x34\x94\x94\x44\x86\x84\x53\x86"
        !          86820:             "\x83\x73\x68\x63\x93\x4a\x43\xb8\x14\x18\xd5\x34\x35"
        !          86821:             "\x70\xf7\xe0\x14\xe0\x10\xf1\xe2\x22\xe0\xe1\x41\xe0"
        !          86822:             "\xf1\xd1\x61\xd0" }  },
        !          86823:       /* --- pixel bitmap for wncyr450 char#103 g --- */
        !          86824:       { 103,110559,                     /* character number, location */
        !          86825:          27, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          86826:           { 25,   27, 3,53, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          86827:             "\xf1\x0e\x0a\x10\x45\xa5\x64\xc3\x64\xd2\x10\xf1\x54"
        !          86828:             "\xd3\xf2\x54\xe2\xfd\x54\xe0\x20\x46\xe0\x1f\x1e\x01"
        !          86829:             "\xa1" }  },
        !          86830:       /* --- pixel bitmap for wncyr450 char#104 kh --- */
        !          86831:       { 104,111737,                     /* character number, location */
        !          86832:          27, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          86833:           { 30,   27, 3,126, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          86834:             "\xf1\x1c\x4b\x20\x56\x77\xb5\x84\xe4\x83\xe0\x15\x72"
        !          86835:             "\xe0\x35\x52\xe0\x54\x43\xe0\x64\x23\xe0\x75\x12\xe0"
        !          86836:             "\x96\xd0\xf1\xc5\xd0\xd5\xe0\xa6\xe0\xa7\xe0\x82\x25"
        !          86837:             "\xe0\x63\x34\xe0\x53\x54\xe0\x42\x65\xe0\x22\x84\xe0"
        !          86838:             "\x13\x94\xe2\xa5\xb4\xb5\x87\x97\x4f\x1b\x7c" }  },
        !          86839:       /* --- pixel bitmap for wncyr450 char#105 i --- */
        !          86840:       { 105,113095,                     /* character number, location */
        !          86841:          27, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          86842:           { 33,   27, 3,134, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          86843:             "\xf1\x0e\x5e\x46\xd6\x94\xe5\xa4\xd6\xa4\xc7\xa4\xb3"
        !          86844:             "\x14\xa4\xb2\x24\xa4\xa2\x34\xa4\x93\x34\xa4\x83\x44"
        !          86845:             "\xa4\x82\x54\xa4\x72\x64\xa4\x63\x64\xa4\x62\x74\xa4"
        !          86846:             "\x52\x84\xa4\x43\x84\xa4\x33\x94\xa4\x32\xa4\xa4\x22"
        !          86847:             "\xb4\xa4\x13\xb4\xa7\xc4\xa6\xd4\xa5\xe4\x96\xd6\x4f"
        !          86848:             "\x1e\x5e" }  },
        !          86849:       /* --- pixel bitmap for wncyr450 char#106 j --- */
        !          86850:       { 106,102698,                     /* character number, location */
        !          86851:          43,-2,  -13,-2,      /* topleft row,col, and botleft row,col */
        !          86852:           { 17,   56, 3,65, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          86853:             "\xc3\xd5\x10\xf2\xa7\xb5\xd3\x20\xf7\xe0\x30\xc5\xf1"
        !          86854:             "\x89\xc5\xfe\xd4\xfd\xd4\x14\x8a\x74\x0f\x16\x64\x15"
        !          86855:             "\x73\x33\x73\x53\x53\x87\x66" }  },
        !          86856:       /* --- pixel bitmap for wncyr450 char#107 k --- */
        !          86857:       { 107,132315,                     /* character number, location */
        !          86858:          27, 1,    0, 1,      /* topleft row,col, and botleft row,col */
        !          86859:           { 29,   27, 3,113, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          86860:             "\x0e\xa2\x3e\x94\x74\xd6\x64\xd1\x14\x64\xc2\x22\x74"
        !          86861:             "\xc1\xc4\xb2\xc4\xb1\xd4\xa1\xe4\x82\xe0\x14\x45\xe0"
        !          86862:             "\x2b\xe0\x4c\xe0\x34\x56\xe4\x84\xd4\x94\xc4\xa4\x60"
        !          86863:             "\xf3\x54\xb4\x50\xf1\x54\xb4\x32\x54\xc3\x23\x54\xc7"
        !          86864:             "\x1e\x86\x1e\x94\x20" }  },
        !          86865:       /* --- pixel bitmap for wncyr450 char#108 l --- */
        !          86866:       { 108,114103,                     /* character number, location */
        !          86867:          27, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          86868:           { 31,   27, 3,64, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          86869:             "\xf1\x5e\x0c\xa4\x76\x40\xfc\xa3\x94\x50\xf3\x93\xa4"
        !          86870:             "\x50\x22\x53\xa4\x64\x33\xb4\x55\x33\xb4\x64\x23\xc4"
        !          86871:             "\x69\xb6\x67\x8e\x34\xae" }  },
        !          86872:       /* --- pixel bitmap for wncyr450 char#109 m --- */
        !          86873:       { 109,115550,                     /* character number, location */
        !          86874:          27, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          86875:           { 36,   27, 3,136, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          86876:             "\x09\xe0\x4e\x05\xe0\x2a\x46\xe0\x26\x95\xe0\x25\x50"
        !          86877:             "\xf1\x52\x13\xe2\x13\x50\xf2\x52\x23\xc2\x23\x50\xf2"
        !          86878:             "\x52\x33\xa2\x33\x50\xf1\x52\x43\x82\x43\x50\xf2\x52"
        !          86879:             "\x53\x62\x53\x50\xf1\x52\x63\x42\x63\x50\xf2\x52\x73"
        !          86880:             "\x22\x73\x50\x52\x85\x83\x94\x75\x83\x86\x73\x85\x4f"
        !          86881:             "\x1c\x43\x4d" }  },
        !          86882:       /* --- pixel bitmap for wncyr450 char#110 n --- */
        !          86883:       { 110,116967,                     /* character number, location */
        !          86884:          27, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          86885:           { 30,   27, 3,34, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          86886:             "\xf1\x0e\x2e\xf9\x54\xc4\x50\xf1\x5e\x06\x50\xfa\x54"
        !          86887:             "\xc4\x5f\x1e\x2e" }  },
        !          86888:       /* --- pixel bitmap for wncyr450 char#111 o --- */
        !          86889:       { 111,103515,                     /* character number, location */
        !          86890:          29, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          86891:           { 28,   30, 3,111, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          86892:             "\xb6\xe0\x53\x63\xe3\xa3\xb3\xc3\x93\xe3\x74\xe4\x63"
        !          86893:             "\xe0\x23\x30\xf1\x24\xe0\x24\x20\xf1\x14\xe0\x44\x1f"
        !          86894:             "\x75\xe0\x45\xf1\x14\xe0\x44\x10\x15\xe0\x25\x10\xf1"
        !          86895:             "\x24\xe0\x24\x20\x34\xe4\x73\xe3\x93\xc3\xb3\xa3\xe3"
        !          86896:             "\x63\xe0\x48\xa4" }  },
        !          86897:       /* --- pixel bitmap for wncyr450 char#112 p --- */
        !          86898:       { 112,118205,                     /* character number, location */
        !          86899:          27, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          86900:           { 30,   27, 3,34, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          86901:             "\xf1\x0e\x0e\x02\x55\xa5\x50\xfe\x54\xc4\x50\xf6\x54"
        !          86902:             "\xc4\x5f\x1e\x2e" }  },
        !          86903:       /* --- pixel bitmap for wncyr450 char#113 ch --- */
        !          86904:       { 113,119390,                     /* character number, location */
        !          86905:          27, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          86906:           { 33,   27, 3,72, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          86907:             "\xf1\x0e\x5e\x46\xd6\x40\xf8\x54\xe0\x14\x50\x64\xd5"
        !          86908:             "\xb5\xb6\xc5\x83\x14\xde\x24\xec\x34\xe0\x27\x64\x50"
        !          86909:             "\xf5\xe0\xa4\x50\xe0\x96\x40\xf1\xe0\x5e" }  },
        !          86910:       /* --- pixel bitmap for wncyr450 char#114 r --- */
        !          86911:       { 114,104725,                     /* character number, location */
        !          86912:          28, 3,  -12, 3,      /* topleft row,col, and botleft row,col */
        !          86913:           { 32,   40, 3,153, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          86914:             "\x54\x57\xb9\x33\x54\x89\x22\x94\xa5\x11\xc4\xa5\xe4"
        !          86915:             "\x95\xe0\x14\x84\xe0\x25\x74\xe0\x34\x20\xf1\x54\xe0"
        !          86916:             "\x35\x10\x54\xe0\x44\x10\xf6\x54\xe0\x45\x54\xe0\x44"
        !          86917:             "\x10\xf1\x54\xe0\x35\x10\x54\xe0\x34\x74\xe0\x24\x85"
        !          86918:             "\xe0\x14\x85\xe4\x96\xc4\xa4\x12\xa3\xc4\x32\x64\xd4"
        !          86919:             "\x57\xb0\xf7\x54\xe0\x90\x46\xe0\x8f\x1e\xe0\x44" }  },
        !          86920:       /* --- pixel bitmap for wncyr450 char#115 s --- */
        !          86921:       { 115,105662,                     /* character number, location */
        !          86922:          29, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          86923:           { 25,   30, 3,107, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          86924:             "\xb7\xe0\x14\x62\xc3\xa2\x84\xc2\x64\xb4\x63\xb6\x44"
        !          86925:             "\xb6\x10\xf1\x24\xc6\x10\x15\xd4\x34\xe0\x6f\x75\xe0"
        !          86926:             "\x60\x14\xe0\x60\xf1\x15\xe0\x50\x24\xe0\x32\x25\xe0"
        !          86927:             "\x22\x34\xe0\x12\x54\xe2\x64\xc2\x84\xa2\xb4\x62\xe0"
        !          86928:             "\x27\x74" }  },
        !          86929:       /* --- pixel bitmap for wncyr450 char#116 t --- */
        !          86930:       { 116,120589,                     /* character number, location */
        !          86931:          27, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          86932:           { 27,   27, 3,57, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          86933:             "\xf1\x1e\x0b\x10\x14\x74\x64\x23\x84\x73\x22\x94\x82"
        !          86934:             "\x13\x94\x83\x0f\x32\xa4\x92\xfd\xc4\xb0\xb6\xa0\xf1"
        !          86935:             "\x5e\x04\x44" }  },
        !          86936:       /* --- pixel bitmap for wncyr450 char#117 u --- */
        !          86937:       { 117,106872,                     /* character number, location */
        !          86938:          27, 2,  -13, 2,      /* topleft row,col, and botleft row,col */
        !          86939:           { 32,   40, 3,177, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          86940:             "\xf1\x0d\x8b\x46\xd6\x84\xe0\x14\x95\xe3\x50\xf1\x64"
        !          86941:             "\xe2\x60\xf1\x74\xc2\x70\x75\xa3\xe0\x14\xa2\xe0\x25"
        !          86942:             "\x83\x80\xf1\x94\x82\x90\xf1\xa4\x62\xa0\xa5\x43\xa0"
        !          86943:             "\xf1\xb4\x42\xb0\xf1\xc4\x22\xc0\xf2\xd6\xd0\xf1\xe4"
        !          86944:             "\xe0\xf1\xe0\x12\xe0\x10\xf1\xe2\xe0\x20\xd3\xe0\x42"
        !          86945:             "\x92\xe0\x36\x72\xe0\x3f\x16\x62\xe0\x46\x52\xe0\x55"
        !          86946:             "\x52\xe0\x72\x72\xe0\x82\x42\xe0\xc5\xe0\x91" }  },
        !          86947:       /* --- pixel bitmap for wncyr450 char#118 v --- */
        !          86948:       { 118,122013,                     /* character number, location */
        !          86949:          27, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          86950:           { 28,   27, 3,91, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          86951:             "\x0e\x06\x8e\x08\xa5\xa5\x94\xb5\x84\xc4\x30\xf3\x54"
        !          86952:             "\xc5\x20\x54\xc4\x84\xb5\x84\xa4\xae\x03\xbe\x04\xa4"
        !          86953:             "\xc4\x84\xd4\x74\xd5\x10\xf4\x54\xe5\x54\xd5\x64\xc5"
        !          86954:             "\x65\xa6\x3e\x0a\x4e\x08\x63" }  },
        !          86955:       /* --- pixel bitmap for wncyr450 char#119 shch --- */
        !          86956:       { 119,123640,                     /* character number, location */
        !          86957:          27, 2,   -8, 2,      /* topleft row,col, and botleft row,col */
        !          86958:           { 47,   35, 3,116, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          86959:             "\xf1\x0e\x2d\x2e\x20\x45\xb5\xb5\x60\xfe\x54\xb5\xb4"
        !          86960:             "\x70\xf5\x54\xb5\xb4\x70\x46\xa5\xa6\x6f\x1e\x0e\x0e"
        !          86961:             "\x03\x20\xe0\xe0\xc5\xe0\xe0\xe0\x14\xe0\xe0\xe0\x23"
        !          86962:             "\x20\xf1\xe0\xe0\xe0\x12\x20\xe0\xe0\xe0\x22\xe0\xe0"
        !          86963:             "\xe0\x41\xe0\xe0\xe0\x51" }  },
        !          86964:       /* --- pixel bitmap for wncyr450 char#120 sh --- */
        !          86965:       { 120,125307,                     /* character number, location */
        !          86966:          27, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          86967:           { 45,   27, 3,52, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          86968:             "\xf1\x0e\x2d\x2e\x45\xb5\xb5\x40\xfe\x54\xb5\xb4\x50"
        !          86969:             "\xf5\x54\xb5\xb4\x50\x46\xa5\xa6\x4f\x1e\x0e\x0e\x03" }  },
        !          86970:       /* --- pixel bitmap for wncyr450 char#121 y --- */
        !          86971:       { 121,127043,                     /* character number, location */
        !          86972:          27, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          86973:           { 42,   27, 3,96, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          86974:             "\xf1\x0e\xee\x46\xe0\x85\x50\xf8\x54\xe0\xa4\x50\x5e"
        !          86975:             "\x01\xd4\xa4\x95\xa4\xa4\xc4\x84\xa4\xd4\x74\xa4\xd5"
        !          86976:             "\x64\x50\xf4\x54\xe5\x54\x50\x54\xd5\x64\xa4\xc5\x74"
        !          86977:             "\x95\xa6\x75\x5e\x0a\x4e\x0e\x08\x6e" }  },
        !          86978:       /* --- pixel bitmap for wncyr450 char#122 z --- */
        !          86979:       { 122,128217,                     /* character number, location */
        !          86980:          28, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          86981:           { 22,   29, 3,109, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          86982:             "\x12\x48\x8e\x02\x66\x75\x44\xa5\x33\xc5\x10\xf1\x12"
        !          86983:             "\xd5\x10\xf1\xe0\x25\x10\xe0\x15\xe0\x34\xe0\x25\xe0"
        !          86984:             "\x15\xba\xe0\x64\xe0\x64\xe0\x54\xe0\x45\x10\xf3\xe0"
        !          86985:             "\x35\x02\xe0\x15\x0f\x12\xe5\x13\xc5\x25\x85\x4e\x03"
        !          86986:             "\x52\x39\x80" }  },
        !          86987:       /* --- pixel bitmap for wncyr450 char#123 (noname) --- */
        !          86988:       { 123,67077,                      /* character number, location */
        !          86989:          17, 1,   16, 1,      /* topleft row,col, and botleft row,col */
        !          86990:           { 32,    1, 2, 2, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          86991:             "\x00\x20" }  },
        !          86992:       /* --- pixel bitmap for wncyr450 char#124 (noname) --- */
        !          86993:       { 124,67963,                      /* character number, location */
        !          86994:          17, 2,   16, 2,      /* topleft row,col, and botleft row,col */
        !          86995:           { 65,    1, 2, 2, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          86996:             "\x00\x41" }  },
        !          86997:       /* --- pixel bitmap for wncyr450 char#125 N0 --- */
        !          86998:       { 125,68988,                      /* character number, location */
        !          86999:          44, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
        !          87000:           { 51,   45, 3,367, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          87001:             "\xe0\xe0\x34\xe0\x5c\xe0\x16\xe0\x4c\xe8\xe0\x97\xd1"
        !          87002:             "\x17\xe0\x87\xca\xe0\x88\xba\xe0\x88\xa2\x18\xe0\x82"
        !          87003:             "\x15\xa2\x26\xe0\x92\x16\x92\x26\xe0\x92\x16\x92\xe0"
        !          87004:             "\xe0\x32\x26\x82\xd4\xe2\x26\x82\xc2\x23\xc2\x36\x72"
        !          87005:             "\xb3\x32\xc2\x36\x72\xb2\x43\xb2\x45\x72\xa3\x43\x20"
        !          87006:             "\xf1\x92\x46\x62\xa3\x44\x10\xf1\x92\x56\x52\x94\x44"
        !          87007:             "\x10\xf1\x92\x66\x42\x94\x44\x10\x92\x75\x42\x94\x44"
        !          87008:             "\xa2\x76\x32\x94\x44\xa2\x76\x32\xa3\x44\xa2\x86\x22"
        !          87009:             "\xa3\x43\xb2\x86\x22\xb2\x43\xb2\x96\x12\xb3\x32\xc2"
        !          87010:             "\x96\x12\xc2\x22\xd2\xa5\x12\xe3\x50\xf1\x92\xa8\xe0"
        !          87011:             "\x80\x92\xb7\xe0\xe0\x32\xb7\x8e\x92\xc6\x8e\x92\xc6"
        !          87012:             "\xe0\xe0\x32\xd5\xe0\x80\xf1\x16\x22\xd5\xe0\x88\x12"
        !          87013:             "\xe4\xe0\x8a\xe0\x14\xe0\x8a\xe0\x23\xe0\x87\x12\xe0"
        !          87014:             "\x23\xe0\x98\xe0\x42\xe0\xa6\xe0\x52\xe0\xb4\xe0\xe0"
        !          87015:             "\xe0\x20" }  },
        !          87016:       /* --- pixel bitmap for wncyr450 char#126 \cprime --- */
        !          87017:       { 126,129629,                     /* character number, location */
        !          87018:          27, 2,    0, 2,      /* topleft row,col, and botleft row,col */
        !          87019:           { 28,   27, 3,69, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          87020:             "\xf1\x0e\xe0\x46\xe0\x40\xf8\x54\xe0\x50\x5e\x01\xd4"
        !          87021:             "\x95\xa4\xc4\x84\xd4\x74\xd5\x10\xf4\x54\xe5\x54\xd5"
        !          87022:             "\x64\xc5\x65\xa6\x3e\x0a\x4e\x08\x60" }  },
        !          87023:       /* --- pixel bitmap for wncyr450 char#127 \cdprime --- */
        !          87024:       { 127,131189,                     /* character number, location */
        !          87025:          27, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          87026:           { 36,   27, 3,101, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          87027:             "\xf1\x0e\x05\xe0\x35\x84\xe0\x54\x94\xe0\x53\xa4\xe0"
        !          87028:             "\x5f\x42\xb4\xe0\x50\xf1\xd4\xe0\x50\xde\x01\xe0\x74"
        !          87029:             "\x95\xe0\x44\xc4\xe0\x24\xd4\xe0\x14\xd5\x10\xf4\xd4"
        !          87030:             "\xe5\xd4\xd5\xe4\xc5\xe5\xa6\xbe\x0a\xce\x08\x6e" }  },
        !          87031:       /* --- trailer  --- */
        !          87032:       { -99, -999,  0,0,0,0, { 0,0,0,0, (pixbyte *)"\0" }  }
        !          87033:    } ;
        !          87034: 
        !          87035: 
        !          87036: /* --- size=10 for .600gf ---
        !          87037:  * mf '\mode=preview; mag=magstep(-8.04680493988053835544); input wncyr10'
        !          87038:  * --------------------------------------------------------------------- */
        !          87039: /* --- fontdef for wncyr600 --- */
        !          87040: static	chardef  wncyr600[] =
        !          87041:    {
        !          87042:       /* --- pixel bitmap for wncyr600 char#0 Nj --- */
        !          87043:       {   0,75292,                      /* character number, location */
        !          87044:          57, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          87045:           { 85,   57, 3,313, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          87046:             "\xf2\x0e\x0b\x9e\x0a\xe0\xd0\x89\xe0\xb9\xe0\xe0\x60"
        !          87047:             "\xfe\x97\xe0\xd7\xe0\xe0\x70\xf6\x97\xe0\xd7\xe0\xe0"
        !          87048:             "\x70\x9e\x0e\x0d\xe0\xe0\xe0\x2e\x0e\x0e\x0e\x09\xe0"
        !          87049:             "\x6e\x0e\x0d\xe0\x48\xe0\x47\xe0\xd7\xe0\x68\xe0\x27"
        !          87050:             "\xe0\xd7\xe0\x87\xe0\x17\xe0\xd7\xe0\x97\xe7\xe0\xd7"
        !          87051:             "\xe0\x98\xd7\xe0\xd7\xe0\xa8\xc7\xe0\xd7\xe0\xb8\x20"
        !          87052:             "\xf1\x97\xe0\xd7\xe0\xb9\x10\x97\xe0\xd7\xe0\xc8\x10"
        !          87053:             "\xf6\x97\xe0\xd7\xe0\xc9\x97\xe0\xd7\xe0\xc8\x10\xf1"
        !          87054:             "\x97\xe0\xd7\xe0\xb9\x10\x97\xe0\xd7\xe0\xb8\xb7\xe0"
        !          87055:             "\xd7\xe0\xa8\xc7\xe0\xd7\xe0\x99\xc7\xe0\xd7\xe0\x98"
        !          87056:             "\xd7\xe0\xd7\xe0\x79\xd9\xe0\xb9\xe0\x58\x7e\x0b\x9e"
        !          87057:             "\x0e\x0e\x01\x8e\x0b\x9e\x0e\x0d\xae\x0b\x9e\x0e\x0a"
        !          87058:             "\xd0" }  },
        !          87059:       /* --- pixel bitmap for wncyr600 char#1 Lj --- */
        !          87060:       {   1,76545,                      /* character number, location */
        !          87061:          57, 6,    0, 6,      /* topleft row,col, and botleft row,col */
        !          87062:           { 82,   57, 3,415, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          87063:             "\xf2\xce\x0e\x0e\x05\xe0\x90\xe0\x56\xe0\x2a\xe0\xe0"
        !          87064:             "\xe0\x94\xe0\x57\xe0\xe0\x40\xf6\xe0\x73\xe0\x57\xe0"
        !          87065:             "\xe0\x40\xe0\x64\xe0\x57\xe0\xe0\x40\xfd\xe0\x63\xe0"
        !          87066:             "\x67\xe0\xe0\x40\xe0\x63\xe0\x6e\x0e\xe0\xe0\x33\xe0"
        !          87067:             "\x67\xe0\x28\xe0\xe3\xe0\x67\xe0\x47\xe0\xd3\xe0\x67"
        !          87068:             "\xe0\x58\xe0\xb3\xe0\x67\xe0\x68\xe0\x94\xe0\x67\xe0"
        !          87069:             "\x78\xe0\x83\xe0\x77\xe0\x78\xe0\x83\xe0\x77\xe0\x88"
        !          87070:             "\xe0\x73\xe0\x77\xe0\x89\x10\xf1\xe0\x53\xe0\x77\xe0"
        !          87071:             "\x98\x10\xe0\x53\xe0\x77\xe0\x99\xe0\x44\xe0\x77\xe0"
        !          87072:             "\x99\xf2\xe0\x43\xe0\x87\xe0\x99\xe0\x34\xe0\x87\xe0"
        !          87073:             "\x99\x16\xa3\xe0\x97\xe0\x9e\x03\x93\xe0\x97\xe0\x98"
        !          87074:             "\x19\x83\xe0\x97\xe0\x98\x19\x74\xe0\x97\xe0\x89\x19"
        !          87075:             "\x73\xe0\xa7\xe0\x88\x29\x64\xe0\xa7\xe0\x79\x28\x73"
        !          87076:             "\xe0\xb7\xe0\x78\x37\x74\xe0\xb7\xe0\x68\x53\x94\xe0"
        !          87077:             "\xc7\xe0\x58\x74\x64\xe0\xc9\xe0\x38\x9c\xe0\x5e\x0e"
        !          87078:             "\x0c\xca\xe0\x6e\x0e\x0b\xe0\x16\xe0\x8e\x0e\x08\xc0" }  },
        !          87079:       /* --- pixel bitmap for wncyr600 char#2 Dzh --- */
        !          87080:       {   2,77936,                      /* character number, location */
        !          87081:          57, 4,  -13, 4,      /* topleft row,col, and botleft row,col */
        !          87082:           { 60,   70, 2,33, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          87083:             "\xff\x02\x00\x19\x0a\x19\x08\x09\x1a\x09\x08\x00\xff"
        !          87084:             "\x30\x09\x07\x1c\x07\x09\x00\x08\x0a\x18\x0a\x08\xff"
        !          87085:             "\x02\x3c\xff\x0c\x1b\x07\x1a" }  },
        !          87086:       /* --- pixel bitmap for wncyr600 char#3 \`E --- */
        !          87087:       {   3,79136,                      /* character number, location */
        !          87088:          59, 6,   -2, 6,      /* topleft row,col, and botleft row,col */
        !          87089:           { 53,   61, 3,451, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          87090:             "\x02\xe0\x2a\xe0\xb3\xbe\x04\xe0\x74\x8e\x08\xe0\x55"
        !          87091:             "\x57\x9a\xe0\x35\x45\xe0\x19\xe0\x16\x24\xe0\x68\xda"
        !          87092:             "\xe0\x98\xc9\xe0\xc8\xa8\xe0\xe8\x97\xe0\xe0\x28\x86"
        !          87093:             "\xe0\xe0\x48\x75\xe0\xe0\x67\x75\xe0\xe0\x68\x64\xe0"
        !          87094:             "\xe0\x88\x54\xe0\xe0\x89\x43\xe0\xe0\xa8\x43\xe0\xe0"
        !          87095:             "\xa9\x33\xe0\xe0\xb8\x32\xe0\xe0\xc9\x2f\x12\xe0\xe0"
        !          87096:             "\xd8\x20\xe0\xe0\xe0\x19\xe0\xc8\xa9\xe0\x9e\x01\x69"
        !          87097:             "\xe0\x7e\x05\x58\xe0\x6e\x08\x39\xe0\x3e\x0b\x29\xe0"
        !          87098:             "\x2e\x01\x5e\x03\xe0\x1c\xde\x01\xca\xe0\x4e\x9b\xe0"
        !          87099:             "\x6e\x0e\x03\xe0\x99\x1e\x05\xe0\xa9\x2e\x03\xe0\xb9"
        !          87100:             "\x4e\xe0\xc9\x6a\xe0\xe9\x94\xe0\xe0\x38\x10\xf2\xe0"
        !          87101:             "\xe0\xe0\x19\x10\xe0\xe0\xe0\x18\x2f\x12\xe0\xe0\xc9"
        !          87102:             "\x22\xe0\xe0\xc8\x32\xe0\xe0\xb9\x33\xe0\xe0\xa8\x52"
        !          87103:             "\xe0\xe0\x99\x52\xe0\xe0\x98\x63\xe0\xe0\x78\x82\xe0"
        !          87104:             "\xe0\x77\x93\xe0\xe0\x58\xa3\xe0\xe0\x38\xc3\xe0\xe0"
        !          87105:             "\x18\xd4\xe0\xd8\xe0\x14\xe0\xa8\xe0\x45\xe0\x78\xe0"
        !          87106:             "\x75\xe0\x29\xe0\xa7\xaa\xe0\xee\x09\xe0\xe0\x5e\x04"
        !          87107:             "\xe0\xe0\xab\xe0\xb6" }  },
        !          87108:       /* --- pixel bitmap for wncyr600 char#4 \=I --- */
        !          87109:       {   4,90032,                      /* character number, location */
        !          87110:          57, 5,    0, 5,      /* topleft row,col, and botleft row,col */
        !          87111:           { 25,   57, 2,20, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          87112:             "\xff\x02\x00\x19\x08\x09\x08\x00\xff\x30\x09\x07\x09"
        !          87113:             "\x00\x08\x09\x08\xff\x02\x19" }  },
        !          87114:       /* --- pixel bitmap for wncyr600 char#5 \=E --- */
        !          87115:       {   5,80325,                      /* character number, location */
        !          87116:          59, 6,   -2, 6,      /* topleft row,col, and botleft row,col */
        !          87117:           { 53,   61, 3,449, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          87118:             "\xe0\xba\xe0\x22\xe0\x7e\x04\xb3\xe0\x5e\x08\x84\xe0"
        !          87119:             "\x3a\x97\x55\xe0\x19\xe0\x15\x45\xd8\xe0\x64\x26\xc8"
        !          87120:             "\xe0\x9a\xa8\xe0\xc9\x98\xe0\xe8\x88\xe0\xe0\x27\x78"
        !          87121:             "\xe0\xe0\x46\x77\xe0\xe0\x65\x68\xe0\xe0\x65\x58\xe0"
        !          87122:             "\xe0\x84\x49\xe0\xe0\x84\x48\xe0\xe0\xa3\x39\xe0\xe0"
        !          87123:             "\xa3\x38\xe0\xe0\xb3\x29\xe0\xe0\xc2\xf1\x28\xe0\xe0"
        !          87124:             "\xd2\x19\xe0\xe0\xe0\x29\xa8\xe0\xc9\x6e\x01\xe0\x98"
        !          87125:             "\x5e\x05\xe0\x69\x3e\x08\xe0\x59\x2e\x0b\xe0\x3e\x03"
        !          87126:             "\x5e\x01\xe0\x2d\xdc\xe0\x1b\xe0\x4a\xcc\xe0\x6b\x9c"
        !          87127:             "\xe0\x9e\x0e\x02\xe0\xae\x05\x19\xe0\xbe\x03\x29\xe0"
        !          87128:             "\xce\x49\xe0\xea\x78\xe0\xe0\x34\x90\xf2\x19\xe0\xe0"
        !          87129:             "\xe0\x10\x28\xe0\xe0\xe0\x10\xf1\x29\xe0\xe0\xc2\x38"
        !          87130:             "\xe0\xe0\xc2\x39\xe0\xe0\xb2\x48\xe0\xe0\xa3\x49\xe0"
        !          87131:             "\xe0\x92\x68\xe0\xe0\x92\x78\xe0\xe0\x73\x87\xe0\xe0"
        !          87132:             "\x72\x98\xe0\xe0\x53\xa8\xe0\xe0\x33\xc8\xe0\xe0\x13"
        !          87133:             "\xe8\xe0\xd4\xe0\x28\xe0\xa4\xe0\x48\xe0\x75\xe0\x79"
        !          87134:             "\xe0\x25\xe0\xba\xa7\xe0\xee\x09\xe0\xe0\x4e\x04\xe0"
        !          87135:             "\xe0\xbb\xe0\x30" }  },
        !          87136:       /* --- pixel bitmap for wncyr600 char#6 Dj --- */
        !          87137:       {   6,91338,                      /* character number, location */
        !          87138:          57, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          87139:           { 66,   57, 3,329, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          87140:             "\xf2\x2e\x0e\x0e\x0b\xb0\x17\xe0\x28\xe0\x37\xb4\xe0"
        !          87141:             "\x67\xe0\x64\xa0\xf1\x13\xe0\x77\xe0\x73\xa0\x12\xe0"
        !          87142:             "\x87\xe0\x82\xa3\xe0\x87\xe0\x83\x9f\x12\xe0\x97\xe0"
        !          87143:             "\x92\x90\xf9\xe0\xb7\xe0\xe0\x60\xe0\xb7\xd9\xe0\xe0"
        !          87144:             "\x97\x9e\x02\xe0\xe0\x67\x76\x85\xe0\xe0\x57\x54\xd6"
        !          87145:             "\xe0\xe0\x37\x34\xe0\x26\xe0\xe0\x27\x23\xe0\x56\xe0"
        !          87146:             "\xe0\x17\x13\xe0\x76\xe0\xea\xe0\x86\xe0\xe9\xe0\xa6"
        !          87147:             "\xe0\xd8\xe0\xb6\x20\xf1\xe0\xb7\xe0\xc7\x10\xe0\xb7"
        !          87148:             "\xe0\xd6\x10\xf9\xe0\xb7\xe0\xd7\xe0\xb7\xe0\xd6\x10"
        !          87149:             "\xf1\xe0\xb7\xe0\xc7\x10\xe0\xb7\xb4\xb6\xe0\xd7\xa6"
        !          87150:             "\xa6\x20\xf1\xe0\xb7\x98\x86\x30\xe0\xb7\x98\x76\xe0"
        !          87151:             "\xe0\x17\x98\x66\xe0\xea\x96\x66\xe0\x5e\x0e\x15\x65"
        !          87152:             "\xe0\x7e\x0e\x3d\xe0\x8e\x0e\x58\xc0" }  },
        !          87153:       /* --- pixel bitmap for wncyr600 char#7 \'C --- */
        !          87154:       {   7,92923,                      /* character number, location */
        !          87155:          57, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          87156:           { 60,   57, 3,234, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          87157:             "\xf2\x2e\x0e\x0e\x06\xa0\x16\xc9\xe0\x27\xa4\xe0\x17"
        !          87158:             "\xe0\x64\xa3\xe0\x27\xe0\x73\xa2\xe0\x37\xe0\x73\xa2"
        !          87159:             "\xe0\x37\xe0\x82\xa2\xe0\x37\xe0\x83\x8f\x12\xe0\x47"
        !          87160:             "\xe0\x92\x80\xf8\xe0\x67\xe0\xe0\x50\xe0\x67\xa9\xe0"
        !          87161:             "\xe0\x67\x7e\xe0\xe0\x47\x55\x76\xe0\xe0\x27\x43\xb6"
        !          87162:             "\xe0\xe0\x17\x24\xd6\xe0\xe7\x13\xe0\x26\xe0\xd7\x12"
        !          87163:             "\xe0\x36\xe0\xda\xe0\x46\xe0\xc9\xe0\x56\x60\xf2\xe0"
        !          87164:             "\x68\xe0\x66\x60\xfe\xe0\x67\xe0\x76\x60\xf5\xe0\x67"
        !          87165:             "\xe0\x76\x60\xe0\x59\xe0\x58\x50\xf2\xbe\x08\x9e\x04" }  },
        !          87166:       /* --- pixel bitmap for wncyr600 char#8 nj --- */
        !          87167:       {   8,140718,                     /* character number, location */
        !          87168:          36, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          87169:           { 57,   36, 3,163, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          87170:             "\xf2\x0e\x04\x3e\x05\xe0\x30\x58\xe8\xe0\x80\xfb\x66"
        !          87171:             "\xe0\x26\xe0\x90\x6e\x0e\x0c\xe0\x3e\x0e\x0e\x02\xde"
        !          87172:             "\x0e\xc6\xb6\xe0\x26\xd7\x96\xe0\x26\xe7\x86\xe0\x26"
        !          87173:             "\xe0\x17\x76\xe0\x26\xe0\x26\x10\xf5\x66\xe0\x26\xe0"
        !          87174:             "\x27\xf1\x66\xe0\x26\xe0\x17\x10\x66\xe0\x26\xe7\x78"
        !          87175:             "\xe8\xc7\x3e\x04\x3e\x0e\x04\x4e\x04\x3e\x0e\x02\x6e"
        !          87176:             "\x04\x3e\x0d\x9e" }  },
        !          87177:       /* --- pixel bitmap for wncyr600 char#9 lj --- */
        !          87178:       {   9,141864,                     /* character number, location */
        !          87179:          36, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          87180:           { 56,   36, 3,183, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          87181:             "\xf2\x9e\x0e\x06\xd0\xe5\xa8\xe0\x50\xfb\xe0\x13\xc6"
        !          87182:             "\xe0\x60\xe0\x13\xce\x03\xe0\xa3\xce\x06\xe0\x73\xc6"
        !          87183:             "\xa6\xe0\x53\xc6\xb6\xe0\x34\xc6\xc6\xe0\x23\xd6\xc7"
        !          87184:             "\xe0\x13\xd6\xd6\x36\x63\xd6\xd7\x18\x53\xd6\xd7\x0f"
        !          87185:             "\x19\x53\xd6\xd7\x09\x44\xd6\xde\x02\x43\xe6\xd7\x18"
        !          87186:             "\x43\xe6\xd6\x27\x44\xe6\xc7\x24\x73\xe0\x16\xc6\x44"
        !          87187:             "\x54\xe8\xa6\x6b\x9e\x0e\x01\x89\xae\x0e\xb5\xce\x0c"
        !          87188:             "\x70" }  },
        !          87189:       /* --- pixel bitmap for wncyr600 char#10 dzh --- */
        !          87190:       {  10,143175,                     /* character number, location */
        !          87191:          36, 3,  -10, 3,      /* topleft row,col, and botleft row,col */
        !          87192:           { 40,   46, 3,57, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          87193:             "\xf2\x0e\x04\x4e\x04\x58\xe8\x50\xfe\x66\xe0\x26\x60"
        !          87194:             "\xfc\x66\xe0\x26\x60\x58\xe8\x5f\x2e\x0e\x0c\xf9\xe0"
        !          87195:             "\x36\xe0\x33" }  },
        !          87196:       /* --- pixel bitmap for wncyr600 char#11 \`e --- */
        !          87197:       {  11,144285,                     /* character number, location */
        !          87198:          37, 4,   -1, 4,      /* topleft row,col, and botleft row,col */
        !          87199:           { 36,   38, 3,207, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          87200:             "\x02\x99\xe0\x23\x5e\x01\xd4\x2e\x05\xba\x89\x97\xe8"
        !          87201:             "\x76\xe0\x37\x65\xe0\x57\x54\xe0\x77\x43\xe0\x97\x33"
        !          87202:             "\xe0\xa6\x32\xe0\xb7\x22\xe0\xc6\x22\xe0\x22\x87\xe0"
        !          87203:             "\x1a\x47\xde\x37\xbe\x03\x17\xae\x0c\x9e\x0e\x02\x4b"
        !          87204:             "\x9e\x0b\xc8\x1e\xe7\x2c\xe0\x17\x3a\xe0\x27\x56\xe0"
        !          87205:             "\x38\xf1\xe0\xe7\x12\xe0\xc6\x22\xe0\xb7\x22\xe0\xb6"
        !          87206:             "\x33\xe0\x97\x42\xe0\x87\x53\xe0\x67\x73\xe0\x47\x93"
        !          87207:             "\xe0\x18\xb5\x99\xee\x06\xe0\x4e\x02\xe0\xa9\xe0\x20" }  },
        !          87208:       /* --- pixel bitmap for wncyr600 char#12 \=\i --- */
        !          87209:       {  12,97227,                      /* character number, location */
        !          87210:          56, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          87211:           { 19,   56, 3,62, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          87212:             "\x73\xe7\xc8\x60\xf2\x49\x60\x58\xb7\xe3\x90\xf9\xe0"
        !          87213:             "\x50\x76\x60\xf2\x1c\x60\x58\x60\xfe\x76\x60\xfc\x76"
        !          87214:             "\x60\x68\x5f\x2e\x05" }  },
        !          87215:       /* --- pixel bitmap for wncyr600 char#13 \=e --- */
        !          87216:       {  13,145378,                     /* character number, location */
        !          87217:          37, 4,   -1, 4,      /* topleft row,col, and botleft row,col */
        !          87218:           { 36,   38, 3,207, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          87219:             "\xe0\x29\x92\xde\x01\x53\xbe\x05\x24\x99\x8a\x78\xe7"
        !          87220:             "\x67\xe0\x36\x57\xe0\x55\x47\xe0\x74\x37\xe0\x93\x36"
        !          87221:             "\xe0\xa3\x27\xe0\xb2\x26\xe0\xc2\x17\x82\xe0\x22\x17"
        !          87222:             "\x4a\xe7\x3e\xc7\x1e\x03\xbe\x0c\xae\x0d\x99\x9b\x4b"
        !          87223:             "\xce\x09\xee\x17\xe0\x1c\x27\xe0\x2a\x38\xe0\x36\x50"
        !          87224:             "\xf1\x17\xe0\xe0\x26\xe0\xc2\x27\xe0\xb2\x36\xe0\xb2"
        !          87225:             "\x37\xe0\x93\x47\xe0\x82\x67\xe0\x63\x77\xe0\x43\x98"
        !          87226:             "\xe0\x13\xc9\x95\xe0\x1e\x06\xe0\x4e\x02\xe0\x99\xb0" }  },
        !          87227:       /* --- pixel bitmap for wncyr600 char#14 dj --- */
        !          87228:       {  14,98321,                      /* character number, location */
        !          87229:          58, 6,  -16, 6,      /* topleft row,col, and botleft row,col */
        !          87230:           { 44,   74, 3,309, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          87231:             "\x96\xe0\xe0\x10\xf2\x3c\xe0\xe0\x10\x78\xe0\xe0\x10"
        !          87232:             "\xf3\x96\xe0\xe0\x1f\x2e\x0e\x0d\x30\xf8\x96\xe0\xe0"
        !          87233:             "\x10\x96\x87\xe0\x96\x5d\xe0\x66\x35\x75\xe0\x46\x23"
        !          87234:             "\xc5\xe0\x26\x13\xe5\xe0\x19\xe0\x25\xe8\xe0\x45\xd8"
        !          87235:             "\xe0\x55\xc7\xe0\x65\xc7\xe0\x75\xb6\xe0\x86\x10\xf2"
        !          87236:             "\x96\xe0\x95\x10\xf7\x96\xe0\x96\xf3\x96\xe0\x95\x10"
        !          87237:             "\xf1\x96\xe0\x86\x10\xf2\x96\xe0\x85\x20\xf1\x96\xe0"
        !          87238:             "\x75\x30\x88\xe0\x65\x30\xf1\x3e\x04\xe5\x40\x3e\x04"
        !          87239:             "\xd5\xe0\xe0\xb5\xe0\xe0\xb4\xe0\xe0\xb5\xe0\xe0\xa5"
        !          87240:             "\xe0\xe0\xb4\xe0\xe0\xb5\xe0\xe0\xa5\xe0\xe0\xa5\xe0"
        !          87241:             "\xe0\xa5\xe0\xe0\xa5\xe0\xe0\xa5\xe0\xe0\xa4\xe0\xe0"
        !          87242:             "\xa5\xe0\xe0\x86\xe0\xe0\x59\xe0\xe0\x75\xe0\xa9" }  },
        !          87243:       /* --- pixel bitmap for wncyr600 char#15 \'c --- */
        !          87244:       {  15,99601,                      /* character number, location */
        !          87245:          58, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          87246:           { 50,   58, 3,178, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          87247:             "\x96\xe0\xe0\x70\xf2\x3c\xe0\xe0\x70\x78\xe0\xe0\x70"
        !          87248:             "\xf3\x96\xe0\xe0\x7f\x2e\x0e\x0d\x90\xf8\x96\xe0\xe0"
        !          87249:             "\x70\x96\xaa\xe0\xa6\x7e\x02\xe0\x76\x55\x87\xe0\x56"
        !          87250:             "\x43\xd6\xe0\x46\x33\xe0\x16\xe0\x36\x23\xe0\x36\xe0"
        !          87251:             "\x26\x13\xe0\x46\xe0\x29\xe0\x57\xe0\x18\xe0\x76\x60"
        !          87252:             "\xf2\x97\xe0\x86\x60\xfe\x96\xe0\x96\x60\xf5\x96\xe0"
        !          87253:             "\x96\x60\x88\xe0\x78\x50\xf2\x3e\x04\xbe\x04" }  },
        !          87254:       /* --- pixel bitmap for wncyr600 char#16 Yu --- */
        !          87255:       {  16,81699,                      /* character number, location */
        !          87256:          59, 5,   -2, 5,      /* topleft row,col, and botleft row,col */
        !          87257:           { 91,   61, 3,565, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          87258:             "\xe0\xe0\xe0\xeb\xe0\xe0\xe0\xe0\xe0\x6e\x05\xe0\x6e"
        !          87259:             "\x0a\xe0\xc7\x97\xe0\x4e\x0a\xe0\xa6\xe0\x16\xe0\x2e"
        !          87260:             "\x0a\xe0\x87\xe0\x37\xe0\x7a\xe0\xe6\xe0\x76\xe0\x78"
        !          87261:             "\xe0\xd7\xe0\x97\xe0\x67\xe0\xc7\xe0\xb7\xe0\x57\xe0"
        !          87262:             "\xb7\xe0\xd7\xe0\x47\xe0\xa7\xe0\xe0\x17\xe0\x37\xe0"
        !          87263:             "\x97\xe0\xe0\x37\x70\xf1\x97\xe0\x87\xe0\xe0\x57\x60"
        !          87264:             "\x97\xe0\x77\xe0\xe0\x77\xe7\xe0\x68\xe0\xe0\x78\xd7"
        !          87265:             "\xe0\x67\xe0\xe0\x97\x40\xf1\x97\xe0\x58\xe0\xe0\x98"
        !          87266:             "\x30\xf2\x97\xe0\x48\xe0\xe0\xb8\x20\x97\xe0\x39\xe0"
        !          87267:             "\xe0\xb9\x10\xf2\x97\xe0\x38\xe0\xe0\xd8\x10\xf3\x97"
        !          87268:             "\xe0\x29\xe0\xe0\xd9\xf2\x9e\x0e\x04\xe0\xe0\xd9\xf3"
        !          87269:             "\x97\xe0\x29\xe0\xe0\xd9\x97\xe0\x38\xe0\xe0\xd8\x10"
        !          87270:             "\xf2\x97\xe0\x39\xe0\xe0\xb9\x10\xf1\x97\xe0\x48\xe0"
        !          87271:             "\xe0\xb8\x20\x97\xe0\x49\xe0\xe0\x99\x20\xf1\x97\xe0"
        !          87272:             "\x58\xe0\xe0\x98\x30\xf1\x97\xe0\x68\xe0\xe0\x78\x40"
        !          87273:             "\x97\xe0\x78\xe0\xe0\x58\xe7\xe0\x87\xe0\xe0\x57\xe0"
        !          87274:             "\x17\xe0\x88\xe0\xe0\x38\xe0\x17\xe0\x97\xe0\xe0\x37"
        !          87275:             "\xe0\x27\xe0\xa7\xe0\xe0\x17\xe0\x37\xe0\xb7\xe0\xd7"
        !          87276:             "\xe0\x47\xe0\xc7\xe0\xb7\xe0\x48\xe0\xd7\xe0\x97\xe0"
        !          87277:             "\x4a\xe0\xe6\xe0\x76\xde\x0a\xe0\x87\xe0\x37\xee\x0a"
        !          87278:             "\xe0\xa7\xd7\xe0\x2e\x0a\xe0\xc8\x78\xe0\xe0\xe0\xe0"
        !          87279:             "\xee\x05\xe0\xe0\xe0\xe0\xe0\x6b\xe0\xa5" }  },
        !          87280:       /* --- pixel bitmap for wncyr600 char#17 Zh --- */
        !          87281:       {  17,73556,                      /* character number, location */
        !          87282:          58, 0,   -1, 0,      /* topleft row,col, and botleft row,col */
        !          87283:           { 91,   59, 3,647, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          87284:             "\x55\xe0\xe0\xe0\xe0\xe0\x15\x97\xe0\x8e\x0b\xe0\x87"
        !          87285:             "\x79\xe0\x7e\x0b\xe0\x79\x5b\xe0\x6e\x0b\xe0\x6b\x4b"
        !          87286:             "\xe0\xe9\xe0\xeb\x48\x13\xe0\xe7\xe0\xe3\x18\x48\x22"
        !          87287:             "\xe0\xe7\xe0\xe2\x28\x56\x32\xe0\xe7\xe0\xe2\x36\x74"
        !          87288:             "\x43\xe0\xd7\xe0\xd3\x44\xe0\x32\xe0\xd7\xe0\xd2\xd0"
        !          87289:             "\xf1\xd3\xe0\xc7\xe0\xc3\xd0\xf1\xe3\xe0\xb7\xe0\xb3"
        !          87290:             "\xe0\xe0\x13\xe0\xa7\xe0\xa3\xe0\xe0\x32\xe0\xa7\xe0"
        !          87291:             "\xa2\xe0\xe0\x43\xe0\x97\xe0\x93\xe0\xe0\x53\xe0\x87"
        !          87292:             "\xe0\x83\xe0\xe0\x73\xe0\x77\xe0\x73\xe0\xe0\x93\xe0"
        !          87293:             "\x67\xe0\x63\xe0\xe0\xb3\xe0\x57\xe0\x53\xe0\xe0\xd4"
        !          87294:             "\xe0\x37\xe0\x34\xe0\xe0\xe0\x15\xe0\x17\xe0\x15\xe0"
        !          87295:             "\xe0\xe0\x46\xc7\xc6\xe0\xe0\xe0\x89\x77\x79\xe0\xe0"
        !          87296:             "\xe0\xde\x0e\x05\xe0\xe0\xe0\xe0\x5e\x0d\xe0\xe0\xe0"
        !          87297:             "\xe0\x3e\x0e\x09\xe0\xe0\xe0\x8c\x77\x7c\xe0\xe0\xe0"
        !          87298:             "\x29\xc7\xc9\xe0\xe0\xc8\xe0\x17\xe0\x18\xe0\xe0\x88"
        !          87299:             "\xe0\x37\xe0\x38\xe0\xe0\x58\xe0\x47\xe0\x48\xe0\xe0"
        !          87300:             "\x37\xe0\x67\xe0\x67\xe0\xe0\x17\xe0\x77\xe0\x77\xe0"
        !          87301:             "\xe6\xe0\x87\xe0\x86\xe0\xd7\xe0\x87\xe0\x87\xe0\xc6"
        !          87302:             "\xe0\x97\xe0\x96\xe0\xb7\xe0\x97\xe0\x97\xc0\xf5\xc6"
        !          87303:             "\xe0\xa7\xe0\xa6\xcf\x22\xa6\xe0\xa7\xe0\xa6\xa2\x0f"
        !          87304:             "\x12\xa5\xe0\xb7\xe0\xb5\xa2\x02\x96\xe0\xb7\xe0\xb6"
        !          87305:             "\x95\x86\xe0\xb7\xe0\xb6\x83\xf1\x12\x85\xe0\xc7\xe0"
        !          87306:             "\xc5\x82\x10\x13\x65\xe0\xc9\xe0\xc5\x63\x24\x45\xe0"
        !          87307:             "\x5e\x0b\xe0\x55\x44\x3b\xe0\x6e\x0b\xe0\x6b\x59\xe0"
        !          87308:             "\x7e\x0b\xe0\x79\x85\xe0\xe0\xe0\xe0\xe0\x15\x59" }  },
        !          87309:       /* --- pixel bitmap for wncyr600 char#18 \u I --- */
        !          87310:       {  18,83546,                      /* character number, location */
        !          87311:          77, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          87312:           { 64,   77, 3,620, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          87313:             "\xe5\xe0\xc5\xe0\xd7\xe0\xa7\xd0\xf3\xc9\xe0\x89\xc0"
        !          87314:             "\xc8\xe0\xa8\xe0\xb7\xe0\xa7\xe0\xc5\xe0\xe5\xe0\xd3"
        !          87315:             "\xe0\xe0\x23\xe0\xe0\x13\xe0\xe3\xe0\xe0\x35\xe0\x85"
        !          87316:             "\xe0\xe0\x5e\x0e\x02\xe0\xe0\x8e\x0c\xe0\xe0\xee\x04"
        !          87317:             "\xe0\x90\xf4\xe0\xe0\xe0\xe0\x8f\x2e\x0b\xee\x0b\x89"
        !          87318:             "\xe0\xe0\x29\xe0\x37\xe0\xe0\x47\xe0\x47\xe0\xe0\x38"
        !          87319:             "\xe0\x47\xe0\xe0\x29\x90\xf1\x97\xe0\xe0\x1a\x90\x97"
        !          87320:             "\xe0\xeb\xe0\x47\xe0\xdc\xe0\x47\xe0\xc5\x17\xe0\x47"
        !          87321:             "\xe0\xc4\x27\xe0\x47\xe0\xb4\x37\xe0\x47\xe0\xa5\x37"
        !          87322:             "\xe0\x47\xe0\x95\x47\xe0\x47\xe0\x94\x57\xe0\x47\xe0"
        !          87323:             "\x84\x67\xe0\x47\xe0\x75\x67\xe0\x47\xe0\x65\x77\xe0"
        !          87324:             "\x47\xe0\x64\x87\xe0\x47\xe0\x54\x97\xe0\x47\xe0\x45"
        !          87325:             "\x97\xe0\x47\xe0\x44\xa7\xe0\x47\xe0\x34\xb7\xe0\x47"
        !          87326:             "\xe0\x24\xc7\xe0\x47\xe0\x15\xc7\xe0\x47\xe0\x14\xd7"
        !          87327:             "\xe0\x47\xe4\xe7\xe0\x47\xd4\xe0\x17\xe0\x47\xc5\xe0"
        !          87328:             "\x17\xe0\x47\xc4\xe0\x27\xe0\x47\xb4\xe0\x37\xe0\x47"
        !          87329:             "\xa4\xe0\x47\xe0\x47\x95\xe0\x47\xe0\x47\x94\xe0\x57"
        !          87330:             "\xe0\x47\x84\xe0\x67\xe0\x47\x75\xe0\x67\xe0\x47\x65"
        !          87331:             "\xe0\x77\xe0\x47\x64\xe0\x87\xe0\x47\x54\xe0\x97\xe0"
        !          87332:             "\x47\x45\xe0\x97\xe0\x47\x35\xe0\xa7\xe0\x47\x34\xe0"
        !          87333:             "\xb7\xe0\x47\x24\xe0\xc7\xe0\x47\x15\xe0\xc7\xe0\x4c"
        !          87334:             "\xe0\xd7\xe0\x4b\xe0\xe7\x90\xf1\x9a\xe0\xe0\x17\x90"
        !          87335:             "\x99\xe0\xe0\x27\xe0\x48\xe0\xe0\x37\xe0\x47\xe0\xe0"
        !          87336:             "\x47\xe0\x39\xe0\xe0\x29\x8f\x2e\x0b\xee\x0b" }  },
        !          87337:       /* --- pixel bitmap for wncyr600 char#19 \"E --- */
        !          87338:       {  19,94561,                      /* character number, location */
        !          87339:          75, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          87340:           { 55,   75, 3,393, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          87341:             "\xe0\x33\xe4\xe0\xe0\x47\xb7\xe0\xe0\x19\x98\xe0\x10"
        !          87342:             "\xf2\xe9\x99\xe0\xe9\x98\xe0\xe0\x27\xb7\xe0\xe0\x43"
        !          87343:             "\xe4\xe0\x30\xf8\xe0\xe0\xe0\xdf\x2e\x0e\x0e\x08\x50"
        !          87344:             "\x89\xe0\x8b\xe7\xe0\xd7\xe7\xe0\xe0\x16\xd7\xe0\xe0"
        !          87345:             "\x25\x40\xf1\x97\xe0\xe0\x34\x40\xf1\x97\xe0\xe0\x43"
        !          87346:             "\x40\xf2\x97\xe0\xe0\x52\x40\x97\xe0\xe0\x53\xc7\xe0"
        !          87347:             "\xe0\x62\x30\xf2\x97\xe0\x42\xe2\x30\xf2\x97\xe0\x42"
        !          87348:             "\xe0\x50\xf1\x97\xe0\x33\xe0\x50\x97\xe0\x24\xe0\xe7"
        !          87349:             "\xd7\xe0\x50\xf2\x9e\x0d\xe0\x50\x97\xd7\xe0\xe7\xe0"
        !          87350:             "\x24\xe0\x50\xf1\x97\xe0\x33\xe0\x50\xf1\x97\xe0\x42"
        !          87351:             "\xe0\x50\xf2\x97\xe0\x42\xe0\x32\x97\xe0\x42\xe0\x22"
        !          87352:             "\x10\xf2\x97\xe0\xe0\x82\x10\x97\xe0\xe0\x73\x10\xf1"
        !          87353:             "\x97\xe0\xe0\x72\x20\xf1\x97\xe0\xe0\x63\x20\xf1\x97"
        !          87354:             "\xe0\xe0\x54\x20\x97\xe0\xe0\x44\xc7\xe0\xe0\x35\xc7"
        !          87355:             "\xe0\xe0\x17\xc7\xe0\xd9\xb9\xe0\x9c\x3f\x2e\x0e\x0e"
        !          87356:             "\x09\x40" }  },
        !          87357:       /* --- pixel bitmap for wncyr600 char#20 (noname) --- */
        !          87358:       {  20,84865,                      /* character number, location */
        !          87359:          58, 3,   -2, 3,      /* topleft row,col, and botleft row,col */
        !          87360:           { 62,   60, 3,503, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          87361:             "\xe0\xe0\xe0\xb5\x4e\x08\xe0\xe0\x19\x2e\x08\xe0\xe3"
        !          87362:             "\x44\x1e\x08\xe0\xd3\x36\x7b\xe0\xe0\x42\x38\x78\xe0"
        !          87363:             "\xe0\x52\x48\x87\xe0\xe0\x52\x48\x87\xe0\xe0\x42\x58"
        !          87364:             "\x88\xe0\xe0\x32\x66\xa7\xe0\xe0\x23\x66\xa7\xe0\xe0"
        !          87365:             "\x22\xe0\x98\xe0\xe0\x12\xe0\xf1\xa7\xe0\xe2\xe0\x10"
        !          87366:             "\xa8\xe0\xc3\xe0\x10\xf1\xb7\xe0\xc2\xe0\x20\xb8\xe0"
        !          87367:             "\xa2\xe0\xe0\x17\xe0\xa2\xe0\xe0\x17\xe0\x93\xe0\x30"
        !          87368:             "\xf1\xd7\xe0\x82\xe0\x40\xd7\xe0\x72\xe0\xe0\x57\xe0"
        !          87369:             "\x62\xe0\xe0\x57\xe0\x53\xe0\xe0\x57\xe0\x52\xe0\xe0"
        !          87370:             "\x77\xe0\x42\xe0\x60\xf1\xe0\x17\xe0\x32\xe0\x70\xe0"
        !          87371:             "\x27\xe0\x13\xe0\xe0\x97\xe0\x12\xe0\xe0\xa8\xe2\xe0"
        !          87372:             "\x80\xf1\xe0\x37\xd2\xe0\x90\xe0\x38\xb3\xe0\x90\xf1"
        !          87373:             "\xe0\x47\xb2\xe0\xa0\xe0\x48\x92\xe0\xe0\xe0\x27\x92"
        !          87374:             "\xe0\xe0\xe0\x27\x83\xe0\xe0\xe0\x28\x72\xe0\xe0\xe0"
        !          87375:             "\x47\x72\xe0\xe0\xe0\x47\x62\xe0\xe0\xe0\x67\x52\xe0"
        !          87376:             "\xe0\xe0\x67\x43\xe0\xe0\xe0\x67\x42\xe0\xe0\xe0\x87"
        !          87377:             "\x32\xe0\xe0\xf1\xe0\x87\x22\xe0\xe0\x10\xe0\x9a\xe0"
        !          87378:             "\xe0\x10\xf1\xe0\x99\xe0\xe0\x20\xf2\xe0\xa7\xe0\xe0"
        !          87379:             "\x30\xf1\xe0\xb5\xe0\xe0\x40\xe0\xb4\xe0\xe0\x50\xf1"
        !          87380:             "\xe0\xc3\xe0\xe0\x50" }  },
        !          87381:       /* --- pixel bitmap for wncyr600 char#21 (noname) --- */
        !          87382:       {  21,86243,                      /* character number, location */
        !          87383:          59, 3,   -2, 3,      /* topleft row,col, and botleft row,col */
        !          87384:           { 64,   61, 3,347, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          87385:             "\xe0\xe8\xe0\xe0\xe0\xbe\xe0\xe0\xe0\x66\x66\xe0\xe0"
        !          87386:             "\xe0\x35\xa5\xe0\xe0\xe0\x15\xc5\xe0\xe0\xc6\xe6\xe0"
        !          87387:             "\x50\xf1\xe0\x46\xe0\x26\xe0\x40\xe0\x36\xe0\x46\xe0"
        !          87388:             "\xe0\x57\xe0\x47\xe0\x20\xf1\xe0\x17\xe0\x67\xe0\x10"
        !          87389:             "\xf1\xe7\xe0\x87\xe0\xd8\xe0\x88\xe0\xc7\xe0\xa7\xd0"
        !          87390:             "\xf2\xc8\xe0\xa8\xc0\xf1\xb9\xe0\xa9\xb0\xf2\xb8\xe0"
        !          87391:             "\xc8\xb0\xf2\xa9\xe0\xc9\xaf\x5e\x0e\x0e\x0e\x08\x0f"
        !          87392:             "\x32\x89\xe0\xc9\x82\xf3\xb8\xe0\xc8\xb0\xb9\xe0\xa9"
        !          87393:             "\xb0\xf2\xc8\xe0\xa8\xc0\xd7\xe0\xa7\xe0\xc8\xe0\x88"
        !          87394:             "\xd0\xf1\xe7\xe0\x87\xe0\xf1\xe0\x17\xe0\x67\xe0\x10"
        !          87395:             "\xe0\x27\xe0\x47\xe0\xe0\x56\xe0\x46\xe0\x30\xf1\xe0"
        !          87396:             "\x46\xe0\x26\xe0\x40\xe0\x56\xe6\xe0\xe0\xb6\xc6\xe0"
        !          87397:             "\xe0\xe5\xa5\xe0\xe0\xe0\x36\x66\xe0\xe0\xe0\x6e\xe0"
        !          87398:             "\xe0\xe0\xb8\xe0\xe3" }  },
        !          87399:       /* --- pixel bitmap for wncyr600 char#22 \Dz --- */
        !          87400:       {  22,87571,                      /* character number, location */
        !          87401:          59, 6,   -2, 6,      /* topleft row,col, and botleft row,col */
        !          87402:           { 39,   61, 3,337, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          87403:             "\xd9\xd2\xce\x01\x93\xae\x05\x73\x87\x97\x44\x76\xe5"
        !          87404:             "\x25\x65\xe0\x44\x15\x55\xe0\x78\x54\xe0\x97\x45\xe0"
        !          87405:             "\xa6\x35\xe0\xb6\x35\xe0\xc5\x34\xe0\xe4\x25\xe0\xe4"
        !          87406:             "\x2f\x25\xe0\xe0\x13\x26\xe0\xe3\x2f\x16\xe0\xe0\x12"
        !          87407:             "\x27\xe0\xe2\x37\xe0\xe0\x48\xe0\xe0\x39\xe0\xe0\x3a"
        !          87408:             "\xe0\xe0\x1d\xe0\xde\x03\xe0\x9e\x06\xe0\x6e\x09\xe0"
        !          87409:             "\x3e\x0a\xe0\x3e\x0a\xe0\x3e\x09\xe0\x4e\x08\xe0\x7e"
        !          87410:             "\x05\xe0\xbe\x01\xe0\xec\xe0\xe0\x29\xe0\xe0\x39\xe0"
        !          87411:             "\xe0\x38\xe0\xe0\x47\x10\xf1\xe0\xe0\x47\x0f\x12\xe0"
        !          87412:             "\xe0\x36\x0f\x22\xe0\xe0\x45\x0f\x13\xe0\xe0\x35\x03"
        !          87413:             "\xe0\xe0\x34\x1f\x14\xe0\xe0\x15\x15\xe0\xe4\x26\xe0"
        !          87414:             "\xc5\x27\xe0\xa5\x38\xe0\x85\x4a\xe0\x56\x45\x25\xe0"
        !          87415:             "\x25\x64\x48\xa6\x73\x7e\x07\x83\x9e\x03\xa2\xea\xd0" }  },
        !          87416:       /* --- pixel bitmap for wncyr600 char#23 Ya --- */
        !          87417:       {  23,89103,                      /* character number, location */
        !          87418:          57, 1,   -2, 1,      /* topleft row,col, and botleft row,col */
        !          87419:           { 61,   59, 3,379, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          87420:             "\xe0\xee\x0e\x05\xe0\xae\x0e\x09\xe0\x7e\x0e\x0c\xe0"
        !          87421:             "\x5a\xe0\x19\xe0\xc8\xe0\x57\xe0\xb8\xe0\x77\xe0\xa8"
        !          87422:             "\xe0\x87\xe0\x98\xe0\x97\x90\xf1\xd8\xe0\xa7\x90\xc9"
        !          87423:             "\xe0\xa7\xe0\x78\xe0\xb7\x90\xf5\xb9\xe0\xb7\x90\xc8"
        !          87424:             "\xe0\xb7\xe0\x79\xe0\xa7\xe0\x88\xe0\xa7\xe0\x97\xe0"
        !          87425:             "\xa7\xe0\xa7\xe0\x97\xe0\xb7\xe0\x87\xe0\xc7\xe0\x77"
        !          87426:             "\xe0\xe7\xe0\x57\xe0\xe0\x29\xe0\x17\xe0\xe0\x4e\x0e"
        !          87427:             "\x01\xe0\xe0\x7e\x0c\xe0\xe0\x56\xe0\x17\xe0\xe0\x36"
        !          87428:             "\xe0\x37\xe0\xe0\x26\xe0\x47\xe0\xe0\x16\xe0\x57\xe0"
        !          87429:             "\xe6\xe0\x67\xe0\xd6\xe0\x77\xe0\xc7\xe0\x77\xe0\xc6"
        !          87430:             "\xe0\x87\x90\xf3\xe0\x27\xe0\x87\x90\xf2\xe0\x18\xe0"
        !          87431:             "\x87\x90\xf3\xe9\xe0\x87\x9f\x22\xba\xe0\x87\x92\xaa"
        !          87432:             "\xe0\x97\x93\x9a\xe0\x97\xa2\x99\xe0\x99\x93\x79\xe0"
        !          87433:             "\x2e\x0b\x23\x59\xe0\x3e\x0b\x33\x48\xe0\x4e\x0b\x4c"
        !          87434:             "\xe0\xe0\xe0\x97\xe0\xe0\xe0\x60" }  },
        !          87435:       /* --- pixel bitmap for wncyr600 char#24 yu --- */
        !          87436:       {  24,146656,                     /* character number, location */
        !          87437:          37, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          87438:           { 61,   38, 3,269, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          87439:             "\xe0\xe0\x99\xe0\x1e\x05\xe0\x1e\x01\xce\x05\xd6\x76"
        !          87440:             "\xae\x05\xb6\xb6\xd8\xe0\x25\xe0\x15\xd7\xe0\x15\xe0"
        !          87441:             "\x35\xc6\xe0\x15\xe0\x55\xb6\xe6\xe0\x56\x40\xf1\x66"
        !          87442:             "\xd6\xe0\x76\x30\xf1\x66\xc6\xe0\x96\x20\x66\xb7\xe0"
        !          87443:             "\x97\x10\xf1\x66\xb6\xe0\xb6\x10\xf2\x66\xa7\xe0\xb7"
        !          87444:             "\xf2\x6e\x09\xe0\xb7\xf1\x66\xa7\xe0\xb7\x66\xb6\xe0"
        !          87445:             "\xb6\x10\xf1\x66\xb7\xe0\x97\x10\xf1\x66\xc6\xe0\x96"
        !          87446:             "\x20\xf1\x66\xd6\xe0\x76\x30\x66\xe6\xe0\x56\xa6\xe0"
        !          87447:             "\x16\xe0\x36\xb7\xe0\x16\xe0\x16\xb8\xe0\x26\xd6\x7e"
        !          87448:             "\x05\xb6\xb6\x8e\x05\xd6\x76\xae\x05\xe0\x1e\x01\xe0"
        !          87449:             "\xe0\xe0\x79\xe0\x10" }  },
        !          87450:       /* --- pixel bitmap for wncyr600 char#25 zh --- */
        !          87451:       {  25,139078,                     /* character number, location */
        !          87452:          37, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
        !          87453:           { 60,   38, 3,317, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          87454:             "\x43\xe0\xe0\xe0\x43\x67\xbe\x06\xb7\x20\xf1\x19\xae"
        !          87455:             "\x06\xa9\x10\x16\x13\xe0\x18\xe0\x13\x16\x26\x13\xe0"
        !          87456:             "\x26\xe0\x23\x16\x34\x32\xe0\x26\xe0\x22\x34\xb3\xe0"
        !          87457:             "\x16\xe0\x13\xe0\x52\xe0\x16\xe0\x12\xe0\x63\xe6\xe3"
        !          87458:             "\xa0\xf1\xb3\xd6\xd3\xb0\xc4\xb6\xb4\xe0\xb4\xa6\xa4"
        !          87459:             "\xe0\xd5\x86\x85\xe0\xe0\x29\x26\x29\xe0\xe0\x6e\x0a"
        !          87460:             "\xe0\xe0\x6e\x0e\xe0\xe0\x1b\x28\x2b\xe0\xa8\x86\x88"
        !          87461:             "\xe0\x76\xb6\xb6\xe0\x56\xc6\xc6\xe0\x36\xd6\xd6\xe0"
        !          87462:             "\x25\xe6\xe5\xe0\x16\xe6\xe6\x70\xf3\x75\xe0\x16\xe0"
        !          87463:             "\x15\x7f\x22\x55\xe0\x16\xe0\x15\x52\x03\x44\xe0\x26"
        !          87464:             "\xe0\x24\x46\x35\xe0\x18\xe0\x15\x33\x13\x24\xae\x06"
        !          87465:             "\xa4\x23\x29\xae\x06\xa9\x37\xbe\x06\xb7\x54\xe0\xe0"
        !          87466:             "\xe0\x44\x33" }  },
        !          87467:       /* --- pixel bitmap for wncyr600 char#26 \u\i --- */
        !          87468:       {  26,148395,                     /* character number, location */
        !          87469:          55, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          87470:           { 43,   55, 3,286, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          87471:             "\xa5\xd5\xe0\x57\xb7\x90\xf3\x89\x99\x80\x88\xb8\xe0"
        !          87472:             "\x37\xb7\xe0\x45\xe0\x15\xe0\x53\xe0\x33\xe0\x74\xd4"
        !          87473:             "\xe0\x9e\x05\xe0\xbe\x03\xe0\xe0\x1b\xe0\x20\xf4\xe0"
        !          87474:             "\xe0\xe0\x1f\x2e\x04\x7e\x04\x58\xe0\x38\x50\xf1\x66"
        !          87475:             "\xe0\x38\x60\x66\xe0\x29\xc6\xe0\x1a\xc6\xe0\x13\x16"
        !          87476:             "\xc6\xe4\x16\xc6\xd4\x26\xc6\xc4\x36\xc6\xc3\x46\xc6"
        !          87477:             "\xb4\x46\xc6\xa4\x56\xc6\x94\x66\xc6\x93\x76\xc6\x84"
        !          87478:             "\x76\xc6\x74\x86\xc6\x73\x96\xc6\x64\x96\xc6\x54\xa6"
        !          87479:             "\xc6\x44\xb6\xc6\x43\xc6\xc6\x34\xc6\xc6\x24\xd6\xc6"
        !          87480:             "\x14\xe6\xc6\x13\xe0\x16\xca\xe0\x16\xc9\xe0\x26\x60"
        !          87481:             "\xf1\x68\xe0\x36\x60\x58\xe0\x38\x5f\x2e\x04\x7e\x04" }  },
        !          87482:       /* --- pixel bitmap for wncyr600 char#27 \"e --- */
        !          87483:       {  27,100582,                     /* character number, location */
        !          87484:          55, 4,   -1, 4,      /* topleft row,col, and botleft row,col */
        !          87485:           { 34,   56, 3,219, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          87486:             "\x74\xd4\xb7\xb7\x98\x98\x40\xf2\x49\x99\x30\x58\x98"
        !          87487:             "\x97\xb7\xb4\xd4\x60\xf7\xe0\xe0\x60\xe8\xe0\x9e\xe0"
        !          87488:             "\x46\x66\xe0\x15\xa5\xc6\xc6\x96\xe5\x86\xe0\x25\x75"
        !          87489:             "\xe0\x36\x56\xe0\x45\x47\xe0\x46\x36\xe0\x56\x27\xe0"
        !          87490:             "\x65\x27\xe0\x66\x16\xe0\x76\x0f\x27\xe0\x76\x0f\x1e"
        !          87491:             "\x0e\x06\x0f\x47\xe0\xd0\x16\xe0\xd0\xf1\x17\xe0\xc0"
        !          87492:             "\x26\xe0\xe6\xe0\xa2\x36\xe0\x92\x36\xe0\x83\x46\xe0"
        !          87493:             "\x72\x66\xe0\x53\x75\xe0\x43\x95\xe0\x23\xb6\xc4\xe6"
        !          87494:             "\x75\xe0\x4e\xe0\x98\xb0" }  },
        !          87495:       /* --- pixel bitmap for wncyr600 char#28 (noname) --- */
        !          87496:       {  28,149596,                     /* character number, location */
        !          87497:          37, 2,   -1, 2,      /* topleft row,col, and botleft row,col */
        !          87498:           { 41,   38, 3,227, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          87499:             "\xe0\xe0\x65\x2e\x04\xe0\x17\x1e\x04\xe3\x2e\x08\xe2"
        !          87500:             "\x25\x59\xe0\x32\x35\x67\xe0\x42\x35\x67\xe0\x33\x35"
        !          87501:             "\x76\xe0\x32\x45\x76\xe0\x32\x90\xf1\x86\xe0\x12\xa0"
        !          87502:             "\x86\xe2\xb0\xf1\x96\xd2\xb0\x96\xc2\xe0\x86\xb2\xc0"
        !          87503:             "\xf1\xa6\xa2\xd0\xb6\x92\xe0\xa6\x82\xe0\xb7\x72\xe0"
        !          87504:             "\xf1\xc6\x62\xe0\x10\xc7\x43\xe0\x10\xf1\xd6\x42\xe0"
        !          87505:             "\x20\xf1\xe6\x22\xe0\x30\xe6\x13\xe0\x30\xf1\xe0\x18"
        !          87506:             "\xe0\x40\xe0\x17\xe0\xe0\x76\xe0\x50\xf1\xe0\x25\xe0"
        !          87507:             "\x60\xe0\x34\xe0\x60\xf1\xe0\x33\xe0\x76" }  },
        !          87508:       /* --- pixel bitmap for wncyr600 char#29 (noname) --- */
        !          87509:       {  29,150886,                     /* character number, location */
        !          87510:          37, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          87511:           { 42,   38, 3,175, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          87512:             "\xe0\x46\xe0\xe0\x5c\xe0\xe0\x15\x45\xe0\xc5\x85\xe0"
        !          87513:             "\x95\xa5\xe0\x76\xa6\xe0\x65\xc5\xe0\x56\xc6\xe0\x45"
        !          87514:             "\xe5\x90\xf1\x86\xe6\x80\x77\xe7\x70\xf1\x76\xe0\x26"
        !          87515:             "\x70\xf1\x67\xe0\x27\x6f\x4e\x0e\x0e\x0f\x22\x47\xe0"
        !          87516:             "\x27\x42\xf2\x76\xe0\x26\x70\xf2\x86\xe6\x80\x96\xc6"
        !          87517:             "\xe0\x55\xc5\xe0\x66\xa6\xe0\x75\xa5\xe0\x95\x85\xe0"
        !          87518:             "\xc5\x45\xe0\xe0\x1c\xe0\xe0\x56\xe0\x40" }  },
        !          87519:       /* --- pixel bitmap for wncyr600 char#30 \dz --- */
        !          87520:       {  30,152088,                     /* character number, location */
        !          87521:          37, 4,   -1, 4,      /* topleft row,col, and botleft row,col */
        !          87522:           { 27,   38, 3,159, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          87523:             "\x88\x72\x8d\x33\x6e\x02\x14\x56\x79\x45\xc6\x35\xe5"
        !          87524:             "\x35\xe0\x14\x2f\x15\xe0\x33\x2f\x15\xe0\x42\x26\xe0"
        !          87525:             "\x32\x27\xe0\x68\xe0\x6a\xe0\x3e\x01\xde\x04\xae\x05"
        !          87526:             "\x9e\x05\xae\x04\xce\x02\xe0\x1d\xe0\x58\xe0\x68\xe0"
        !          87527:             "\x67\xe0\x76\x0f\x32\xe0\x65\x03\xe0\x54\x14\xe0\x35"
        !          87528:             "\x15\xe0\x15\x26\xe5\x29\x96\x34\x1e\x04\x43\x4e\x62"
        !          87529:             "\x89\x85" }  },
        !          87530:       /* --- pixel bitmap for wncyr600 char#31 ya --- */
        !          87531:       {  31,153532,                     /* character number, location */
        !          87532:          36, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
        !          87533:           { 41,   37, 3,171, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          87534:             "\xe0\x4e\x09\xee\x0d\xce\x0e\x01\xb7\xb7\xe0\x16\xd6"
        !          87535:             "\xe0\x16\xe6\xe7\xe6\x60\xf4\x77\xe0\x16\x60\x86\xe0"
        !          87536:             "\x16\xe7\xe6\xe0\x16\xe6\xe0\x26\xd6\xe0\x47\xa6\xe0"
        !          87537:             "\x6e\x07\xe0\x7e\x06\xe0\x66\x96\xe0\x46\xb6\x60\xf1"
        !          87538:             "\xb6\xc6\x60\xf3\xa6\xd6\x60\xf2\x97\xd6\x62\x77\xd6"
        !          87539:             "\x62\x68\xd6\x62\x67\xd8\x53\x57\x8e\x04\x13\x37\x9e"
        !          87540:             "\x04\x2a\xbe\x04\x46\xe0\xe0\x36" }  },
        !          87541:       /* --- pixel bitmap for wncyr600 char#32 \cyddot --- */
        !          87542:       {  32,63815,                      /* character number, location */
        !          87543:          56,10,   47,10,      /* topleft row,col, and botleft row,col */
        !          87544:           { 26,    9, 3,23, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          87545:             "\x33\xe3\x47\xa7\x1f\x49\x89\x17\xa7\x43\xe3\x37" }  },
        !          87546:       /* --- pixel bitmap for wncyr600 char#33 (noname) --- */
        !          87547:       {  33,39920,                      /* character number, location */
        !          87548:          60, 9,    0, 9,      /* topleft row,col, and botleft row,col */
        !          87549:           {  9,   60, 3,43, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          87550:             "\x33\x47\x1f\x79\xfa\x17\x10\xfa\x25\x20\xfa\x33\x30"
        !          87551:             "\xf7\x90\x33\x47\x1f\x49\x17\x43\x30" }  },
        !          87552:       /* --- pixel bitmap for wncyr600 char#34 (noname) --- */
        !          87553:       {  34,64782,                      /* character number, location */
        !          87554:          58, 4,   33, 4,      /* topleft row,col, and botleft row,col */
        !          87555:           { 27,   25, 3,97, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          87556:             "\x33\xe3\x57\xa7\x2f\x19\x89\x1f\x2a\x7a\x19\x89\x33"
        !          87557:             "\x22\xa3\x22\xf3\x82\xe0\x12\x73\xe3\xf1\x72\xe0\x12"
        !          87558:             "\x10\x63\xe3\x72\xe0\x12\x73\xe3\x72\xe0\x12\x73\xe3"
        !          87559:             "\x63\xe3\x63\xe3\x63\xe3\x72\xe0\x12\x70" }  },
        !          87560:       /* --- pixel bitmap for wncyr600 char#35 (noname) --- */
        !          87561:       {  35,96300,                      /* character number, location */
        !          87562:          62, 5,    0, 5,      /* topleft row,col, and botleft row,col */
        !          87563:           { 63,   62, 3,357, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          87564:             "\xf2\x9e\x0b\xe0\xe0\x10\xe0\x39\xe0\xe0\x90\xf4\xe0"
        !          87565:             "\x47\xe0\xe0\xa0\xf2\x2e\x0e\x0e\x09\xa0\x26\xa7\xe0"
        !          87566:             "\x5a\xa4\xd7\xe0\xa5\xa3\xe7\xe0\xb4\xa3\xe7\xe0\xc3"
        !          87567:             "\xa2\xe0\x17\xe0\xd2\xa2\xe0\x17\xe0\xd3\x80\xf1\x12"
        !          87568:             "\xe0\x17\xe0\xe2\x80\xf8\xe0\x47\xe0\xe0\xa0\xe0\x4e"
        !          87569:             "\x0e\x02\xe0\xe0\x5e\x0e\x06\xe0\xe0\x17\xe0\x78\xe0"
        !          87570:             "\xd7\xe0\x98\xe0\xb7\xe0\xa8\xe0\xa7\xe0\xb8\xe0\x97"
        !          87571:             "\xe0\xc8\xe0\x87\xe0\xd8\xe0\x77\xe0\xd9\xe0\x67\xe0"
        !          87572:             "\xe8\xe0\x67\xe0\xe9\x10\xf1\xe0\x47\xe0\xe0\x18\x10"
        !          87573:             "\xf6\xe0\x47\xe0\xe0\x19\xe0\x47\xe0\xe0\x18\x10\xf1"
        !          87574:             "\xe0\x47\xe0\xe9\x10\xe0\x47\xe0\xd9\xe0\x67\xe0\xd8"
        !          87575:             "\xe0\x77\xe0\xc9\xe0\x77\xe0\xb9\xe0\x87\xe0\xa9\xe0"
        !          87576:             "\x97\xe0\x8a\xe0\x99\xe0\x5a\xe0\x3e\x0e\x0e\x03\xe0"
        !          87577:             "\x4e\x0e\x0e\x01\xe0\x6e\x0e\x0b\xe0\x10" }  },
        !          87578:       /* --- pixel bitmap for wncyr600 char#36 (noname) --- */
        !          87579:       {  36,65612,                      /* character number, location */
        !          87580:          55, 2,   41, 2,      /* topleft row,col, and botleft row,col */
        !          87581:           { 37,   14, 3,65, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          87582:             "\x25\xe0\x95\x37\xe0\x77\x1f\x39\xe0\x59\x08\xe0\x78"
        !          87583:             "\x16\xe0\x96\x23\xe0\xe0\x13\x34\xe0\xb4\x57\xe0\x37"
        !          87584:             "\x8e\x0d\xce\x09\xe0\x5d\xc3" }  },
        !          87585:       /* --- pixel bitmap for wncyr600 char#37 (noname) --- */
        !          87586:       {  37,41231,                      /* character number, location */
        !          87587:          62, 6,   -5, 6,      /* topleft row,col, and botleft row,col */
        !          87588:           { 63,   67, 3,659, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          87589:             "\xa5\xe0\xe0\xa2\xe0\x29\xe0\xe0\x74\xd4\x54\xe0\xe0"
        !          87590:             "\x45\xc4\x83\xe0\xe0\x26\xb4\xa3\xe0\xe6\xb5\xb4\xe0"
        !          87591:             "\xb6\xb5\xc5\xe0\x88\xb4\xe7\xe0\x39\xb5\xe3\x16\xb5"
        !          87592:             "\x15\xc5\xe0\x12\x4e\x03\x25\xd5\xe0\x12\x7b\x46\xc5"
        !          87593:             "\xe0\x23\xe0\x75\xd5\xe0\x32\xe0\x65\xe5\xe0\x32\xe0"
        !          87594:             "\x56\xe5\xe0\x32\xe0\x46\xe0\x15\xe0\x32\xe0\x45\xe0"
        !          87595:             "\x25\xe0\x32\xe0\x35\xe0\x35\xe0\x32\xe0\x26\xe0\x35"
        !          87596:             "\xe0\x32\xe0\x25\xe0\x45\xe0\x32\xe0\x15\xe0\x55\xe0"
        !          87597:             "\x32\xe6\xe0\x55\xe0\x23\xd6\xe0\x75\xe0\x12\xe5\xe0"
        !          87598:             "\x85\xe0\x12\xd5\xe0\x95\xe3\xc6\xe0\xa4\xe2\xd5\xe0"
        !          87599:             "\xb5\xc3\xc5\xe0\xd5\xb2\xc6\xe0\xe4\xa3\xb6\xe0\xe0"
        !          87600:             "\x24\x83\xc5\xe0\xe0\x44\x54\xc5\xe0\xe0\x79\xd6\xe0"
        !          87601:             "\xe0\x95\xe0\x15\xe0\xe0\xe0\xe0\x15\xe0\x15\xe0\xe0"
        !          87602:             "\x96\xd9\xe0\xe0\x66\xc4\x54\xe0\xe0\x45\xc4\x83\xe0"
        !          87603:             "\xe0\x25\xc4\xa3\xe0\xe6\xb5\xb2\xe0\xe5\xc4\xc3\xe0"
        !          87604:             "\xc5\xc5\xd2\xe0\xb6\xc4\xe3\xe0\x96\xc5\xe0\x12\xe0"
        !          87605:             "\x95\xd5\xe0\x12\xe0\x85\xe4\xe0\x23\xe0\x66\xd5\xe0"
        !          87606:             "\x32\xe0\x65\xe5\xe0\x32\xe0\x55\xe0\x15\xe0\x32\xe0"
        !          87607:             "\x46\xe0\x15\xe0\x32\xe0\x36\xe0\x25\xe0\x32\xe0\x35"
        !          87608:             "\xe0\x35\xe0\x32\xe0\x25\xe0\x45\xe0\x32\xe0\x16\xe0"
        !          87609:             "\x45\xe0\x32\xe0\x15\xe0\x55\xe0\x32\xe5\xe0\x65\xe0"
        !          87610:             "\x32\xd6\xe0\x74\xe0\x23\xc6\xe0\x85\xe0\x12\xd5\xe0"
        !          87611:             "\x95\xe0\x12\xc5\xe0\xb4\xe3\xb6\xe0\xb5\xd2\xc5\xe0"
        !          87612:             "\xd4\xc3\xb5\xe0\xe5\xb2\xb6\xe0\xe0\x14\xa3\xa6\xe0"
        !          87613:             "\xe0\x34\x83\xb5\xe0\xe0\x54\x54\xc4\xe0\xe0\x89\xe0"
        !          87614:             "\x12\xe0\xe0\xb5\x90" }  },
        !          87615:       /* --- pixel bitmap for wncyr600 char#38 (noname) --- */
        !          87616:       {  38,66291,                      /* character number, location */
        !          87617:          58,19,   43,19,      /* topleft row,col, and botleft row,col */
        !          87618:           { 16,   15, 3,33, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          87619:             "\xb4\x10\xf1\xa6\x97\x88\x78\x77\x96\x96\x95\xa5\xa5"
        !          87620:             "\xa4\xc3\xd2\xd3" }  },
        !          87621:       /* --- pixel bitmap for wncyr600 char#39 (noname) --- */
        !          87622:       {  39,42251,                      /* character number, location */
        !          87623:          58, 9,   33, 9,      /* topleft row,col, and botleft row,col */
        !          87624:           { 10,   25, 3,49, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          87625:             "\x33\x57\x2f\x19\x1f\x2a\x19\x33\x22\xf3\x82\x73\xf1"
        !          87626:             "\x72\x10\x63\x72\x73\x72\x73\x63\x63\x63\x72\x74" }  },
        !          87627:       /* --- pixel bitmap for wncyr600 char#40 (noname) --- */
        !          87628:       {  40,42905,                      /* character number, location */
        !          87629:          62,10,  -20,10,      /* topleft row,col, and botleft row,col */
        !          87630:           { 20,   82, 3,224, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          87631:             "\xe0\x42\xe0\x33\xe0\x23\xe0\x14\xe0\x14\xe0\x14\xe0"
        !          87632:             "\x23\xe0\x24\xe0\x14\xe0\x14\xe0\x15\xe0\x14\x80\xf1"
        !          87633:             "\x74\x90\xf1\x64\xa0\x55\xe0\x14\xe0\x15\xe0\x14\xc0"
        !          87634:             "\xf1\x35\xc0\x34\xd0\xf2\x25\xd0\x24\xe0\xf4\x15\xe0"
        !          87635:             "\x14\xe0\x1f\xe5\xe0\x15\xe0\x24\xe0\x10\xf4\x15\xe0"
        !          87636:             "\x24\xe0\xf2\x25\xd0\x34\xd0\xf1\x35\xc0\x44\xe0\x25"
        !          87637:             "\xe0\x24\xe0\x25\xa0\xf1\x64\xa0\xf1\x74\x90\x84\xe0"
        !          87638:             "\x25\xe0\x24\xe0\x34\xe0\x34\xe0\x33\xe0\x34\xe0\x34"
        !          87639:             "\xe0\x34\xe0\x43\xe0\x43\xe0\x42" }  },
        !          87640:       /* --- pixel bitmap for wncyr600 char#41 (noname) --- */
        !          87641:       {  41,43672,                      /* character number, location */
        !          87642:          62, 6,  -20, 6,      /* topleft row,col, and botleft row,col */
        !          87643:           { 20,   82, 3,227, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          87644:             "\x02\xe0\x43\xe0\x43\xe0\x44\xe0\x34\xe0\x34\xe0\x33"
        !          87645:             "\xe0\x34\xe0\x34\xe0\x34\xe0\x25\xe0\x24\x80\xf1\x94"
        !          87646:             "\x70\xf1\xa4\x60\xa5\xe0\x24\xe0\x25\xe0\x24\x40\xf1"
        !          87647:             "\xc5\x30\xd4\x30\xf2\xd5\x20\xe4\x20\xf4\xe5\x10\xe0"
        !          87648:             "\x14\x10\xfe\xe0\x15\xe0\x15\xe0\x14\x10\xf4\xe5\x10"
        !          87649:             "\xe4\x20\xf2\xd5\x20\xd4\x30\xf1\xc5\x30\xc4\xe0\x15"
        !          87650:             "\xe0\x14\xe0\x15\x50\xf1\xa4\x60\xf1\x94\x70\x84\xe0"
        !          87651:             "\x15\xe0\x14\xe0\x14\xe0\x14\xe0\x23\xe0\x24\xe0\x14"
        !          87652:             "\xe0\x14\xe0\x13\xe0\x23\xe0\x32\xe0\x40" }  },
        !          87653:       /* --- pixel bitmap for wncyr600 char#42 (noname) --- */
        !          87654:       {  42,44489,                      /* character number, location */
        !          87655:          62, 7,   26, 7,      /* topleft row,col, and botleft row,col */
        !          87656:           { 32,   36, 3,133, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          87657:             "\xf1\xe4\xe0\xe5\xd0\xf4\xe4\xe4\xa4\xaa\x84\x8d\x74"
        !          87658:             "\x7e\x01\x64\x68\x19\x44\x49\x57\x42\x47\xa7\x22\x27"
        !          87659:             "\xe6\x12\x16\xe0\x4c\xa0\xf1\xc8\xc0\xac\xe0\x46\x12"
        !          87660:             "\x16\xe7\x22\x27\xa7\x42\x47\x59\x44\x49\x18\x64\x6e"
        !          87661:             "\x01\x74\x7d\x84\x8a\xa4\xa4\xf4\xe4\xe0\xe5\xd0\xf1"
        !          87662:             "\xe4\xe0" }  },
        !          87663:       /* --- pixel bitmap for wncyr600 char#43 (noname) --- */
        !          87664:       {  43,101579,                     /* character number, location */
        !          87665:          65, 5,    0, 5,      /* topleft row,col, and botleft row,col */
        !          87666:           { 49,   65, 3,275, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          87667:             "\x62\xe2\xe0\xb0\xf1\x63\xc3\xe0\xb0\x73\xa3\xe0\xe0"
        !          87668:             "\x54\x84\xe0\xe0\x64\x64\xe0\xe0\x75\x45\xe0\xe0\x84"
        !          87669:             "\x44\xe0\xe0\x95\x25\xe0\xe0\xf1\xaa\xe0\xe0\x10\xf1"
        !          87670:             "\xb8\xe0\xe0\x20\xf6\xc6\xe0\xe0\x3f\x2e\x0e\x02\xe0"
        !          87671:             "\x50\xfc\xc6\xe0\xe0\x30\xce\x0b\xe0\xae\x0e\xe0\x76"
        !          87672:             "\xdb\xe0\x56\xe0\x38\xe0\x46\xe0\x48\xe0\x36\xe0\x67"
        !          87673:             "\xe0\x26\xe0\x77\xe0\x16\xe0\x87\xe6\xe0\x88\x10\xf1"
        !          87674:             "\xc6\xe0\x97\x10\xf5\xc6\xe0\xa7\xc6\xe0\x98\xf1\xc6"
        !          87675:             "\xe0\x97\x10\xc6\xe0\x87\xe6\xe0\x78\xe6\xe0\x68\xe0"
        !          87676:             "\x16\xe0\x58\xe0\x26\xe0\x39\xe0\x27\xeb\xce\x0e\x07"
        !          87677:             "\xee\x0e\x05\xe0\x2e\x0e\x02\xd5" }  },
        !          87678:       /* --- pixel bitmap for wncyr600 char#44 (noname) --- */
        !          87679:       {  44,45246,                      /* character number, location */
        !          87680:           9, 9,  -16, 9,      /* topleft row,col, and botleft row,col */
        !          87681:           { 10,   25, 3,49, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          87682:             "\x33\x57\x2f\x19\x1f\x2a\x19\x33\x22\xf3\x82\x73\xf1"
        !          87683:             "\x72\x10\x63\x72\x73\x72\x73\x63\x63\x63\x72\x72" }  },
        !          87684:       /* --- pixel bitmap for wncyr600 char#45 (noname) --- */
        !          87685:       {  45,45817,                      /* character number, location */
        !          87686:          21, 2,   16, 2,      /* topleft row,col, and botleft row,col */
        !          87687:           { 23,    5, 3, 6, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          87688:             "\xf4\x0e\x09" }  },
        !          87689:       /* --- pixel bitmap for wncyr600 char#46 (noname) --- */
        !          87690:       {  46,46346,                      /* character number, location */
        !          87691:           9, 9,    0, 9,      /* topleft row,col, and botleft row,col */
        !          87692:           {  9,    9, 3,13, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          87693:             "\x33\x47\x1f\x49\x17\x43\x39" }  },
        !          87694:       /* --- pixel bitmap for wncyr600 char#47 (noname) --- */
        !          87695:       {  47,46932,                      /* character number, location */
        !          87696:          62, 6,  -21, 6,      /* topleft row,col, and botleft row,col */
        !          87697:           { 34,   83, 3,383, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          87698:             "\xe0\xe0\x32\xe0\xe0\x34\xf1\xe0\xe0\x15\xe0\xe0\x14"
        !          87699:             "\x10\xf1\xe0\xe5\x10\xe0\xe4\x20\xf1\xe0\xd5\x20\xf1"
        !          87700:             "\xe0\xc5\x30\xe0\xc4\x40\xf1\xe0\xb5\x40\xf1\xe0\xa5"
        !          87701:             "\x50\xe0\xa4\x60\xf1\xe0\x95\x60\xe0\x94\x70\xf1\xe0"
        !          87702:             "\x85\x70\xf1\xe0\x75\x80\xe0\x74\x90\xf1\xe0\x65\x90"
        !          87703:             "\xe0\x64\xa0\xf1\xe0\x55\xa0\xf1\xe0\x45\xb0\xe0\x44"
        !          87704:             "\xc0\xf1\xe0\x35\xc0\xe0\x34\xd0\xf1\xe0\x25\xd0\xf1"
        !          87705:             "\xe0\x15\xe0\xe0\x14\xe0\x10\xf1\xe5\xe0\x10\xf1\xd5"
        !          87706:             "\xe0\x20\xd4\xe0\x30\xf1\xc5\xe0\x30\xc4\xe0\x40\xf1"
        !          87707:             "\xb5\xe0\x40\xf1\xa5\xe0\x50\xa4\xe0\x60\xf1\x95\xe0"
        !          87708:             "\x60\x94\xe0\x70\xf1\x85\xe0\x70\xf1\x75\xe0\x80\x74"
        !          87709:             "\xe0\x90\xf1\x65\xe0\x90\x64\xe0\xa0\xf1\x55\xe0\xa0"
        !          87710:             "\xf1\x45\xe0\xb0\x44\xe0\xc0\xf1\x35\xe0\xc0\xf1\x25"
        !          87711:             "\xe0\xd0\x24\xe0\xe0\xf1\x15\xe0\xe0\x14\xe0\xe0\x1f"
        !          87712:             "\x15\xe0\xe0\x14\xe0\xe0\x32\xe0\xe0\x35" }  },
        !          87713:       /* --- pixel bitmap for wncyr600 char#48 (noname) --- */
        !          87714:       {  48,52771,                      /* character number, location */
        !          87715:          55, 5,   -2, 5,      /* topleft row,col, and botleft row,col */
        !          87716:           { 36,   57, 3,177, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          87717:             "\xe8\xe0\xbe\xe0\x66\x66\xe0\x35\xa5\xe0\x15\xc5\xd5"
        !          87718:             "\xe5\xb5\xe0\x25\x50\xf1\x45\xe0\x45\x40\xf1\x35\xe0"
        !          87719:             "\x65\x30\xf2\x26\xe0\x66\x20\xf4\x16\xe0\x86\x1f\xe7"
        !          87720:             "\xe0\x87\x0f\x37\xe0\x87\xf3\x16\xe0\x86\x10\x17\xe0"
        !          87721:             "\x67\x10\xf2\x26\xe0\x66\x20\x35\xe0\x65\x66\xe0\x46"
        !          87722:             "\x30\xf1\x45\xe0\x45\x40\x55\xe0\x25\xb5\xe5\xd5\xc5"
        !          87723:             "\xe0\x15\xa5\xe0\x36\x66\xe0\x6e\xe0\xb8\xe5" }  },
        !          87724:       /* --- pixel bitmap for wncyr600 char#49 (noname) --- */
        !          87725:       {  49,53779,                      /* character number, location */
        !          87726:          55,10,    0,10,      /* topleft row,col, and botleft row,col */
        !          87727:           { 28,   55, 3,58, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          87728:             "\xe3\xe0\xa4\xe0\x95\xe0\x77\xe0\x4a\xbe\x03\xba\x16"
        !          87729:             "\xb7\x46\xb0\xfe\xb6\xb0\xfe\xb6\xb0\xfc\xb6\xb0\x9a"
        !          87730:             "\x9f\x2e\x0e" }  },
        !          87731:       /* --- pixel bitmap for wncyr600 char#50 (noname) --- */
        !          87732:       {  50,54900,                      /* character number, location */
        !          87733:          55, 5,    0, 5,      /* topleft row,col, and botleft row,col */
        !          87734:           { 36,   55, 3,273, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          87735:             "\xd9\xe0\xae\x01\xe0\x5e\x05\xe0\x16\x89\xc4\xd9\x93"
        !          87736:             "\xe0\x29\x73\xe0\x49\x53\xe0\x68\x52\xe0\x88\x33\xe0"
        !          87737:             "\x98\x22\xe0\xa8\x17\xe0\x68\x18\xe0\x68\x0f\x49\xe0"
        !          87738:             "\x58\x17\xe0\x68\x33\xe0\x88\xe0\xe8\xf1\xe0\xd8\x10"
        !          87739:             "\xf1\xe0\xc8\x20\xe0\xb8\xe0\xe7\xe0\xe8\xe0\xd8\xe0"
        !          87740:             "\xe7\xe0\xe7\xe0\xe6\xe0\xe0\x16\xe0\xe0\x16\xe0\xe0"
        !          87741:             "\x16\xe0\xe0\x15\xe0\xe0\x25\xe0\xe0\x25\xe0\xe0\x25"
        !          87742:             "\xe0\xe0\x25\xe0\xe0\x24\xe0\xe0\x34\xe0\x52\xa4\xe0"
        !          87743:             "\x62\x94\xe0\x72\x84\xe0\x72\x84\xe0\x82\x73\xe0\xa2"
        !          87744:             "\x63\xe0\xb2\x53\xe0\xb3\x4e\x0e\x04\x3e\x0e\x05\x2e"
        !          87745:             "\x0e\x05\x2f\x2e\x0e\x06\x20" }  },
        !          87746:       /* --- pixel bitmap for wncyr600 char#51 (noname) --- */
        !          87747:       {  51,56116,                      /* character number, location */
        !          87748:          55, 5,   -2, 5,      /* topleft row,col, and botleft row,col */
        !          87749:           { 36,   57, 3,281, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          87750:             "\xd9\xe0\xae\x01\xe0\x5e\x06\xe7\x88\xc4\xe8\x94\xe0"
        !          87751:             "\x28\x73\xe0\x57\x74\xe0\x48\x57\xe0\x29\x20\xf1\x28"
        !          87752:             "\xe0\x28\x20\x29\xe0\x18\x20\xf1\x28\xe0\x28\x20\x36"
        !          87753:             "\xe0\x38\x73\xe0\x48\x20\xf1\xe0\xb8\x30\xe0\xb7\xe0"
        !          87754:             "\xe7\xe0\xe8\xe0\xe7\xe0\xe6\xe0\xe0\x16\xe0\xd7\xe0"
        !          87755:             "\x8c\xe0\xae\xe0\xe0\x37\xe0\xe0\x37\xe0\xe0\x28\xe0"
        !          87756:             "\xe0\x18\x40\xf1\xe0\xb8\x30\xe0\xc8\x20\xf1\xe0\xc9"
        !          87757:             "\x10\xe0\xd8\x10\xf1\xe0\xd9\x33\xe0\x79\x17\xe0\x59"
        !          87758:             "\x0f\x39\xe0\x49\x09\xe0\x39\x18\xe0\x49\x26\xe0\x58"
        !          87759:             "\x33\xe0\x79\x43\xe0\x68\x54\xe0\x48\x74\xe0\x28\x95"
        !          87760:             "\xd8\xc6\x89\xee\x06\xe0\x4e\x02\xe0\xa9\xe0" }  },
        !          87761:       /* --- pixel bitmap for wncyr600 char#52 (noname) --- */
        !          87762:       {  52,57230,                      /* character number, location */
        !          87763:          56, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          87764:           { 40,   56, 3,263, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          87765:             "\xe0\xd3\xa0\xf1\xe0\xc4\xa0\xe0\xb5\xa0\xf1\xe0\xa6"
        !          87766:             "\xa0\xe0\x97\xe0\xe0\x48\xe0\xe0\x39\xe0\xe0\x32\x16"
        !          87767:             "\xe0\xe0\x22\x26\xe0\xe0\x13\x26\xe0\xe3\x36\xe0\xe2"
        !          87768:             "\x46\xe0\xd2\x56\xe0\xc3\x56\xe0\xc2\x66\xe0\xb2\x76"
        !          87769:             "\xe0\xa3\x76\xe0\x93\x86\xe0\x92\x96\xe0\x82\xa6\xe0"
        !          87770:             "\x73\xa6\xe0\x72\xb6\xe0\x62\xc6\xe0\x53\xc6\xe0\x43"
        !          87771:             "\xd6\xe0\x42\xe6\xe0\x32\xe0\x16\xe0\x23\xe0\x16\xe0"
        !          87772:             "\x13\xe0\x26\xe0\x12\xe0\x36\xe2\xe0\x46\xd3\xe0\x46"
        !          87773:             "\xd2\xe0\x56\xc2\xe0\x66\xb3\xe0\x66\xa3\xe0\x76\xaf"
        !          87774:             "\x2e\x0e\x0c\xfa\xe0\xa6\xa0\xe0\x98\x90\xf2\xe0\x1e"
        !          87775:             "\x0a\x16" }  },
        !          87776:       /* --- pixel bitmap for wncyr600 char#53 (noname) --- */
        !          87777:       {  53,58456,                      /* character number, location */
        !          87778:          55, 5,   -2, 5,      /* topleft row,col, and botleft row,col */
        !          87779:           { 36,   57, 3,249, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          87780:             "\x52\xe0\x92\x95\xe0\x44\x98\xb7\x50\xf1\x5e\x0b\x60"
        !          87781:             "\x5e\x09\xde\x08\xee\x07\xe0\x1e\x05\xe0\x32\x3b\xe0"
        !          87782:             "\x10\xf9\x52\xe0\xe0\x10\x52\x88\xe0\x42\x5e\xe0\x12"
        !          87783:             "\x35\x76\xd2\x23\xc5\xc2\x13\xe5\xb5\xe0\x25\xa4\xe0"
        !          87784:             "\x36\x93\xe0\x56\x82\xe0\x67\xe0\xe0\x26\x20\xf1\xe0"
        !          87785:             "\xe7\x10\xe0\xe0\x16\x10\xf3\xe0\xe0\x17\x32\xe0\xa7"
        !          87786:             "\x16\xe0\x87\x0f\x38\xe0\x77\x08\xe0\x67\x17\xe0\x77"
        !          87787:             "\x15\xe0\x97\x22\xe0\xb6\x33\xe0\x97\x43\xe0\x86\x53"
        !          87788:             "\xe0\x76\x73\xe0\x56\x94\xe0\x26\xb4\xe6\xd6\x88\xe0"
        !          87789:             "\x2e\x04\xe0\x6e\xe0\xb8\xe0\x10" }  },
        !          87790:       /* --- pixel bitmap for wncyr600 char#54 (noname) --- */
        !          87791:       {  54,59548,                      /* character number, location */
        !          87792:          55, 5,   -2, 5,      /* topleft row,col, and botleft row,col */
        !          87793:           { 36,   57, 3,253, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          87794:             "\xe0\x58\xe0\xbd\xe0\x7e\x03\xe0\x37\x85\xe0\x16\xd3"
        !          87795:             "\xc7\xc5\xb6\xd7\x96\xd8\x87\xd8\x86\xe8\x76\xe0\x18"
        !          87796:             "\x67\xe0\x26\x76\xe0\x44\x40\xf1\x37\xe0\xc0\xf2\x27"
        !          87797:             "\xe0\xd0\x18\xe0\xe7\xe0\xe0\x17\x78\xe7\x5d\xa8\x43"
        !          87798:             "\x75\x98\x33\x96\x78\x23\xb6\x68\x13\xd6\x5b\xe0\x16"
        !          87799:             "\x4a\xe0\x27\x3a\xe0\x37\x29\xe0\x47\x29\xe0\x48\x1f"
        !          87800:             "\x19\xe0\x57\x1f\x38\xe0\x68\xf4\x17\xe0\x68\xf1\x27"
        !          87801:             "\xe0\x58\x27\xe0\x57\x46\xe0\x57\x46\xe0\x47\x57\xe0"
        !          87802:             "\x37\x66\xe0\x36\x86\xe0\x17\x86\xe7\xa6\xc7\xc6\xa7"
        !          87803:             "\xe7\x77\xe0\x3e\x03\xe0\x7d\xe0\xb8\xe0" }  },
        !          87804:       /* --- pixel bitmap for wncyr600 char#55 (noname) --- */
        !          87805:       {  55,60672,                      /* character number, location */
        !          87806:          56, 6,   -2, 6,      /* topleft row,col, and botleft row,col */
        !          87807:           { 38,   58, 3,249, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          87808:             "\x22\xe0\xe0\x83\xe0\xe0\x75\xe0\xe0\x30\xf2\x2e\x0e"
        !          87809:             "\x08\x2e\x0e\x07\x10\xf1\x1e\x0e\x07\x20\x13\xe0\xe3"
        !          87810:             "\x42\xe0\xe3\x52\xe0\xe2\x62\xe0\xd3\x62\xe0\xc3\x62"
        !          87811:             "\xe0\xc3\x72\xe0\xb3\x82\xe0\xb2\xe0\xe0\x73\xe0\xe0"
        !          87812:             "\x63\xe0\xe0\x63\xe0\xe0\x63\xe0\xe0\x72\xe0\xe0\x73"
        !          87813:             "\xd0\xf1\xe0\x73\xe0\xe0\x63\xe0\xe0\x64\xe0\xe0\x63"
        !          87814:             "\xe0\xe0\x64\xe0\xe0\x63\xe0\x30\xf1\xe0\x34\xe0\x30"
        !          87815:             "\xe0\x25\xe0\xe0\x54\xe0\x40\xf1\xe0\x15\xe0\x40\xf2"
        !          87816:             "\xe6\xe0\x40\xf2\xd6\xe0\x50\xf4\xc7\xe0\x50\xf8\xb8"
        !          87817:             "\xe0\x50\xc6\xe0\xe0\x54\xe0\x70" }  },
        !          87818:       /* --- pixel bitmap for wncyr600 char#56 (noname) --- */
        !          87819:       {  56,61750,                      /* character number, location */
        !          87820:          55, 5,   -2, 5,      /* topleft row,col, and botleft row,col */
        !          87821:           { 36,   57, 3,287, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          87822:             "\xe8\xe0\xbe\x01\xe0\x5e\x05\xe0\x17\x87\xd5\xe6\xa4"
        !          87823:             "\xe0\x36\x84\xe0\x55\x83\xe0\x75\x64\xe0\x84\x63\xe0"
        !          87824:             "\x95\x20\xf2\x24\xe0\xa4\x20\xf1\x25\xe0\x94\x20\x26"
        !          87825:             "\xe0\x75\x47\xe0\x64\x67\xe0\x45\x69\xe0\x24\x7a\xe5"
        !          87826:             "\x8b\xb5\xac\x84\xdc\x64\xe0\x1d\x25\xe0\x3e\x03\xe0"
        !          87827:             "\x7d\xe0\xbd\xe0\x9e\x01\xe0\x5e\x04\xe0\x25\x4d\xd4"
        !          87828:             "\x7d\xb4\xac\x85\xcc\x65\xe0\x1b\x54\xe0\x49\x44\xe0"
        !          87829:             "\x69\x25\xe0\x87\x24\xe0\xa7\x14\xe0\xb6\x0f\x14\xe0"
        !          87830:             "\xd5\x0f\x34\xe0\xe4\x05\xe0\xd3\x10\xf1\x14\xe0\xc4"
        !          87831:             "\x10\x15\xe0\xa4\x45\xe0\x94\x55\xe0\x74\x75\xe0\x45"
        !          87832:             "\x96\xe0\x15\xb8\x96\xe0\x1e\x06\xe0\x4e\x02\xe0\x99"
        !          87833:             "\xe0" }  },
        !          87834:       /* --- pixel bitmap for wncyr600 char#57 (noname) --- */
        !          87835:       {  57,62868,                      /* character number, location */
        !          87836:          55, 5,   -2, 5,      /* topleft row,col, and botleft row,col */
        !          87837:           { 36,   57, 3,255, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          87838:             "\xe8\xe0\xbe\xe0\x6e\x04\xe0\x37\x67\xe7\xa6\xc7\xc6"
        !          87839:             "\xa7\xe6\x96\xe0\x17\x77\xe0\x26\x67\xe0\x37\x57\xe0"
        !          87840:             "\x46\x48\xe0\x47\x20\xf1\x17\xe0\x57\x28\xe0\x58\x1f"
        !          87841:             "\x38\xe0\x67\x1f\x48\xe0\x68\xf1\x17\xe0\x59\x18\xe0"
        !          87842:             "\x49\x27\xe0\x49\x27\xe0\x3a\x37\xe0\x2a\x46\xe0\x1b"
        !          87843:             "\x56\xd3\x18\x66\xb3\x28\x76\x93\x38\x95\x73\x48\xad"
        !          87844:             "\x57\xe8\x77\xe0\xe0\x17\xe0\xe8\x10\xf2\xe0\xd7\x20"
        !          87845:             "\xe0\xd6\xe0\xe0\x17\x74\xe0\x46\x76\xe0\x27\x68\xe0"
        !          87846:             "\x16\x78\xe7\x78\xe6\x88\xd6\x97\xd6\xb5\xd6\xc3\xe6"
        !          87847:             "\xe5\x97\xe0\x2e\x04\xe0\x6e\xe0\xb8\xe0\x45" }  },
        !          87848:       /* --- pixel bitmap for wncyr600 char#58 (noname) --- */
        !          87849:       {  58,47710,                      /* character number, location */
        !          87850:          36, 9,    0, 9,      /* topleft row,col, and botleft row,col */
        !          87851:           {  9,   36, 3,35, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          87852:             "\x33\x47\x1f\x49\x17\x43\x30\xfe\x90\xf2\x90\x33\x47"
        !          87853:             "\x1f\x49\x17\x43\x30" }  },
        !          87854:       /* --- pixel bitmap for wncyr600 char#59 (noname) --- */
        !          87855:       {  59,48467,                      /* character number, location */
        !          87856:          36, 9,  -16, 9,      /* topleft row,col, and botleft row,col */
        !          87857:           {  9,   52, 3,69, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          87858:             "\x33\x47\x1f\x49\x17\x43\x30\xfe\x90\xf2\x90\x33\x47"
        !          87859:             "\x18\x1f\x39\x18\x33\x12\xf3\x72\x63\xf1\x62\x10\x53"
        !          87860:             "\x62\x63\x62\x63\x62\x63\x53\x62\x65" }  },
        !          87861:       /* --- pixel bitmap for wncyr600 char#60 < --- */
        !          87862:       {  60,66995,                      /* character number, location */
        !          87863:          38, 3,   -2, 3,      /* topleft row,col, and botleft row,col */
        !          87864:           { 42,   40, 3,227, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          87865:             "\xe0\xa2\xe0\xe0\xa5\xe0\xe0\x86\xe0\xe0\x76\xe0\xe0"
        !          87866:             "\x76\xd4\xe0\x37\xd5\xe0\x27\xc7\xe0\x17\xc7\xe0\x17"
        !          87867:             "\xc7\xe8\xb7\xe0\x18\xb7\xe0\x18\xa8\xe0\x17\xb8\xe8"
        !          87868:             "\xb8\xe8\xa8\xe0\x18\xa8\xe0\x18\xa8\xe9\x99\xe9\x99"
        !          87869:             "\xef\x19\x98\xe0\x20\x19\x99\xe0\x29\x99\xe0\x38\xa8"
        !          87870:             "\xe0\x38\xa8\xe0\x38\xa8\xe0\x38\xb8\xe0\x37\xb8\xe0"
        !          87871:             "\x38\xa8\xe0\x38\xb7\xe0\x38\xb7\xe0\x47\xc7\xe0\x37"
        !          87872:             "\xc7\xe0\x37\xc7\xe0\x37\xd5\xe0\x56\xd4\xe0\x66\xe0"
        !          87873:             "\xe0\x96\xe0\xe0\x95\xe0\xe0\xb2\xe0\x25" }  },
        !          87874:       /* --- pixel bitmap for wncyr600 char#61 (noname) --- */
        !          87875:       {  61,102488,                     /* character number, location */
        !          87876:          37, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          87877:           { 19,   37, 3,34, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          87878:             "\x76\x60\xf2\x1c\x60\x58\x60\xfe\x76\x60\xfc\x76\x60"
        !          87879:             "\x68\x5f\x2e\x05" }  },
        !          87880:       /* --- pixel bitmap for wncyr600 char#62 > --- */
        !          87881:       {  62,67724,                      /* character number, location */
        !          87882:          38, 6,   -2, 6,      /* topleft row,col, and botleft row,col */
        !          87883:           { 42,   40, 3,227, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          87884:             "\xe0\x22\xe0\xe0\xb5\xe0\xe0\x96\xe0\xe0\x96\xe0\x64"
        !          87885:             "\xd6\xe0\x55\xd7\xe0\x37\xc7\xe0\x37\xc7\xe0\x37\xc7"
        !          87886:             "\xe0\x47\xb8\xe0\x37\xb8\xe0\x38\xa8\xe0\x38\xb7\xe0"
        !          87887:             "\x38\xb8\xe0\x38\xa8\xe0\x38\xa8\xe0\x38\xa8\xe0\x39"
        !          87888:             "\x99\xe0\x29\x99\x10\xf1\xe0\x28\x99\xe9\x99\xe9\x99"
        !          87889:             "\xe8\xa8\xe0\x18\xa8\xe0\x18\xa8\xe8\xb8\xe8\xb7\xe0"
        !          87890:             "\x18\xa8\xe0\x17\xb8\xe0\x17\xb8\xe7\xc7\xe0\x17\xc7"
        !          87891:             "\xe0\x17\xc7\xe0\x25\xd7\xe0\x34\xd6\xe0\xe0\x76\xe0"
        !          87892:             "\xe0\x76\xe0\xe0\x85\xe0\xe0\xa2\xe0\xa5" }  },
        !          87893:       /* --- pixel bitmap for wncyr600 char#63 (noname) --- */
        !          87894:       {  63,49472,                      /* character number, location */
        !          87895:          59, 6,    0, 6,      /* topleft row,col, and botleft row,col */
        !          87896:           { 31,   59, 3,171, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          87897:             "\xaa\xe0\x4e\x03\xc5\x97\x93\xe6\x73\xe0\x27\x43\xe0"
        !          87898:             "\x46\x33\xe0\x57\x25\xe0\x46\x17\xe0\x37\x0f\x38\xe0"
        !          87899:             "\x27\x16\xe0\x37\x24\xe0\x37\xe0\xa7\x10\xf1\xe0\x87"
        !          87900:             "\x20\xe0\x77\xe0\x96\xe0\xa6\xe0\xa6\xe0\xb5\xe0\xb5"
        !          87901:             "\xe0\xb5\xe0\xc4\xe0\xc4\xc0\xf1\xe0\x13\xd0\xf2\xe3"
        !          87902:             "\xe0\xf9\xe2\xe0\x10\xf7\xe0\xe0\x30\xd3\xe0\xc7\xd0"
        !          87903:             "\xf4\xa9\xc0\xb7\xe0\xc3\xe0\x10" }  },
        !          87904:       /* --- pixel bitmap for wncyr600 char#64 (noname) --- */
        !          87905:       {  64,68544,                      /* character number, location */
        !          87906:          58,10,   44,10,      /* topleft row,col, and botleft row,col */
        !          87907:           { 26,   14, 3,57, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          87908:             "\xf2\x02\xe0\x82\x03\xe0\x63\xf1\x12\xe0\x62\x10\x13"
        !          87909:             "\xe0\x43\x33\xe0\x23\x53\xe3\x64\xc4\x76\x66\xae\xdc"
        !          87910:             "\xe0\x36\xa8" }  },
        !          87911:       /* --- pixel bitmap for wncyr600 char#65 A --- */
        !          87912:       {  65,28681,                      /* character number, location */
        !          87913:          60, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          87914:           { 60,   60, 3,390, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          87915:             "\xe0\xe0\x12\xe0\xe0\x10\xf2\xe0\xe4\xe0\xe0\xf1\xe0"
        !          87916:             "\xd6\xe0\xd0\xf2\xe0\xc8\xe0\xc0\xe0\xba\xe0\xb0\xf1"
        !          87917:             "\xe0\xb2\x17\xe0\xb0\xf1\xe0\xa2\x37\xe0\xa0\xe0\x93"
        !          87918:             "\x38\xe0\x90\xf1\xe0\x92\x57\xe0\x90\xe0\x82\x68\xe0"
        !          87919:             "\x80\xf1\xe0\x82\x77\xe0\x80\xf1\xe0\x72\x97\xe0\x70"
        !          87920:             "\xe0\x63\x98\xe0\x60\xf1\xe0\x62\xb7\xe0\x60\xe0\x52"
        !          87921:             "\xc8\xe0\x50\xf1\xe0\x52\xd7\xe0\x50\xf1\xe0\x42\xe0"
        !          87922:             "\x17\xe0\x40\xe0\x33\xe0\x18\xe0\x30\xf1\xe0\x32\xe0"
        !          87923:             "\x37\xe0\x30\xe0\x22\xe0\x48\xe0\x20\xf1\xe0\x22\xe0"
        !          87924:             "\x57\xe0\x20\xf1\xe0\x12\xe0\x77\xe0\x10\xf2\xee\x0e"
        !          87925:             "\x04\xe0\xd2\xe0\xa8\xd0\xf1\xd2\xe0\xb7\xd0\xf1\xc2"
        !          87926:             "\xe0\xd7\xc0\xb3\xe0\xd8\xb0\xf1\xb2\xe0\xe0\x17\xb0"
        !          87927:             "\xa2\xe0\xe0\x28\xa0\xf1\xa2\xe0\xe0\x37\xa0\x93\xe0"
        !          87928:             "\xe0\x47\xe0\x42\xe0\xe0\x57\xe0\x34\xe0\xe0\x48\xe7"
        !          87929:             "\xe0\xe0\x38\xca\xe0\xe0\x1a\x7f\x2e\x04\xe0\x5e\x09" }  },
        !          87930:       /* --- pixel bitmap for wncyr600 char#66 B --- */
        !          87931:       {  66,30265,                      /* character number, location */
        !          87932:          57, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          87933:           { 54,   57, 3,277, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          87934:             "\xf2\x0e\x0e\x0e\x05\x70\x89\xe0\x6a\xe0\x27\xe0\xa7"
        !          87935:             "\xe0\x27\xe0\xc6\xe0\x17\xe0\xd5\xe0\x17\xe0\xe4\x60"
        !          87936:             "\xf2\x97\xe0\xe0\x13\x60\xf2\x97\xe0\xe0\x22\x60\x97"
        !          87937:             "\xe0\xe0\x23\x50\xf3\x97\xe0\xe0\x32\x50\xf7\x97\xe0"
        !          87938:             "\xe0\xa0\x9e\x0e\x04\xe0\x87\xe0\x59\xe0\x57\xe0\x88"
        !          87939:             "\xe0\x37\xe0\xa8\xe0\x17\xe0\xb8\xe7\xe0\xc8\xd7\xe0"
        !          87940:             "\xd8\xc7\xe0\xd9\xb7\xe0\xe8\xb7\xe0\xe9\xa7\xe0\xe0"
        !          87941:             "\x18\x10\xf6\x97\xe0\xe0\x19\x97\xe0\xe0\x18\xa7\xe0"
        !          87942:             "\xe9\xa7\xe0\xe8\xb7\xe0\xd9\xb7\xe0\xc9\xc7\xe0\xb9"
        !          87943:             "\xd7\xe0\xa9\xe7\xe0\x8a\xe9\xe0\x5b\x7e\x0e\x0e\x03"
        !          87944:             "\x9e\x0e\x0e\x01\xbe\x0e\x0b\xe0\x10" }  },
        !          87945:       /* --- pixel bitmap for wncyr600 char#67 Ts --- */
        !          87946:       {  67, 1153,                      /* character number, location */
        !          87947:          57, 4,   -6, 4,      /* topleft row,col, and botleft row,col */
        !          87948:           { 62,   63, 2,44, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          87949:             "\xff\x02\x00\x19\x0a\x19\x02\x00\x08\x09\x1a\x09\x0a"
        !          87950:             "\x00\xff\x30\x09\x07\x1c\x07\x0b\x00\x08\x0a\x18\x0a"
        !          87951:             "\x0a\xff\x02\x3c\x02\x00\x32\x0a\x36\x08\x38\x06\x3a"
        !          87952:             "\x04\x3b\x04\x3d\x02" }  },
        !          87953:       /* --- pixel bitmap for wncyr600 char#68 D --- */
        !          87954:       {  68, 2365,                      /* character number, location */
        !          87955:          57, 1,   -6, 1,      /* topleft row,col, and botleft row,col */
        !          87956:           { 67,   63, 3,404, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          87957:             "\xf2\xe0\x5e\x0e\x0e\x04\x20\xe0\xc6\xe0\x1a\xe0\xe0"
        !          87958:             "\x94\xe0\x47\xb0\xf1\xe0\xe3\xe0\x47\xb0\xe0\xd4\xe0"
        !          87959:             "\x47\xb0\xf9\xe0\xd3\xe0\x57\xb0\xe0\xc4\xe0\x57\xb0"
        !          87960:             "\xf4\xe0\xc3\xe0\x67\xb0\xe0\xb4\xe0\x67\xb0\xf3\xe0"
        !          87961:             "\xb3\xe0\x77\xb0\xe0\xa4\xe0\x77\xb0\xf1\xe0\xa3\xe0"
        !          87962:             "\x87\xb0\xe0\x94\xe0\x87\xb0\xf1\xe0\x93\xe0\x97\xb0"
        !          87963:             "\xe0\x84\xe0\x97\xb0\xf1\xe0\x83\xe0\xa7\xb0\xe0\x74"
        !          87964:             "\xe0\xa7\xb0\xf1\xe0\x73\xe0\xb7\xb0\xe0\x64\xe0\xb7"
        !          87965:             "\xe0\xe0\x33\xe0\xc7\xe0\xe0\x24\xe0\xc7\xe0\xe0\x23"
        !          87966:             "\xe0\xd7\xe0\xe0\x14\xe0\xd7\xe0\xe0\x13\xe0\xe7\xe0"
        !          87967:             "\xe4\xe0\xe7\xe0\xe3\xe0\xe0\x17\xe0\xd4\xe0\xe0\x17"
        !          87968:             "\xe0\xd3\xe0\xe0\x27\xe0\xc4\xe0\xe0\x27\xe0\xb5\xe0"
        !          87969:             "\xe0\x27\xe0\x98\xe0\xcb\xa0\xf2\x4e\x0e\x0e\x0e\x05"
        !          87970:             "\x20\x47\xe0\xe0\xe0\x2a\x66\xe0\xe0\xe0\x58\x55\xe0"
        !          87971:             "\xe0\xe0\x96\x54\xe0\xe0\xe0\xc4\x43\xe0\xe0\xe0\xe0"
        !          87972:             "\x14\x23\xe0\xe0\xe0\xe0\x43" }  },
        !          87973:       /* --- pixel bitmap for wncyr600 char#69 E --- */
        !          87974:       {  69,31848,                      /* character number, location */
        !          87975:          57, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          87976:           { 55,   57, 3,327, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          87977:             "\xf2\x0e\x0e\x0e\x08\x50\x89\xe0\x8b\xe7\xe0\xd7\xe7"
        !          87978:             "\xe0\xe0\x16\xd7\xe0\xe0\x25\x40\xf1\x97\xe0\xe0\x34"
        !          87979:             "\x40\xf1\x97\xe0\xe0\x43\x40\xf2\x97\xe0\xe0\x52\x40"
        !          87980:             "\x97\xe0\xe0\x53\xc7\xe0\xe0\x62\x30\xf2\x97\xe0\x42"
        !          87981:             "\xe2\x30\xf2\x97\xe0\x42\xe0\x50\xf1\x97\xe0\x33\xe0"
        !          87982:             "\x50\x97\xe0\x24\xe0\xe7\xd7\xe0\x50\xf2\x9e\x0d\xe0"
        !          87983:             "\x50\x97\xd7\xe0\xe7\xe0\x24\xe0\x50\xf1\x97\xe0\x33"
        !          87984:             "\xe0\x50\xf1\x97\xe0\x42\xe0\x50\xf2\x97\xe0\x42\xe0"
        !          87985:             "\x32\x97\xe0\x42\xe0\x22\x10\xf2\x97\xe0\xe0\x82\x10"
        !          87986:             "\x97\xe0\xe0\x73\x10\xf1\x97\xe0\xe0\x72\x20\xf1\x97"
        !          87987:             "\xe0\xe0\x63\x20\xf1\x97\xe0\xe0\x54\x20\x97\xe0\xe0"
        !          87988:             "\x44\xc7\xe0\xe0\x35\xc7\xe0\xe0\x17\xc7\xe0\xd9\xb9"
        !          87989:             "\xe0\x9c\x3f\x2e\x0e\x0e\x09\x40" }  },
        !          87990:       /* --- pixel bitmap for wncyr600 char#70 F --- */
        !          87991:       {  70,33121,                      /* character number, location */
        !          87992:          57, 6,    0, 6,      /* topleft row,col, and botleft row,col */
        !          87993:           { 53,   57, 3,237, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          87994:             "\xf2\xce\x0e\x01\xc0\xe0\x7b\xe0\x70\xf7\xe0\x97\xe0"
        !          87995:             "\x90\xe0\x6d\xe0\xe0\x7e\x09\xe0\xd9\x27\x29\xe0\x87"
        !          87996:             "\x67\x67\xe0\x47\x87\x87\xe0\x17\x97\x97\xc8\xa7\xa8"
        !          87997:             "\x98\xb7\xb8\x78\xc7\xc8\x67\xd7\xd7\x58\xd7\xd8\x39"
        !          87998:             "\xd7\xd9\x28\xe7\xe8\x1f\x69\xe7\xe9\x18\xe7\xe8\x29"
        !          87999:             "\xd7\xd9\x38\xd7\xd8\x57\xd7\xd7\x68\xc7\xc8\x78\xb7"
        !          88000:             "\xb8\x98\xa7\xa8\xc7\x97\x97\xe0\x17\x87\x87\xe0\x47"
        !          88001:             "\x67\x67\xe0\x89\x27\x29\xe0\xde\x09\xe0\xe0\x7d\xe0"
        !          88002:             "\x60\xf7\xe0\x97\xe0\x90\xe0\x7b\xe0\x70\xf2\xce\x0e"
        !          88003:             "\x01\xc0" }  },
        !          88004:       /* --- pixel bitmap for wncyr600 char#71 G --- */
        !          88005:       {  71, 3773,                      /* character number, location */
        !          88006:          57, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          88007:           { 50,   57, 3,133, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          88008:             "\xf2\x0e\x0e\x0e\x06\x20\x89\xe0\x7a\xb7\xe0\xb7\xb7"
        !          88009:             "\xe0\xd6\xa7\xe0\xe5\xa7\xe0\xe0\x14\x10\xf2\x97\xe0"
        !          88010:             "\xe0\x23\x10\xf2\x97\xe0\xe0\x32\x10\x97\xe0\xe0\x33"
        !          88011:             "\xf3\x97\xe0\xe0\x42\xfe\x97\xe0\xe0\x60\xfe\x97\xe0"
        !          88012:             "\xe0\x60\xf3\x97\xe0\xe0\x60\x8a\xe0\xe0\x4f\x2e\x0d"
        !          88013:             "\xe0\x90" }  },
        !          88014:       /* --- pixel bitmap for wncyr600 char#72 Kh --- */
        !          88015:       {  72, 5027,                      /* character number, location */
        !          88016:          57, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          88017:           { 62,   57, 2,206, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          88018:             "\xff\x02\x01\x17\x0f\x13\x04\x00\x08\x0d\x14\x0c\x13"
        !          88019:             "\x09\x18\x07\x17\x08\x18\x05\x1a\x08\x17\x04\x1b\x08"
        !          88020:             "\x17\x03\x1d\x08\x16\x02\x1f\x08\x14\x02\x21\x08\x12"
        !          88021:             "\x03\x21\x08\x11\x03\x23\x08\x10\x02\x25\x08\x0e\x02"
        !          88022:             "\x26\x09\x0c\x03\x27\x08\x0c\x02\x29\x08\x0a\x02\x2b"
        !          88023:             "\x08\x08\x03\x2b\x08\x07\x03\x2d\x08\x06\x02\x2f\x08"
        !          88024:             "\x04\x02\x31\x08\x02\x03\x31\x08\x01\x03\x33\x0a\x1c"
        !          88025:             "\x00\xff\x01\x19\x08\x1d\x00\x1a\x08\x37\x08\x37\x08"
        !          88026:             "\x35\x09\x34\x0b\x33\x02\x02\x08\x31\x02\x03\x09\x2f"
        !          88027:             "\x03\x04\x08\x2e\x03\x06\x08\x2d\x02\x08\x08\x2b\x02"
        !          88028:             "\x09\x08\x2a\x03\x0a\x08\x29\x02\x0c\x08\x27\x02\x0e"
        !          88029:             "\x08\x25\x03\x0e\x08\x24\x03\x10\x08\x23\x02\x12\x08"
        !          88030:             "\x21\x02\x13\x08\x20\x03\x14\x08\x1e\x03\x16\x08\x1d"
        !          88031:             "\x02\x18\x08\x1b\x02\x19\x08\x1a\x03\x1a\x08\x18\x03"
        !          88032:             "\x1c\x08\x16\x04\x1c\x09\x14\x05\x1d\x08\x12\x08\x1c"
        !          88033:             "\x09\x0e\x0c\x19\x0d\x07\xff\x02\x14\x13\x17" }  },
        !          88034:       /* --- pixel bitmap for wncyr600 char#73 I --- */
        !          88035:       {  73, 6475,                      /* character number, location */
        !          88036:          57, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          88037:           { 64,   57, 3,502, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          88038:             "\xf2\x0e\x0b\xee\x0b\x89\xe0\xe0\x29\xe0\x37\xe0\xe0"
        !          88039:             "\x47\xe0\x47\xe0\xe0\x38\xe0\x47\xe0\xe0\x29\x90\xf1"
        !          88040:             "\x97\xe0\xe0\x1a\x90\x97\xe0\xeb\xe0\x47\xe0\xdc\xe0"
        !          88041:             "\x47\xe0\xc5\x17\xe0\x47\xe0\xc4\x27\xe0\x47\xe0\xb4"
        !          88042:             "\x37\xe0\x47\xe0\xa5\x37\xe0\x47\xe0\x95\x47\xe0\x47"
        !          88043:             "\xe0\x94\x57\xe0\x47\xe0\x84\x67\xe0\x47\xe0\x75\x67"
        !          88044:             "\xe0\x47\xe0\x65\x77\xe0\x47\xe0\x64\x87\xe0\x47\xe0"
        !          88045:             "\x54\x97\xe0\x47\xe0\x45\x97\xe0\x47\xe0\x44\xa7\xe0"
        !          88046:             "\x47\xe0\x34\xb7\xe0\x47\xe0\x24\xc7\xe0\x47\xe0\x15"
        !          88047:             "\xc7\xe0\x47\xe0\x14\xd7\xe0\x47\xe4\xe7\xe0\x47\xd4"
        !          88048:             "\xe0\x17\xe0\x47\xc5\xe0\x17\xe0\x47\xc4\xe0\x27\xe0"
        !          88049:             "\x47\xb4\xe0\x37\xe0\x47\xa4\xe0\x47\xe0\x47\x95\xe0"
        !          88050:             "\x47\xe0\x47\x94\xe0\x57\xe0\x47\x84\xe0\x67\xe0\x47"
        !          88051:             "\x75\xe0\x67\xe0\x47\x65\xe0\x77\xe0\x47\x64\xe0\x87"
        !          88052:             "\xe0\x47\x54\xe0\x97\xe0\x47\x45\xe0\x97\xe0\x47\x35"
        !          88053:             "\xe0\xa7\xe0\x47\x34\xe0\xb7\xe0\x47\x24\xe0\xc7\xe0"
        !          88054:             "\x47\x15\xe0\xc7\xe0\x4c\xe0\xd7\xe0\x4b\xe0\xe7\x90"
        !          88055:             "\xf1\x9a\xe0\xe0\x17\x90\x99\xe0\xe0\x27\xe0\x48\xe0"
        !          88056:             "\xe0\x37\xe0\x47\xe0\xe0\x47\xe0\x39\xe0\xe0\x29\x8f"
        !          88057:             "\x2e\x0b\xee\x0b" }  },
        !          88058:       /* --- pixel bitmap for wncyr600 char#74 J --- */
        !          88059:       {  74,34194,                      /* character number, location */
        !          88060:          57, 5,   -2, 5,      /* topleft row,col, and botleft row,col */
        !          88061:           { 36,   59, 3,105, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          88062:             "\xf2\xce\x0a\xe0\x7a\x50\xfe\xe0\x97\x60\xfe\xe0\x97"
        !          88063:             "\x60\xf8\xe0\x97\x60\x33\xe0\x37\x77\xe0\x17\x6f\x39"
        !          88064:             "\xe7\x69\xd7\x78\xe7\x85\xe0\x17\x93\xe0\x37\xa3\xe0"
        !          88065:             "\x17\xc3\xd7\xe3\xb7\xe0\x25\x76\xe0\x6e\xe0\xb8\xe0"
        !          88066:             "\x47" }  },
        !          88067:       /* --- pixel bitmap for wncyr600 char#75 K --- */
        !          88068:       {  75,27353,                      /* character number, location */
        !          88069:          58, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          88070:           { 58,   59, 3,405, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          88071:             "\xe0\xe0\xe0\x65\x5e\x0b\xe0\x87\x4e\x0b\xe0\x79\x3e"
        !          88072:             "\x0b\xe0\x6b\xa9\xe0\xeb\xb7\xe0\xe3\x18\xb7\xe0\xe2"
        !          88073:             "\x28\xb7\xe0\xe2\x36\xc7\xe0\xd3\x44\xd7\xe0\xd2\xd0"
        !          88074:             "\xf1\x97\xe0\xc3\xd0\xf1\x97\xe0\xb3\xe0\x97\xe0\xa3"
        !          88075:             "\xe0\xa7\xe0\xa2\xe0\xb7\xe0\x93\xe0\xb7\xe0\x83\xe0"
        !          88076:             "\xc7\xe0\x73\xe0\xd7\xe0\x63\xe0\xe7\xe0\x53\xe0\xe0"
        !          88077:             "\x17\xe0\x34\xe0\xe0\x27\xe0\x15\xe0\xe0\x37\xc6\xe0"
        !          88078:             "\xe0\x57\x79\xe0\xe0\x7e\x06\xe0\xe0\xae\x03\xe0\xe0"
        !          88079:             "\xde\x08\xe0\xe0\x87\x7c\xe0\xe0\x47\xc9\xe0\xe0\x27"
        !          88080:             "\xe0\x18\xe0\xe7\xe0\x38\xe0\xc7\xe0\x48\xe0\xb7\xe0"
        !          88081:             "\x67\xe0\xa7\xe0\x77\xe0\x97\xe0\x86\xe0\x97\xe0\x87"
        !          88082:             "\xe0\x87\xe0\x96\xe0\x87\xe0\x97\xc0\xf5\x97\xe0\xa6"
        !          88083:             "\xc0\xf2\x97\xe0\xa6\xa2\xf1\x97\xe0\xb5\xa2\x97\xe0"
        !          88084:             "\xb6\x92\x97\xe0\xb6\x83\xf1\x97\xe0\xc5\x82\x10\x89"
        !          88085:             "\xe0\xc5\x63\x1e\x0b\xe0\x55\x44\x1e\x0b\xe0\x6b\x2e"
        !          88086:             "\x0b\xe0\x79\xe0\xe0\xe0\x95\x50" }  },
        !          88087:       /* --- pixel bitmap for wncyr600 char#76 L --- */
        !          88088:       {  76, 7643,                      /* character number, location */
        !          88089:          57, 6,    0, 6,      /* topleft row,col, and botleft row,col */
        !          88090:           { 60,   57, 3,200, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          88091:             "\xf2\xce\x0e\x0e\x06\xe0\x66\xe0\x2a\x80\xfe\xe0\x73"
        !          88092:             "\xe0\x67\x90\xf7\xe0\x73\xe0\x67\x90\xf8\xe0\x63\xe0"
        !          88093:             "\x77\x90\xe0\x54\xe0\x77\x90\xf3\xe0\x53\xe0\x87\x90"
        !          88094:             "\xe0\x44\xe0\x87\xe0\xd3\xe0\x97\xc3\xc3\xe0\x97\xa7"
        !          88095:             "\xa3\xe0\x97\x99\x84\xe0\x97\x9f\x19\x83\xe0\xa7\x99"
        !          88096:             "\x74\xe0\xa7\x99\x73\xe0\xb7\x98\x74\xe0\xb7\xa6\x74"
        !          88097:             "\xe0\xc7\xa3\x94\xe0\xd7\xb4\x65\xe0\xc9\xbd\xe0\x5e"
        !          88098:             "\x0b\x4a\xe0\x7e\x0b\x66\xe0\x9e\x0b" }  },
        !          88099:       /* --- pixel bitmap for wncyr600 char#77 M --- */
        !          88100:       {  77, 9196,                      /* character number, location */
        !          88101:          57, 5,    0, 5,      /* topleft row,col, and botleft row,col */
        !          88102:           { 72,   57, 3,366, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          88103:             "\x0e\x02\xe0\xe0\xce\x02\x0f\x1e\x03\xe0\xe0\xae\x03"
        !          88104:             "\x89\xe0\xe0\xa9\x80\xf1\x92\x16\xe0\xe0\x82\x16\x90"
        !          88105:             "\xf2\x92\x26\xe0\xe0\x62\x26\x90\xf1\x92\x36\xe0\xe0"
        !          88106:             "\x42\x36\x90\xf2\x92\x46\xe0\xe0\x22\x46\x90\xf1\x92"
        !          88107:             "\x56\xe0\xe2\x56\x90\xf2\x92\x66\xe0\xc2\x66\x90\xf1"
        !          88108:             "\x92\x76\xe0\xa2\x76\x90\xf2\x92\x86\xe0\x82\x86\x90"
        !          88109:             "\xf1\x92\x96\xe0\x62\x96\x90\xf1\x92\xa6\xe0\x42\xa6"
        !          88110:             "\x90\xf2\x92\xb6\xe0\x22\xb6\x90\xf1\x92\xc6\xe2\xc6"
        !          88111:             "\x90\xf2\x92\xd6\xc2\xd6\x90\xf1\x92\xe6\xa2\xe6\x90"
        !          88112:             "\xf2\x92\xe0\x16\x82\xe0\x16\x90\xf1\x92\xe0\x26\x62"
        !          88113:             "\xe0\x26\x90\xf2\x92\xe0\x36\x42\xe0\x36\x90\xf1\x92"
        !          88114:             "\xe0\x46\x22\xe0\x46\x90\xf2\x92\xe0\x58\xe0\x56\x90"
        !          88115:             "\x84\xe0\x56\xe0\x66\xe0\x26\xe0\x46\xe0\x66\xea\xe0"
        !          88116:             "\x34\xe0\x68\x8f\x1e\x06\xc4\xce\x0a\x0e\x06\xd2\xde"
        !          88117:             "\x0a" }  },
        !          88118:       /* --- pixel bitmap for wncyr600 char#78 N --- */
        !          88119:       {  78,10819,                      /* character number, location */
        !          88120:          57, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          88121:           { 60,   57, 3,84, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          88122:             "\xf2\x0e\x0b\xae\x0b\x89\xe0\xc9\x80\xfe\x97\xe0\xe7"
        !          88123:             "\x90\xf6\x97\xe0\xe7\x90\xf2\x9e\x0e\x0e\x90\xfe\x97"
        !          88124:             "\xe0\xe7\x90\xf8\x97\xe0\xe7\x90\x89\xe0\xc9\x8f\x2e"
        !          88125:             "\x0b\xae\x0b" }  },
        !          88126:       /* --- pixel bitmap for wncyr600 char#79 O --- */
        !          88127:       {  79,35175,                      /* character number, location */
        !          88128:          59, 6,   -2, 6,      /* topleft row,col, and botleft row,col */
        !          88129:           { 58,   61, 3,367, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          88130:             "\xe0\xaa\xe0\xe0\xe0\x2e\x04\xe0\xe0\xa7\x87\xe0\xe0"
        !          88131:             "\x66\xe6\xe0\xe0\x26\xe0\x46\xe0\xc7\xe0\x67\xe0\x96"
        !          88132:             "\xe0\xa6\xe0\x76\xe0\xc6\xe0\x56\xe0\xe6\xe0\x37\xe0"
        !          88133:             "\xe7\xe0\x17\xe0\xe0\x27\x70\xf1\x67\xe0\xe0\x47\x60"
        !          88134:             "\x57\xe0\xe0\x67\x98\xe0\xe0\x68\x87\xe0\xe0\x87\x40"
        !          88135:             "\xf1\x38\xe0\xe0\x88\x30\xf2\x28\xe0\xe0\xa8\x20\x19"
        !          88136:             "\xe0\xe0\xa9\x10\xf2\x18\xe0\xe0\xc8\x1f\xa9\xe0\xe0"
        !          88137:             "\xc9\x18\xe0\xe0\xc8\x10\xf2\x19\xe0\xe0\xa9\x10\xf1"
        !          88138:             "\x28\xe0\xe0\xa8\x20\x29\xe0\xe0\x89\x20\xf1\x38\xe0"
        !          88139:             "\xe0\x88\x30\xf1\x48\xe0\xe0\x68\x40\x58\xe0\xe0\x48"
        !          88140:             "\xb7\xe0\xe0\x47\xc8\xe0\xe0\x28\xd7\xe0\xe0\x27\xe0"
        !          88141:             "\x17\xe0\xe7\xe0\x37\xe0\xc7\xe0\x57\xe0\xa7\xe0\x77"
        !          88142:             "\xe0\x87\xe0\x97\xe0\x67\xe0\xc7\xe0\x27\xe0\xe0\x17"
        !          88143:             "\xe7\xe0\xe0\x48\x88\xe0\xe0\x9e\x04\xe0\xe0\xe0\x2a"
        !          88144:             "\xe0\xa0" }  },
        !          88145:       /* --- pixel bitmap for wncyr600 char#80 P --- */
        !          88146:       {  80,12149,                      /* character number, location */
        !          88147:          57, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          88148:           { 60,   57, 2,28, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          88149:             "\xff\x02\x00\x3c\x08\x0a\x18\x0a\x08\x00\xff\x30\x09"
        !          88150:             "\x07\x1c\x07\x09\x00\x08\x09\x1a\x09\x08\xff\x02\x19"
        !          88151:             "\x0a\x19" }  },
        !          88152:       /* --- pixel bitmap for wncyr600 char#81 Ch --- */
        !          88153:       {  81,13426,                      /* character number, location */
        !          88154:          57, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          88155:           { 64,   57, 2,102, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          88156:             "\xff\x02\x00\x19\x0e\x19\x08\x09\x1e\x09\x08\x00\xff"
        !          88157:             "\x12\x09\x07\x20\x07\x09\x00\x09\x08\x1f\x07\x13\x07"
        !          88158:             "\x1e\x08\x13\x08\x1c\x09\x13\x08\x1b\x0a\x14\x08\x19"
        !          88159:             "\x0b\x14\x09\x17\x04\x01\x07\x15\x09\x14\x05\x02\x07"
        !          88160:             "\x16\x09\x12\x05\x03\x07\x17\x0a\x0d\x07\x04\x07\x18"
        !          88161:             "\x0e\x04\x0a\x05\x07\x19\x19\x07\x07\x1b\x15\x09\x07"
        !          88162:             "\x1d\x11\x0b\x07\x20\x0b\x0e\x07\x09\x00\xff\x0f\x30"
        !          88163:             "\x07\x09\x00\x2f\x09\x08\x00\xff\x02\x27\x19" }  },
        !          88164:       /* --- pixel bitmap for wncyr600 char#82 R --- */
        !          88165:       {  82,36526,                      /* character number, location */
        !          88166:          57, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          88167:           { 52,   57, 3,201, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          88168:             "\x0e\x0e\x09\xe0\x1e\x0e\x0c\xce\x0e\x0e\x01\xe0\x39"
        !          88169:             "\xe0\x3a\xe0\x37\xe0\x79\xe0\x17\xe0\x98\xe7\xe0\xa8"
        !          88170:             "\xd7\xe0\xb8\x30\xf1\x97\xe0\xc8\x20\x97\xe0\xc9\xa7"
        !          88171:             "\xe0\xd8\x10\xf6\x97\xe0\xd9\x97\xe0\xd8\xa7\xe0\xc9"
        !          88172:             "\x10\xf1\x97\xe0\xc8\x20\x97\xe0\xb8\xc7\xe0\xa8\xd7"
        !          88173:             "\xe0\x98\xe7\xe0\x78\xe0\x27\xe0\x4a\xe0\x3e\x0e\x05"
        !          88174:             "\xe0\x5e\x0e\x02\xd0\xfe\x97\xe0\xe0\x80\xf7\x97\xe0"
        !          88175:             "\xe0\x80\x89\xe0\xe0\x7f\x2e\x0b\xe0\xd0" }  },
        !          88176:       /* --- pixel bitmap for wncyr600 char#83 S --- */
        !          88177:       {  83,37625,                      /* character number, location */
        !          88178:          59, 6,   -2, 6,      /* topleft row,col, and botleft row,col */
        !          88179:           { 53,   61, 3,383, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          88180:             "\xe0\xba\xe0\x22\xe0\x7e\x03\xc3\xe0\x5e\x07\xa3\xe0"
        !          88181:             "\x3a\x96\x74\xe0\x18\xe0\x24\x55\xd8\xe0\x64\x26\xc8"
        !          88182:             "\xe0\x84\x16\xa8\xe0\xba\x98\xe0\xd9\x88\xe0\xe0\x18"
        !          88183:             "\x78\xe0\xe0\x37\x77\xe0\xe0\x56\x68\xe0\xe0\x56\x58"
        !          88184:             "\xe0\xe0\x75\x49\xe0\xe0\x75\x48\xe0\xe0\x94\x39\xe0"
        !          88185:             "\xe0\x94\x38\xe0\xe0\xb3\x29\xe0\xe0\xb3\x28\xe0\xe0"
        !          88186:             "\xc3\x28\xe0\xe0\xd2\xf2\x19\xe0\xe0\xd2\x18\xe0\xe0"
        !          88187:             "\xe0\x2f\xa9\xe0\xe0\xe0\x20\x18\xe0\xe0\xe0\x39\xe0"
        !          88188:             "\xe0\xe0\x10\xf1\x19\xe0\xe0\xd2\xf1\x28\xe0\xe0\xd2"
        !          88189:             "\x29\xe0\xe0\xc2\x38\xe0\xe0\xb3\x39\xe0\xe0\xa2\x58"
        !          88190:             "\xe0\xe0\xa2\x59\xe0\xe0\x83\x68\xe0\xe0\x82\x88\xe0"
        !          88191:             "\xe0\x63\x97\xe0\xe0\x62\xa8\xe0\xe0\x43\xb8\xe0\xe0"
        !          88192:             "\x23\xd8\xe0\xe3\xe0\x18\xe0\xc4\xe0\x38\xe0\x94\xe0"
        !          88193:             "\x58\xe0\x64\xe0\x98\xe0\x25\xe0\xca\x97\xe0\xe0\x1e"
        !          88194:             "\x08\xe0\xe0\x5e\x04\xe0\xe0\xba\xe0\x44" }  },
        !          88195:       /* --- pixel bitmap for wncyr600 char#84 T --- */
        !          88196:       {  84,14705,                      /* character number, location */
        !          88197:          57, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          88198:           { 57,   57, 3,145, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          88199:             "\xf2\x2e\x0e\x0e\x0b\x20\x28\xe9\xe8\x46\xe0\x37\xe0"
        !          88200:             "\x36\x35\xe0\x57\xe0\x55\x24\xe0\x67\xe0\x64\x10\xf2"
        !          88201:             "\x13\xe0\x77\xe0\x73\x10\xf3\x12\xe0\x87\xe0\x82\x13"
        !          88202:             "\xe0\x87\xe0\x83\x0f\x32\xe0\x97\xe0\x92\xfe\xe0\xb7"
        !          88203:             "\xe0\xb0\xfe\xe0\xb7\xe0\xb0\xf3\xe0\xb7\xe0\xb0\xe0"
        !          88204:             "\x9b\xe0\x90\xf2\xde\x0e\x03\xd7" }  },
        !          88205:       /* --- pixel bitmap for wncyr600 char#85 U --- */
        !          88206:       {  85,39065,                      /* character number, location */
        !          88207:          57, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          88208:           { 62,   58, 2,223, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          88209:             "\xff\x02\x00\x14\x1a\x10\x07\x0a\x1f\x0a\x0c\x08\x21"
        !          88210:             "\x06\x10\x07\x21\x05\x12\x07\x20\x04\x13\x08\x1f\x03"
        !          88211:             "\x15\x07\x1e\x03\x16\x08\x1d\x03\x17\x07\x1c\x03\x19"
        !          88212:             "\x07\x1b\x02\x1a\x07\x1a\x03\x1b\x07\x18\x03\x1c\x08"
        !          88213:             "\x17\x03\x1d\x07\x16\x03\x1f\x07\x15\x02\x20\x07\x14"
        !          88214:             "\x03\x21\x07\x12\x03\x22\x08\x11\x03\x23\x07\x10\x03"
        !          88215:             "\x25\x07\x0f\x02\x26\x07\x0e\x03\x27\x07\x0c\x03\x28"
        !          88216:             "\x08\x0b\x03\x29\x07\x0a\x03\x2b\x07\x09\x02\x2c\x07"
        !          88217:             "\x08\x03\x2d\x07\x06\x03\x2e\x08\x05\x03\x2f\x07\x04"
        !          88218:             "\x03\x31\x07\x03\x02\x32\x07\x02\x03\x19\x00\xff\x01"
        !          88219:             "\x1a\x0a\x1a\x00\x1b\x08\x1b\x00\xff\x01\x1c\x06\x1c"
        !          88220:             "\x00\x1d\x04\x26\x01\x13\x04\x23\x07\x10\x03\x24\x07"
        !          88221:             "\x10\x02\x24\x09\x0e\x03\x1f\x00\xff\x01\x05\x09\x0d"
        !          88222:             "\x03\x20\x00\x05\x09\x0c\x03\x26\x08\x0d\x03\x26\x07"
        !          88223:             "\x0d\x03\x22\x00\xff\x01\x06\x02\x10\x03\x23\x00\x06"
        !          88224:             "\x02\x0f\x03\x2b\x02\x0d\x03\x2c\x03\x0c\x03\x2d\x03"
        !          88225:             "\x0a\x03\x2f\x03\x08\x03\x31\x04\x04\x04\x33\x0a\x36"
        !          88226:             "\x06\x2b" }  },
        !          88227:       /* --- pixel bitmap for wncyr600 char#86 V --- */
        !          88228:       {  86,16221,                      /* character number, location */
        !          88229:          57, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          88230:           { 54,   57, 3,321, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          88231:             "\x0e\x0e\x09\xe0\x3e\x0e\x0d\xde\x0e\x0e\x01\xe0\x59"
        !          88232:             "\xe0\x4a\xe0\x47\xe0\x89\xe0\x27\xe0\x99\xe0\x17\xe0"
        !          88233:             "\xa9\xe7\xe0\xb9\xd7\xe0\xc8\xd7\xe0\xc9\xc7\xe0\xd8"
        !          88234:             "\x30\xf5\x97\xe0\xd9\x20\xf1\x97\xe0\xd8\x30\x97\xe0"
        !          88235:             "\xc9\xc7\xe0\xc8\xd7\xe0\xb8\xe7\xe0\xa8\xe0\x17\xe0"
        !          88236:             "\x98\xe0\x27\xe0\x78\xe0\x47\xe0\x59\xa0\xf1\x9e\x0e"
        !          88237:             "\x04\xd0\x97\xe0\x59\xe0\x57\xe0\x88\xe0\x37\xe0\xa8"
        !          88238:             "\xe0\x17\xe0\xb8\xe7\xe0\xc8\xd7\xe0\xd8\xc7\xe0\xd9"
        !          88239:             "\xb7\xe0\xe8\xb7\xe0\xe9\xa7\xe0\xe0\x18\x10\xf6\x97"
        !          88240:             "\xe0\xe0\x19\x97\xe0\xe0\x18\xa7\xe0\xe9\xa7\xe0\xe8"
        !          88241:             "\xb7\xe0\xd9\xb7\xe0\xc9\xc7\xe0\xb9\xd7\xe0\xa9\xe7"
        !          88242:             "\xe0\x8a\xe9\xe0\x5b\x7e\x0e\x0e\x03\x9e\x0e\x0e\x01"
        !          88243:             "\xbe\x0e\x0b\xe0\x16" }  },
        !          88244:       /* --- pixel bitmap for wncyr600 char#87 Shch --- */
        !          88245:       {  87,17938,                      /* character number, location */
        !          88246:          57, 4,   -6, 4,      /* topleft row,col, and botleft row,col */
        !          88247:           { 91,   63, 2,52, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          88248:             "\xff\x02\x00\x19\x07\x19\x07\x19\x02\x00\x08\x09\x17"
        !          88249:             "\x09\x17\x09\x0a\x00\xff\x30\x09\x07\x19\x07\x19\x07"
        !          88250:             "\x0b\x00\x08\x0a\x15\x0b\x15\x0a\x0a\xff\x02\x59\x02"
        !          88251:             "\x00\x4f\x0a\x53\x08\x55\x06\x57\x04\x58\x04\x5a\x02" }  },
        !          88252:       /* --- pixel bitmap for wncyr600 char#88 Sh --- */
        !          88253:       {  88,19754,                      /* character number, location */
        !          88254:          57, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          88255:           { 89,   57, 2,36, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          88256:             "\xff\x02\x00\x19\x07\x19\x07\x19\x08\x09\x17\x09\x17"
        !          88257:             "\x09\x08\x00\xff\x30\x09\x07\x19\x07\x19\x07\x09\x00"
        !          88258:             "\x08\x0a\x15\x0b\x15\x0a\x08\xff\x02\x59" }  },
        !          88259:       /* --- pixel bitmap for wncyr600 char#89 Y --- */
        !          88260:       {  89,21669,                      /* character number, location */
        !          88261:          57, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          88262:           { 81,   57, 2,162, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          88263:             "\xff\x02\x00\x19\x20\x18\x08\x09\x2f\x0a\x10\x07\x31"
        !          88264:             "\x08\x08\x00\xff\x15\x09\x07\x31\x07\x09\x00\x09\x20"
        !          88265:             "\x18\x07\x12\x07\x13\x09\x15\x07\x12\x07\x16\x08\x13"
        !          88266:             "\x07\x12\x07\x18\x08\x11\x07\x12\x07\x19\x08\x10\x07"
        !          88267:             "\x12\x07\x1a\x08\x0f\x07\x12\x07\x1b\x08\x0e\x07\x12"
        !          88268:             "\x07\x1b\x09\x0d\x07\x12\x07\x1c\x08\x0d\x07\x12\x07"
        !          88269:             "\x1c\x09\x0c\x07\x12\x07\x1d\x08\x0c\x07\x09\x00\xff"
        !          88270:             "\x06\x09\x07\x1d\x09\x0b\x07\x09\x00\x09\x07\x1d\x08"
        !          88271:             "\x0c\x07\x12\x07\x1c\x09\x0c\x07\x12\x07\x1c\x08\x0d"
        !          88272:             "\x07\x12\x07\x1b\x09\x0d\x07\x12\x07\x1a\x09\x0e\x07"
        !          88273:             "\x12\x07\x19\x09\x0f\x07\x12\x07\x18\x09\x10\x07\x12"
        !          88274:             "\x07\x16\x0a\x11\x08\x10\x09\x13\x0b\x11\x0a\x07\x2d"
        !          88275:             "\x0c\x43\x0e\x3f\x12\x18" }  },
        !          88276:       /* --- pixel bitmap for wncyr600 char#90 Z --- */
        !          88277:       {  90,22965,                      /* character number, location */
        !          88278:          59, 5,   -2, 5,      /* topleft row,col, and botleft row,col */
        !          88279:           { 46,   61, 3,329, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          88280:             "\x22\xdc\xe0\x53\x8e\x06\xe0\x14\x5e\x0a\xd5\x28\xaa"
        !          88281:             "\xbb\xe0\x39\x98\xe0\x88\x87\xe0\xa9\x65\xe0\xd8\x65"
        !          88282:             "\xe0\xe8\x54\xe0\xe0\x19\x20\xf1\x23\xe0\xe0\x38\x20"
        !          88283:             "\xf1\x22\xe0\xe0\x48\x20\xf1\xe0\xe0\x88\x20\xf1\xe0"
        !          88284:             "\xe0\x78\x30\xe0\xe0\x69\xe0\xe0\x98\xe0\xe0\x98\xe0"
        !          88285:             "\xe0\x98\xe0\xe0\x98\xe0\xe0\x88\xe0\xe0\x97\xe0\xe0"
        !          88286:             "\x88\xe0\xe0\x3d\xe0\xce\x03\xe0\xe0\x1e\x07\xe0\xe0"
        !          88287:             "\xd8\xe0\xe0\xc8\xe0\xe0\xc8\xe0\xe0\xb8\xe0\xe0\xb8"
        !          88288:             "\xe0\xe0\xb8\xe0\xe0\xb8\xe0\xe0\xa9\x20\xf2\xe0\xe0"
        !          88289:             "\x89\x10\xf6\xe0\xe0\x99\x0f\x22\xe0\xe0\x69\x12\xe0"
        !          88290:             "\xe0\x59\x23\xe0\xe0\x49\x23\xe0\xe0\x39\x34\xe0\xe0"
        !          88291:             "\x19\x45\xe0\xd9\x56\xe0\xb9\x69\xe0\x78\x8d\xe9\xa4"
        !          88292:             "\x3e\x0d\xc3\x7e\x08\xe2\xce\xe0\x47" }  },
        !          88293:       /* --- pixel bitmap for wncyr600 char#91 (noname) --- */
        !          88294:       {  91,50315,                      /* character number, location */
        !          88295:          62,10,  -21,10,      /* topleft row,col, and botleft row,col */
        !          88296:           { 15,   83, 2,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          88297:             "\xff\x03\x00\x0f\x00\xff\x4a\x04\x0b\xff\x03\x0f" }  },
        !          88298:       /* --- pixel bitmap for wncyr600 char#92 (noname) --- */
        !          88299:       {  92,69525,                      /* character number, location */
        !          88300:          58,15,   33,15,      /* topleft row,col, and botleft row,col */
        !          88301:           { 27,   25, 3,97, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          88302:             "\x72\xe0\x12\x73\xe3\x63\xe3\x63\xe3\x63\xe3\x72\xe0"
        !          88303:             "\x12\x73\xe3\x72\xe0\x12\x73\xe3\x60\xf1\x12\xe0\x12"
        !          88304:             "\x73\xe3\x7f\x32\xe0\x12\x82\x23\xa2\x23\x39\x89\x1f"
        !          88305:             "\x2a\x7a\xf1\x19\x89\x27\xa7\x53\xe3\x38" }  },
        !          88306:       /* --- pixel bitmap for wncyr600 char#93 (noname) --- */
        !          88307:       {  93,51195,                      /* character number, location */
        !          88308:          62, 2,  -21, 2,      /* topleft row,col, and botleft row,col */
        !          88309:           { 15,   83, 2,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          88310:             "\xff\x03\x00\x0f\xff\x4a\x0b\x04\x00\xff\x03\x0f" }  },
        !          88311:       /* --- pixel bitmap for wncyr600 char#94 \Cprime --- */
        !          88312:       {  94,24475,                      /* character number, location */
        !          88313:          57, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          88314:           { 54,   57, 3,209, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          88315:             "\xf2\x0e\x0b\xe0\xe0\x10\x89\xe0\xe0\x90\xfe\x97\xe0"
        !          88316:             "\xe0\xa0\xf7\x97\xe0\xe0\xa0\x9e\x0e\x04\xe0\x87\xe0"
        !          88317:             "\x59\xe0\x57\xe0\x88\xe0\x37\xe0\xa8\xe0\x17\xe0\xb8"
        !          88318:             "\xe7\xe0\xc8\xd7\xe0\xd8\xc7\xe0\xd9\xb7\xe0\xe8\xb7"
        !          88319:             "\xe0\xe9\xa7\xe0\xe0\x18\x10\xf6\x97\xe0\xe0\x19\x97"
        !          88320:             "\xe0\xe0\x18\xa7\xe0\xe9\xa7\xe0\xe8\xb7\xe0\xd9\xb7"
        !          88321:             "\xe0\xc9\xc7\xe0\xb9\xd7\xe0\xa9\xe7\xe0\x8a\xe9\xe0"
        !          88322:             "\x5b\x7e\x0e\x0e\x03\x9e\x0e\x0e\x01\xbe\x0e\x0b\xe0"
        !          88323:             "\x10" }  },
        !          88324:       /* --- pixel bitmap for wncyr600 char#95 \Cdprime --- */
        !          88325:       {  95,26123,                      /* character number, location */
        !          88326:          57, 7,    0, 7,      /* topleft row,col, and botleft row,col */
        !          88327:           { 70,   57, 2,147, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          88328:             "\xff\x02\x01\x24\x21\x00\x01\x0a\x0e\x09\x25\x07\x12"
        !          88329:             "\x07\x26\x06\x13\x07\x26\x05\x14\x07\x25\x05\x15\x07"
        !          88330:             "\x25\xff\x01\x04\x16\x07\x25\xff\x02\x03\x17\x07\x25"
        !          88331:             "\xff\x05\x02\x18\x07\x25\x00\xff\x07\x1a\x07\x25\x00"
        !          88332:             "\x1a\x1f\x27\x07\x12\x09\x24\x07\x15\x08\x22\x07\x17"
        !          88333:             "\x08\x20\x07\x18\x08\x1f\x07\x19\x08\x1e\x07\x1a\x08"
        !          88334:             "\x1d\x07\x1a\x09\x1c\x07\x1b\x08\x1c\x07\x1b\x09\x1b"
        !          88335:             "\x07\x1c\x08\x01\x00\xff\x06\x1a\x07\x1c\x09\x1a\x07"
        !          88336:             "\x1c\x08\x01\x00\xff\x01\x1a\x07\x1b\x09\x01\x00\x1a"
        !          88337:             "\x07\x1a\x09\x1c\x07\x19\x09\x1d\x07\x18\x09\x1e\x07"
        !          88338:             "\x17\x0a\x1e\x07\x16\x09\x1f\x09\x12\x0b\x19\x2b\x1b"
        !          88339:             "\x29\x1d\x26\x0e" }  },
        !          88340:       /* --- pixel bitmap for wncyr600 char#96 (noname) --- */
        !          88341:       {  96,51995,                      /* character number, location */
        !          88342:          58, 8,   33, 8,      /* topleft row,col, and botleft row,col */
        !          88343:           { 10,   25, 3,49, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          88344:             "\x72\x73\x63\x63\x63\x72\x73\x72\x73\x60\xf1\x12\x73"
        !          88345:             "\x7f\x32\x82\x23\x39\x1f\x2a\xf1\x19\x27\x53\x38" }  },
        !          88346:       /* --- pixel bitmap for wncyr600 char#97 a --- */
        !          88347:       {  97,103728,                     /* character number, location */
        !          88348:          38, 5,   -1, 5,      /* topleft row,col, and botleft row,col */
        !          88349:           { 40,   39, 3,201, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          88350:             "\xaa\xe0\xde\x02\xe0\x85\x96\xe0\x53\xd6\xe0\x35\xe5"
        !          88351:             "\xe0\x17\xd6\xe8\xd6\xb0\xf1\x28\xe6\xa0\x28\xe7\xc6"
        !          88352:             "\xe0\x26\xd4\xe0\x36\x90\xf3\xe0\xb6\x90\xe0\x4d\xe0"
        !          88353:             "\x8e\x04\xe0\x5a\x56\xe0\x38\x96\xe0\x17\xc6\xd8\xd6"
        !          88354:             "\xc8\xe6\xb8\xe0\x16\xb7\xe0\x26\xa7\xe0\x36\xa7\xe0"
        !          88355:             "\x36\x72\x0f\x27\xe0\x46\x72\x0f\x17\xe0\x37\x72\x08"
        !          88356:             "\xe0\x18\x72\x17\xe3\x15\x72\x18\xc3\x35\x52\x38\xa3"
        !          88357:             "\x46\x33\x57\x74\x6a\x8e\x98\xc9\xc5\x50" }  },
        !          88358:       /* --- pixel bitmap for wncyr600 char#98 b --- */
        !          88359:       {  98,104628,                     /* character number, location */
        !          88360:          59, 6,   -1, 6,      /* topleft row,col, and botleft row,col */
        !          88361:           { 38,   60, 3,279, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          88362:             "\xf1\xe0\xe0\x71\x20\xe0\xe0\x62\xe0\xe0\x73\xe0\xe0"
        !          88363:             "\x64\xe0\xe0\x18\xe0\x2e\x07\xde\x0b\xbe\x0c\xbe\x0b"
        !          88364:             "\xce\x0a\xda\xe0\xe7\xe0\xe0\x26\xe0\xe0\x45\xe0\xe0"
        !          88365:             "\x45\xe0\xe0\x30\xf1\x24\xe0\xe0\x40\x23\xe0\xe0\x64"
        !          88366:             "\xe0\xe0\x63\xe0\xe0\x73\xb8\xe0\x23\x8e\xd2\x76\x66"
        !          88367:             "\xb2\x55\xc5\x83\x45\xe5\x73\x35\xe0\x25\x63\x25\xe0"
        !          88368:             "\x45\x5f\x12\x25\xe0\x65\x42\x15\xe0\x85\x3f\x18\xe0"
        !          88369:             "\x86\x2f\x37\xe0\xa6\x1f\x87\xe0\xa7\xf1\x16\xe0\xa6"
        !          88370:             "\x10\x17\xe0\x87\x10\xf1\x26\xe0\x86\x20\x36\xe0\x66"
        !          88371:             "\x75\xe0\x65\x95\xe0\x45\xb5\xe0\x25\xd5\xe5\xe0\x15"
        !          88372:             "\xc5\xe0\x46\x66\xe0\x8e\xe0\xd8\xe0\x10" }  },
        !          88373:       /* --- pixel bitmap for wncyr600 char#99 ts --- */
        !          88374:       {  99,113173,                     /* character number, location */
        !          88375:          36, 3,  -12, 3,      /* topleft row,col, and botleft row,col */
        !          88376:           { 43,   48, 3,120, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          88377:             "\xf2\x0e\x04\x4e\x04\x30\x58\xe8\x80\xfe\x66\xe0\x26"
        !          88378:             "\x90\xfc\x66\xe0\x26\x90\x58\xe8\x8f\x2e\x0e\x0c\x30"
        !          88379:             "\xe0\xe0\x57\xe0\xe0\x96\xe0\xe0\xa5\x30\xf1\xe0\xe0"
        !          88380:             "\x85\x20\xf1\xe0\xe0\x94\x20\xf1\xe0\xe0\xa3\x20\xe0"
        !          88381:             "\xe0\xb3\xe0\xe0\xd2\xe0\xe0\xe2" }  },
        !          88382:       /* --- pixel bitmap for wncyr600 char#100 d --- */
        !          88383:       { 100,114313,                     /* character number, location */
        !          88384:          36, 0,  -12, 0,      /* topleft row,col, and botleft row,col */
        !          88385:           { 50,   48, 3,276, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          88386:             "\xf2\xee\x0e\x06\x20\xe0\x56\x98\xe0\xe4\xb6\x90\xf7"
        !          88387:             "\xe0\x63\xc6\x90\xe0\x54\xc6\x90\xf2\xe0\x53\xd6\x90"
        !          88388:             "\xf1\xe0\x44\xd6\x90\xf1\xe0\x43\xe6\x90\xe0\x34\xe6"
        !          88389:             "\x90\xf1\xe0\x33\xe0\x16\x90\xe0\x24\xe0\x16\xe0\xb3"
        !          88390:             "\xe0\x26\xe0\xa4\xe0\x26\xe0\xa3\xe0\x36\xe0\x94\xe0"
        !          88391:             "\x36\xe0\x93\xe0\x46\xe0\x84\xe0\x46\xe0\x75\xe0\x46"
        !          88392:             "\xe0\x66\xe0\x29\x80\xf2\x4e\x0e\x0e\x02\x20\x46\xe0"
        !          88393:             "\xe0\x28\x65\xe0\xe0\x56\x64\xe0\xe0\x66\x63\xe0\xe0"
        !          88394:             "\x85\x63\xe0\xe0\x94\x54\xe0\xe0\x94\x20\xf1\x33\xe0"
        !          88395:             "\xe0\xb3\x20\x32\xe0\xe0\xd2\x52\xe0\xe0\xd3\x32\xe0"
        !          88396:             "\xe0\xe0\x12\x22\xe0\xe0\xe0\x32" }  },
        !          88397:       /* --- pixel bitmap for wncyr600 char#101 e --- */
        !          88398:       { 101,105596,                     /* character number, location */
        !          88399:          38, 4,   -1, 4,      /* topleft row,col, and botleft row,col */
        !          88400:           { 34,   39, 3,175, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          88401:             "\xe8\xe0\x9e\xe0\x46\x66\xe0\x15\xa5\xc6\xc6\x96\xe5"
        !          88402:             "\x86\xe0\x25\x75\xe0\x36\x56\xe0\x45\x47\xe0\x46\x36"
        !          88403:             "\xe0\x56\x27\xe0\x65\x27\xe0\x66\x16\xe0\x76\x0f\x27"
        !          88404:             "\xe0\x76\x0f\x1e\x0e\x06\x0f\x47\xe0\xd0\x16\xe0\xd0"
        !          88405:             "\xf1\x17\xe0\xc0\x26\xe0\xe6\xe0\xa2\x36\xe0\x92\x36"
        !          88406:             "\xe0\x83\x46\xe0\x72\x66\xe0\x53\x75\xe0\x43\x95\xe0"
        !          88407:             "\x23\xb6\xc4\xe6\x75\xe0\x4e\xe0\x98\xb5" }  },
        !          88408:       /* --- pixel bitmap for wncyr600 char#102 f --- */
        !          88409:       { 102,106309,                     /* character number, location */
        !          88410:          56, 5,  -20, 5,      /* topleft row,col, and botleft row,col */
        !          88411:           { 46,   76, 3,353, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          88412:             "\xe0\x31\xa1\xe0\xe0\x62\x82\xe0\xe0\x71\x81\xe0\xe0"
        !          88413:             "\x82\x62\xe0\xe0\x83\x43\xe0\xe0\x92\x42\xe0\xe0\xa3"
        !          88414:             "\x23\xe0\x50\xf1\xe0\x58\xe0\x50\xf2\xe0\x66\xe0\x60"
        !          88415:             "\xf6\xe0\x74\xe0\x70\xa6\x54\x56\xe0\x49\x44\x49\xe0"
        !          88416:             "\x14\x44\x24\x24\x44\xc5\x73\x14\x13\x75\x96\x82\x14"
        !          88417:             "\x12\x86\x85\x9a\x95\x76\xa8\xa6\x56\xb8\xb6\x20\xf1"
        !          88418:             "\x26\xc6\xc6\x20\xf2\x16\xd6\xd6\x1f\xb7\xe4\xe7\xf2"
        !          88419:             "\x16\xd6\xd6\x10\xf1\x26\xc6\xc6\x20\x26\xb8\xb6\x56"
        !          88420:             "\xa8\xa6\x75\x9a\x95\x86\x82\x14\x12\x86\x95\x73\x14"
        !          88421:             "\x13\x75\xc4\x44\x24\x24\x44\xe0\x19\x44\x49\xe0\x46"
        !          88422:             "\x54\x56\xa0\xf6\xe0\x74\xe0\x70\xf2\xe0\x66\xe0\x60"
        !          88423:             "\xf1\xe0\x58\xe0\x50\xe0\x53\x23\xe0\xe0\xa2\x42\xe0"
        !          88424:             "\xe0\x93\x43\xe0\xe0\x82\x62\xe0\xe0\x81\x81\xe0\xe0"
        !          88425:             "\x72\x82\xe0\xe0\x61\xa1\xe0\x3b" }  },
        !          88426:       /* --- pixel bitmap for wncyr600 char#103 g --- */
        !          88427:       { 103,115661,                     /* character number, location */
        !          88428:          36, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          88429:           { 34,   36, 3,79, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          88430:             "\xf2\x0e\x0e\x05\x10\x57\xe0\x16\x76\xe0\x34\x76\xe0"
        !          88431:             "\x43\x76\xe0\x52\x10\xf1\x66\xe0\x53\xf3\x66\xe0\x62"
        !          88432:             "\xfe\x66\xe0\x80\xf3\x66\xe0\x80\x58\xe0\x7f\x2e\x06"
        !          88433:             "\xe0" }  },
        !          88434:       /* --- pixel bitmap for wncyr600 char#104 kh --- */
        !          88435:       { 104,116861,                     /* character number, location */
        !          88436:          36, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          88437:           { 40,   36, 3,198, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          88438:             "\xf2\x1e\x03\x5e\x01\x20\x6a\x8a\xd8\xa6\xe0\x37\xa5"
        !          88439:             "\xe0\x57\x94\xe0\x76\x93\xe0\x87\x73\xe0\xa7\x62\xe0"
        !          88440:             "\xc7\x42\xe0\xd7\x33\xe0\xe7\x22\xe0\xe0\x29\xe0\xe0"
        !          88441:             "\x48\xe0\xe0\x47\xe0\xe0\x67\xe0\xe0\x66\xe0\xe0\x67"
        !          88442:             "\xe0\xe0\x49\xe0\xe0\x32\x17\xe0\xe0\x12\x27\xe0\xe3"
        !          88443:             "\x37\xe0\xd2\x57\xe0\xb2\x76\xe0\xa3\x77\xe0\x83\x97"
        !          88444:             "\xe0\x72\xb6\xe0\x63\xb7\xe0\x43\xd7\xe0\x24\xe7\xd6"
        !          88445:             "\xe7\xb9\xca\x5f\x2e\x01\x8e\x03" }  },
        !          88446:       /* --- pixel bitmap for wncyr600 char#105 i --- */
        !          88447:       { 105,118253,                     /* character number, location */
        !          88448:          36, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          88449:           { 43,   36, 3,204, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          88450:             "\xf2\x0e\x04\x7e\x04\x58\xe0\x38\x50\xf1\x66\xe0\x38"
        !          88451:             "\x60\x66\xe0\x29\xc6\xe0\x1a\xc6\xe0\x13\x16\xc6\xe4"
        !          88452:             "\x16\xc6\xd4\x26\xc6\xc4\x36\xc6\xc3\x46\xc6\xb4\x46"
        !          88453:             "\xc6\xa4\x56\xc6\x94\x66\xc6\x93\x76\xc6\x84\x76\xc6"
        !          88454:             "\x74\x86\xc6\x73\x96\xc6\x64\x96\xc6\x54\xa6\xc6\x44"
        !          88455:             "\xb6\xc6\x43\xc6\xc6\x34\xc6\xc6\x24\xd6\xc6\x14\xe6"
        !          88456:             "\xc6\x13\xe0\x16\xca\xe0\x16\xc9\xe0\x26\x60\xf1\x68"
        !          88457:             "\xe0\x36\x60\x58\xe0\x38\x5f\x2e\x04\x7e\x04" }  },
        !          88458:       /* --- pixel bitmap for wncyr600 char#106 j --- */
        !          88459:       { 106,107482,                     /* character number, location */
        !          88460:          56,-3,  -17,-3,      /* topleft row,col, and botleft row,col */
        !          88461:           { 23,   73, 3,99, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          88462:             "\xe0\x33\xe0\x47\x10\xf4\xe9\xe0\x17\xe0\x43\x30\xf9"
        !          88463:             "\xe0\x90\xe0\x27\xf2\xad\xe0\x18\xe0\x27\xfe\xe0\x36"
        !          88464:             "\xfe\xe0\x36\xf6\xe0\x36\x24\xb6\x16\xa6\x0f\x28\x86"
        !          88465:             "\x18\x76\x27\x85\x45\x85\x64\x75\x9c\xd8\x94" }  },
        !          88466:       /* --- pixel bitmap for wncyr600 char#107 k --- */
        !          88467:       { 107,137983,                     /* character number, location */
        !          88468:          37, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
        !          88469:           { 40,   38, 3,215, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          88470:             "\xe0\xe0\x53\x4e\x06\xb7\x2f\x1e\x06\xa9\x10\x68\xe0"
        !          88471:             "\x13\x16\x86\xe0\x23\x16\x86\xe0\x22\x34\x96\xe0\x13"
        !          88472:             "\xe0\x26\xe0\x12\xe0\x36\xe3\xa0\xf1\x76\xd3\xb0\x76"
        !          88473:             "\xb4\xe0\x56\xa4\xe0\x66\x85\xe0\x76\x29\xe0\x9e\x01"
        !          88474:             "\xe0\xbe\x03\xe0\x97\x2b\xe0\x66\x88\xe0\x46\xb6\xe0"
        !          88475:             "\x36\xc6\xe0\x26\xd6\xe0\x16\xe5\xe0\x16\xe6\x70\xf3"
        !          88476:             "\x76\xe0\x15\x70\xf2\x76\xe0\x15\x52\x76\xe0\x24\x43"
        !          88477:             "\x68\xe0\x15\x3e\x09\xa4\x23\x1e\x06\xa9\x1e\x06\xb7"
        !          88478:             "\xe0\xe0\x74\x30" }  },
        !          88479:       /* --- pixel bitmap for wncyr600 char#108 l --- */
        !          88480:       { 108,119307,                     /* character number, location */
        !          88481:          36, 4,    0, 4,      /* topleft row,col, and botleft row,col */
        !          88482:           { 41,   36, 3,102, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          88483:             "\xf2\x8e\x0e\x05\xd5\xa8\x50\xfe\xe3\xc6\x60\xd4\xc6"
        !          88484:             "\x60\xf4\xd3\xd6\x60\xc4\xd6\x75\x63\xe6\x6f\x17\x53"
        !          88485:             "\xe6\x67\x44\xe6\x67\x43\xe0\x16\x75\x44\xe0\x16\x74"
        !          88486:             "\x44\xe0\x18\x7a\xbe\x04\x38\xce\x04\x54\xee\x04" }  },
        !          88487:       /* --- pixel bitmap for wncyr600 char#109 m --- */
        !          88488:       { 109,120794,                     /* character number, location */
        !          88489:          36, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          88490:           { 49,   36, 3,196, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          88491:             "\x0c\xe0\xbc\x0f\x1d\xe0\x9d\x58\xe0\x98\x50\xf1\x62"
        !          88492:             "\x15\xe0\x72\x15\x60\xf1\x62\x25\xe0\x52\x25\x60\xf2"
        !          88493:             "\x62\x35\xe0\x32\x35\x60\xf1\x62\x45\xe0\x12\x45\x60"
        !          88494:             "\xf2\x62\x55\xd2\x55\x60\xf1\x62\x65\xb2\x65\x60\xf1"
        !          88495:             "\x62\x75\x92\x75\x60\xf2\x62\x85\x72\x85\x60\xf1\x62"
        !          88496:             "\x95\x52\x95\x60\xf2\x62\xa5\x32\xa5\x60\xf1\x62\xb5"
        !          88497:             "\x12\xb5\x60\xf1\x54\xb6\xc5\x60\x38\xa4\xc7\x5f\x1e"
        !          88498:             "\x74\x7e\x03\x0e\x82\x8e\x03" }  },
        !          88499:       /* --- pixel bitmap for wncyr600 char#110 n --- */
        !          88500:       { 110,122281,                     /* character number, location */
        !          88501:          36, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          88502:           { 40,   36, 3,58, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          88503:             "\xf2\x0e\x04\x4e\x04\x58\xe8\x50\xfb\x66\xe0\x26\x60"
        !          88504:             "\xf2\x6e\x0e\x60\xfc\x66\xe0\x26\x60\x58\xe8\x5f\x2e"
        !          88505:             "\x04\x4e\x04" }  },
        !          88506:       /* --- pixel bitmap for wncyr600 char#111 o --- */
        !          88507:       { 111,108359,                     /* character number, location */
        !          88508:          38, 4,   -1, 4,      /* topleft row,col, and botleft row,col */
        !          88509:           { 38,   39, 3,163, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          88510:             "\xe0\x18\xe0\xde\xe0\x86\x66\xe0\x45\xc5\xe0\x15\xe5"
        !          88511:             "\xd5\xe0\x25\xb5\xe0\x45\x50\xf1\x45\xe0\x65\x40\x35"
        !          88512:             "\xe0\x85\x30\xf1\x26\xe0\x86\x20\xf3\x16\xe0\xa6\x1f"
        !          88513:             "\x87\xe0\xa7\xf1\x16\xe0\xa6\x10\x17\xe0\x87\x10\xf1"
        !          88514:             "\x26\xe0\x86\x20\x36\xe0\x66\x75\xe0\x65\x95\xe0\x45"
        !          88515:             "\xb5\xe0\x25\xd5\xe5\xe0\x15\xc5\xe0\x46\x66\xe0\x8e"
        !          88516:             "\xe0\xd8\xe0\x10" }  },
        !          88517:       /* --- pixel bitmap for wncyr600 char#112 p --- */
        !          88518:       { 112,123553,                     /* character number, location */
        !          88519:          36, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          88520:           { 40,   36, 3,48, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          88521:             "\xf2\x0e\x0e\x0c\x58\xe8\x50\xfe\x66\xe0\x26\x60\xfc"
        !          88522:             "\x66\xe0\x26\x60\x58\xe8\x5f\x2e\x04\x4e\x04" }  },
        !          88523:       /* --- pixel bitmap for wncyr600 char#113 ch --- */
        !          88524:       { 113,124772,                     /* character number, location */
        !          88525:          36, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          88526:           { 43,   36, 3,108, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          88527:             "\xf2\x0e\x04\x7e\x04\x58\xe0\x38\x50\xfa\x66\xe0\x56"
        !          88528:             "\x60\x67\xe0\x37\xd6\xe0\x28\xd7\xe9\xe7\xca\xe9\x8c"
        !          88529:             "\xe0\x1e\x06\x26\xe0\x3e\x03\x36\xe0\x4e\x56\xe0\x79"
        !          88530:             "\x76\x60\xf7\xe0\xe0\x36\x60\xe0\xe0\x28\x50\xf2\xe0"
        !          88531:             "\xbe\x04" }  },
        !          88532:       /* --- pixel bitmap for wncyr600 char#114 r --- */
        !          88533:       { 114,109627,                     /* character number, location */
        !          88534:          37, 3,  -16, 3,      /* topleft row,col, and botleft row,col */
        !          88535:           { 44,   53, 3,201, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          88536:             "\x76\x88\xe0\x1d\x6d\xcd\x44\x76\xad\x24\xb6\xd8\x13"
        !          88537:             "\xe6\xe9\xe0\x26\xd8\xe0\x46\xc7\xe0\x66\xb7\xe0\x67"
        !          88538:             "\x30\xf1\x76\xe0\x87\x20\xf2\x76\xe0\x97\x10\xf8\x76"
        !          88539:             "\xe0\xa7\x76\xe0\x98\xf1\x76\xe0\x97\x10\x76\xe0\x96"
        !          88540:             "\x96\xe0\x87\x96\xe0\x86\xa7\xe0\x67\xa7\xe0\x57\xb8"
        !          88541:             "\xe0\x46\xc9\xe0\x26\xd6\x13\xe6\xe6\x23\xb6\xe0\x26"
        !          88542:             "\x35\x67\xe0\x36\x5e\xe0\x56\x87\xe0\x20\xfa\x76\xe0"
        !          88543:             "\xe0\x30\x68\xe0\xe0\x2f\x2e\x06\xe0\xa6" }  },
        !          88544:       /* --- pixel bitmap for wncyr600 char#115 s --- */
        !          88545:       { 115,110610,                     /* character number, location */
        !          88546:          38, 4,   -1, 4,      /* topleft row,col, and botleft row,col */
        !          88547:           { 34,   39, 3,151, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          88548:             "\xe0\x1a\xe0\x7e\x02\xe0\x26\x95\xc6\xe3\xa6\xe5\x86"
        !          88549:             "\xe7\x66\xe8\x56\xe0\x18\x47\xe0\x18\x46\xe0\x28\x37"
        !          88550:             "\xe0\x36\x46\xe0\x54\x30\xf1\x17\xe0\xc0\x16\xe0\xdf"
        !          88551:             "\x97\xe0\xd0\xf2\x17\xe0\xc0\x26\xe0\xa2\x27\xe0\x92"
        !          88552:             "\x36\xe0\x83\x46\xe0\x72\x66\xe0\x53\x76\xe0\x33\x96"
        !          88553:             "\xe0\x13\xb6\xc4\xe6\x75\xe0\x4e\xe0\x98\xb6" }  },
        !          88554:       /* --- pixel bitmap for wncyr600 char#116 t --- */
        !          88555:       { 116,125973,                     /* character number, location */
        !          88556:          36, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          88557:           { 38,   36, 3,85, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          88558:             "\xf2\x1e\x0e\x08\x10\x15\xa6\xa5\x10\xf1\x13\xc6\xc3"
        !          88559:             "\x10\x12\xd6\xd2\x1f\x13\xd6\xd3\x0f\x32\xe6\xe2\xfe"
        !          88560:             "\xe0\x26\xe0\x20\xf3\xe0\x26\xe0\x20\xe0\x18\xe0\x10"
        !          88561:             "\xf2\x7e\x0a\x70" }  },
        !          88562:       /* --- pixel bitmap for wncyr600 char#117 u --- */
        !          88563:       { 117,111844,                     /* character number, location */
        !          88564:          36, 3,  -17, 3,      /* topleft row,col, and botleft row,col */
        !          88565:           { 42,   53, 3,291, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          88566:             "\xf2\x0e\x03\xcd\x59\xe0\x38\x97\xe0\x55\xb7\xe0\x54"
        !          88567:             "\xd6\xe0\x62\xe7\xe0\x43\xe0\x16\xe0\x42\xe0\x27\xe0"
        !          88568:             "\x32\x80\xf1\x96\xe0\x22\x90\xf1\xa6\xe2\xa0\xa7\xc3"
        !          88569:             "\xe0\x76\xc2\xe0\x87\xa3\xe0\x96\xa2\xe0\xa7\x92\xc0"
        !          88570:             "\xf1\xd6\x82\xd0\xf1\xe6\x62\xe0\xe7\x43\xe0\xe0\x16"
        !          88571:             "\x42\xe0\xe0\x27\x32\xe0\x10\xf1\xe0\x26\x22\xe0\x20"
        !          88572:             "\xf2\xe0\x38\xe0\x30\xf1\xe0\x46\xe0\x40\xf1\xe0\x54"
        !          88573:             "\xe0\x50\xf1\xe0\x62\xe0\x60\xf1\xe0\x52\xe0\x70\xe0"
        !          88574:             "\x43\xe0\xe0\xb2\xe0\xe0\xb3\xe0\xe0\xb2\xe0\xa5\xb2"
        !          88575:             "\xe0\x9f\x17\x92\xe0\xa7\x82\xe0\xb7\x73\xe0\xb6\x73"
        !          88576:             "\xe0\xd3\x83\xe0\xe0\x13\x54\xe0\xe0\x3a\xe0\xe0\x66"
        !          88577:             "\xe0\xe0\x38" }  },
        !          88578:       /* --- pixel bitmap for wncyr600 char#118 v --- */
        !          88579:       { 118,127423,                     /* character number, location */
        !          88580:          36, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          88581:           { 36,   36, 3,145, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          88582:             "\x0e\x0c\xae\x0e\x8e\x0e\x02\xb7\xc7\xb6\xd7\xa6\xe7"
        !          88583:             "\x96\xe0\x16\x30\xf4\x66\xe0\x17\x20\x66\xe0\x16\x96"
        !          88584:             "\xe6\xa6\xd7\xa6\xb7\x60\xf1\x6e\x09\x70\x66\xc7\xb6"
        !          88585:             "\xe6\xa6\xe0\x17\x86\xe0\x26\x86\xe0\x36\x10\xf5\x66"
        !          88586:             "\xe0\x37\x66\xe0\x27\x76\xe0\x18\x76\xe8\x77\xc9\x3e"
        !          88587:             "\x0e\x04\x4e\x0e\x02\x6e\x0d\x92" }  },
        !          88588:       /* --- pixel bitmap for wncyr600 char#119 shch --- */
        !          88589:       { 119,129082,                     /* character number, location */
        !          88590:          36, 3,  -12, 3,      /* topleft row,col, and botleft row,col */
        !          88591:           { 62,   48, 2,70, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          88592:             "\xff\x02\x00\x12\x03\x11\x03\x12\x03\x00\x05\x08\x0d"
        !          88593:             "\x07\x0d\x08\x08\x00\xff\x1b\x06\x06\x0e\x07\x0e\x06"
        !          88594:             "\x09\x00\x05\x08\x0c\x09\x0c\x08\x08\xff\x02\x3b\x03"
        !          88595:             "\x00\x34\x07\x38\x06\x39\x05\x3a\x04\x3a\x05\x02\x00"
        !          88596:             "\xff\x01\x38\x04\x02\x00\xff\x01\x39\x03\x02\x00\x3a"
        !          88597:             "\x02\x3d\x02\x3d\x02" }  },
        !          88598:       /* --- pixel bitmap for wncyr600 char#120 sh --- */
        !          88599:       { 120,130807,                     /* character number, location */
        !          88600:          36, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          88601:           { 59,   36, 3,60, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          88602:             "\xf2\x0e\x04\x3e\x03\x3e\x04\x58\xd7\xd8\x50\xfe\x66"
        !          88603:             "\xe7\xe6\x60\xfc\x66\xe7\xe6\x60\x58\xc9\xc8\x5f\x2e"
        !          88604:             "\x0e\x0e\x0e\x03" }  },
        !          88605:       /* --- pixel bitmap for wncyr600 char#121 y --- */
        !          88606:       { 121,132593,                     /* character number, location */
        !          88607:          36, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          88608:           { 55,   36, 3,150, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          88609:             "\xf2\x0e\x04\xe0\x4e\x05\x58\xe0\xe8\xc6\xe0\xe0\x27"
        !          88610:             "\x60\xfb\x66\xe0\xe0\x26\x70\x6e\x09\xd6\xd6\xc7\xb6"
        !          88611:             "\xd6\xe6\xa6\xd6\xe0\x17\x86\xd6\xe0\x26\x86\xd6\xe0"
        !          88612:             "\x36\x76\x70\xf5\x66\xe0\x37\x66\x70\x66\xe0\x27\x76"
        !          88613:             "\xd6\xe0\x18\x76\xd6\xe8\x87\xb7\xc9\x88\x6e\x0e\x04"
        !          88614:             "\x4e\x0e\x0e\x07\x6e\x0e\x0e\x04\x9e\x05" }  },
        !          88615:       /* --- pixel bitmap for wncyr600 char#122 z --- */
        !          88616:       { 122,133809,                     /* character number, location */
        !          88617:          37, 3,   -1, 3,      /* topleft row,col, and botleft row,col */
        !          88618:           { 32,   38, 3,159, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          88619:             "\x22\x7a\xd4\x2e\x02\xae\x0a\x88\x98\x75\xe7\x64\xe0"
        !          88620:             "\x27\x53\xe0\x47\x20\xf1\x22\xe0\x57\x20\xf1\xe0\x97"
        !          88621:             "\x20\xe0\x88\xe0\xa7\xe0\xa7\xe0\xa7\xe0\x98\xe0\x79"
        !          88622:             "\xe0\x2d\xe0\x5e\x02\xe0\xd7\xe0\xd7\xe0\xd6\xe0\xc7"
        !          88623:             "\xe0\xc7\x10\xf4\xe0\xb7\x02\xe0\x97\x0f\x12\xe0\x87"
        !          88624:             "\x13\xe0\x67\x24\xe0\x47\x37\xc9\x4e\x0c\x6e\x0a\x82"
        !          88625:             "\x6d\xb0" }  },
        !          88626:       /* --- pixel bitmap for wncyr600 char#123 (noname) --- */
        !          88627:       { 123,70279,                      /* character number, location */
        !          88628:          23, 1,   21, 1,      /* topleft row,col, and botleft row,col */
        !          88629:           { 44,    2, 2, 4, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          88630:             "\xff\x01\x00\x2c" }  },
        !          88631:       /* --- pixel bitmap for wncyr600 char#124 (noname) --- */
        !          88632:       { 124,71167,                      /* character number, location */
        !          88633:          23, 2,   21, 2,      /* topleft row,col, and botleft row,col */
        !          88634:           { 88,    2, 2, 4, (pixbyte *) /* width,ht, fmt,pixsz,map... */
        !          88635:             "\xff\x01\x00\x58" }  },
        !          88636:       /* --- pixel bitmap for wncyr600 char#125 N0 --- */
        !          88637:       { 125,72195,                      /* character number, location */
        !          88638:          58, 1,   -1, 1,      /* topleft row,col, and botleft row,col */
        !          88639:           { 71,   59, 3,637, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          88640:             "\xe0\xe0\xe4\xe0\xee\x01\xe0\x97\xe0\xce\x02\xe0\x73"
        !          88641:             "\x33\xe0\xbe\x02\xe0\x63\x26\xe0\xe0\x49\xe0\x52\x28"
        !          88642:             "\xe0\xe0\x48\xe0\x43\x19\xe0\x60\xf1\xc9\xe0\x32\x29"
        !          88643:             "\xe0\x60\xca\xe0\x13\x29\xe0\xe0\x42\x17\xe0\x12\x47"
        !          88644:             "\xe0\xe0\x52\x18\xe2\x55\xe0\xe0\x62\x27\xe2\x71\xe0"
        !          88645:             "\xe0\x82\x27\xe2\xe0\xe0\xe0\x22\x37\xd2\xe0\xe0\xe0"
        !          88646:             "\x22\x37\xd2\xe0\x37\xe0\x62\x47\xc2\xe0\x29\xe0\x52"
        !          88647:             "\x47\xc2\xe0\x13\x44\xe0\x42\x57\xb2\xe4\x54\xe0\x32"
        !          88648:             "\x57\xb2\xd4\x74\xe0\x22\x58\xa2\xd4\x74\xe0\x22\x67"
        !          88649:             "\xa2\xc5\x75\xe0\x12\x68\x92\xc5\x75\xe0\x12\x77\x92"
        !          88650:             "\xc5\x75\xe0\x12\x78\x82\xb6\x75\xe0\x12\x87\x82\xb6"
        !          88651:             "\x75\xe0\x12\x87\x82\xb6\x76\x20\xf1\xc2\x97\x72\xb6"
        !          88652:             "\x76\x20\xc2\xa7\x62\xb6\x75\xe0\x12\xa7\x62\xc5\x75"
        !          88653:             "\x30\xf1\xc2\xb7\x52\xc5\x75\x30\xc2\xb8\x42\xd4\x74"
        !          88654:             "\xe0\x22\xc7\x42\xd4\x64\xe0\x32\xc8\x32\xe4\x54\xe0"
        !          88655:             "\x32\xd7\x32\xe0\x15\x15\xe0\x42\xd8\x22\xe0\x28\xe0"
        !          88656:             "\x62\xe7\x22\xe0\x53\xe0\x82\xe7\x22\xe0\xe0\x40\xf1"
        !          88657:             "\xc2\xe0\x17\x12\xe0\xe0\x40\xc2\xe0\x29\xe0\xe0\xe0"
        !          88658:             "\x22\xe0\x29\xae\x07\x10\xf1\xc2\xe0\x38\x9e\x09\xc2"
        !          88659:             "\xe0\x38\xe0\xe0\x40\xf1\xc2\xe0\x47\xe0\xe0\x40\x16"
        !          88660:             "\x43\xe0\x56\xe0\xe0\x48\x32\xe0\x66\xe0\xe0\x4f\x19"
        !          88661:             "\x22\xe0\x75\xe0\xe0\x49\x13\xe0\x84\xe0\xe0\x49\x12"
        !          88662:             "\xe0\x94\xe0\xe0\x48\x22\xe0\xa3\xe0\xe0\x47\x23\xe0"
        !          88663:             "\xa3\xe0\xe0\x53\x43\xe0\xc2\xe0\xe0\x68\xe0\xd2\xe0"
        !          88664:             "\xe0\x84\xe0\xe0\xe0\xe0\x74" }  },
        !          88665:       /* --- pixel bitmap for wncyr600 char#126 \cprime --- */
        !          88666:       { 126,135245,                     /* character number, location */
        !          88667:          36, 3,    0, 3,      /* topleft row,col, and botleft row,col */
        !          88668:           { 36,   36, 3,101, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          88669:             "\xf2\x0e\x04\xe0\x40\x58\xe0\x90\xfc\x66\xe0\xa0\x6e"
        !          88670:             "\x09\xd6\xc7\xb6\xe6\xa6\xe0\x17\x86\xe0\x26\x86\xe0"
        !          88671:             "\x36\x10\xf5\x66\xe0\x37\x66\xe0\x27\x76\xe0\x18\x76"
        !          88672:             "\xe8\x77\xc9\x3e\x0e\x04\x4e\x0e\x02\x6e\x0d\x90" }  },
        !          88673:       /* --- pixel bitmap for wncyr600 char#127 \cdprime --- */
        !          88674:       { 127,136829,                     /* character number, location */
        !          88675:          36, 5,    0, 5,      /* topleft row,col, and botleft row,col */
        !          88676:           { 47,   36, 3,159, (pixbyte *)/* width,ht, fmt,pixsz,map... */
        !          88677:             "\xf2\x0e\x0c\xe0\x77\xa6\xe0\xa5\xc6\xe0\xa4\xd6\xe0"
        !          88678:             "\xaf\x13\xe6\xe0\xaf\x42\xe0\x16\xe0\xa0\xf3\xe0\x36"
        !          88679:             "\xe0\xa0\xe0\x3e\x09\xe0\xa6\xc7\xe0\x86\xe6\xe0\x76"
        !          88680:             "\xe0\x17\xe0\x56\xe0\x26\xe0\x56\xe0\x36\x10\xf5\xe0"
        !          88681:             "\x36\xe0\x37\xe0\x36\xe0\x27\xe0\x46\xe0\x18\xe0\x46"
        !          88682:             "\xe8\xe0\x47\xc9\xee\x0e\x04\xe0\x1e\x0e\x02\xe0\x3e"
        !          88683:             "\x0d\x90" }  },
        !          88684:       /* --- trailer  --- */
        !          88685:       { -99, -999,  0,0,0,0, { 0,0,0,0, (pixbyte *)"\0" }  }
        !          88686:    } ;
        !          88687: 
        !          88688: 
1.1       albertel 88689: #ifdef SSFONTS
1.2       albertel 88690: /* ------------------------------------------------------------------------
1.1       albertel 88691: fonts for SuperSampling anti-aliasing algorithm
1.2       albertel 88692: ------------------------------------------------------------------------ */
1.1       albertel 88693: 
1.2       albertel 88694: /* --- size=1200 for .1200gf ---
                   88695:  * mf '\mode=ultre;  input cmr10'
                   88696:  * --------------------------------------------------------------------- */
1.1       albertel 88697: /* --- fontdef for cmr1200 --- */
                   88698: static	chardef  cmr1200[] =
                   88699:    {
1.2       albertel 88700:       /* --- pixel bitmap for cmr1200 char#0 \Gamma --- */
1.1       albertel 88701:       {   0,20634,                      /* character number, location */
1.2       albertel 88702:         113, 5,    0, 5,      /* topleft row,col, and botleft row,col */
                   88703:           { 91,  113, 2,127, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   88704:             "\xff\x03\x00\x56\x05\x57\x10\x17\x1e\x16\x13\x12\x25"
                   88705:             "\x11\x14\x10\x29\x0e\x15\x0f\x2b\x0c\x15\x0f\x2c\x0b"
                   88706:             "\x15\x0f\x2e\x09\x15\x0f\x2f\x09\x03\x00\xff\x01\x11"
                   88707:             "\x0f\x30\x08\x03\x00\x11\x0f\x31\x07\x03\x00\xff\x01"
                   88708:             "\x11\x0f\x32\x06\x03\x00\xff\x01\x11\x0f\x33\x05\x03"
                   88709:             "\x00\x11\x0f\x33\x06\x02\x00\xff\x02\x11\x0f\x34\x05"
                   88710:             "\x02\x00\xff\x02\x11\x0f\x35\x04\x02\x00\x11\x0f\x35"
                   88711:             "\x05\x01\x00\xff\x05\x11\x0f\x36\x04\x01\x00\xff\x03"
                   88712:             "\x11\x0f\x37\x04\xff\x42\x11\x0f\x3b\x00\x11\x10\x4a"
                   88713:             "\x11\x49\x13\x45\x1a\x35\xff\x04\x35\x26" }  },
                   88714:       /* --- pixel bitmap for cmr1200 char#1 \Delta --- */
1.1       albertel 88715:       {   1,20936,                      /* character number, location */
1.2       albertel 88716:         119, 8,    0, 8,      /* topleft row,col, and botleft row,col */
                   88717:           { 121,  119, 2,438, (pixbyte *)/* width,ht, fmt,pixsz,map.. */
                   88718:             "\x3a\x05\x73\x07\x39\x00\xff\x01\x38\x09\x38\x00\xff"
                   88719:             "\x01\x37\x0b\x37\x00\xff\x02\x36\x0d\x36\x00\xff\x01"
                   88720:             "\x35\x0f\x35\x00\xff\x01\x34\x11\x34\x00\xff\x01\x33"
                   88721:             "\x13\x33\x00\xff\x01\x32\x15\x32\x00\x31\x17\x62\x05"
                   88722:             "\x02\x10\x61\x06\x02\x11\x60\x05\x04\x10\x5f\x06\x04"
                   88723:             "\x11\x5e\x05\x06\x10\x5d\x06\x06\x11\x5c\x05\x08\x10"
                   88724:             "\x5b\x06\x08\x11\x5a\x05\x0a\x10\x59\x06\x0a\x11\x58"
                   88725:             "\x05\x0c\x10\x57\x06\x0c\x11\x56\x05\x0e\x10\x55\x06"
                   88726:             "\x0e\x11\x54\x05\x10\x10\x53\x06\x10\x11\x52\x05\x12"
                   88727:             "\x10\x51\x06\x12\x11\x50\x05\x14\x10\x4f\x06\x14\x11"
                   88728:             "\x4e\x05\x16\x10\x4d\x06\x16\x11\x4c\x05\x18\x10\x4b"
                   88729:             "\x06\x18\x11\x4a\x05\x1a\x10\x49\x06\x1a\x11\x48\x05"
                   88730:             "\x1c\x10\x47\x06\x1c\x11\x46\x05\x1e\x10\x45\x06\x1e"
                   88731:             "\x11\x44\x05\x20\x10\x43\x06\x20\x11\x42\x05\x22\x10"
                   88732:             "\x41\x06\x22\x11\x40\x05\x24\x10\x3f\x06\x24\x11\x3e"
                   88733:             "\x05\x26\x10\x3d\x06\x26\x11\x3c\x05\x28\x10\x3b\x06"
                   88734:             "\x28\x11\x3a\x05\x29\x11\x39\x06\x2a\x11\x38\x05\x2b"
                   88735:             "\x11\x37\x06\x2c\x11\x36\x05\x2d\x11\x35\x06\x2e\x11"
                   88736:             "\x34\x05\x2f\x11\x33\x06\x30\x11\x32\x05\x31\x11\x31"
                   88737:             "\x06\x32\x11\x30\x05\x33\x11\x2f\x06\x34\x11\x2e\x05"
                   88738:             "\x35\x11\x2d\x06\x36\x11\x2c\x05\x37\x11\x2b\x06\x38"
                   88739:             "\x11\x2a\x05\x39\x11\x29\x06\x3a\x11\x28\x05\x3b\x11"
                   88740:             "\x27\x06\x3c\x11\x26\x05\x3d\x11\x25\x06\x3e\x11\x24"
                   88741:             "\x05\x3f\x11\x23\x06\x40\x11\x22\x05\x41\x11\x21\x06"
                   88742:             "\x42\x11\x20\x05\x43\x11\x10\x00\xff\x01\x0f\x06\x44"
                   88743:             "\x11\x0f\x00\xff\x01\x0e\x06\x46\x11\x0e\x00\xff\x01"
                   88744:             "\x0d\x06\x48\x11\x0d\x00\xff\x01\x0c\x06\x4a\x11\x0c"
                   88745:             "\x00\xff\x01\x0b\x06\x4c\x11\x0b\x00\xff\x01\x0a\x06"
                   88746:             "\x4e\x11\x0a\x00\xff\x01\x09\x06\x50\x11\x09\x00\xff"
                   88747:             "\x01\x08\x06\x52\x11\x08\x00\x08\x05\x54\x10\x0f\x06"
                   88748:             "\x54\x11\x0e\x05\x56\x10\x0d\x06\x56\x11\x0c\x05\x58"
                   88749:             "\x10\x06\x00\xff\x01\x05\x6f\x05\x00\xff\x01\x04\x71"
                   88750:             "\x04\x00\xff\x01\x03\x73\x03\x00\xff\x01\x02\x75\x02"
                   88751:             "\x00\xff\x01\x01\x77\x01\xff\x02\x79" }  },
                   88752:       /* --- pixel bitmap for cmr1200 char#2 \Theta --- */
1.1       albertel 88753:       {   2,21395,                      /* character number, location */
1.2       albertel 88754:         117, 9,   -4, 9,      /* topleft row,col, and botleft row,col */
                   88755:           { 110,  121, 2,435, (pixbyte *)/* width,ht, fmt,pixsz,map.. */
                   88756:             "\x30\x0e\x5b\x18\x52\x20\x4c\x24\x47\x10\x0a\x10\x42"
                   88757:             "\x0e\x12\x0e\x3e\x0d\x18\x0d\x3b\x0c\x1c\x0c\x38\x0c"
                   88758:             "\x20\x0c\x35\x0b\x24\x0b\x32\x0c\x26\x0c\x2f\x0c\x28"
                   88759:             "\x0c\x2d\x0c\x2a\x0c\x2a\x0c\x2e\x0c\x27\x0c\x30\x0c"
                   88760:             "\x25\x0c\x32\x0c\x23\x0d\x32\x0d\x21\x0d\x34\x0d\x20"
                   88761:             "\x0c\x36\x0c\x1f\x0c\x38\x0c\x1d\x0c\x3a\x0c\x1b\x0d"
                   88762:             "\x3a\x0d\x0d\x00\xff\x01\x0c\x0d\x3c\x0d\x0c\x00\x0b"
                   88763:             "\x0d\x3e\x0d\x0b\x00\xff\x01\x0a\x0d\x40\x0d\x0a\x00"
                   88764:             "\x09\x0d\x42\x0d\x09\x00\xff\x01\x08\x0e\x42\x0e\x08"
                   88765:             "\x00\xff\x01\x07\x0e\x44\x0e\x07\x00\xff\x01\x06\x0e"
                   88766:             "\x46\x0e\x06\x00\x05\x0f\x46\x0f\x05\x00\xff\x01\x05"
                   88767:             "\x0e\x48\x0e\x05\x00\xff\x01\x04\x0f\x48\x0f\x04\x00"
                   88768:             "\xff\x03\x03\x0f\x4a\x0f\x03\x00\xff\x03\x02\x0f\x4c"
                   88769:             "\x0f\x02\x00\x01\x10\x4c\x10\x01\x00\xff\x01\x01\x10"
                   88770:             "\x09\x04\x32\x04\x09\x10\x01\x00\xff\x02\x01\x0f\x0a"
                   88771:             "\x04\x32\x04\x0a\x0f\x01\x10\x0a\x04\x32\x04\x0a\x10"
                   88772:             "\x00\xff\x0c\x10\x0a\x3a\x0a\x10\x00\xff\x01\x10\x0a"
                   88773:             "\x04\x32\x04\x0a\x10\xff\x01\x01\x0f\x0a\x04\x32\x04"
                   88774:             "\x0a\x0f\x01\x00\xff\x01\x01\x10\x09\x04\x32\x04\x09"
                   88775:             "\x10\x01\x00\xff\x01\x01\x10\x4c\x10\x01\x00\xff\x02"
                   88776:             "\x02\x0f\x4c\x0f\x02\x00\x02\x10\x4a\x10\x02\x00\xff"
                   88777:             "\x02\x03\x0f\x4a\x0f\x03\x00\x04\x0e\x4a\x0e\x04\x00"
                   88778:             "\xff\x01\x04\x0f\x48\x0f\x04\x00\x05\x0e\x48\x0e\x0a"
                   88779:             "\x0f\x46\x0f\x05\x00\xff\x01\x06\x0e\x46\x0e\x06\x00"
                   88780:             "\xff\x01\x07\x0e\x44\x0e\x07\x00\x08\x0d\x44\x0d\x10"
                   88781:             "\x0e\x42\x0e\x11\x0d\x42\x0d\x12\x0e\x40\x0e\x13\x0d"
                   88782:             "\x40\x0d\x0a\x00\xff\x01\x0b\x0d\x3e\x0d\x0b\x00\x0c"
                   88783:             "\x0d\x3c\x0d\x19\x0d\x3a\x0d\x1b\x0c\x3a\x0c\x1c\x0d"
                   88784:             "\x38\x0d\x1d\x0d\x36\x0d\x1f\x0d\x34\x0d\x21\x0c\x34"
                   88785:             "\x0c\x23\x0c\x32\x0c\x25\x0c\x30\x0c\x27\x0c\x2e\x0c"
                   88786:             "\x29\x0c\x2c\x0c\x2c\x0c\x28\x0c\x2f\x0c\x26\x0c\x31"
                   88787:             "\x0c\x24\x0c\x34\x0c\x20\x0c\x37\x0d\x1c\x0d\x3a\x0d"
                   88788:             "\x18\x0d\x3e\x0e\x12\x0e\x42\x10\x0a\x10\x47\x24\x4c"
                   88789:             "\x20\x52\x18\x5b\x0e\x30" }  },
                   88790:       /* --- pixel bitmap for cmr1200 char#3 \Lambda --- */
1.1       albertel 88791:       {   3,21990,                      /* character number, location */
1.2       albertel 88792:         119, 5,    0, 5,      /* topleft row,col, and botleft row,col */
                   88793:           { 104,  119, 2,442, (pixbyte *)/* width,ht, fmt,pixsz,map.. */
                   88794:             "\x32\x04\x32\x00\xff\x01\x31\x06\x31\x00\xff\x02\x30"
                   88795:             "\x08\x30\x00\xff\x02\x2f\x0a\x2f\x00\xff\x02\x2e\x0c"
                   88796:             "\x2e\x00\xff\x02\x2d\x0e\x2d\x00\xff\x02\x2c\x10\x2c"
                   88797:             "\x00\xff\x03\x2b\x12\x2b\x00\xff\x02\x2a\x14\x2a\x00"
                   88798:             "\xff\x01\x29\x05\x01\x10\x29\x00\x29\x05\x02\x0f\x51"
                   88799:             "\x06\x02\x10\x50\x05\x03\x10\x50\x05\x04\x0f\x4f\x06"
                   88800:             "\x04\x10\x4e\x05\x05\x10\x4e\x05\x06\x0f\x4d\x06\x06"
                   88801:             "\x10\x4c\x05\x07\x10\x4c\x05\x08\x0f\x4b\x06\x08\x10"
                   88802:             "\x25\x00\xff\x01\x25\x05\x09\x10\x25\x00\x24\x06\x0a"
                   88803:             "\x10\x24\x00\xff\x01\x24\x05\x0b\x10\x24\x00\x24\x05"
                   88804:             "\x0c\x0f\x24\x00\xff\x01\x23\x05\x0d\x10\x23\x00\x23"
                   88805:             "\x05\x0e\x0f\x23\x00\xff\x01\x22\x05\x0f\x10\x22\x00"
                   88806:             "\x22\x05\x10\x0f\x43\x06\x10\x10\x42\x05\x11\x10\x42"
                   88807:             "\x05\x12\x0f\x41\x06\x12\x10\x40\x05\x13\x10\x40\x05"
                   88808:             "\x14\x0f\x3f\x06\x14\x10\x3e\x05\x15\x10\x3e\x05\x16"
                   88809:             "\x0f\x3d\x06\x16\x10\x1e\x00\xff\x01\x1e\x05\x17\x10"
                   88810:             "\x1e\x00\x1d\x06\x18\x10\x1d\x00\xff\x01\x1d\x05\x19"
                   88811:             "\x10\x1d\x00\x1d\x05\x1a\x0f\x1d\x00\xff\x01\x1c\x05"
                   88812:             "\x1b\x10\x1c\x00\x1c\x05\x1c\x0f\x1c\x00\xff\x01\x1b"
                   88813:             "\x05\x1d\x10\x1b\x00\x1b\x05\x1e\x0f\x35\x06\x1e\x10"
                   88814:             "\x34\x05\x1f\x10\x34\x05\x20\x0f\x33\x06\x20\x10\x32"
                   88815:             "\x05\x21\x10\x32\x05\x22\x0f\x31\x06\x22\x10\x30\x05"
                   88816:             "\x23\x10\x30\x05\x24\x0f\x2f\x06\x24\x10\x17\x00\xff"
                   88817:             "\x01\x17\x05\x25\x10\x17\x00\x16\x06\x26\x10\x16\x00"
                   88818:             "\xff\x01\x16\x05\x27\x10\x16\x00\x15\x06\x28\x10\x15"
                   88819:             "\x00\xff\x01\x15\x05\x29\x10\x15\x00\x15\x05\x2a\x0f"
                   88820:             "\x15\x00\xff\x01\x14\x05\x2b\x10\x14\x00\x14\x05\x2c"
                   88821:             "\x0f\x27\x06\x2c\x10\x26\x05\x2d\x10\x26\x05\x2e\x0f"
                   88822:             "\x25\x06\x2e\x10\x24\x05\x2f\x10\x24\x05\x30\x0f\x23"
                   88823:             "\x06\x30\x10\x22\x05\x31\x10\x22\x05\x32\x0f\x11\x00"
                   88824:             "\xff\x01\x10\x06\x32\x10\x10\x00\x0f\x07\x33\x0f\x1f"
                   88825:             "\x07\x33\x10\x0f\x00\xff\x01\x0e\x08\x33\x10\x0f\x00"
                   88826:             "\x0d\x0a\x32\x11\x1a\x0c\x31\x11\x18\x0f\x2f\x13\x15"
                   88827:             "\x13\x2b\x16\x11\x19\x25\x1c\x09\xff\x04\x22\x19\x2d" }  },
                   88828:       /* --- pixel bitmap for cmr1200 char#4 \Xi --- */
1.1       albertel 88829:       {   4,22423,                      /* character number, location */
1.2       albertel 88830:         112, 7,    0, 7,      /* topleft row,col, and botleft row,col */
                   88831:           { 96,  112, 2,87, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   88832:             "\xff\x0b\x02\x5c\x02\x00\x02\x07\x4e\x07\x03\x06\x52"
                   88833:             "\x06\x01\x00\xff\x03\x01\x05\x54\x05\x01\x00\xff\x07"
                   88834:             "\x01\x04\x56\x04\x01\x00\xff\x0d\x60\x00\xff\x07\x10"
                   88835:             "\x04\x38\x04\x10\x00\xff\x0b\x10\x40\x10\x00\xff\x07"
                   88836:             "\x10\x04\x38\x04\x10\x00\xff\x0f\x60\xff\x08\x04\x58"
                   88837:             "\x04\x00\xff\x04\x05\x56\x05\x01\x05\x54\x05\x02\x08"
                   88838:             "\x4e\x08\x01\x00\xff\x0b\x01\x5e\x01" }  },
                   88839:       /* --- pixel bitmap for cmr1200 char#5 \Pi --- */
1.1       albertel 88840:       {   5,22756,                      /* character number, location */
1.2       albertel 88841:         113, 5,    0, 5,      /* topleft row,col, and botleft row,col */
                   88842:           { 114,  113, 2,44, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   88843:             "\xff\x04\x00\x72\x0c\x14\x32\x14\x1b\x11\x32\x11\x1f"
                   88844:             "\x10\x32\x10\x10\x00\xff\x60\x11\x0f\x32\x0f\x11\x00"
                   88845:             "\x10\x11\x30\x11\x1f\x13\x2e\x13\x1b\x19\x28\x19\x0c"
                   88846:             "\xff\x04\x31\x10\x31" }  },
                   88847:       /* --- pixel bitmap for cmr1200 char#6 \Sigma --- */
1.1       albertel 88848:       {   6,23210,                      /* character number, location */
1.2       albertel 88849:         113, 9,    0, 9,      /* topleft row,col, and botleft row,col */
                   88850:           { 101,  113, 2,353, (pixbyte *)/* width,ht, fmt,pixsz,map.. */
                   88851:             "\x01\x5f\x05\xff\x02\x60\x05\x61\x05\x13\x30\x1d\x06"
                   88852:             "\x12\x37\x16\x06\x13\x3a\x12\x07\x13\x3c\x0f\x08\x12"
                   88853:             "\x3e\x0d\x08\x13\x3e\x0c\x09\x13\x3f\x0b\x09\x13\x3f"
                   88854:             "\x0a\x0a\x12\x40\x09\x0a\x13\x3f\x09\x0b\x13\x3f\x08"
                   88855:             "\x0c\x12\x40\x07\x0c\x13\x3f\x07\x0d\x13\x3f\x06\x0e"
                   88856:             "\x12\x3f\x07\x0d\x13\x3f\x06\x0e\x13\x3e\x06\x0f\x12"
                   88857:             "\x3f\x05\x0f\x13\x3e\x05\x10\x13\x3d\x05\x11\x12\x3e"
                   88858:             "\x04\x11\x13\x3d\x05\x11\x13\x3c\x05\x12\x12\x3d\x04"
                   88859:             "\x12\x13\x3c\x04\x13\x13\x3b\x04\x14\x13\x3a\x04\x15"
                   88860:             "\x12\x3a\x04\x15\x13\x39\x05\x15\x13\x39\x04\x16\x12"
                   88861:             "\x39\x04\x16\x13\x38\x04\x17\x13\x53\x12\x53\x13\x53"
                   88862:             "\x13\x53\x12\x53\x13\x53\x13\x53\x12\x53\x13\x53\x13"
                   88863:             "\x53\x12\x53\x13\x53\x13\x53\x13\x53\x12\x53\x13\x53"
                   88864:             "\x13\x53\x12\x53\x13\x53\x12\x54\x11\x54\x10\x56\x0e"
                   88865:             "\x58\x0c\x59\x0b\x5b\x09\x5d\x08\x5d\x07\x5d\x07\x5d"
                   88866:             "\x07\x5d\x07\x5d\x07\x5d\x07\x5d\x07\x5d\x07\x5d\x08"
                   88867:             "\x5d\x07\x5d\x07\x3a\x04\x1f\x07\x3b\x04\x1e\x07\x3c"
                   88868:             "\x04\x1d\x07\x3c\x05\x1c\x07\x3d\x04\x1c\x07\x3e\x04"
                   88869:             "\x1b\x07\x3f\x04\x1a\x08\x3f\x04\x1a\x07\x40\x04\x19"
                   88870:             "\x07\x40\x05\x18\x07\x41\x05\x17\x07\x42\x05\x16\x07"
                   88871:             "\x42\x05\x16\x07\x43\x05\x15\x07\x44\x05\x14\x07\x44"
                   88872:             "\x06\x13\x08\x44\x06\x12\x08\x44\x07\x12\x07\x45\x07"
                   88873:             "\x11\x07\x45\x07\x11\x07\x46\x07\x10\x07\x46\x08\x0f"
                   88874:             "\x07\x46\x09\x0e\x07\x46\x0a\x0d\x07\x47\x0a\x0c\x07"
                   88875:             "\x46\x0c\x0b\x08\x45\x0d\x0b\x07\x45\x0d\x0b\x07\x44"
                   88876:             "\x0f\x0a\x07\x42\x12\x09\x07\x3f\x16\x08\x07\x38\x1e"
                   88877:             "\x07\x5e\x06\x5f\x05\x60\x04\xff\x02\x60\x05\x00\x01"
                   88878:             "\x5f\x05" }  },
                   88879:       /* --- pixel bitmap for cmr1200 char#7 \Upsilon --- */
1.1       albertel 88880:       {   7,23607,                      /* character number, location */
1.2       albertel 88881:         117, 9,    0, 9,      /* topleft row,col, and botleft row,col */
                   88882:           { 110,  117, 2,253, (pixbyte *)/* width,ht, fmt,pixsz,map.. */
                   88883:             "\x11\x0a\x38\x0a\x1f\x11\x30\x11\x1a\x15\x2c\x15\x17"
                   88884:             "\x18\x28\x18\x14\x1c\x24\x1c\x11\x1e\x22\x1e\x0f\x20"
                   88885:             "\x20\x20\x0d\x23\x1d\x22\x0c\x24\x1b\x23\x0b\x25\x1a"
                   88886:             "\x25\x09\x27\x18\x27\x08\x28\x16\x28\x07\x2a\x15\x29"
                   88887:             "\x06\x0d\x0b\x13\x13\x12\x0b\x0d\x05\x0b\x11\x10\x12"
                   88888:             "\x10\x11\x0b\x04\x0a\x14\x0f\x11\x0e\x14\x0a\x04\x08"
                   88889:             "\x17\x0e\x10\x0e\x17\x08\x03\x08\x1a\x0d\x0f\x0d\x19"
                   88890:             "\x08\x02\x07\x1c\x0d\x0d\x0c\x1c\x07\x02\x06\x1e\x0c"
                   88891:             "\x0d\x0c\x1d\x06\x02\x06\x1f\x0c\x0b\x0c\x1e\x06\x01"
                   88892:             "\x06\x20\x0c\x0b\x0b\x20\x0c\x21\x0b\x0a\x0b\x21\x0b"
                   88893:             "\x23\x0b\x09\x0b\x22\x0a\x23\x0b\x08\x0b\x23\x0a\x24"
                   88894:             "\x0b\x07\x0a\x24\x0a\x25\x0a\x07\x0a\x24\x0a\x25\x0a"
                   88895:             "\x06\x0b\x24\x05\x01\x03\x26\x0b\x05\x0a\x26\x03\x2c"
                   88896:             "\x0a\x05\x0a\x55\x0a\x05\x09\x57\x09\x04\x0a\x57\x0a"
                   88897:             "\x03\x0a\x57\x0a\x03\x09\x59\x09\x03\x09\x59\x09\x02"
                   88898:             "\x0a\x59\x0a\x01\x0a\x59\x0a\x01\x09\x2d\x00\xff\x01"
                   88899:             "\x2e\x09\x01\x09\x2d\x00\x2e\x13\x5b\x12\x2e\x00\xff"
                   88900:             "\x06\x2f\x11\x2e\x00\x2f\x10\x2f\x00\xff\x39\x30\x0f"
                   88901:             "\x2f\x00\xff\x01\x2f\x11\x2e\x00\x2e\x13\x57\x1b\x29"
                   88902:             "\x00\xff\x04\x1b\x39\x1a" }  },
                   88903:       /* --- pixel bitmap for cmr1200 char#8 \Phi --- */
1.1       albertel 88904:       {   8,23992,                      /* character number, location */
1.2       albertel 88905:         113, 9,    0, 9,      /* topleft row,col, and botleft row,col */
                   88906:           { 101,  113, 2,365, (pixbyte *)/* width,ht, fmt,pixsz,map.. */
                   88907:             "\xff\x04\x17\x38\x16\x00\x26\x1a\x4f\x12\x29\x00\xff"
                   88908:             "\x01\x2b\x10\x2a\x00\xff\x0c\x2c\x0e\x2b\x00\x2a\x11"
                   88909:             "\x4d\x1f\x42\x27\x3b\x2d\x35\x12\x01\x20\x30\x0f\x06"
                   88910:             "\x0e\x05\x0f\x2c\x0e\x09\x0e\x08\x0e\x28\x0d\x0c\x0e"
                   88911:             "\x0b\x0d\x24\x0d\x0e\x0e\x0d\x0d\x21\x0d\x0f\x0e\x0e"
                   88912:             "\x0d\x1e\x0d\x11\x0e\x10\x0d\x1b\x0d\x12\x0e\x11\x0d"
                   88913:             "\x19\x0d\x13\x0e\x12\x0d\x16\x0e\x14\x0e\x13\x0e\x13"
                   88914:             "\x0e\x15\x0e\x14\x0e\x11\x0e\x16\x0e\x15\x0e\x08\x00"
                   88915:             "\xff\x01\x07\x0e\x17\x0e\x16\x0e\x07\x00\x06\x0e\x18"
                   88916:             "\x0e\x17\x0e\x0b\x0f\x18\x0e\x17\x0f\x05\x00\xff\x01"
                   88917:             "\x04\x0f\x19\x0e\x18\x0f\x04\x00\x03\x10\x19\x0e\x18"
                   88918:             "\x10\x06\x0f\x1a\x0e\x19\x0f\x03\x00\xff\x01\x02\x10"
                   88919:             "\x1a\x0e\x19\x10\x02\x00\x01\x11\x1a\x0e\x19\x11\x01"
                   88920:             "\x00\xff\x02\x01\x10\x1b\x0e\x1a\x10\x01\xff\x08\x11"
                   88921:             "\x1b\x0e\x1a\x11\xff\x02\x01\x10\x1b\x0e\x1a\x10\x01"
                   88922:             "\x00\x01\x11\x1a\x0e\x19\x11\x01\x00\xff\x01\x02\x10"
                   88923:             "\x1a\x0e\x19\x10\x02\x00\x03\x0f\x1a\x0e\x19\x0f\x06"
                   88924:             "\x10\x19\x0e\x18\x10\x03\x00\xff\x01\x04\x0f\x19\x0e"
                   88925:             "\x18\x0f\x04\x00\x05\x0f\x18\x0e\x17\x0f\x0b\x0e\x18"
                   88926:             "\x0e\x17\x0e\x06\x00\xff\x01\x07\x0e\x17\x0e\x16\x0e"
                   88927:             "\x07\x00\x08\x0e\x16\x0e\x15\x0e\x11\x0e\x15\x0e\x14"
                   88928:             "\x0e\x13\x0e\x14\x0e\x13\x0e\x16\x0d\x13\x0e\x12\x0d"
                   88929:             "\x19\x0d\x12\x0e\x11\x0d\x1b\x0d\x11\x0e\x10\x0d\x1e"
                   88930:             "\x0d\x0f\x0e\x0e\x0d\x21\x0d\x0e\x0e\x0d\x0d\x24\x0d"
                   88931:             "\x0c\x0e\x0b\x0d\x28\x0e\x09\x0e\x08\x0e\x2c\x0f\x06"
                   88932:             "\x0e\x05\x0f\x30\x12\x01\x20\x35\x2d\x3b\x27\x42\x1f"
                   88933:             "\x4d\x11\x2a\x00\xff\x0c\x2c\x0e\x2b\x00\xff\x01\x2b"
                   88934:             "\x10\x2a\x00\x2a\x12\x4f\x1a\x25\x00\xff\x04\x17\x38"
                   88935:             "\x16" }  },
                   88936:       /* --- pixel bitmap for cmr1200 char#9 \Psi --- */
1.1       albertel 88937:       {   9,24465,                      /* character number, location */
1.2       albertel 88938:         113, 9,    0, 9,      /* topleft row,col, and botleft row,col */
                   88939:           { 110,  113, 2,301, (pixbyte *)/* width,ht, fmt,pixsz,map.. */
                   88940:             "\xff\x04\x1b\x38\x1b\x00\x2a\x1a\x58\x12\x2e\x00\xff"
                   88941:             "\x01\x2f\x10\x2f\x00\xff\x0b\x30\x0e\x30\x00\x01\x0f"
                   88942:             "\x20\x0e\x20\x0f\x01\x11\x1f\x0e\x1f\x24\x1d\x0e\x1d"
                   88943:             "\x13\x01\x13\x1c\x0e\x1c\x13\x06\x10\x1b\x0e\x1b\x10"
                   88944:             "\x0b\x10\x1a\x0e\x1a\x10\x0d\x0f\x1a\x0e\x1a\x0f\x07"
                   88945:             "\x00\xff\x01\x08\x0f\x19\x0e\x19\x0f\x08\x00\x09\x0e"
                   88946:             "\x19\x0e\x19\x0e\x09\x00\xff\x01\x09\x0f\x18\x0e\x18"
                   88947:             "\x0f\x09\x00\xff\x02\x0a\x0e\x18\x0e\x18\x0e\x0a\x00"
                   88948:             "\xff\x01\x0a\x0f\x17\x0e\x17\x0f\x0a\x00\xff\x0f\x0b"
                   88949:             "\x0e\x17\x0e\x17\x0e\x0b\x00\xff\x05\x0c\x0e\x16\x0e"
                   88950:             "\x16\x0e\x0c\x00\xff\x03\x0d\x0e\x15\x0e\x15\x0e\x0d"
                   88951:             "\x00\xff\x02\x0e\x0e\x14\x0e\x14\x0e\x0e\x00\xff\x01"
                   88952:             "\x0f\x0e\x13\x0e\x13\x0e\x0f\x00\x10\x0d\x13\x0e\x13"
                   88953:             "\x0d\x20\x0e\x12\x0e\x12\x0e\x21\x0d\x12\x0e\x12\x0d"
                   88954:             "\x22\x0e\x11\x0e\x11\x0e\x23\x0d\x11\x0e\x11\x0d\x25"
                   88955:             "\x0d\x10\x0e\x10\x0d\x26\x0e\x0f\x0e\x0f\x0e\x27\x0d"
                   88956:             "\x0f\x0e\x0f\x0d\x29\x0d\x0e\x0e\x0e\x0d\x2b\x0d\x0d"
                   88957:             "\x0e\x0d\x0d\x2d\x0d\x0c\x0e\x0c\x0d\x2f\x0d\x0b\x0e"
                   88958:             "\x0b\x0d\x31\x0d\x0a\x0e\x0a\x0d\x34\x0c\x09\x0e\x09"
                   88959:             "\x0c\x37\x0d\x07\x0e\x07\x0d\x3a\x0d\x05\x0e\x05\x0d"
                   88960:             "\x3d\x0f\x02\x0e\x02\x0f\x40\x2c\x44\x28\x49\x22\x50"
                   88961:             "\x1a\x59\x10\x2f\x00\xff\x0c\x30\x0e\x30\x00\xff\x01"
                   88962:             "\x2f\x10\x2f\x00\x2e\x12\x58\x1a\x2a\x00\xff\x04\x1b"
                   88963:             "\x38\x1b" }  },
                   88964:       /* --- pixel bitmap for cmr1200 char#10 \Omega --- */
1.1       albertel 88965:       {  10,24958,                      /* character number, location */
1.2       albertel 88966:         117, 7,    0, 7,      /* topleft row,col, and botleft row,col */
                   88967:           { 105,  117, 2,457, (pixbyte *)/* width,ht, fmt,pixsz,map.. */
                   88968:             "\x2c\x11\x53\x1b\x4a\x23\x43\x29\x3d\x12\x0b\x12\x38"
                   88969:             "\x10\x13\x10\x34\x0f\x19\x0f\x31\x0e\x1d\x0e\x2e\x0e"
                   88970:             "\x21\x0e\x2a\x0e\x25\x0e\x27\x0e\x27\x0e\x25\x0e\x29"
                   88971:             "\x0e\x22\x0f\x2b\x0f\x1f\x0f\x2d\x0f\x1d\x0f\x2f\x0f"
                   88972:             "\x1b\x0f\x31\x0f\x19\x0f\x33\x0f\x17\x0f\x35\x0f\x15"
                   88973:             "\x10\x35\x10\x14\x0f\x37\x0f\x13\x0f\x39\x0f\x11\x10"
                   88974:             "\x39\x10\x08\x00\xff\x01\x07\x10\x3b\x10\x07\x00\xff"
                   88975:             "\x01\x06\x10\x3d\x10\x06\x00\x05\x11\x3d\x11\x0a\x10"
                   88976:             "\x3f\x10\x05\x00\xff\x01\x04\x11\x3f\x11\x04\x00\x04"
                   88977:             "\x10\x41\x10\x04\x00\xff\x03\x03\x11\x41\x11\x03\x00"
                   88978:             "\xff\x0c\x02\x11\x43\x11\x02\x00\x02\x12\x41\x12\x02"
                   88979:             "\x00\xff\x03\x03\x11\x41\x11\x03\x00\x04\x10\x41\x10"
                   88980:             "\x04\x00\xff\x02\x04\x11\x3f\x11\x04\x00\xff\x01\x05"
                   88981:             "\x10\x3f\x10\x05\x00\xff\x01\x06\x10\x3d\x10\x06\x00"
                   88982:             "\x07\x0f\x3d\x0f\x07\x00\xff\x01\x07\x10\x3b\x10\x07"
                   88983:             "\x00\x08\x0f\x3b\x0f\x11\x0e\x3b\x0e\x12\x0f\x39\x0f"
                   88984:             "\x09\x00\xff\x01\x0a\x0e\x39\x0e\x0a\x00\xff\x01\x0b"
                   88985:             "\x0e\x37\x0e\x0b\x00\x0c\x0d\x37\x0d\x0c\x00\xff\x01"
                   88986:             "\x0d\x0d\x35\x0d\x0d\x00\x0e\x0c\x35\x0c\x0e\x00\xff"
                   88987:             "\x01\x0f\x0c\x33\x0c\x0f\x00\xff\x01\x10\x0c\x31\x0c"
                   88988:             "\x10\x00\x11\x0b\x31\x0b\x11\x00\xff\x01\x12\x0b\x2f"
                   88989:             "\x0b\x12\x00\x13\x0a\x2f\x0a\x13\x00\xff\x01\x14\x0a"
                   88990:             "\x2d\x0a\x14\x00\x15\x09\x2d\x09\x15\x00\xff\x01\x16"
                   88991:             "\x09\x2b\x09\x16\x00\x17\x08\x2b\x08\x2e\x09\x29\x09"
                   88992:             "\x17\x04\x14\x08\x29\x08\x14\x08\x15\x07\x29\x07\x15"
                   88993:             "\x08\x15\x08\x27\x08\x15\x04\xff\x01\x01\x04\x15\x07"
                   88994:             "\x27\x07\x15\x04\x01\x00\x01\x04\x16\x06\x27\x06\x16"
                   88995:             "\x04\x02\x04\x16\x07\x25\x07\x16\x04\x02\x04\x17\x06"
                   88996:             "\x25\x06\x17\x04\x01\x00\xff\x01\x02\x04\x16\x06\x25"
                   88997:             "\x06\x16\x04\x02\x00\xff\x01\x02\x04\x17\x06\x23\x06"
                   88998:             "\x17\x04\x02\x00\x02\x05\x17\x05\x23\x05\x17\x05\x05"
                   88999:             "\x04\x17\x05\x23\x05\x17\x04\x06\x05\x16\x05\x23\x05"
                   89000:             "\x16\x05\x06\x08\x14\x04\x23\x04\x14\x08\x03\x00\xff"
                   89001:             "\x02\x03\x21\x21\x21\x03\x00\xff\x04\x04\x20\x21\x20"
                   89002:             "\x04\x00\xff\x01\x05\x1f\x21\x1f\x05\x00\x05\x1e\x23"
                   89003:             "\x1e\x05" }  },
                   89004:       /* --- pixel bitmap for cmr1200 char#11 \ff --- */
1.1       albertel 89005:       {  11,41715,                      /* character number, location */
1.2       albertel 89006:         117, 4,    0, 4,      /* topleft row,col, and botleft row,col */
                   89007:           { 100,  117, 2,165, (pixbyte *)/* width,ht, fmt,pixsz,map.. */
                   89008:             "\x2a\x0e\x18\x0a\x2f\x17\x11\x10\x29\x1c\x0c\x15\x24"
                   89009:             "\x21\x08\x18\x21\x0f\x0a\x0b\x06\x0b\x07\x08\x1e\x0d"
                   89010:             "\x12\x08\x03\x0b\x09\x09\x1b\x0d\x17\x06\x01\x0b\x09"
                   89011:             "\x0b\x19\x0c\x18\x11\x0a\x0c\x18\x0b\x18\x13\x0a\x0d"
                   89012:             "\x15\x0c\x18\x13\x0a\x0e\x14\x0c\x19\x12\x0b\x0e\x13"
                   89013:             "\x0c\x19\x13\x0b\x0e\x12\x0c\x1a\x12\x0c\x0e\x12\x0b"
                   89014:             "\x1b\x12\x0c\x0e\x11\x0c\x1b\x11\x0d\x0e\x10\x0c\x1c"
                   89015:             "\x11\x0e\x0c\x10\x0c\x1d\x10\x10\x0a\x11\x0c\x1e\x0f"
                   89016:             "\x11\x08\x11\x0d\x1f\x0e\x13\x04\x13\x0c\x21\x0d\x2a"
                   89017:             "\x0c\x22\x0b\x2a\x0d\x21\x0c\x1d\x00\xff\x17\x0d\x0c"
                   89018:             "\x22\x0c\x1d\xff\x04\x59\x0b\x00\xff\x39\x0d\x0c\x22"
                   89019:             "\x0c\x1d\x00\x0c\x0e\x20\x0e\x28\x0e\x20\x0f\x24\x14"
                   89020:             "\x1a\x15\x18\xff\x04\x26\x08\x29\x0d" }  },
                   89021:       /* --- pixel bitmap for cmr1200 char#12 \fi --- */
1.1       albertel 89022:       {  12,42221,                      /* character number, location */
1.2       albertel 89023:         117, 4,    0, 4,      /* topleft row,col, and botleft row,col */
                   89024:           { 83,  117, 2,148, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   89025:             "\x2a\x0d\x41\x15\x3a\x1b\x36\x1f\x32\x0f\x09\x0a\x2f"
                   89026:             "\x0d\x10\x08\x2c\x0d\x15\x06\x2a\x0c\x18\x06\x27\x0c"
                   89027:             "\x1c\x05\x25\x0c\x1b\x08\x23\x0c\x1a\x0a\x22\x0c\x1a"
                   89028:             "\x0c\x20\x0c\x1a\x0d\x20\x0b\x1a\x0e\x1f\x0b\x1b\x0e"
                   89029:             "\x1e\x0c\x1b\x0e\x1d\x0c\x1b\x10\x1c\x0c\x1c\x0e\x0e"
                   89030:             "\x00\xff\x02\x0e\x0c\x1d\x0e\x0e\x00\x0d\x0d\x1e\x0c"
                   89031:             "\x1c\x0c\x20\x0a\x1d\x0c\x22\x06\x12\x00\xff\x13\x0d"
                   89032:             "\x0c\x3a\x00\x0d\x0c\x21\x0c\x1a\x0c\x14\x19\x0d\xff"
                   89033:             "\x04\x46\x0d\x00\x0d\x0c\x1e\x0f\x1a\x0c\x1f\x0e\x1a"
                   89034:             "\x0c\x20\x0d\x0d\x00\xff\x36\x0d\x0c\x21\x0c\x0d\x00"
                   89035:             "\xff\x01\x0c\x0e\x1f\x0e\x0c\x00\x09\x14\x19\x14\x09"
                   89036:             "\xff\x04\x26\x07\x26" }  },
                   89037:       /* --- pixel bitmap for cmr1200 char#13 \fl --- */
1.1       albertel 89038:       {  13,42643,                      /* character number, location */
1.2       albertel 89039:         117, 4,    0, 4,      /* topleft row,col, and botleft row,col */
                   89040:           { 83,  117, 2,120, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   89041:             "\x2a\x0e\x40\x17\x38\x1e\x04\x03\x2c\x27\x2a\x0f\x0b"
                   89042:             "\x0f\x28\x0d\x12\x0c\x26\x0d\x13\x0d\x25\x0c\x14\x0e"
                   89043:             "\x23\x0c\x16\x0e\x22\x0c\x16\x0f\x21\x0c\x17\x0f\x20"
                   89044:             "\x0c\x18\x0f\x1f\x0c\x19\x0f\x1e\x0c\x1a\x0f\x1e\x0b"
                   89045:             "\x1c\x0e\x1d\x0c\x1c\x0e\x1c\x0c\x1e\x0d\x1c\x0c\x1f"
                   89046:             "\x0c\x0d\x00\xff\x02\x0e\x0c\x20\x0c\x0d\x00\x0d\x0d"
                   89047:             "\x20\x0c\x0d\x00\xff\x17\x0d\x0c\x21\x0c\x0d\xff\x04"
                   89048:             "\x46\x0d\x00\xff\x39\x0d\x0c\x21\x0c\x0d\x00\xff\x01"
                   89049:             "\x0c\x0e\x1f\x0e\x0c\x00\x09\x14\x19\x14\x09\xff\x04"
                   89050:             "\x26\x07\x26" }  },
                   89051:       /* --- pixel bitmap for cmr1200 char#14 \ffi --- */
1.1       albertel 89052:       {  14,43107,                      /* character number, location */
1.2       albertel 89053:         117, 4,    0, 4,      /* topleft row,col, and botleft row,col */
                   89054:           { 129,  117, 2,226, (pixbyte *)/* width,ht, fmt,pixsz,map.. */
                   89055:             "\x2a\x0d\x21\x0d\x41\x15\x19\x15\x3b\x1b\x12\x1b\x36"
                   89056:             "\x1f\x0f\x1f\x32\x0f\x09\x0b\x0b\x0f\x09\x0a\x2f\x0d"
                   89057:             "\x11\x08\x08\x0d\x10\x08\x2c\x0d\x15\x07\x05\x0d\x15"
                   89058:             "\x06\x2a\x0c\x19\x06\x03\x0c\x18\x06\x28\x0b\x1c\x12"
                   89059:             "\x1c\x05\x25\x0c\x1b\x13\x1b\x08\x23\x0c\x1a\x14\x1a"
                   89060:             "\x0a\x22\x0c\x1a\x14\x1a\x0c\x20\x0c\x1a\x14\x1a\x0d"
                   89061:             "\x20\x0b\x1b\x13\x1a\x0e\x1f\x0c\x1a\x13\x1b\x0e\x1e"
                   89062:             "\x0c\x1b\x13\x1b\x0e\x1d\x0c\x1c\x12\x1b\x10\x1c\x0c"
                   89063:             "\x1c\x12\x1c\x0e\x1c\x0d\x1c\x11\x1d\x0e\x1c\x0c\x1d"
                   89064:             "\x11\x1d\x0e\x1c\x0c\x1e\x10\x1d\x0e\x1b\x0d\x1f\x0f"
                   89065:             "\x1e\x0c\x1c\x0c\x21\x0d\x20\x0a\x1d\x0c\x22\x0c\x22"
                   89066:             "\x06\x12\x00\xff\x13\x0d\x0c\x22\x0c\x3a\x00\x0d\x0c"
                   89067:             "\x22\x0c\x21\x0c\x1a\x0c\x22\x0c\x14\x19\x0d\xff\x04"
                   89068:             "\x74\x0d\x00\x0d\x0c\x22\x0c\x1e\x0f\x1a\x0c\x22\x0c"
                   89069:             "\x1f\x0e\x1a\x0c\x22\x0c\x20\x0d\x0d\x00\xff\x36\x0d"
                   89070:             "\x0c\x22\x0c\x21\x0c\x0d\x00\xff\x01\x0c\x0e\x20\x0e"
                   89071:             "\x1f\x0e\x0c\x00\x09\x14\x1a\x14\x19\x14\x09\xff\x04"
                   89072:             "\x26\x08\x26\x07\x26" }  },
                   89073:       /* --- pixel bitmap for cmr1200 char#15 \ffl --- */
1.1       albertel 89074:       {  15,43761,                      /* character number, location */
1.2       albertel 89075:         117, 4,    0, 4,      /* topleft row,col, and botleft row,col */
                   89076:           { 129,  117, 2,184, (pixbyte *)/* width,ht, fmt,pixsz,map.. */
                   89077:             "\x2a\x0e\x20\x0e\x40\x17\x17\x17\x39\x1c\x11\x1e\x04"
                   89078:             "\x03\x2c\x21\x0d\x27\x2a\x0f\x0a\x0b\x0a\x0f\x0b\x0f"
                   89079:             "\x28\x0d\x12\x08\x07\x0d\x12\x0c\x26\x0d\x17\x06\x04"
                   89080:             "\x0d\x13\x0d\x25\x0c\x18\x08\x02\x0c\x14\x0e\x24\x0b"
                   89081:             "\x19\x15\x16\x0e\x22\x0c\x19\x15\x16\x0f\x21\x0c\x19"
                   89082:             "\x15\x17\x0f\x20\x0c\x19\x15\x18\x0f\x1f\x0c\x1a\x14"
                   89083:             "\x19\x0f\x1f\x0b\x1b\x13\x1a\x0f\x1e\x0c\x1b\x12\x1c"
                   89084:             "\x0e\x1d\x0c\x1c\x12\x1c\x0e\x1c\x0c\x1d\x11\x1e\x0d"
                   89085:             "\x1c\x0c\x1e\x10\x1f\x0c\x1b\x0d\x1f\x0e\x20\x0c\x1b"
                   89086:             "\x0c\x21\x0d\x20\x0c\x1b\x0c\x22\x0c\x20\x0c\x1a\x0d"
                   89087:             "\x21\x0d\x20\x0c\x0d\x00\xff\x17\x0d\x0c\x22\x0c\x21"
                   89088:             "\x0c\x0d\xff\x04\x74\x0d\x00\xff\x39\x0d\x0c\x22\x0c"
                   89089:             "\x21\x0c\x0d\x00\xff\x01\x0c\x0e\x20\x0e\x1f\x0e\x0c"
                   89090:             "\x00\x09\x14\x1a\x14\x19\x14\x09\xff\x04\x26\x08\x26"
                   89091:             "\x07\x26" }  },
                   89092:       /* --- pixel bitmap for cmr1200 char#16 \imath --- */
1.1       albertel 89093:       {  16,30954,                      /* character number, location */
1.2       albertel 89094:          73, 5,    0, 5,      /* topleft row,col, and botleft row,col */
                   89095:           { 36,   73, 3,78, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   89096:             "\xe0\x56\xe0\x4e\x04\xb0\xf4\x1e\x0a\xb0\x9e\x02\xe0"
                   89097:             "\x8e\xb0\xf1\xcd\xb0\xfe\xdc\xb0\xfe\xdc\xb0\xfe\xdc"
                   89098:             "\xb0\xf8\xdc\xb0\xf1\xce\xa0\x9e\x05\x8f\x4e\x0e\x08" }  },
                   89099:       /* --- pixel bitmap for cmr1200 char#17 \jmath --- */
1.1       albertel 89100:       {  17,31107,                      /* character number, location */
1.2       albertel 89101:          73,-7,  -34,-7,      /* topleft row,col, and botleft row,col */
                   89102:           { 42,  107, 3,185, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   89103:             "\xe0\xe0\x86\xe0\x9e\x05\xf4\xe0\x2e\x0c\xe0\xbe\x03"
                   89104:             "\xe0\xee\xf1\xe0\xe0\x1d\xfe\xe0\xe0\x2c\xfe\xe0\xe0"
                   89105:             "\x2c\xfe\xe0\xe0\x2c\xfe\xe0\xe0\x2c\xfe\xe0\xe0\x2c"
                   89106:             "\x55\xe0\x6c\x39\xe0\x4c\x2b\xe0\x2c\x2d\xe0\x1c\x1e"
                   89107:             "\x01\xec\x1f\x1e\x01\xeb\x2e\x01\xdc\x2f\x1e\x01\xdb"
                   89108:             "\x3e\x01\xcb\x4e\xda\x6d\xca\x7b\xea\x89\xea\xa8\xd9"
                   89109:             "\xda\x8a\xe0\x2e\x0b\xe0\x4e\x08\xe0\x9e\x03\xe0\xeb"
                   89110:             "\xe0\x40" }  },
                   89111:       /* --- pixel bitmap for cmr1200 char#18 \gravesym --- */
1.1       albertel 89112:       {  18,40739,                      /* character number, location */
1.2       albertel 89113:         116,17,   85,17,      /* topleft row,col, and botleft row,col */
                   89114:           { 31,   31, 2,67, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   89115:             "\x05\x03\x1a\x07\x17\x09\x15\x0b\x14\x0c\x12\x0d\x12"
                   89116:             "\x0e\x11\x0f\x10\x00\xff\x01\x01\x0f\x0f\x00\x02\x0f"
                   89117:             "\x11\x0f\x11\x0f\x12\x0d\x13\x0d\x13\x0d\x13\x0d\x14"
                   89118:             "\x0b\x15\x0b\x15\x0b\x15\x0b\x16\x09\x17\x09\x17\x09"
                   89119:             "\x17\x09\x17\x08\x19\x07\x19\x07\x19\x07\x19\x06\x1b"
                   89120:             "\x02\x02" }  },
                   89121:       /* --- pixel bitmap for cmr1200 char#19 \acutesym --- */
1.1       albertel 89122:       {  19,40808,                      /* character number, location */
1.2       albertel 89123:         116,34,   85,34,      /* topleft row,col, and botleft row,col */
                   89124:           { 31,   31, 2,65, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   89125:             "\x17\x03\x1a\x07\x17\x09\x15\x0b\x13\x0c\x13\x0d\x11"
                   89126:             "\x0e\x10\x0f\xff\x01\x0f\x0f\x01\x00\x0e\x0f\x0f\x0f"
                   89127:             "\x0f\x0f\x10\x0d\x11\x0d\x11\x0d\x11\x0d\x12\x0b\x13"
                   89128:             "\x0b\x13\x0b\x13\x0b\x14\x09\x15\x09\x15\x09\x15\x09"
                   89129:             "\x16\x08\x16\x07\x17\x07\x17\x07\x18\x06\x1b\x02\x1b" }  },
                   89130:       /* --- pixel bitmap for cmr1200 char#20 \checksym --- */
1.1       albertel 89131:       {  20,40877,                      /* character number, location */
1.2       albertel 89132:         105,20,   86,20,      /* topleft row,col, and botleft row,col */
                   89133:           { 42,   19, 3,113, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   89134:             "\x13\xe0\xe0\x63\x25\xe0\xe0\x25\x17\xe0\xe7\x18\xe0"
                   89135:             "\xa8\x39\xe0\x69\x59\xe0\x49\x89\xe9\xba\xaa\xda\x8a"
                   89136:             "\xe0\x1b\x4b\xe0\x4e\x08\xe0\x7e\x06\xe0\x9e\x04\xe0"
                   89137:             "\xbe\x02\xe0\xec\xe0\xe0\x3a\xe0\xe0\x58\xe0\xe0\x76"
                   89138:             "\xe0\xe0\x94\xe0\x50" }  },
                   89139:       /* --- pixel bitmap for cmr1200 char#21 \brevesym --- */
1.1       albertel 89140:       {  21,40942,                      /* character number, location */
1.2       albertel 89141:         115,16,   86,16,      /* topleft row,col, and botleft row,col */
                   89142:           { 50,   29, 3,173, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   89143:             "\xf4\x04\xe0\xe0\xe4\x05\xe0\xe0\xc5\xf1\x14\xe0\xe0"
                   89144:             "\xc4\x10\xf1\x15\xe0\xe0\xa5\x10\xf1\x25\xe0\xe0\x85"
                   89145:             "\x20\x26\xe0\xe0\x66\x55\xe0\xe0\x65\x66\xe0\xe0\x46"
                   89146:             "\x76\xe0\xe0\x26\x87\xe0\xe7\x97\xe0\xc7\xb8\xe0\x88"
                   89147:             "\xc9\xe0\x69\xda\xe0\x2a\xe0\x1d\x8d\xe0\x3e\x0e\x04"
                   89148:             "\xe0\x5e\x0e\x02\xe0\x7e\x0e\xe0\xae\x0a\xe0\xee\x06"
                   89149:             "\xe0\xe0\x4e\x02\xe0\xe0\x9a\xe0\x60" }  },
1.1       albertel 89150:       /* --- pixel bitmap for cmr1200 char#22 (noname) --- */
                   89151:       {  22,41051,                      /* character number, location */
1.2       albertel 89152:          98,11,   92,11,      /* topleft row,col, and botleft row,col */
                   89153:           { 60,    6, 2, 4, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   89154:             "\xff\x05\x00\x3c" }  },
1.1       albertel 89155:       /* --- pixel bitmap for cmr1200 char#23 (noname) --- */
                   89156:       {  23,41070,                      /* character number, location */
1.2       albertel 89157:         119,46,   90,46,      /* topleft row,col, and botleft row,col */
                   89158:           { 32,   29, 3,101, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   89159:             "\xc8\xe0\x7e\xe0\x2e\x04\xde\x06\xa7\xa7\x76\xe6\x64"
                   89160:             "\xe0\x44\x54\xe0\x64\x20\xf2\x14\xe0\x84\x1f\x64\xe0"
                   89161:             "\xa4\xf2\x14\xe0\x84\x10\x24\xe0\x64\x54\xe0\x44\x66"
                   89162:             "\xe6\x77\xa7\xae\x06\xde\x04\xe0\x2e\xe0\x78\xc0" }  },
1.1       albertel 89163:       /* --- pixel bitmap for cmr1200 char#24 (noname) --- */
                   89164:       {  24,41177,                      /* character number, location */
1.2       albertel 89165:          -4,21,  -34,21,      /* topleft row,col, and botleft row,col */
                   89166:           { 40,   30, 3,115, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   89167:             "\xf4\xec\xe0\xee\xe0\xce\x03\xe0\x9e\x06\xe0\xbe\x02"
                   89168:             "\xe0\xde\x01\xe0\xdd\xe0\xed\xe0\xed\x10\xf1\xe0\xdc"
                   89169:             "\x10\xf3\xe0\xec\xf1\xe0\xdc\x10\xe0\xcd\xe0\xcd\xe0"
                   89170:             "\xbe\xe0\x9e\x02\xe0\x5e\x06\x5e\x0e\x05\x7e\x0e\x02"
                   89171:             "\xae\x0c\xee\x05\xe0\x7a" }  },
1.1       albertel 89172:       /* --- pixel bitmap for cmr1200 char#25 \ss --- */
                   89173:       {  25,31362,                      /* character number, location */
1.2       albertel 89174:         117, 4,   -2, 4,      /* topleft row,col, and botleft row,col */
                   89175:           { 73,  119, 3,769, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   89176:             "\xe0\xe0\x7c\xe0\xe0\xe0\xe0\x1e\x06\xe0\xe0\xe0\x8e"
                   89177:             "\x0c\xe0\xe0\xe0\x3e\x0e\x02\xe0\xe0\xdd\x7d\xe0\xe0"
                   89178:             "\xbc\xcc\xe0\xe0\x8b\xe0\x2b\xe0\xe0\x6a\xe0\x5b\xe0"
                   89179:             "\xe0\x4a\xe0\x7b\xe0\xe0\x2a\xe0\x9b\xe0\xeb\xe0\xab"
                   89180:             "\xe0\xcb\xe0\xbc\x80\xf1\xe0\x2b\xe0\xdc\x70\xe0\x1c"
                   89181:             "\xe0\xec\xe0\x7b\xe0\xe0\x1c\x60\xf1\xec\xe0\xe0\x1d"
                   89182:             "\x50\xec\xe0\xe0\x2c\x50\xf9\xdc\xe0\xe0\x3d\x40\xf2"
                   89183:             "\xdc\xe0\xe0\x2d\x50\xdc\xe0\xe0\x2c\xe0\x5c\xe0\xe0"
                   89184:             "\x1d\xe0\x5c\xe0\xe0\x1c\xe0\x6c\xe0\xed\xe0\x6c\xe0"
                   89185:             "\xec\xe0\x7c\xe0\xdc\xe0\x8c\xe0\xdb\xe0\x9c\xe0\xcb"
                   89186:             "\xe0\xac\xe0\xbb\xe0\xbc\xe0\xab\xe0\xcc\xe0\x8c\xe0"
                   89187:             "\xdc\xe0\x6d\xe0\xec\xe0\x4d\xe0\xe0\x2c\xe0\x1e\x01"
                   89188:             "\xe0\x4e\x0b\xae\x04\xe0\x6e\x0b\x9e\x02\xe0\x9e\x0b"
                   89189:             "\x9e\xe0\xbe\x0b\x9e\x02\xe0\x9e\x0b\xed\xe0\xe0\x6c"
                   89190:             "\xe0\x3c\xe0\xe0\x4c\xe0\x5b\xe0\xe0\x3c\xe0\x7b\xe0"
                   89191:             "\xe0\x1c\xe0\x8b\xe0\xec\xe0\xaa\xe0\xdc\xe0\xba\xe0"
                   89192:             "\xcc\xe0\xca\xe0\xbc\xe0\xcb\xe0\xac\xe0\xdb\xa0\xf1"
                   89193:             "\xdc\xe0\xeb\x90\xdc\xe0\xe0\x1b\x80\xf1\xdc\xe0\xe0"
                   89194:             "\x2b\x70\xdc\xe0\xe0\x3b\x60\xf1\xdc\xe0\xe0\x3c\x50"
                   89195:             "\xf1\xdc\xe0\xe0\x4c\x40\xf2\xdc\xe0\xe0\x5c\x30\xdc"
                   89196:             "\xe0\xe0\x5d\x20\xf1\xdc\xe0\xe0\x6c\x20\xf3\xdc\xe0"
                   89197:             "\xe0\x6d\x10\xdc\xe0\xe0\x7c\x10\xfd\xdc\xe0\xe0\x7d"
                   89198:             "\xf1\xdc\xe0\xe0\x7c\x10\xf1\xdc\xe0\xe0\x6d\x10\xdc"
                   89199:             "\xe0\xe0\x6c\xe0\x1c\xa4\xe0\x6c\xe0\x1c\x88\xe0\x3c"
                   89200:             "\xe0\x2c\x7a\xe0\x2c\xe0\x2c\x6b\xe0\x2c\xe0\x2c\x6c"
                   89201:             "\xec\x40\xf1\xdc\x6c\xeb\x50\xdc\x6c\xdb\xe0\x5c\x6b"
                   89202:             "\xdb\xe0\x5d\x6b\xda\xe0\x6d\x79\xda\xe0\x4e\x02\x78"
                   89203:             "\xda\xae\x0b\x85\xea\xbe\x0b\x96\xab\xce\x0b\xa7\x6c"
                   89204:             "\xde\x0b\xbe\x08\xe0\x1e\x0b\xce\x05\xe0\xe0\xe0\xde"
                   89205:             "\x02\xe0\xe0\xe0\xe0\x4a\xe0\x8d" }  },
1.1       albertel 89206:       /* --- pixel bitmap for cmr1200 char#26 \ae --- */
                   89207:       {  26,31863,                      /* character number, location */
1.2       albertel 89208:          74, 7,   -2, 7,      /* topleft row,col, and botleft row,col */
                   89209:           { 107,   76, 2,391, (pixbyte *)/* width,ht, fmt,pixsz,map.. */
                   89210:             "\x17\x0d\x26\x0b\x28\x16\x1e\x13\x22\x1b\x19\x17\x1d"
                   89211:             "\x20\x15\x1b\x1a\x0c\x09\x0e\x11\x0c\x07\x0c\x17\x08"
                   89212:             "\x11\x0d\x0e\x0a\x0d\x0a\x14\x08\x15\x0c\x0b\x0a\x10"
                   89213:             "\x0b\x11\x07\x19\x0b\x09\x0a\x12\x0b\x10\x05\x1c\x0b"
                   89214:             "\x07\x0a\x14\x0b\x0e\x09\x1a\x0b\x05\x0a\x16\x0a\x0d"
                   89215:             "\x0b\x1a\x0b\x03\x0a\x18\x0a\x0c\x0c\x19\x0c\x01\x0a"
                   89216:             "\x19\x0b\x0a\x0e\x19\x15\x1b\x0a\x0a\x0f\x18\x15\x1b"
                   89217:             "\x0b\x04\x00\xff\x01\x05\x0f\x19\x13\x1d\x0b\x03\x00"
                   89218:             "\x05\x0f\x1a\x11\x1f\x0a\x08\x0f\x1a\x11\x1f\x0b\x07"
                   89219:             "\x0f\x1a\x10\x20\x0b\x08\x0d\x1c\x0f\x20\x0b\x08\x0d"
                   89220:             "\x1c\x0e\x22\x0b\x08\x0b\x1d\x0e\x22\x0b\x09\x09\x1e"
                   89221:             "\x0e\x22\x0b\x0b\x05\x20\x0e\x22\x0b\x30\x0d\x23\x0b"
                   89222:             "\x01\x00\xff\x03\x2f\x0d\x24\x0b\xff\x02\x2f\x0c\x25"
                   89223:             "\x0b\x2f\x3c\x24\x47\x1d\x4e\x19\x51\x16\x19\x01\x0c"
                   89224:             "\x42\x13\x0a\x0c\x40\x11\x0e\x0c\x3e\x10\x11\x0c\x3c"
                   89225:             "\x0f\x14\x0c\x3a\x0f\x16\x0c\x39\x0e\x18\x0c\x38\x0d"
                   89226:             "\x1a\x0c\x37\x0d\x1b\x0c\x36\x0d\x1d\x0c\x34\x0d\x1e"
                   89227:             "\x0c\x33\x0d\x1f\x0c\x2f\x00\xff\x01\x03\x0d\x20\x0c"
                   89228:             "\x2f\x00\x02\x0d\x22\x0b\x31\x0d\x22\x0c\x2f\x0d\x23"
                   89229:             "\x0c\x2f\x0d\x23\x0c\x2b\x02\x01\x0e\x23\x0d\x29\x11"
                   89230:             "\x24\x0d\x29\x11\x23\x0e\x28\x12\x23\x0f\x27\x12\x23"
                   89231:             "\x0f\x26\x05\x01\x0d\x22\x11\x25\x05\x01\x0d\x22\x11"
                   89232:             "\x24\x05\x02\x0d\x21\x13\x23\x05\x02\x0e\x20\x08\x01"
                   89233:             "\x0b\x21\x05\x04\x0d\x1f\x08\x03\x0a\x21\x05\x04\x0d"
                   89234:             "\x1e\x09\x04\x0a\x1f\x05\x06\x0d\x1c\x09\x06\x0a\x1d"
                   89235:             "\x06\x06\x0e\x1a\x09\x08\x0a\x1b\x06\x08\x0d\x19\x09"
                   89236:             "\x0a\x0a\x19\x06\x0a\x0e\x15\x0a\x0c\x0a\x16\x07\x0c"
                   89237:             "\x0e\x13\x0a\x0e\x0b\x13\x07\x0e\x0f\x0e\x0b\x12\x0b"
                   89238:             "\x0f\x07\x12\x10\x08\x0d\x15\x0c\x08\x0a\x14\x22\x18"
                   89239:             "\x1c\x17\x1d\x1d\x18\x1c\x17\x23\x13\x23\x0e\x2b\x0b"
                   89240:             "\x14" }  },
1.1       albertel 89241:       /* --- pixel bitmap for cmr1200 char#27 \oe --- */
                   89242:       {  27,32283,                      /* character number, location */
1.2       albertel 89243:          74, 5,   -2, 5,      /* topleft row,col, and botleft row,col */
                   89244:           { 118,   76, 2,409, (pixbyte *)/* width,ht, fmt,pixsz,map.. */
                   89245:             "\x1d\x0c\x2c\x0b\x2f\x14\x24\x13\x29\x19\x1f\x17\x24"
                   89246:             "\x1e\x1b\x1b\x21\x0c\x08\x0d\x17\x0c\x07\x0c\x1d\x0b"
                   89247:             "\x0e\x0b\x15\x0a\x0d\x0a\x1b\x0a\x13\x0a\x11\x0a\x10"
                   89248:             "\x0b\x17\x0a\x16\x0a\x0f\x0a\x12\x0b\x15\x0a\x19\x09"
                   89249:             "\x0d\x0a\x14\x0b\x13\x0a\x1b\x09\x0b\x0a\x16\x0a\x12"
                   89250:             "\x0a\x1d\x09\x09\x0a\x18\x0a\x10\x0a\x1f\x09\x07\x0a"
                   89251:             "\x19\x0b\x0e\x0a\x21\x09\x05\x0a\x1b\x0a\x0d\x0a\x22"
                   89252:             "\x0a\x03\x0b\x1b\x0b\x0c\x0a\x23\x0a\x02\x0a\x1d\x0b"
                   89253:             "\x0a\x0a\x24\x0a\x01\x0b\x1d\x0b\x09\x0b\x25\x14\x1f"
                   89254:             "\x0a\x09\x0a\x26\x14\x1f\x0b\x07\x0b\x27\x12\x20\x0b"
                   89255:             "\x06\x0c\x27\x12\x20\x0b\x06\x0b\x29\x10\x22\x0b\x01"
                   89256:             "\x00\xff\x01\x03\x0c\x29\x10\x22\x0b\x01\x00\x03\x0b"
                   89257:             "\x2b\x0f\x22\x0b\x03\x0c\x2b\x0e\x23\x0b\x01\x00\xff"
                   89258:             "\x01\x02\x0c\x2b\x0e\x24\x0b\x01\x0d\x2b\x0e\x24\x0b"
                   89259:             "\x01\x0c\x2c\x0e\x24\x0b\xff\x01\x01\x0c\x2d\x0c\x25"
                   89260:             "\x0b\x00\x0d\x2d\x0c\x25\x0b\x00\xff\x02\x0d\x2d\x3c"
                   89261:             "\x00\x0d\x2d\x3b\x01\xff\x08\x0d\x2d\x0c\x30\x00\x01"
                   89262:             "\x0c\x2d\x0d\x30\x0c\x2c\x0e\x2f\x00\xff\x01\x01\x0d"
                   89263:             "\x2b\x0e\x2f\x00\xff\x01\x02\x0c\x2b\x0e\x2f\x00\x02"
                   89264:             "\x0c\x2b\x0f\x31\x0c\x29\x10\x31\x0c\x29\x10\x2b\x02"
                   89265:             "\x04\x0c\x29\x11\x29\x04\x04\x0b\x28\x12\x29\x04\x04"
                   89266:             "\x0c\x27\x12\x28\x05\x05\x0b\x27\x13\x27\x05\x06\x0b"
                   89267:             "\x25\x14\x26\x05\x07\x0b\x25\x15\x25\x05\x08\x0b\x23"
                   89268:             "\x0a\x02\x0a\x24\x05\x0a\x0a\x23\x0a\x02\x0b\x23\x05"
                   89269:             "\x0a\x0b\x21\x0a\x04\x0b\x21\x05\x0c\x0a\x20\x0a\x06"
                   89270:             "\x0a\x21\x05\x0d\x0a\x1e\x0a\x08\x0a\x1f\x05\x0f\x0a"
                   89271:             "\x1d\x09\x0a\x0a\x1d\x06\x10\x0a\x1b\x09\x0c\x0a\x1b"
                   89272:             "\x06\x12\x0a\x18\x0a\x0e\x0a\x19\x06\x14\x0b\x15\x0a"
                   89273:             "\x10\x0a\x16\x07\x17\x0a\x12\x0b\x12\x0b\x13\x07\x19"
                   89274:             "\x0b\x0e\x0b\x16\x0b\x0f\x07\x1d\x0c\x08\x0d\x19\x0c"
                   89275:             "\x08\x0a\x1f\x1e\x1c\x1c\x22\x1a\x20\x18\x27\x14\x26"
                   89276:             "\x13\x2d\x0c\x2e\x0b\x14" }  },
1.1       albertel 89277:       /* --- pixel bitmap for cmr1200 char#28 (noname) --- */
                   89278:       {  28,32736,                      /* character number, location */
1.2       albertel 89279:          89, 5,  -17, 5,      /* topleft row,col, and botleft row,col */
                   89280:           { 72,  106, 2,459, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   89281:             "\x40\x01\x07\x00\xff\x01\x3f\x04\x05\x00\x3e\x05\x43"
                   89282:             "\x04\x43\x05\x43\x04\x43\x05\x42\x05\x43\x04\x43\x05"
                   89283:             "\x43\x04\x43\x05\x0a\x00\xff\x01\x38\x05\x0b\x00\x1e"
                   89284:             "\x0c\x0d\x05\x26\x14\x09\x04\x24\x1a\x05\x05\x22\x1e"
                   89285:             "\x03\x04\x21\x0c\x0a\x11\x20\x0a\x10\x0d\x1f\x0a\x14"
                   89286:             "\x0a\x1f\x09\x18\x09\x1d\x09\x1a\x09\x1a\x09\x1d\x0a"
                   89287:             "\x17\x09\x1e\x0b\x15\x09\x1e\x0d\x14\x09\x1d\x0e\x13"
                   89288:             "\x09\x1e\x04\x02\x09\x11\x09\x1e\x05\x03\x09\x0f\x0a"
                   89289:             "\x1e\x04\x04\x0a\x0e\x09\x1e\x05\x05\x09\x0d\x09\x1f"
                   89290:             "\x04\x07\x09\x0b\x0a\x1e\x05\x07\x0a\x0a\x0a\x1d\x05"
                   89291:             "\x08\x0a\x09\x0a\x1e\x04\x0a\x0a\x08\x0a\x1d\x05\x0a"
                   89292:             "\x0a\x07\x0b\x1d\x04\x0b\x0b\x06\x0a\x1d\x05\x0c\x0a"
                   89293:             "\x06\x0a\x1c\x05\x0d\x0a\x05\x0b\x1c\x05\x0d\x0b\x04"
                   89294:             "\x0b\x1b\x05\x0e\x0b\x04\x0b\x1b\x04\x0f\x0b\x03\x0c"
                   89295:             "\x1a\x05\x0f\x0c\x02\x0b\x1b\x04\x11\x0b\x02\x0b\x1a"
                   89296:             "\x05\x11\x0b\x02\x0b\x19\x05\x12\x0b\x01\x0c\x19\x04"
                   89297:             "\x13\x18\x18\x05\x13\x18\x18\x04\x14\x18\x17\x05\x14"
                   89298:             "\x18\x17\x04\x15\x18\x16\x05\x15\x18\x15\x05\x16\x18"
                   89299:             "\x15\x04\x17\x18\x14\x05\x17\x18\x14\x04\x18\x18\x13"
                   89300:             "\x05\x18\x18\x13\x04\x19\x18\x12\x05\x19\x0c\x01\x0b"
                   89301:             "\x11\x05\x1a\x0b\x02\x0b\x11\x04\x1b\x0b\x02\x0b\x10"
                   89302:             "\x05\x1b\x0b\x02\x0b\x10\x04\x1c\x0b\x02\x0c\x0e\x05"
                   89303:             "\x1b\x0c\x01\x00\xff\x01\x02\x0b\x0d\x05\x1c\x0b\x02"
                   89304:             "\x00\x02\x0b\x0c\x05\x1d\x0b\x05\x0a\x0c\x04\x1e\x0a"
                   89305:             "\x06\x0b\x0a\x05\x1d\x0b\x07\x0a\x0a\x04\x1e\x0a\x08"
                   89306:             "\x0a\x09\x05\x1e\x0a\x09\x0a\x07\x05\x1e\x0a\x0a\x0a"
                   89307:             "\x07\x04\x1f\x0a\x0b\x0a\x05\x05\x1e\x0a\x0d\x09\x05"
                   89308:             "\x04\x1f\x09\x0e\x0a\x03\x05\x1e\x0a\x0f\x09\x03\x04"
                   89309:             "\x1f\x09\x11\x09\x01\x05\x1e\x09\x13\x0d\x1e\x09\x15"
                   89310:             "\x0b\x1e\x09\x17\x0a\x1d\x09\x19\x09\x1c\x09\x1b\x0a"
                   89311:             "\x18\x0a\x1e\x09\x16\x09\x1f\x0d\x10\x0b\x1f\x11\x0a"
                   89312:             "\x0c\x21\x04\x03\x1e\x22\x05\x05\x1a\x24\x04\x09\x14"
                   89313:             "\x26\x05\x0d\x0c\x1e\x00\xff\x01\x0b\x05\x38\x00\x0a"
                   89314:             "\x05\x43\x04\x43\x05\x43\x04\x43\x05\x42\x05\x43\x04"
                   89315:             "\x43\x05\x43\x04\x43\x05\x3e\x00\xff\x01\x05\x04\x3f"
                   89316:             "\x00\x07\x01\x40" }  },
1.1       albertel 89317:       /* --- pixel bitmap for cmr1200 char#29 \AE --- */
                   89318:       {  29,33210,                      /* character number, location */
1.2       albertel 89319:         113, 5,    0, 5,      /* topleft row,col, and botleft row,col */
                   89320:           { 139,  113, 2,635, (pixbyte *)/* width,ht, fmt,pixsz,map.. */
                   89321:             "\xff\x03\x26\x5c\x09\x00\x26\x5d\x3c\x1d\x1c\x16\x3c"
                   89322:             "\x05\x04\x12\x23\x11\x3b\x06\x05\x10\x27\x0e\x3b\x05"
                   89323:             "\x07\x0f\x29\x0c\x3b\x05\x08\x0e\x2b\x0a\x3a\x06\x08"
                   89324:             "\x0e\x2c\x09\x3a\x05\x09\x0e\x2d\x09\x39\x05\x09\x0e"
                   89325:             "\x2e\x08\x38\x06\x09\x0e\x2f\x07\x38\x05\x0a\x0e\x2f"
                   89326:             "\x07\x38\x05\x0a\x0e\x30\x06\x37\x05\x0b\x0e\x30\x06"
                   89327:             "\x37\x05\x0b\x0e\x31\x05\x36\x06\x0b\x0e\x31\x05\x07"
                   89328:             "\x00\xff\x01\x2f\x05\x0c\x0e\x32\x05\x06\x00\x2e\x06"
                   89329:             "\x0c\x0e\x32\x05\x34\x05\x0d\x0e\x32\x05\x34\x05\x0d"
                   89330:             "\x0e\x33\x04\x33\x06\x0d\x0e\x33\x04\x33\x05\x0e\x0e"
                   89331:             "\x33\x04\x33\x05\x0e\x0e\x33\x05\x31\x06\x0e\x0e\x34"
                   89332:             "\x04\x31\x05\x0f\x0e\x34\x04\x30\x06\x0f\x0e\x34\x04"
                   89333:             "\x05\x00\xff\x01\x2b\x05\x10\x0e\x34\x04\x05\x00\x2a"
                   89334:             "\x06\x10\x0e\x34\x04\x05\x00\xff\x01\x2a\x05\x11\x0e"
                   89335:             "\x35\x04\x04\x00\x29\x06\x11\x0e\x35\x04\x2d\x05\x12"
                   89336:             "\x0e\x35\x04\x2d\x05\x12\x0e\x1e\x04\x43\x06\x12\x0e"
                   89337:             "\x1e\x04\x43\x05\x13\x0e\x1e\x04\x42\x06\x13\x0e\x1e"
                   89338:             "\x04\x1b\x00\xff\x01\x27\x05\x14\x0e\x1e\x04\x1b\x00"
                   89339:             "\x26\x06\x14\x0e\x1e\x04\x1b\x00\xff\x01\x26\x05\x15"
                   89340:             "\x0e\x1e\x04\x1b\x00\x25\x06\x15\x0e\x1d\x05\x1b\x00"
                   89341:             "\xff\x01\x25\x05\x16\x0e\x1d\x05\x1b\x00\x24\x06\x16"
                   89342:             "\x0e\x1d\x05\x3f\x05\x17\x0e\x1c\x06\x3e\x06\x17\x0e"
                   89343:             "\x1b\x07\x3e\x05\x18\x0e\x1b\x07\x3e\x05\x18\x0e\x19"
                   89344:             "\x09\x3d\x06\x18\x0e\x18\x0a\x3d\x05\x19\x0e\x14\x0e"
                   89345:             "\x3d\x4e\x1b\x00\xff\x02\x21\x4f\x1b\x00\x20\x50\x3b"
                   89346:             "\x05\x1b\x0e\x14\x0e\x3a\x06\x1b\x0e\x18\x0a\x3a\x05"
                   89347:             "\x1c\x0e\x19\x09\x3a\x05\x1c\x0e\x1b\x07\x39\x06\x1c"
                   89348:             "\x0e\x1b\x07\x39\x05\x1d\x0e\x1c\x06\x39\x05\x1d\x0e"
                   89349:             "\x1d\x05\x38\x06\x1d\x0e\x1d\x05\x38\x05\x1e\x0e\x1d"
                   89350:             "\x05\x38\x05\x1e\x0e\x1d\x05\x17\x04\x1c\x06\x1e\x0e"
                   89351:             "\x1e\x04\x17\x04\x1c\x05\x1f\x0e\x1e\x04\x17\x04\x1c"
                   89352:             "\x05\x1f\x0e\x1e\x04\x16\x04\x01\x00\xff\x01\x1b\x05"
                   89353:             "\x20\x0e\x1e\x04\x16\x04\x01\x00\x1a\x06\x20\x0e\x1e"
                   89354:             "\x04\x16\x04\x01\x00\xff\x01\x1a\x05\x21\x0e\x1e\x04"
                   89355:             "\x16\x04\x01\x00\x19\x06\x21\x0e\x1e\x04\x15\x04\x02"
                   89356:             "\x00\xff\x01\x19\x05\x22\x0e\x37\x04\x02\x00\x18\x06"
                   89357:             "\x22\x0e\x37\x04\x1a\x05\x23\x0e\x37\x04\x1a\x05\x23"
                   89358:             "\x0e\x36\x05\x02\x00\xff\x01\x17\x05\x24\x0e\x36\x04"
                   89359:             "\x03\x00\x16\x06\x24\x0e\x35\x05\x03\x00\xff\x01\x16"
                   89360:             "\x05\x25\x0e\x35\x05\x03\x00\x15\x06\x25\x0e\x35\x05"
                   89361:             "\x03\x00\xff\x01\x15\x05\x26\x0e\x34\x05\x04\x00\x14"
                   89362:             "\x06\x26\x0e\x33\x06\x04\x00\xff\x01\x14\x05\x27\x0e"
                   89363:             "\x33\x06\x04\x00\x13\x05\x28\x0e\x32\x07\x17\x05\x28"
                   89364:             "\x0e\x31\x08\x16\x06\x28\x0e\x31\x07\x17\x06\x28\x0e"
                   89365:             "\x30\x08\x16\x07\x28\x0e\x2f\x09\x15\x08\x28\x0e\x2e"
                   89366:             "\x0a\x15\x09\x27\x0e\x2d\x0b\x14\x0a\x27\x0e\x2b\x0d"
                   89367:             "\x12\x0d\x26\x0e\x2a\x0d\x12\x0f\x24\x0f\x27\x10\x10"
                   89368:             "\x13\x22\x10\x23\x13\x0c\x1a\x1c\x15\x1c\x18\x06\xff"
                   89369:             "\x01\x24\x0f\x52\x06\xff\x02\x24\x0f\x51\x07" }  },
1.1       albertel 89370:       /* --- pixel bitmap for cmr1200 char#30 \OE --- */
                   89371:       {  30,33878,                      /* character number, location */
1.2       albertel 89372:         117,11,   -4,11,      /* topleft row,col, and botleft row,col */
                   89373:           { 151,  121, 2,631, (pixbyte *)/* width,ht, fmt,pixsz,map.. */
                   89374:             "\x30\x0d\x85\x17\x7d\x1e\x76\x26\x6e\x10\x0b\x51\x29"
                   89375:             "\x0e\x12\x4e\x27\x0e\x16\x4c\x26\x0d\x1a\x4a\x24\x0d"
                   89376:             "\x1d\x4a\x22\x0c\x1f\x15\x1f\x16\x20\x0d\x21\x12\x26"
                   89377:             "\x11\x1f\x0d\x23\x10\x2a\x0e\x1e\x0d\x24\x10\x2c\x0c"
                   89378:             "\x1d\x0d\x25\x10\x2d\x0b\x1b\x0e\x27\x0f\x2f\x09\x1a"
                   89379:             "\x0e\x28\x0f\x30\x09\x18\x0e\x29\x0f\x31\x08\x17\x0e"
                   89380:             "\x2a\x0f\x31\x08\x17\x0d\x2b\x0f\x32\x07\x16\x0d\x2d"
                   89381:             "\x0e\x33\x06\x15\x0e\x2d\x0e\x33\x06\x14\x0e\x2e\x0e"
                   89382:             "\x34\x05\x13\x0e\x2f\x0e\x34\x05\x13\x0e\x2f\x0e\x34"
                   89383:             "\x06\x11\x0e\x30\x0e\x35\x05\x10\x0f\x30\x0e\x35\x05"
                   89384:             "\x10\x0e\x31\x0e\x35\x05\x0f\x0f\x31\x0e\x36\x04\x06"
                   89385:             "\x00\xff\x01\x08\x0f\x32\x0e\x36\x04\x06\x00\x07\x0f"
                   89386:             "\x33\x0e\x36\x05\x0c\x0f\x33\x0e\x37\x04\x0b\x10\x33"
                   89387:             "\x0e\x37\x04\x0b\x0f\x34\x0e\x37\x04\x0a\x10\x34\x0e"
                   89388:             "\x37\x04\x05\x00\xff\x01\x05\x0f\x35\x0e\x37\x04\x05"
                   89389:             "\x00\xff\x01\x04\x10\x35\x0e\x24\x04\x10\x04\x04\x00"
                   89390:             "\x04\x0f\x36\x0e\x24\x04\x10\x04\x07\x10\x36\x0e\x24"
                   89391:             "\x04\x10\x04\x07\x10\x36\x0e\x24\x04\x1b\x10\x37\x0d"
                   89392:             "\x24\x04\x18\x00\xff\x02\x02\x10\x38\x0d\x24\x04\x18"
                   89393:             "\x00\x02\x10\x38\x0d\x23\x05\x18\x00\xff\x01\x01\x11"
                   89394:             "\x38\x0d\x23\x05\x18\x00\xff\x01\x01\x10\x39\x0d\x22"
                   89395:             "\x06\x18\x00\x01\x10\x39\x0d\x21\x07\x19\x10\x39\x0d"
                   89396:             "\x20\x08\x18\x11\x39\x0d\x1f\x09\x18\x11\x39\x0d\x1d"
                   89397:             "\x0b\x18\x11\x39\x0d\x19\x0f\x18\xff\x04\x11\x39\x35"
                   89398:             "\x18\x11\x39\x0d\x19\x0f\x18\x11\x39\x0d\x1d\x0b\x18"
                   89399:             "\x11\x39\x0d\x1f\x09\x18\x11\x39\x0d\x20\x08\x18\x11"
                   89400:             "\x39\x0d\x21\x07\x18\xff\x01\x11\x39\x0d\x22\x06\x18"
                   89401:             "\x12\x38\x0d\x23\x05\x18\x00\xff\x01\x01\x11\x38\x0d"
                   89402:             "\x23\x05\x18\x00\xff\x02\x01\x11\x38\x0d\x24\x04\x18"
                   89403:             "\x00\x01\x11\x38\x0d\x24\x04\x14\x04\xff\x01\x02\x11"
                   89404:             "\x37\x0d\x24\x04\x14\x04\xff\x01\x02\x11\x37\x0d\x24"
                   89405:             "\x04\x13\x04\x01\x00\x03\x10\x36\x0e\x24\x04\x13\x04"
                   89406:             "\x01\x00\xff\x01\x03\x11\x35\x0e\x3b\x04\x01\x00\x04"
                   89407:             "\x10\x35\x0e\x3b\x04\x01\x00\xff\x01\x04\x11\x34\x0e"
                   89408:             "\x3a\x04\x02\x00\x05\x10\x34\x0e\x3a\x04\x07\x11\x33"
                   89409:             "\x0e\x3a\x04\x02\x00\xff\x01\x06\x10\x33\x0e\x39\x05"
                   89410:             "\x02\x00\xff\x01\x07\x10\x32\x0e\x39\x04\x03\x00\xff"
                   89411:             "\x01\x08\x10\x31\x0e\x38\x05\x03\x00\xff\x01\x09\x10"
                   89412:             "\x30\x0e\x38\x05\x03\x00\x0a\x10\x2f\x0e\x37\x05\x0f"
                   89413:             "\x0f\x2f\x0e\x37\x05\x0f\x10\x2e\x0e\x36\x06\x10\x0f"
                   89414:             "\x2e\x0e\x36\x06\x11\x0f\x2d\x0e\x35\x07\x12\x0f\x2c"
                   89415:             "\x0e\x35\x07\x12\x0f\x2c\x0e\x34\x08\x13\x0f\x2a\x0f"
                   89416:             "\x34\x07\x15\x0f\x29\x0f\x33\x08\x16\x0f\x28\x0f\x32"
                   89417:             "\x09\x17\x0f\x27\x0f\x31\x0a\x18\x0e\x27\x0f\x30\x0b"
                   89418:             "\x19\x0e\x25\x10\x2e\x0d\x1a\x0e\x24\x10\x2c\x0e\x1d"
                   89419:             "\x0e\x22\x10\x2a\x10\x1e\x0e\x20\x12\x26\x13\x1f\x0e"
                   89420:             "\x1e\x15\x1f\x18\x21\x0e\x1c\x4c\x22\x0e\x1a\x4d\x24"
                   89421:             "\x0e\x16\x4e\x27\x0f\x11\x50\x29\x10\x0b\x53\x2c\x26"
                   89422:             "\x73\x1f\x7c\x17\x85\x0d\x5a" }  },
1.1       albertel 89423:       /* --- pixel bitmap for cmr1200 char#31 (noname) --- */
                   89424:       {  31,34579,                      /* character number, location */
1.2       albertel 89425:         123, 9,   -9, 9,      /* topleft row,col, and botleft row,col */
                   89426:           { 110,  132, 2,671, (pixbyte *)/* width,ht, fmt,pixsz,map.. */
                   89427:             "\x60\x02\x6c\x03\x6a\x05\x0a\x00\xff\x01\x5e\x05\x0b"
                   89428:             "\x00\x5d\x05\x3c\x0e\x1e\x05\x38\x18\x19\x05\x34\x20"
                   89429:             "\x14\x05\x33\x24\x11\x05\x31\x0f\x0c\x0f\x0e\x05\x2f"
                   89430:             "\x0d\x14\x0d\x0b\x05\x2e\x0c\x1a\x0c\x08\x05\x2e\x0b"
                   89431:             "\x1e\x0b\x07\x05\x2c\x0b\x22\x0b\x04\x05\x2c\x0a\x26"
                   89432:             "\x0a\x02\x05\x2b\x0b\x28\x10\x2a\x0a\x2c\x0d\x2a\x0a"
                   89433:             "\x2e\x0b\x29\x0b\x30\x0b\x27\x0b\x32\x0b\x25\x0b\x34"
                   89434:             "\x0b\x23\x0b\x36\x0b\x21\x0b\x36\x0d\x20\x0a\x36\x0e"
                   89435:             "\x1f\x0a\x37\x0f\x1d\x0b\x36\x05\x01\x0b\x1b\x0b\x36"
                   89436:             "\x05\x03\x0b\x19\x0b\x37\x05\x04\x0b\x18\x0b\x36\x05"
                   89437:             "\x05\x0b\x17\x0b\x36\x05\x07\x0b\x15\x0c\x36\x04\x08"
                   89438:             "\x0c\x14\x0b\x36\x05\x09\x0b\x13\x0c\x35\x05\x0a\x0c"
                   89439:             "\x11\x0c\x36\x04\x0c\x0c\x10\x0c\x35\x05\x0c\x0c\x0f"
                   89440:             "\x0d\x34\x05\x0d\x0d\x0e\x0c\x35\x04\x0f\x0c\x0d\x0d"
                   89441:             "\x34\x05\x0f\x0d\x0c\x0c\x34\x05\x11\x0c\x0b\x0d\x34"
                   89442:             "\x04\x12\x0d\x0a\x0d\x33\x05\x12\x0d\x0a\x0d\x32\x05"
                   89443:             "\x13\x0d\x09\x0d\x33\x04\x15\x0d\x08\x0d\x32\x05\x15"
                   89444:             "\x0d\x07\x0e\x31\x05\x16\x0e\x06\x0e\x31\x04\x17\x0e"
                   89445:             "\x06\x0e\x30\x05\x17\x0e\x06\x0d\x30\x05\x19\x0d\x05"
                   89446:             "\x0e\x30\x04\x1a\x0e\x04\x0e\x2f\x05\x1a\x0e\x04\x0e"
                   89447:             "\x2e\x05\x1b\x0e\x04\x0e\x2e\x04\x1c\x0e\x03\x0f\x2d"
                   89448:             "\x05\x1c\x0f\x02\x0f\x2c\x05\x1d\x0f\x02\x0e\x2d\x04"
                   89449:             "\x1f\x0e\x02\x0e\x2c\x05\x1f\x0e\x02\x0e\x2b\x05\x20"
                   89450:             "\x0e\x02\x0e\x2b\x04\x21\x0e\x01\x0f\x2a\x05\x21\x1e"
                   89451:             "\x29\x05\x22\x1e\x29\x04\x23\x1e\x28\x05\x23\x1e\x27"
                   89452:             "\x05\x24\x1e\x27\x04\x25\x1e\x26\x05\x25\x1e\x25\x05"
                   89453:             "\x26\x1e\x25\x04\x27\x1e\x24\x05\x27\x1e\x23\x05\x28"
                   89454:             "\x1e\x23\x04\x29\x1e\x22\x05\x29\x1e\x21\x05\x2a\x1e"
                   89455:             "\x21\x04\x2b\x1e\x20\x05\x2b\x0f\x01\x0e\x1f\x05\x2c"
                   89456:             "\x0e\x02\x0e\x1f\x04\x2d\x0e\x02\x0e\x1e\x05\x2d\x0e"
                   89457:             "\x02\x0e\x1d\x05\x2e\x0e\x02\x0f\x1c\x04\x2e\x0f\x02"
                   89458:             "\x0f\x1b\x05\x2e\x0f\x03\x0e\x1a\x05\x2f\x0e\x04\x0e"
                   89459:             "\x1a\x04\x30\x0e\x04\x0e\x19\x05\x30\x0e\x04\x0e\x18"
                   89460:             "\x05\x31\x0e\x05\x0d\x18\x04\x32\x0d\x06\x0e\x16\x05"
                   89461:             "\x31\x0e\x06\x0e\x15\x05\x32\x0e\x07\x0d\x15\x04\x33"
                   89462:             "\x0d\x08\x0d\x14\x05\x33\x0d\x08\x0d\x13\x05\x34\x0d"
                   89463:             "\x09\x0d\x12\x04\x34\x0d\x0a\x0d\x11\x05\x34\x0d\x0b"
                   89464:             "\x0c\x10\x05\x35\x0c\x0c\x0d\x0f\x04\x35\x0d\x0d\x0c"
                   89465:             "\x0e\x05\x35\x0c\x0e\x0c\x0d\x05\x36\x0c\x0f\x0c\x0c"
                   89466:             "\x04\x36\x0c\x10\x0c\x0b\x05\x36\x0c\x11\x0c\x09\x05"
                   89467:             "\x36\x0c\x12\x0c\x09\x04\x37\x0c\x13\x0c\x07\x05\x36"
                   89468:             "\x0c\x15\x0b\x06\x05\x37\x0b\x16\x0c\x04\x05\x37\x0c"
                   89469:             "\x17\x0b\x04\x05\x37\x0b\x19\x0b\x02\x05\x37\x0b\x0d"
                   89470:             "\x00\xff\x01\x0e\x10\x37\x0b\x0e\x00\x0f\x0e\x37\x0b"
                   89471:             "\x1f\x0c\x37\x0b\x21\x0b\x36\x0b\x23\x0b\x34\x0b\x25"
                   89472:             "\x0b\x32\x0b\x27\x0b\x30\x0b\x28\x0c\x2e\x0b\x28\x0e"
                   89473:             "\x2c\x0a\x2a\x10\x28\x0b\x2a\x05\x02\x0b\x26\x0b\x2a"
                   89474:             "\x05\x05\x0b\x22\x0b\x2c\x05\x06\x0c\x1e\x0c\x2c\x05"
                   89475:             "\x09\x0c\x1a\x0c\x2d\x05\x0c\x0d\x14\x0d\x2f\x05\x0e"
                   89476:             "\x0f\x0c\x0f\x30\x05\x12\x24\x32\x05\x15\x20\x34\x05"
                   89477:             "\x19\x18\x37\x05\x1f\x0e\x30\x00\xff\x01\x0b\x05\x5e"
                   89478:             "\x00\x0a\x05\x6a\x03\x6c\x02\x60" }  },
1.1       albertel 89479:       /* --- pixel bitmap for cmr1200 char#32 (noname) --- */
                   89480:       {  32,41263,                      /* character number, location */
1.2       albertel 89481:          64, 4,   47, 4,      /* topleft row,col, and botleft row,col */
                   89482:           { 39,   17, 2,35, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   89483:             "\x22\x04\x20\x07\x1e\x09\x1b\x0d\x17\x0f\x15\x0f\x16"
                   89484:             "\x0e\x16\x0e\x16\x0f\x15\x0f\x16\x0e\x16\x0e\x16\x0f"
                   89485:             "\x17\x0d\x1b\x09\x1e\x06\x21\x04\x22" }  },
1.1       albertel 89486:       /* --- pixel bitmap for cmr1200 char#33 ! --- */
                   89487:       {  33,35277,                      /* character number, location */
1.2       albertel 89488:         119,14,    0,14,      /* topleft row,col, and botleft row,col */
                   89489:           { 18,  119, 3,99, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   89490:             "\x66\xaa\x7c\x5e\x3e\x02\x1f\x9e\x04\xfa\x1e\x02\x10"
                   89491:             "\xfa\x2e\x20\xfa\x3c\x30\xfa\x4a\x40\xfa\x58\x50\xfa"
                   89492:             "\x66\x60\xf5\x74\x70\xfd\xe0\x40\x66\xaa\x7c\x5e\x3e"
                   89493:             "\x02\x1f\x7e\x04\x1e\x02\x3e\x5c\x7a\xa6\x60" }  },
1.1       albertel 89494:       /* --- pixel bitmap for cmr1200 char#34 " --- */
                   89495:       {  34,44457,                      /* character number, location */
1.2       albertel 89496:         115, 5,   65, 5,      /* topleft row,col, and botleft row,col */
                   89497:           { 52,   50, 3,297, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   89498:             "\x66\xe0\xc6\xca\xe0\x8a\x9c\xe0\x6c\x7e\xe0\x4e\x5e"
                   89499:             "\x02\xe0\x2e\x02\x4e\x03\xe0\x1e\x03\x2f\x1e\x04\xee"
                   89500:             "\x04\x2f\x2e\x05\xde\x05\x1e\x06\xce\x06\xf1\x1e\x05"
                   89501:             "\xde\x05\x2e\x04\xee\x04\x3c\x14\xe0\x1c\x14\x4a\x24"
                   89502:             "\xe0\x2a\x24\x66\x44\xe0\x46\x44\xf4\xe0\x24\xe0\xe4"
                   89503:             "\xe0\x15\xe0\xd5\xf3\xe0\x14\xe0\xe4\x10\xe5\xe0\xd5"
                   89504:             "\x10\xf1\xe4\xe0\xe4\x20\xd5\xe0\xd5\xe0\x14\xe0\xe4"
                   89505:             "\x30\xf1\xc5\xe0\xd5\x30\xc4\xe0\xe4\xe0\x15\xe0\xd5"
                   89506:             "\x40\xf1\xa5\xe0\xd5\x50\x95\xe0\xd5\xe0\x14\xe0\xe4"
                   89507:             "\xe0\x15\xe0\xd5\xe5\xe0\xd5\xe5\xe0\xd5\xe6\xe0\xc6"
                   89508:             "\xd6\xe0\xc6\xd6\xe0\xc6\xe5\xe0\xd5\xe0\x14\xe0\xe4"
                   89509:             "\xe0\x32\xe0\xe0\x22\xe0" }  },
1.1       albertel 89510:       /* --- pixel bitmap for cmr1200 char#35 # --- */
                   89511:       {  35,35715,                      /* character number, location */
1.2       albertel 89512:         115, 9,  -32, 9,      /* topleft row,col, and botleft row,col */
                   89513:           { 119,  147, 2,567, (pixbyte *)/* width,ht, fmt,pixsz,map.. */
                   89514:             "\xff\x01\x39\x05\x21\x05\x13\x00\xff\x01\x38\x07\x1f"
                   89515:             "\x07\x12\x00\xff\x01\x37\x08\x1e\x08\x12\x00\xff\x01"
                   89516:             "\x37\x07\x1f\x07\x13\x00\xff\x01\x36\x08\x1e\x08\x13"
                   89517:             "\x00\xff\x01\x36\x07\x1f\x07\x14\x00\xff\x01\x35\x08"
                   89518:             "\x1e\x08\x14\x00\xff\x01\x35\x07\x1f\x07\x15\x00\xff"
                   89519:             "\x01\x34\x08\x1e\x08\x15\x00\xff\x01\x34\x07\x1f\x07"
                   89520:             "\x16\x00\xff\x01\x33\x08\x1e\x08\x16\x00\x33\x07\x1f"
                   89521:             "\x07\x17\x00\xff\x01\x32\x08\x1e\x08\x17\x00\xff\x01"
                   89522:             "\x32\x07\x1f\x07\x18\x00\xff\x01\x31\x08\x1e\x08\x18"
                   89523:             "\x00\xff\x01\x31\x07\x1f\x07\x19\x00\xff\x01\x30\x08"
                   89524:             "\x1e\x08\x19\x00\xff\x01\x30\x07\x1f\x07\x1a\x00\xff"
                   89525:             "\x01\x2f\x08\x1e\x08\x1a\x00\x2f\x07\x1f\x07\x1b\x00"
                   89526:             "\xff\x01\x2e\x08\x1e\x08\x1b\x00\xff\x01\x2e\x07\x1f"
                   89527:             "\x07\x1c\x00\xff\x01\x2d\x08\x1e\x08\x1c\x00\xff\x01"
                   89528:             "\x2d\x07\x1f\x07\x1d\x00\xff\x01\x2c\x08\x1e\x08\x1d"
                   89529:             "\x00\xff\x01\x2c\x07\x1f\x07\x1e\x00\xff\x01\x2b\x08"
                   89530:             "\x1e\x08\x1e\x00\x2b\x07\x1f\x07\x1f\x00\xff\x01\x01"
                   89531:             "\x75\x01\xff\x02\x77\x01\x75\x03\x73\x02\x00\xff\x01"
                   89532:             "\x28\x07\x1f\x07\x22\x00\xff\x01\x27\x08\x1e\x08\x22"
                   89533:             "\x00\xff\x01\x27\x07\x1f\x07\x23\x00\xff\x01\x26\x08"
                   89534:             "\x1e\x08\x23\x00\xff\x01\x26\x07\x1f\x07\x24\x00\xff"
                   89535:             "\x01\x25\x08\x1e\x08\x24\x00\xff\x02\x25\x07\x1f\x07"
                   89536:             "\x25\x00\xff\x01\x24\x08\x1e\x08\x25\x00\xff\x01\x24"
                   89537:             "\x07\x1f\x07\x26\x00\xff\x01\x23\x08\x1e\x08\x26\x00"
                   89538:             "\xff\x01\x23\x07\x1f\x07\x27\x00\xff\x01\x22\x08\x1e"
                   89539:             "\x08\x27\x00\xff\x01\x22\x07\x1f\x07\x28\x00\x02\x73"
                   89540:             "\x03\x75\x01\xff\x02\x77\xff\x01\x01\x75\x01\x00\x1f"
                   89541:             "\x07\x1f\x07\x2b\x00\xff\x01\x1e\x08\x1e\x08\x2b\x00"
                   89542:             "\xff\x01\x1e\x07\x1f\x07\x2c\x00\xff\x01\x1d\x08\x1e"
                   89543:             "\x08\x2c\x00\xff\x01\x1d\x07\x1f\x07\x2d\x00\xff\x01"
                   89544:             "\x1c\x08\x1e\x08\x2d\x00\xff\x01\x1c\x07\x1f\x07\x2e"
                   89545:             "\x00\xff\x01\x1b\x08\x1e\x08\x2e\x00\x1b\x07\x1f\x07"
                   89546:             "\x2f\x00\xff\x01\x1a\x08\x1e\x08\x2f\x00\xff\x01\x1a"
                   89547:             "\x07\x1f\x07\x30\x00\xff\x01\x19\x08\x1e\x08\x30\x00"
                   89548:             "\xff\x01\x19\x07\x1f\x07\x31\x00\xff\x01\x18\x08\x1e"
                   89549:             "\x08\x31\x00\xff\x01\x18\x07\x1f\x07\x32\x00\xff\x01"
                   89550:             "\x17\x08\x1e\x08\x32\x00\x17\x07\x1f\x07\x33\x00\xff"
                   89551:             "\x01\x16\x08\x1e\x08\x33\x00\xff\x01\x16\x07\x1f\x07"
                   89552:             "\x34\x00\xff\x01\x15\x08\x1e\x08\x34\x00\xff\x01\x15"
                   89553:             "\x07\x1f\x07\x35\x00\xff\x01\x14\x08\x1e\x08\x35\x00"
                   89554:             "\xff\x01\x14\x07\x1f\x07\x36\x00\xff\x01\x13\x08\x1e"
                   89555:             "\x08\x36\x00\xff\x01\x13\x07\x1f\x07\x37\x00\xff\x01"
                   89556:             "\x12\x08\x1e\x08\x37\x00\xff\x01\x12\x07\x1f\x07\x38"
                   89557:             "\x00\xff\x01\x13\x05\x21\x05\x39" }  },
1.1       albertel 89558:       /* --- pixel bitmap for cmr1200 char#36 $ --- */
                   89559:       {  36,29208,                      /* character number, location */
1.2       albertel 89560:         125, 9,   -9, 9,      /* topleft row,col, and botleft row,col */
                   89561:           { 64,  134, 2,525, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   89562:             "\xff\x07\x1e\x05\x1d\x00\x1a\x0d\x2f\x16\x27\x1c\x22"
                   89563:             "\x20\x1f\x23\x1b\x0d\x03\x05\x03\x0e\x19\x0b\x06\x05"
                   89564:             "\x08\x0a\x16\x0a\x09\x05\x0b\x09\x13\x0a\x0a\x05\x0d"
                   89565:             "\x08\x11\x09\x0c\x05\x0f\x07\x0f\x09\x0d\x05\x10\x07"
                   89566:             "\x0d\x09\x0e\x05\x11\x06\x0d\x08\x0f\x05\x13\x05\x0b"
                   89567:             "\x08\x10\x05\x13\x06\x09\x08\x11\x05\x14\x05\x09\x07"
                   89568:             "\x12\x05\x15\x05\x07\x08\x12\x05\x16\x04\x06\x08\x13"
                   89569:             "\x05\x16\x05\x05\x08\x13\x05\x17\x04\x02\x00\xff\x01"
                   89570:             "\x02\x08\x14\x05\x17\x05\x01\x00\x02\x08\x14\x05\x18"
                   89571:             "\x04\x02\x09\x14\x05\x14\x03\x01\x04\x02\x08\x15\x05"
                   89572:             "\x11\x0c\x01\x08\x15\x05\x10\x0d\x01\x08\x15\x05\x0f"
                   89573:             "\x17\x15\x05\x0f\x0e\x00\xff\x03\x09\x15\x05\x0e\x0f"
                   89574:             "\x00\xff\x01\x0a\x14\x05\x0e\x0f\x00\x0a\x14\x05\x0f"
                   89575:             "\x0d\x01\x0b\x13\x05\x10\x0b\x02\x0b\x13\x05\x11\x09"
                   89576:             "\x03\x0b\x13\x05\x12\x07\x04\x0c\x12\x05\x1d\x00\xff"
                   89577:             "\x01\x01\x0c\x11\x05\x1d\x00\x01\x0d\x10\x05\x1e\x0e"
                   89578:             "\x0f\x05\x1f\x0e\x0e\x05\x1f\x0f\x0d\x05\x1f\x10\x0c"
                   89579:             "\x05\x20\x11\x0a\x05\x20\x13\x08\x05\x21\x15\x05\x05"
                   89580:             "\x22\x17\x02\x05\x22\x1e\x23\x1e\x23\x21\x20\x23\x1d"
                   89581:             "\x25\x1c\x26\x1b\x27\x1b\x26\x1b\x27\x1a\x27\x1b\x26"
                   89582:             "\x1b\x26\x1d\x24\x1e\x22\x22\x1f\x25\x1c\x24\x1d\x23"
                   89583:             "\x05\x03\x15\x23\x05\x06\x13\x22\x05\x08\x11\x22\x05"
                   89584:             "\x09\x11\x21\x05\x0b\x0f\x21\x05\x0c\x0f\x20\x05\x0d"
                   89585:             "\x0e\x20\x05\x0e\x0d\x20\x05\x0f\x0d\x01\x00\xff\x01"
                   89586:             "\x1e\x05\x10\x0c\x01\x00\x1e\x05\x11\x0b\x1f\x05\x11"
                   89587:             "\x0c\x06\x03\x15\x05\x12\x0b\x03\x09\x12\x05\x12\x0b"
                   89588:             "\x02\x0b\x11\x05\x13\x0a\xff\x01\x01\x0d\x10\x05\x13"
                   89589:             "\x0a\x00\x0f\x0f\x05\x13\x0a\x00\xff\x04\x0f\x0f\x05"
                   89590:             "\x14\x09\x00\x0e\x10\x05\x14\x16\x11\x05\x14\x08\x01"
                   89591:             "\x0c\x12\x05\x14\x08\x01\x0b\x13\x05\x14\x08\x02\x04"
                   89592:             "\x19\x05\x13\x09\x01\x00\xff\x01\x01\x04\x19\x05\x13"
                   89593:             "\x08\x02\x00\x01\x05\x18\x05\x13\x08\x04\x04\x18\x05"
                   89594:             "\x12\x08\x05\x05\x17\x05\x12\x08\x05\x05\x17\x05\x12"
                   89595:             "\x07\x07\x05\x16\x05\x11\x08\x07\x05\x16\x05\x11\x07"
                   89596:             "\x09\x05\x15\x05\x10\x08\x09\x06\x14\x05\x0f\x08\x0b"
                   89597:             "\x05\x14\x05\x0f\x07\x0d\x05\x13\x05\x0e\x08\x0d\x06"
                   89598:             "\x12\x05\x0d\x08\x0f\x07\x10\x05\x0c\x08\x11\x07\x0f"
                   89599:             "\x05\x0a\x09\x13\x08\x0d\x05\x09\x09\x15\x09\x0b\x05"
                   89600:             "\x07\x0a\x17\x0b\x08\x05\x05\x0b\x19\x0e\x04\x05\x01"
                   89601:             "\x0d\x1d\x22\x20\x1e\x24\x1a\x29\x15\x2f\x0d\x1a\x00"
                   89602:             "\xff\x06\x1e\x05\x1d" }  },
1.1       albertel 89603:       /* --- pixel bitmap for cmr1200 char#37 % --- */
                   89604:       {  37,36296,                      /* character number, location */
1.2       albertel 89605:         125, 9,   -9, 9,      /* topleft row,col, and botleft row,col */
                   89606:           { 119,  134, 2,783, (pixbyte *)/* width,ht, fmt,pixsz,map.. */
                   89607:             "\x14\x09\x47\x04\x20\x0e\x44\x05\x1e\x12\x41\x07\x1c"
                   89608:             "\x14\x3f\x08\x1a\x0a\x06\x07\x3d\x09\x19\x09\x0a\x06"
                   89609:             "\x3c\x08\x19\x09\x0d\x05\x3a\x09\x18\x08\x10\x06\x37"
                   89610:             "\x09\x18\x09\x11\x06\x35\x09\x19\x08\x13\x06\x33\x0a"
                   89611:             "\x18\x08\x14\x07\x30\x0b\x18\x09\x15\x08\x2d\x0b\x18"
                   89612:             "\x09\x17\x09\x29\x0d\x18\x09\x17\x0b\x26\x0d\x18\x0a"
                   89613:             "\x18\x0c\x22\x0e\x19\x09\x19\x0e\x1d\x11\x18\x0a\x1a"
                   89614:             "\x04\x02\x0a\x17\x13\x19\x0a\x1a\x04\x04\x0d\x0e\x0d"
                   89615:             "\x01\x08\x1a\x09\x1b\x05\x05\x24\x02\x09\x19\x0a\x1c"
                   89616:             "\x04\x07\x1f\x05\x08\x1a\x0a\x1c\x04\x0b\x18\x07\x08"
                   89617:             "\x1b\x0a\x1c\x05\x0e\x10\x0a\x09\x1a\x0b\x1d\x04\x28"
                   89618:             "\x08\x1b\x0a\x1e\x04\x27\x08\x1c\x0a\x1e\x04\x26\x09"
                   89619:             "\x1c\x0a\x1e\x04\x26\x08\x1d\x0a\x1e\x05\x24\x08\x1d"
                   89620:             "\x0b\x1f\x04\x23\x09\x1d\x0b\x1f\x04\x23\x08\x1e\x0b"
                   89621:             "\x1f\x04\x22\x08\x1f\x0b\x1f\x04\x21\x09\x1f\x0b\x1f"
                   89622:             "\x04\x21\x08\x20\x0b\x1f\x04\x20\x08\x21\x0b\x1f\x04"
                   89623:             "\x1f\x09\x21\x0b\x1f\x04\x1f\x08\x22\xff\x01\x0b\x1f"
                   89624:             "\x04\x1e\x08\x23\x0b\x1f\x04\x1d\x08\x24\x0b\x1f\x04"
                   89625:             "\x1c\x09\x24\x0b\x1f\x04\x1c\x08\x25\x0b\x1f\x04\x1b"
                   89626:             "\x08\x27\x0a\x1e\x05\x1a\x09\x27\x0a\x1e\x04\x1b\x08"
                   89627:             "\x28\x0a\x1e\x04\x1a\x08\x29\x0a\x1e\x04\x19\x09\x29"
                   89628:             "\x0b\x1d\x04\x19\x08\x2b\x0a\x1c\x05\x18\x08\x2c\x0a"
                   89629:             "\x1c\x04\x18\x09\x2c\x0a\x1c\x04\x18\x08\x2e\x09\x1b"
                   89630:             "\x05\x17\x08\x2f\x0a\x1a\x04\x17\x09\x2f\x0a\x1a\x04"
                   89631:             "\x17\x08\x31\x09\x19\x05\x16\x08\x32\x0a\x18\x04\x16"
                   89632:             "\x09\x33\x09\x17\x05\x16\x08\x34\x09\x17\x04\x16\x08"
                   89633:             "\x36\x09\x15\x05\x15\x09\x37\x08\x14\x05\x16\x08\x39"
                   89634:             "\x08\x13\x05\x15\x08\x3a\x09\x11\x05\x15\x09\x3b\x08"
                   89635:             "\x10\x05\x16\x08\x3d\x09\x0d\x05\x16\x08\x3f\x09\x0a"
                   89636:             "\x06\x16\x09\x40\x0a\x06\x07\x17\x08\x43\x14\x17\x08"
                   89637:             "\x45\x12\x17\x09\x47\x0e\x19\x08\x4b\x09\x1a\x08\x1e"
                   89638:             "\x09\x47\x09\x1b\x0e\x45\x08\x1a\x12\x42\x08\x1a\x14"
                   89639:             "\x40\x09\x18\x0a\x06\x07\x3f\x08\x18\x09\x0a\x06\x3d"
                   89640:             "\x08\x18\x09\x0d\x05\x3b\x09\x17\x08\x10\x05\x3a\x08"
                   89641:             "\x17\x09\x11\x05\x38\x08\x17\x09\x13\x05\x36\x09\x17"
                   89642:             "\x08\x14\x05\x36\x08\x17\x09\x15\x05\x34\x08\x17\x09"
                   89643:             "\x17\x04\x33\x09\x17\x09\x17\x05\x32\x08\x17\x09\x19"
                   89644:             "\x04\x31\x08\x18\x09\x19\x05\x2f\x09\x17\x0a\x1a\x04"
                   89645:             "\x2f\x08\x18\x09\x1b\x05\x2d\x08\x18\x0a\x1c\x04\x2c"
                   89646:             "\x09\x18\x0a\x1c\x04\x2c\x08\x19\x0a\x1c\x04\x2b\x08"
                   89647:             "\x1a\x0a\x1c\x05\x29\x09\x19\x0b\x1d\x04\x29\x08\x1a"
                   89648:             "\x0a\x1e\x04\x28\x08\x1b\x0a\x1e\x04\x27\x09\x1b\x0a"
                   89649:             "\x1e\x04\x27\x08\x1b\x0b\x1e\x05\x25\x08\x1c\x0b\x1f"
                   89650:             "\x04\x24\x09\x1c\x0b\x1f\x04\x24\x08\x1d\x0b\x1f\x04"
                   89651:             "\xff\x01\x23\x08\x1e\x0b\x1f\x04\x22\x08\x1f\x0b\x1f"
                   89652:             "\x04\x21\x09\x1f\x0b\x1f\x04\x21\x08\x20\x0b\x1f\x04"
                   89653:             "\x20\x08\x21\x0b\x1f\x04\x1f\x09\x21\x0b\x1f\x04\x1f"
                   89654:             "\x08\x22\x0b\x1f\x04\x1e\x08\x23\x0b\x1f\x04\x1d\x09"
                   89655:             "\x23\x0b\x1f\x04\x1d\x08\x24\x0b\x1e\x05\x1c\x08\x26"
                   89656:             "\x0a\x1e\x04\x1c\x09\x26\x0a\x1e\x04\x1c\x08\x27\x0a"
                   89657:             "\x1e\x04\x1b\x08\x28\x0b\x1d\x04\x1a\x09\x29\x0a\x1c"
                   89658:             "\x05\x1a\x08\x2a\x0a\x1c\x04\x1a\x08\x2b\x0a\x1c\x04"
                   89659:             "\x19\x09\x2b\x0a\x1c\x04\x19\x08\x2d\x09\x1b\x05\x18"
                   89660:             "\x08\x2e\x0a\x1a\x04\x18\x09\x2f\x09\x19\x05\x18\x08"
                   89661:             "\x30\x09\x19\x04\x18\x08\x32\x09\x17\x05\x17\x09\x32"
                   89662:             "\x09\x17\x04\x18\x08\x34\x09\x15\x05\x17\x08\x36\x08"
                   89663:             "\x14\x05\x17\x09\x36\x09\x13\x05\x17\x08\x38\x09\x11"
                   89664:             "\x05\x17\x08\x3a\x08\x10\x05\x17\x09\x3b\x09\x0d\x05"
                   89665:             "\x18\x08\x3d\x09\x0a\x06\x18\x08\x3f\x0a\x06\x07\x19"
                   89666:             "\x08\x41\x14\x1a\x07\x43\x12\x1c\x05\x46\x0e\x1f\x04"
                   89667:             "\x49\x09\x11" }  },
1.1       albertel 89668:       /* --- pixel bitmap for cmr1200 char#38 & --- */
                   89669:       {  38,29803,                      /* character number, location */
1.2       albertel 89670:         119, 7,   -4, 7,      /* topleft row,col, and botleft row,col */
                   89671:           { 113,  123, 2,603, (pixbyte *)/* width,ht, fmt,pixsz,map.. */
                   89672:             "\x26\x08\x66\x0d\x62\x11\x5e\x14\x5c\x0a\x05\x07\x5a"
                   89673:             "\x09\x09\x06\x57\x0a\x0b\x05\x57\x09\x0d\x05\x55\x09"
                   89674:             "\x0e\x05\x54\x09\x10\x04\x53\x0a\x10\x05\x52\x09\x11"
                   89675:             "\x05\x51\x0a\x12\x04\x51\x09\x13\x04\x3a\x00\xff\x01"
                   89676:             "\x16\x0a\x13\x05\x39\x00\x15\x0b\x14\x04\x39\x00\xff"
                   89677:             "\x02\x15\x0a\x15\x04\x39\x00\xff\x04\x14\x0b\x15\x04"
                   89678:             "\x39\x00\xff\x01\x14\x0b\x14\x05\x39\x00\x14\x0b\x14"
                   89679:             "\x04\x3a\x00\xff\x01\x14\x0b\x13\x05\x3a\x00\x14\x0b"
                   89680:             "\x13\x04\x3b\x00\xff\x01\x14\x0c\x11\x05\x3b\x00\x14"
                   89681:             "\x0c\x10\x05\x50\x0c\x0f\x06\x50\x0c\x0f\x05\x51\x0c"
                   89682:             "\x0e\x05\x53\x0b\x0e\x05\x53\x0c\x0c\x05\x54\x0c\x0b"
                   89683:             "\x06\x54\x0c\x0a\x06\x55\x0c\x0a\x05\x56\x0c\x09\x05"
                   89684:             "\x57\x0d\x07\x06\x58\x0c\x06\x06\x59\x0c\x05\x06\x5a"
                   89685:             "\x0d\x04\x05\x5b\x0d\x03\x05\x5d\x0c\x02\x06\x22\x24"
                   89686:             "\x17\x0c\x01\x06\x23\x24\x17\x12\x24\x24\x17\x11\x25"
                   89687:             "\x24\x18\x0f\x26\x24\x18\x0e\x2c\x19\x1e\x0d\x2f\x14"
                   89688:             "\x22\x0d\x30\x0f\x25\x0d\x31\x0d\x26\x0d\x32\x0a\x29"
                   89689:             "\x0d\x31\x09\x2a\x0d\x31\x08\x2b\x0e\x30\x07\x2b\x0f"
                   89690:             "\x30\x06\x2b\x11\x2f\x05\x2b\x12\x2f\x05\x2a\x13\x2e"
                   89691:             "\x05\x2a\x06\x01\x0e\x2c\x06\x29\x06\x03\x0d\x2c\x05"
                   89692:             "\x29\x06\x04\x0e\x2a\x05\x29\x06\x06\x0e\x29\x05\x29"
                   89693:             "\x05\x07\x0e\x28\x05\x29\x05\x09\x0e\x26\x06\x28\x06"
                   89694:             "\x09\x0e\x26\x05\x28\x06\x0b\x0e\x24\x05\x28\x06\x0c"
                   89695:             "\x0e\x24\x05\x27\x06\x0e\x0e\x22\x05\x27\x07\x0e\x0f"
                   89696:             "\x20\x06\x26\x07\x10\x0e\x20\x05\x26\x07\x11\x0f\x1e"
                   89697:             "\x05\x26\x08\x12\x0f\x1d\x05\x25\x09\x12\x0f\x1c\x05"
                   89698:             "\x25\x09\x14\x0f\x1a\x06\x24\x0a\x15\x0f\x19\x05\x24"
                   89699:             "\x0a\x16\x0f\x18\x05\x25\x0a\x17\x0f\x16\x06\x24\x0b"
                   89700:             "\x18\x0f\x15\x05\x24\x0c\x18\x0f\x14\x05\x25\x0c\x19"
                   89701:             "\x0f\x12\x06\x24\x0c\x1b\x0f\x11\x05\x25\x0c\x1b\x0f"
                   89702:             "\x10\x06\x24\x0d\x1c\x0f\x0e\x06\x25\x0d\x1d\x0f\x0d"
                   89703:             "\x05\x26\x0d\x1d\x0f\x0c\x06\x25\x0e\x1e\x0f\x0a\x06"
                   89704:             "\x26\x0e\x1f\x0f\x09\x05\x27\x0e\x20\x0e\x08\x05\x28"
                   89705:             "\x0e\x20\x0f\x06\x06\x28\x0e\x21\x0f\x04\x06\x29\x0e"
                   89706:             "\x22\x0f\x03\x05\x2a\x0f\x22\x0e\x02\x05\x2b\x0f\x22"
                   89707:             "\x15\x26\x04\x01\x0f\x23\x13\x27\x04\x01\x0f\x24\x11"
                   89708:             "\x28\x04\x01\x0f\x25\x0f\x29\x04\x02\x0f\x25\x0f\x27"
                   89709:             "\x05\x02\x0f\x26\x0e\x27\x04\x03\x0f\x27\x0e\x26\x04"
                   89710:             "\x04\x0f\x26\x0f\x24\x05\x04\x0f\x27\x0f\x23\x04\x06"
                   89711:             "\x0e\x26\x11\x21\x05\x06\x0f\x24\x13\x20\x05\x07\x0f"
                   89712:             "\x21\x07\x01\x0e\x1e\x05\x09\x0e\x20\x07\x03\x0e\x1c"
                   89713:             "\x06\x09\x0f\x1e\x07\x05\x0e\x1a\x06\x0b\x0f\x1b\x08"
                   89714:             "\x07\x0f\x17\x06\x0d\x0f\x18\x08\x0b\x0e\x15\x07\x0e"
                   89715:             "\x0f\x14\x0a\x0d\x0f\x11\x08\x11\x0e\x10\x0b\x11\x0f"
                   89716:             "\x0d\x09\x13\x10\x09\x0e\x13\x11\x07\x0b\x16\x23\x17"
                   89717:             "\x1f\x1a\x1f\x1b\x1c\x1d\x1b\x1f\x18\x21\x16\x25\x13"
                   89718:             "\x27\x0d\x2f\x0b\x13" }  },
1.1       albertel 89719:       /* --- pixel bitmap for cmr1200 char#39 ' --- */
                   89720:       {  39,37100,                      /* character number, location */
1.2       albertel 89721:         115,14,   65,14,      /* topleft row,col, and botleft row,col */
                   89722:           { 20,   50, 3,141, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   89723:             "\x66\xca\x9c\x7e\x5e\x02\x4e\x03\x2f\x1e\x04\x2f\x2e"
                   89724:             "\x05\x1e\x06\xf1\x1e\x05\x2e\x04\x3c\x14\x4a\x24\x66"
                   89725:             "\x44\xf4\xe0\x24\xe0\x15\xf3\xe0\x14\x10\xe5\x10\xf1"
                   89726:             "\xe4\x20\xd5\x20\xf1\xd4\x30\xc5\xe0\x14\xe0\x15\x40"
                   89727:             "\xf1\xa5\x50\x95\xe0\x14\xe0\x15\xe5\xe5\xe6\xd6\xd6"
                   89728:             "\xe5\xe0\x14\xe0\x32\xe0" }  },
1.1       albertel 89729:       /* --- pixel bitmap for cmr1200 char#40 ( --- */
                   89730:       {  40,37213,                      /* character number, location */
1.2       albertel 89731:         125,16,  -42,16,      /* topleft row,col, and botleft row,col */
                   89732:           { 39,  167, 3,616, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   89733:             "\xe0\xe0\x74\xe0\xe0\x65\xe0\xe0\x56\xe0\xe0\x45\xe0"
                   89734:             "\xe0\x55\xe0\xe0\x56\xe0\xe0\x46\xe0\xe0\x46\xe0\xe0"
                   89735:             "\x46\xe0\xe0\x46\xe0\xe0\x46\xe0\xe0\x46\xe0\xe0\x47"
                   89736:             "\xe0\xe0\x37\xa0\xf1\xe0\x77\xb0\xe0\x67\xe0\xe0\x37"
                   89737:             "\xe0\xe0\x38\xe0\xe0\x37\xe0\xe0\x37\xe0\xe0\x38\xe0"
                   89738:             "\xe0\x37\xe0\xe0\x38\xe0\xe0\x37\xe0\xe0\x38\xe0\x30"
                   89739:             "\xf1\xd8\xe0\x40\xf1\xc8\xe0\x50\xb9\xe0\xe0\x28\xe0"
                   89740:             "\xe0\x29\xe0\xe0\x28\xe0\x70\xf1\x99\xe0\x70\x98\xe0"
                   89741:             "\x80\xf1\x89\xe0\x80\xf2\x79\xe0\x90\xf2\x69\xe0\xa0"
                   89742:             "\xf3\x59\xe0\xb0\x4a\xe0\xb0\xf1\x49\xe0\xc0\xf2\x3a"
                   89743:             "\xe0\xc0\xf1\x39\xe0\xd0\xf3\x2a\xe0\xd0\xf1\x29\xe0"
                   89744:             "\xe0\xf6\x1a\xe0\xe0\x19\xe0\xe0\x1f\xea\xe0\xe0\x1f"
                   89745:             "\x9a\xe0\xe0\x10\x19\xe0\xe0\x10\xf6\x1a\xe0\xe0\xf1"
                   89746:             "\x29\xe0\xe0\xf3\x2a\xe0\xd0\xf1\x39\xe0\xd0\xf2\x3a"
                   89747:             "\xe0\xc0\xf1\x49\xe0\xc0\x4a\xe0\xb0\xf3\x59\xe0\xb0"
                   89748:             "\xf2\x69\xe0\xa0\xf2\x79\xe0\x90\xf1\x89\xe0\x80\x98"
                   89749:             "\xe0\x80\xf1\x99\xe0\x70\xa8\xe0\xe0\x39\xe0\xe0\x38"
                   89750:             "\xe0\xe0\x39\xe0\x50\xf1\xc8\xe0\x50\xf1\xd8\xe0\x40"
                   89751:             "\xe8\xe0\xe0\x47\xe0\xe0\x48\xe0\xe0\x47\xe0\xe0\x48"
                   89752:             "\xe0\xe0\x47\xe0\xe0\x57\xe0\xe0\x48\xe0\xe0\x47\xe0"
                   89753:             "\xe0\x57\xc0\xf1\xe0\x77\xb0\xe0\x87\xe0\xe0\x57\xe0"
                   89754:             "\xe0\x56\xe0\xe0\x66\xe0\xe0\x66\xe0\xe0\x66\xe0\xe0"
                   89755:             "\x66\xe0\xe0\x66\xe0\xe0\x66\xe0\xe0\x65\xe0\xe0\x75"
                   89756:             "\xe0\xe0\x76\xe0\xe0\x65\xe0\xe0\x74" }  },
1.1       albertel 89757:       /* --- pixel bitmap for cmr1200 char#41 ) --- */
                   89758:       {  41,37554,                      /* character number, location */
1.2       albertel 89759:         125, 9,  -42, 9,      /* topleft row,col, and botleft row,col */
                   89760:           { 39,  167, 3,617, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   89761:             "\x13\xe0\xe0\x75\xe0\xe0\x75\xe0\xe0\x75\xe0\xe0\x75"
                   89762:             "\xe0\xe0\x66\xe0\xe0\x66\xe0\xe0\x66\xe0\xe0\x66\xe0"
                   89763:             "\xe0\x66\xe0\xe0\x66\xe0\xe0\x66\xe0\xe0\x57\xe0\xe0"
                   89764:             "\x57\xe0\x80\xf1\xb7\xe0\x70\xc7\xe0\xe0\x57\xe0\xe0"
                   89765:             "\x48\xe0\xe0\x47\xe0\xe0\x57\xe0\xe0\x48\xe0\xe0\x47"
                   89766:             "\xe0\xe0\x48\xe0\xe0\x47\xe0\xe0\x48\xe0\xf1\xe0\x48"
                   89767:             "\xd0\xf1\xe0\x58\xc0\xe0\x59\xe0\xe0\x38\xe0\xe0\x39"
                   89768:             "\xe0\xe0\x38\xa0\xf1\xe0\x79\x90\xe0\x88\x90\xf1\xe0"
                   89769:             "\x89\x80\xf2\xe0\x99\x70\xf2\xe0\xa9\x60\xf3\xe0\xb9"
                   89770:             "\x50\xe0\xba\x40\xf1\xe0\xc9\x40\xf2\xe0\xca\x30\xf1"
                   89771:             "\xe0\xd9\x30\xf3\xe0\xda\x20\xf1\xe0\xe9\x20\xf6\xe0"
                   89772:             "\xea\x10\xe0\xe0\x19\x10\xfe\xe0\xe0\x1a\xf9\xe0\xe0"
                   89773:             "\x1a\xe0\xe0\x19\x10\xf6\xe0\xea\x10\xf1\xe0\xe9\x20"
                   89774:             "\xf3\xe0\xda\x20\xf1\xe0\xd9\x30\xf2\xe0\xca\x30\xf1"
                   89775:             "\xe0\xc9\x40\xe0\xba\x40\xf3\xe0\xb9\x50\xf2\xe0\xa9"
                   89776:             "\x60\xf2\xe0\x99\x70\xf1\xe0\x89\x80\xe0\x88\x90\xf1"
                   89777:             "\xe0\x79\x90\xe0\x78\xe0\xe0\x29\xe0\xe0\x28\xe0\xe0"
                   89778:             "\x29\xb0\xf1\xe0\x58\xc0\xf1\xe0\x48\xd0\xe0\x38\xe0"
                   89779:             "\xe0\x37\xe0\xe0\x38\xe0\xe0\x37\xe0\xe0\x38\xe0\xe0"
                   89780:             "\x37\xe0\xe0\x37\xe0\xe0\x38\xe0\xe0\x37\xe0\xe0\x37"
                   89781:             "\xe0\x60\xf1\xb7\xe0\x70\xa7\xe0\xe0\x37\xe0\xe0\x46"
                   89782:             "\xe0\xe0\x46\xe0\xe0\x46\xe0\xe0\x46\xe0\xe0\x46\xe0"
                   89783:             "\xe0\x46\xe0\xe0\x46\xe0\xe0\x55\xe0\xe0\x55\xe0\xe0"
                   89784:             "\x55\xe0\xe0\x55\xe0\xe0\x73\xe0\xe0\x74" }  },
1.1       albertel 89785:       /* --- pixel bitmap for cmr1200 char#42 * --- */
                   89786:       {  42,37895,                      /* character number, location */
1.2       albertel 89787:         125,11,   54,11,      /* topleft row,col, and botleft row,col */
                   89788:           { 60,   71, 3,455, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   89789:             "\xe0\xe4\xe0\xe0\xe0\xd6\xe0\xd0\xf1\xe0\xc8\xe0\xc0"
                   89790:             "\xe0\xc9\xe0\xb0\xf9\xe0\xc8\xe0\xc0\x41\xe0\x86\xe0"
                   89791:             "\x81\x56\xe0\x66\xe0\x66\x27\xe0\x56\xe0\x57\x1a\xe0"
                   89792:             "\x36\xe0\x3e\x07\xe0\x26\xe0\x2e\x09\xe0\x16\xe0\x1e"
                   89793:             "\x0c\xd6\xde\x0e\x01\xc6\xce\x01\x1e\x01\xb6\xbe\x01"
                   89794:             "\x4e\x01\x96\x9e\x01\x8e\x94\x9e\xcd\x84\x8d\xe0\x3c"
                   89795:             "\x64\x6c\xe0\x8b\x54\x5b\xe0\xca\x44\x4a\xe0\xe0\x2a"
                   89796:             "\x24\x2a\xe0\xe0\x69\x14\x19\xe0\xe0\xae\x06\xe0\xe0"
                   89797:             "\xee\x02\xe0\xe0\xe0\x4c\xe0\xe0\xe0\x96\xe0\xe0\xe0"
                   89798:             "\x9c\xe0\xe0\xe0\x4e\x02\xe0\xe0\xee\x06\xe0\xe0\xa9"
                   89799:             "\x14\x19\xe0\xe0\x6a\x24\x2a\xe0\xe0\x2a\x44\x4a\xe0"
                   89800:             "\xcb\x54\x5b\xe0\x8c\x64\x6c\xe0\x3d\x84\x8d\xce\x94"
                   89801:             "\x9e\x8e\x01\x96\x9e\x01\x4e\x01\xb6\xbe\x01\x1e\x01"
                   89802:             "\xc6\xce\x0e\x01\xd6\xde\x0c\xe0\x16\xe0\x1e\x09\xe0"
                   89803:             "\x26\xe0\x2e\x07\xe0\x36\xe0\x3a\x17\xe0\x56\xe0\x57"
                   89804:             "\x26\xe0\x66\xe0\x66\x51\xe0\x86\xe0\x81\x40\xf9\xe0"
                   89805:             "\xc8\xe0\xc0\xe0\xc9\xe0\xb0\xf1\xe0\xc8\xe0\xc0\xe0"
                   89806:             "\xd6\xe0\xe0\xe0\xd4\xe0\xe1" }  },
1.1       albertel 89807:       /* --- pixel bitmap for cmr1200 char#43 + --- */
                   89808:       {  43,38180,                      /* character number, location */
1.2       albertel 89809:          97, 9,  -14, 9,      /* topleft row,col, and botleft row,col */
                   89810:           { 110,  111, 2,37, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   89811:             "\xff\x01\x35\x05\x34\x00\xff\x31\x34\x07\x33\x00\xff"
                   89812:             "\x01\x01\x6c\x01\xff\x02\x6e\xff\x01\x01\x6c\x01\x00"
                   89813:             "\xff\x31\x34\x07\x33\x00\xff\x01\x35\x05\x34" }  },
1.1       albertel 89814:       /* --- pixel bitmap for cmr1200 char#44 (noname) --- */
                   89815:       {  44,38416,                      /* character number, location */
1.2       albertel 89816:          18,14,  -32,14,      /* topleft row,col, and botleft row,col */
                   89817:           { 20,   50, 3,141, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   89818:             "\x66\xca\x9c\x7e\x5e\x02\x4e\x03\x2f\x1e\x04\x2f\x2e"
                   89819:             "\x05\x1e\x06\xf1\x1e\x05\x2e\x04\x3c\x14\x4a\x24\x66"
                   89820:             "\x44\xf4\xe0\x24\xe0\x15\xf3\xe0\x14\x10\xe5\x10\xf1"
                   89821:             "\xe4\x20\xd5\x20\xf1\xd4\x30\xc5\xe0\x14\xe0\x15\x40"
                   89822:             "\xf1\xa5\x50\x95\xe0\x14\xe0\x15\xe5\xe5\xe6\xd6\xd6"
                   89823:             "\xe5\xe0\x14\xe0\x32\xee" }  },
1.1       albertel 89824:       /* --- pixel bitmap for cmr1200 char#45 (noname) --- */
                   89825:       {  45,44676,                      /* character number, location */
1.2       albertel 89826:          41, 2,   31, 2,      /* topleft row,col, and botleft row,col */
                   89827:           { 43,   10, 2, 4, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   89828:             "\xff\x09\x00\x2b" }  },
1.1       albertel 89829:       /* --- pixel bitmap for cmr1200 char#46 (noname) --- */
                   89830:       {  46,38529,                      /* character number, location */
1.2       albertel 89831:          18,14,    0,14,      /* topleft row,col, and botleft row,col */
                   89832:           { 18,   18, 3,39, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   89833:             "\x66\xaa\x7c\x5e\x20\xf1\x1e\x02\x1f\x5e\x04\xf1\x1e"
                   89834:             "\x02\x10\x2e\x5c\x7a\xa6\x6e" }  },
1.1       albertel 89835:       /* --- pixel bitmap for cmr1200 char#47 / --- */
                   89836:       {  47,38572,                      /* character number, location */
1.2       albertel 89837:         125, 9,  -42, 9,      /* topleft row,col, and botleft row,col */
                   89838:           { 64,  167, 2,537, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   89839:             "\x3b\x04\x3b\x05\x01\x00\xff\x01\x39\x07\xff\x01\x38"
                   89840:             "\x08\x38\x07\x01\x00\xff\x01\x37\x08\x01\x00\x37\x07"
                   89841:             "\x02\x00\xff\x01\x36\x08\x02\x00\xff\x01\x35\x08\x03"
                   89842:             "\x00\x35\x07\x04\x00\xff\x01\x34\x08\x04\x00\x34\x07"
                   89843:             "\x05\x00\xff\x01\x33\x08\x05\x00\x33\x07\x06\x00\xff"
                   89844:             "\x01\x32\x08\x06\x00\x32\x07\x07\x00\xff\x01\x31\x08"
                   89845:             "\x07\x00\xff\x01\x30\x08\x08\x00\x30\x07\x09\x00\xff"
                   89846:             "\x01\x2f\x08\x09\x00\x2f\x07\x0a\x00\xff\x01\x2e\x08"
                   89847:             "\x0a\x00\x2e\x07\x0b\x00\xff\x01\x2d\x08\x0b\x00\x2d"
                   89848:             "\x07\x0c\x00\xff\x01\x2c\x08\x0c\x00\xff\x01\x2b\x08"
                   89849:             "\x0d\x00\x2b\x07\x0e\x00\xff\x01\x2a\x08\x0e\x00\x2a"
                   89850:             "\x07\x0f\x00\xff\x01\x29\x08\x0f\x00\x29\x07\x10\x00"
                   89851:             "\xff\x01\x28\x08\x10\x00\x28\x07\x11\x00\xff\x01\x27"
                   89852:             "\x08\x11\x00\xff\x01\x26\x08\x12\x00\x26\x07\x13\x00"
                   89853:             "\xff\x01\x25\x08\x13\x00\x25\x07\x14\x00\xff\x01\x24"
                   89854:             "\x08\x14\x00\x24\x07\x15\x00\xff\x01\x23\x08\x15\x00"
                   89855:             "\x23\x07\x16\x00\xff\x01\x22\x08\x16\x00\xff\x01\x21"
                   89856:             "\x08\x17\x00\x21\x07\x18\x00\xff\x01\x20\x08\x18\x00"
                   89857:             "\x20\x07\x19\x00\xff\x01\x1f\x08\x19\x00\x1f\x07\x1a"
                   89858:             "\x00\xff\x01\x1e\x08\x1a\x00\x1e\x07\x1b\x00\xff\x01"
                   89859:             "\x1d\x08\x1b\x00\xff\x01\x1c\x08\x1c\x00\x1c\x07\x1d"
                   89860:             "\x00\xff\x01\x1b\x08\x1d\x00\x1b\x07\x1e\x00\xff\x01"
                   89861:             "\x1a\x08\x1e\x00\x1a\x07\x1f\x00\xff\x01\x19\x08\x1f"
                   89862:             "\x00\x19\x07\x20\x00\xff\x01\x18\x08\x20\x00\x18\x07"
                   89863:             "\x21\x00\xff\x01\x17\x08\x21\x00\xff\x01\x16\x08\x22"
                   89864:             "\x00\x16\x07\x23\x00\xff\x01\x15\x08\x23\x00\x15\x07"
                   89865:             "\x24\x00\xff\x01\x14\x08\x24\x00\x14\x07\x25\x00\xff"
                   89866:             "\x01\x13\x08\x25\x00\x13\x07\x26\x00\xff\x01\x12\x08"
                   89867:             "\x26\x00\xff\x01\x11\x08\x27\x00\x11\x07\x28\x00\xff"
                   89868:             "\x01\x10\x08\x28\x00\x10\x07\x29\x00\xff\x01\x0f\x08"
                   89869:             "\x29\x00\x0f\x07\x2a\x00\xff\x01\x0e\x08\x2a\x00\x0e"
                   89870:             "\x07\x2b\x00\xff\x01\x0d\x08\x2b\x00\xff\x01\x0c\x08"
                   89871:             "\x2c\x00\x0c\x07\x2d\x00\xff\x01\x0b\x08\x2d\x00\x0b"
                   89872:             "\x07\x2e\x00\xff\x01\x0a\x08\x2e\x00\x0a\x07\x2f\x00"
                   89873:             "\xff\x01\x09\x08\x2f\x00\x09\x07\x30\x00\xff\x01\x08"
                   89874:             "\x08\x30\x00\xff\x01\x07\x08\x31\x00\x07\x07\x32\x00"
                   89875:             "\xff\x01\x06\x08\x32\x00\x06\x07\x33\x00\xff\x01\x05"
                   89876:             "\x08\x33\x00\x05\x07\x34\x00\xff\x01\x04\x08\x34\x00"
                   89877:             "\x04\x07\x35\x00\xff\x01\x03\x08\x35\x00\xff\x01\x02"
                   89878:             "\x08\x36\x00\x02\x07\x37\x00\xff\x01\x01\x08\x37\x00"
                   89879:             "\x01\x07\x38\xff\x01\x08\x38\xff\x01\x07\x39\x00\xff"
                   89880:             "\x01\x01\x05\x3a" }  },
1.1       albertel 89881:       /* --- pixel bitmap for cmr1200 char#48 0 --- */
                   89882:       {  48,25513,                      /* character number, location */
1.2       albertel 89883:         111, 6,   -4, 6,      /* topleft row,col, and botleft row,col */
                   89884:           { 70,  115, 3,513, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   89885:             "\xe0\xe0\x1c\xe0\xe0\xe0\xce\x06\xe0\xe0\xe0\x6e\x0a"
                   89886:             "\xe0\xe0\xe0\x2e\x0e\xe0\xe0\xcc\x8c\xe0\xe0\x8b\xeb"
                   89887:             "\xe0\xe0\x5a\xe0\x4a\xe0\xe0\x3a\xe0\x6a\xe0\xe0\x19"
                   89888:             "\xe0\xa9\xe0\xd9\xe0\xc9\xe0\xb9\xe0\xe9\xe0\x99\xe0"
                   89889:             "\xe0\x29\xe0\x7a\xe0\xe0\x2a\xe0\x69\xe0\xe0\x49\xe0"
                   89890:             "\x5a\xe0\xe0\x4a\x90\xf1\x8a\xe0\xe0\x6a\x80\xf1\x7a"
                   89891:             "\xe0\xe0\x8a\x70\x6b\xe0\xe0\x8b\xca\xe0\xe0\xaa\x60"
                   89892:             "\xf2\x5b\xe0\xe0\xab\x50\xf2\x4b\xe0\xe0\xcb\x40\xf3"
                   89893:             "\x3c\xe0\xe0\xcc\x30\xf1\x2d\xe0\xe0\xcd\x20\xf1\x2c"
                   89894:             "\xe0\xe0\xec\x20\xf8\x1d\xe0\xe0\xed\x1f\xee\xe0\xe0"
                   89895:             "\xee\x0f\xce\xe0\xe0\xee\xf6\x1d\xe0\xe0\xed\x10\x1e"
                   89896:             "\xe0\xe0\xce\x10\xf4\x2d\xe0\xe0\xcd\x20\xf3\x3c\xe0"
                   89897:             "\xe0\xcc\x30\xf2\x4c\xe0\xe0\xac\x40\xf1\x5b\xe0\xe0"
                   89898:             "\xab\x50\xf1\x6b\xe0\xe0\x8b\x60\x7a\xe0\xe0\x8a\xeb"
                   89899:             "\xe0\xe0\x6b\x70\xf1\x8a\xe0\xe0\x6a\x80\xf1\x9a\xe0"
                   89900:             "\xe0\x4a\x90\xaa\xe0\xe0\x2a\xe0\x7a\xe0\xea\xe0\x9a"
                   89901:             "\xe0\xca\xe0\xba\xe0\xaa\xe0\xda\xe0\x8a\xe0\xe0\x1a"
                   89902:             "\xe0\x6a\xe0\xe0\x3a\xe0\x4a\xe0\xe0\x5b\xeb\xe0\xe0"
                   89903:             "\x8c\x8c\xe0\xe0\xce\x0e\xe0\xe0\xe0\x2e\x0a\xe0\xe0"
                   89904:             "\xe0\x6e\x06\xe0\xe0\xe0\xcc\xe0\xe0\x13" }  },
1.1       albertel 89905:       /* --- pixel bitmap for cmr1200 char#49 1 --- */
                   89906:       {  49,25964,                      /* character number, location */
1.2       albertel 89907:         111,15,    0,15,      /* topleft row,col, and botleft row,col */
                   89908:           { 55,  111, 2,62, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   89909:             "\x1e\x03\x32\x06\x30\x07\x2f\x08\x2e\x09\x2c\x0b\x2a"
                   89910:             "\x0d\x28\x0f\x25\x12\x21\x16\x1a\x1d\x15\x22\x15\x13"
                   89911:             "\x02\x0d\x15\x10\x05\x0d\x15\x0c\x09\x0d\x15\x05\x10"
                   89912:             "\x0d\x15\x00\xff\x55\x15\x0d\x15\x00\xff\x01\x14\x0f"
                   89913:             "\x14\x00\x13\x11\x22\x19\x0f\xff\x04\x37" }  },
1.1       albertel 89914:       /* --- pixel bitmap for cmr1200 char#50 2 --- */
                   89915:       {  50,26201,                      /* character number, location */
1.2       albertel 89916:         111, 8,    0, 8,      /* topleft row,col, and botleft row,col */
                   89917:           { 66,  111, 2,319, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   89918:             "\x19\x0d\x31\x15\x2a\x1b\x25\x20\x21\x23\x1d\x0c\x08"
                   89919:             "\x12\x1b\x09\x10\x10\x18\x08\x14\x0f\x16\x07\x17\x0f"
                   89920:             "\x14\x06\x1b\x0e\x12\x06\x1d\x0e\x10\x06\x1f\x0e\x0e"
                   89921:             "\x06\x21\x0e\x0c\x06\x22\x0f\x0b\x05\x24\x0f\x09\x06"
                   89922:             "\x25\x0e\x09\x05\x26\x0f\x07\x06\x27\x0e\x07\x05\x28"
                   89923:             "\x0f\x05\x06\x28\x0f\x05\x05\x2a\x0f\x03\x06\x2a\x0f"
                   89924:             "\x03\x05\x2b\x10\x02\x0b\x26\x0f\x02\x0d\x24\x0f\x01"
                   89925:             "\x0f\x23\x0f\x01\xff\x01\x10\x22\x10\x00\xff\x05\x11"
                   89926:             "\x22\x0f\xff\x01\x01\x0f\x23\x0f\x02\x0d\x24\x0f\x03"
                   89927:             "\x0b\x24\x10\x04\x09\x25\x10\x06\x05\x27\x0f\x01\x00"
                   89928:             "\xff\x01\x32\x0f\x01\x00\x31\x10\x01\x00\xff\x01\x31"
                   89929:             "\x0f\x02\x00\xff\x01\x30\x0f\x03\x00\x30\x0e\x33\x0f"
                   89930:             "\x33\x0e\x33\x0f\x33\x0e\x06\x00\xff\x01\x2d\x0e\x07"
                   89931:             "\x00\x2c\x0e\x34\x0d\x34\x0d\x0a\x00\xff\x01\x2a\x0d"
                   89932:             "\x0b\x00\x29\x0d\x34\x0d\x35\x0c\x35\x0c\x35\x0c\x35"
                   89933:             "\x0c\x36\x0b\x36\x0a\x37\x0a\x37\x0a\x37\x0a\x37\x0a"
                   89934:             "\x38\x09\x38\x09\x38\x09\x38\x09\x38\x08\x39\x08\x39"
                   89935:             "\x08\x39\x08\x39\x08\x3a\x07\x3a\x07\x3a\x07\x21\x04"
                   89936:             "\x15\x07\x22\x04\x14\x07\x23\x04\x13\x07\x23\x04\x13"
                   89937:             "\x07\x24\x04\x12\x07\x25\x04\x11\x07\x26\x04\x11\x06"
                   89938:             "\x27\x04\x10\x06\x27\x05\x0f\x06\x28\x04\x0f\x06\x29"
                   89939:             "\x04\x0e\x06\x2a\x04\x0d\x06\x2a\x05\x0c\x06\x2b\x05"
                   89940:             "\x0b\x06\x2b\x05\x0b\x06\x2a\x07\x0b\x37\x0a\x38\x09"
                   89941:             "\x39\x08\x3a\x07\x3a\x07\x3b\x06\x3c\x05\x3d\x04\xff"
                   89942:             "\x01\x3e\x04\xff\x02\x3d\x05" }  },
1.1       albertel 89943:       /* --- pixel bitmap for cmr1200 char#51 3 --- */
                   89944:       {  51,26532,                      /* character number, location */
1.2       albertel 89945:         111, 7,   -4, 7,      /* topleft row,col, and botleft row,col */
                   89946:           { 68,  115, 2,359, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   89947:             "\x1b\x0d\x32\x17\x2a\x1d\x25\x21\x21\x0d\x09\x0f\x1e"
                   89948:             "\x09\x11\x0d\x1c\x08\x15\x0d\x18\x07\x19\x0d\x16\x07"
                   89949:             "\x1b\x0d\x14\x06\x1e\x0d\x12\x06\x20\x0d\x11\x05\x21"
                   89950:             "\x0e\x0f\x05\x23\x0e\x0d\x05\x24\x0e\x0d\x04\x25\x0f"
                   89951:             "\x0b\x0b\x20\x0f\x0a\x0d\x1e\x0f\x0a\x0e\x1d\x0f\x09"
                   89952:             "\x0f\x1d\x10\x08\x10\x1c\x10\x04\x00\xff\x01\x04\x10"
                   89953:             "\x1d\x0f\x04\x00\xff\x01\x04\x11\x1c\x0f\x04\x00\xff"
                   89954:             "\x01\x04\x10\x1d\x0f\x04\x00\x05\x0f\x1c\x10\x09\x0e"
                   89955:             "\x1d\x10\x0a\x0c\x1e\x0f\x0c\x0a\x1f\x0f\x0e\x07\x20"
                   89956:             "\x0f\x35\x0f\x05\x00\xff\x01\x2f\x0f\x06\x00\xff\x01"
                   89957:             "\x2f\x0e\x07\x00\xff\x01\x2e\x0e\x08\x00\xff\x01\x2d"
                   89958:             "\x0e\x09\x00\x2d\x0d\x36\x0d\x36\x0d\x37\x0c\x37\x0c"
                   89959:             "\x37\x0c\x37\x0c\x37\x0b\x37\x0c\x35\x0d\x30\x12\x2b"
                   89960:             "\x17\x2d\x14\x30\x18\x2c\x1b\x39\x0e\x39\x0c\x3a\x0c"
                   89961:             "\x39\x0d\x39\x0c\x39\x0c\x38\x0d\x38\x0d\x38\x0d\x37"
                   89962:             "\x0e\x37\x0e\x36\x0f\x05\x00\xff\x01\x31\x0f\x04\x00"
                   89963:             "\x31\x10\x35\x0f\x03\x00\xff\x01\x32\x10\x02\x00\xff"
                   89964:             "\x01\x32\x11\x01\x00\xff\x01\x33\x10\x01\x00\xff\x01"
                   89965:             "\x33\x11\x05\x08\x26\x11\x04\x0a\x25\x11\x03\x0c\x24"
                   89966:             "\x11\x02\x0e\x23\x11\x01\x10\x22\x11\x00\xff\x03\x12"
                   89967:             "\x21\x11\x00\xff\x01\x12\x21\x10\x01\x12\x20\x11\x01"
                   89968:             "\x11\x21\x11\x01\x11\x21\x10\x03\x0f\x22\x10\x03\x0e"
                   89969:             "\x23\x10\x03\x0d\x23\x10\x05\x0a\x25\x10\x05\x06\x29"
                   89970:             "\x0f\x06\x06\x28\x10\x07\x06\x27\x0f\x09\x06\x25\x0f"
                   89971:             "\x0a\x07\x24\x0e\x0c\x07\x22\x0f\x0d\x07\x21\x0e\x0f"
                   89972:             "\x07\x1f\x0e\x11\x08\x1c\x0e\x13\x09\x19\x0e\x15\x0a"
                   89973:             "\x15\x0e\x18\x0c\x10\x0f\x1b\x0e\x09\x11\x1e\x24\x21"
                   89974:             "\x21\x26\x1c\x2b\x16\x32\x0e\x1c" }  },
1.1       albertel 89975:       /* --- pixel bitmap for cmr1200 char#52 4 --- */
                   89976:       {  52,26885,                      /* character number, location */
1.2       albertel 89977:         113, 5,    0, 5,      /* topleft row,col, and botleft row,col */
                   89978:           { 72,  113, 2,340, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   89979:             "\x33\x04\x11\x00\xff\x01\x32\x06\x10\x00\x31\x07\x10"
                   89980:             "\x00\xff\x01\x30\x08\x10\x00\x2f\x09\x10\x00\xff\x01"
                   89981:             "\x2e\x0a\x10\x00\xff\x01\x2d\x0b\x10\x00\x2c\x0c\x10"
                   89982:             "\x00\xff\x01\x2b\x0d\x10\x00\x2a\x0e\x10\x00\xff\x01"
                   89983:             "\x29\x0f\x10\x00\x28\x10\x10\x00\xff\x01\x27\x11\x10"
                   89984:             "\x00\x26\x05\x01\x0c\x10\x00\xff\x01\x25\x05\x02\x0c"
                   89985:             "\x10\x00\x24\x05\x03\x0c\x34\x04\x04\x0c\x33\x05\x04"
                   89986:             "\x0c\x32\x05\x05\x0c\x32\x04\x06\x0c\x31\x05\x06\x0c"
                   89987:             "\x30\x05\x07\x0c\x30\x04\x08\x0c\x2f\x05\x08\x0c\x10"
                   89988:             "\x00\xff\x01\x1e\x05\x09\x0c\x10\x00\x1d\x05\x0a\x0c"
                   89989:             "\x2d\x04\x0b\x0c\x2c\x05\x0b\x0c\x2b\x05\x0c\x0c\x2b"
                   89990:             "\x04\x0d\x0c\x2a\x05\x0d\x0c\x29\x05\x0e\x0c\x29\x04"
                   89991:             "\x0f\x0c\x28\x05\x0f\x0c\x27\x05\x10\x0c\x27\x04\x11"
                   89992:             "\x0c\x26\x05\x11\x0c\x10\x00\xff\x01\x15\x05\x12\x0c"
                   89993:             "\x10\x00\x14\x05\x13\x0c\x24\x04\x14\x0c\x23\x05\x14"
                   89994:             "\x0c\x22\x05\x15\x0c\x22\x04\x16\x0c\x21\x05\x16\x0c"
                   89995:             "\x20\x05\x17\x0c\x20\x04\x18\x0c\x1f\x05\x18\x0c\x10"
                   89996:             "\x00\xff\x01\x0e\x05\x19\x0c\x10\x00\x0d\x05\x1a\x0c"
                   89997:             "\x10\x00\xff\x01\x0c\x05\x1b\x0c\x10\x00\x0b\x05\x1c"
                   89998:             "\x0c\x1b\x04\x1d\x0c\x1a\x05\x1d\x0c\x19\x05\x1e\x0c"
                   89999:             "\x19\x04\x1f\x0c\x18\x05\x1f\x0c\x17\x05\x20\x0c\x17"
                   90000:             "\x04\x21\x0c\x16\x05\x21\x0c\x10\x00\xff\x01\x05\x05"
                   90001:             "\x22\x0c\x10\x00\x04\x05\x23\x0c\x14\x04\x24\x0c\x13"
                   90002:             "\x05\x24\x0c\x12\x05\x25\x0c\x12\x04\x26\x0c\x11\x05"
                   90003:             "\x26\x0c\x10\x05\x27\x0c\x10\xff\x04\x48\xff\x13\x2b"
                   90004:             "\x0d\x10\x00\x2a\x0f\x38\x11\x34\x17\x0b\x00\xff\x04"
                   90005:             "\x1b\x2d" }  },
1.1       albertel 90006:       /* --- pixel bitmap for cmr1200 char#53 5 --- */
                   90007:       {  53,27243,                      /* character number, location */
1.2       albertel 90008:         111, 8,   -4, 8,      /* topleft row,col, and botleft row,col */
                   90009:           { 66,  115, 2,307, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   90010:             "\x09\x03\x2c\x03\x10\x05\x27\x06\x10\x08\x21\x09\x10"
                   90011:             "\x0c\x19\x0d\x10\x12\x0e\x11\x11\x30\x12\x2f\x13\x2e"
                   90012:             "\x14\x2d\x15\x2c\x16\x2b\x17\x29\x19\x28\x1a\x26\x1c"
                   90013:             "\x24\x1e\x22\x20\x20\x22\x05\x02\x16\x25\x05\x09\x09"
                   90014:             "\x22\x00\xff\x15\x09\x05\x34\x00\x09\x05\x0f\x0b\x23"
                   90015:             "\x05\x0b\x13\x1f\x05\x08\x18\x1d\x05\x06\x1c\x1b\x05"
                   90016:             "\x05\x0b\x08\x0c\x19\x05\x03\x09\x0e\x0b\x18\x05\x02"
                   90017:             "\x07\x13\x0a\x17\x05\x01\x06\x16\x0b\x15\x0b\x18\x0b"
                   90018:             "\x14\x0a\x1a\x0b\x13\x08\x1d\x0b\x12\x07\x1e\x0b\x12"
                   90019:             "\x07\x1f\x0b\x11\x06\x21\x0b\x10\x05\x22\x0c\x0f\x04"
                   90020:             "\x23\x0c\x0f\x03\x25\x0c\x36\x0c\x36\x0d\x36\x0c\x04"
                   90021:             "\x00\xff\x01\x32\x0d\x03\x00\xff\x01\x32\x0e\x02\x00"
                   90022:             "\x33\x0d\x02\x00\xff\x04\x33\x0e\x01\x00\xff\x03\x33"
                   90023:             "\x0f\x07\x02\x2a\x0f\x04\x08\x27\x0f\x03\x0a\x26\x0f"
                   90024:             "\x02\x0c\x25\x0f\x01\x0e\x24\x0f\x00\xff\x03\x10\x23"
                   90025:             "\x0f\x00\xff\x02\x10\x23\x0e\x01\x0f\x23\x0f\x01\x0e"
                   90026:             "\x24\x0f\x01\x0d\x25\x0e\x03\x0b\x26\x0e\x03\x04\x02"
                   90027:             "\x02\x29\x0e\x03\x05\x2c\x0d\x04\x05\x2b\x0e\x05\x04"
                   90028:             "\x2b\x0d\x06\x05\x2a\x0d\x07\x04\x29\x0d\x08\x05\x28"
                   90029:             "\x0d\x09\x05\x26\x0d\x0a\x05\x26\x0c\x0c\x05\x24\x0c"
                   90030:             "\x0d\x06\x23\x0c\x0e\x06\x21\x0c\x10\x06\x1f\x0c\x12"
                   90031:             "\x06\x1d\x0c\x14\x06\x1b\x0c\x16\x07\x18\x0c\x18\x08"
                   90032:             "\x14\x0d\x1a\x09\x10\x0d\x1d\x0c\x09\x0f\x1f\x21\x23"
                   90033:             "\x1d\x27\x19\x2b\x14\x32\x0c\x1e" }  },
1.1       albertel 90034:       /* --- pixel bitmap for cmr1200 char#54 6 --- */
                   90035:       {  54,27608,                      /* character number, location */
1.2       albertel 90036:         111, 7,   -4, 7,      /* topleft row,col, and botleft row,col */
                   90037:           { 68,  115, 2,395, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   90038:             "\x25\x0c\x34\x14\x2d\x19\x29\x1d\x25\x0d\x09\x0a\x23"
                   90039:             "\x0b\x10\x07\x20\x0b\x14\x06\x1e\x0a\x17\x06\x1c\x09"
                   90040:             "\x1a\x06\x19\x0a\x1c\x05\x18\x0a\x1c\x01\x01\x05\x16"
                   90041:             "\x0a\x1a\x0a\x15\x0a\x19\x0c\x14\x0a\x19\x0e\x12\x0a"
                   90042:             "\x1a\x0e\x12\x0a\x19\x0f\x11\x0a\x1a\x0f\x10\x0a\x1b"
                   90043:             "\x0f\x0f\x0b\x1b\x0f\x0f\x0a\x1c\x0f\x0e\x0b\x1c\x0f"
                   90044:             "\x04\x00\xff\x01\x09\x0b\x1e\x0d\x05\x00\x08\x0b\x20"
                   90045:             "\x0b\x0e\x0b\x22\x07\x0f\x0c\x38\x0b\x32\x00\xff\x01"
                   90046:             "\x06\x0c\x32\x00\xff\x01\x05\x0c\x33\x00\xff\x02\x04"
                   90047:             "\x0d\x33\x00\xff\x02\x03\x0d\x34\x00\xff\x01\x02\x0e"
                   90048:             "\x34\x00\x02\x0e\x13\x01\x22\x0e\x0d\x0f\x1a\x0d\x0c"
                   90049:             "\x14\x16\x0e\x0a\x18\x14\x0e\x09\x1b\x12\x0e\x08\x07"
                   90050:             "\x0b\x0b\x11\x0e\x07\x05\x10\x0a\x10\x0e\x06\x05\x12"
                   90051:             "\x0b\x0e\x0e\x05\x04\x16\x0a\x0c\x0f\x04\x04\x18\x0a"
                   90052:             "\x0b\x0f\x03\x04\x19\x0b\x0a\x0f\x03\x04\x1a\x0a\x0a"
                   90053:             "\x0f\x02\x04\x1c\x0a\x09\x0f\x02\x03\x1d\x0b\x08\x0f"
                   90054:             "\x01\x04\x1e\x0b\x07\x0f\x01\x03\x1f\x0c\x06\x13\x20"
                   90055:             "\x0b\x06\x13\x20\x0c\x05\x12\x21\x0d\x04\x12\x22\x0c"
                   90056:             "\x04\xff\x02\x11\x23\x0d\x03\x11\x23\x0e\x02\x10\x25"
                   90057:             "\x0d\x02\xff\x04\x10\x25\x0e\x01\xff\x01\x0f\x26\x0f"
                   90058:             "\xff\x07\x01\x0e\x26\x0f\xff\x01\x02\x0d\x26\x0f\xff"
                   90059:             "\x02\x02\x0e\x25\x0f\x03\x0d\x25\x0f\xff\x01\x03\x0d"
                   90060:             "\x25\x0e\x01\x00\xff\x01\x04\x0c\x25\x0e\x01\x00\x04"
                   90061:             "\x0c\x25\x0d\x06\x0d\x23\x0e\x07\x0c\x23\x0e\x07\x0c"
                   90062:             "\x23\x0d\x03\x00\xff\x01\x06\x0b\x23\x0d\x03\x00\x07"
                   90063:             "\x0b\x21\x0d\x0b\x0b\x21\x0c\x0d\x0a\x21\x0c\x0d\x0b"
                   90064:             "\x1f\x0c\x0f\x0a\x1f\x0c\x0f\x0b\x1e\x0b\x11\x0a\x1d"
                   90065:             "\x0b\x13\x0a\x1b\x0b\x14\x0b\x1a\x0a\x16\x0a\x19\x0a"
                   90066:             "\x18\x0a\x17\x0a\x1a\x0b\x14\x0a\x1c\x0b\x11\x0b\x1e"
                   90067:             "\x0c\x0d\x0c\x21\x0d\x07\x0e\x23\x20\x26\x1c\x2a\x18"
                   90068:             "\x2e\x14\x34\x0c\x1b" }  },
1.1       albertel 90069:       /* --- pixel bitmap for cmr1200 char#55 7 --- */
                   90070:       {  55,28053,                      /* character number, location */
1.2       albertel 90071:         112, 9,   -4, 9,      /* topleft row,col, and botleft row,col */
                   90072:           { 71,  116, 2,255, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   90073:             "\xff\x01\x06\x04\x3d\x00\x05\x06\x41\x08\x3f\x0e\x34"
                   90074:             "\x00\xff\x02\x05\x42\xff\x01\x04\x43\x04\x42\x01\x00"
                   90075:             "\xff\x01\x04\x41\x02\x00\x04\x40\x06\x40\x04\x00\xff"
                   90076:             "\x01\x03\x3f\x05\x00\x03\x3e\x09\x07\x30\x06\x0a\x05"
                   90077:             "\x31\x07\x09\x05\x32\x06\x0a\x05\x31\x06\x0b\x05\x30"
                   90078:             "\x07\x0b\x04\x30\x07\x0c\x04\x30\x06\x0c\x05\x2f\x06"
                   90079:             "\x0d\x04\x2f\x07\x0d\x04\x2f\x06\x0e\x04\x2e\x06\x0f"
                   90080:             "\x04\x2d\x07\x0f\x04\x2c\x07\x0f\x04\x2d\x06\x10\x04"
                   90081:             "\x2c\x06\x11\x04\x2b\x07\x40\x06\x40\x06\x40\x07\x40"
                   90082:             "\x06\x40\x06\x40\x07\x3f\x07\x40\x06\x40\x06\x40\x07"
                   90083:             "\x40\x06\x40\x07\x40\x06\x40\x06\x40\x07\x40\x06\x1c"
                   90084:             "\x00\xff\x01\x24\x07\x1c\x00\x23\x07\x3f\x08\x3f\x07"
                   90085:             "\x1e\x00\xff\x01\x21\x08\x1e\x00\xff\x01\x20\x08\x1f"
                   90086:             "\x00\x1f\x09\x3e\x08\x20\x00\xff\x02\x1e\x09\x20\x00"
                   90087:             "\xff\x01\x1d\x09\x21\x00\xff\x01\x1c\x0a\x21\x00\xff"
                   90088:             "\x02\x1b\x0a\x22\x00\xff\x02\x1a\x0b\x22\x00\x19\x0c"
                   90089:             "\x22\x00\xff\x01\x19\x0b\x23\x00\xff\x03\x18\x0c\x23"
                   90090:             "\x00\xff\x03\x17\x0d\x23\x00\xff\x04\x16\x0d\x24\x00"
                   90091:             "\xff\x06\x15\x0e\x24\x00\xff\x0e\x14\x0f\x24\x00\x15"
                   90092:             "\x0d\x3b\x0b\x3d\x09\x40\x05\x29" }  },
1.1       albertel 90093:       /* --- pixel bitmap for cmr1200 char#56 8 --- */
                   90094:       {  56,28334,                      /* character number, location */
1.2       albertel 90095:         111, 7,   -4, 7,      /* topleft row,col, and botleft row,col */
                   90096:           { 68,  115, 2,401, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   90097:             "\x1c\x0c\x34\x15\x2c\x1a\x28\x1f\x24\x0b\x09\x0d\x21"
                   90098:             "\x09\x11\x0b\x1e\x08\x15\x0a\x1c\x07\x19\x0a\x19\x06"
                   90099:             "\x1d\x09\x17\x06\x1f\x09\x15\x06\x21\x09\x13\x06\x23"
                   90100:             "\x08\x12\x06\x25\x08\x10\x06\x26\x09\x0f\x06\x27\x08"
                   90101:             "\x07\x00\xff\x01\x07\x06\x29\x08\x06\x00\x06\x07\x2a"
                   90102:             "\x08\x0b\x06\x2b\x08\x0a\x07\x2b\x08\x0a\x07\x2b\x09"
                   90103:             "\x09\x07\x2c\x08\x04\x00\xff\x02\x04\x08\x2c\x08\x04"
                   90104:             "\x00\xff\x02\x04\x09\x2b\x08\x04\x00\x04\x0a\x2a\x08"
                   90105:             "\x08\x0a\x29\x09\x08\x0b\x28\x08\x09\x0c\x27\x08\x09"
                   90106:             "\x0d\x25\x09\x0a\x0d\x24\x08\x0b\x0e\x23\x08\x0b\x10"
                   90107:             "\x20\x08\x0c\x11\x1f\x08\x0d\x12\x1c\x08\x0e\x13\x1a"
                   90108:             "\x08\x10\x14\x17\x09\x10\x15\x16\x08\x12\x16\x13\x08"
                   90109:             "\x13\x17\x11\x08\x15\x18\x0e\x08\x17\x18\x0b\x09\x19"
                   90110:             "\x19\x08\x08\x1c\x19\x06\x08\x1e\x1a\x02\x09\x20\x22"
                   90111:             "\x23\x1f\x26\x1d\x29\x1b\x2a\x1c\x2a\x1b\x2a\x1c\x29"
                   90112:             "\x1c\x26\x20\x22\x23\x20\x09\x01\x1c\x1c\x09\x05\x1b"
                   90113:             "\x1a\x08\x08\x1b\x17\x09\x0b\x1a\x15\x08\x0e\x1a\x13"
                   90114:             "\x08\x11\x19\x11\x08\x14\x18\x0f\x08\x16\x17\x0e\x08"
                   90115:             "\x19\x16\x0c\x08\x1b\x16\x0a\x08\x1e\x14\x0a\x08\x1f"
                   90116:             "\x14\x08\x08\x22\x12\x07\x08\x24\x12\x06\x08\x26\x10"
                   90117:             "\x05\x08\x28\x0f\x04\x09\x2a\x0e\x03\x08\x2c\x0d\x03"
                   90118:             "\x08\x2d\x0c\x02\x09\x2e\x0c\x01\x08\x2f\x0c\x01\x08"
                   90119:             "\x30\x0b\x01\x08\x31\x12\x32\x0a\x00\xff\x02\x08\x33"
                   90120:             "\x09\x00\xff\x03\x08\x34\x08\x00\x08\x34\x07\x01\xff"
                   90121:             "\x01\x09\x33\x07\x01\x00\x01\x08\x33\x07\x02\x08\x32"
                   90122:             "\x07\x03\x09\x31\x07\x04\x08\x31\x06\x05\x09\x2f\x07"
                   90123:             "\x06\x08\x2f\x06\x07\x09\x2d\x07\x08\x08\x2d\x06\x09"
                   90124:             "\x09\x2b\x07\x0a\x09\x29\x07\x0c\x09\x27\x07\x0e\x09"
                   90125:             "\x25\x07\x10\x09\x23\x07\x12\x0a\x1f\x08\x14\x0b\x1b"
                   90126:             "\x09\x16\x0c\x17\x0a\x18\x0d\x12\x0c\x1b\x0f\x0a\x0e"
                   90127:             "\x1f\x24\x22\x20\x26\x1b\x2c\x16\x32\x0d\x1c" }  },
1.1       albertel 90128:       /* --- pixel bitmap for cmr1200 char#57 9 --- */
                   90129:       {  57,28763,                      /* character number, location */
1.2       albertel 90130:         111, 7,   -4, 7,      /* topleft row,col, and botleft row,col */
                   90131:           { 68,  115, 2,399, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   90132:             "\x1c\x0c\x34\x14\x2d\x19\x2a\x1c\x26\x0d\x07\x0c\x22"
                   90133:             "\x0b\x0e\x0a\x20\x0a\x12\x09\x1e\x0a\x14\x09\x1c\x0a"
                   90134:             "\x16\x09\x1a\x0a\x18\x09\x18\x0a\x1a\x09\x16\x0a\x1b"
                   90135:             "\x0a\x14\x0b\x1c\x0a\x12\x0b\x1d\x0a\x11\x0b\x1f\x0a"
                   90136:             "\x10\x0b\x1f\x0b\x0e\x0b\x21\x0a\x0d\x0c\x21\x0b\x0c"
                   90137:             "\x0c\x22\x0a\x0b\x0c\x23\x0b\x09\x0d\x23\x0b\x06\x00"
                   90138:             "\xff\x01\x03\x0d\x23\x0c\x05\x00\x02\x0e\x24\x0b\x07"
                   90139:             "\x0e\x24\x0c\x06\x0d\x25\x0c\x05\x0e\x25\x0c\x04\x00"
                   90140:             "\xff\x02\x01\x0e\x25\x0d\x03\x0f\x25\x0d\x03\xff\x01"
                   90141:             "\x0f\x25\x0e\x02\xff\x02\x0f\x26\x0d\x02\xff\x06\x0f"
                   90142:             "\x26\x0e\x01\xff\x02\x0f\x26\x0f\xff\x03\x01\x0e\x25"
                   90143:             "\x10\x02\x0d\x25\x10\x02\x0e\x24\x10\x02\x0e\x23\x11"
                   90144:             "\xff\x02\x03\x0d\x23\x11\x04\x0c\x22\x12\x05\x0c\x21"
                   90145:             "\x12\x05\x0c\x20\x13\x06\x0b\x20\x13\x06\x0c\x1f\x03"
                   90146:             "\x01\x0f\x07\x0b\x1e\x04\x01\x0f\x08\x0b\x1d\x03\x02"
                   90147:             "\x0f\x09\x0a\x1c\x04\x02\x0f\x0a\x0a\x1a\x04\x03\x0f"
                   90148:             "\x0b\x0a\x18\x05\x03\x0f\x0b\x0a\x18\x04\x04\x0f\x0c"
                   90149:             "\x0a\x16\x04\x05\x0e\x0f\x0a\x12\x05\x06\x0e\x10\x0a"
                   90150:             "\x10\x05\x07\x0e\x11\x0b\x0b\x07\x08\x0e\x12\x1b\x09"
                   90151:             "\x0e\x14\x18\x0a\x0e\x16\x14\x0c\x0d\x1a\x0f\x0d\x0e"
                   90152:             "\x22\x01\x13\x0e\x02\x00\xff\x01\x34\x0e\x02\x00\xff"
                   90153:             "\x02\x34\x0d\x03\x00\x34\x0c\x04\x00\xff\x01\x33\x0d"
                   90154:             "\x04\x00\xff\x01\x33\x0c\x05\x00\x32\x0d\x05\x00\xff"
                   90155:             "\x01\x32\x0c\x06\x00\x32\x0b\x0f\x07\x22\x0c\x0d\x0b"
                   90156:             "\x20\x0b\x0d\x0d\x1e\x0c\x0d\x0d\x1e\x0b\x0d\x0f\x1d"
                   90157:             "\x0a\x0e\x0f\x1c\x0b\x0e\x0f\x1c\x0a\x0f\x0f\x1b\x0a"
                   90158:             "\x10\x0f\x1a\x0b\x10\x0f\x1a\x0a\x11\x0e\x1a\x0a\x12"
                   90159:             "\x0e\x19\x0a\x14\x0c\x19\x0a\x15\x0a\x1b\x0a\x15\x05"
                   90160:             "\x01\x01\x1c\x0b\x17\x05\x1c\x0b\x19\x06\x19\x0a\x1b"
                   90161:             "\x08\x15\x0b\x1d\x09\x11\x0c\x1f\x0c\x0a\x0e\x22\x20"
                   90162:             "\x25\x1d\x29\x19\x2d\x15\x33\x0d\x23" }  },
1.1       albertel 90163:       /* --- pixel bitmap for cmr1200 char#58 : --- */
                   90164:       {  58,38913,                      /* character number, location */
1.2       albertel 90165:          71,14,    0,14,      /* topleft row,col, and botleft row,col */
                   90166:           { 18,   71, 3,97, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   90167:             "\x66\xaa\x7c\x5e\x20\xf1\x1e\x02\x1f\x5e\x04\xf1\x1e"
                   90168:             "\x02\x10\x2e\x5c\x7a\xa6\x60\xfe\xe0\x40\xfe\xe0\x40"
                   90169:             "\xf4\xe0\x40\x66\xaa\x7c\x5e\x20\xf1\x1e\x02\x1f\x5e"
                   90170:             "\x04\xf1\x1e\x02\x10\x2e\x5c\x7a\xa6\x68" }  },
1.1       albertel 90171:       /* --- pixel bitmap for cmr1200 char#59 ; --- */
                   90172:       {  59,38994,                      /* character number, location */
1.2       albertel 90173:          71,14,  -32,14,      /* topleft row,col, and botleft row,col */
                   90174:           { 18,  103, 3,175, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   90175:             "\x66\xaa\x7c\x5e\x20\xf1\x1e\x02\x1f\x5e\x04\xf1\x1e"
                   90176:             "\x02\x10\x2e\x5c\x7a\xa6\x60\xfe\xe0\x40\xfe\xe0\x40"
                   90177:             "\xf4\xe0\x40\x66\xa9\x8b\x6d\x30\xf1\x1e\x01\x2f\x2e"
                   90178:             "\x03\x1f\x2e\x04\xf1\x1e\x03\x2e\x02\x3e\x01\x4e\x66"
                   90179:             "\x24\xf5\xe4\xd5\xf3\xd4\x10\xc5\x10\xf1\xc4\x20\xb5"
                   90180:             "\x20\xf1\xb4\x30\xa5\xd4\xd5\xd4\xd5\xd4\xd5\xc5\xd4"
                   90181:             "\xd5\xc5\x90\xf1\x35\xa0\x34\xe0\x12\xc0" }  },
1.1       albertel 90182:       /* --- pixel bitmap for cmr1200 char#60 (noname) --- */
                   90183:       {  60,35496,                      /* character number, location */
1.2       albertel 90184:          83,14,  -36,14,      /* topleft row,col, and botleft row,col */
                   90185:           { 18,  119, 3,99, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   90186:             "\x66\xaa\x7c\x5e\x3e\x02\x1f\x7e\x04\x1e\x02\x3e\x5c"
                   90187:             "\x7a\xa6\x60\xfd\xe0\x40\xf5\x74\x70\xfa\x66\x60\xfa"
                   90188:             "\x58\x50\xfa\x4a\x40\xfa\x3c\x30\xfa\x2e\x20\xfa\x1e"
                   90189:             "\x02\x1f\x9e\x04\x1e\x02\x3e\x5c\x7a\xa6\x60" }  },
1.1       albertel 90190:       /* --- pixel bitmap for cmr1200 char#61 = --- */
                   90191:       {  61,39141,                      /* character number, location */
1.2       albertel 90192:          62, 9,   21, 9,      /* topleft row,col, and botleft row,col */
                   90193:           { 110,   41, 2,31, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   90194:             "\xff\x01\x01\x6c\x01\xff\x02\x6e\x01\x6c\x03\x6a\x02"
                   90195:             "\x00\xff\x1a\x6e\x00\x02\x6a\x03\x6c\x01\xff\x02\x6e"
                   90196:             "\xff\x01\x01\x6c\x01" }  },
1.1       albertel 90197:       /* --- pixel bitmap for cmr1200 char#62 (noname) --- */
                   90198:       {  62,30687,                      /* character number, location */
1.2       albertel 90199:          83, 9,  -34, 9,      /* topleft row,col, and botleft row,col */
                   90200:           { 59,  117, 2,225, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   90201:             "\x18\x06\x33\x0a\x30\x0c\x2e\x0e\x2c\x10\x18\x00\xff"
                   90202:             "\x07\x12\x12\x17\x00\x13\x10\x2c\x0e\x2e\x0c\x30\x0a"
                   90203:             "\x33\x06\x1d\x00\xff\x0d\x3b\x00\xff\x0f\x19\x04\x1e"
                   90204:             "\x00\xff\x02\x18\x05\x1e\x00\xff\x01\x18\x04\x1f\x00"
                   90205:             "\xff\x02\x17\x05\x1f\x00\xff\x01\x16\x06\x1f\x00\x16"
                   90206:             "\x05\x20\x00\xff\x01\x15\x06\x20\x00\x14\x07\x34\x06"
                   90207:             "\x21\x00\xff\x01\x13\x07\x21\x00\x12\x07\x22\x00\xff"
                   90208:             "\x01\x11\x08\x22\x00\x10\x08\x32\x09\x32\x08\x32\x09"
                   90209:             "\x31\x0a\x30\x0a\x30\x0b\x2f\x0b\x2f\x0b\x2f\x0c\x2e"
                   90210:             "\x0c\x2e\x0c\x2e\x0d\x2d\x0d\x2d\x0e\x2d\x0d\x2d\x0e"
                   90211:             "\x2d\x0d\x2d\x0e\x2d\x0e\x22\x05\x06\x0e\x20\x09\x03"
                   90212:             "\x0e\x20\x0b\x02\xff\x01\x0e\x1f\x0d\x01\xff\x05\x0e"
                   90213:             "\x1e\x0f\x00\x0e\x1f\x1c\x20\x0c\x02\x0d\x21\x0b\x02"
                   90214:             "\x0d\x22\x0a\x02\x0d\x27\x04\x04\x0c\x26\x05\x04\x0d"
                   90215:             "\x24\x05\x06\x0c\x23\x05\x07\x0c\x22\x06\x08\x0c\x20"
                   90216:             "\x06\x0a\x0b\x1e\x07\x0c\x0b\x1b\x08\x0e\x0b\x17\x09"
                   90217:             "\x11\x0c\x12\x0b\x13\x0e\x0a\x0e\x17\x22\x1b\x1e\x1f"
                   90218:             "\x18\x28\x0e\x19" }  },
1.1       albertel 90219:       /* --- pixel bitmap for cmr1200 char#63 ? --- */
                   90220:       {  63,30420,                      /* character number, location */
1.2       albertel 90221:         117, 9,    0, 9,      /* topleft row,col, and botleft row,col */
                   90222:           { 59,  117, 2,225, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   90223:             "\x15\x0f\x28\x18\x20\x1e\x1b\x23\x17\x0b\x0b\x0f\x14"
                   90224:             "\x09\x13\x0d\x11\x07\x18\x0c\x0f\x06\x1b\x0c\x0d\x06"
                   90225:             "\x1e\x0b\x0b\x05\x20\x0c\x09\x05\x22\x0c\x07\x05\x24"
                   90226:             "\x0c\x06\x04\x25\x0d\x04\x05\x25\x0d\x04\x04\x26\x0e"
                   90227:             "\x02\x0a\x22\x0d\x02\x0b\x21\x0d\x02\x0c\x20\x0d\x01"
                   90228:             "\x0e\x1f\x0e\x00\xff\x05\x0f\x1e\x0e\xff\x01\x01\x0d"
                   90229:             "\x1f\x0e\x02\x0b\x1f\x0e\x04\x09\x20\x0e\x06\x05\x22"
                   90230:             "\x0e\x2d\x0d\x2d\x0e\x2d\x0d\x2d\x0e\x2d\x0d\x2d\x0d"
                   90231:             "\x2d\x0d\x2d\x0d\x2d\x0d\x2d\x0d\x2d\x0c\x2f\x0b\x2f"
                   90232:             "\x0b\x2f\x0b\x30\x09\x31\x09\x11\x00\xff\x01\x20\x09"
                   90233:             "\x12\x00\x1f\x09\x32\x08\x32\x08\x33\x07\x33\x08\x33"
                   90234:             "\x07\x34\x06\x34\x07\x18\x00\xff\x01\x1c\x06\x19\x00"
                   90235:             "\xff\x01\x1b\x06\x1a\x00\xff\x01\x1b\x05\x1b\x00\xff"
                   90236:             "\x02\x1a\x05\x1c\x00\xff\x01\x1a\x04\x1d\x00\xff\x02"
                   90237:             "\x19\x05\x1d\x00\xff\x0e\x19\x04\x1e\x00\xff\x0d\x3b"
                   90238:             "\x00\x18\x06\x33\x0a\x30\x0c\x2e\x0e\x2c\x10\x18\x00"
                   90239:             "\xff\x07\x12\x12\x17\x00\x13\x10\x2c\x0e\x2e\x0c\x30"
                   90240:             "\x0a\x33\x06\x1d" }  },
1.1       albertel 90241:       /* --- pixel bitmap for cmr1200 char#64 @ --- */
                   90242:       {  64,39192,                      /* character number, location */
1.2       albertel 90243:         117, 9,   -2, 9,      /* topleft row,col, and botleft row,col */
                   90244:           { 110,  119, 2,601, (pixbyte *)/* width,ht, fmt,pixsz,map.. */
                   90245:             "\x30\x0e\x5a\x1a\x51\x20\x4b\x26\x46\x0f\x0c\x0f\x42"
                   90246:             "\x0c\x16\x0c\x3e\x0a\x1e\x0a\x3a\x09\x24\x09\x37\x08"
                   90247:             "\x28\x08\x34\x08\x2c\x08\x31\x07\x30\x07\x2f\x06\x34"
                   90248:             "\x06\x2c\x07\x36\x07\x29\x06\x3a\x06\x27\x06\x3c\x06"
                   90249:             "\x25\x06\x3e\x06\x23\x06\x40\x06\x21\x06\x42\x06\x1f"
                   90250:             "\x06\x44\x06\x1d\x06\x46\x06\x1b\x06\x48\x06\x1a\x05"
                   90251:             "\x4a\x05\x19\x05\x4c\x05\x17\x05\x21\x0b\x22\x05\x15"
                   90252:             "\x05\x1e\x12\x20\x05\x14\x05\x1c\x17\x1d\x05\x13\x05"
                   90253:             "\x1b\x1a\x1d\x05\x12\x04\x1a\x0d\x07\x0a\x1c\x04\x11"
                   90254:             "\x05\x19\x0b\x0d\x08\x1b\x05\x0f\x05\x18\x0b\x11\x07"
                   90255:             "\x1b\x05\x0e\x05\x17\x0b\x14\x07\x19\x05\x0d\x05\x17"
                   90256:             "\x0a\x18\x06\x19\x05\x0c\x04\x17\x0a\x1a\x05\x1a\x04"
                   90257:             "\x0b\x05\x16\x0a\x1c\x05\x19\x05\x0a\x05\x15\x0b\x1d"
                   90258:             "\x05\x18\x05\x0a\x04\x15\x0b\x1f\x05\x18\x04\x09\x05"
                   90259:             "\x14\x0b\x21\x05\x17\x05\x08\x04\x15\x0b\x21\x0e\x0f"
                   90260:             "\x04\x07\x05\x14\x0b\x23\x0e\x0e\x05\x06\x04\x14\x0c"
                   90261:             "\x24\x0d\x0f\x04\x06\x04\x14\x0b\x25\x0d\x0f\x04\x05"
                   90262:             "\x05\x13\x0c\x26\x0c\x0f\x05\x04\x05\x13\x0b\x27\x0c"
                   90263:             "\x0f\x05\x04\x04\x13\x0c\x27\x0c\x10\x04\x04\x04\x13"
                   90264:             "\x0b\x28\x0c\x10\x04\x03\x05\x12\x0c\x28\x0c\x10\x05"
                   90265:             "\x01\x00\xff\x01\x01\x04\x13\x0c\x28\x0c\x11\x04\x01"
                   90266:             "\x00\xff\x02\x01\x04\x12\x0c\x29\x0c\x11\x04\x01\x05"
                   90267:             "\x12\x0c\x29\x0c\x11\x09\x13\x0c\x29\x0c\x12\x04\x00"
                   90268:             "\xff\x0c\x04\x12\x0c\x2a\x0c\x12\x04\x00\x04\x13\x0c"
                   90269:             "\x29\x0c\x12\x09\x12\x0c\x29\x0c\x12\x04\xff\x02\x01"
                   90270:             "\x04\x12\x0c\x29\x0c\x12\x04\xff\x01\x01\x04\x13\x0c"
                   90271:             "\x28\x0c\x12\x04\x01\x05\x12\x0c\x28\x0c\x12\x03\x03"
                   90272:             "\x04\x13\x0b\x28\x0c\x11\x04\x03\x04\x13\x0c\x27\x0c"
                   90273:             "\x11\x04\x03\x05\x13\x0b\x27\x0c\x11\x04\x03\x05\x13"
                   90274:             "\x0c\x26\x0c\x11\x04\x04\x04\x14\x0b\x25\x0d\x11\x04"
                   90275:             "\x04\x04\x14\x0c\x24\x0d\x11\x04\x04\x05\x14\x0b\x23"
                   90276:             "\x0e\x11\x03\x06\x04\x15\x0b\x21\x0f\x10\x04\x06\x05"
                   90277:             "\x14\x0b\x21\x0f\x10\x04\x07\x04\x15\x0b\x1f\x10\x10"
                   90278:             "\x04\x07\x05\x15\x0b\x1d\x11\x0f\x04\x08\x05\x16\x0a"
                   90279:             "\x1c\x05\x01\x0c\x0f\x04\x09\x04\x17\x0a\x1a\x05\x03"
                   90280:             "\x0c\x0d\x05\x09\x05\x17\x0a\x18\x06\x03\x0c\x0d\x04"
                   90281:             "\x0b\x05\x17\x0b\x14\x07\x05\x0b\x0c\x05\x0b\x05\x18"
                   90282:             "\x0b\x11\x07\x07\x0c\x0a\x05\x0d\x05\x19\x0b\x0d\x08"
                   90283:             "\x09\x0b\x09\x05\x0f\x04\x1a\x0d\x07\x0a\x0b\x0c\x05"
                   90284:             "\x06\x10\x05\x1b\x1a\x0e\x15\x12\x05\x1c\x17\x11\x12"
                   90285:             "\x13\x05\x1e\x12\x16\x0f\x15\x05\x21\x0b\x1c\x09\x19"
                   90286:             "\x05\x6a\x05\x69\x06\x69\x06\x69\x06\x69\x06\x69\x06"
                   90287:             "\x69\x06\x69\x06\x4b\x0a\x14\x06\x48\x0c\x15\x07\x44"
                   90288:             "\x0e\x17\x06\x41\x0e\x1a\x07\x3c\x0f\x1d\x08\x37\x0f"
                   90289:             "\x22\x08\x32\x10\x25\x09\x2d\x10\x2a\x0a\x25\x12\x2f"
                   90290:             "\x0c\x1c\x14\x34\x0f\x10\x18\x39\x31\x40\x29\x48\x21"
                   90291:             "\x53\x13\x2b" }  },
1.1       albertel 90292:       /* --- pixel bitmap for cmr1200 char#65 A --- */
                   90293:       {  65,   35,                      /* character number, location */
1.2       albertel 90294:         119, 5,    0, 5,      /* topleft row,col, and botleft row,col */
                   90295:           { 114,  119, 2,448, (pixbyte *)/* width,ht, fmt,pixsz,map.. */
                   90296:             "\x37\x04\x6d\x06\x36\x00\xff\x02\x35\x08\x35\x00\xff"
                   90297:             "\x02\x34\x0a\x34\x00\xff\x02\x33\x0c\x33\x00\xff\x02"
                   90298:             "\x32\x0e\x32\x00\xff\x02\x31\x10\x31\x00\xff\x02\x30"
                   90299:             "\x12\x30\x00\xff\x02\x2f\x14\x2f\x00\x2e\x16\x2e\x00"
                   90300:             "\xff\x01\x2e\x05\x02\x0f\x2e\x00\x2d\x05\x03\x10\x2d"
                   90301:             "\x00\xff\x01\x2d\x05\x04\x0f\x2d\x00\x2c\x05\x05\x10"
                   90302:             "\x58\x05\x06\x0f\x57\x06\x06\x10\x56\x05\x07\x10\x56"
                   90303:             "\x05\x08\x0f\x55\x06\x08\x10\x2a\x00\xff\x01\x2a\x05"
                   90304:             "\x0a\x0f\x2a\x00\x29\x06\x0a\x10\x29\x00\xff\x01\x29"
                   90305:             "\x05\x0c\x0f\x29\x00\x28\x06\x0c\x10\x28\x00\xff\x01"
                   90306:             "\x28\x05\x0e\x0f\x28\x00\x27\x06\x0e\x10\x27\x00\xff"
                   90307:             "\x01\x27\x05\x10\x0f\x27\x00\x26\x06\x10\x10\x26\x00"
                   90308:             "\xff\x01\x26\x05\x12\x0f\x26\x00\x25\x06\x12\x10\x25"
                   90309:             "\x00\xff\x01\x25\x05\x14\x0f\x25\x00\x24\x06\x14\x10"
                   90310:             "\x24\x00\xff\x01\x24\x05\x16\x0f\x24\x00\x23\x05\x17"
                   90311:             "\x10\x23\x00\xff\x01\x23\x05\x18\x0f\x23\x00\x22\x05"
                   90312:             "\x19\x10\x44\x05\x1a\x0f\x43\x06\x1a\x10\x42\x05\x1b"
                   90313:             "\x10\x42\x05\x1c\x0f\x41\x06\x1c\x10\x20\x00\xff\x01"
                   90314:             "\x20\x05\x1e\x0f\x20\x00\x1f\x06\x1e\x10\x1f\x00\xff"
                   90315:             "\x01\x1f\x05\x20\x0f\x1f\x00\x1e\x06\x20\x10\x1e\x00"
                   90316:             "\xff\x01\x1e\x05\x22\x0f\x1e\x00\x1d\x06\x22\x10\x1d"
                   90317:             "\x00\xff\x01\x1d\x05\x24\x0f\x1d\x00\x1c\x06\x24\x10"
                   90318:             "\x1c\x00\xff\x01\x1c\x3a\x1c\x00\xff\x02\x1b\x3c\x1b"
                   90319:             "\x00\x1a\x06\x28\x10\x1a\x00\xff\x01\x1a\x05\x2a\x0f"
                   90320:             "\x1a\x00\x19\x05\x2b\x10\x32\x05\x2c\x0f\x31\x06\x2c"
                   90321:             "\x10\x30\x05\x2d\x10\x30\x05\x2e\x0f\x2f\x06\x2e\x10"
                   90322:             "\x17\x00\xff\x01\x17\x05\x30\x0f\x17\x00\x16\x06\x30"
                   90323:             "\x10\x16\x00\xff\x01\x16\x05\x32\x0f\x16\x00\x15\x06"
                   90324:             "\x32\x10\x15\x00\xff\x01\x15\x05\x34\x0f\x15\x00\x14"
                   90325:             "\x06\x34\x10\x14\x00\xff\x01\x14\x05\x36\x0f\x14\x00"
                   90326:             "\x13\x06\x36\x10\x26\x05\x38\x0f\x25\x06\x38\x0f\x25"
                   90327:             "\x06\x38\x10\x24\x06\x39\x0f\x23\x07\x39\x0f\x22\x08"
                   90328:             "\x39\x10\x20\x0a\x38\x10\x1f\x0b\x38\x11\x1d\x0d\x37"
                   90329:             "\x11\x1c\x0f\x35\x13\x19\x13\x32\x15\x14\x1a\x2c\x1b"
                   90330:             "\x0b\xff\x04\x24\x20\x2e" }  },
1.1       albertel 90331:       /* --- pixel bitmap for cmr1200 char#66 B --- */
                   90332:       {  66,  460,                      /* character number, location */
1.2       albertel 90333:         113, 6,    0, 6,      /* topleft row,col, and botleft row,col */
                   90334:           { 102,  113, 2,355, (pixbyte *)/* width,ht, fmt,pixsz,map.. */
                   90335:             "\x00\x44\x22\x48\x1e\x4c\x1a\x4e\x18\x50\x22\x16\x1f"
                   90336:             "\x11\x23\x11\x24\x10\x22\x0f\x27\x0f\x22\x0e\x28\x10"
                   90337:             "\x20\x0e\x2a\x0f\x1f\x0e\x2b\x0f\x1e\x0e\x2c\x0f\x1d"
                   90338:             "\x0e\x2d\x0f\x1c\x0e\x2d\x10\x1b\x0e\x2e\x0f\x1b\x0e"
                   90339:             "\x2f\x0f\x1a\x0e\x2f\x10\x19\x0e\x30\x0f\x08\x00\xff"
                   90340:             "\x01\x11\x0e\x30\x10\x07\x00\xff\x02\x11\x0e\x31\x10"
                   90341:             "\x06\x00\xff\x09\x11\x0e\x32\x10\x05\x00\xff\x02\x11"
                   90342:             "\x0e\x31\x10\x06\x00\xff\x01\x11\x0e\x30\x10\x07\x00"
                   90343:             "\xff\x01\x11\x0e\x2f\x10\x08\x00\x11\x0e\x2e\x10\x1a"
                   90344:             "\x0e\x2e\x0f\x1b\x0e\x2d\x0f\x1c\x0e\x2c\x0f\x1d\x0e"
                   90345:             "\x2b\x10\x1d\x0e\x2a\x0f\x1f\x0e\x29\x0f\x20\x0e\x28"
                   90346:             "\x0f\x21\x0e\x26\x0f\x23\x0e\x25\x0f\x24\x0e\x22\x10"
                   90347:             "\x26\x0e\x1f\x11\x28\x3b\x2b\x38\x2e\x3b\x2b\x3e\x28"
                   90348:             "\x0e\x23\x10\x25\x0e\x27\x0e\x23\x0e\x29\x0e\x21\x0e"
                   90349:             "\x2b\x0e\x1f\x0e\x2c\x0e\x1e\x0e\x2d\x0f\x1c\x0e\x2e"
                   90350:             "\x0f\x1b\x0e\x2f\x0f\x1a\x0e\x30\x0f\x19\x0e\x31\x0f"
                   90351:             "\x18\x0e\x32\x0f\x17\x0e\x32\x10\x16\x0e\x33\x0f\x16"
                   90352:             "\x0e\x33\x10\x04\x00\xff\x01\x11\x0e\x34\x10\x03\x00"
                   90353:             "\xff\x01\x11\x0e\x35\x10\x02\x00\x11\x0e\x35\x11\x01"
                   90354:             "\x00\xff\x02\x11\x0e\x36\x10\x01\x00\xff\x09\x11\x0e"
                   90355:             "\x36\x11\xff\x01\x11\x0e\x36\x10\x01\x00\x11\x0e\x35"
                   90356:             "\x11\x01\x00\xff\x01\x11\x0e\x35\x10\x02\x00\x11\x0e"
                   90357:             "\x34\x11\x13\x0e\x34\x10\x14\x0e\x33\x11\x14\x0e\x32"
                   90358:             "\x11\x15\x0e\x32\x10\x16\x0e\x31\x11\x16\x0e\x30\x11"
                   90359:             "\x17\x0e\x2f\x11\x18\x0e\x2e\x11\x19\x0e\x2d\x11\x1a"
                   90360:             "\x0e\x2c\x11\x1b\x0e\x2a\x12\x1b\x0f\x28\x12\x1c\x11"
                   90361:             "\x25\x13\x1a\x16\x20\x14\x10\x55\x11\x52\x14\x50\x16"
                   90362:             "\x4d\x19\x48\x1e" }  },
1.1       albertel 90363:       /* --- pixel bitmap for cmr1200 char#67 C --- */
                   90364:       {  67,  901,                      /* character number, location */
1.2       albertel 90365:         117, 9,   -4, 9,      /* topleft row,col, and botleft row,col */
                   90366:           { 101,  121, 2,385, (pixbyte *)/* width,ht, fmt,pixsz,map.. */
                   90367:             "\x32\x0f\x21\x03\x2d\x18\x1c\x04\x29\x1f\x18\x05\x26"
                   90368:             "\x24\x16\x05\x24\x28\x13\x06\x22\x14\x0b\x0d\x10\x07"
                   90369:             "\x20\x11\x14\x0a\x0f\x07\x1e\x10\x1a\x09\x0c\x08\x1c"
                   90370:             "\x10\x1e\x08\x0a\x09\x1b\x0f\x22\x07\x09\x09\x19\x0f"
                   90371:             "\x25\x07\x07\x0a\x18\x0e\x29\x06\x05\x0b\x17\x0e\x2b"
                   90372:             "\x06\x04\x0b\x16\x0d\x2e\x06\x02\x0c\x14\x0e\x30\x13"
                   90373:             "\x13\x0e\x32\x12\x12\x0e\x34\x11\x11\x0e\x36\x10\x10"
                   90374:             "\x0e\x37\x10\x0f\x0e\x39\x0f\x0f\x0d\x3b\x0e\x0e\x0d"
                   90375:             "\x3d\x0d\x0d\x0e\x3d\x0d\x0c\x0e\x3f\x0c\x0b\x0e\x40"
                   90376:             "\x0c\x0b\x0e\x41\x0b\x0a\x0e\x42\x0b\x09\x0f\x43\x0a"
                   90377:             "\x09\x0e\x44\x0a\x08\x0f\x45\x09\x08\x0e\x46\x09\xff"
                   90378:             "\x01\x07\x0f\x47\x08\x06\x0f\x48\x08\x06\x0f\x49\x07"
                   90379:             "\xff\x01\x05\x0f\x4a\x07\x04\x10\x4a\x07\x04\x10\x4b"
                   90380:             "\x06\x04\x0f\x4c\x06\xff\x02\x03\x10\x4c\x06\xff\x02"
                   90381:             "\x02\x10\x4e\x05\xff\x01\x01\x11\x4e\x05\xff\x01\x01"
                   90382:             "\x11\x53\x00\xff\x01\x01\x10\x54\xff\x10\x11\x54\x00"
                   90383:             "\xff\x01\x01\x10\x54\x00\xff\x03\x01\x11\x53\x00\xff"
                   90384:             "\x02\x02\x10\x4f\x04\xff\x02\x03\x10\x4e\x04\x04\x0f"
                   90385:             "\x4e\x04\x04\x10\x4d\x04\x04\x10\x4c\x05\xff\x01\x05"
                   90386:             "\x0f\x4c\x04\x01\x00\x06\x0f\x4b\x04\x07\x0f\x4a\x05"
                   90387:             "\x01\x00\xff\x01\x07\x0f\x49\x04\x02\x00\x08\x0e\x49"
                   90388:             "\x04\x0a\x0f\x47\x05\x0b\x0e\x47\x04\x0c\x0f\x45\x05"
                   90389:             "\x0d\x0e\x45\x04\x0f\x0e\x43\x05\x0f\x0e\x43\x04\x11"
                   90390:             "\x0e\x41\x05\x12\x0e\x40\x04\x14\x0d\x3f\x05\x15\x0d"
                   90391:             "\x3d\x05\x16\x0e\x3c\x05\x17\x0e\x3a\x05\x19\x0e\x38"
                   90392:             "\x05\x1b\x0e\x36\x05\x1d\x0e\x34\x06\x1e\x0e\x32\x06"
                   90393:             "\x21\x0d\x30\x06\x23\x0e\x2d\x06\x25\x0e\x2a\x07\x27"
                   90394:             "\x0f\x27\x07\x2a\x0f\x23\x08\x2c\x10\x1f\x08\x30\x10"
                   90395:             "\x1b\x09\x33\x11\x15\x0a\x37\x14\x0b\x0e\x3a\x29\x3e"
                   90396:             "\x25\x43\x20\x49\x18\x52\x0f\x24" }  },
1.1       albertel 90397:       /* --- pixel bitmap for cmr1200 char#68 D --- */
                   90398:       {  68, 1394,                      /* character number, location */
1.2       albertel 90399:         113, 5,    0, 5,      /* topleft row,col, and botleft row,col */
                   90400:           { 112,  113, 2,339, (pixbyte *)/* width,ht, fmt,pixsz,map.. */
                   90401:             "\x00\x44\x2c\x49\x27\x4c\x24\x4f\x21\x51\x2b\x17\x1c"
                   90402:             "\x14\x2c\x12\x22\x12\x2b\x10\x26\x10\x2b\x0f\x29\x0f"
                   90403:             "\x29\x0f\x2b\x0e\x28\x0f\x2c\x0e\x27\x0f\x2e\x0e\x25"
                   90404:             "\x0f\x2f\x0e\x24\x0f\x30\x0e\x23\x0f\x32\x0d\x22\x0f"
                   90405:             "\x33\x0d\x21\x0f\x34\x0d\x20\x0f\x35\x0d\x1f\x0f\x35"
                   90406:             "\x0e\x1e\x0f\x36\x0d\x1e\x0f\x37\x0d\x1d\x0f\x38\x0d"
                   90407:             "\x1c\x0f\x38\x0e\x1b\x0f\x39\x0d\x1b\x0f\x39\x0e\x1a"
                   90408:             "\x0f\x3a\x0d\x1a\x0f\x3a\x0e\x08\x00\xff\x01\x11\x0f"
                   90409:             "\x3b\x0e\x07\x00\xff\x01\x11\x0f\x3c\x0e\x06\x00\x11"
                   90410:             "\x0f\x3c\x0f\x05\x00\xff\x01\x11\x0f\x3d\x0e\x05\x00"
                   90411:             "\xff\x01\x11\x0f\x3d\x0f\x04\x00\xff\x03\x11\x0f\x3e"
                   90412:             "\x0f\x03\x00\x11\x0f\x3e\x10\x02\x00\xff\x02\x11\x0f"
                   90413:             "\x3f\x0f\x02\x00\xff\x04\x11\x0f\x3f\x10\x01\x00\xff"
                   90414:             "\x0f\x11\x0f\x3f\x11\xff\x05\x11\x0f\x3f\x10\x01\x00"
                   90415:             "\xff\x01\x11\x0f\x3f\x0f\x02\x00\xff\x01\x11\x0f\x3e"
                   90416:             "\x10\x02\x00\xff\x02\x11\x0f\x3e\x0f\x03\x00\xff\x01"
                   90417:             "\x11\x0f\x3d\x0f\x04\x00\xff\x01\x11\x0f\x3d\x0e\x05"
                   90418:             "\x00\x11\x0f\x3c\x0f\x05\x00\xff\x01\x11\x0f\x3c\x0e"
                   90419:             "\x06\x00\xff\x01\x11\x0f\x3b\x0e\x07\x00\x11\x0f\x3a"
                   90420:             "\x0e\x19\x0f\x3a\x0d\x1a\x0f\x39\x0e\x1a\x0f\x39\x0d"
                   90421:             "\x1b\x0f\x38\x0d\x1c\x0f\x37\x0e\x1c\x0f\x37\x0d\x1d"
                   90422:             "\x0f\x36\x0d\x1e\x0f\x35\x0d\x1f\x0f\x34\x0d\x20\x0f"
                   90423:             "\x33\x0d\x21\x0f\x32\x0d\x22\x0f\x31\x0d\x23\x0f\x30"
                   90424:             "\x0d\x24\x0f\x2e\x0e\x25\x0f\x2d\x0e\x26\x0f\x2b\x0f"
                   90425:             "\x27\x0f\x29\x0f\x28\x10\x27\x10\x28\x12\x23\x11\x27"
                   90426:             "\x17\x1c\x14\x1d\x51\x1f\x4f\x21\x4c\x24\x49\x27\x44"
                   90427:             "\x2c" }  },
1.1       albertel 90428:       /* --- pixel bitmap for cmr1200 char#69 E --- */
                   90429:       {  69, 1843,                      /* character number, location */
1.2       albertel 90430:         113, 5,    0, 5,      /* topleft row,col, and botleft row,col */
                   90431:           { 102,  113, 2,349, (pixbyte *)/* width,ht, fmt,pixsz,map.. */
                   90432:             "\xff\x03\x00\x5d\x09\x5e\x14\x17\x23\x18\x17\x12\x2b"
                   90433:             "\x12\x18\x10\x2f\x0f\x19\x0f\x31\x0d\x19\x0f\x33\x0b"
                   90434:             "\x19\x0f\x34\x0a\x19\x0f\x35\x0a\x18\x0f\x36\x09\x18"
                   90435:             "\x0f\x37\x08\x07\x00\xff\x01\x11\x0f\x38\x07\x07\x00"
                   90436:             "\xff\x01\x11\x0f\x39\x06\x07\x00\x11\x0f\x3a\x05\x18"
                   90437:             "\x0f\x3a\x06\x06\x00\xff\x02\x11\x0f\x3b\x05\x06\x00"
                   90438:             "\xff\x02\x11\x0f\x3c\x04\x06\x00\x11\x0f\x3c\x05\x05"
                   90439:             "\x00\xff\x05\x11\x0f\x3d\x04\x05\x00\xff\x03\x11\x0f"
                   90440:             "\x21\x04\x19\x04\x04\x00\xff\x04\x11\x0f\x21\x04\x21"
                   90441:             "\x00\xff\x02\x11\x0f\x20\x05\x21\x00\xff\x01\x11\x0f"
                   90442:             "\x1f\x06\x21\x00\x11\x0f\x1e\x07\x32\x0f\x1d\x08\x32"
                   90443:             "\x0f\x1c\x09\x32\x0f\x1a\x0b\x32\x0f\x16\x0f\x21\x00"
                   90444:             "\xff\x04\x11\x34\x21\x00\x11\x0f\x16\x0f\x32\x0f\x1a"
                   90445:             "\x0b\x32\x0f\x1c\x09\x32\x0f\x1d\x08\x32\x0f\x1e\x07"
                   90446:             "\x21\x00\xff\x01\x11\x0f\x1f\x06\x21\x00\xff\x02\x11"
                   90447:             "\x0f\x20\x05\x21\x00\xff\x02\x11\x0f\x21\x04\x21\x00"
                   90448:             "\xff\x02\x11\x0f\x21\x04\x1d\x04\xff\x02\x11\x0f\x21"
                   90449:             "\x04\x1c\x04\x01\x00\xff\x02\x11\x0f\x41\x04\x01\x00"
                   90450:             "\xff\x03\x11\x0f\x40\x04\x02\x00\xff\x01\x11\x0f\x3f"
                   90451:             "\x05\x02\x00\xff\x01\x11\x0f\x3f\x04\x03\x00\xff\x02"
                   90452:             "\x11\x0f\x3e\x05\x03\x00\x11\x0f\x3d\x06\x03\x00\xff"
                   90453:             "\x01\x11\x0f\x3d\x05\x04\x00\xff\x01\x11\x0f\x3c\x06"
                   90454:             "\x04\x00\xff\x01\x11\x0f\x3b\x07\x04\x00\x11\x0f\x3a"
                   90455:             "\x08\x15\x0f\x39\x08\x16\x0f\x38\x09\x16\x0f\x37\x0a"
                   90456:             "\x16\x0f\x36\x0b\x16\x0f\x35\x0c\x16\x0f\x33\x0e\x16"
                   90457:             "\x0f\x32\x0e\x16\x10\x2f\x11\x15\x12\x2b\x14\x12\x17"
                   90458:             "\x23\x1a\x06\xff\x01\x60\x06\xff\x02\x5f\x07" }  },
1.1       albertel 90459:       /* --- pixel bitmap for cmr1200 char#70 F --- */
                   90460:       {  70, 2309,                      /* character number, location */
1.2       albertel 90461:         113, 5,    0, 5,      /* topleft row,col, and botleft row,col */
                   90462:           { 95,  113, 2,231, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   90463:             "\xff\x03\x00\x5a\x05\x5b\x10\x17\x21\x17\x13\x12\x28"
                   90464:             "\x12\x14\x10\x2c\x0f\x15\x0f\x2e\x0d\x15\x0f\x30\x0b"
                   90465:             "\x15\x0f\x31\x0a\x15\x0f\x32\x0a\x14\x0f\x33\x09\x14"
                   90466:             "\x0f\x34\x08\x03\x00\xff\x01\x11\x0f\x35\x07\x03\x00"
                   90467:             "\xff\x01\x11\x0f\x36\x06\x03\x00\x11\x0f\x37\x05\x14"
                   90468:             "\x0f\x37\x06\x02\x00\xff\x02\x11\x0f\x38\x05\x02\x00"
                   90469:             "\xff\x02\x11\x0f\x39\x04\x02\x00\x11\x0f\x39\x05\x01"
                   90470:             "\x00\xff\x05\x11\x0f\x3a\x04\x01\x00\xff\x01\x11\x0f"
                   90471:             "\x3b\x04\xff\x01\x11\x0f\x1f\x04\x18\x04\xff\x06\x11"
                   90472:             "\x0f\x1f\x04\x1c\x00\xff\x02\x11\x0f\x1e\x05\x1c\x00"
                   90473:             "\xff\x01\x11\x0f\x1d\x06\x1c\x00\x11\x0f\x1c\x07\x2d"
                   90474:             "\x0f\x1b\x08\x2d\x0f\x1a\x09\x2d\x0f\x18\x0b\x2d\x0f"
                   90475:             "\x15\x0e\x1c\x00\xff\x04\x11\x32\x1c\x00\x11\x0f\x15"
                   90476:             "\x0e\x2d\x0f\x18\x0b\x2d\x0f\x1a\x09\x2d\x0f\x1b\x08"
                   90477:             "\x2d\x0f\x1c\x07\x1c\x00\xff\x01\x11\x0f\x1d\x06\x1c"
                   90478:             "\x00\xff\x02\x11\x0f\x1e\x05\x1c\x00\xff\x08\x11\x0f"
                   90479:             "\x1f\x04\x1c\x00\xff\x19\x11\x0f\x3f\x00\x11\x10\x4e"
                   90480:             "\x11\x4d\x13\x49\x1a\x39\xff\x04\x35\x2a" }  },
1.1       albertel 90481:       /* --- pixel bitmap for cmr1200 char#71 G --- */
                   90482:       {  71, 2687,                      /* character number, location */
1.2       albertel 90483:         117, 9,   -4, 9,      /* topleft row,col, and botleft row,col */
                   90484:           { 112,  121, 2,435, (pixbyte *)/* width,ht, fmt,pixsz,map.. */
                   90485:             "\x32\x0f\x21\x03\x38\x18\x1c\x04\x34\x1f\x18\x05\x31"
                   90486:             "\x24\x16\x05\x2f\x28\x13\x06\x2d\x14\x0b\x0d\x10\x07"
                   90487:             "\x2b\x11\x14\x0a\x0f\x07\x29\x10\x1a\x09\x0c\x08\x27"
                   90488:             "\x10\x1e\x08\x0a\x09\x26\x0f\x22\x07\x09\x09\x24\x0f"
                   90489:             "\x25\x07\x07\x0a\x23\x0e\x29\x06\x05\x0b\x22\x0e\x2b"
                   90490:             "\x06\x04\x0b\x21\x0d\x2e\x06\x02\x0c\x1f\x0e\x30\x13"
                   90491:             "\x1e\x0e\x32\x12\x1d\x0e\x34\x11\x1c\x0e\x36\x10\x1b"
                   90492:             "\x0e\x37\x10\x1a\x0e\x39\x0f\x1a\x0d\x3b\x0e\x19\x0d"
                   90493:             "\x3d\x0d\x18\x0e\x3d\x0d\x17\x0e\x3f\x0c\x16\x0e\x40"
                   90494:             "\x0c\x16\x0e\x41\x0b\x15\x0e\x42\x0b\x14\x0f\x43\x0a"
                   90495:             "\x14\x0e\x44\x0a\x13\x0f\x45\x09\x13\x0e\x46\x09\x0b"
                   90496:             "\x00\xff\x01\x07\x0f\x47\x08\x0b\x00\x06\x0f\x48\x08"
                   90497:             "\x11\x0f\x49\x07\x0b\x00\xff\x01\x05\x0f\x4a\x07\x0b"
                   90498:             "\x00\x04\x10\x4a\x07\x0f\x10\x4b\x06\x0f\x0f\x4c\x06"
                   90499:             "\x0b\x00\xff\x02\x03\x10\x4c\x06\x0b\x00\xff\x02\x02"
                   90500:             "\x10\x4e\x05\x0b\x00\xff\x01\x01\x11\x4e\x05\x0b\x00"
                   90501:             "\xff\x01\x01\x11\x5e\x00\xff\x01\x01\x10\x5f\xff\x10"
                   90502:             "\x11\x5f\x00\xff\x01\x01\x10\x5f\x00\xff\x03\x01\x11"
                   90503:             "\x2f\x2f\x02\x10\x2f\x2f\x02\x10\x3e\x18\x0a\x10\x42"
                   90504:             "\x12\x0d\x10\x42\x11\x0d\x10\x42\x10\x0e\x10\x43\x0f"
                   90505:             "\x0f\x0f\x43\x0f\x0b\x00\xff\x01\x04\x10\x42\x0f\x0b"
                   90506:             "\x00\x05\x0f\x42\x0f\x10\x10\x41\x0f\x0b\x00\xff\x01"
                   90507:             "\x06\x0f\x41\x0f\x0b\x00\xff\x01\x07\x0f\x40\x0f\x0b"
                   90508:             "\x00\x08\x0e\x40\x0f\x13\x0f\x3f\x0f\x14\x0e\x3f\x0f"
                   90509:             "\x14\x0f\x3e\x0f\x15\x0e\x3e\x0f\x16\x0e\x3d\x0f\x16"
                   90510:             "\x0f\x3c\x0f\x17\x0e\x3c\x0f\x18\x0e\x3b\x0f\x19\x0e"
                   90511:             "\x3a\x0f\x1a\x0d\x3a\x0f\x1a\x0e\x38\x10\x1b\x0e\x37"
                   90512:             "\x10\x1c\x0e\x36\x10\x1d\x0e\x34\x11\x1e\x0e\x32\x12"
                   90513:             "\x1f\x0e\x31\x12\x21\x0e\x2e\x06\x01\x0c\x22\x0e\x2c"
                   90514:             "\x06\x03\x0b\x23\x0f\x29\x07\x04\x0a\x24\x0f\x27\x07"
                   90515:             "\x06\x09\x26\x0f\x23\x08\x08\x08\x27\x10\x1f\x09\x0a"
                   90516:             "\x07\x29\x11\x1a\x09\x0d\x06\x2b\x12\x14\x0b\x0f\x05"
                   90517:             "\x2d\x15\x0b\x0e\x11\x04\x2f\x2a\x14\x03\x31\x26\x4d"
                   90518:             "\x20\x54\x19\x5c\x0f\x2f" }  },
1.1       albertel 90519:       /* --- pixel bitmap for cmr1200 char#72 H --- */
                   90520:       {  72, 3198,                      /* character number, location */
1.2       albertel 90521:         113, 5,    0, 5,      /* topleft row,col, and botleft row,col */
                   90522:           { 114,  113, 2,60, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   90523:             "\xff\x04\x00\x31\x10\x31\x0c\x19\x28\x19\x1b\x13\x2e"
                   90524:             "\x13\x1f\x11\x30\x11\x10\x00\xff\x2b\x11\x0f\x32\x0f"
                   90525:             "\x11\x00\xff\x04\x11\x50\x11\x00\xff\x2f\x11\x0f\x32"
                   90526:             "\x0f\x11\x00\x10\x11\x30\x11\x1f\x13\x2e\x13\x1b\x19"
                   90527:             "\x28\x19\x0c\xff\x04\x31\x10\x31" }  },
1.1       albertel 90528:       /* --- pixel bitmap for cmr1200 char#73 I --- */
                   90529:       {  73, 3652,                      /* character number, location */
1.2       albertel 90530:         113, 4,    0, 4,      /* topleft row,col, and botleft row,col */
                   90531:           { 51,  113, 2,36, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   90532:             "\xff\x04\x00\x33\x0d\x19\x1d\x13\x10\x00\xff\x01\x11"
                   90533:             "\x11\x11\x00\xff\x5e\x12\x0f\x12\x00\xff\x01\x11\x11"
                   90534:             "\x11\x00\x10\x13\x1d\x19\x0d\xff\x04\x33" }  },
1.1       albertel 90535:       /* --- pixel bitmap for cmr1200 char#74 J --- */
                   90536:       {  74, 3885,                      /* character number, location */
1.2       albertel 90537:         113, 7,   -4, 7,      /* topleft row,col, and botleft row,col */
                   90538:           { 70,  117, 2,125, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   90539:             "\xff\x04\x14\x32\x23\x1a\x30\x13\x35\x11\x35\x10\x0d"
                   90540:             "\x00\xff\x4b\x2a\x0f\x0d\x00\x06\x06\x1e\x0f\x11\x0a"
                   90541:             "\x1c\x0f\x10\x0c\x1b\x0f\x0f\x0e\x1a\x0f\x0e\x10\x19"
                   90542:             "\x0f\x0d\xff\x03\x12\x18\x0f\x0d\x12\x17\x10\x0d\xff"
                   90543:             "\x02\x12\x17\x0f\x0e\x11\x18\x0e\x0f\x11\x17\x0f\x10"
                   90544:             "\x0f\x18\x0f\x10\x0d\x19\x0f\x11\x0c\x1a\x0f\x12\x06"
                   90545:             "\x1f\x0e\x13\x07\x1d\x0e\x15\x06\x1c\x0e\x17\x06\x1b"
                   90546:             "\x0d\x19\x06\x19\x0e\x19\x07\x17\x0d\x1d\x07\x14\x0d"
                   90547:             "\x1f\x08\x11\x0d\x21\x09\x0e\x0c\x25\x0a\x08\x0e\x27"
                   90548:             "\x1d\x2b\x19\x30\x13\x36\x0c\x26" }  },
1.1       albertel 90549:       /* --- pixel bitmap for cmr1200 char#75 K --- */
                   90550:       {  75, 4182,                      /* character number, location */
1.2       albertel 90551:         113, 5,    0, 5,      /* topleft row,col, and botleft row,col */
                   90552:           { 116,  113, 2,462, (pixbyte *)/* width,ht, fmt,pixsz,map.. */
                   90553:             "\xff\x04\x00\x31\x1f\x22\x02\x00\x0c\x19\x2e\x1a\x16"
                   90554:             "\x13\x33\x14\x1b\x11\x35\x11\x1e\x0f\x37\x0d\x21\x0f"
                   90555:             "\x37\x0c\x22\x0f\x37\x0a\x24\x0f\x37\x09\x25\x0f\x37"
                   90556:             "\x07\x27\x0f\x36\x07\x28\x0f\x36\x06\x29\x0f\x35\x06"
                   90557:             "\x2a\x0f\x34\x06\x2b\x0f\x33\x06\x2c\x0f\x32\x06\x2d"
                   90558:             "\x0f\x30\x07\x2e\x0f\x2f\x07\x2f\x0f\x2e\x06\x31\x0f"
                   90559:             "\x2d\x06\x32\x0f\x2c\x06\x33\x0f\x2b\x06\x34\x0f\x2a"
                   90560:             "\x06\x35\x0f\x29\x06\x36\x0f\x28\x06\x37\x0f\x27\x06"
                   90561:             "\x38\x0f\x26\x06\x39\x0f\x25\x06\x3a\x0f\x24\x06\x3b"
                   90562:             "\x0f\x23\x06\x3c\x0f\x22\x06\x3d\x0f\x21\x06\x3e\x0f"
                   90563:             "\x20\x06\x3f\x0f\x1e\x07\x40\x0f\x1d\x07\x41\x0f\x1c"
                   90564:             "\x06\x43\x0f\x1b\x06\x44\x0f\x1a\x06\x45\x0f\x19\x06"
                   90565:             "\x46\x0f\x18\x06\x47\x0f\x17\x06\x48\x0f\x16\x08\x47"
                   90566:             "\x0f\x15\x09\x47\x0f\x14\x0b\x46\x0f\x13\x0d\x45\x0f"
                   90567:             "\x12\x0e\x45\x0f\x11\x10\x44\x0f\x10\x12\x43\x0f\x0f"
                   90568:             "\x13\x43\x0f\x0e\x15\x42\x0f\x0d\x17\x41\x0f\x0b\x07"
                   90569:             "\x02\x10\x41\x0f\x0a\x07\x03\x11\x40\x0f\x09\x06\x06"
                   90570:             "\x11\x3f\x0f\x08\x06\x08\x11\x3e\x0f\x07\x06\x09\x11"
                   90571:             "\x3e\x0f\x06\x06\x0b\x11\x3d\x0f\x05\x06\x0d\x11\x3c"
                   90572:             "\x0f\x04\x06\x0e\x11\x3c\x0f\x03\x06\x10\x11\x3b\x0f"
                   90573:             "\x02\x06\x12\x11\x3a\x0f\x01\x06\x13\x11\x3a\x15\x15"
                   90574:             "\x11\x39\x14\x17\x11\x38\x13\x18\x11\x38\x12\x1a\x11"
                   90575:             "\x37\x11\x1c\x11\x36\x10\x1d\x11\x36\x0f\x1f\x11\x24"
                   90576:             "\x00\xff\x01\x11\x0f\x20\x11\x23\x00\x11\x0f\x21\x11"
                   90577:             "\x22\x00\xff\x01\x11\x0f\x22\x11\x21\x00\x11\x0f\x23"
                   90578:             "\x11\x20\x00\xff\x01\x11\x0f\x24\x11\x1f\x00\x11\x0f"
                   90579:             "\x25\x11\x1e\x00\xff\x01\x11\x0f\x26\x11\x1d\x00\x11"
                   90580:             "\x0f\x27\x11\x1c\x00\xff\x01\x11\x0f\x28\x11\x1b\x00"
                   90581:             "\x11\x0f\x29\x11\x2b\x0f\x2a\x11\x2a\x0f\x2b\x10\x2a"
                   90582:             "\x0f\x2b\x11\x29\x0f\x2c\x11\x28\x0f\x2d\x10\x28\x0f"
                   90583:             "\x2d\x11\x27\x0f\x2e\x11\x15\x00\xff\x01\x11\x0f\x2f"
                   90584:             "\x11\x14\x00\x11\x0f\x30\x11\x13\x00\xff\x01\x11\x0f"
                   90585:             "\x31\x11\x12\x00\x11\x0f\x32\x11\x22\x0f\x32\x12\x21"
                   90586:             "\x0f\x33\x11\x21\x0f\x33\x12\x20\x0f\x33\x13\x1f\x0f"
                   90587:             "\x33\x14\x1d\x11\x31\x16\x1b\x13\x2f\x19\x16\x19\x2a"
                   90588:             "\x1e\x07\xff\x04\x31\x18\x2b" }  },
1.1       albertel 90589:       /* --- pixel bitmap for cmr1200 char#76 L --- */
                   90590:       {  76, 4663,                      /* character number, location */
1.2       albertel 90591:         113, 5,    0, 5,      /* topleft row,col, and botleft row,col */
                   90592:           { 91,  113, 2,145, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   90593:             "\xff\x04\x00\x35\x26\x00\x0c\x1a\x44\x13\x49\x11\x4b"
                   90594:             "\x10\x3a\x00\xff\x3c\x11\x0f\x3b\x00\xff\x03\x11\x0f"
                   90595:             "\x37\x04\x11\x0f\x36\x05\xff\x05\x11\x0f\x36\x04\x01"
                   90596:             "\x00\xff\x01\x11\x0f\x35\x05\x01\x00\xff\x02\x11\x0f"
                   90597:             "\x35\x04\x02\x00\xff\x02\x11\x0f\x34\x05\x02\x00\xff"
                   90598:             "\x02\x11\x0f\x33\x06\x02\x00\xff\x01\x11\x0f\x32\x06"
                   90599:             "\x03\x00\x11\x0f\x31\x07\x03\x00\xff\x01\x11\x0f\x30"
                   90600:             "\x08\x03\x00\x11\x0f\x2f\x09\x14\x0f\x2e\x0a\x14\x0f"
                   90601:             "\x2d\x0b\x14\x0f\x2c\x0b\x15\x0f\x2b\x0c\x15\x0f\x2a"
                   90602:             "\x0d\x15\x0f\x28\x0f\x15\x0f\x26\x11\x14\x10\x24\x13"
                   90603:             "\x13\x12\x20\x16\x10\x17\x1a\x1a\x04\x57\x04\xff\x03"
                   90604:             "\x56\x05" }  },
1.1       albertel 90605:       /* --- pixel bitmap for cmr1200 char#77 M --- */
                   90606:       {  77, 4977,                      /* character number, location */
1.2       albertel 90607:         113, 6,    0, 6,      /* topleft row,col, and botleft row,col */
                   90608:           { 139,  113, 2,522, (pixbyte *)/* width,ht, fmt,pixsz,map.. */
                   90609:             "\x00\x20\x4a\x21\x00\xff\x02\x21\x48\x22\x00\x22\x46"
                   90610:             "\x23\x0c\x16\x46\x17\x1b\x06\x01\x0d\x44\x04\x01\x10"
                   90611:             "\x1f\x05\x01\x0d\x44\x04\x01\x0f\x21\x04\x01\x0d\x44"
                   90612:             "\x04\x01\x0e\x11\x00\xff\x02\x11\x04\x02\x0d\x42\x04"
                   90613:             "\x02\x0e\x11\x00\xff\x01\x11\x04\x03\x0d\x40\x04\x03"
                   90614:             "\x0e\x11\x00\xff\x02\x11\x04\x04\x0d\x3e\x04\x04\x0e"
                   90615:             "\x11\x00\xff\x01\x11\x04\x05\x0d\x3c\x04\x05\x0e\x11"
                   90616:             "\x00\xff\x02\x11\x04\x06\x0d\x3a\x04\x06\x0e\x11\x00"
                   90617:             "\xff\x02\x11\x04\x07\x0d\x38\x04\x07\x0e\x11\x00\xff"
                   90618:             "\x01\x11\x04\x08\x0d\x36\x04\x08\x0e\x11\x00\xff\x02"
                   90619:             "\x11\x04\x09\x0d\x34\x04\x09\x0e\x11\x00\xff\x01\x11"
                   90620:             "\x04\x0a\x0d\x32\x04\x0a\x0e\x11\x00\xff\x02\x11\x04"
                   90621:             "\x0b\x0d\x30\x04\x0b\x0e\x11\x00\xff\x02\x11\x04\x0c"
                   90622:             "\x0d\x2e\x04\x0c\x0e\x11\x00\xff\x01\x11\x04\x0d\x0d"
                   90623:             "\x2c\x04\x0d\x0e\x11\x00\xff\x02\x11\x04\x0e\x0d\x2a"
                   90624:             "\x04\x0e\x0e\x11\x00\xff\x01\x11\x04\x0f\x0d\x28\x04"
                   90625:             "\x0f\x0e\x11\x00\xff\x02\x11\x04\x10\x0d\x26\x04\x10"
                   90626:             "\x0e\x11\x00\xff\x02\x11\x04\x11\x0d\x24\x04\x11\x0e"
                   90627:             "\x11\x00\xff\x01\x11\x04\x12\x0d\x22\x04\x12\x0e\x11"
                   90628:             "\x00\xff\x02\x11\x04\x13\x0d\x20\x04\x13\x0e\x11\x00"
                   90629:             "\xff\x01\x11\x04\x14\x0d\x1e\x04\x14\x0e\x11\x00\xff"
                   90630:             "\x02\x11\x04\x15\x0d\x1c\x04\x15\x0e\x11\x00\xff\x02"
                   90631:             "\x11\x04\x16\x0d\x1a\x04\x16\x0e\x11\x00\xff\x01\x11"
                   90632:             "\x04\x17\x0d\x18\x04\x17\x0e\x11\x00\xff\x02\x11\x04"
                   90633:             "\x18\x0d\x16\x04\x18\x0e\x11\x00\xff\x01\x11\x04\x19"
                   90634:             "\x0d\x14\x04\x19\x0e\x11\x00\xff\x02\x11\x04\x1a\x0d"
                   90635:             "\x12\x04\x1a\x0e\x11\x00\xff\x02\x11\x04\x1b\x0d\x10"
                   90636:             "\x04\x1b\x0e\x11\x00\xff\x01\x11\x04\x1c\x0d\x0e\x04"
                   90637:             "\x1c\x0e\x11\x00\xff\x02\x11\x04\x1d\x0d\x0c\x04\x1d"
                   90638:             "\x0e\x11\x00\xff\x01\x11\x04\x1e\x0d\x0a\x04\x1e\x0e"
                   90639:             "\x11\x00\xff\x02\x11\x04\x1f\x0d\x08\x04\x1f\x0e\x11"
                   90640:             "\x00\xff\x02\x11\x04\x20\x0d\x06\x04\x20\x0e\x11\x00"
                   90641:             "\xff\x01\x11\x04\x21\x0d\x04\x04\x21\x0e\x11\x00\xff"
                   90642:             "\x02\x11\x04\x22\x0d\x02\x04\x22\x0e\x11\x00\xff\x01"
                   90643:             "\x11\x04\x23\x11\x23\x0e\x11\x00\xff\x02\x11\x04\x24"
                   90644:             "\x0f\x24\x0e\x11\x00\xff\x02\x10\x06\x24\x0d\x25\x0e"
                   90645:             "\x11\x00\x0f\x08\x24\x0b\x26\x0e\x1f\x0a\x23\x0b\x26"
                   90646:             "\x0e\x1d\x0e\x22\x09\x26\x10\x1a\x12\x20\x09\x25\x12"
                   90647:             "\x16\x18\x1d\x09\x22\x18\x0c\xff\x01\x26\x17\x07\x17"
                   90648:             "\x30\x00\xff\x01\x26\x18\x05\x18\x30\x00\x26\x19\x03"
                   90649:             "\x19\x30" }  },
1.1       albertel 90650:       /* --- pixel bitmap for cmr1200 char#78 N --- */
                   90651:       {  78, 5842,                      /* character number, location */
1.2       albertel 90652:         113, 5,    0, 5,      /* topleft row,col, and botleft row,col */
                   90653:           { 114,  113, 2,609, (pixbyte *)/* width,ht, fmt,pixsz,map.. */
                   90654:             "\x00\x20\x2c\x47\x2b\x26\x00\xff\x01\x22\x2a\x26\x00"
                   90655:             "\x23\x29\x26\x0d\x17\x2f\x18\x18\x14\x31\x12\x1b\x14"
                   90656:             "\x33\x0e\x1d\x15\x34\x0a\x1f\x16\x34\x08\x20\x04\x01"
                   90657:             "\x11\x34\x08\x20\x04\x02\x11\x34\x06\x21\x04\x03\x11"
                   90658:             "\x33\x06\x21\x04\x03\x11\x34\x04\x22\x04\x04\x11\x33"
                   90659:             "\x04\x22\x04\x05\x11\x32\x04\x22\x04\x05\x12\x31\x04"
                   90660:             "\x22\x04\x06\x11\x31\x04\x22\x04\x07\x11\x30\x04\x11"
                   90661:             "\x00\xff\x01\x11\x04\x08\x11\x2f\x04\x11\x00\x11\x04"
                   90662:             "\x09\x11\x2e\x04\x11\x00\xff\x01\x11\x04\x0a\x11\x2d"
                   90663:             "\x04\x11\x00\x11\x04\x0b\x11\x2c\x04\x22\x04\x0c\x11"
                   90664:             "\x2b\x04\x22\x04\x0c\x12\x2a\x04\x22\x04\x0d\x11\x2a"
                   90665:             "\x04\x22\x04\x0e\x11\x29\x04\x22\x04\x0e\x12\x28\x04"
                   90666:             "\x22\x04\x0f\x11\x28\x04\x22\x04\x10\x11\x27\x04\x11"
                   90667:             "\x00\xff\x01\x11\x04\x11\x11\x26\x04\x11\x00\x11\x04"
                   90668:             "\x12\x11\x25\x04\x11\x00\xff\x01\x11\x04\x13\x11\x24"
                   90669:             "\x04\x11\x00\x11\x04\x14\x11\x23\x04\x22\x04\x15\x11"
                   90670:             "\x22\x04\x22\x04\x15\x12\x21\x04\x22\x04\x16\x11\x21"
                   90671:             "\x04\x22\x04\x17\x11\x20\x04\x11\x00\xff\x01\x11\x04"
                   90672:             "\x18\x11\x1f\x04\x11\x00\x11\x04\x19\x11\x1e\x04\x11"
                   90673:             "\x00\xff\x01\x11\x04\x1a\x11\x1d\x04\x11\x00\x11\x04"
                   90674:             "\x1b\x11\x1c\x04\x22\x04\x1c\x11\x1b\x04\x22\x04\x1c"
                   90675:             "\x12\x1a\x04\x22\x04\x1d\x11\x1a\x04\x22\x04\x1e\x11"
                   90676:             "\x19\x04\x11\x00\xff\x01\x11\x04\x1f\x11\x18\x04\x11"
                   90677:             "\x00\x11\x04\x20\x11\x17\x04\x11\x00\xff\x01\x11\x04"
                   90678:             "\x21\x11\x16\x04\x11\x00\x11\x04\x22\x11\x15\x04\x22"
                   90679:             "\x04\x23\x11\x14\x04\x22\x04\x23\x12\x13\x04\x22\x04"
                   90680:             "\x24\x11\x13\x04\x22\x04\x25\x11\x12\x04\x22\x04\x25"
                   90681:             "\x12\x11\x04\x22\x04\x26\x11\x11\x04\x22\x04\x27\x11"
                   90682:             "\x10\x04\x11\x00\xff\x01\x11\x04\x28\x11\x0f\x04\x11"
                   90683:             "\x00\x11\x04\x29\x11\x0e\x04\x11\x00\xff\x01\x11\x04"
                   90684:             "\x2a\x11\x0d\x04\x11\x00\x11\x04\x2b\x11\x0c\x04\x22"
                   90685:             "\x04\x2c\x11\x0b\x04\x22\x04\x2c\x12\x0a\x04\x22\x04"
                   90686:             "\x2d\x11\x0a\x04\x22\x04\x2e\x11\x09\x04\x11\x00\xff"
                   90687:             "\x01\x11\x04\x2f\x11\x08\x04\x11\x00\x11\x04\x30\x11"
                   90688:             "\x07\x04\x11\x00\xff\x01\x11\x04\x31\x11\x06\x04\x11"
                   90689:             "\x00\x11\x04\x32\x11\x05\x04\x22\x04\x33\x11\x04\x04"
                   90690:             "\x22\x04\x33\x12\x03\x04\x22\x04\x34\x11\x03\x04\x22"
                   90691:             "\x04\x35\x11\x02\x04\x11\x00\xff\x01\x11\x04\x36\x11"
                   90692:             "\x01\x04\x11\x00\x11\x04\x37\x15\x11\x00\xff\x01\x11"
                   90693:             "\x04\x38\x14\x11\x00\x11\x04\x39\x13\x11\x00\xff\x01"
                   90694:             "\x11\x04\x3a\x12\x11\x00\x11\x04\x3b\x11\x11\x00\xff"
                   90695:             "\x01\x11\x04\x3c\x10\x11\x00\x11\x04\x3d\x0f\x22\x04"
                   90696:             "\x3e\x0e\x11\x00\xff\x01\x11\x04\x3f\x0d\x11\x00\x10"
                   90697:             "\x06\x3f\x0c\x21\x06\x40\x0b\x20\x08\x3f\x0b\x20\x08"
                   90698:             "\x40\x0a\x1f\x0a\x40\x09\x1d\x0e\x3e\x09\x1b\x12\x3d"
                   90699:             "\x08\x18\x18\x3b\x07\x11\xff\x01\x26\x35\x06\x11\x26"
                   90700:             "\x36\x05\x11\x26\x37\x04\x11\x26\x38\x02\x12" }  },
1.1       albertel 90701:       /* --- pixel bitmap for cmr1200 char#79 O --- */
                   90702:       {  79, 6458,                      /* character number, location */
1.2       albertel 90703:         117, 9,   -4, 9,      /* topleft row,col, and botleft row,col */
                   90704:           { 110,  121, 2,369, (pixbyte *)/* width,ht, fmt,pixsz,map.. */
                   90705:             "\x30\x0e\x5b\x18\x52\x20\x4c\x24\x47\x10\x0a\x10\x42"
                   90706:             "\x0e\x12\x0e\x3e\x0d\x18\x0d\x3b\x0c\x1c\x0c\x38\x0c"
                   90707:             "\x20\x0c\x35\x0b\x24\x0b\x32\x0c\x26\x0c\x2f\x0c\x28"
                   90708:             "\x0c\x2d\x0c\x2a\x0c\x2a\x0c\x2e\x0c\x27\x0c\x30\x0c"
                   90709:             "\x25\x0d\x30\x0d\x23\x0d\x32\x0d\x21\x0d\x34\x0d\x20"
                   90710:             "\x0c\x36\x0c\x1f\x0c\x38\x0c\x1d\x0d\x38\x0d\x1b\x0d"
                   90711:             "\x3a\x0d\x0d\x00\xff\x01\x0c\x0d\x3c\x0d\x0c\x00\x0b"
                   90712:             "\x0d\x3e\x0d\x15\x0e\x3e\x0e\x14\x0d\x40\x0d\x13\x0e"
                   90713:             "\x40\x0e\x09\x00\xff\x01\x08\x0e\x42\x0e\x08\x00\xff"
                   90714:             "\x01\x07\x0e\x44\x0e\x07\x00\x06\x0f\x44\x0f\x0c\x0e"
                   90715:             "\x46\x0e\x06\x00\xff\x02\x05\x0f\x46\x0f\x05\x00\xff"
                   90716:             "\x01\x04\x0f\x48\x0f\x04\x00\xff\x01\x03\x10\x48\x10"
                   90717:             "\x03\x00\xff\x01\x03\x0f\x4a\x0f\x03\x00\xff\x03\x02"
                   90718:             "\x10\x4a\x10\x02\x00\x01\x11\x4a\x11\x01\x00\xff\x04"
                   90719:             "\x01\x10\x4c\x10\x01\xff\x0f\x11\x4c\x11\xff\x05\x01"
                   90720:             "\x11\x4a\x11\x01\x00\xff\x01\x02\x10\x4a\x10\x02\x00"
                   90721:             "\xff\x01\x02\x11\x48\x11\x02\x00\xff\x02\x03\x10\x48"
                   90722:             "\x10\x03\x00\xff\x02\x04\x10\x46\x10\x04\x00\xff\x01"
                   90723:             "\x05\x10\x44\x10\x05\x00\x06\x0f\x44\x0f\x0c\x10\x42"
                   90724:             "\x10\x06\x00\xff\x01\x07\x0f\x42\x0f\x07\x00\xff\x01"
                   90725:             "\x08\x0f\x40\x0f\x08\x00\xff\x01\x09\x0f\x3e\x0f\x09"
                   90726:             "\x00\x0a\x0f\x3c\x0f\x15\x0e\x3c\x0e\x16\x0f\x3a\x0f"
                   90727:             "\x17\x0f\x38\x0f\x19\x0e\x38\x0e\x1b\x0e\x36\x0e\x1c"
                   90728:             "\x0f\x34\x0f\x1d\x0e\x34\x0e\x1f\x0e\x32\x0e\x21\x0e"
                   90729:             "\x30\x0e\x23\x0e\x2e\x0e\x25\x0e\x2c\x0e\x27\x0e\x2a"
                   90730:             "\x0e\x29\x0e\x28\x0e\x2c\x0d\x26\x0d\x2f\x0e\x22\x0e"
                   90731:             "\x31\x0e\x20\x0e\x34\x0e\x1c\x0e\x37\x0f\x18\x0f\x3a"
                   90732:             "\x10\x12\x10\x3e\x12\x0a\x12\x42\x2a\x47\x24\x4c\x20"
                   90733:             "\x52\x18\x5b\x0e\x30" }  },
1.1       albertel 90734:       /* --- pixel bitmap for cmr1200 char#80 P --- */
                   90735:       {  80, 6998,                      /* character number, location */
1.2       albertel 90736:         113, 5,    0, 5,      /* topleft row,col, and botleft row,col */
                   90737:           { 98,  113, 2,209, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   90738:             "\x00\x42\x20\x47\x1b\x4b\x17\x4d\x15\x4f\x1f\x17\x1b"
                   90739:             "\x13\x20\x12\x21\x11\x1f\x10\x25\x10\x1e\x0f\x27\x0f"
                   90740:             "\x1d\x0f\x29\x0e\x1c\x0f\x2a\x0e\x1b\x0f\x2b\x0e\x1a"
                   90741:             "\x0f\x2c\x0e\x19\x0f\x2d\x0e\x18\x0f\x2e\x0e\x17\x0f"
                   90742:             "\x2e\x0f\x05\x00\xff\x01\x11\x0f\x2f\x0f\x04\x00\xff"
                   90743:             "\x01\x11\x0f\x30\x0f\x03\x00\xff\x01\x11\x0f\x30\x10"
                   90744:             "\x02\x00\x11\x0f\x30\x11\x01\x00\xff\x02\x11\x0f\x31"
                   90745:             "\x10\x01\x00\xff\x08\x11\x0f\x31\x11\xff\x02\x11\x0f"
                   90746:             "\x31\x10\x01\x00\x11\x0f\x30\x11\x01\x00\xff\x01\x11"
                   90747:             "\x0f\x30\x10\x02\x00\xff\x01\x11\x0f\x30\x0f\x03\x00"
                   90748:             "\x11\x0f\x2f\x0f\x15\x0f\x2f\x0e\x16\x0f\x2e\x0f\x16"
                   90749:             "\x0f\x2e\x0e\x17\x0f\x2d\x0e\x18\x0f\x2c\x0e\x19\x0f"
                   90750:             "\x2b\x0e\x1a\x0f\x2a\x0e\x1b\x0f\x28\x0f\x1c\x0f\x27"
                   90751:             "\x0e\x1e\x0f\x25\x0f\x1f\x0f\x22\x10\x21\x0f\x1d\x14"
                   90752:             "\x22\x3d\x25\x3b\x27\x38\x2a\x34\x1d\x00\xff\x2c\x11"
                   90753:             "\x0f\x42\x00\x10\x11\x50\x13\x4c\x19\x3d\xff\x04\x31"
                   90754:             "\x31" }  },
1.1       albertel 90755:       /* --- pixel bitmap for cmr1200 char#81 Q --- */
                   90756:       {  81, 7338,                      /* character number, location */
1.2       albertel 90757:         117, 9,  -32, 9,      /* topleft row,col, and botleft row,col */
                   90758:           { 111,  149, 2,559, (pixbyte *)/* width,ht, fmt,pixsz,map.. */
                   90759:             "\x30\x0e\x5c\x18\x53\x20\x4d\x24\x48\x10\x0a\x10\x43"
                   90760:             "\x0e\x12\x0e\x3f\x0d\x18\x0d\x3c\x0c\x1c\x0c\x39\x0c"
                   90761:             "\x20\x0c\x36\x0c\x22\x0c\x33\x0c\x26\x0c\x30\x0c\x28"
                   90762:             "\x0c\x2e\x0c\x2a\x0c\x2b\x0d\x2c\x0d\x28\x0d\x2e\x0d"
                   90763:             "\x26\x0d\x30\x0d\x24\x0d\x32\x0d\x12\x00\xff\x01\x10"
                   90764:             "\x0d\x34\x0d\x11\x00\x0f\x0d\x36\x0d\x1e\x0d\x38\x0d"
                   90765:             "\x1c\x0d\x3a\x0d\x1a\x0e\x3a\x0e\x19\x0d\x3c\x0d\x18"
                   90766:             "\x0e\x3c\x0e\x0c\x00\xff\x01\x0a\x0e\x3e\x0e\x0b\x00"
                   90767:             "\x09\x0e\x40\x0e\x12\x0f\x40\x0f\x11\x0e\x42\x0e\x09"
                   90768:             "\x00\xff\x01\x07\x0f\x42\x0f\x08\x00\xff\x01\x06\x0f"
                   90769:             "\x44\x0f\x07\x00\x05\x10\x44\x10\x06\x00\xff\x01\x05"
                   90770:             "\x0f\x46\x0f\x06\x00\x04\x10\x46\x10\x09\x0f\x48\x0f"
                   90771:             "\x05\x00\xff\x03\x03\x10\x48\x10\x04\x00\xff\x03\x02"
                   90772:             "\x10\x4a\x10\x03\x00\xff\x02\x01\x11\x4a\x11\x02\x00"
                   90773:             "\xff\x02\x01\x10\x4c\x10\x02\xff\x0f\x11\x4c\x11\x01"
                   90774:             "\x00\xff\x02\x01\x10\x4c\x10\x02\x00\xff\x02\x01\x11"
                   90775:             "\x4a\x11\x02\x00\xff\x03\x02\x10\x4a\x10\x03\x00\xff"
                   90776:             "\x02\x03\x10\x48\x10\x04\x00\x04\x0f\x48\x0f\x05\x00"
                   90777:             "\xff\x01\x04\x10\x46\x10\x05\x00\xff\x01\x05\x0f\x46"
                   90778:             "\x0f\x06\x00\xff\x01\x06\x0f\x44\x0f\x07\x00\x07\x0e"
                   90779:             "\x44\x0e\x0f\x0f\x42\x0f\x10\x0e\x42\x0e\x11\x0f\x1c"
                   90780:             "\x08\x1c\x0f\x12\x0e\x1a\x0d\x19\x0e\x13\x0e\x19\x10"
                   90781:             "\x17\x0e\x14\x0e\x16\x13\x15\x0e\x16\x0e\x14\x07\x07"
                   90782:             "\x07\x13\x0e\x17\x0e\x14\x05\x0b\x06\x12\x0e\x18\x0e"
                   90783:             "\x12\x05\x0e\x05\x10\x0e\x1a\x0d\x11\x06\x0f\x05\x0f"
                   90784:             "\x0d\x1c\x0d\x10\x05\x11\x05\x0d\x0d\x1d\x0e\x0f\x04"
                   90785:             "\x12\x05\x0c\x0e\x1e\x0d\x0e\x05\x13\x05\x0b\x0d\x20"
                   90786:             "\x0d\x0d\x05\x13\x06\x09\x0d\x22\x0d\x0c\x04\x15\x05"
                   90787:             "\x08\x0d\x24\x0d\x0b\x04\x15\x05\x07\x0d\x26\x0d\x0a"
                   90788:             "\x04\x16\x05\x05\x0d\x28\x0d\x09\x04\x16\x05\x04\x0d"
                   90789:             "\x2a\x0d\x08\x04\x16\x06\x02\x0d\x2d\x0c\x07\x05\x16"
                   90790:             "\x05\x01\x0c\x30\x0c\x06\x05\x16\x11\x32\x0d\x05\x04"
                   90791:             "\x16\x10\x35\x0c\x04\x05\x15\x0e\x38\x0d\x02\x06\x14"
                   90792:             "\x0d\x3b\x0d\x01\x05\x12\x0d\x3f\x12\x0e\x0e\x1e\x02"
                   90793:             "\x23\x12\x08\x11\x1e\x04\x25\x28\x1e\x04\x27\x27\x1d"
                   90794:             "\x04\x2b\x18\x04\x07\x1d\x04\x30\x0e\x09\x08\x1b\x05"
                   90795:             "\x47\x08\x1b\x05\x47\x09\x1a\x05\x47\x09\x19\x06\x47"
                   90796:             "\x0a\x18\x06\x48\x09\x17\x07\x48\x0a\x15\x07\x49\x0b"
                   90797:             "\x14\x07\x49\x0c\x12\x08\x49\x0d\x0f\x0a\x4a\x0d\x0d"
                   90798:             "\x0b\x4a\x10\x07\x0d\x02\x00\xff\x01\x49\x24\x02\x00"
                   90799:             "\x4a\x23\x02\x00\xff\x01\x4a\x22\x03\x00\xff\x01\x4b"
                   90800:             "\x20\x04\x00\xff\x01\x4c\x1e\x05\x00\x4d\x1c\x53\x1b"
                   90801:             "\x55\x19\x57\x17\x59\x15\x5c\x12\x5f\x0e\x63\x09\x10" }  },
1.1       albertel 90802:       /* --- pixel bitmap for cmr1200 char#82 R --- */
                   90803:       {  82, 8046,                      /* character number, location */
1.2       albertel 90804:         113, 5,   -4, 5,      /* topleft row,col, and botleft row,col */
                   90805:           { 116,  117, 2,391, (pixbyte *)/* width,ht, fmt,pixsz,map.. */
                   90806:             "\x00\x3c\x38\x42\x32\x45\x2f\x48\x2c\x4b\x35\x17\x16"
                   90807:             "\x14\x36\x12\x1d\x11\x35\x10\x21\x10\x34\x0f\x23\x0f"
                   90808:             "\x33\x0f\x25\x0f\x31\x0f\x26\x0f\x30\x0f\x28\x0e\x2f"
                   90809:             "\x0f\x29\x0e\x2e\x0f\x2a\x0e\x2d\x0f\x2a\x0f\x2c\x0f"
                   90810:             "\x2b\x0f\x1a\x00\xff\x01\x11\x0f\x2c\x0f\x19\x00\x11"
                   90811:             "\x0f\x2c\x10\x29\x0f\x2d\x0f\x18\x00\xff\x01\x11\x0f"
                   90812:             "\x2d\x10\x17\x00\x11\x0f\x2d\x11\x16\x00\xff\x01\x11"
                   90813:             "\x0f\x2e\x10\x16\x00\xff\x08\x11\x0f\x2e\x11\x15\x00"
                   90814:             "\xff\x01\x11\x0f\x2e\x10\x16\x00\x11\x0f\x2d\x11\x16"
                   90815:             "\x00\xff\x01\x11\x0f\x2d\x10\x17\x00\x11\x0f\x2d\x0f"
                   90816:             "\x29\x0f\x2c\x10\x29\x0f\x2c\x0f\x2a\x0f\x2c\x0e\x2b"
                   90817:             "\x0f\x2b\x0e\x2c\x0f\x2a\x0f\x2c\x0f\x2a\x0e\x2d\x0f"
                   90818:             "\x29\x0d\x2f\x0f\x28\x0d\x30\x0f\x26\x0e\x31\x0f\x25"
                   90819:             "\x0e\x32\x0f\x23\x0e\x34\x0f\x21\x0e\x36\x0f\x1e\x0f"
                   90820:             "\x38\x0f\x19\x12\x3a\x38\x3c\x35\x3f\x33\x41\x35\x3f"
                   90821:             "\x0f\x18\x10\x3d\x0f\x1b\x0f\x3b\x0f\x1e\x0e\x39\x0f"
                   90822:             "\x1f\x0e\x38\x0f\x21\x0d\x37\x0f\x22\x0e\x35\x0f\x23"
                   90823:             "\x0e\x34\x0f\x23\x0f\x33\x0f\x24\x0e\x33\x0f\x25\x0e"
                   90824:             "\x32\x0f\x25\x0f\x20\x00\xff\x01\x11\x0f\x26\x0f\x1f"
                   90825:             "\x00\x11\x0f\x27\x0e\x1f\x00\xff\x01\x11\x0f\x27\x0f"
                   90826:             "\x1e\x00\xff\x06\x11\x0f\x28\x0f\x1d\x00\xff\x06\x11"
                   90827:             "\x0f\x28\x10\x1c\x00\xff\x06\x11\x0f\x28\x11\x1b\x00"
                   90828:             "\x11\x0f\x28\x12\x17\x02\x01\x00\xff\x02\x11\x0f\x28"
                   90829:             "\x12\x16\x04\xff\x01\x11\x0f\x29\x11\x16\x04\x11\x0f"
                   90830:             "\x29\x12\x14\x05\x11\x0f\x2a\x11\x14\x05\x11\x0f\x2a"
                   90831:             "\x11\x14\x04\x12\x0f\x2b\x10\x14\x04\x11\x11\x2a\x11"
                   90832:             "\x12\x05\x10\x13\x2a\x10\x12\x05\x0d\x19\x28\x10\x10"
                   90833:             "\x05\x02\x31\x1c\x10\x0f\x06\x02\x31\x1d\x10\x0e\x05"
                   90834:             "\x03\x31\x1f\x0e\x0d\x05\x04\x31\x20\x0e\x0b\x06\x04"
                   90835:             "\x31\x22\x0e\x06\x08\x59\x1a\x5c\x16\x61\x12\x66\x0b"
                   90836:             "\x0c" }  },
1.1       albertel 90837:       /* --- pixel bitmap for cmr1200 char#83 S --- */
                   90838:       {  83, 8535,                      /* character number, location */
1.2       albertel 90839:         117, 9,   -4, 9,      /* topleft row,col, and botleft row,col */
                   90840:           { 73,  121, 2,389, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   90841:             "\x1a\x0d\x1a\x03\x1b\x15\x15\x04\x18\x1b\x11\x05\x16"
                   90842:             "\x1f\x0f\x05\x15\x22\x0c\x06\x13\x0e\x0a\x0d\x0b\x06"
                   90843:             "\x12\x0b\x12\x0b\x08\x07\x11\x0a\x17\x09\x06\x08\x0f"
                   90844:             "\x0b\x1a\x08\x05\x08\x0e\x0a\x1e\x07\x03\x09\x0d\x0a"
                   90845:             "\x20\x07\x01\x0a\x0d\x09\x23\x10\x0c\x09\x25\x0f\x0b"
                   90846:             "\x09\x27\x0e\x0a\x0a\x28\x0d\x0a\x09\x29\x0d\x09\x09"
                   90847:             "\x2b\x0c\x08\x0a\x2c\x0b\x08\x0a\x2d\x0a\x08\x09\x2e"
                   90848:             "\x0a\x05\x00\xff\x01\x02\x0a\x2f\x09\x05\x00\xff\x02"
                   90849:             "\x01\x0a\x31\x08\x05\x00\x01\x0a\x32\x07\x05\x0b\x32"
                   90850:             "\x07\x05\xff\x03\x0b\x33\x06\x05\xff\x02\x0c\x33\x05"
                   90851:             "\x05\xff\x01\x0d\x32\x05\x05\x0d\x33\x04\x05\x0e\x32"
                   90852:             "\x04\x05\x00\xff\x01\x01\x0e\x31\x04\x05\x00\x01\x0f"
                   90853:             "\x30\x04\x06\x10\x3a\x10\x39\x11\x38\x12\x38\x13\x36"
                   90854:             "\x15\x35\x18\x31\x1c\x2e\x1f\x2b\x22\x27\x26\x24\x29"
                   90855:             "\x21\x2b\x1f\x2d\x1d\x2e\x1c\x2e\x1c\x2f\x1b\x2f\x1c"
                   90856:             "\x2e\x1c\x2e\x1d\x2d\x1e\x2c\x20\x2a\x23\x27\x26\x24"
                   90857:             "\x29\x20\x2d\x1d\x30\x19\x34\x16\x36\x14\x36\x13\x38"
                   90858:             "\x11\x39\x11\x39\x10\x3a\x0f\x3b\x0f\x01\x00\xff\x01"
                   90859:             "\x3a\x0e\x01\x00\x3b\x0d\x02\x03\x37\x0e\x00\xff\x02"
                   90860:             "\x04\x38\x0d\x00\xff\x02\x04\x39\x0c\x00\x04\x3a\x0b"
                   90861:             "\x00\xff\x03\x05\x39\x0b\x00\x06\x38\x0b\x00\xff\x01"
                   90862:             "\x06\x38\x0a\x01\xff\x01\x07\x37\x0a\x01\x07\x36\x0a"
                   90863:             "\x02\xff\x01\x08\x35\x0a\x02\x09\x34\x09\x03\x0a\x32"
                   90864:             "\x0a\x03\x0a\x32\x09\x04\x0b\x30\x0a\x04\x0c\x2f\x09"
                   90865:             "\x05\x0d\x2d\x0a\x05\x0e\x2c\x09\x06\x0f\x2a\x09\x07"
                   90866:             "\x10\x28\x0a\x07\x11\x27\x09\x08\x0a\x01\x08\x24\x09"
                   90867:             "\x09\x09\x03\x09\x20\x0a\x0a\x08\x06\x09\x1d\x0a\x0b"
                   90868:             "\x08\x07\x0b\x18\x0b\x0c\x07\x09\x0d\x13\x0c\x0d\x06"
                   90869:             "\x0c\x10\x0b\x0d\x0f\x06\x0e\x25\x10\x05\x11\x21\x12"
                   90870:             "\x05\x14\x1c\x14\x04\x18\x17\x16\x03\x1e\x0e\x1a" }  },
1.1       albertel 90871:       /* --- pixel bitmap for cmr1200 char#84 T --- */
                   90872:       {  84, 8972,                      /* character number, location */
1.2       albertel 90873:         112, 6,    0, 6,      /* topleft row,col, and botleft row,col */
                   90874:           { 107,  112, 2,129, (pixbyte *)/* width,ht, fmt,pixsz,map.. */
                   90875:             "\xff\x04\x03\x65\x03\x00\x03\x13\x15\x15\x15\x13\x05"
                   90876:             "\x10\x1b\x11\x1b\x10\x04\x0d\x1f\x0f\x1f\x0d\x04\x0b"
                   90877:             "\x21\x0f\x21\x0b\x04\x0a\x22\x0f\x22\x0a\x04\x09\x23"
                   90878:             "\x0f\x23\x09\x04\x08\x24\x0f\x24\x08\x02\x00\xff\x01"
                   90879:             "\x02\x07\x25\x0f\x25\x07\x02\x00\xff\x01\x02\x06\x26"
                   90880:             "\x0f\x26\x06\x02\x00\xff\x02\x02\x05\x27\x0f\x27\x05"
                   90881:             "\x02\x00\xff\x04\x01\x05\x28\x0f\x28\x05\x01\x00\xff"
                   90882:             "\x06\x01\x04\x29\x0f\x29\x04\x01\xff\x05\x04\x2a\x0f"
                   90883:             "\x2a\x04\xff\x41\x2e\x0f\x2e\x00\xff\x01\x2d\x11\x2d"
                   90884:             "\x00\x2b\x15\x52\x1d\x27\x00\xff\x04\x16\x3f\x16" }  },
1.1       albertel 90885:       /* --- pixel bitmap for cmr1200 char#85 U --- */
                   90886:       {  85, 9336,                      /* character number, location */
1.2       albertel 90887:         113, 5,   -4, 5,      /* topleft row,col, and botleft row,col */
                   90888:           { 114,  117, 2,181, (pixbyte *)/* width,ht, fmt,pixsz,map.. */
                   90889:             "\xff\x04\x00\x31\x1a\x27\x0c\x19\x2d\x19\x16\x13\x33"
                   90890:             "\x13\x1a\x11\x36\x0f\x1d\x0f\x39\x0b\x0e\x00\xff\x01"
                   90891:             "\x11\x0f\x3a\x09\x0f\x00\xff\x01\x11\x0f\x3b\x07\x10"
                   90892:             "\x00\xff\x43\x11\x0f\x3c\x05\x11\x00\xff\x01\x11\x0f"
                   90893:             "\x3b\x06\x11\x00\xff\x02\x12\x0f\x3a\x05\x12\x00\x12"
                   90894:             "\x0f\x39\x06\x25\x0e\x39\x06\x25\x0e\x39\x05\x26\x0f"
                   90895:             "\x37\x06\x27\x0e\x37\x06\x27\x0e\x37\x05\x14\x00\xff"
                   90896:             "\x01\x15\x0e\x35\x06\x14\x00\x16\x0d\x34\x06\x2b\x0e"
                   90897:             "\x33\x06\x2c\x0d\x32\x06\x2d\x0e\x30\x07\x2e\x0d\x30"
                   90898:             "\x06\x30\x0d\x2e\x06\x31\x0d\x2d\x07\x32\x0d\x2b\x07"
                   90899:             "\x34\x0d\x29\x07\x36\x0d\x27\x07\x38\x0d\x25\x07\x3a"
                   90900:             "\x0d\x23\x08\x3b\x0d\x21\x08\x3d\x0d\x1e\x08\x41\x0d"
                   90901:             "\x1b\x08\x43\x0e\x16\x0a\x46\x0e\x12\x0b\x48\x11\x0a"
                   90902:             "\x0d\x4c\x24\x50\x21\x54\x1b\x5a\x16\x61\x0d\x30" }  },
1.1       albertel 90903:       /* --- pixel bitmap for cmr1200 char#86 V --- */
                   90904:       {  86, 9801,                      /* character number, location */
1.2       albertel 90905:         113, 3,   -4, 3,      /* topleft row,col, and botleft row,col */
                   90906:           { 118,  117, 2,433, (pixbyte *)/* width,ht, fmt,pixsz,map.. */
                   90907:             "\xff\x04\x00\x2d\x26\x23\x0a\x1c\x31\x19\x13\x15\x38"
                   90908:             "\x13\x17\x13\x3b\x0f\x1a\x11\x3d\x0c\x1c\x11\x3e\x0a"
                   90909:             "\x1e\x10\x3e\x09\x1f\x10\x3e\x08\x21\x0f\x3f\x07\x21"
                   90910:             "\x10\x3e\x06\x23\x0f\x3e\x06\x11\x00\xff\x01\x12\x10"
                   90911:             "\x3c\x06\x12\x00\x13\x0f\x3c\x05\x26\x10\x3b\x05\x26"
                   90912:             "\x10\x3a\x06\x27\x0f\x3a\x05\x28\x10\x38\x06\x29\x0f"
                   90913:             "\x38\x05\x2a\x10\x37\x05\x2a\x10\x36\x06\x2b\x0f\x36"
                   90914:             "\x05\x2c\x10\x35\x05\x16\x00\xff\x01\x17\x0f\x34\x05"
                   90915:             "\x17\x00\x17\x10\x32\x06\x2f\x0f\x32\x05\x30\x10\x31"
                   90916:             "\x05\x30\x10\x30\x06\x31\x0f\x30\x05\x32\x10\x2f\x05"
                   90917:             "\x19\x00\xff\x01\x1a\x0f\x2e\x05\x1a\x00\x1a\x10\x2c"
                   90918:             "\x06\x35\x0f\x2c\x05\x36\x10\x2b\x05\x36\x10\x2a\x06"
                   90919:             "\x37\x0f\x2a\x05\x38\x10\x28\x06\x1c\x00\xff\x01\x1d"
                   90920:             "\x0f\x28\x05\x1d\x00\x1d\x10\x26\x06\x3b\x0f\x26\x05"
                   90921:             "\x3c\x10\x25\x05\x3c\x10\x24\x06\x3d\x0f\x24\x05\x3e"
                   90922:             "\x10\x22\x06\x1f\x00\xff\x01\x20\x0f\x22\x05\x20\x00"
                   90923:             "\x20\x10\x20\x06\x41\x0f\x20\x05\x42\x10\x1f\x05\x42"
                   90924:             "\x10\x1e\x06\x43\x0f\x1e\x05\x44\x10\x1c\x06\x45\x0f"
                   90925:             "\x1c\x05\x46\x10\x1b\x05\x46\x10\x1a\x06\x47\x0f\x1a"
                   90926:             "\x05\x48\x10\x19\x05\x48\x10\x18\x06\x49\x0f\x18\x05"
                   90927:             "\x4a\x10\x16\x06\x4b\x0f\x16\x05\x4c\x10\x15\x05\x4c"
                   90928:             "\x10\x14\x06\x4d\x0f\x14\x05\x4e\x10\x13\x05\x27\x00"
                   90929:             "\xff\x01\x28\x0f\x12\x05\x28\x00\x28\x10\x10\x06\x51"
                   90930:             "\x0f\x10\x05\x52\x10\x0f\x05\x52\x10\x0e\x06\x53\x0f"
                   90931:             "\x0e\x05\x54\x10\x0c\x06\x2a\x00\xff\x01\x2b\x0f\x0c"
                   90932:             "\x05\x2b\x00\x2b\x10\x0a\x06\x57\x0f\x0a\x05\x58\x10"
                   90933:             "\x09\x05\x58\x10\x08\x06\x59\x0f\x08\x05\x5a\x10\x06"
                   90934:             "\x06\x2d\x00\xff\x01\x2e\x0f\x06\x05\x2e\x00\x2e\x10"
                   90935:             "\x04\x06\x5d\x0f\x04\x05\x5e\x10\x03\x05\x5e\x10\x02"
                   90936:             "\x06\x5f\x0f\x02\x05\x60\x16\x30\x00\xff\x02\x31\x14"
                   90937:             "\x31\x00\xff\x02\x32\x12\x32\x00\xff\x01\x33\x10\x33"
                   90938:             "\x00\xff\x02\x34\x0e\x34\x00\xff\x02\x35\x0c\x35\x00"
                   90939:             "\xff\x01\x36\x0a\x36\x00\xff\x02\x37\x08\x37\x00\x38"
                   90940:             "\x06\x71\x04\x39" }  },
1.1       albertel 90941:       /* --- pixel bitmap for cmr1200 char#87 W --- */
                   90942:       {  87,10232,                      /* character number, location */
1.2       albertel 90943:         113, 3,   -4, 3,      /* topleft row,col, and botleft row,col */
                   90944:           { 164,  117, 2,753, (pixbyte *)/* width,ht, fmt,pixsz,map.. */
                   90945:             "\xff\x04\x00\x2c\x11\x2c\x18\x23\x09\x1b\x22\x1c\x24"
                   90946:             "\x19\x11\x15\x28\x15\x2b\x13\x15\x12\x2b\x13\x2e\x0f"
                   90947:             "\x18\x11\x2c\x11\x31\x0c\x19\x10\x2d\x11\x32\x09\x1b"
                   90948:             "\x10\x2e\x10\x32\x09\x1c\x0f\x2e\x10\x33\x07\x1d\x10"
                   90949:             "\x2e\x0f\x33\x06\x1f\x0f\x2e\x0f\x33\x06\x1f\x0f\x2e"
                   90950:             "\x10\x32\x05\x20\x10\x2e\x0f\x32\x05\x21\x0f\x2e\x0f"
                   90951:             "\x32\x04\x22\x0f\x2e\x10\x31\x04\x22\x10\x2e\x0f\x31"
                   90952:             "\x04\x11\x00\xff\x01\x12\x0f\x2e\x0f\x30\x04\x12\x00"
                   90953:             "\x12\x10\x2e\x0f\x2f\x04\x12\x00\xff\x01\x13\x0f\x2e"
                   90954:             "\x0f\x2e\x04\x13\x00\x13\x0f\x2d\x11\x2d\x04\x13\x00"
                   90955:             "\xff\x01\x14\x0f\x2c\x11\x2c\x04\x14\x00\x14\x0f\x2b"
                   90956:             "\x13\x2b\x04\x14\x00\xff\x01\x15\x0f\x2a\x13\x2a\x04"
                   90957:             "\x15\x00\x15\x0f\x29\x15\x29\x04\x2a\x10\x28\x04\x02"
                   90958:             "\x0f\x28\x05\x2b\x0f\x28\x04\x02\x0f\x28\x04\x2c\x0f"
                   90959:             "\x27\x05\x02\x10\x27\x04\x2c\x10\x26\x04\x04\x0f\x26"
                   90960:             "\x05\x2d\x0f\x26\x04\x04\x0f\x26\x04\x2e\x0f\x25\x05"
                   90961:             "\x04\x10\x25\x04\x2e\x10\x24\x04\x06\x0f\x24\x05\x2f"
                   90962:             "\x0f\x24\x04\x06\x0f\x24\x04\x30\x0f\x23\x05\x06\x10"
                   90963:             "\x23\x04\x30\x10\x22\x04\x08\x0f\x22\x05\x31\x0f\x22"
                   90964:             "\x04\x08\x0f\x22\x04\x32\x0f\x21\x05\x08\x10\x21\x04"
                   90965:             "\x32\x10\x20\x04\x0a\x0f\x20\x05\x33\x0f\x20\x04\x0a"
                   90966:             "\x0f\x20\x04\x34\x0f\x1f\x05\x0a\x10\x1f\x04\x34\x10"
                   90967:             "\x1e\x04\x0c\x0f\x1e\x05\x35\x0f\x1e\x04\x0c\x0f\x1e"
                   90968:             "\x04\x36\x0f\x1d\x05\x0c\x10\x1d\x04\x36\x10\x1c\x04"
                   90969:             "\x0e\x0f\x1c\x05\x37\x0f\x1c\x04\x0e\x0f\x1c\x04\x38"
                   90970:             "\x0f\x1c\x04\x0e\x10\x1b\x04\x38\x10\x1a\x04\x10\x0f"
                   90971:             "\x1a\x05\x39\x0f\x1a\x04\x10\x0f\x1a\x04\x3a\x0f\x1a"
                   90972:             "\x04\x10\x10\x19\x04\x3a\x10\x18\x04\x12\x0f\x19\x04"
                   90973:             "\x3b\x0f\x18\x04\x12\x0f\x18\x04\x3c\x0f\x18\x04\x12"
                   90974:             "\x10\x17\x04\x3c\x10\x16\x04\x14\x0f\x17\x04\x1e\x00"
                   90975:             "\xff\x01\x1f\x0f\x16\x04\x14\x0f\x16\x04\x1f\x00\x1f"
                   90976:             "\x10\x14\x04\x16\x0f\x15\x04\x1f\x00\xff\x01\x20\x0f"
                   90977:             "\x14\x04\x16\x0f\x14\x04\x20\x00\x20\x0f\x13\x05\x16"
                   90978:             "\x10\x13\x04\x20\x00\xff\x01\x21\x0f\x12\x04\x18\x0f"
                   90979:             "\x12\x04\x21\x00\x21\x0f\x11\x05\x18\x10\x11\x04\x42"
                   90980:             "\x10\x10\x04\x1a\x0f\x10\x05\x43\x0f\x10\x04\x1a\x0f"
                   90981:             "\x10\x04\x44\x0f\x0f\x05\x1a\x10\x0f\x04\x44\x10\x0e"
                   90982:             "\x04\x1c\x0f\x0e\x05\x45\x0f\x0e\x04\x1c\x0f\x0e\x04"
                   90983:             "\x46\x0f\x0d\x05\x1c\x10\x0d\x04\x46\x10\x0c\x04\x1e"
                   90984:             "\x0f\x0c\x05\x47\x0f\x0c\x04\x1e\x0f\x0c\x04\x48\x0f"
                   90985:             "\x0b\x05\x1e\x10\x0b\x04\x48\x10\x0a\x04\x20\x0f\x0a"
                   90986:             "\x05\x49\x0f\x0a\x04\x20\x0f\x0a\x04\x4a\x0f\x09\x05"
                   90987:             "\x20\x10\x09\x04\x4a\x10\x08\x04\x22\x0f\x08\x05\x4b"
                   90988:             "\x0f\x08\x04\x22\x0f\x08\x04\x4c\x0f\x07\x05\x22\x10"
                   90989:             "\x07\x04\x4c\x10\x06\x04\x24\x0f\x06\x05\x4d\x0f\x06"
                   90990:             "\x04\x24\x0f\x06\x04\x4e\x0f\x05\x05\x24\x10\x05\x04"
                   90991:             "\x4e\x10\x04\x04\x26\x0f\x04\x05\x4f\x0f\x04\x04\x26"
                   90992:             "\x0f\x04\x04\x50\x0f\x04\x04\x26\x10\x03\x04\x50\x10"
                   90993:             "\x02\x04\x28\x0f\x02\x05\x51\x0f\x02\x04\x28\x0f\x02"
                   90994:             "\x04\x52\x0f\x02\x04\x28\x10\x01\x04\x52\x14\x2a\x0f"
                   90995:             "\x01\x04\x29\x00\xff\x01\x2a\x13\x2a\x13\x2a\x00\x2a"
                   90996:             "\x12\x2c\x12\x2a\x00\xff\x01\x2b\x11\x2c\x11\x2b\x00"
                   90997:             "\x2b\x10\x2e\x10\x2b\x00\xff\x01\x2c\x0f\x2e\x0f\x2c"
                   90998:             "\x00\x2c\x0e\x30\x0e\x2c\x00\xff\x02\x2d\x0d\x30\x0d"
                   90999:             "\x2d\x00\xff\x02\x2e\x0b\x32\x0b\x2e\x00\x2e\x0a\x34"
                   91000:             "\x0a\x2e\x00\xff\x01\x2f\x09\x34\x09\x2f\x00\x2f\x08"
                   91001:             "\x36\x08\x2f\x00\xff\x01\x30\x07\x36\x07\x30\x00\x30"
                   91002:             "\x06\x38\x06\x61\x05\x38\x05\x63\x03\x3a\x03\x32" }  },
1.1       albertel 91003:       /* --- pixel bitmap for cmr1200 char#88 X --- */
                   91004:       {  88,11015,                      /* character number, location */
1.2       albertel 91005:         113, 4,    0, 4,      /* topleft row,col, and botleft row,col */
                   91006:           { 116,  113, 2,412, (pixbyte *)/* width,ht, fmt,pixsz,map.. */
                   91007:             "\xff\x04\x02\x2e\x15\x28\x07\x00\x0d\x1f\x1d\x1d\x1e"
                   91008:             "\x19\x22\x17\x23\x16\x26\x12\x27\x14\x28\x0f\x2a\x13"
                   91009:             "\x29\x0d\x2c\x12\x29\x0b\x2f\x11\x29\x0a\x31\x11\x29"
                   91010:             "\x08\x32\x11\x29\x07\x34\x11\x27\x07\x1e\x00\xff\x01"
                   91011:             "\x18\x11\x26\x06\x1f\x00\x19\x11\x24\x06\x3a\x11\x22"
                   91012:             "\x06\x3b\x11\x21\x07\x3c\x11\x20\x06\x3e\x10\x1f\x06"
                   91013:             "\x3f\x11\x1d\x07\x40\x11\x1c\x06\x42\x10\x1b\x06\x43"
                   91014:             "\x11\x19\x06\x45\x11\x18\x06\x46\x10\x17\x06\x47\x11"
                   91015:             "\x15\x06\x49\x11\x14\x06\x4a\x10\x13\x06\x4b\x11\x11"
                   91016:             "\x06\x4d\x11\x10\x06\x4e\x10\x0f\x06\x4f\x11\x0d\x06"
                   91017:             "\x51\x11\x0c\x06\x52\x10\x0b\x06\x53\x11\x09\x06\x55"
                   91018:             "\x11\x08\x06\x55\x11\x07\x06\x57\x11\x05\x06\x59\x11"
                   91019:             "\x04\x06\x59\x11\x03\x06\x5b\x11\x01\x06\x5d\x17\x5d"
                   91020:             "\x16\x5f\x14\x61\x13\x61\x12\x63\x11\x35\x00\xff\x01"
                   91021:             "\x2f\x11\x34\x00\x30\x11\x33\x00\xff\x01\x31\x11\x32"
                   91022:             "\x00\x32\x11\x31\x00\xff\x01\x33\x11\x30\x00\x32\x13"
                   91023:             "\x2f\x00\xff\x01\x31\x15\x2e\x00\x30\x17\x5c\x07\x01"
                   91024:             "\x11\x5b\x06\x02\x11\x5a\x06\x04\x11\x2b\x00\xff\x01"
                   91025:             "\x2d\x06\x06\x11\x2a\x00\x2c\x06\x08\x11\x29\x00\xff"
                   91026:             "\x01\x2b\x06\x0a\x11\x28\x00\x2a\x06\x0c\x11\x50\x06"
                   91027:             "\x0e\x10\x50\x06\x0e\x11\x4e\x06\x10\x11\x4c\x06\x12"
                   91028:             "\x10\x4c\x06\x12\x11\x4a\x06\x14\x11\x48\x06\x16\x10"
                   91029:             "\x48\x06\x16\x11\x46\x06\x18\x11\x44\x06\x1a\x10\x44"
                   91030:             "\x06\x1a\x11\x42\x06\x1c\x11\x40\x06\x1e\x10\x40\x06"
                   91031:             "\x1e\x11\x3e\x06\x20\x11\x3c\x06\x22\x10\x3c\x06\x22"
                   91032:             "\x11\x3a\x06\x24\x11\x38\x06\x26\x10\x38\x06\x26\x11"
                   91033:             "\x36\x06\x28\x11\x34\x06\x29\x11\x34\x06\x2a\x11\x32"
                   91034:             "\x06\x2c\x11\x30\x06\x2d\x11\x30\x06\x2e\x11\x2e\x06"
                   91035:             "\x30\x11\x2c\x07\x30\x11\x2b\x07\x32\x11\x29\x08\x33"
                   91036:             "\x11\x27\x0a\x32\x11\x26\x0b\x33\x11\x23\x0d\x33\x12"
                   91037:             "\x21\x0f\x31\x14\x1e\x12\x2f\x16\x1a\x17\x2b\x19\x15"
                   91038:             "\x1d\x26\x20\x0a\xff\x04\x28\x1e\x2e" }  },
1.1       albertel 91039:       /* --- pixel bitmap for cmr1200 char#89 Y --- */
                   91040:       {  89,11438,                      /* character number, location */
1.2       albertel 91041:         113, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   91042:           { 120,  113, 2,261, (pixbyte *)/* width,ht, fmt,pixsz,map.. */
                   91043:             "\xff\x04\x00\x2e\x27\x23\x0a\x1d\x32\x19\x13\x17\x37"
                   91044:             "\x14\x18\x14\x3a\x0f\x1c\x13\x3a\x0d\x1f\x12\x3b\x0b"
                   91045:             "\x20\x12\x3b\x0a\x22\x11\x3b\x09\x24\x11\x3a\x08\x26"
                   91046:             "\x11\x39\x07\x27\x11\x39\x06\x29\x11\x37\x07\x29\x11"
                   91047:             "\x37\x06\x2b\x11\x35\x06\x2d\x11\x34\x05\x2e\x11\x33"
                   91048:             "\x06\x2f\x11\x31\x06\x31\x11\x30\x06\x31\x11\x2f\x06"
                   91049:             "\x33\x11\x2e\x05\x34\x11\x2d\x06\x35\x11\x2b\x06\x37"
                   91050:             "\x11\x2a\x06\x37\x11\x29\x06\x39\x11\x28\x05\x3a\x11"
                   91051:             "\x27\x06\x3b\x11\x25\x06\x3d\x11\x24\x06\x3d\x11\x23"
                   91052:             "\x06\x3f\x11\x22\x05\x41\x11\x20\x06\x41\x11\x1f\x06"
                   91053:             "\x43\x11\x1e\x06\x43\x11\x1d\x06\x45\x11\x1b\x06\x47"
                   91054:             "\x11\x1a\x06\x47\x11\x19\x06\x49\x11\x18\x06\x49\x11"
                   91055:             "\x17\x06\x4b\x11\x15\x06\x4d\x11\x14\x06\x4d\x11\x13"
                   91056:             "\x06\x4f\x11\x12\x05\x51\x11\x10\x06\x51\x11\x0f\x06"
                   91057:             "\x53\x11\x0e\x06\x53\x11\x0d\x06\x55\x11\x0c\x05\x57"
                   91058:             "\x11\x0a\x06\x57\x11\x09\x06\x59\x11\x08\x06\x59\x12"
                   91059:             "\x06\x06\x5b\x11\x06\x05\x5d\x11\x04\x06\x5d\x11\x03"
                   91060:             "\x06\x5f\x11\x02\x06\x60\x17\x61\x16\x63\x15\x63\x14"
                   91061:             "\x65\x13\x66\x11\x67\x10\x34\x00\xff\x25\x35\x0f\x34"
                   91062:             "\x00\x34\x11\x66\x13\x62\x19\x2f\x00\xff\x04\x24\x31"
                   91063:             "\x23" }  },
1.1       albertel 91064:       /* --- pixel bitmap for cmr1200 char#90 Z --- */
                   91065:       {  90,11791,                      /* character number, location */
1.2       albertel 91066:         113, 9,    0, 9,      /* topleft row,col, and botleft row,col */
                   91067:           { 83,  113, 2,415, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   91068:             "\x04\x4d\x02\x00\xff\x03\x04\x4e\x01\x00\x04\x1b\x21"
                   91069:             "\x11\x06\x16\x26\x11\x06\x12\x29\x11\x07\x10\x2a\x11"
                   91070:             "\x07\x0f\x2c\x11\x07\x0e\x2c\x11\x08\x0d\x2d\x11\x08"
                   91071:             "\x0b\x2e\x11\x06\x00\xff\x01\x03\x0a\x2e\x11\x07\x00"
                   91072:             "\x03\x09\x2e\x11\x08\x00\xff\x01\x03\x08\x2e\x11\x09"
                   91073:             "\x00\xff\x01\x03\x07\x2e\x11\x0a\x00\x03\x06\x2e\x11"
                   91074:             "\x0e\x06\x2d\x11\x0f\x05\x2e\x11\x0f\x05\x2d\x11\x10"
                   91075:             "\x05\x2d\x10\x11\x05\x2c\x11\x0e\x00\xff\x01\x03\x04"
                   91076:             "\x2c\x11\x0f\x00\x02\x05\x2b\x11\x10\x00\xff\x01\x02"
                   91077:             "\x05\x2a\x11\x11\x00\x02\x04\x2a\x11\x14\x04\x2a\x10"
                   91078:             "\x15\x04\x29\x11\x13\x00\xff\x01\x02\x04\x28\x11\x14"
                   91079:             "\x00\x02\x04\x27\x11\x15\x00\xff\x01\x2c\x11\x16\x00"
                   91080:             "\x2b\x11\x42\x10\x42\x11\x18\x00\xff\x01\x29\x11\x19"
                   91081:             "\x00\x28\x11\x1a\x00\xff\x01\x27\x11\x1b\x00\x26\x11"
                   91082:             "\x42\x10\x42\x11\x1d\x00\xff\x01\x24\x11\x1e\x00\x23"
                   91083:             "\x11\x1f\x00\xff\x01\x22\x11\x20\x00\x21\x11\x42\x10"
                   91084:             "\x42\x11\x22\x00\xff\x01\x1f\x11\x23\x00\x1e\x11\x24"
                   91085:             "\x00\xff\x01\x1d\x11\x25\x00\x1c\x11\x42\x10\x42\x11"
                   91086:             "\x27\x00\xff\x01\x1a\x11\x28\x00\x19\x11\x29\x00\xff"
                   91087:             "\x01\x18\x11\x26\x04\x17\x11\x27\x04\x17\x10\x28\x04"
                   91088:             "\x16\x11\x28\x04\xff\x01\x15\x11\x29\x04\x14\x11\x29"
                   91089:             "\x04\x01\x00\xff\x01\x13\x11\x2a\x04\x01\x00\x12\x11"
                   91090:             "\x2b\x04\x13\x10\x2c\x04\x12\x11\x2c\x04\x11\x11\x2d"
                   91091:             "\x04\x11\x11\x2c\x05\x10\x11\x2d\x05\x01\x00\xff\x01"
                   91092:             "\x0e\x11\x2e\x05\x01\x00\x0d\x11\x2f\x05\x0e\x10\x2f"
                   91093:             "\x06\x0d\x11\x2f\x06\x0c\x11\x30\x06\x0c\x11\x2f\x06"
                   91094:             "\x0c\x11\x30\x06\x02\x00\xff\x01\x09\x11\x30\x07\x02"
                   91095:             "\x00\xff\x01\x08\x11\x30\x08\x02\x00\x07\x11\x30\x09"
                   91096:             "\x02\x00\xff\x01\x06\x11\x30\x0a\x02\x00\x05\x11\x30"
                   91097:             "\x0b\x06\x11\x2f\x0d\x06\x11\x2e\x0e\x05\x11\x2d\x10"
                   91098:             "\x05\x11\x2c\x11\x04\x11\x2a\x14\x03\x11\x28\x16\x04"
                   91099:             "\x11\x22\x1c\x03\xff\x03\x50\x03\x00\x01\x4f\x03" }  },
1.1       albertel 91100:       /* --- pixel bitmap for cmr1200 char#91 [ --- */
                   91101:       {  91,39944,                      /* character number, location */
1.2       albertel 91102:         125,18,  -42,18,      /* topleft row,col, and botleft row,col */
                   91103:           { 24,  167, 2,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   91104:             "\xff\x06\x00\x18\x00\xff\x98\x07\x11\xff\x06\x18" }  },
1.1       albertel 91105:       /* --- pixel bitmap for cmr1200 char#92 (noname) --- */
                   91106:       {  92,44703,                      /* character number, location */
1.2       albertel 91107:         115,25,   65,25,      /* topleft row,col, and botleft row,col */
                   91108:           { 52,   50, 3,297, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   91109:             "\xe2\xe0\xe0\x22\xe0\x34\xe0\xe4\xe0\x15\xe0\xd5\xe6"
                   91110:             "\xe0\xc6\xd6\xe0\xc6\xd6\xe0\xc6\xe5\xe0\xd5\xe5\xe0"
                   91111:             "\xd5\xe5\xe0\xd5\xe0\x14\xe0\xe4\xe0\x15\xe0\xd5\x90"
                   91112:             "\xf1\x55\xe0\xd5\xa0\x45\xe0\xd5\xe0\x14\xe0\xe4\xc0"
                   91113:             "\xf1\x35\xe0\xd5\xc0\x34\xe0\xe4\xe0\x15\xe0\xd5\xd0"
                   91114:             "\xf1\x24\xe0\xe4\xe0\x15\xe0\xd5\xe0\xf3\x14\xe0\xe4"
                   91115:             "\xe0\x15\xe0\xd5\xe0\x1f\x44\xe0\xe4\xe0\x24\x46\xe0"
                   91116:             "\x44\x46\x64\x2a\xe0\x24\x2a\x44\x1c\xe0\x14\x1c\x3e"
                   91117:             "\x04\xee\x04\x2f\x1e\x05\xde\x05\x1e\x06\xce\x06\xf2"
                   91118:             "\x1e\x05\xde\x05\xf1\x2e\x04\xee\x04\x2e\x03\xe0\x1e"
                   91119:             "\x03\x4e\x02\xe0\x2e\x02\x5e\xe0\x4e\x7c\xe0\x6c\x9a"
                   91120:             "\xe0\x8a\xc6\xe0\xc6\x60" }  },
1.1       albertel 91121:       /* --- pixel bitmap for cmr1200 char#93 ] --- */
                   91122:       {  93,40285,                      /* character number, location */
1.2       albertel 91123:         125, 3,  -42, 3,      /* topleft row,col, and botleft row,col */
                   91124:           { 24,  167, 2,12, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   91125:             "\xff\x06\x00\x18\xff\x98\x11\x07\x00\xff\x06\x18" }  },
1.1       albertel 91126:       /* --- pixel bitmap for cmr1200 char#94 \^ --- */
                   91127:       {  94,41304,                      /* character number, location */
1.2       albertel 91128:         114,20,   89,20,      /* topleft row,col, and botleft row,col */
                   91129:           { 42,   25, 3,153, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   91130:             "\xe0\x62\xe0\xe0\xb4\xe0\xe0\x96\xe0\xe0\x78\xe0\xe0"
                   91131:             "\x5a\xe0\xe0\x3c\xe0\xe0\x1e\xe0\xde\x02\xe0\xb8\x28"
                   91132:             "\xe0\x98\x48\xe0\x78\x68\xe0\x58\x88\xe0\x38\xa8\xe0"
                   91133:             "\x18\xc8\xd8\xe8\xc7\xe0\x27\xb7\xe0\x47\x96\xe0\x86"
                   91134:             "\x76\xe0\xa6\x56\xe0\xc6\x36\xe0\xe6\x16\xe0\xe0\x2b"
                   91135:             "\xe0\xe0\x45\x13\xe0\xe0\x63\x31\xe0\xe0\x81\x2e" }  },
1.1       albertel 91136:       /* --- pixel bitmap for cmr1200 char#95 (noname) --- */
                   91137:       {  95,41395,                      /* character number, location */
1.2       albertel 91138:         112,13,   94,13,      /* topleft row,col, and botleft row,col */
                   91139:           { 19,   18, 3,43, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   91140:             "\x67\xb9\x8d\x5e\x01\x20\xf3\x1e\x03\x1f\x1e\x05\xf3"
                   91141:             "\x1e\x03\x10\x2e\x01\x5d\x89\xb7\x6e" }  },
1.1       albertel 91142:       /* --- pixel bitmap for cmr1200 char#96 (noname) --- */
                   91143:       {  96,40626,                      /* character number, location */
1.2       albertel 91144:         115,12,   65,12,      /* topleft row,col, and botleft row,col */
                   91145:           { 20,   50, 3,141, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   91146:             "\xe2\xe0\x34\xe0\x15\xe6\xd6\xd6\xe5\xe5\xe5\xe0\x14"
                   91147:             "\xe0\x15\x90\xf1\x55\xa0\x45\xe0\x14\xe0\x15\xc0\xf1"
                   91148:             "\x34\xd0\x25\xd0\xf1\x24\xe0\x15\xe0\xf3\x14\xe0\x15"
                   91149:             "\xe0\x1f\x44\xe0\x24\x46\x64\x2a\x44\x1c\x3e\x04\x2f"
                   91150:             "\x1e\x05\x1e\x06\xf2\x1e\x05\xf1\x2e\x04\x2e\x03\x4e"
                   91151:             "\x02\x5e\x7c\x9a\xc6\x60" }  },
1.1       albertel 91152:       /* --- pixel bitmap for cmr1200 char#97 a --- */
                   91153:       {  97,12176,                      /* character number, location */
1.2       albertel 91154:          74, 7,   -2, 7,      /* topleft row,col, and botleft row,col */
                   91155:           { 74,   76, 2,289, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   91156:             "\x17\x0d\x38\x16\x32\x1b\x2c\x20\x29\x0c\x09\x0d\x27"
                   91157:             "\x08\x11\x0c\x23\x08\x14\x0c\x21\x07\x18\x0b\x20\x05"
                   91158:             "\x1b\x0b\x1e\x09\x19\x0b\x1c\x0b\x19\x0b\x1b\x0c\x18"
                   91159:             "\x0c\x19\x0e\x18\x0c\x18\x0f\x18\x0b\x13\x00\xff\x01"
                   91160:             "\x05\x0f\x18\x0c\x12\x00\xff\x02\x05\x0f\x19\x0c\x11"
                   91161:             "\x00\xff\x01\x06\x0d\x1b\x0c\x10\x00\x07\x0b\x1c\x0c"
                   91162:             "\x18\x09\x1d\x0c\x1a\x05\x1f\x0c\x10\x00\xff\x06\x2e"
                   91163:             "\x0c\x10\x00\x24\x16\x2d\x1d\x29\x21\x25\x15\x04\x0c"
                   91164:             "\x23\x11\x0a\x0c\x20\x10\x0e\x0c\x1e\x0f\x11\x0c\x1d"
                   91165:             "\x0e\x13\x0c\x1b\x0e\x15\x0c\x1a\x0d\x17\x0c\x18\x0e"
                   91166:             "\x18\x0c\x17\x0d\x1a\x0c\x16\x0d\x1b\x0c\x15\x0d\x1c"
                   91167:             "\x0c\x15\x0c\x1d\x0c\x14\x0d\x1d\x0c\x13\x0d\x1e\x0c"
                   91168:             "\x12\x0e\x1e\x0c\x12\x0d\x1f\x0c\x12\x0d\x1f\x0c\x0c"
                   91169:             "\x04\xff\x02\x01\x0d\x20\x0c\x0c\x04\x00\xff\x01\x0d"
                   91170:             "\x21\x0c\x0c\x04\x00\xff\x03\x0d\x20\x0d\x0c\x04\x00"
                   91171:             "\xff\x01\x0d\x1f\x0e\x0c\x04\x01\x0d\x1d\x0f\x0c\x04"
                   91172:             "\x01\x0d\x1d\x03\x01\x0b\x0c\x04\x01\x0e\x1b\x04\x01"
                   91173:             "\x0c\x0a\x04\x03\x0d\x1a\x04\x03\x0b\x0a\x04\x04\x0d"
                   91174:             "\x18\x04\x04\x0b\x0a\x04\x04\x0e\x16\x05\x05\x0b\x08"
                   91175:             "\x04\x06\x0e\x14\x05\x06\x0c\x06\x05\x07\x0e\x11\x06"
                   91176:             "\x08\x15\x0a\x0e\x0d\x07\x0a\x13\x0c\x10\x07\x08\x0d"
                   91177:             "\x11\x0f\x1c\x0f\x0f\x12\x18\x12\x0c\x17\x13\x17\x07"
                   91178:             "\x1d\x0c\x2b" }  },
1.1       albertel 91179:       /* --- pixel bitmap for cmr1200 char#98 b --- */
                   91180:       {  98,12513,                      /* character number, location */
1.2       albertel 91181:         115, 4,   -2, 4,      /* topleft row,col, and botleft row,col */
                   91182:           { 82,  117, 2,301, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   91183:             "\x13\x06\x3f\x13\x39\xff\x04\x19\x39\x00\x08\x11\x44"
                   91184:             "\x0e\x39\x00\xff\x01\x0c\x0d\x39\x00\xff\x1e\x0d\x0c"
                   91185:             "\x39\x00\x0d\x0c\x10\x0c\x2a\x0c\x0d\x13\x26\x0c\x0a"
                   91186:             "\x19\x23\x0c\x08\x1d\x21\x0c\x06\x0b\x08\x0e\x1f\x0c"
                   91187:             "\x05\x08\x0f\x0c\x1e\x0c\x04\x07\x13\x0c\x1c\x0c\x03"
                   91188:             "\x06\x17\x0b\x1b\x0c\x02\x05\x1a\x0b\x1a\x0c\x01\x05"
                   91189:             "\x1c\x0b\x19\x11\x1e\x0b\x18\x10\x20\x0b\x17\x0f\x22"
                   91190:             "\x0b\x16\x0e\x24\x0b\x15\x0d\x25\x0c\x14\x0d\x26\x0b"
                   91191:             "\x14\x0c\x27\x0c\x06\x00\xff\x01\x0d\x0c\x28\x0c\x05"
                   91192:             "\x00\xff\x01\x0d\x0c\x29\x0c\x04\x00\x0d\x0c\x29\x0d"
                   91193:             "\x10\x0c\x2a\x0c\x03\x00\xff\x02\x0d\x0c\x2a\x0d\x02"
                   91194:             "\x00\xff\x01\x0d\x0c\x2a\x0e\x01\x00\xff\x02\x0d\x0c"
                   91195:             "\x2b\x0d\x01\x00\xff\x0c\x0d\x0c\x2b\x0e\xff\x01\x0d"
                   91196:             "\x0c\x2b\x0d\x01\x00\xff\x01\x0d\x0c\x2a\x0e\x01\x00"
                   91197:             "\xff\x02\x0d\x0c\x2a\x0d\x02\x00\x0d\x0c\x2a\x0c\x03"
                   91198:             "\x00\xff\x01\x0d\x0c\x29\x0d\x03\x00\x0d\x0c\x29\x0c"
                   91199:             "\x11\x0c\x28\x0d\x11\x0c\x28\x0c\x12\x0c\x27\x0c\x13"
                   91200:             "\x0d\x26\x0c\x13\x0d\x25\x0c\x14\x0e\x24\x0b\x15\x0e"
                   91201:             "\x23\x0b\x16\x0f\x21\x0c\x16\x0a\x01\x05\x20\x0b\x17"
                   91202:             "\x0a\x02\x05\x1e\x0b\x18\x09\x04\x05\x1c\x0b\x19\x08"
                   91203:             "\x06\x05\x19\x0b\x1b\x08\x07\x05\x17\x0b\x1c\x07\x09"
                   91204:             "\x06\x13\x0c\x1d\x06\x0b\x07\x0f\x0c\x1f\x06\x0c\x09"
                   91205:             "\x08\x0f\x20\x05\x0e\x1d\x22\x04\x11\x19\x3b\x14\x42"
                   91206:             "\x0b\x1f" }  },
1.1       albertel 91207:       /* --- pixel bitmap for cmr1200 char#99 c --- */
                   91208:       {  99,12928,                      /* character number, location */
1.2       albertel 91209:          74, 5,   -2, 5,      /* topleft row,col, and botleft row,col */
                   91210:           { 63,   76, 2,215, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   91211:             "\x1e\x0d\x2e\x16\x26\x1c\x21\x20\x1d\x0d\x0b\x0c\x19"
                   91212:             "\x0c\x12\x09\x17\x0b\x17\x08\x14\x0b\x1a\x07\x12\x0a"
                   91213:             "\x1e\x05\x10\x0b\x1c\x09\x0e\x0b\x1c\x0b\x0c\x0b\x1c"
                   91214:             "\x0c\x0c\x0b\x1b\x0e\x0a\x0b\x1b\x0f\x09\x0b\x1c\x0f"
                   91215:             "\x08\x0c\x1c\x0f\x01\x00\xff\x01\x06\x0c\x1d\x0f\x01"
                   91216:             "\x00\x05\x0c\x1e\x0f\x06\x0c\x1f\x0d\x06\x0d\x1f\x0d"
                   91217:             "\x06\x0c\x21\x0b\x06\x0d\x22\x09\x07\x0d\x24\x05\x06"
                   91218:             "\x00\xff\x02\x02\x0d\x30\x00\xff\x02\x01\x0e\x30\x00"
                   91219:             "\xff\x01\x01\x0d\x31\xff\x0c\x0e\x31\x00\x01\x0d\x31"
                   91220:             "\x00\xff\x03\x01\x0e\x30\x00\x02\x0d\x32\x0e\x32\x0d"
                   91221:             "\x2f\x00\xff\x01\x03\x0d\x2b\x04\x04\x0d\x2a\x04\x04"
                   91222:             "\x0d\x29\x05\x05\x0d\x28\x04\x07\x0c\x27\x05\x07\x0d"
                   91223:             "\x26\x04\x09\x0c\x26\x04\x0a\x0c\x24\x05\x0a\x0c\x23"
                   91224:             "\x05\x0c\x0c\x22\x04\x0e\x0c\x20\x05\x0f\x0c\x1e\x05"
                   91225:             "\x11\x0c\x1c\x05\x13\x0c\x1a\x05\x15\x0c\x17\x06\x18"
                   91226:             "\x0c\x14\x06\x1a\x0d\x0f\x08\x1d\x0e\x09\x0a\x20\x1d"
                   91227:             "\x24\x19\x29\x14\x2f\x0c\x15" }  },
1.1       albertel 91228:       /* --- pixel bitmap for cmr1200 char#100 d --- */
                   91229:       { 100,13165,                      /* character number, location */
1.2       albertel 91230:         115, 5,   -2, 5,      /* topleft row,col, and botleft row,col */
                   91231:           { 82,  117, 2,303, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   91232:             "\x3f\x06\x3f\x13\x0d\x00\xff\x04\x2c\x19\x0d\x00\x34"
                   91233:             "\x11\x44\x0e\x0d\x00\xff\x01\x38\x0d\x0d\x00\xff\x1e"
                   91234:             "\x39\x0c\x0d\x00\x1f\x0b\x0f\x0c\x27\x14\x0b\x0c\x24"
                   91235:             "\x19\x09\x0c\x22\x1d\x07\x0c\x20\x0f\x08\x09\x06\x0c"
                   91236:             "\x1f\x0c\x0f\x08\x04\x0c\x1d\x0c\x13\x07\x03\x0c\x1c"
                   91237:             "\x0b\x17\x06\x02\x0c\x1b\x0b\x1a\x05\x01\x0c\x19\x0b"
                   91238:             "\x1d\x11\x18\x0b\x1f\x10\x17\x0b\x21\x0f\x16\x0c\x22"
                   91239:             "\x0e\x16\x0b\x23\x0e\x15\x0b\x25\x0d\x14\x0c\x25\x0d"
                   91240:             "\x0d\x00\xff\x01\x06\x0c\x27\x0c\x0d\x00\x05\x0c\x28"
                   91241:             "\x0c\x11\x0d\x28\x0c\x11\x0c\x29\x0c\x0d\x00\xff\x01"
                   91242:             "\x03\x0d\x29\x0c\x0d\x00\x03\x0c\x2a\x0c\x0d\x00\xff"
                   91243:             "\x02\x02\x0d\x2a\x0c\x0d\x00\xff\x01\x01\x0e\x2a\x0c"
                   91244:             "\x0d\x00\xff\x01\x01\x0d\x2b\x0c\x0d\xff\x0c\x0e\x2b"
                   91245:             "\x0c\x0d\x00\xff\x02\x01\x0d\x2b\x0c\x0d\x00\xff\x01"
                   91246:             "\x01\x0e\x2a\x0c\x0d\x00\xff\x02\x02\x0d\x2a\x0c\x0d"
                   91247:             "\x00\x03\x0c\x2a\x0c\x10\x0d\x29\x0c\x0d\x00\xff\x01"
                   91248:             "\x04\x0c\x29\x0c\x0d\x00\xff\x01\x05\x0c\x28\x0c\x0d"
                   91249:             "\x00\x06\x0c\x26\x0d\x14\x0b\x26\x0d\x14\x0c\x24\x0e"
                   91250:             "\x15\x0b\x23\x0f\x16\x0b\x21\x10\x17\x0b\x20\x10\x18"
                   91251:             "\x0b\x1e\x12\x18\x0b\x1c\x05\x01\x0d\x19\x0b\x19\x06"
                   91252:             "\x02\x0e\x19\x0b\x17\x06\x03\x11\x17\x0c\x13\x07\x04"
                   91253:             "\x19\x11\x0c\x0f\x07\x06\x19\x12\x0e\x08\x0a\x07\x19"
                   91254:             "\x14\x1d\x08\x19\x16\x19\x0a\x19\x19\x13\x0d\x13\x23"
                   91255:             "\x0c\x10\x06\x13" }  },
1.1       albertel 91256:       /* --- pixel bitmap for cmr1200 char#101 e --- */
                   91257:       { 101,13578,                      /* character number, location */
1.2       albertel 91258:          74, 5,   -2, 5,      /* topleft row,col, and botleft row,col */
                   91259:           { 63,   76, 2,239, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   91260:             "\x1c\x0c\x2f\x14\x29\x18\x25\x1c\x21\x0c\x07\x0d\x1d"
                   91261:             "\x0b\x0d\x0c\x1a\x0b\x10\x0b\x18\x0a\x13\x0b\x15\x0b"
                   91262:             "\x15\x0b\x13\x0b\x17\x0b\x11\x0b\x19\x0b\x0f\x0c\x1a"
                   91263:             "\x0a\x0e\x0c\x1b\x0b\x0d\x0b\x1d\x0b\x0b\x0c\x1d\x0b"
                   91264:             "\x04\x00\xff\x01\x06\x0c\x1f\x0b\x03\x00\x05\x0c\x20"
                   91265:             "\x0c\x07\x0c\x21\x0b\x06\x0c\x22\x0b\x06\x0c\x22\x0c"
                   91266:             "\x01\x00\xff\x01\x03\x0d\x23\x0b\x01\x00\xff\x01\x02"
                   91267:             "\x0d\x24\x0b\x01\x00\x02\x0d\x24\x0c\xff\x01\x01\x0e"
                   91268:             "\x24\x0c\x01\x0e\x25\x0b\xff\x01\x01\x0d\x26\x0b\x00"
                   91269:             "\x0e\x26\x0b\x00\xff\x02\x3f\x00\x3e\x01\xff\x08\x0e"
                   91270:             "\x31\x00\xff\x01\x01\x0d\x31\x00\xff\x02\x01\x0e\x30"
                   91271:             "\x00\xff\x01\x02\x0d\x30\x00\x02\x0e\x32\x0d\x2c\x02"
                   91272:             "\x04\x0d\x2b\x04\x04\x0c\x2b\x04\x04\x0d\x29\x05\x05"
                   91273:             "\x0c\x29\x05\x05\x0d\x27\x05\x07\x0c\x27\x05\x01\x00"
                   91274:             "\xff\x01\x07\x0c\x25\x05\x02\x00\x08\x0c\x23\x05\x0c"
                   91275:             "\x0c\x21\x06\x0d\x0b\x20\x06\x0f\x0b\x1e\x06\x11\x0b"
                   91276:             "\x1c\x06\x13\x0b\x1a\x06\x16\x0a\x18\x06\x18\x0b\x14"
                   91277:             "\x07\x1a\x0c\x0f\x09\x1d\x0d\x09\x0a\x21\x1d\x24\x19"
                   91278:             "\x29\x13\x30\x0c\x15" }  },
1.1       albertel 91279:       /* --- pixel bitmap for cmr1200 char#102 f --- */
                   91280:       { 102,13831,                      /* character number, location */
1.2       albertel 91281:         117, 5,    0, 5,      /* topleft row,col, and botleft row,col */
                   91282:           { 54,  117, 2,99, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   91283:             "\x22\x0a\x29\x10\x23\x15\x1f\x18\x1d\x0b\x07\x08\x1a"
                   91284:             "\x0b\x09\x09\x18\x0b\x09\x0b\x16\x0a\x0a\x0c\x15\x0b"
                   91285:             "\x0a\x0d\x13\x0b\x0a\x0e\xff\x01\x12\x0b\x0b\x0e\x11"
                   91286:             "\x0b\x0c\x0e\x10\x0c\x0c\x0e\x10\x0b\x0d\x0e\x0f\x0c"
                   91287:             "\x0e\x0c\x10\x0b\x10\x0a\x10\x0c\x11\x08\x11\x0c\x13"
                   91288:             "\x04\x13\x0c\x2a\x0b\x1d\x00\xff\x18\x0d\x0c\x1d\xff"
                   91289:             "\x04\x2b\x0b\x00\xff\x39\x0d\x0c\x1d\x00\x0c\x0e\x28"
                   91290:             "\x0f\x24\x15\x18\xff\x04\x29\x0d" }  },
1.1       albertel 91291:       /* --- pixel bitmap for cmr1200 char#103 g --- */
                   91292:       { 103,14102,                      /* character number, location */
1.2       albertel 91293:          75, 5,  -35, 5,      /* topleft row,col, and botleft row,col */
                   91294:           { 75,  110, 2,347, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   91295:             "\x3e\x08\x3f\x0e\x1c\x0c\x13\x11\x17\x14\x0d\x14\x14"
                   91296:             "\x18\x0a\x0a\x04\x07\x12\x1c\x07\x07\x07\x09\x0f\x0d"
                   91297:             "\x06\x0d\x03\x07\x09\x09\x0e\x0b\x0c\x0b\x01\x06\x0b"
                   91298:             "\x09\x0d\x0a\x10\x0e\x0c\x0a\x0b\x0b\x12\x0c\x0e\x09"
                   91299:             "\x0a\x0b\x14\x0b\x0e\x09\x0a\x0a\x16\x0a\x0f\x07\x0a"
                   91300:             "\x0b\x16\x0b\x0f\x05\x0a\x0b\x18\x0b\x1c\x0c\x18\x0c"
                   91301:             "\x1b\x0b\x1a\x0b\x14\x00\xff\x01\x06\x0c\x1a\x0c\x13"
                   91302:             "\x00\xff\x02\x05\x0c\x1c\x0c\x12\x00\xff\x09\x04\x0d"
                   91303:             "\x1c\x0d\x11\x00\xff\x02\x05\x0c\x1c\x0c\x12\x00\xff"
                   91304:             "\x01\x06\x0c\x1a\x0c\x13\x00\x07\x0b\x1a\x0b\x1b\x0c"
                   91305:             "\x18\x0c\x1c\x0b\x18\x0b\x1e\x0b\x16\x0b\x20\x0a\x16"
                   91306:             "\x0a\x21\x0b\x14\x0b\x22\x0b\x12\x0b\x23\x0c\x10\x0a"
                   91307:             "\x25\x0e\x0c\x0b\x25\x04\x01\x0d\x06\x0d\x25\x04\x04"
                   91308:             "\x1c\x27\x04\x06\x18\x28\x04\x09\x14\x2a\x04\x0d\x0c"
                   91309:             "\x2e\x04\x3f\x00\xff\x05\x07\x05\x3f\x00\xff\x01\x07"
                   91310:             "\x06\x3e\x00\xff\x01\x07\x07\x3d\x00\x07\x08\x43\x0a"
                   91311:             "\x42\x0b\x40\x27\x25\x2c\x1f\x2f\x1d\x31\x1b\x32\x1a"
                   91312:             "\x33\x19\x33\x19\x33\x16\x36\x13\x39\x10\x0b\x1b\x16"
                   91313:             "\x0e\x09\x23\x12\x0c\x09\x27\x0f\x0b\x08\x2b\x0e\x09"
                   91314:             "\x09\x2d\x0c\x08\x09\x2f\x0c\x06\x09\x31\x0b\x06\x09"
                   91315:             "\x32\x0a\x05\x09\x33\x0a\x05\x09\x34\x0a\x03\x0a\x34"
                   91316:             "\x0a\x03\xff\x06\x09\x36\x09\x03\x00\xff\x01\x01\x09"
                   91317:             "\x34\x09\x04\x00\x01\x0a\x32\x0a\x06\x09\x32\x09\x07"
                   91318:             "\x0a\x30\x0a\x08\x0a\x2e\x0a\x0a\x0a\x2c\x0a\x0c\x0a"
                   91319:             "\x2a\x0a\x0e\x0a\x28\x0a\x10\x0b\x24\x0b\x13\x0b\x20"
                   91320:             "\x0b\x16\x0c\x1c\x0c\x19\x0d\x16\x0d\x1d\x10\x0c\x10"
                   91321:             "\x21\x28\x26\x22\x2c\x1c\x35\x10\x1f" }  },
1.1       albertel 91322:       /* --- pixel bitmap for cmr1200 char#104 h --- */
                   91323:       { 104,14513,                      /* character number, location */
1.2       albertel 91324:         115, 5,    0, 5,      /* topleft row,col, and botleft row,col */
                   91325:           { 83,  115, 2,160, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   91326:             "\x13\x06\x40\x13\x3a\xff\x04\x19\x3a\x00\x08\x11\x45"
                   91327:             "\x0e\x3a\x00\xff\x01\x0c\x0d\x3a\x00\xff\x1e\x0d\x0c"
                   91328:             "\x3a\x00\x0d\x0c\x11\x0c\x2a\x0c\x0e\x13\x26\x0c\x0c"
                   91329:             "\x17\x24\x0c\x0a\x1b\x22\x0c\x09\x09\x07\x0d\x21\x0c"
                   91330:             "\x08\x06\x0d\x0c\x20\x0c\x06\x06\x11\x0b\x1f\x0c\x05"
                   91331:             "\x06\x13\x0b\x1e\x0c\x04\x05\x15\x0c\x1d\x0c\x04\x04"
                   91332:             "\x17\x0b\x1d\x0c\x03\x04\x18\x0c\x1c\x0c\x02\x04\x1a"
                   91333:             "\x0b\x0f\x00\xff\x01\x0d\x0c\x01\x04\x1b\x0c\x0e\x00"
                   91334:             "\x0d\x10\x1c\x0c\x1b\x0f\x1e\x0b\x1b\x0f\x1e\x0c\x0d"
                   91335:             "\x00\xff\x02\x0d\x0e\x1f\x0c\x0d\x00\xff\x03\x0d\x0d"
                   91336:             "\x20\x0c\x0d\x00\xff\x28\x0d\x0c\x21\x0c\x0d\x00\xff"
                   91337:             "\x01\x0c\x0e\x1f\x0e\x0c\x00\x09\x14\x19\x14\x09\xff"
                   91338:             "\x04\x26\x07\x26" }  },
1.1       albertel 91339:       /* --- pixel bitmap for cmr1200 char#105 i --- */
                   91340:       { 105,14916,                      /* character number, location */
1.2       albertel 91341:         112, 5,    0, 5,      /* topleft row,col, and botleft row,col */
                   91342:           { 36,  112, 3,148, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   91343:             "\xd6\xe0\xea\xe0\xbc\xe0\x9e\xe0\x7e\x02\xc0\xf7\x7e"
                   91344:             "\x04\xb0\x8e\x02\xe0\x7e\xe0\x9c\xe0\xba\xe0\xe6\xe0"
                   91345:             "\x30\xfe\xe0\xe0\x80\xf5\xe0\xe0\x80\xe0\x56\xe0\x4e"
                   91346:             "\x04\xb0\xf4\x1e\x0a\xb0\x9e\x02\xe0\x8e\xb0\xf1\xcd"
                   91347:             "\xb0\xfe\xdc\xb0\xfe\xdc\xb0\xfe\xdc\xb0\xf8\xdc\xb0"
                   91348:             "\xf1\xce\xa0\x9e\x05\x8f\x4e\x0e\x08" }  },
1.1       albertel 91349:       /* --- pixel bitmap for cmr1200 char#106 j --- */
                   91350:       { 106,15107,                      /* character number, location */
1.2       albertel 91351:         112,-7,  -34,-7,      /* topleft row,col, and botleft row,col */
                   91352:           { 42,  146, 2,125, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   91353:             "\x1e\x06\x22\x0a\x1f\x0c\x1d\x0e\x1b\x10\x01\x00\xff"
                   91354:             "\x07\x18\x12\x19\x10\x1b\x0e\x1d\x0c\x1f\x0a\x22\x06"
                   91355:             "\x06\x00\xff\x14\x2a\x00\x24\x06\x17\x13\xff\x04\x10"
                   91356:             "\x1a\x19\x11\x1c\x0e\xff\x01\x1d\x0d\xff\x4a\x1e\x0c"
                   91357:             "\x05\x05\x14\x0c\x03\x09\x12\x0c\x02\x0b\x10\x0c\x02"
                   91358:             "\x0d\x0f\x0c\x01\x0f\x0e\x0c\x01\xff\x01\x0f\x0e\x0b"
                   91359:             "\x02\x0f\x0d\x0c\x02\xff\x01\x0f\x0d\x0b\x03\x0f\x0c"
                   91360:             "\x0b\x04\x0e\x0d\x0a\x06\x0d\x0c\x0a\x07\x0b\x0e\x0a"
                   91361:             "\x08\x09\x0e\x0a\x0a\x08\x0d\x09\x0d\x0a\x08\x0a\x10"
                   91362:             "\x19\x12\x16\x17\x11\x1c\x0b\x12" }  },
1.1       albertel 91363:       /* --- pixel bitmap for cmr1200 char#107 k --- */
                   91364:       { 107,15400,                      /* character number, location */
1.2       albertel 91365:         115, 4,    0, 4,      /* topleft row,col, and botleft row,col */
                   91366:           { 81,  115, 2,298, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   91367:             "\x13\x06\x3e\x13\x38\xff\x04\x19\x38\x00\x08\x11\x43"
                   91368:             "\x0e\x38\x00\xff\x01\x0c\x0d\x38\x00\xff\x20\x0d\x0c"
                   91369:             "\x38\x00\xff\x04\x0d\x0c\x16\x1e\x04\x00\x0d\x0c\x18"
                   91370:             "\x17\x16\x0c\x1a\x12\x19\x0c\x1a\x0f\x1c\x0c\x1b\x0c"
                   91371:             "\x1e\x0c\x1b\x0b\x1f\x0c\x1a\x0a\x21\x0c\x1a\x09\x22"
                   91372:             "\x0c\x1a\x07\x24\x0c\x19\x07\x25\x0c\x18\x07\x26\x0c"
                   91373:             "\x17\x06\x28\x0c\x16\x06\x29\x0c\x15\x06\x2a\x0c\x13"
                   91374:             "\x07\x2b\x0c\x12\x07\x2c\x0c\x11\x06\x2e\x0c\x10\x06"
                   91375:             "\x2f\x0c\x0f\x06\x30\x0c\x0e\x06\x31\x0c\x0c\x07\x32"
                   91376:             "\x0c\x0b\x07\x33\x0c\x0a\x08\x33\x0c\x09\x0a\x32\x0c"
                   91377:             "\x08\x0c\x31\x0c\x07\x0e\x30\x0c\x05\x10\x30\x0c\x04"
                   91378:             "\x12\x2f\x0c\x03\x14\x2e\x0c\x02\x06\x01\x0e\x2e\x0c"
                   91379:             "\x01\x06\x03\x0e\x2d\x12\x05\x0e\x2c\x11\x07\x0e\x2b"
                   91380:             "\x10\x08\x0e\x2b\x0e\x0b\x0e\x2a\x0d\x0d\x0e\x29\x0c"
                   91381:             "\x0e\x0e\x29\x0b\x10\x0e\x28\x0b\x11\x0e\x1a\x00\xff"
                   91382:             "\x01\x0d\x0b\x12\x0e\x19\x00\x0d\x0b\x13\x0e\x18\x00"
                   91383:             "\xff\x01\x0d\x0b\x14\x0e\x17\x00\x0d\x0b\x15\x0e\x23"
                   91384:             "\x0b\x16\x0e\x15\x00\xff\x01\x0d\x0b\x17\x0e\x14\x00"
                   91385:             "\x0d\x0b\x18\x0e\x13\x00\xff\x01\x0d\x0b\x19\x0e\x12"
                   91386:             "\x00\x0d\x0b\x1a\x0e\x1e\x0b\x1b\x0e\x1d\x0b\x1b\x0f"
                   91387:             "\x1c\x0b\x1c\x0e\x1c\x0b\x1d\x0e\x1b\x0b\x1d\x0f\x1a"
                   91388:             "\x0b\x1d\x10\x19\x0b\x1d\x11\x17\x0d\x1c\x12\x16\x0d"
                   91389:             "\x1c\x13\x12\x13\x17\x18\x06\xff\x04\x25\x0b\x21" }  },
1.1       albertel 91390:       /* --- pixel bitmap for cmr1200 char#108 l --- */
                   91391:       { 108,15783,                      /* character number, location */
1.2       albertel 91392:         115, 5,    0, 5,      /* topleft row,col, and botleft row,col */
                   91393:           { 38,  115, 2,40, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   91394:             "\x13\x06\x14\x12\x0d\xff\x04\x19\x0d\x00\x08\x11\x18"
                   91395:             "\x0e\x0d\x00\xff\x01\x0c\x0d\x0d\x00\xff\x5f\x0d\x0c"
                   91396:             "\x0d\x00\xff\x01\x0c\x0e\x0c\x00\x09\x14\x09\xff\x04"
                   91397:             "\x26" }  },
1.1       albertel 91398:       /* --- pixel bitmap for cmr1200 char#109 m --- */
                   91399:       { 109,16020,                      /* character number, location */
1.2       albertel 91400:          73, 5,    0, 5,      /* topleft row,col, and botleft row,col */
                   91401:           { 130,   73, 2,210, (pixbyte *)/* width,ht, fmt,pixsz,map.. */
                   91402:             "\x12\x06\x13\x0c\x22\x0c\x23\x12\x0f\x14\x1a\x14\x19"
                   91403:             "\x18\x0d\x18\x16\x18\x17\x18\x0b\x1c\x12\x1c\x15\x18"
                   91404:             "\x0a\x09\x07\x0e\x10\x09\x07\x0e\x14\x18\x09\x07\x0d"
                   91405:             "\x0c\x0e\x07\x0d\x0c\x13\x18\x08\x05\x12\x0b\x0c\x05"
                   91406:             "\x12\x0b\x1a\x10\x07\x05\x14\x0b\x0a\x05\x14\x0b\x1c"
                   91407:             "\x0d\x06\x04\x16\x0c\x08\x04\x16\x0c\x1c\x0c\x05\x04"
                   91408:             "\x18\x0b\x07\x04\x18\x0b\x1c\x0c\x04\x04\x19\x0c\x05"
                   91409:             "\x04\x19\x0c\x1c\x0b\x03\x04\x1b\x0b\x04\x04\x1b\x0b"
                   91410:             "\x1c\x0b\x03\x03\x1c\x0c\x03\x03\x1c\x0c\x1b\x0b\x02"
                   91411:             "\x04\x1c\x0c\x02\x04\x1c\x0c\x1b\x0b\x01\x04\x1d\x0c"
                   91412:             "\x01\x04\x1d\x0c\x1b\x0b\x01\x04\x1e\x0b\x01\x04\x1e"
                   91413:             "\x0b\x0e\x00\xff\x01\x0d\x0f\x1f\x0f\x1f\x0c\x0d\x00"
                   91414:             "\xff\x01\x0d\x0e\x20\x0e\x20\x0c\x0d\x00\xff\x03\x0d"
                   91415:             "\x0d\x21\x0d\x21\x0c\x0d\x00\xff\x28\x0d\x0c\x22\x0c"
                   91416:             "\x22\x0c\x0d\x00\xff\x01\x0c\x0e\x20\x0e\x20\x0e\x0c"
                   91417:             "\x00\x09\x14\x1a\x14\x1a\x14\x09\xff\x04\x26\x08\x26"
                   91418:             "\x08\x26" }  },
1.1       albertel 91419:       /* --- pixel bitmap for cmr1200 char#110 n --- */
                   91420:       { 110,16513,                      /* character number, location */
1.2       albertel 91421:          73, 5,    0, 5,      /* topleft row,col, and botleft row,col */
                   91422:           { 83,   73, 3,272, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   91423:             "\xe0\x46\xe0\x4c\xe0\xe0\x7e\x04\xe0\x1e\x05\xe0\xbe"
                   91424:             "\x0a\xde\x09\xe0\x9e\x0a\xbe\x0d\xe0\x7e\x0a\xa9\x7d"
                   91425:             "\xe0\x6e\x0a\x96\xdc\xe0\x5e\x0a\x76\xe0\x3b\xe0\xce"
                   91426:             "\x02\x66\xe0\x5b\xe0\xed\x55\xe0\x7c\xe0\xec\x54\xe0"
                   91427:             "\x9b\xe0\xec\x44\xe0\xac\xe0\xeb\x34\xe0\xcb\xe0\x10"
                   91428:             "\xf1\xdb\x24\xe0\xdc\xe0\xdb\x14\xe0\xec\xe0\xdb\x13"
                   91429:             "\xe0\xe0\x2b\xe0\xde\x01\xe0\xe0\x2c\xd0\xf2\xde\xe0"
                   91430:             "\xe0\x3c\xd0\xf3\xdd\xe0\xe0\x4c\xd0\xfe\xdc\xe0\xe0"
                   91431:             "\x5c\xd0\xfe\xdc\xe0\xe0\x5c\xd0\xfa\xdc\xe0\xe0\x5c"
                   91432:             "\xd0\xf1\xce\xe0\xe0\x3e\xc0\x9e\x06\xe0\xbe\x06\x9f"
                   91433:             "\x4e\x0e\x0a\x7e\x0e\x0a" }  },
1.1       albertel 91434:       /* --- pixel bitmap for cmr1200 char#111 o --- */
                   91435:       { 111,16836,                      /* character number, location */
1.2       albertel 91436:          74, 5,   -2, 5,      /* topleft row,col, and botleft row,col */
                   91437:           { 72,   76, 2,227, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   91438:             "\x1e\x0c\x38\x14\x31\x1a\x2c\x1e\x28\x0d\x08\x0d\x25"
                   91439:             "\x0a\x10\x0a\x22\x0a\x14\x0a\x1f\x0a\x16\x0a\x1d\x09"
                   91440:             "\x1a\x09\x1a\x0a\x1c\x0a\x17\x0a\x1e\x0a\x15\x0a\x20"
                   91441:             "\x0a\x14\x09\x22\x09\x13\x0a\x22\x0a\x11\x0a\x24\x0a"
                   91442:             "\x0f\x0b\x24\x0b\x0e\x0a\x26\x0a\x0d\x0b\x26\x0b\x06"
                   91443:             "\x00\xff\x01\x05\x0b\x28\x0b\x05\x00\x04\x0c\x28\x0c"
                   91444:             "\x08\x0b\x2a\x0b\x04\x00\xff\x02\x03\x0c\x2a\x0c\x03"
                   91445:             "\x00\x02\x0d\x2a\x0d\x02\x00\xff\x01\x02\x0c\x2c\x0c"
                   91446:             "\x02\x00\xff\x03\x01\x0d\x2c\x0d\x01\xff\x0c\x0e\x2c"
                   91447:             "\x0e\xff\x03\x01\x0d\x2c\x0d\x01\x00\x01\x0e\x2a\x0e"
                   91448:             "\x01\x00\xff\x02\x02\x0d\x2a\x0d\x02\x00\xff\x01\x03"
                   91449:             "\x0c\x2a\x0c\x03\x00\xff\x01\x04\x0c\x28\x0c\x04\x00"
                   91450:             "\x05\x0b\x28\x0b\x0a\x0c\x26\x0c\x0b\x0b\x26\x0b\x06"
                   91451:             "\x00\xff\x01\x07\x0b\x24\x0b\x07\x00\x08\x0b\x22\x0b"
                   91452:             "\x11\x0b\x20\x0b\x13\x0a\x20\x0a\x15\x0a\x1e\x0a\x17"
                   91453:             "\x0a\x1c\x0a\x19\x0a\x1a\x0a\x1b\x0b\x16\x0b\x1e\x0a"
                   91454:             "\x14\x0a\x21\x0b\x10\x0b\x24\x0d\x08\x0d\x28\x1e\x2c"
                   91455:             "\x1a\x31\x14\x38\x0c\x1e" }  },
1.1       albertel 91456:       /* --- pixel bitmap for cmr1200 char#112 p --- */
                   91457:       { 112,17131,                      /* character number, location */
1.2       albertel 91458:          73, 4,  -32, 4,      /* topleft row,col, and botleft row,col */
                   91459:           { 82,  105, 2,289, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   91460:             "\x13\x06\x10\x0c\x23\x13\x0d\x13\x19\x19\x0a\x19\x16"
                   91461:             "\x19\x08\x1d\x14\x19\x06\x0b\x07\x0f\x12\x19\x05\x08"
                   91462:             "\x0e\x0d\x11\x19\x04\x07\x12\x0d\x17\x11\x03\x06\x16"
                   91463:             "\x0c\x19\x0e\x02\x05\x19\x0c\x19\x0d\x01\x05\x1b\x0c"
                   91464:             "\x18\x12\x1d\x0c\x18\x10\x1f\x0c\x17\x0f\x21\x0c\x16"
                   91465:             "\x0e\x22\x0d\x15\x0d\x24\x0d\x14\x0d\x25\x0c\x14\x0c"
                   91466:             "\x26\x0d\x06\x00\xff\x01\x0d\x0c\x27\x0d\x05\x00\x0d"
                   91467:             "\x0c\x27\x0e\x11\x0c\x28\x0d\x11\x0c\x28\x0e\x10\x0c"
                   91468:             "\x29\x0d\x03\x00\xff\x01\x0d\x0c\x29\x0e\x02\x00\x0d"
                   91469:             "\x0c\x2a\x0d\x02\x00\xff\x04\x0d\x0c\x2a\x0e\x01\x00"
                   91470:             "\xff\x0c\x0d\x0c\x2b\x0e\xff\x03\x0d\x0c\x2a\x0e\x01"
                   91471:             "\x00\x0d\x0c\x2a\x0d\x02\x00\xff\x01\x0d\x0c\x29\x0e"
                   91472:             "\x02\x00\x0d\x0c\x29\x0d\x03\x00\xff\x01\x0d\x0c\x28"
                   91473:             "\x0e\x03\x00\x0d\x0c\x28\x0d\x11\x0c\x27\x0e\x11\x0c"
                   91474:             "\x27\x0d\x12\x0c\x26\x0d\x13\x0d\x25\x0d\x13\x0d\x24"
                   91475:             "\x0d\x14\x0e\x22\x0d\x15\x0e\x22\x0c\x16\x0f\x20\x0d"
                   91476:             "\x16\x10\x1e\x0d\x17\x11\x1c\x0d\x18\x0c\x01\x05\x1a"
                   91477:             "\x0d\x19\x0c\x02\x05\x18\x0c\x1b\x0c\x03\x05\x16\x0c"
                   91478:             "\x1c\x0c\x04\x06\x12\x0d\x1d\x0c\x05\x07\x0e\x0d\x1f"
                   91479:             "\x0c\x06\x09\x08\x0f\x20\x0c\x07\x1d\x22\x0c\x09\x19"
                   91480:             "\x24\x0c\x0b\x14\x27\x0c\x0f\x0b\x1f\x00\xff\x15\x0d"
                   91481:             "\x0c\x39\x00\xff\x01\x0c\x0e\x38\x00\x09\x14\x35\xff"
                   91482:             "\x04\x26\x2c" }  },
1.1       albertel 91483:       /* --- pixel bitmap for cmr1200 char#113 q --- */
                   91484:       { 113,17522,                      /* character number, location */
1.2       albertel 91485:          73, 6,  -32, 6,      /* topleft row,col, and botleft row,col */
                   91486:           { 82,  105, 2,304, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   91487:             "\x1e\x0c\x17\x04\x27\x13\x13\x05\x24\x18\x11\x05\x22"
                   91488:             "\x1c\x0e\x06\x20\x0f\x07\x09\x0d\x06\x1e\x0e\x0d\x07"
                   91489:             "\x0b\x07\x1d\x0d\x11\x06\x0a\x07\x1c\x0c\x15\x05\x09"
                   91490:             "\x07\x1a\x0d\x17\x05\x07\x08\x19\x0c\x1a\x05\x06\x08"
                   91491:             "\x18\x0c\x1c\x05\x04\x09\x17\x0d\x1d\x04\x04\x09\x16"
                   91492:             "\x0d\x1f\x04\x02\x0a\x15\x0d\x20\x05\x01\x0a\x15\x0c"
                   91493:             "\x22\x0f\x14\x0d\x22\x0f\x0d\x00\xff\x01\x06\x0d\x24"
                   91494:             "\x0e\x0d\x00\x05\x0d\x26\x0d\x11\x0e\x26\x0d\x11\x0d"
                   91495:             "\x27\x0d\x0d\x00\xff\x01\x03\x0e\x28\x0c\x0d\x00\x03"
                   91496:             "\x0d\x29\x0c\x0d\x00\xff\x01\x02\x0e\x29\x0c\x0d\x00"
                   91497:             "\x02\x0d\x2a\x0c\x0d\x00\xff\x03\x01\x0e\x2a\x0c\x0d"
                   91498:             "\xff\x0c\x0e\x2b\x0c\x0d\x00\xff\x04\x01\x0e\x2a\x0c"
                   91499:             "\x0d\x00\x02\x0d\x2a\x0c\x0d\x00\xff\x01\x02\x0e\x29"
                   91500:             "\x0c\x0d\x00\x03\x0d\x29\x0c\x10\x0e\x28\x0c\x0d\x00"
                   91501:             "\xff\x01\x04\x0d\x28\x0c\x0d\x00\xff\x01\x05\x0d\x26"
                   91502:             "\x0d\x0d\x00\x06\x0d\x24\x0e\x14\x0c\x24\x0e\x14\x0d"
                   91503:             "\x22\x0f\x15\x0d\x20\x10\x16\x0c\x1f\x11\x17\x0c\x1e"
                   91504:             "\x04\x01\x0c\x18\x0c\x1c\x05\x01\x0c\x19\x0c\x1a\x05"
                   91505:             "\x02\x0c\x1a\x0c\x17\x06\x03\x0c\x1b\x0c\x15\x06\x04"
                   91506:             "\x0c\x1c\x0c\x12\x07\x05\x0c\x1e\x0c\x0e\x08\x06\x0c"
                   91507:             "\x1f\x0e\x08\x09\x08\x0c\x21\x1c\x09\x0c\x23\x18\x0b"
                   91508:             "\x0c\x26\x13\x0d\x0c\x2a\x0b\x11\x0c\x0d\x00\xff\x15"
                   91509:             "\x39\x0c\x0d\x00\xff\x01\x38\x0e\x0c\x00\x35\x14\x09"
                   91510:             "\x00\xff\x04\x2c\x26" }  },
1.1       albertel 91511:       /* --- pixel bitmap for cmr1200 char#114 r --- */
                   91512:       { 114,17925,                      /* character number, location */
1.2       albertel 91513:          73, 4,    0, 4,      /* topleft row,col, and botleft row,col */
                   91514:           { 56,   73, 3,213, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   91515:             "\xe0\x46\xe0\x19\xee\x04\xce\x6e\x0a\xbe\x03\x4e\x0a"
                   91516:             "\x9e\x06\x3e\x0a\x88\x59\x2e\x0a\x76\x7b\x1e\x0a\x66"
                   91517:             "\x7c\x9e\x02\x55\x8e\xbd\x54\x9e\xcc\x44\xae\xcc\x34"
                   91518:             "\xbe\xdb\x34\xbe\xdb\x24\xce\xdb\x24\xdc\xeb\x14\xec"
                   91519:             "\xeb\x14\xe0\x1a\xe0\x1b\x13\xe0\x46\xe0\x3e\x01\xe0"
                   91520:             "\xe0\xf3\xde\xe0\xe0\x10\xf4\xdd\xe0\xe0\x20\xfe\xdc"
                   91521:             "\xe0\xe0\x30\xfe\xdc\xe0\xe0\x30\xf7\xdc\xe0\xe0\x30"
                   91522:             "\xce\xe0\xe0\xee\x01\xe0\xe0\xae\x07\xe0\xcf\x4e\x0e"
                   91523:             "\x0d\xe0\x1d" }  },
1.1       albertel 91524:       /* --- pixel bitmap for cmr1200 char#115 s --- */
                   91525:       { 115,18138,                      /* character number, location */
1.2       albertel 91526:          74, 5,   -2, 5,      /* topleft row,col, and botleft row,col */
                   91527:           { 54,   76, 2,249, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   91528:             "\x13\x0e\x0e\x03\x13\x15\x0a\x04\x10\x1b\x06\x05\x0e"
                   91529:             "\x1e\x04\x06\x0c\x0c\x0c\x0a\x01\x07\x0b\x0a\x12\x0f"
                   91530:             "\x0a\x08\x17\x0d\x09\x07\x1b\x0b\x08\x07\x1d\x0a\x07"
                   91531:             "\x07\x1f\x09\x07\x07\x20\x08\x04\x00\xff\x01\x02\x07"
                   91532:             "\x22\x07\x04\x00\xff\x01\x01\x07\x24\x06\x04\x00\x01"
                   91533:             "\x07\x25\x05\x04\xff\x02\x08\x25\x05\x04\xff\x01\x09"
                   91534:             "\x25\x04\x04\xff\x01\x0a\x24\x04\x04\x0c\x22\x04\x04"
                   91535:             "\x0d\x21\x04\x05\x0e\x28\x10\x26\x13\x24\x16\x20\x1c"
                   91536:             "\x1b\x1f\x18\x22\x15\x23\x14\x24\x13\x25\x12\x25\x12"
                   91537:             "\x25\x13\x24\x14\x23\x15\x22\x17\x20\x1b\x1c\x1f\x17"
                   91538:             "\x24\x13\x26\x10\x28\x0f\x02\x03\x24\x0d\x01\x04\x25"
                   91539:             "\x0c\x01\x04\x26\x11\x26\x0b\x00\xff\x01\x05\x27\x0a"
                   91540:             "\x00\x05\x28\x0f\x27\x09\x00\xff\x01\x06\x28\x08\x00"
                   91541:             "\xff\x01\x07\x27\x08\x00\x07\x27\x07\x01\xff\x01\x08"
                   91542:             "\x26\x07\x01\x09\x24\x08\x01\xff\x01\x0a\x23\x07\x02"
                   91543:             "\x0b\x21\x07\x03\x0c\x20\x07\x03\x0d\x1e\x07\x04\x0e"
                   91544:             "\x1c\x07\x05\x0f\x1a\x07\x06\x08\x02\x07\x16\x08\x07"
                   91545:             "\x08\x03\x08\x12\x09\x08\x07\x05\x0a\x0b\x0c\x09\x06"
                   91546:             "\x08\x1d\x0b\x05\x0b\x19\x0d\x04\x0e\x15\x0f\x03\x12"
                   91547:             "\x0d\x14" }  },
1.1       albertel 91548:       /* --- pixel bitmap for cmr1200 char#116 t --- */
                   91549:       { 116,18415,                      /* character number, location */
1.2       albertel 91550:         102, 3,   -2, 3,      /* topleft row,col, and botleft row,col */
                   91551:           { 52,  104, 2,137, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   91552:             "\xff\x06\x16\x04\x1a\x00\xff\x04\x15\x05\x1a\x00\xff"
                   91553:             "\x02\x14\x06\x1a\x00\xff\x02\x13\x07\x1a\x00\xff\x01"
                   91554:             "\x12\x08\x1a\x00\xff\x01\x11\x09\x1a\x00\x10\x0a\x1a"
                   91555:             "\x00\xff\x01\x0f\x0b\x1a\x00\x0e\x0c\x27\x0d\x26\x0e"
                   91556:             "\x25\x0f\x23\x11\x21\x13\x1e\x2d\x03\xff\x03\x31\x03"
                   91557:             "\x00\xff\x23\x0e\x0c\x1a\x00\xff\x0e\x0e\x0c\x16\x04"
                   91558:             "\x0e\x0c\x15\x05\xff\x02\x0f\x0c\x14\x04\x01\x00\x10"
                   91559:             "\x0b\x13\x05\x01\x00\xff\x01\x10\x0c\x12\x04\x02\x00"
                   91560:             "\x11\x0b\x11\x05\x14\x0b\x10\x04\x15\x0c\x0e\x04\x17"
                   91561:             "\x0c\x0c\x05\x18\x0c\x0a\x05\x1a\x0d\x06\x06\x1d\x16"
                   91562:             "\x1f\x14\x23\x10\x27\x0a\x0c" }  },
1.1       albertel 91563:       /* --- pixel bitmap for cmr1200 char#117 u --- */
                   91564:       { 117,18686,                      /* character number, location */
1.2       albertel 91565:          73, 5,   -2, 5,      /* topleft row,col, and botleft row,col */
                   91566:           { 83,   75, 2,141, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   91567:             "\x13\x06\x27\x06\x13\x13\x1a\x13\x0d\xff\x04\x19\x14"
                   91568:             "\x19\x0d\x00\x08\x11\x1c\x11\x18\x0e\x1f\x0e\x0d\x00"
                   91569:             "\xff\x01\x0c\x0d\x20\x0d\x0d\x00\xff\x28\x0d\x0c\x21"
                   91570:             "\x0c\x0d\x00\xff\x03\x0d\x0c\x20\x0d\x0d\x00\xff\x02"
                   91571:             "\x0d\x0c\x1f\x0e\x0d\x00\xff\x01\x0e\x0b\x1e\x0f\x0d"
                   91572:             "\x00\x0e\x0b\x1d\x10\x1b\x0c\x1b\x04\x01\x0c\x1c\x0b"
                   91573:             "\x1b\x04\x01\x0c\x1c\x0b\x1a\x04\x02\x0d\x1c\x0b\x18"
                   91574:             "\x04\x03\x0d\x1d\x0a\x17\x05\x03\x0e\x1c\x0b\x15\x05"
                   91575:             "\x04\x11\x1a\x0b\x13\x05\x05\x19\x13\x0c\x0f\x06\x06"
                   91576:             "\x19\x14\x0e\x09\x08\x07\x19\x16\x1c\x08\x19\x18\x18"
                   91577:             "\x0a\x19\x1a\x14\x0c\x13\x24\x0d\x0f\x06\x13" }  },
1.1       albertel 91578:       /* --- pixel bitmap for cmr1200 char#118 v --- */
                   91579:       { 118,19011,                      /* character number, location */
1.2       albertel 91580:          71, 3,   -2, 3,      /* topleft row,col, and botleft row,col */
                   91581:           { 81,   73, 2,271, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   91582:             "\xff\x04\x00\x23\x13\x1b\x08\x15\x1c\x14\x0e\x11\x20"
                   91583:             "\x0f\x12\x0f\x22\x0c\x15\x0e\x23\x0a\x16\x0e\x23\x09"
                   91584:             "\x18\x0d\x24\x07\x0c\x00\xff\x01\x0e\x0c\x24\x06\x0d"
                   91585:             "\x00\x0e\x0d\x23\x05\x1d\x0c\x23\x05\x1d\x0d\x21\x05"
                   91586:             "\x0f\x00\xff\x01\x10\x0c\x21\x04\x10\x00\x10\x0d\x1f"
                   91587:             "\x05\x21\x0c\x1f\x04\x22\x0d\x1e\x04\x11\x00\xff\x01"
                   91588:             "\x12\x0c\x1d\x04\x12\x00\x12\x0d\x1b\x05\x25\x0c\x1b"
                   91589:             "\x04\x26\x0d\x19\x05\x13\x00\xff\x01\x14\x0c\x19\x04"
                   91590:             "\x14\x00\x14\x0d\x17\x05\x29\x0c\x17\x04\x2a\x0d\x15"
                   91591:             "\x05\x15\x00\xff\x01\x16\x0c\x15\x04\x16\x00\x16\x0d"
                   91592:             "\x13\x05\x2d\x0c\x13\x04\x2e\x0d\x11\x05\x17\x00\xff"
                   91593:             "\x01\x18\x0c\x11\x04\x18\x00\x18\x0d\x0f\x05\x31\x0c"
                   91594:             "\x0f\x04\x32\x0d\x0d\x05\x19\x00\xff\x01\x1a\x0c\x0d"
                   91595:             "\x04\x1a\x00\x1a\x0d\x0b\x05\x35\x0c\x0b\x04\x36\x0d"
                   91596:             "\x09\x05\x37\x0c\x09\x04\x38\x0d\x08\x04\x38\x0d\x07"
                   91597:             "\x05\x39\x0c\x07\x04\x3a\x0d\x05\x05\x3b\x0c\x05\x04"
                   91598:             "\x3c\x0d\x04\x04\x3c\x0d\x03\x05\x3d\x0c\x03\x04\x3e"
                   91599:             "\x0d\x01\x05\x3f\x0c\x01\x04\x20\x00\xff\x01\x20\x11"
                   91600:             "\x20\x00\xff\x01\x21\x0f\x21\x00\xff\x01\x22\x0d\x22"
                   91601:             "\x00\xff\x02\x23\x0b\x23\x00\xff\x01\x24\x09\x24\x00"
                   91602:             "\xff\x02\x25\x07\x25\x00\x26\x05\x4d\x03\x27" }  },
1.1       albertel 91603:       /* --- pixel bitmap for cmr1200 char#119 w --- */
                   91604:       { 119,19278,                      /* character number, location */
1.2       albertel 91605:          71, 3,   -2, 3,      /* topleft row,col, and botleft row,col */
                   91606:           { 113,   73, 2,443, (pixbyte *)/* width,ht, fmt,pixsz,map.. */
                   91607:             "\xff\x04\x00\x22\x06\x21\x0d\x1b\x07\x15\x13\x14\x16"
                   91608:             "\x14\x0d\x11\x18\x0f\x1b\x0f\x10\x0f\x19\x0e\x1d\x0c"
                   91609:             "\x13\x0e\x1a\x0c\x1f\x0a\x14\x0d\x1c\x0b\x1f\x09\x16"
                   91610:             "\x0d\x1b\x0b\x20\x07\x17\x0d\x1c\x0a\x20\x06\x19\x0c"
                   91611:             "\x1c\x0b\x1f\x06\x19\x0c\x1c\x0b\x1f\x05\x1a\x0d\x1c"
                   91612:             "\x0a\x1f\x05\x0d\x00\xff\x01\x0e\x0c\x1c\x0b\x1e\x04"
                   91613:             "\x0e\x00\x0e\x0d\x1b\x0c\x1c\x05\x1d\x0c\x1b\x0c\x1c"
                   91614:             "\x04\x1e\x0c\x1a\x0d\x1c\x04\x0f\x00\xff\x01\x10\x0c"
                   91615:             "\x19\x0e\x1a\x04\x10\x00\x10\x0d\x17\x04\x01\x0a\x19"
                   91616:             "\x05\x10\x00\xff\x01\x11\x0c\x17\x04\x01\x0b\x18\x04"
                   91617:             "\x11\x00\x11\x0d\x15\x04\x03\x0a\x17\x05\x23\x0c\x15"
                   91618:             "\x04\x03\x0b\x16\x04\x24\x0c\x14\x05\x03\x0b\x16\x04"
                   91619:             "\x24\x0d\x13\x04\x05\x0a\x15\x05\x25\x0c\x13\x04\x05"
                   91620:             "\x0b\x14\x04\x26\x0c\x12\x05\x05\x0b\x14\x04\x26\x0d"
                   91621:             "\x11\x04\x07\x0b\x12\x05\x27\x0c\x11\x04\x07\x0b\x12"
                   91622:             "\x04\x28\x0c\x10\x05\x07\x0b\x12\x04\x14\x00\xff\x01"
                   91623:             "\x15\x0c\x0f\x04\x09\x0b\x10\x04\x15\x00\x15\x0d\x0d"
                   91624:             "\x05\x09\x0b\x0f\x05\x15\x00\xff\x01\x16\x0c\x0d\x04"
                   91625:             "\x0b\x0b\x0e\x04\x16\x00\x16\x0d\x0b\x04\x0d\x0a\x0d"
                   91626:             "\x05\x2d\x0c\x0b\x04\x0d\x0b\x0c\x04\x2e\x0c\x0a\x05"
                   91627:             "\x0d\x0b\x0c\x04\x2e\x0d\x09\x04\x0f\x0a\x0b\x05\x2f"
                   91628:             "\x0c\x09\x04\x0f\x0b\x0a\x04\x30\x0c\x08\x05\x0f\x0b"
                   91629:             "\x0a\x04\x30\x0d\x07\x04\x11\x0a\x09\x05\x31\x0c\x07"
                   91630:             "\x04\x11\x0b\x08\x04\x32\x0c\x06\x05\x11\x0b\x08\x04"
                   91631:             "\x19\x00\xff\x01\x1a\x0c\x05\x04\x13\x0b\x06\x04\x1a"
                   91632:             "\x00\x1a\x0d\x03\x05\x13\x0b\x06\x04\x1a\x00\xff\x01"
                   91633:             "\x1b\x0c\x03\x04\x15\x0b\x04\x04\x1b\x00\x1b\x0d\x01"
                   91634:             "\x04\x17\x0a\x03\x05\x37\x0c\x01\x04\x17\x0b\x02\x04"
                   91635:             "\x38\x11\x17\x0b\x02\x04\x38\x10\x19\x0a\x01\x05\x1c"
                   91636:             "\x00\xff\x01\x1d\x0f\x19\x0f\x1d\x00\x1d\x0e\x1b\x0e"
                   91637:             "\x1d\x00\xff\x01\x1e\x0d\x1b\x0d\x1e\x00\xff\x02\x1f"
                   91638:             "\x0b\x1d\x0b\x1f\x00\xff\x01\x20\x09\x1f\x09\x20\x00"
                   91639:             "\x20\x08\x21\x08\x20\x00\xff\x01\x21\x07\x21\x07\x21"
                   91640:             "\x00\x21\x06\x23\x06\x43\x05\x23\x05\x45\x03\x25\x03"
                   91641:             "\x23" }  },
1.1       albertel 91642:       /* --- pixel bitmap for cmr1200 char#120 x --- */
                   91643:       { 120,19757,                      /* character number, location */
1.2       albertel 91644:          71, 2,    0, 2,      /* topleft row,col, and botleft row,col */
                   91645:           { 83,   71, 2,236, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   91646:             "\xff\x04\x01\x22\x10\x1d\x03\x00\x09\x17\x15\x16\x14"
                   91647:             "\x13\x17\x11\x19\x11\x19\x0e\x1d\x0f\x19\x0c\x1f\x0e"
                   91648:             "\x1a\x0a\x22\x0e\x19\x09\x24\x0d\x19\x08\x26\x0d\x18"
                   91649:             "\x07\x28\x0d\x17\x06\x2a\x0c\x16\x06\x2b\x0d\x14\x06"
                   91650:             "\x2d\x0d\x13\x05\x2f\x0d\x11\x05\x31\x0c\x10\x05\x32"
                   91651:             "\x0d\x0e\x05\x34\x0d\x0d\x05\x35\x0d\x0b\x05\x37\x0c"
                   91652:             "\x0a\x05\x38\x0d\x08\x05\x3a\x0d\x06\x05\x3c\x0d\x05"
                   91653:             "\x05\x3d\x0c\x04\x05\x3e\x0d\x02\x05\x40\x12\x42\x10"
                   91654:             "\x44\x0f\x24\x00\xff\x01\x21\x0d\x25\x00\x22\x0d\x47"
                   91655:             "\x0d\x47\x0c\x47\x0d\x46\x0e\x44\x10\x42\x11\x42\x12"
                   91656:             "\x40\x05\x02\x0d\x3e\x05\x04\x0d\x3c\x05\x06\x0c\x3b"
                   91657:             "\x05\x07\x0d\x3a\x05\x08\x0d\x38\x05\x0a\x0d\x36\x05"
                   91658:             "\x0c\x0c\x35\x05\x0d\x0d\x33\x05\x0f\x0d\x32\x05\x10"
                   91659:             "\x0d\x30\x05\x12\x0d\x2e\x05\x14\x0c\x2d\x05\x15\x0d"
                   91660:             "\x2b\x05\x17\x0d\x29\x06\x18\x0d\x27\x06\x1a\x0c\x27"
                   91661:             "\x06\x1a\x0d\x25\x06\x1c\x0d\x22\x08\x1d\x0d\x20\x09"
                   91662:             "\x1d\x0e\x1e\x0a\x1d\x0e\x1c\x0c\x1d\x0f\x19\x0f\x1c"
                   91663:             "\x10\x16\x11\x1b\x13\x10\x17\x18\x17\x08\xff\x04\x1e"
                   91664:             "\x13\x22" }  },
1.1       albertel 91665:       /* --- pixel bitmap for cmr1200 char#121 y --- */
                   91666:       { 121,20022,                      /* character number, location */
1.2       albertel 91667:          71, 3,  -34, 3,      /* topleft row,col, and botleft row,col */
                   91668:           { 81,  105, 2,371, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   91669:             "\xff\x04\x00\x23\x13\x1b\x08\x15\x1c\x14\x0e\x11\x20"
                   91670:             "\x0f\x12\x0f\x22\x0c\x15\x0e\x23\x0a\x17\x0d\x23\x09"
                   91671:             "\x18\x0d\x24\x07\x1a\x0c\x24\x06\x1b\x0d\x23\x05\x1d"
                   91672:             "\x0c\x23\x05\x1d\x0c\x22\x05\x1e\x0d\x21\x05\x1f\x0c"
                   91673:             "\x21\x04\x20\x0d\x20\x04\x10\x00\xff\x01\x11\x0c\x1f"
                   91674:             "\x04\x11\x00\x11\x0d\x1d\x05\x23\x0c\x1d\x04\x24\x0d"
                   91675:             "\x1b\x05\x25\x0c\x1b\x04\x26\x0d\x1a\x04\x26\x0d\x19"
                   91676:             "\x05\x27\x0c\x19\x04\x28\x0d\x17\x05\x29\x0c\x17\x04"
                   91677:             "\x2a\x0d\x16\x04\x15\x00\xff\x01\x16\x0c\x15\x04\x16"
                   91678:             "\x00\x16\x0d\x13\x05\x2d\x0c\x13\x04\x2e\x0d\x11\x05"
                   91679:             "\x2f\x0c\x11\x04\x30\x0d\x10\x04\x30\x0d\x0f\x05\x31"
                   91680:             "\x0c\x0f\x04\x32\x0d\x0d\x05\x33\x0c\x0d\x04\x34\x0d"
                   91681:             "\x0c\x04\x1a\x00\xff\x01\x1b\x0c\x0b\x04\x1b\x00\x1b"
                   91682:             "\x0d\x09\x05\x37\x0c\x09\x04\x38\x0d\x07\x05\x1c\x00"
                   91683:             "\xff\x01\x1d\x0c\x07\x04\x1d\x00\x1d\x0d\x05\x05\x3b"
                   91684:             "\x0c\x05\x04\x3c\x0d\x03\x05\x3d\x0c\x03\x04\x3e\x0d"
                   91685:             "\x02\x04\x3e\x0d\x01\x05\x3f\x0c\x01\x04\x40\x11\x20"
                   91686:             "\x00\xff\x01\x21\x0f\x21\x00\xff\x02\x22\x0d\x22\x00"
                   91687:             "\xff\x01\x23\x0b\x23\x00\xff\x02\x24\x09\x24\x00\xff"
                   91688:             "\x01\x25\x07\x25\x00\xff\x01\x26\x05\x26\x00\xff\x01"
                   91689:             "\x26\x04\x27\x00\x25\x05\x4c\x04\x4c\x05\x28\x00\xff"
                   91690:             "\x01\x24\x04\x29\x00\x23\x05\x4c\x04\x4c\x05\x2a\x00"
                   91691:             "\xff\x01\x22\x04\x2b\x00\x21\x04\x31\x04\x18\x04\x2f"
                   91692:             "\x08\x15\x05\x2e\x0a\x14\x04\x2e\x0c\x12\x05\x2d\x0e"
                   91693:             "\x11\x04\x2e\x0e\x10\x05\x2e\x0e\x10\x04\x2f\x0e\x0f"
                   91694:             "\x05\x2f\x0e\x0f\x04\x30\x0e\x0e\x05\x30\x0d\x0e\x05"
                   91695:             "\x32\x0c\x0d\x05\x33\x0b\x0d\x05\x35\x08\x0e\x06\x35"
                   91696:             "\x06\x0f\x06\x37\x06\x0c\x07\x39\x08\x07\x08\x3b\x14"
                   91697:             "\x3f\x11\x41\x0e\x46\x08\x3e" }  },
1.1       albertel 91698:       /* --- pixel bitmap for cmr1200 char#122 z --- */
                   91699:       { 122,20385,                      /* character number, location */
1.2       albertel 91700:          71, 5,    0, 5,      /* topleft row,col, and botleft row,col */
                   91701:           { 61,   71, 2,243, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   91702:             "\x04\x38\x01\x00\xff\x02\x04\x39\x04\x11\x19\x0e\x05"
                   91703:             "\x0c\x1d\x0f\x05\x0a\x1f\x0e\x05\x0a\x1f\x0e\x06\x08"
                   91704:             "\x20\x0e\x07\x07\x20\x0f\x07\x07\x20\x0e\x08\x06\x20"
                   91705:             "\x0e\x09\x06\x1f\x0f\x09\x05\x1f\x0f\x0a\x05\x1f\x0e"
                   91706:             "\x0b\x05\x1e\x0e\x0c\x04\x1e\x0f\x0c\x04\x1d\x0f\x0d"
                   91707:             "\x04\x1d\x0e\x0e\x04\x1c\x0e\x0e\x05\x1b\x0f\x0e\x04"
                   91708:             "\x1c\x0e\x0f\x04\x1b\x0e\x10\x04\x1a\x0e\x11\x04\x19"
                   91709:             "\x0f\x11\x04\x19\x0e\x12\x04\x18\x0e\x2e\x0f\x2d\x0f"
                   91710:             "\x2e\x0e\x2e\x0e\x2e\x0f\x2e\x0e\x2e\x0e\x2e\x0e\x2e"
                   91711:             "\x0f\x2e\x0e\x2e\x0e\x2e\x0e\x2e\x0f\x2e\x0e\x17\x04"
                   91712:             "\x13\x0e\x18\x04\x12\x0f\x18\x04\x11\x0f\x19\x04\x11"
                   91713:             "\x0e\x1a\x04\x10\x0e\x1a\x04\x10\x0f\x1a\x04\x10\x0e"
                   91714:             "\x1b\x04\x0f\x0e\x1c\x04\x0e\x0e\x1d\x04\x0d\x0f\x1d"
                   91715:             "\x04\x0d\x0e\x1d\x05\x0c\x0e\x1e\x05\x0b\x0f\x1e\x05"
                   91716:             "\x0a\x0f\x1f\x05\x0a\x0e\x1f\x05\x0a\x0e\x20\x05\x09"
                   91717:             "\x0f\x20\x05\x08\x0f\x20\x06\x08\x0e\x21\x06\x07\x0e"
                   91718:             "\x21\x07\x06\x0f\x20\x08\x06\x0e\x20\x09\x05\x0e\x20"
                   91719:             "\x0a\x04\x0e\x1f\x0c\x03\x0f\x1d\x0e\x03\x0e\x19\x12"
                   91720:             "\x03\xff\x02\x3a\x03\x00\x01\x39\x03" }  },
1.1       albertel 91721:       /* --- pixel bitmap for cmr1200 char#123 (noname) --- */
                   91722:       { 123,44922,                      /* character number, location */
1.2       albertel 91723:          46, 0,   42, 0,      /* topleft row,col, and botleft row,col */
                   91724:           { 82,    4, 2, 4, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   91725:             "\xff\x03\x00\x52" }  },
1.1       albertel 91726:       /* --- pixel bitmap for cmr1200 char#124 (noname) --- */
                   91727:       { 124,44941,                      /* character number, location */
1.2       albertel 91728:          46, 0,   42, 0,      /* topleft row,col, and botleft row,col */
                   91729:           { 165,    4, 2, 4, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   91730:             "\xff\x03\x00\xa5" }  },
1.1       albertel 91731:       /* --- pixel bitmap for cmr1200 char#125 (noname) --- */
                   91732:       { 125,41438,                      /* character number, location */
1.2       albertel 91733:         116,21,   85,21,      /* topleft row,col, and botleft row,col */
                   91734:           { 48,   31, 3,189, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   91735:             "\xc5\xe0\x85\xe8\xe0\x58\xd9\xe0\x49\x20\xf1\x9b\xe0"
                   91736:             "\x2b\x10\xf1\x8d\xed\x8c\xe0\x1c\x10\xf1\x7d\xed\x10"
                   91737:             "\x7c\xe0\x1c\x8c\xe0\x1c\x9b\xe0\x2b\x9c\xe0\x1c\x9b"
                   91738:             "\xe0\x2b\xaa\xe0\x3a\x60\xf1\x4a\xe0\x3a\x70\x49\xe0"
                   91739:             "\x49\xb9\xe0\x49\x90\xf1\x38\xe0\x58\xa0\x28\xe0\x58"
                   91740:             "\xb0\xf1\x27\xe0\x67\xc0\x17\xe0\x67\xe6\xe0\x76\xe0"
                   91741:             "\x15\xe0\x85\xe0\x16\xe0\x76\xe0\x15\xe0\x85\xe0\x42"
                   91742:             "\xe0\xb2\xe0\x30" }  },
1.1       albertel 91743:       /* --- pixel bitmap for cmr1200 char#126 \~ --- */
                   91744:       { 126,41569,                      /* character number, location */
1.2       albertel 91745:         111,14,   95,14,      /* topleft row,col, and botleft row,col */
                   91746:           { 54,   16, 3,121, (pixbyte *)/* width,ht, fmt,pixsz,map... */
                   91747:             "\xe7\xe0\xe0\x21\xeb\xe0\xd3\xbe\x01\xe0\xa5\x9e\x04"
                   91748:             "\xe0\x75\x9e\x07\xe0\x36\x9e\x09\xe0\x17\x8e\x0c\xb8"
                   91749:             "\x8e\x0e\x02\x69\x89\x6e\x0e\x02\x88\xbe\x0c\x87\xe0"
                   91750:             "\x1e\x09\x96\xe0\x3e\x07\x95\xe0\x7e\x04\x95\xe0\xae"
                   91751:             "\x01\xb3\xe0\xdb\xe1\xe0\xe0\x27\xe8" }  },
1.1       albertel 91752:       /* --- pixel bitmap for cmr1200 char#127 (noname) --- */
                   91753:       { 127,41640,                      /* character number, location */
1.2       albertel 91754:         112,17,   95,17,      /* topleft row,col, and botleft row,col */
                   91755:           { 48,   17, 3,83, (pixbyte *) /* width,ht, fmt,pixsz,map... */
                   91756:             "\x56\xe0\xc6\x8a\xe0\x8a\x5c\xe0\x6c\x3e\xe0\x4e\x1f"
                   91757:             "\x2e\x02\xe0\x2e\x02\x0f\x2e\x03\xee\x03\x0f\x2e\x02"
                   91758:             "\xe0\x2e\x02\x1e\xe0\x4e\x3c\xe0\x6c\x5a\xe0\x8a\x86"
                   91759:             "\xe0\xc6\x56" }  },
1.1       albertel 91760:       /* --- trailer  --- */
1.2       albertel 91761:       { -99, -999,  0,0,0,0, { 0,0,0,0, (pixbyte *)"\0" }  }
1.1       albertel 91762:    } ;
                   91763: #endif
                   91764: 
                   91765: 
1.2       albertel 91766: /* ==================== end-of-file texfonts.h ========================= */
1.1       albertel 91767: #endif

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>